From 11c030160bba33ffe6d92cb9706a1bbb32f744eb Mon Sep 17 00:00:00 2001
From: Marcelle <53578688+m-goggins@users.noreply.github.com>
Date: Tue, 19 Nov 2024 15:12:28 -0800
Subject: [PATCH 1/9] Replace non-numeric characters in phone numbers with url
encoding (#166)
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
---
query-connector/src/app/format-service.tsx | 4 ++--
query-connector/src/app/tests/unit/format-service.test.tsx | 6 +++---
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/query-connector/src/app/format-service.tsx b/query-connector/src/app/format-service.tsx
index 877ee15a2..306b4cf37 100644
--- a/query-connector/src/app/format-service.tsx
+++ b/query-connector/src/app/format-service.tsx
@@ -250,12 +250,12 @@ const FORMATS_TO_SEARCH: string[] = [
export async function GetPhoneQueryFormats(phone: string) {
// Digit-only phone numbers will resolve as actual numbers
if (isNaN(Number(phone)) || phone.length != 10) {
- const strippedPhone = phone.replace(" ", "+");
+ const strippedPhone = phone.replace(" ", "%2D");
return [strippedPhone];
}
// Map the phone number into each format we want to check
const possibleFormats: string[] = FORMATS_TO_SEARCH.map((fmt) => {
- return phone.replace(/(\d{3})(\d{3})(\d{4})/gi, fmt);
+ return encodeURIComponent(phone.replace(/(\d{3})(\d{3})(\d{4})/gi, fmt));
});
return possibleFormats;
}
diff --git a/query-connector/src/app/tests/unit/format-service.test.tsx b/query-connector/src/app/tests/unit/format-service.test.tsx
index 7c03fbf38..ea9105c9f 100644
--- a/query-connector/src/app/tests/unit/format-service.test.tsx
+++ b/query-connector/src/app/tests/unit/format-service.test.tsx
@@ -470,7 +470,7 @@ describe("FormatPhoneAsDigits", () => {
describe("GetPhoneQueryFormats", () => {
it("should fail gracefully on partial phone number inputs", async () => {
const partialPhone = "456 7890";
- const expectedResult = ["456+7890"];
+ const expectedResult = ["456%2D7890"]; //456+7890
expect(await GetPhoneQueryFormats(partialPhone)).toEqual(expectedResult);
});
it("should fail gracefully on given phones with separators remaining", async () => {
@@ -486,8 +486,8 @@ describe("GetPhoneQueryFormats", () => {
const expectedResult = [
"1234567890",
"123-456-7890",
- "123+456+7890",
- "(123)+456+7890",
+ "123%2B456%2B7890", //123+456+7890
+ "(123)%2B456%2B7890", //(123)+456+7890
"(123)-456-7890",
"(123)456-7890",
"1(123)456-7890",
From 39d80b3ce6d6f5d662f7c290658df0430423dc63 Mon Sep 17 00:00:00 2001
From: Marcelle <53578688+m-goggins@users.noreply.github.com>
Date: Wed, 20 Nov 2024 13:53:16 -0800
Subject: [PATCH 2/9] Update Postman Collection Copy + base_url (#165)
---
...ery_Connector_API.postman_collection.json} | 195 ++++++++++--------
1 file changed, 113 insertions(+), 82 deletions(-)
rename query-connector/src/app/assets/{TEFCA_Query_Connector_API.postman_collection.json => DIBBs_Query_Connector_API.postman_collection.json} (55%)
diff --git a/query-connector/src/app/assets/TEFCA_Query_Connector_API.postman_collection.json b/query-connector/src/app/assets/DIBBs_Query_Connector_API.postman_collection.json
similarity index 55%
rename from query-connector/src/app/assets/TEFCA_Query_Connector_API.postman_collection.json
rename to query-connector/src/app/assets/DIBBs_Query_Connector_API.postman_collection.json
index cadfb11e3..a9f24174f 100644
--- a/query-connector/src/app/assets/TEFCA_Query_Connector_API.postman_collection.json
+++ b/query-connector/src/app/assets/DIBBs_Query_Connector_API.postman_collection.json
@@ -1,8 +1,8 @@
{
"info": {
- "_postman_id": "41c63eee-477f-402d-ab91-974b6c660833",
- "name": "TEFCA Query Connector API",
- "description": "# Overview\n\nThis document offers guidance for using the DIBBs TEFCA Query Connector service. It's intended to help you understand what the TEFCA Query Connector does (e.g., what use cases you can query for and what data is returned for each query) and how to make API requests to query for relevant case investigation data using this service.\n\n## What is the TEFCA Query Connector?\n\nThe TEFCA Query Connector is a tool for public health practitioners to quickly retrieve patient records and relevant case information from healthcare organizations. The tool works by connecting to Qualified Health Information Networks (QHINs) within the Trusted Exchange Framework and Common Agreement (TEFCA), ensuring immediate access to essential health data and facilitating timely public health decisions and interventions. Public health staff can interact with the TEFCA Query Connector via API or manually by entering simple patient details \u2014 such as name, date of birth, or medical identifiers \u2014 into a web-based search form. The tool also allows for automated queries via integration engines like Rhapsody and Mirth.\n\n## Available Use Cases\n\nOur team has put together a collection of eleven API requests to demonstrate the functionality of the TEFCA Query Connector. Users can query for the following 6 use cases either directly or via the eHealth Exchange QHIN:\n\n- Cancer\n \n- Chlamydia\n \n- Gonorrhea\n \n- Newborn Screening\n \n- Social Determinants of Health\n \n- Syphilis\n \n\nEach of the requests is made up of the request's Body, which consists of the data sent to the API, and Documentation, which explains the possible use cases of the functionality demonstrated in the test. To view the documentation for a test, click the icon of a page with a folded corner near the top of the right-hand bar.\n\nAll data featured in these requests comes from synthetic FHIR data generated by J Michael Consulting and the Interoperability Institute.",
+ "_postman_id": "4b9fe84c-a61e-48f7-8df0-15e65e1919d0",
+ "name": "DIBBs Query Connector API",
+ "description": "# Overview\n\nThis document offers guidance for using the DIBBs Query Connector service. It's intended to help you understand what the Query Connector does (e.g., what use cases you can query for and what data is returned for each query) and how to make API requests to query for relevant case investigation data using this service.\n\n## What is it?\n\nThe Query Connector is a data collection tool that uses an intuitive querying process to help your staff quickly retrieve patient records and relevant case information from a wide range of healthcare providers — all without the need for a direct connection. It does this by leveraging your jurisdiction's existing data use agreements, like the Data Use and Reciprocal Support Agreement (DURSA), while also supporting innovative standards for data sharing, like the Trusted Exchange Framework and Common Agreement (TEFCA).\n\n## How does it work?\n\nPublic health staff can interact with the Query Connector manually by entering simple patient details — such as name, date of birth, or medical identifiers — along with a query, into the web-based portal. The Query Connector API enables public health practitioners to retrieve patient records and case information directly from healthcare organizations via API requests to FHIR endpoints at health care organizations.\n\nTo make a request, users submit a patient resource in the body of the request. Users must also include the type of query they'd like to make, e.g., query for data related to chlamydia for this patient, and the endpoint that they'd like to retrieve the data from, e.g., a particular healthcare organization's EHR. Users can also make requests to Qualified Health Information Networks (QHINs) under TEFCA to query networks of healthcare organizations. For additional flexibility, the tool also supports integration with systems like Rhapsody and Mirth for automated queries. \n \nAvailable Use Cases\n\nOur team has put together a collection of eleven API requests to demonstrate the functionality of the Query Connector. Users can query for the following 6 use cases either directly or via the eHealth Exchange QHIN:\n\n- Cancer\n \n- Chlamydia\n \n- Gonorrhea\n \n- Newborn Screening\n \n- Social Determinants of Health\n \n- Syphilis\n \n\nEach of the requests is made up of the request's Body, which consists of the data sent to the API, and Documentation, which explains the possible use cases of the functionality demonstrated in the test. To view the documentation for a test, click the icon of a page with a folded corner near the top of the right-hand bar.\n\nAll data featured in these requests comes from synthetic FHIR data generated by J Michael Consulting and the Interoperability Institute.",
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
"_exporter_id": "35028120"
},
@@ -23,8 +23,13 @@
},
"url": {
"raw": "{{base_url}}/api/query?fhir_server=HELIOS Meld: Direct&use_case=cancer",
- "host": ["{{base_url}}"],
- "path": ["api", "query"],
+ "host": [
+ "{{base_url}}"
+ ],
+ "path": [
+ "api",
+ "query"
+ ],
"query": [
{
"key": "fhir_server",
@@ -36,7 +41,7 @@
}
]
},
- "description": "# Set Up\n\nThis API request demonstrates the TEFCA Query Connector's ability to directly query a server for a given patient and return data relevant to a case investigation. The direct query represents a point-to-point connection between a public health agency and a healthcare organization.\n\nThe **Body** tab shows FHIR patient resource to be submitted to the TEFCA Query Connector. In addition to the FHIR patient resource, the TEFCA Query Connector requires users to submit `fhir_server` and `use_case` parameters to specify where to make the query and to determine which relevant data should be returned to the user.\n\nFor this example API call, the user wants to make a direct query to the Helios Meld server. The request is for data relevant to a cancer query for a particular patient whose demographic data is sent in the Body of the request. To make this request, the API includes the following query parameters: `?fhir_server=HELIOS Meld: Direct&use_case=cancer`. This information is also viewable in the **Params** tab.\n\nAfter hitting **Send** on the request, we can check the **Response** at the bottom of the page to see the returned FHIR resources that are relevant to this patient's cancer follow-up. For example, the returned results include a Patient resource and relevant Observation resources.\n\n# Expected Response\n\nThe expected response of a query is a FHIR bundle containing a Patient resource and resources that are specific to the use case query as indicated by the presence of a relevant LOINC, SNOMED, and/or RxNorm code. For example, a cancer query will only return observation resources that contain SNOMED codes that are pertinent to a cancer follow-up. If a resource is not present, e.g., if there are no Encounter resources with cancer-relevant SNOMED codes, the response will not contain any Encounter resources.\n\n## Expected resources returned from cancer query\n\n- Patient\n \n- Conditions\n \n- Encounters\n \n- Medication Requests\n \n\n## LOINC codes included in cancer query\n\nNot applicable for this use case\n\n## SNOMED codes included in cancer query\n\n| **Code** | **Value** |\n| --- | --- |\n| 92814006 | Chronic lymphoid leukemia, disease |\n\n## RxNorm codes included in cancer query\n\n| **Code** | **Value** |\n| --- | --- |\n| 828265 | 1 ML alemtuzumab 30 MG/ML Injection |"
+ "description": "# Set Up\n\nThis API request demonstrates the Query Connector's ability to directly query a server for a given patient and return data relevant to a case investigation. The direct query represents a point-to-point connection between a public health agency and a healthcare organization.\n\nThe **Body** tab shows FHIR patient resource to be submitted to the Query Connector. In addition to the FHIR patient resource, the Query Connector requires users to submit `fhir_server` and `use_case` parameters to specify where to make the query and to determine which relevant data should be returned to the user.\n\nFor this example API call, the user wants to make a direct query to the Helios Meld server. The request is for data relevant to a cancer query for a particular patient whose demographic data is sent in the Body of the request. To make this request, the API includes the following query parameters: `?fhir_server=HELIOS Meld: Direct&use_case=cancer`. This information is also viewable in the **Params** tab.\n\nAfter hitting **Send** on the request, we can check the **Response** at the bottom of the page to see the returned FHIR resources that are relevant to this patient's cancer follow-up. For example, the returned results include a Patient resource and relevant Observation resources.\n\n# Expected Response\n\nThe expected response of a query is a FHIR bundle containing a Patient resource and resources that are specific to the use case query as indicated by the presence of a relevant LOINC, SNOMED, and/or RxNorm code. For example, a cancer query will only return observation resources that contain SNOMED codes that are pertinent to a cancer follow-up. If a resource is not present, e.g., if there are no Encounter resources with cancer-relevant SNOMED codes, the response will not contain any Encounter resources.\n\n## Expected resources returned from cancer query\n\n- Patient\n \n- Conditions\n \n- Encounters\n \n- Medication Requests\n \n\n## LOINC codes included in cancer query\n\nNot applicable for this use case\n\n## SNOMED codes included in cancer query\n\n| **Code** | **Value** |\n| --- | --- |\n| 92814006 | Chronic lymphoid leukemia, disease |\n\n## RxNorm codes included in cancer query\n\n| **Code** | **Value** |\n| --- | --- |\n| 828265 | 1 ML alemtuzumab 30 MG/ML Injection |"
},
"response": []
},
@@ -56,8 +61,13 @@
},
"url": {
"raw": "{{base_url}}/api/query?fhir_server=HELIOS Meld: eHealthExchange&use_case=cancer",
- "host": ["{{base_url}}"],
- "path": ["api", "query"],
+ "host": [
+ "{{base_url}}"
+ ],
+ "path": [
+ "api",
+ "query"
+ ],
"query": [
{
"key": "fhir_server",
@@ -69,7 +79,7 @@
}
]
},
- "description": "# Set Up\n\nThis API request demonstrates the TEFCA Query Connector's ability to query a Qualified Health Information Network (QHIN) for a given patient and return data relevant to a case investigation. The query represents a connection between a public health agency and a healthcare organization via a QHIN.\n\nThe **Body** tab shows FHIR patient resource to be submitted to the TEFCA Query Connector. In addition to the FHIR patient resource, the TEFCA Query Connector requires users to submit `fhir_server` and `use_case` parameters to specify where to make the query and to determine which relevant data should be returned to the user.\n\nFor this example API call, the user wants to make a query to the HELIOS Meld server via the eHealthExchange QHIN. The request is for data relevant to a cancer query for a particular patient whose demographic data is sent in the Body of the request. To make this request, the API includes the following query parameters: `?fhir_server=HELIOS Meld: eHealthExchange&use_case=cancer`. This information is also viewable in the **Params** tab.\n\nAfter hitting **Send** on the request, we can check the **Response** at the bottom of the page to see the returned FHIR resources that are relevant to this patient's cancer follow-up. For example, the returned results include a Patient resource and relevant Observation resources.\n\n# Expected Response\n\nThe expected response of a query is a FHIR bundle containing a Patient resource and resources that are specific to the use case query as indicated by the presence of a relevant LOINC, SNOMED, and/or RxNorm code. For example, a cancer query will only return observation resources that contain LOINC codes that are pertinent to a cancer follow-up. If a resource is not present, e.g., if there are no Encounter resources with cancer-relevant SNOMED codes, the response will not contain any Encounter resources.\n\n## Expected resources returned from gonorrhea query\n\n- Patient\n \n- Conditions\n \n- Encounters\n \n- Medication Requests\n \n\n## LOINC codes included in cancer query\n\nNot applicable for this use case\n\n## SNOMED codes included in cancer query\n\n| **Code** | **Value** |\n| --- | --- |\n| 92814006 | Chronic lymphoid leukemia, disease |\n\n## RxNorm codes included in cancer query\n\n| **Code** | **Value** |\n| --- | --- |\n| 828265 | 1 ML alemtuzumab 30 MG/ML Injection |"
+ "description": "# Set Up\n\nThis API request demonstrates the Query Connector's ability to query a Qualified Health Information Network (QHIN) for a given patient and return data relevant to a case investigation. The query represents a connection between a public health agency and a healthcare organization via a QHIN.\n\nThe **Body** tab shows FHIR patient resource to be submitted to the Query Connector. In addition to the FHIR patient resource, the Query Connector requires users to submit `fhir_server` and `use_case` parameters to specify where to make the query and to determine which relevant data should be returned to the user.\n\nFor this example API call, the user wants to make a query to the HELIOS Meld server via the eHealthExchange QHIN. The request is for data relevant to a cancer query for a particular patient whose demographic data is sent in the Body of the request. To make this request, the API includes the following query parameters: `?fhir_server=HELIOS Meld: eHealthExchange&use_case=cancer`. This information is also viewable in the **Params** tab.\n\nAfter hitting **Send** on the request, we can check the **Response** at the bottom of the page to see the returned FHIR resources that are relevant to this patient's cancer follow-up. For example, the returned results include a Patient resource and relevant Observation resources.\n\n# Expected Response\n\nThe expected response of a query is a FHIR bundle containing a Patient resource and resources that are specific to the use case query as indicated by the presence of a relevant LOINC, SNOMED, and/or RxNorm code. For example, a cancer query will only return observation resources that contain LOINC codes that are pertinent to a cancer follow-up. If a resource is not present, e.g., if there are no Encounter resources with cancer-relevant SNOMED codes, the response will not contain any Encounter resources.\n\n## Expected resources returned from gonorrhea query\n\n- Patient\n \n- Conditions\n \n- Encounters\n \n- Medication Requests\n \n\n## LOINC codes included in cancer query\n\nNot applicable for this use case\n\n## SNOMED codes included in cancer query\n\n| **Code** | **Value** |\n| --- | --- |\n| 92814006 | Chronic lymphoid leukemia, disease |\n\n## RxNorm codes included in cancer query\n\n| **Code** | **Value** |\n| --- | --- |\n| 828265 | 1 ML alemtuzumab 30 MG/ML Injection |"
},
"response": []
},
@@ -89,8 +99,13 @@
},
"url": {
"raw": "{{base_url}}/api/query?fhir_server=JMC Meld: Direct&use_case=chlamydia",
- "host": ["{{base_url}}"],
- "path": ["api", "query"],
+ "host": [
+ "{{base_url}}"
+ ],
+ "path": [
+ "api",
+ "query"
+ ],
"query": [
{
"key": "fhir_server",
@@ -102,7 +117,7 @@
}
]
},
- "description": "# Set Up\n\nThis API request demonstrates the TEFCA Query Connector's ability to directly query a server for a given patient and return data relevant to a case investigation. The direct query represents a point-to-point connection between a public health agency and a healthcare organization.\n\nThe **Body** tab shows FHIR patient resource to be submitted to the TEFCA Query Connector. In addition to the FHIR patient resource, the TEFCA Query Connector requires users to submit `fhir_server` and `use_case` parameters to specify where to make the query and to determine which relevant data should be returned to the user.\n\nFor this example API call, the user wants to make a direct query to the JMC Meld server. The request is for data relevant to a chlamydia case investigation for a particular patient whose demographic data is sent in the Body of the request. To make this request, the API includes the following query parameters: `?fhir_server=JMC Meld: Direct&use_case=chlamydia`. This information is also viewable in the **Params** tab.\n\nAfter hitting **Send** on the request, we can check the **Response** at the bottom of the page to see the returned FHIR resources that are relevant to this patient's chlamydia case. For example, the returned results include a Patient resource and relevant Observation, Condition, Medication Request, and Encounter resources.\n\n# Expected Response\n\nThe expected response of a query is a FHIR bundle containing a Patient resource and resources that are specific to the use case query as indicated by the presence of a relevant LOINC, SNOMED, and/or RxNorm code. For example, a chlamydia query will only return observation resources that contain LOINC codes that are pertinent to a chlamydia case investigation. If a resource is not present, e.g., if there are no Observation resources with chlamydia relevant LOINC codes, the response will not contain any Observation resources.\n\n## Expected resources returned from chlamydia query\n\n- Patient\n \n- Conditions\n \n- Diagnostic Reports\n \n- Encounters\n \n- Medication Requests\n \n- Observations\n \n\n## LOINC codes included in chlamydia query\n\n| **Code** | **Value** |\n| --- | --- |\n| 24111-7 | Neisseria gonorrhoeae DNA \\[Presence\\] in Unspecified specimen by NAA with probe detection |\n| 72828-7 | Chlamydia trachomatis and Neisseria gonorrhoeae DNA panel - Unspecified specimen |\n| 21613-5 | Chlamydia trachomatis DNA \\[Presence\\] in Unspecified specimen by NAA with probe detection |\n| 82810-3 | Pregnancy status |\n| 11350-6 | History of Sexual behavior Narrative |\n| 83317-8 | Sexual activity with anonymous partner in the past year |\n\n## SNOMED codes included in chlamydia query\n\n| **Code** | **Value** |\n| --- | --- |\n| 2339001 | Sexual overexposure |\n| 72531000052105 | Contraceptive counseling |\n| 102874004 | Possible pregnancy |\n| A74.9 | HLA-Aw74 antigen |\n\n## RxNorm codes included in chlamydia query\n\n| **Code** | **Value** |\n| --- | --- |\n| 434692 | azithromycin 1000 MG |\n| 82122 | levofloxacin |\n| 1649987 | doxycycline hyclate 100 MG |\n| 1665005 | ceftriaxone 500 MG Injection |"
+ "description": "# Set Up\n\nThis API request demonstrates the Query Connector's ability to directly query a server for a given patient and return data relevant to a case investigation. The direct query represents a point-to-point connection between a public health agency and a healthcare organization.\n\nThe **Body** tab shows FHIR patient resource to be submitted to the Query Connector. In addition to the FHIR patient resource, the Query Connector requires users to submit `fhir_server` and `use_case` parameters to specify where to make the query and to determine which relevant data should be returned to the user.\n\nFor this example API call, the user wants to make a direct query to the JMC Meld server. The request is for data relevant to a chlamydia case investigation for a particular patient whose demographic data is sent in the Body of the request. To make this request, the API includes the following query parameters: `?fhir_server=JMC Meld: Direct&use_case=chlamydia`. This information is also viewable in the **Params** tab.\n\nAfter hitting **Send** on the request, we can check the **Response** at the bottom of the page to see the returned FHIR resources that are relevant to this patient's chlamydia case. For example, the returned results include a Patient resource and relevant Observation, Condition, Medication Request, and Encounter resources.\n\n# Expected Response\n\nThe expected response of a query is a FHIR bundle containing a Patient resource and resources that are specific to the use case query as indicated by the presence of a relevant LOINC, SNOMED, and/or RxNorm code. For example, a chlamydia query will only return observation resources that contain LOINC codes that are pertinent to a chlamydia case investigation. If a resource is not present, e.g., if there are no Observation resources with chlamydia relevant LOINC codes, the response will not contain any Observation resources.\n\n## Expected resources returned from chlamydia query\n\n- Patient\n \n- Conditions\n \n- Diagnostic Reports\n \n- Encounters\n \n- Medication Requests\n \n- Observations\n \n\n## LOINC codes included in chlamydia query\n\n| **Code** | **Value** |\n| --- | --- |\n| 24111-7 | Neisseria gonorrhoeae DNA \\[Presence\\] in Unspecified specimen by NAA with probe detection |\n| 72828-7 | Chlamydia trachomatis and Neisseria gonorrhoeae DNA panel - Unspecified specimen |\n| 21613-5 | Chlamydia trachomatis DNA \\[Presence\\] in Unspecified specimen by NAA with probe detection |\n| 82810-3 | Pregnancy status |\n| 11350-6 | History of Sexual behavior Narrative |\n| 83317-8 | Sexual activity with anonymous partner in the past year |\n\n## SNOMED codes included in chlamydia query\n\n| **Code** | **Value** |\n| --- | --- |\n| 2339001 | Sexual overexposure |\n| 72531000052105 | Contraceptive counseling |\n| 102874004 | Possible pregnancy |\n| A74.9 | HLA-Aw74 antigen |\n\n## RxNorm codes included in chlamydia query\n\n| **Code** | **Value** |\n| --- | --- |\n| 434692 | azithromycin 1000 MG |\n| 82122 | levofloxacin |\n| 1649987 | doxycycline hyclate 100 MG |\n| 1665005 | ceftriaxone 500 MG Injection |"
},
"response": []
},
@@ -122,8 +137,13 @@
},
"url": {
"raw": "{{base_url}}/api/query?fhir_server=JMC Meld: eHealthExchange&use_case=chlamydia",
- "host": ["{{base_url}}"],
- "path": ["api", "query"],
+ "host": [
+ "{{base_url}}"
+ ],
+ "path": [
+ "api",
+ "query"
+ ],
"query": [
{
"key": "fhir_server",
@@ -135,7 +155,7 @@
}
]
},
- "description": "# Set Up\n\nThis API request demonstrates the TEFCA Query Connector's ability to query a Qualified Health Information Network (QHIN) for a given patient and return data relevant to a case investigation. The query represents a connection between a public health agency and a healthcare organization via a QHIN.\n\nThe **Body** tab shows FHIR patient resource to be submitted to the TEFCA Query Connector. In addition to the FHIR patient resource, the TEFCA Query Connector requires users to submit `fhir_server` and `use_case` parameters to specify where to make the query and to determine which relevant data should be returned to the user.\n\nFor this example API call, the user wants to make a query to the JMC Meld server via the eHealthExchange QHIN. The request is for data relevant to a chlamydia case investigation for a particular patient whose demographic data is sent in the Body of the request. To make this request, the API includes the following query parameters: `?fhir_server=JMC Meld: eHealthExchange&use_case=chlamydia`. This information is also viewable in the **Params** tab.\n\nAfter hitting **Send** on the request, we can check the **Response** at the bottom of the page to see the returned FHIR resources that are relevant to this patient's chlamydia case. For example, the returned results include a Patient resource and relevant Observation, Condition, Medication Request, and Encounter resources.\n\n# Expected Response\n\nThe expected response of a query is a FHIR bundle containing a Patient resource and resources that are specific to the use case query as indicated by the presence of a relevant LOINC, SNOMED, and/or RxNorm code. For example, a chlamydia query will only return observation resources that contain LOINC codes that are pertinent to a chlamydia case investigation. If a resource is not present, e.g., if there are no Observation resources with chlamydia relevant LOINC codes, the response will not contain any Observation resources.\n\n## Expected resources returned from chlamydia query\n\n- Patient\n \n- Conditions\n \n- Diagnostic Reports\n \n- Encounters\n \n- Medication Requests\n \n- Observations\n \n\n## LOINC codes included in chlamydia query\n\n| **Code** | **Value** |\n| --- | --- |\n| 24111-7 | Neisseria gonorrhoeae DNA \\[Presence\\] in Unspecified specimen by NAA with probe detection |\n| 72828-7 | Chlamydia trachomatis and Neisseria gonorrhoeae DNA panel - Unspecified specimen |\n| 21613-5 | Chlamydia trachomatis DNA \\[Presence\\] in Unspecified specimen by NAA with probe detection |\n| 82810-3 | Pregnancy status |\n| 11350-6 | History of Sexual behavior Narrative |\n| 83317-8 | Sexual activity with anonymous partner in the past year |\n\n## SNOMED codes included in chlamydia query\n\n| **Code** | **Value** |\n| --- | --- |\n| 2339001 | Sexual overexposure |\n| 72531000052105 | Contraceptive counseling |\n| 102874004 | Possible pregnancy |\n| A74.9 | HLA-Aw74 antigen |\n\n## RxNorm codes included in chlamydia query\n\n| **Code** | **Value** |\n| --- | --- |\n| 434692 | azithromycin 1000 MG |\n| 82122 | levofloxacin |\n| 1649987 | doxycycline hyclate 100 MG |\n| 1665005 | ceftriaxone 500 MG Injection |"
+ "description": "# Set Up\n\nThis API request demonstrates the Query Connector's ability to query a Qualified Health Information Network (QHIN) for a given patient and return data relevant to a case investigation. The query represents a connection between a public health agency and a healthcare organization via a QHIN.\n\nThe **Body** tab shows FHIR patient resource to be submitted to the Query Connector. In addition to the FHIR patient resource, the Query Connector requires users to submit `fhir_server` and `use_case` parameters to specify where to make the query and to determine which relevant data should be returned to the user.\n\nFor this example API call, the user wants to make a query to the JMC Meld server via the eHealthExchange QHIN. The request is for data relevant to a chlamydia case investigation for a particular patient whose demographic data is sent in the Body of the request. To make this request, the API includes the following query parameters: `?fhir_server=JMC Meld: eHealthExchange&use_case=chlamydia`. This information is also viewable in the **Params** tab.\n\nAfter hitting **Send** on the request, we can check the **Response** at the bottom of the page to see the returned FHIR resources that are relevant to this patient's chlamydia case. For example, the returned results include a Patient resource and relevant Observation, Condition, Medication Request, and Encounter resources.\n\n# Expected Response\n\nThe expected response of a query is a FHIR bundle containing a Patient resource and resources that are specific to the use case query as indicated by the presence of a relevant LOINC, SNOMED, and/or RxNorm code. For example, a chlamydia query will only return observation resources that contain LOINC codes that are pertinent to a chlamydia case investigation. If a resource is not present, e.g., if there are no Observation resources with chlamydia relevant LOINC codes, the response will not contain any Observation resources.\n\n## Expected resources returned from chlamydia query\n\n- Patient\n \n- Conditions\n \n- Diagnostic Reports\n \n- Encounters\n \n- Medication Requests\n \n- Observations\n \n\n## LOINC codes included in chlamydia query\n\n| **Code** | **Value** |\n| --- | --- |\n| 24111-7 | Neisseria gonorrhoeae DNA \\[Presence\\] in Unspecified specimen by NAA with probe detection |\n| 72828-7 | Chlamydia trachomatis and Neisseria gonorrhoeae DNA panel - Unspecified specimen |\n| 21613-5 | Chlamydia trachomatis DNA \\[Presence\\] in Unspecified specimen by NAA with probe detection |\n| 82810-3 | Pregnancy status |\n| 11350-6 | History of Sexual behavior Narrative |\n| 83317-8 | Sexual activity with anonymous partner in the past year |\n\n## SNOMED codes included in chlamydia query\n\n| **Code** | **Value** |\n| --- | --- |\n| 2339001 | Sexual overexposure |\n| 72531000052105 | Contraceptive counseling |\n| 102874004 | Possible pregnancy |\n| A74.9 | HLA-Aw74 antigen |\n\n## RxNorm codes included in chlamydia query\n\n| **Code** | **Value** |\n| --- | --- |\n| 434692 | azithromycin 1000 MG |\n| 82122 | levofloxacin |\n| 1649987 | doxycycline hyclate 100 MG |\n| 1665005 | ceftriaxone 500 MG Injection |"
},
"response": []
},
@@ -155,8 +175,13 @@
},
"url": {
"raw": "{{base_url}}/api/query?fhir_server=JMC Meld: Direct&use_case=gonorrhea",
- "host": ["{{base_url}}"],
- "path": ["api", "query"],
+ "host": [
+ "{{base_url}}"
+ ],
+ "path": [
+ "api",
+ "query"
+ ],
"query": [
{
"key": "fhir_server",
@@ -168,7 +193,7 @@
}
]
},
- "description": "# Set Up\n\nThis API request demonstrates the TEFCA Query Connector's ability to directly query a server for a given patient and return data relevant to a case investigation. The direct query represents a point-to-point connection between a public health agency and a healthcare organization.\n\nThe **Body** tab shows FHIR patient resource to be submitted to the TEFCA Query Connector. In addition to the FHIR patient resource, the TEFCA Query Connector requires users to submit `fhir_server` and `use_case` parameters to specify where to make the query and to determine which relevant data should be returned to the user.\n\nFor this example API call, the user wants to make a direct query to the JMC Meld server. The request is for data relevant to a gonorrhea case investigation for a particular patient whose demographic data is sent in the Body of the request. To make this request, the API includes the following query parameters: `?fhir_server=JMC Meld: Direct&use_case=gonorrhea`. This information is also viewable in the **Params** tab.\n\nAfter hitting **Send** on the request, we can check the **Response** at the bottom of the page to see the returned FHIR resources that are relevant to this patient's gonorrhea case. For example, the returned results include a Patient resource and relevant Observation, Condition, Medication Request, and Encounter resources.\n\n# Expected Response\n\nThe expected response of a query is a FHIR bundle containing a Patient resource and resources that are specific to the use case query as indicated by the presence of a relevant LOINC, SNOMED, and/or RxNorm code. For example, a gonorrhea query will only return observation resources that contain LOINC codes that are pertinent to a gonorrhea case investigation. If a resource is not present, e.g., if there are no Observation resources with gonorrhea-relevant LOINC codes, the response will not contain any Observation resources.\n\n## Expected resources returned from gonorrhea query\n\n- Patient\n \n- Conditions\n \n- Diagnostic Reports\n \n- Encounters\n \n- Medication Requests\n \n- Observations\n \n\n## LOINC codes included in gonorrhea query\n\n| **Code** | **Value** |\n| --- | --- |\n| 24111-7 | Neisseria gonorrhoeae DNA \\[Presence\\] in Unspecified specimen by NAA with probe detection |\n| 11350-6 | History of Sexual behavior Narrative |\n| 21613-5 | Chlamydia trachomatis DNA \\[Presence\\] in Unspecified specimen by NAA with probe detection |\n| 82810-3 | Pregnancy status |\n| 83317-8 | Sexual activity with anonymous partner in the past year |\n\n## SNOMED codes included in gonorrhea query\n\n| **Code** | **Value** |\n| --- | --- |\n| 2339001 | Sexual overexposure |\n| 72531000052105 | Contraceptive counseling |\n| 102874004 | Possible pregnancy |\n| 15628003 | Gonorrhea |\n\n## RxNorm codes included in gonorrhea query\n\n| **Code** | **Value** |\n| --- | --- |\n| 434692 | azithromycin 1000 MG |\n| 1665005 | ceftriaxone 500 MG Injection |"
+ "description": "# Set Up\n\nThis API request demonstrates the Query Connector's ability to directly query a server for a given patient and return data relevant to a case investigation. The direct query represents a point-to-point connection between a public health agency and a healthcare organization.\n\nThe **Body** tab shows FHIR patient resource to be submitted to the Query Connector. In addition to the FHIR patient resource, the Query Connector requires users to submit `fhir_server` and `use_case` parameters to specify where to make the query and to determine which relevant data should be returned to the user.\n\nFor this example API call, the user wants to make a direct query to the JMC Meld server. The request is for data relevant to a gonorrhea case investigation for a particular patient whose demographic data is sent in the Body of the request. To make this request, the API includes the following query parameters: `?fhir_server=JMC Meld: Direct&use_case=gonorrhea`. This information is also viewable in the **Params** tab.\n\nAfter hitting **Send** on the request, we can check the **Response** at the bottom of the page to see the returned FHIR resources that are relevant to this patient's gonorrhea case. For example, the returned results include a Patient resource and relevant Observation, Condition, Medication Request, and Encounter resources.\n\n# Expected Response\n\nThe expected response of a query is a FHIR bundle containing a Patient resource and resources that are specific to the use case query as indicated by the presence of a relevant LOINC, SNOMED, and/or RxNorm code. For example, a gonorrhea query will only return observation resources that contain LOINC codes that are pertinent to a gonorrhea case investigation. If a resource is not present, e.g., if there are no Observation resources with gonorrhea-relevant LOINC codes, the response will not contain any Observation resources.\n\n## Expected resources returned from gonorrhea query\n\n- Patient\n \n- Conditions\n \n- Diagnostic Reports\n \n- Encounters\n \n- Medication Requests\n \n- Observations\n \n\n## LOINC codes included in gonorrhea query\n\n| **Code** | **Value** |\n| --- | --- |\n| 24111-7 | Neisseria gonorrhoeae DNA \\[Presence\\] in Unspecified specimen by NAA with probe detection |\n| 11350-6 | History of Sexual behavior Narrative |\n| 21613-5 | Chlamydia trachomatis DNA \\[Presence\\] in Unspecified specimen by NAA with probe detection |\n| 82810-3 | Pregnancy status |\n| 83317-8 | Sexual activity with anonymous partner in the past year |\n\n## SNOMED codes included in gonorrhea query\n\n| **Code** | **Value** |\n| --- | --- |\n| 2339001 | Sexual overexposure |\n| 72531000052105 | Contraceptive counseling |\n| 102874004 | Possible pregnancy |\n| 15628003 | Gonorrhea |\n\n## RxNorm codes included in gonorrhea query\n\n| **Code** | **Value** |\n| --- | --- |\n| 434692 | azithromycin 1000 MG |\n| 1665005 | ceftriaxone 500 MG Injection |"
},
"response": []
},
@@ -188,8 +213,13 @@
},
"url": {
"raw": "{{base_url}}/api/query?fhir_server=JMC Meld: eHealthExchange&use_case=gonorrhea",
- "host": ["{{base_url}}"],
- "path": ["api", "query"],
+ "host": [
+ "{{base_url}}"
+ ],
+ "path": [
+ "api",
+ "query"
+ ],
"query": [
{
"key": "fhir_server",
@@ -201,18 +231,18 @@
}
]
},
- "description": "# Set Up\n\nThis API request demonstrates the TEFCA Query Connector's ability to query a Qualified Health Information Network (QHIN) for a given patient and return data relevant to a case investigation. The query represents a connection between a public health agency and a healthcare organization via a QHIN.\n\nThe **Body** tab shows FHIR patient resource to be submitted to the TEFCA Query Connector. In addition to the FHIR patient resource, the TEFCA Query Connector requires users to submit `fhir_server` and `use_case` parameters to specify where to make the query and to determine which relevant data should be returned to the user.\n\nFor this example API call, the user wants to make a query to the JMC Meld server via the eHealthExchange QHIN. The request is for data relevant to a gonorrhea case investigation for a particular patient whose demographic data is sent in the Body of the request. To make this request, the API includes the following query parameters: `?fhir_server=JMC Meld: eHealth Exchange&use_case=gonorrhea`. This information is also viewable in the **Params** tab.\n\nAfter hitting **Send** on the request, we can check the **Response** at the bottom of the page to see the returned FHIR resources that are relevant to this patient's gonorrhea case. For example, the returned results include a Patient resource and relevant Observation, Condition, Medication Request, and Encounter resources.\n\n# Expected Response\n\nThe expected response of a query is a FHIR bundle containing a Patient resource and resources that are specific to the use case query as indicated by the presence of a relevant LOINC, SNOMED, and/or RxNorm code. For example, a gonorrhea query will only return observation resources that contain LOINC codes that are pertinent to a gonorrhea case investigation. If a resource is not present, e.g., if there are no Observation resources with gonorrhea-relevant LOINC codes, the response will not contain any Observation resources.\n\n## Expected resources returned from gonorrhea query\n\n- Patient\n \n- Conditions\n \n- Diagnostic Reports\n \n- Encounters\n \n- Medication Requests\n \n- Observations\n \n\n## LOINC codes included in gonorrhea query\n\n| **Code** | **Value** |\n| --- | --- |\n| 24111-7 | Neisseria gonorrhoeae DNA \\[Presence\\] in Unspecified specimen by NAA with probe detection |\n| 11350-6 | History of Sexual behavior Narrative |\n| 21613-5 | Chlamydia trachomatis DNA \\[Presence\\] in Unspecified specimen by NAA with probe detection |\n| 82810-3 | Pregnancy status |\n| 83317-8 | Sexual activity with anonymous partner in the past year |\n\n## SNOMED codes included in gonorrhea query\n\n| **Code** | **Value** |\n| --- | --- |\n| 2339001 | Sexual overexposure |\n| 72531000052105 | Contraceptive counseling |\n| 102874004 | Possible pregnancy |\n| 15628003 | Gonorrhea |\n\n## RxNorm codes included in gonorrhea query\n\n| **Code** | **Value** |\n| --- | --- |\n| 434692 | azithromycin 1000 MG |\n| 1665005 | ceftriaxone 500 MG Injection |"
+ "description": "# Set Up\n\nThis API request demonstrates the Query Connector's ability to query a Qualified Health Information Network (QHIN) for a given patient and return data relevant to a case investigation. The query represents a connection between a public health agency and a healthcare organization via a QHIN.\n\nThe **Body** tab shows FHIR patient resource to be submitted to the Query Connector. In addition to the FHIR patient resource, the Query Connector requires users to submit `fhir_server` and `use_case` parameters to specify where to make the query and to determine which relevant data should be returned to the user.\n\nFor this example API call, the user wants to make a query to the JMC Meld server via the eHealthExchange QHIN. The request is for data relevant to a gonorrhea case investigation for a particular patient whose demographic data is sent in the Body of the request. To make this request, the API includes the following query parameters: `?fhir_server=JMC Meld: eHealth Exchange&use_case=gonorrhea`. This information is also viewable in the **Params** tab.\n\nAfter hitting **Send** on the request, we can check the **Response** at the bottom of the page to see the returned FHIR resources that are relevant to this patient's gonorrhea case. For example, the returned results include a Patient resource and relevant Observation, Condition, Medication Request, and Encounter resources.\n\n# Expected Response\n\nThe expected response of a query is a FHIR bundle containing a Patient resource and resources that are specific to the use case query as indicated by the presence of a relevant LOINC, SNOMED, and/or RxNorm code. For example, a gonorrhea query will only return observation resources that contain LOINC codes that are pertinent to a gonorrhea case investigation. If a resource is not present, e.g., if there are no Observation resources with gonorrhea-relevant LOINC codes, the response will not contain any Observation resources.\n\n## Expected resources returned from gonorrhea query\n\n- Patient\n \n- Conditions\n \n- Diagnostic Reports\n \n- Encounters\n \n- Medication Requests\n \n- Observations\n \n\n## LOINC codes included in gonorrhea query\n\n| **Code** | **Value** |\n| --- | --- |\n| 24111-7 | Neisseria gonorrhoeae DNA \\[Presence\\] in Unspecified specimen by NAA with probe detection |\n| 11350-6 | History of Sexual behavior Narrative |\n| 21613-5 | Chlamydia trachomatis DNA \\[Presence\\] in Unspecified specimen by NAA with probe detection |\n| 82810-3 | Pregnancy status |\n| 83317-8 | Sexual activity with anonymous partner in the past year |\n\n## SNOMED codes included in gonorrhea query\n\n| **Code** | **Value** |\n| --- | --- |\n| 2339001 | Sexual overexposure |\n| 72531000052105 | Contraceptive counseling |\n| 102874004 | Possible pregnancy |\n| 15628003 | Gonorrhea |\n\n## RxNorm codes included in gonorrhea query\n\n| **Code** | **Value** |\n| --- | --- |\n| 434692 | azithromycin 1000 MG |\n| 1665005 | ceftriaxone 500 MG Injection |"
},
"response": []
},
{
- "name": "Newborn Screening - CernerHelios: eHealthExchange",
+ "name": "Newborn Screening - HELIOS Meld: Direct",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
- "raw": "{\r\n \"resourceType\": \"Patient\",\r\n \"id\": \"12846634\",\r\n \"meta\": {\r\n \"versionId\": \"3\",\r\n \"lastUpdated\": \"2024-01-12T21:58:27.000Z\"\r\n },\r\n \"text\": {\r\n \"status\": \"generated\",\r\n \"div\": \"
Patient
Name: HILL, CUCUMBER
Status: Active
DOB: Aug 29, 2023
Administrative Gender: Female
Marital Status: Single
\"\r\n },\r\n \"extension\": [\r\n {\r\n \"extension\": [\r\n {\r\n \"valueCoding\": {\r\n \"system\": \"urn:oid:2.16.840.1.113883.6.238\",\r\n \"code\": \"2106-3\",\r\n \"display\": \"White\",\r\n \"userSelected\": false\r\n },\r\n \"url\": \"ombCategory\"\r\n },\r\n {\r\n \"valueString\": \"White\",\r\n \"url\": \"text\"\r\n }\r\n ],\r\n \"url\": \"http://hl7.org/fhir/us/core/StructureDefinition/us-core-race\"\r\n },\r\n {\r\n \"extension\": [\r\n {\r\n \"valueCoding\": {\r\n \"system\": \"urn:oid:2.16.840.1.113883.6.238\",\r\n \"code\": \"2186-5\",\r\n \"display\": \"Not Hispanic or Latino\",\r\n \"userSelected\": false\r\n },\r\n \"url\": \"ombCategory\"\r\n },\r\n {\r\n \"valueString\": \"Not Hispanic, Latino, or Spanish Origin\",\r\n \"url\": \"text\"\r\n }\r\n ],\r\n \"url\": \"http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity\"\r\n }\r\n ],\r\n \"identifier\": [\r\n {\r\n \"id\": \"CI-490339975-0\",\r\n \"use\": \"usual\",\r\n \"type\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"https://fhir.cerner.com/e8a84236-c258-4952-98b7-a6ff8a9c587a/codeSet/4\",\r\n \"code\": \"10\",\r\n \"display\": \"MRN\",\r\n \"userSelected\": true\r\n },\r\n {\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0203\",\r\n \"code\": \"MR\",\r\n \"display\": \"Medical record number\",\r\n \"userSelected\": false\r\n }\r\n ],\r\n \"text\": \"MRN\"\r\n },\r\n \"system\": \"urn:oid:2.16.840.1.113883.3.0.0.5\",\r\n \"value\": \"18091\",\r\n \"_value\": {\r\n \"extension\": [\r\n {\r\n \"valueString\": \"MX00018091\",\r\n \"url\": \"http://hl7.org/fhir/StructureDefinition/rendered-value\"\r\n }\r\n ]\r\n },\r\n \"period\": {\r\n \"start\": \"2023-08-29T16:00:27.000Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"CI-490339977-1\",\r\n \"use\": \"usual\",\r\n \"type\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"https://fhir.cerner.com/e8a84236-c258-4952-98b7-a6ff8a9c587a/codeSet/4\",\r\n \"code\": \"2553236785\",\r\n \"display\": \"MIllennium Person Identifier\",\r\n \"userSelected\": true\r\n }\r\n ],\r\n \"text\": \"MIllennium Person Identifier\"\r\n },\r\n \"_system\": {\r\n \"extension\": [\r\n {\r\n \"valueCode\": \"unknown\",\r\n \"url\": \"http://hl7.org/fhir/StructureDefinition/data-absent-reason\"\r\n }\r\n ]\r\n },\r\n \"value\": \"6155\",\r\n \"_value\": {\r\n \"extension\": [\r\n {\r\n \"valueString\": \"6155\",\r\n \"url\": \"http://hl7.org/fhir/StructureDefinition/rendered-value\"\r\n }\r\n ]\r\n },\r\n \"period\": {\r\n \"start\": \"2023-08-29T16:00:27.000Z\"\r\n }\r\n }\r\n ],\r\n \"active\": true,\r\n \"name\": [\r\n {\r\n \"id\": \"CI-12846634-0\",\r\n \"use\": \"official\",\r\n \"text\": \"HILL, CUCUMBER\",\r\n \"family\": \"HILL\",\r\n \"given\": [\r\n \"CUCUMBER\"\r\n ],\r\n \"period\": {\r\n \"start\": \"2023-08-29T16:00:28.000Z\"\r\n }\r\n }\r\n ],\r\n \"telecom\": [\r\n {\r\n \"id\": \"CI-PH-29877149-0\",\r\n \"extension\": [\r\n {\r\n \"valueUrl\": \"(816)111-2222\",\r\n \"url\": \"http://hl7.org/fhir/StructureDefinition/iso21090-TEL-address\"\r\n }\r\n ],\r\n \"system\": \"phone\",\r\n \"value\": \"8161112222\",\r\n \"use\": \"home\",\r\n \"rank\": 1,\r\n \"period\": {\r\n \"start\": \"2023-08-29T16:13:51.000Z\"\r\n }\r\n }\r\n ],\r\n \"gender\": \"female\",\r\n \"birthDate\": \"2023-08-29\",\r\n \"deceasedBoolean\": false,\r\n \"address\": [\r\n {\r\n \"id\": \"CI-24375992-0\",\r\n \"use\": \"home\",\r\n \"text\": \"551 MAIN ST\\nKANSAS CITY, MO 64003\\nUS\",\r\n \"line\": [\r\n \"551 MAIN ST\"\r\n ],\r\n \"city\": \"KANSAS CITY\",\r\n \"district\": \"Jackson\",\r\n \"state\": \"MO\",\r\n \"postalCode\": \"64003\",\r\n \"country\": \"US\",\r\n \"period\": {\r\n \"start\": \"2023-08-29T15:58:00.000Z\"\r\n }\r\n }\r\n ],\r\n \"maritalStatus\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"https://fhir.cerner.com/e8a84236-c258-4952-98b7-a6ff8a9c587a/codeSet/38\",\r\n \"code\": \"309239\",\r\n \"display\": \"Single\",\r\n \"userSelected\": true\r\n },\r\n {\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-MaritalStatus\",\r\n \"code\": \"S\",\r\n \"display\": \"Never Married\",\r\n \"userSelected\": false\r\n }\r\n ],\r\n \"text\": \"Single\"\r\n },\r\n \"contact\": [\r\n {\r\n \"relationship\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"https://fhir.cerner.com/e8a84236-c258-4952-98b7-a6ff8a9c587a/codeSet/351\",\r\n \"code\": \"1159\",\r\n \"display\": \"Next of Kin\",\r\n \"userSelected\": true\r\n },\r\n {\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0131\",\r\n \"code\": \"N\",\r\n \"display\": \"Next-of-Kin\",\r\n \"userSelected\": false\r\n }\r\n ],\r\n \"text\": \"Next of Kin\"\r\n }\r\n ],\r\n \"name\": {\r\n \"id\": \"CI-12846756-0\",\r\n \"use\": \"official\",\r\n \"text\": \"HILL, ORANGE\",\r\n \"family\": \"HILL\",\r\n \"given\": [\r\n \"ORANGE\"\r\n ],\r\n \"period\": {\r\n \"start\": \"2023-09-01T13:38:07.000Z\"\r\n }\r\n },\r\n \"telecom\": [\r\n {\r\n \"extension\": [\r\n {\r\n \"valueUrl\": \"(816)555-1234\",\r\n \"url\": \"http://hl7.org/fhir/StructureDefinition/iso21090-TEL-address\"\r\n }\r\n ],\r\n \"system\": \"phone\",\r\n \"value\": \"8165551234\",\r\n \"use\": \"home\",\r\n \"rank\": 1,\r\n \"period\": {\r\n \"start\": \"2023-09-01T13:38:07.000Z\"\r\n }\r\n },\r\n {\r\n \"extension\": [\r\n {\r\n \"valueUrl\": \"(816)111-2222\",\r\n \"url\": \"http://hl7.org/fhir/StructureDefinition/iso21090-TEL-address\"\r\n }\r\n ],\r\n \"system\": \"phone\",\r\n \"value\": \"8161112222\",\r\n \"use\": \"mobile\",\r\n \"rank\": 1,\r\n \"period\": {\r\n \"start\": \"2023-09-01T13:38:07.000Z\"\r\n }\r\n }\r\n ],\r\n \"address\": {\r\n \"use\": \"home\",\r\n \"text\": \"551 MAIN ST\\nKANSAS CITY, MO 64030\\nUS\",\r\n \"line\": [\r\n \"551 MAIN ST\"\r\n ],\r\n \"city\": \"KANSAS CITY\",\r\n \"district\": \"Jackson\",\r\n \"state\": \"MO\",\r\n \"postalCode\": \"64030\",\r\n \"country\": \"US\",\r\n \"period\": {\r\n \"start\": \"2023-08-29T14:57:48.000Z\"\r\n }\r\n },\r\n \"gender\": \"female\",\r\n \"period\": {\r\n \"start\": \"2023-09-01T13:38:07.000Z\"\r\n }\r\n },\r\n {\r\n \"relationship\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"https://fhir.cerner.com/e8a84236-c258-4952-98b7-a6ff8a9c587a/codeSet/351\",\r\n \"code\": \"1159\",\r\n \"display\": \"Next of Kin\",\r\n \"userSelected\": true\r\n },\r\n {\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0131\",\r\n \"code\": \"N\",\r\n \"display\": \"Next-of-Kin\",\r\n \"userSelected\": false\r\n }\r\n ],\r\n \"text\": \"Next of Kin\"\r\n }\r\n ],\r\n \"name\": {\r\n \"id\": \"CI-12846635-1\",\r\n \"use\": \"official\",\r\n \"text\": \"HILL, ORANGE\",\r\n \"family\": \"HILL\",\r\n \"given\": [\r\n \"ORANGE\"\r\n ],\r\n \"period\": {\r\n \"start\": \"2023-08-29T16:00:28.000Z\"\r\n }\r\n },\r\n \"telecom\": [\r\n {\r\n \"extension\": [\r\n {\r\n \"valueUrl\": \"(816)111-2222\",\r\n \"url\": \"http://hl7.org/fhir/StructureDefinition/iso21090-TEL-address\"\r\n }\r\n ],\r\n \"system\": \"phone\",\r\n \"value\": \"8161112222\",\r\n \"use\": \"mobile\",\r\n \"rank\": 1,\r\n \"period\": {\r\n \"start\": \"2023-08-29T16:00:27.000Z\"\r\n }\r\n }\r\n ],\r\n \"address\": {\r\n \"use\": \"home\",\r\n \"text\": \"551 Main St\\nKansas City, MO 64030\\nUS\",\r\n \"line\": [\r\n \"551 Main St\"\r\n ],\r\n \"city\": \"Kansas City\",\r\n \"district\": \"Jackson\",\r\n \"state\": \"MO\",\r\n \"postalCode\": \"64030\",\r\n \"country\": \"US\",\r\n \"period\": {\r\n \"start\": \"2023-08-29T14:57:48.000Z\"\r\n }\r\n },\r\n \"gender\": \"female\",\r\n \"period\": {\r\n \"start\": \"2023-08-29T16:00:27.000Z\",\r\n \"end\": \"2023-09-01T13:38:07.000Z\"\r\n }\r\n }\r\n ],\r\n \"communication\": [\r\n {\r\n \"language\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"https://fhir.cerner.com/e8a84236-c258-4952-98b7-a6ff8a9c587a/codeSet/36\",\r\n \"code\": \"151\",\r\n \"display\": \"English\",\r\n \"userSelected\": true\r\n },\r\n {\r\n \"system\": \"urn:ietf:bcp:47\",\r\n \"code\": \"en\",\r\n \"display\": \"English\",\r\n \"userSelected\": false\r\n }\r\n ],\r\n \"text\": \"English\"\r\n },\r\n \"preferred\": true\r\n }\r\n ],\r\n \"generalPractitioner\": [\r\n {\r\n \"id\": \"CI-490339987-0\",\r\n \"reference\": \"Practitioner/769942\",\r\n \"display\": \"Cerner Test, Physician - Neonatology Cerner\"\r\n }\r\n ]\r\n}",
+ "raw": "{\r\n \"resourceType\": \"Patient\",\r\n \"id\": \"475032B\",\r\n \"identifier\": [\r\n {\r\n \"use\": \"official\",\r\n \"system\": \"http://hospital.smarthealthit.org\",\r\n \"value\": \"67890\"\r\n },\r\n {\r\n \"use\": \"usual\",\r\n \"system\": \"http://hospital.smarthealthit.org/mrn\",\r\n \"value\": \"MRN123456\"\r\n }\r\n ],\r\n \"name\": [\r\n {\r\n \"use\": \"official\",\r\n \"family\": \"Smith\",\r\n \"given\": [\r\n \"Mango\"\r\n ]\r\n }\r\n ],\r\n \"telecom\": [\r\n {\r\n \"system\": \"phone\",\r\n \"value\": \"555-123-4567\",\r\n \"use\": \"home\"\r\n }\r\n ],\r\n \"address\": [\r\n {\r\n \"use\": \"home\",\r\n \"line\": [\r\n \"123 Fake Street\"\r\n ],\r\n \"city\": \"Faketown\",\r\n \"state\": \"CA\",\r\n \"postalCode\": \"12345\",\r\n \"country\": \"USA\"\r\n }\r\n ],\r\n \"gender\": \"female\",\r\n \"birthDate\": \"2024-07-12\"\r\n}",
"options": {
"raw": {
"language": "json"
@@ -220,13 +250,18 @@
}
},
"url": {
- "raw": "{{base_url}}/api/query?fhir_server=CernerHelios: eHealthExchange&use_case=newborn-screening",
- "host": ["{{base_url}}"],
- "path": ["api", "query"],
+ "raw": "{{base_url}}/api/query?fhir_server=HELIOS Meld: Direct&use_case=newborn-screening",
+ "host": [
+ "{{base_url}}"
+ ],
+ "path": [
+ "api",
+ "query"
+ ],
"query": [
{
"key": "fhir_server",
- "value": "CernerHelios: eHealthExchange"
+ "value": "HELIOS Meld: Direct"
},
{
"key": "use_case",
@@ -234,7 +269,7 @@
}
]
},
- "description": "# Set Up\n\nThis API request demonstrates the TEFCA Query Connector's ability to query a Qualified Health Information Network (QHIN) for a given patient and return data relevant to a case investigation. The query represents a connection between a public health agency and a healthcare organization via a QHIN.\n\nThe **Body** tab shows FHIR patient resource to be submitted to the TEFCA Query Connector. In addition to the FHIR patient resource, the TEFCA Query Connector requires users to submit `fhir_server` and `use_case` parameters to specify where to make the query and to determine which relevant data should be returned to the user.\n\nFor this example API call, the user wants to make a query to the CernerHelios server via the eHealthExchange QHIN. The request is for data relevant to a newborn screening for a particular patient whose demographic data is sent in the Body of the request. To make this request, the API includes the following query parameters: `?fhir_server=CernerHelios: eHealthExchange&use_case=newborn-screening`. This information is also viewable in the **Params** tab.\n\nAfter hitting **Send** on the request, we can check the **Response** at the bottom of the page to see the returned FHIR resources that are relevant to this patient's newborn screening. For example, the returned results include a Patient resource and relevant Observation resources.\n\n# Expected Response\n\nThe expected response of a query is a FHIR bundle containing a Patient resource and resources that are specific to the use case query as indicated by the presence of a relevant LOINC, SNOMED, and/or RxNorm code. For example, a newborn screening query will only return observation resources that contain LOINC codes that are pertinent to a newborn screening query. If a resource is not present, e.g., if there are no Observation resources with newborn-screening-relevant LOINC codes, the response will not contain any Observation resources.\n\n## Expected resources returned from newborn screening query\n\n- Patient\n \n- Observations\n \n\n## LOINC codes included in newborn screening query\n\n| **Code** | **Value** |\n| --- | --- |\n| 73700-7 | CCHD newborn screening interpretation |\n| 73698-3 | Reason CCHD oxygen saturation screening not performed |\n| 54108-6 | Newborn hearing screen of Ear - left |\n| 54109-4 | Newborn hearing screen of Ear - right |\n| 58232-0 | Hearing loss risk indicators \\[Identifier\\] |\n| 57700-7 | Hearing loss newborn screening comment/discussion |\n| 73739-5 | Newborn hearing screen reason not performed of Ear - left |\n| 73742-9 | Newborn hearing screen reason not performed of Ear - right |\n| 2708-6 | Cannabinoids \\[Presence\\] in Vitreous fluid |\n| 8336-0 | Body weight \\[Percentile\\] Per age |\n\n## SNOMED codes included in newborn screening query\n\nNot applicable for this use case\n\n## RxNorm codes included in newborn screening query\n\nNot applicable for this use case"
+ "description": "# Set Up\n\nThis API request demonstrates the Query Connector's ability to directly query a server for a given patient and return data relevant to a case investigation. The direct query represents a point-to-point connection between a public health agency and a healthcare organization.\n\nThe **Body** tab shows FHIR patient resource to be submitted to the Query Connector. In addition to the FHIR patient resource, the Query Connector requires users to submit `fhir_server` and `use_case` parameters to specify where to make the query and to determine which relevant data should be returned to the user.\n\nFor this example API call, the user wants to make a direct query to the HELIOS Meld server. The request is for data relevant to a newborn screening for a particular patient whose demographic data is sent in the Body of the request. To make this request, the API includes the following query parameters: `?fhir_server=HELIOS Meld: Direct&use_case=newborn-screening`. This information is also viewable in the **Params** tab.\n\nAfter hitting **Send** on the request, we can check the **Response** at the bottom of the page to see the returned FHIR resources that are relevant to this patient's newborn screening. For example, the returned results include a Patient resource and relevant Observation resources.\n\n# Expected Response\n\nThe expected response of a query is a FHIR bundle containing a Patient resource and resources that are specific to the use case query as indicated by the presence of a relevant LOINC, SNOMED, and/or RxNorm code. For example, a newborn screening query will only return observation resources that contain LOINC codes that are pertinent to a newborn screening query. If a resource is not present, e.g., if there are no Observation resources with newborn-screening-relevant LOINC codes, the response will not contain any Observation resources.\n\n## Expected resources returned from newborn screening query\n\n- Patient\n \n- Observations\n \n\n## LOINC codes included in newborn screening query\n\n| **Code** | **Value** |\n| --- | --- |\n| 73700-7 | CCHD newborn screening interpretation |\n| 73698-3 | Reason CCHD oxygen saturation screening not performed |\n| 54108-6 | Newborn hearing screen of Ear - left |\n| 54109-4 | Newborn hearing screen of Ear - right |\n| 58232-0 | Hearing loss risk indicators \\[Identifier\\] |\n| 57700-7 | Hearing loss newborn screening comment/discussion |\n| 73739-5 | Newborn hearing screen reason not performed of Ear - left |\n| 73742-9 | Newborn hearing screen reason not performed of Ear - right |\n| 2708-6 | Cannabinoids \\[Presence\\] in Vitreous fluid |\n| 8336-0 | Body weight \\[Percentile\\] Per age |\n\n## SNOMED codes included in newborn screening query\n\nNot applicable for this use case\n\n## RxNorm codes included in newborn screening query\n\nNot applicable for this use case"
},
"response": []
},
@@ -253,46 +288,18 @@
}
},
"url": {
- "raw": "{{base_url}}/api/query?fhir_server=Helios Meld: eHealthExchange&use_case=newborn-screening",
- "host": ["{{base_url}}"],
- "path": ["api", "query"],
+ "raw": "{{base_url}}/api/query?fhir_server=HELIOS Meld: eHealthExchange&use_case=newborn-screening",
+ "host": [
+ "{{base_url}}"
+ ],
+ "path": [
+ "api",
+ "query"
+ ],
"query": [
{
"key": "fhir_server",
- "value": "Helios Meld: eHealthExchange"
- },
- {
- "key": "use_case",
- "value": "newborn-screening"
- }
- ]
- },
- "description": "# Set Up\n\nThis API request demonstrates the TEFCA Query Connector's ability to query a Qualified Health Information Network (QHIN) for a given patient and return data relevant to a case investigation. The query represents a connection between a public health agency and a healthcare organization via a QHIN.\n\nThe **Body** tab shows FHIR patient resource to be submitted to the TEFCA Query Connector. In addition to the FHIR patient resource, the TEFCA Query Connector requires users to submit `fhir_server` and `use_case` parameters to specify where to make the query and to determine which relevant data should be returned to the user.\n\nFor this example API call, the user wants to make a query to the HELIOS Meld server via the eHealthExchange QHIN. The request is for data relevant to a newborn screening for a particular patient whose demographic data is sent in the Body of the request. To make this request, the API includes the following query parameters: `?fhir_server=HELIOS Meld: eHealthExchange&use_case=newborn-screening`. This information is also viewable in the **Params** tab.\n\nAfter hitting **Send** on the request, we can check the **Response** at the bottom of the page to see the returned FHIR resources that are relevant to this patient's newborn screening. For example, the returned results include a Patient resource and relevant Observation resources.\n\n# Expected Response\n\nThe expected response of a query is a FHIR bundle containing a Patient resource and resources that are specific to the use case query as indicated by the presence of a relevant LOINC, SNOMED, and/or RxNorm code. For example, a newborn screening query will only return observation resources that contain LOINC codes that are pertinent to a newborn screening query. If a resource is not present, e.g., if there are no Observation resources with newborn-screening-relevant LOINC codes, the response will not contain any Observation resources.\n\n## Expected resources returned from newborn screening query\n\n- Patient\n \n- Observations\n \n\n## LOINC codes included in newborn screening query\n\n| **Code** | **Value** |\n| --- | --- |\n| 73700-7 | CCHD newborn screening interpretation |\n| 73698-3 | Reason CCHD oxygen saturation screening not performed |\n| 54108-6 | Newborn hearing screen of Ear - left |\n| 54109-4 | Newborn hearing screen of Ear - right |\n| 58232-0 | Hearing loss risk indicators \\[Identifier\\] |\n| 57700-7 | Hearing loss newborn screening comment/discussion |\n| 73739-5 | Newborn hearing screen reason not performed of Ear - left |\n| 73742-9 | Newborn hearing screen reason not performed of Ear - right |\n| 2708-6 | Cannabinoids \\[Presence\\] in Vitreous fluid |\n| 8336-0 | Body weight \\[Percentile\\] Per age |\n\n## SNOMED codes included in newborn screening query\n\nNot applicable for this use case\n\n## RxNorm codes included in newborn screening query\n\nNot applicable for this use case"
- },
- "response": []
- },
- {
- "name": "Newborn Screening - HELIOS Meld: Direct",
- "request": {
- "method": "POST",
- "header": [],
- "body": {
- "mode": "raw",
- "raw": "{\r\n \"resourceType\": \"Patient\",\r\n \"id\": \"475032B\",\r\n \"identifier\": [\r\n {\r\n \"use\": \"official\",\r\n \"system\": \"http://hospital.smarthealthit.org\",\r\n \"value\": \"67890\"\r\n },\r\n {\r\n \"use\": \"usual\",\r\n \"system\": \"http://hospital.smarthealthit.org/mrn\",\r\n \"value\": \"MRN123456\"\r\n }\r\n ],\r\n \"name\": [\r\n {\r\n \"use\": \"official\",\r\n \"family\": \"Smith\",\r\n \"given\": [\r\n \"Mango\"\r\n ]\r\n }\r\n ],\r\n \"telecom\": [\r\n {\r\n \"system\": \"phone\",\r\n \"value\": \"555-123-4567\",\r\n \"use\": \"home\"\r\n }\r\n ],\r\n \"address\": [\r\n {\r\n \"use\": \"home\",\r\n \"line\": [\r\n \"123 Fake Street\"\r\n ],\r\n \"city\": \"Faketown\",\r\n \"state\": \"CA\",\r\n \"postalCode\": \"12345\",\r\n \"country\": \"USA\"\r\n }\r\n ],\r\n \"gender\": \"female\",\r\n \"birthDate\": \"2024-07-12\"\r\n}",
- "options": {
- "raw": {
- "language": "json"
- }
- }
- },
- "url": {
- "raw": "{{base_url}}/api/query?fhir_server=HELIOS Meld: Direct&use_case=newborn-screening",
- "host": ["{{base_url}}"],
- "path": ["api", "query"],
- "query": [
- {
- "key": "fhir_server",
- "value": "HELIOS Meld: Direct"
+ "value": "HELIOS Meld: eHealthExchange"
},
{
"key": "use_case",
@@ -300,7 +307,7 @@
}
]
},
- "description": "# Set Up\n\nThis API request demonstrates the TEFCA Query Connector's ability to query a Qualified Health Information Network (QHIN) for a given patient and return data relevant to a case investigation. The direct query represents a point-to-point connection between a public health agency and a healthcare organization.\n\nThe **Body** tab shows FHIR patient resource to be submitted to the TEFCA Query Connector. In addition to the FHIR patient resource, the TEFCA Query Connector requires users to submit `fhir_server` and `use_case` parameters to specify where to make the query and to determine which relevant data should be returned to the user.\n\nFor this example API call, the user wants to make a query to the HELIOS Meld server directly. The request is for data relevant to a newborn screening for a particular patient whose demographic data is sent in the Body of the request. To make this request, the API includes the following query parameters: `?fhir_server=HELIOS Meld:Direct&use_case=newborn-screening`. This information is also viewable in the **Params** tab.\n\nAfter hitting **Send** on the request, we can check the **Response** at the bottom of the page to see the returned FHIR resources that are relevant to this patient's newborn screening. For example, the returned results include a Patient resource and relevant Observation resources.\n\n# Expected Response\n\nThe expected response of a query is a FHIR bundle containing a Patient resource and resources that are specific to the use case query as indicated by the presence of a relevant LOINC, SNOMED, and/or RxNorm code. For example, a newborn screening query will only return observation resources that contain LOINC codes that are pertinent to a newborn screening query. If a resource is not present, e.g., if there are no Observation resources with newborn-screening-relevant LOINC codes, the response will not contain any Observation resources.\n\n## Expected resources returned from newborn screening query\n\n- Patient\n \n- Observations\n \n\n## LOINC codes included in newborn screening query\n\n| **Code** | **Value** |\n| --- | --- |\n| 73700-7 | CCHD newborn screening interpretation |\n| 73698-3 | Reason CCHD oxygen saturation screening not performed |\n| 54108-6 | Newborn hearing screen of Ear - left |\n| 54109-4 | Newborn hearing screen of Ear - right |\n| 58232-0 | Hearing loss risk indicators \\[Identifier\\] |\n| 57700-7 | Hearing loss newborn screening comment/discussion |\n| 73739-5 | Newborn hearing screen reason not performed of Ear - left |\n| 73742-9 | Newborn hearing screen reason not performed of Ear - right |\n| 2708-6 | Cannabinoids \\[Presence\\] in Vitreous fluid |\n| 8336-0 | Body weight \\[Percentile\\] Per age |\n\n## SNOMED codes included in newborn screening query\n\nNot applicable for this use case\n\n## RxNorm codes included in newborn screening query\n\nNot applicable for this use case"
+ "description": "# Set Up\n\nThis API request demonstrates the Query Connector's ability to query a Qualified Health Information Network (QHIN) for a given patient and return data relevant to a case investigation. The query represents a connection between a public health agency and a healthcare organization via a QHIN.\n\nThe **Body** tab shows FHIR patient resource to be submitted to the Query Connector. In addition to the FHIR patient resource, the Query Connector requires users to submit `fhir_server` and `use_case` parameters to specify where to make the query and to determine which relevant data should be returned to the user.\n\nFor this example API call, the user wants to make a query to the HELIOS Meld server via the eHealthExchange QHIN. The request is for data relevant to a newborn screening for a particular patient whose demographic data is sent in the Body of the request. To make this request, the API includes the following query parameters: `?fhir_server=HELIOS Meld: eHealthExchange&use_case=newborn-screening`. This information is also viewable in the **Params** tab.\n\nAfter hitting **Send** on the request, we can check the **Response** at the bottom of the page to see the returned FHIR resources that are relevant to this patient's newborn screening. For example, the returned results include a Patient resource and relevant Observation resources.\n\n# Expected Response\n\nThe expected response of a query is a FHIR bundle containing a Patient resource and resources that are specific to the use case query as indicated by the presence of a relevant LOINC, SNOMED, and/or RxNorm code. For example, a newborn screening query will only return observation resources that contain LOINC codes that are pertinent to a newborn screening query. If a resource is not present, e.g., if there are no Observation resources with newborn-screening-relevant LOINC codes, the response will not contain any Observation resources.\n\n## Expected resources returned from newborn screening query\n\n- Patient\n \n- Observations\n \n\n## LOINC codes included in newborn screening query\n\n| **Code** | **Value** |\n| --- | --- |\n| 73700-7 | CCHD newborn screening interpretation |\n| 73698-3 | Reason CCHD oxygen saturation screening not performed |\n| 54108-6 | Newborn hearing screen of Ear - left |\n| 54109-4 | Newborn hearing screen of Ear - right |\n| 58232-0 | Hearing loss risk indicators \\[Identifier\\] |\n| 57700-7 | Hearing loss newborn screening comment/discussion |\n| 73739-5 | Newborn hearing screen reason not performed of Ear - left |\n| 73742-9 | Newborn hearing screen reason not performed of Ear - right |\n| 2708-6 | Cannabinoids \\[Presence\\] in Vitreous fluid |\n| 8336-0 | Body weight \\[Percentile\\] Per age |\n\n## SNOMED codes included in newborn screening query\n\nNot applicable for this use case\n\n## RxNorm codes included in newborn screening query\n\nNot applicable for this use case"
},
"response": []
},
@@ -320,8 +327,13 @@
},
"url": {
"raw": "{{base_url}}/api/query?fhir_server=HELIOS Meld: Direct&use_case=social-determinants",
- "host": ["{{base_url}}"],
- "path": ["api", "query"],
+ "host": [
+ "{{base_url}}"
+ ],
+ "path": [
+ "api",
+ "query"
+ ],
"query": [
{
"key": "fhir_server",
@@ -333,7 +345,7 @@
}
]
},
- "description": "# Set Up\n\nThis API request demonstrates the TEFCA Query Connector's ability to directly query a server for a given patient and return data relevant to a case investigation. The direct query represents a point-to-point connection between a public health agency and a healthcare organization.\n\nThe **Body** tab shows FHIR patient resource to be submitted to the TEFCA Query Connector. In addition to the FHIR patient resource, the TEFCA Query Connector requires users to submit `fhir_server` and `use_case` parameters to specify where to make the query and to determine which relevant data should be returned to the user.\n\nFor this example API call, the user wants to make a direct query to the Helios Meld server. The request is for data relevant to a cancer query for a particular patient whose demographic data is sent in the Body of the request. To make this request, the API includes the following query parameters: `?fhir_server=HELIOS Meld: Direct&use_case=social-determinants`. This information is also viewable in the **Params** tab.\n\nAfter hitting **Send** on the request, we can check the **Response** at the bottom of the page to see the returned FHIR resources that are relevant to this patient's social determinants of health follow-up. For example, the returned results include a Patient resource and relevant Observation resources.\n\n# Expected Response\n\nThe expected response of a query is a FHIR bundle containing a Patient resource and resources that are specific to the use case query as indicated by the presence of a relevant LOINC, SNOMED, and/or RxNorm code. In the case of social determinants of health queries, the query returns Observation resources where the category is `social-history` only. If an Observation resource does not have the category label `social-history`, it will not be returned as part of the response.\n\n## Expected resources returned from social determinants query\n\n- Patient\n \n- Observations where the `category` = `social-history`\n \n\n## LOINC codes included in social determinants query\n\nNot applicable for this use case\n\n## SNOMED codes included in social determinants query\n\nNot applicable for this use case\n\n## RxNorm codes included in social determinants query\n\nNot applicable for this use case"
+ "description": "# Set Up\n\nThis API request demonstrates the Query Connector's ability to directly query a server for a given patient and return data relevant to a case investigation. The direct query represents a point-to-point connection between a public health agency and a healthcare organization.\n\nThe **Body** tab shows FHIR patient resource to be submitted to the Query Connector. In addition to the FHIR patient resource, the Query Connector requires users to submit `fhir_server` and `use_case` parameters to specify where to make the query and to determine which relevant data should be returned to the user.\n\nFor this example API call, the user wants to make a direct query to the Helios Meld server. The request is for data relevant to a cancer query for a particular patient whose demographic data is sent in the Body of the request. To make this request, the API includes the following query parameters: `?fhir_server=HELIOS Meld: Direct&use_case=social-determinants`. This information is also viewable in the **Params** tab.\n\nAfter hitting **Send** on the request, we can check the **Response** at the bottom of the page to see the returned FHIR resources that are relevant to this patient's social determinants of health follow-up. For example, the returned results include a Patient resource and relevant Observation resources.\n\n# Expected Response\n\nThe expected response of a query is a FHIR bundle containing a Patient resource and resources that are specific to the use case query as indicated by the presence of a relevant LOINC, SNOMED, and/or RxNorm code. In the case of social determinants of health queries, the query returns Observation resources where the category is `social-history` only. If an Observation resource does not have the category label `social-history`, it will not be returned as part of the response.\n\n## Expected resources returned from social determinants query\n\n- Patient\n \n- Observations where the `category` = `social-history`\n \n\n## LOINC codes included in social determinants query\n\nNot applicable for this use case\n\n## SNOMED codes included in social determinants query\n\nNot applicable for this use case\n\n## RxNorm codes included in social determinants query\n\nNot applicable for this use case"
},
"response": []
},
@@ -353,8 +365,13 @@
},
"url": {
"raw": "{{base_url}}/api/query?fhir_server=HELIOS Meld: eHealthExchange&use_case=social-determinants",
- "host": ["{{base_url}}"],
- "path": ["api", "query"],
+ "host": [
+ "{{base_url}}"
+ ],
+ "path": [
+ "api",
+ "query"
+ ],
"query": [
{
"key": "fhir_server",
@@ -366,7 +383,7 @@
}
]
},
- "description": "StartFragment\n\n# Set Up\n\nThis API request demonstrates the TEFCA Query Connector's ability to query a Qualified Health Information Network (QHIN) for a given patient and return data relevant to a case investigation. The query represents a connection between a public health agency and a healthcare organization via a QHIN.\n\nThe **Body** tab shows FHIR patient resource to be submitted to the TEFCA Query Connector. In addition to the FHIR patient resource, the TEFCA Query Connector requires users to submit `fhir_server` and `use_case` parameters to specify where to make the query and to determine which relevant data should be returned to the user.\n\nFor this example API call, the user wants to make a query to the HELIOS Meld server via the eHealthExchange QHIN. The request is for data relevant to a cancer query for a particular patient whose demographic data is sent in the Body of the request. To make this request, the API includes the following query parameters: `?fhir_server=HELIOS Meld: eHealthExchange&use_case=social-determinants`. This information is also viewable in the **Params** tab.\n\nAfter hitting **Send** on the request, we can check the **Response** at the bottom of the page to see the returned FHIR resources that are relevant to this patient's cancer follow-up. For example, the returned results include a Patient resource and relevant Observation resources.\n\n# Expected Response\n\nThe expected response of a query is a FHIR bundle containing a Patient resource and resources that are specific to the use case query as indicated by the presence of a relevant LOINC, SNOMED, and/or RxNorm code. In the case of social determinants of health queries, the query returns Observation resources where the category is `social-history` only. If an Observation resource does not have the category label `social-history`, it will not be returned as part of the response.\n\n## Expected resources returned from cancer query\n\n- Patient\n \n- Observations where the `category` = `social-history`\n \n\n## LOINC codes included in cancer query\n\nNot applicable for this use case\n\n## SNOMED codes included in cancer query\n\nNot applicable for this use case\n\n## RxNorm codes included in cancer query\n\nNot applicable for this use case"
+ "description": "StartFragment\n\n# Set Up\n\nThis API request demonstrates the Query Connector's ability to query a Qualified Health Information Network (QHIN) for a given patient and return data relevant to a case investigation. The query represents a connection between a public health agency and a healthcare organization via a QHIN.\n\nThe **Body** tab shows FHIR patient resource to be submitted to the Query Connector. In addition to the FHIR patient resource, the Query Connector requires users to submit `fhir_server` and `use_case` parameters to specify where to make the query and to determine which relevant data should be returned to the user.\n\nFor this example API call, the user wants to make a query to the HELIOS Meld server via the eHealthExchange QHIN. The request is for data relevant to a cancer query for a particular patient whose demographic data is sent in the Body of the request. To make this request, the API includes the following query parameters: `?fhir_server=HELIOS Meld: eHealthExchange&use_case=social-determinants`. This information is also viewable in the **Params** tab.\n\nAfter hitting **Send** on the request, we can check the **Response** at the bottom of the page to see the returned FHIR resources that are relevant to this patient's cancer follow-up. For example, the returned results include a Patient resource and relevant Observation resources.\n\n# Expected Response\n\nThe expected response of a query is a FHIR bundle containing a Patient resource and resources that are specific to the use case query as indicated by the presence of a relevant LOINC, SNOMED, and/or RxNorm code. In the case of social determinants of health queries, the query returns Observation resources where the category is `social-history` only. If an Observation resource does not have the category label `social-history`, it will not be returned as part of the response.\n\n## Expected resources returned from cancer query\n\n- Patient\n \n- Observations where the `category` = `social-history`\n \n\n## LOINC codes included in cancer query\n\nNot applicable for this use case\n\n## SNOMED codes included in cancer query\n\nNot applicable for this use case\n\n## RxNorm codes included in cancer query\n\nNot applicable for this use case"
},
"response": []
},
@@ -386,8 +403,13 @@
},
"url": {
"raw": "{{base_url}}/api/query?fhir_server=HELIOS Meld: Direct&use_case=syphilis",
- "host": ["{{base_url}}"],
- "path": ["api", "query"],
+ "host": [
+ "{{base_url}}"
+ ],
+ "path": [
+ "api",
+ "query"
+ ],
"query": [
{
"key": "fhir_server",
@@ -399,7 +421,7 @@
}
]
},
- "description": "# Set Up\n\nThis API request demonstrates the TEFCA Query Connector's ability to directly query a server for a given patient and return data relevant to a case investigation. The direct query represents a point-to-point connection between a public health agency and a healthcare organization.\n\nThe **Body** tab shows FHIR patient resource to be submitted to the TEFCA Query Connector. In addition to the FHIR patient resource, the TEFCA Query Connector requires users to submit `fhir_server` and `use_case` parameters to specify where to make the query and to determine which relevant data should be returned to the user.\n\nFor this example API call, the user wants to make a direct query to the Helios Meld server. The request is for data relevant to a cancer query for a particular patient whose demographic data is sent in the Body of the request. To make this request, the API includes the following query parameters: `?fhir_server=HELIOS Meld: Direct&use_case=syphilis`. This information is also viewable in the **Params** tab.\n\nAfter hitting **Send** on the request, we can check the **Response** at the bottom of the page to see the returned FHIR resources that are relevant to this patient's cancer follow-up. For example, the returned results include a Patient resource and relevant Observation resources.\n\n# Expected Response\n\nThe expected response of a query is a FHIR bundle containing a Patient resource and resources that are specific to the use case query as indicated by the presence of a relevant LOINC, SNOMED, and/or RxNorm code. For example, a syphilis query will only return observation resources that contain LOINC codes that are pertinent to a syphilis case investigation. If a resource is not present, e.g., if there are no Observation resources with syphilis -relevant LOINC codes, the response will not contain any Observation resources.\n\n## Expected resources returned from syphilis query\n\n- Patient\n \n- Conditions\n \n- Diagnostic Reports\n \n- Encounters\n \n- Medication Requests\n \n- Observations\n \n\n## LOINC codes included in syphilis query\n\n| **Code** | **Value** |\n|-----------|------------------------------------------------------------------------|\n| LP70657-9 | RPR | \n| 53605-2 | Treponema pallidum DNA [Presence] in Blood by NAA with probe detection |\n\n\n## SNOMED codes included in syphilis query\n\n| **Code** | **Value** |\n|-----------|------------------------------------------------------------------------|\n| 76272004 | Syphilis |\n| 186847001 | Primary genital syphilis |\n\n\n## RxNorm codes included in syphilis query\n\nNot applicable for this use case\n"
+ "description": "# Set Up\n\nThis API request demonstrates the Query Connector's ability to directly query a server for a given patient and return data relevant to a case investigation. The direct query represents a point-to-point connection between a public health agency and a healthcare organization.\n\nThe **Body** tab shows FHIR patient resource to be submitted to the Query Connector. In addition to the FHIR patient resource, the Query Connector requires users to submit `fhir_server` and `use_case` parameters to specify where to make the query and to determine which relevant data should be returned to the user.\n\nFor this example API call, the user wants to make a direct query to the Helios Meld server. The request is for data relevant to a cancer query for a particular patient whose demographic data is sent in the Body of the request. To make this request, the API includes the following query parameters: `?fhir_server=HELIOS Meld: Direct&use_case=syphilis`. This information is also viewable in the **Params** tab.\n\nAfter hitting **Send** on the request, we can check the **Response** at the bottom of the page to see the returned FHIR resources that are relevant to this patient's cancer follow-up. For example, the returned results include a Patient resource and relevant Observation resources.\n\n# Expected Response\n\nThe expected response of a query is a FHIR bundle containing a Patient resource and resources that are specific to the use case query as indicated by the presence of a relevant LOINC, SNOMED, and/or RxNorm code. For example, a syphilis query will only return observation resources that contain LOINC codes that are pertinent to a syphilis case investigation. If a resource is not present, e.g., if there are no Observation resources with syphilis -relevant LOINC codes, the response will not contain any Observation resources.\n\n## Expected resources returned from syphilis query\n\n- Patient\n \n- Conditions\n \n- Diagnostic Reports\n \n- Encounters\n \n- Medication Requests\n \n- Observations\n \n\n## LOINC codes included in syphilis query\n\n| **Code** | **Value** |\n|-----------|------------------------------------------------------------------------|\n| LP70657-9 | RPR | \n| 53605-2 | Treponema pallidum DNA [Presence] in Blood by NAA with probe detection |\n\n\n## SNOMED codes included in syphilis query\n\n| **Code** | **Value** |\n|-----------|------------------------------------------------------------------------|\n| 76272004 | Syphilis |\n| 186847001 | Primary genital syphilis |\n\n\n## RxNorm codes included in syphilis query\n\nNot applicable for this use case\n"
},
"response": []
},
@@ -418,9 +440,14 @@
}
},
"url": {
- "raw": "dibbs.cloud/api/query?fhir_server=HELIOS Meld: eHealthExchange&use_case=syphilis",
- "host": ["dibbs", "cloud"],
- "path": ["api", "query"],
+ "raw": "{{base_url}}/api/query?fhir_server=HELIOS Meld: eHealthExchange&use_case=syphilis",
+ "host": [
+ "{{base_url}}"
+ ],
+ "path": [
+ "api",
+ "query"
+ ],
"query": [
{
"key": "fhir_server",
@@ -432,7 +459,7 @@
}
]
},
- "description": "# Set Up\n\nThis API request demonstrates the TEFCA Query Connector's ability to query a Qualified Health Information Network (QHIN) for a given patient and return data relevant to a case investigation. The query represents a connection between a public health agency and a healthcare organization via a QHIN.\n\nThe **Body** tab shows FHIR patient resource to be submitted to the TEFCA Query Connector. In addition to the FHIR patient resource, the TEFCA Query Connector requires users to submit `fhir_server` and `use_case` parameters to specify where to make the query and to determine which relevant data should be returned to the user.\n\nFor this example API call, the user wants to make a query to the HELIOS Meld server via the eHealthExchange QHIN. The request is for data relevant to a cancer query for a particular patient whose demographic data is sent in the Body of the request. To make this request, the API includes the following query parameters: `?fhir_server=HELIOS Meld: eHealthExchange&use_case=syphilis`. This information is also viewable in the **Params** tab.\n\nAfter hitting **Send** on the request, we can check the **Response** at the bottom of the page to see the returned FHIR resources that are relevant to this patient's syphilis case investigation. For example, the returned results include a Patient resource and relevant Observation resources.\n\n# Expected Response\n\nThe expected response of a query is a FHIR bundle containing a Patient resource and resources that are specific to the use case query as indicated by the presence of a relevant LOINC, SNOMED, and/or RxNorm code. For example, a syphilis query will only return observation resources that contain LOINC codes that are pertinent to a syphilis case investigation. If a resource is not present, e.g., if there are no Encounter resources with syphilis-relevant SNOMED codes, the response will not contain any Encounter resources.\n\n## Expected resources returned from syphilis query\n\n- Patient\n \n- Conditions\n \n- Diagnostic Reports\n \n- Encounters\n \n- Medication Requests\n \n- Observations\n \n\n## LOINC codes included in syphilis query\n\n| **Code** | **Value** |\n| --- | --- |\n| LP70657-9 | RPR |\n| 53605-2 | Treponema pallidum DNA \\[Presence\\] in Blood by NAA with probe detection |\n\n## SNOMED codes included in syphilis query\n\n| **Code** | **Value** |\n| --- | --- |\n| 76272004 | Syphilis |\n| 186847001 | Primary genital syphilis |\n\n## RxNorm codes included in syphilis query\n\nNot applicable for this use case"
+ "description": "# Set Up\n\nThis API request demonstrates the Query Connector's ability to query a Qualified Health Information Network (QHIN) for a given patient and return data relevant to a case investigation. The query represents a connection between a public health agency and a healthcare organization via a QHIN.\n\nThe **Body** tab shows FHIR patient resource to be submitted to the Query Connector. In addition to the FHIR patient resource, the Query Connector requires users to submit `fhir_server` and `use_case` parameters to specify where to make the query and to determine which relevant data should be returned to the user.\n\nFor this example API call, the user wants to make a query to the HELIOS Meld server via the eHealthExchange QHIN. The request is for data relevant to a cancer query for a particular patient whose demographic data is sent in the Body of the request. To make this request, the API includes the following query parameters: `?fhir_server=HELIOS Meld: eHealthExchange&use_case=syphilis`. This information is also viewable in the **Params** tab.\n\nAfter hitting **Send** on the request, we can check the **Response** at the bottom of the page to see the returned FHIR resources that are relevant to this patient's syphilis case investigation. For example, the returned results include a Patient resource and relevant Observation resources.\n\n# Expected Response\n\nThe expected response of a query is a FHIR bundle containing a Patient resource and resources that are specific to the use case query as indicated by the presence of a relevant LOINC, SNOMED, and/or RxNorm code. For example, a syphilis query will only return observation resources that contain LOINC codes that are pertinent to a syphilis case investigation. If a resource is not present, e.g., if there are no Encounter resources with syphilis-relevant SNOMED codes, the response will not contain any Encounter resources.\n\n## Expected resources returned from syphilis query\n\n- Patient\n \n- Conditions\n \n- Diagnostic Reports\n \n- Encounters\n \n- Medication Requests\n \n- Observations\n \n\n## LOINC codes included in syphilis query\n\n| **Code** | **Value** |\n| --- | --- |\n| LP70657-9 | RPR |\n| 53605-2 | Treponema pallidum DNA \\[Presence\\] in Blood by NAA with probe detection |\n\n## SNOMED codes included in syphilis query\n\n| **Code** | **Value** |\n| --- | --- |\n| 76272004 | Syphilis |\n| 186847001 | Primary genital syphilis |\n\n## RxNorm codes included in syphilis query\n\nNot applicable for this use case"
},
"response": []
}
@@ -443,7 +470,9 @@
"script": {
"type": "text/javascript",
"packages": {},
- "exec": [""]
+ "exec": [
+ ""
+ ]
}
},
{
@@ -451,7 +480,9 @@
"script": {
"type": "text/javascript",
"packages": {},
- "exec": [""]
+ "exec": [
+ ""
+ ]
}
}
],
@@ -462,4 +493,4 @@
"type": "string"
}
]
-}
+}
\ No newline at end of file
From 8a5ade3e4514cdd9e2e4cf39f6d24e4d8ed4f4c3 Mon Sep 17 00:00:00 2001
From: "pre-commit-ci[bot]"
<66853113+pre-commit-ci[bot]@users.noreply.github.com>
Date: Thu, 21 Nov 2024 08:58:37 -0500
Subject: [PATCH 3/9] [pre-commit.ci] pre-commit autoupdate (#164)
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Rob Mitchell <40571882+robertandremitchell@users.noreply.github.com>
Co-authored-by: Rob Mitchell
---
.pre-commit-config.yaml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml
index e4b19fa07..c12b941cc 100644
--- a/.pre-commit-config.yaml
+++ b/.pre-commit-config.yaml
@@ -6,7 +6,7 @@ repos:
name: Pretty Format JSON
args: [--autofix, --no-sort-keys]
- repo: https://github.com/pre-commit/mirrors-eslint
- rev: "v9.14.0"
+ rev: "v9.15.0"
hooks:
- id: eslint
name: ESLint
From 58a40677aa5994f14b4890f4cd0bd77ddbfda37d Mon Sep 17 00:00:00 2001
From: Katie Campbell Downie
Date: Thu, 21 Nov 2024 12:01:48 -0600
Subject: [PATCH 4/9] Save condition selections on template builder page (#161)
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
---
.../app/query/components/header/header.tsx | 6 +-
.../query/designSystem/checkbox/Checkbox.tsx | 4 +
.../ConditionColumnDisplay.tsx | 63 +++++++++++-
.../buildFromTemplates/ConditionOption.tsx | 6 +-
.../queryBuilding/buildFromTemplates/page.tsx | 98 ++++++++++++++++---
5 files changed, 162 insertions(+), 15 deletions(-)
diff --git a/query-connector/src/app/query/components/header/header.tsx b/query-connector/src/app/query/components/header/header.tsx
index 381494b76..eb4b7fc39 100644
--- a/query-connector/src/app/query/components/header/header.tsx
+++ b/query-connector/src/app/query/components/header/header.tsx
@@ -136,4 +136,8 @@ export default function HeaderComponent() {
);
}
-const LOGGED_IN_PATHS = ["/query", "/queryBuilding"];
+const LOGGED_IN_PATHS = [
+ "/query",
+ "/queryBuilding",
+ "/queryBuilding/buildFromTemplates",
+];
diff --git a/query-connector/src/app/query/designSystem/checkbox/Checkbox.tsx b/query-connector/src/app/query/designSystem/checkbox/Checkbox.tsx
index 6997ae131..e74225961 100644
--- a/query-connector/src/app/query/designSystem/checkbox/Checkbox.tsx
+++ b/query-connector/src/app/query/designSystem/checkbox/Checkbox.tsx
@@ -7,6 +7,7 @@ type CheckboxProps = {
label: string;
className?: string;
onClick?: () => void;
+ checked: boolean;
};
/**
@@ -16,6 +17,7 @@ type CheckboxProps = {
* @param root0.id HTML id used to reference the checkbox
* @param root0.className Optional styling classes
* @param root0.onClick Event listener for checkbox click
+ * @param root0.checked Boolean indicating whether the checkbox is checked
* @returns A checkbox styled according to our design system
*/
const Checkbox: React.FC = ({
@@ -23,6 +25,7 @@ const Checkbox: React.FC = ({
id,
className,
onClick,
+ checked,
}) => {
return (
= ({
name={id}
className={classNames(styles.checkbox, className)}
onClick={onClick}
+ defaultChecked={checked}
>
);
};
diff --git a/query-connector/src/app/queryBuilding/buildFromTemplates/ConditionColumnDisplay.tsx b/query-connector/src/app/queryBuilding/buildFromTemplates/ConditionColumnDisplay.tsx
index 782925ece..fa2269da8 100644
--- a/query-connector/src/app/queryBuilding/buildFromTemplates/ConditionColumnDisplay.tsx
+++ b/query-connector/src/app/queryBuilding/buildFromTemplates/ConditionColumnDisplay.tsx
@@ -6,13 +6,20 @@ import {
import styles from "./buildfromTemplate.module.scss";
import ConditionOption from "./ConditionOption";
import classNames from "classnames";
+import { FormError } from "./page";
type ConditionColumnDisplayProps = {
fetchedConditions: CategoryNameToConditionOptionMap;
searchFilter: string | undefined;
+ selectedConditions: CategoryNameToConditionOptionMap;
setFetchedConditions: Dispatch<
SetStateAction
>;
+ setSelectedConditions: Dispatch<
+ SetStateAction
+ >;
+ setFormError: Dispatch>;
+ formError: FormError;
};
/**
* Column display component for the query building page
@@ -20,15 +27,27 @@ type ConditionColumnDisplayProps = {
* @param root0.fetchedConditions - conditions queried from backend to display
* @param root0.searchFilter - filter grabbed from search field to filter fetched
* components against
+ * @param root0.selectedConditions - conditions the user has marked to included in
+ * their query
* @param root0.setFetchedConditions - state function that updates the include /
* exclude of the queryset
+ * @param root0.setSelectedConditions - state function that updates the subset of
+ * fetched conditions to be included in the query
+ * @param root0.setFormError - state function that updates the subset of
+ * fetched conditions to be included in the query
+ * @param root0.formError - state function that updates the subset of
+ * fetched conditions to be included in the query
* @returns Conditions split out into two columns that will filter themselves
* at both the category and condition levels if a valid search filter is applied.
*/
export const ConditionColumnDisplay: React.FC = ({
fetchedConditions,
searchFilter,
+ selectedConditions,
setFetchedConditions,
+ setSelectedConditions,
+ formError,
+ setFormError,
}) => {
const [conditionsToDisplay, setConditionsToDisplay] =
useState(fetchedConditions);
@@ -46,19 +65,60 @@ export const ConditionColumnDisplay: React.FC = ({
}
}, [searchFilter]);
- function toggleFetchedConditionSelection(
+ async function toggleFetchedConditionSelection(
category: string,
conditionId: string,
) {
+ const prevSelected = selectedConditions?.[category]?.[conditionId]?.include;
const prevFetch = structuredClone(fetchedConditions);
const prevValues = prevFetch[category][conditionId];
prevFetch[category][conditionId] = {
name: prevValues.name,
include: !prevValues.include,
};
+
+ const shouldRemove =
+ // prevSelected being undefined means we've never added anything to selectedConditions,
+ // so we shouldn't remove anything
+ prevSelected == undefined
+ ? false
+ : // otherwise, if include was previously true and now its false, we should remove it
+ prevFetch[category][conditionId].include == true &&
+ prevValues.include == false;
+
+ updateSelectedConditions(shouldRemove, category, conditionId, prevFetch);
setFetchedConditions(prevFetch);
}
+ const updateSelectedConditions = (
+ shouldRemove: boolean,
+ category: string,
+ conditionId: string,
+ prevFetch: CategoryNameToConditionOptionMap,
+ ) => {
+ if (shouldRemove) {
+ delete selectedConditions[category][conditionId];
+ // if there are no more entries for a given category, remove the category
+ if (Object.values(selectedConditions[category]).length == 0) {
+ delete selectedConditions[category];
+ }
+ // if there are no entries at all, set an error (to disable the button)
+ if (Object.values(selectedConditions).length < 1) {
+ setFormError({ ...formError, ...{ selectedConditions: true } });
+ }
+ } else {
+ setSelectedConditions((prevState) => {
+ return {
+ ...prevState,
+ [category]: {
+ ...prevState?.[category],
+ [conditionId]: prevFetch[category]?.[conditionId],
+ },
+ };
+ });
+ }
+ };
+
const columnOneEntries = Object.entries(conditionsToDisplay).filter(
(_, i) => i % 2 === 0,
);
@@ -92,6 +152,7 @@ export const ConditionColumnDisplay: React.FC = ({
([conditionId, conditionNameAndInclude]) => {
return (
void;
+ checked: boolean;
};
/**
@@ -12,14 +13,16 @@ type ConditionOptionProps = {
* @param root0 - params
* @param root0.conditionId - ID of the condition to reference
* @param root0.conditionName - name of condition to display
- * @param root0.handleConditionSelection - listner function for checkbox
+ * @param root0.handleConditionSelection - listener function for checkbox
* selection
+ * @param root0.checked - current checkbox selection status
* @returns A component for display to redner on the query building page
*/
const ConditionOption: React.FC = ({
conditionId,
conditionName,
handleConditionSelection,
+ checked,
}) => {
return (
From bcb1f3e09c994cdd13bac7df76afabc82796fba4 Mon Sep 17 00:00:00 2001
From: Nick Clyde
Date: Thu, 21 Nov 2024 15:08:17 -0800
Subject: [PATCH 5/9] Add Keycloak OAuth login (#159)
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Marcelle <53578688+m-goggins@users.noreply.github.com>
---
query-connector/.env.sample | 7 +
query-connector/README.md | 23 +-
query-connector/docker-compose-dev.yaml | 12 +
query-connector/keycloak/master-realm.json | 2005 +++++++++++++++++
query-connector/package-lock.json | 119 +
query-connector/package.json | 1 +
.../src/app/api/auth/[...nextauth]/route.ts | 2 +
query-connector/src/app/layout.tsx | 17 +-
query-connector/src/app/middleware.js | 2 +
.../app/query/components/header/header.tsx | 12 +-
query-connector/src/auth.ts | 6 +
11 files changed, 2194 insertions(+), 12 deletions(-)
create mode 100644 query-connector/.env.sample
create mode 100644 query-connector/keycloak/master-realm.json
create mode 100644 query-connector/src/app/api/auth/[...nextauth]/route.ts
create mode 100644 query-connector/src/auth.ts
diff --git a/query-connector/.env.sample b/query-connector/.env.sample
new file mode 100644
index 000000000..4009e51b1
--- /dev/null
+++ b/query-connector/.env.sample
@@ -0,0 +1,7 @@
+DATABASE_URL=postgresql://postgres@localhost:5432/tefca_db
+AUTH_SECRET="ido5D/uybeAB3AmMQwn+ubw2zYC4t2h7RJlW2R79598="
+AUTH_KEYCLOAK_ID=query-connector
+AUTH_KEYCLOAK_SECRET=ZG3f7R1J3qIwBaw8QtttJnJMinpERQKs
+AUTH_KEYCLOAK_ISSUER=http://localhost:8080/realms/master
+ERSD_API_KEY=
+UMLS_API_KEY=
diff --git a/query-connector/README.md b/query-connector/README.md
index d6ecac366..89428b708 100644
--- a/query-connector/README.md
+++ b/query-connector/README.md
@@ -12,7 +12,28 @@ The Query Connector app can be run using Docker (or any other OCI container runt
Before running the Query Connector locally, you will need to obtain an API key for the electronic Reporting and Surveillance Distribution (eRSD). With the API key, you have access to 200+ pre-built queries for reportable conditions, e.g., chlamydia, influenza, hepatitis A, etc. These queries can be used and modified in the Query Connector app.
-To obtain a free API key, please visit https://ersd.aimsplatform.org/#/api-keys and follow the sign up instructions. Add your API key as an environment variable called `ERSD_API_KEY` in an `.env` file that can be accessed when running the Query Connector app.
+To obtain a free API key, please visit and follow the sign up instructions.
+
+Next, set up your `.env` file with the following command: `cp .env.sample .env`
+
+Adjust your `DATABASE_URL` as needed.
+
+Add your API keys as an environment variables called `ERSD_API_KEY` and `UMLS_API_KEY` in the `.env` file so that they can be accessed when running the Query Connector app.
+
+#### Running Keycloak for Authentication
+
+```
+docker compose up -f docker-compose-dev.yaml up keycloak
+```
+
+To login via Keycloak, make sure your `.env` is updated using `cp` command above and use the following credentials to login at `localhost:8080` after spinning up the container:
+
+```
+Username: qc-admin
+Password: QcDev2024!
+```
+
+Next, run the app with `npm run dev` or `npm run dev-win`. You should see a sign in button at . Click it and login with the above credentials, and it should redirect back to !
#### Running with Docker (Recommended)
diff --git a/query-connector/docker-compose-dev.yaml b/query-connector/docker-compose-dev.yaml
index 4a0d4df4f..d6287142c 100644
--- a/query-connector/docker-compose-dev.yaml
+++ b/query-connector/docker-compose-dev.yaml
@@ -45,3 +45,15 @@ services:
command: ["sh", "post_e2e_data_hapi.sh"]
depends_on:
- hapi-fhir-server
+
+ # Keycloak for authentication
+ keycloak:
+ image: quay.io/keycloak/keycloak:26.0.2
+ ports:
+ - 8080:8080
+ volumes:
+ - ./keycloak:/opt/keycloak/data/import
+ restart: always
+ command:
+ - start-dev
+ - --import-realm
diff --git a/query-connector/keycloak/master-realm.json b/query-connector/keycloak/master-realm.json
new file mode 100644
index 000000000..ca43a59df
--- /dev/null
+++ b/query-connector/keycloak/master-realm.json
@@ -0,0 +1,2005 @@
+{
+ "id" : "c05ec7e6-dc6c-45da-bc02-2b20bd3e1047",
+ "realm" : "master",
+ "displayName" : "Keycloak",
+ "displayNameHtml" : "
+
+
+
);
}
diff --git a/query-connector/src/app/middleware.js b/query-connector/src/app/middleware.js
index c4de6234d..739a2e297 100644
--- a/query-connector/src/app/middleware.js
+++ b/query-connector/src/app/middleware.js
@@ -22,3 +22,5 @@ export function middleware(request) {
return NextResponse.next();
}
+
+export { auth as middleware } from "@/auth";
diff --git a/query-connector/src/app/query/components/header/header.tsx b/query-connector/src/app/query/components/header/header.tsx
index eb4b7fc39..c71af7a05 100644
--- a/query-connector/src/app/query/components/header/header.tsx
+++ b/query-connector/src/app/query/components/header/header.tsx
@@ -6,6 +6,7 @@ import { Button, Icon } from "@trussworks/react-uswds";
import styles from "./header.module.scss";
import { metadata } from "@/app/constants";
import classNames from "classnames";
+import { signIn, useSession } from "next-auth/react";
/**
* Produces the header.
* @returns The HeaderComponent component.
@@ -36,8 +37,11 @@ export default function HeaderComponent() {
const router = useRouter();
const path = usePathname();
- const handleClick = () => {
- router.push(`/signin`);
+ const { data: session } = useSession();
+ const isLoggedIn = session?.user != null;
+
+ const handleSignIn = () => {
+ signIn("keycloak", { redirectTo: "/query" });
};
const toggleMenuDropdown = () => {
@@ -76,13 +80,13 @@ export default function HeaderComponent() {
)}
>
{/* TODO: Rework show/hide rules based on actual auth status */}
- {path != "/signin" && !LOGGED_IN_PATHS.includes(path) && (
+ {!isLoggedIn && !LOGGED_IN_PATHS.includes(path) && (
diff --git a/query-connector/src/auth.ts b/query-connector/src/auth.ts
new file mode 100644
index 000000000..b27601423
--- /dev/null
+++ b/query-connector/src/auth.ts
@@ -0,0 +1,6 @@
+import NextAuth from "next-auth";
+import Keycloak from "next-auth/providers/keycloak";
+
+export const { handlers, signIn, signOut, auth } = NextAuth({
+ providers: [Keycloak],
+});
From 5db89a821b1fa1bcf4806fb5ae98eb45843dccc9 Mon Sep 17 00:00:00 2001
From: Rob Mitchell <40571882+robertandremitchell@users.noreply.github.com>
Date: Mon, 25 Nov 2024 12:53:44 -0500
Subject: [PATCH 6/9] Changing conflicting ports in docker-compose-dev (#174)
---
query-connector/README.md | 6 +++---
query-connector/docker-compose-dev.yaml | 2 +-
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/query-connector/README.md b/query-connector/README.md
index 89428b708..5e6af20f1 100644
--- a/query-connector/README.md
+++ b/query-connector/README.md
@@ -12,7 +12,7 @@ The Query Connector app can be run using Docker (or any other OCI container runt
Before running the Query Connector locally, you will need to obtain an API key for the electronic Reporting and Surveillance Distribution (eRSD). With the API key, you have access to 200+ pre-built queries for reportable conditions, e.g., chlamydia, influenza, hepatitis A, etc. These queries can be used and modified in the Query Connector app.
-To obtain a free API key, please visit and follow the sign up instructions.
+To obtain a free API key, please visit [https://ersd.aimsplatform.org/#/api-keys](https://ersd.aimsplatform.org/#/api-keys) and follow the sign up instructions.
Next, set up your `.env` file with the following command: `cp .env.sample .env`
@@ -23,7 +23,7 @@ Add your API keys as an environment variables called `ERSD_API_KEY` and `UMLS_AP
#### Running Keycloak for Authentication
```
-docker compose up -f docker-compose-dev.yaml up keycloak
+docker compose -f docker-compose-dev.yaml up keycloak
```
To login via Keycloak, make sure your `.env` is updated using `cp` command above and use the following credentials to login at `localhost:8080` after spinning up the container:
@@ -33,7 +33,7 @@ Username: qc-admin
Password: QcDev2024!
```
-Next, run the app with `npm run dev` or `npm run dev-win`. You should see a sign in button at . Click it and login with the above credentials, and it should redirect back to !
+Next, run the app with `npm run dev` or `npm run dev-win`. You should see a sign in button at [http://localhost:3000](http://localhost:3000). Click it and login with the above credentials, and it should redirect back to [http://localhost:3000/query](http://localhost:3000/query)!
#### Running with Docker (Recommended)
diff --git a/query-connector/docker-compose-dev.yaml b/query-connector/docker-compose-dev.yaml
index d6287142c..e7061aecf 100644
--- a/query-connector/docker-compose-dev.yaml
+++ b/query-connector/docker-compose-dev.yaml
@@ -50,7 +50,7 @@ services:
keycloak:
image: quay.io/keycloak/keycloak:26.0.2
ports:
- - 8080:8080
+ - 8081:8081
volumes:
- ./keycloak:/opt/keycloak/data/import
restart: always
From dc72a08d90af4dd2a490c227dac940924b90c24e Mon Sep 17 00:00:00 2001
From: Nick Clyde
Date: Mon, 25 Nov 2024 12:11:46 -0800
Subject: [PATCH 7/9] Make sure keycloak port bind is bound to 8080 inside
container (#175)
---
query-connector/.env.sample | 2 +-
query-connector/docker-compose-dev.yaml | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/query-connector/.env.sample b/query-connector/.env.sample
index 4009e51b1..0cb7a6e46 100644
--- a/query-connector/.env.sample
+++ b/query-connector/.env.sample
@@ -2,6 +2,6 @@ DATABASE_URL=postgresql://postgres@localhost:5432/tefca_db
AUTH_SECRET="ido5D/uybeAB3AmMQwn+ubw2zYC4t2h7RJlW2R79598="
AUTH_KEYCLOAK_ID=query-connector
AUTH_KEYCLOAK_SECRET=ZG3f7R1J3qIwBaw8QtttJnJMinpERQKs
-AUTH_KEYCLOAK_ISSUER=http://localhost:8080/realms/master
+AUTH_KEYCLOAK_ISSUER=http://localhost:8081/realms/master
ERSD_API_KEY=
UMLS_API_KEY=
diff --git a/query-connector/docker-compose-dev.yaml b/query-connector/docker-compose-dev.yaml
index e7061aecf..34c1d8334 100644
--- a/query-connector/docker-compose-dev.yaml
+++ b/query-connector/docker-compose-dev.yaml
@@ -50,7 +50,7 @@ services:
keycloak:
image: quay.io/keycloak/keycloak:26.0.2
ports:
- - 8081:8081
+ - 8081:8080
volumes:
- ./keycloak:/opt/keycloak/data/import
restart: always
From c7d86add1fc80e7554eef745f990e2578fd2d392 Mon Sep 17 00:00:00 2001
From: bamader <49412165+bamader@users.noreply.github.com>
Date: Tue, 26 Nov 2024 08:36:50 -0500
Subject: [PATCH 8/9] Dev dump (#158)
---
query-connector/Dockerfile | 1 +
query-connector/VS_DUMP_INFO.md | 19 +
query-connector/docker-compose-dev.yaml | 2 +
query-connector/docker-compose-e2e.yaml | 2 +
query-connector/e2e/customize_query.spec.ts | 2 +-
.../sql/V01_01__tcr_custom_query_schema.sql | 13 +-
.../flyway/sql/V01_02__load_tcr_data.sql | 175314 ---------------
.../sql/V01_03__insert_hardcoded_values.sql | 157 -
.../V01_04__insert_tcr_default_queries.sql | 58 -
.../V01_05__insert_nbs_hardcoded_values.sql | 409 -
.../sql/V01_06__add_dibbsConceptType.sql | 8 -
.../sql/V01_07__add_conditions_category.sql | 256 -
.../app/assets/DIBBS_Custom_ValueSets.json | 1337 -
.../app/assets/dibbs_db_seed_category.json | 1134 +
.../app/assets/dibbs_db_seed_concepts.json | 1802 +
.../dibbs_db_seed_condition_to_valueset.json | 100 +
.../app/assets/dibbs_db_seed_conditions.json | 18 +
.../dibbs_db_seed_valueset_to_concept.json | 1189 +
.../app/assets/dibbs_db_seed_valuesets.json | 148 +
query-connector/src/app/database-service.ts | 191 +-
query-connector/src/app/seedSqlStructs.ts | 208 +
query-connector/src/db-creation.ts | 186 +-
query-connector/vs_dump.sql | 122475 ++++++++++
23 files changed, 127444 insertions(+), 177585 deletions(-)
create mode 100644 query-connector/VS_DUMP_INFO.md
delete mode 100644 query-connector/flyway/sql/V01_02__load_tcr_data.sql
delete mode 100644 query-connector/flyway/sql/V01_03__insert_hardcoded_values.sql
delete mode 100644 query-connector/flyway/sql/V01_04__insert_tcr_default_queries.sql
delete mode 100644 query-connector/flyway/sql/V01_05__insert_nbs_hardcoded_values.sql
delete mode 100644 query-connector/flyway/sql/V01_06__add_dibbsConceptType.sql
delete mode 100644 query-connector/flyway/sql/V01_07__add_conditions_category.sql
delete mode 100644 query-connector/src/app/assets/DIBBS_Custom_ValueSets.json
create mode 100644 query-connector/src/app/assets/dibbs_db_seed_category.json
create mode 100644 query-connector/src/app/assets/dibbs_db_seed_concepts.json
create mode 100644 query-connector/src/app/assets/dibbs_db_seed_condition_to_valueset.json
create mode 100644 query-connector/src/app/assets/dibbs_db_seed_conditions.json
create mode 100644 query-connector/src/app/assets/dibbs_db_seed_valueset_to_concept.json
create mode 100644 query-connector/src/app/assets/dibbs_db_seed_valuesets.json
create mode 100644 query-connector/src/app/seedSqlStructs.ts
create mode 100644 query-connector/vs_dump.sql
diff --git a/query-connector/Dockerfile b/query-connector/Dockerfile
index b6b56e0f6..708ec9ee4 100644
--- a/query-connector/Dockerfile
+++ b/query-connector/Dockerfile
@@ -49,6 +49,7 @@ COPY --from=installer /app/next.config.js .
COPY --from=installer /app/package.json .
COPY --from=installer /app/flyway/conf/flyway.conf ../flyway/conf/flyway.conf
COPY --from=installer /app/flyway/sql ../flyway/sql
+COPY --from=installer /app/src/app/assets ./.next/server/app/assets
# Automatically leverage output traces to reduce image size
COPY --from=installer --chown=nextjs:nodejs /app/.next/standalone ./
diff --git a/query-connector/VS_DUMP_INFO.md b/query-connector/VS_DUMP_INFO.md
new file mode 100644
index 000000000..d6c3ab06f
--- /dev/null
+++ b/query-connector/VS_DUMP_INFO.md
@@ -0,0 +1,19 @@
+## ValueSet SQL Dump Information
+
+In order to make the dev process as low-lift as possible, we want to avoid executing the `db-creation` scripts when booting up the application in dev mode via `npm run dev`. To that end, we've created a `pg_dump` file containing all the valusets, concepts, and foreign key mappings that would be extracted from a fresh pull of the eRSD and processed through our creation functions. This file, `vs_dump.sql` has been mounted into the docker volume of our postgres DB when running in dev mode as an entrypoint script. This means it will be automatically executed when the DB is freshly spun up. You shouldn't need to do anything to facilitate this mounting or file running.
+
+## Updating the pg_dump
+
+If the DB extract file ever needs to be updated, you can use the following simple process:
+
+1. Start up the application on your local machine using a regular `docker compose up`, and wait for the DB to be ready.
+2. Load the eRSD and valuesets into the DIBBs DB by using the `Create Query` button on the `/queryBuilding` page. Optionally, use DBeaver to verify that valuesets exist in the database.
+3. In a fresh terminal window, run
+
+```
+pg_dump -U postgres -f vs_dump.sql -h localhost -p 5432 tefca_db
+```
+
+If the above doesn't work, try replacing `localhost` with `0.0.0.0`.
+4. Enter the DB password when prompted.
+5. The extract file should now be created. It should automatically be located in `/query-connector`, but if it isn't, put it there.
\ No newline at end of file
diff --git a/query-connector/docker-compose-dev.yaml b/query-connector/docker-compose-dev.yaml
index 34c1d8334..300b60311 100644
--- a/query-connector/docker-compose-dev.yaml
+++ b/query-connector/docker-compose-dev.yaml
@@ -12,6 +12,8 @@ services:
# DATABASE_URL=postgresql://postgres:pw@localhost:5432/tefca_db
# Note: you must have a local .env file with the ERSD_API_KEY set to a key
# obtained from the ERSD API at https://ersd.aimsplatform.org/#/api-keys
+ volumes:
+ - ./vs_dump.sql:/docker-entrypoint-initdb.d/vs_dump.sql
healthcheck:
test: ["CMD-SHELL", "pg_isready -U postgres"]
interval: 2s
diff --git a/query-connector/docker-compose-e2e.yaml b/query-connector/docker-compose-e2e.yaml
index 079806f2a..4447e96f4 100644
--- a/query-connector/docker-compose-e2e.yaml
+++ b/query-connector/docker-compose-e2e.yaml
@@ -8,6 +8,8 @@ services:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=pw
- POSTGRES_DB=tefca_db
+ volumes:
+ - ./vs_dump.sql:/docker-entrypoint-initdb.d/vs_dump.sql
healthcheck:
test: ["CMD-SHELL", "pg_isready -U postgres"]
interval: 2s
diff --git a/query-connector/e2e/customize_query.spec.ts b/query-connector/e2e/customize_query.spec.ts
index 77f6a3a78..c558bccd4 100644
--- a/query-connector/e2e/customize_query.spec.ts
+++ b/query-connector/e2e/customize_query.spec.ts
@@ -48,7 +48,7 @@ test.describe("querying with the Query Connector", () => {
test.slow();
await expect(
page.getByText(
- "249 labs found, 4 medications found, 104 conditions found.",
+ "250 labs found, 4 medications found, 104 conditions found.",
),
).toBeVisible();
await page.getByRole("link", { name: "Medications" }).click();
diff --git a/query-connector/flyway/sql/V01_01__tcr_custom_query_schema.sql b/query-connector/flyway/sql/V01_01__tcr_custom_query_schema.sql
index 90274e55a..71fae96bc 100644
--- a/query-connector/flyway/sql/V01_01__tcr_custom_query_schema.sql
+++ b/query-connector/flyway/sql/V01_01__tcr_custom_query_schema.sql
@@ -4,7 +4,15 @@ CREATE TABLE IF NOT EXISTS conditions (
id TEXT PRIMARY KEY,
system TEXT,
name TEXT,
- version TEXT
+ version TEXT,
+ category TEXT
+);
+
+CREATE TABLE IF NOT EXISTS category_data (
+ condition_name TEXT,
+ condition_code TEXT PRIMARY KEY,
+ category TEXT,
+ FOREIGN KEY(condition_code) REFERENCES conditions(id)
);
CREATE TABLE IF NOT EXISTS valuesets (
@@ -13,7 +21,8 @@ CREATE TABLE IF NOT EXISTS valuesets (
version TEXT,
name TEXT,
author TEXT,
- type TEXT
+ type TEXT,
+ dibbs_concept_type TEXT
);
CREATE TABLE IF NOT EXISTS concepts (
diff --git a/query-connector/flyway/sql/V01_02__load_tcr_data.sql b/query-connector/flyway/sql/V01_02__load_tcr_data.sql
deleted file mode 100644
index 760a1c22e..000000000
--- a/query-connector/flyway/sql/V01_02__load_tcr_data.sql
+++ /dev/null
@@ -1,175314 +0,0 @@
-
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.6_20230602','2.16.840.1.113762.1.4.1146.6','20230602','Diphtheria (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2030_20230125','2.16.840.1.113762.1.4.1146.2030','20230125','Bartonella henselae infection (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2151_20230122','2.16.840.1.113762.1.4.1146.2151','20230122','Congenital Hearing Loss (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2031_20230125','2.16.840.1.113762.1.4.1146.2031','20230125','Bartonella quintana infection (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063','20191227','Opioid Overdose and Poisoning (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.360_20220603','2.16.840.1.113762.1.4.1146.360','20220603','Botulism (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150','20240123','Congenital Hearing Loss (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.120_20210527','2.16.840.1.113762.1.4.1146.120','20210527','Meningococcal Disease (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.362_20210527','2.16.840.1.113762.1.4.1146.362','20210527','Hansens Disease (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.121_20220603','2.16.840.1.113762.1.4.1146.121','20220603','Meningococcal Disease (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.363_20181031','2.16.840.1.113762.1.4.1146.363','20181031','Hansens Disease (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.123_20180620','2.16.840.1.113762.1.4.1146.123','20180620','Poliomyelitis (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.365_20181031','2.16.840.1.113762.1.4.1146.365','20181031','Silicosis (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.124_20230122','2.16.840.1.113762.1.4.1146.124','20230122','Poliomyelitis (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.366_20230122','2.16.840.1.113762.1.4.1146.366','20230122','Silicosis (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.126_20181031','2.16.840.1.113762.1.4.1146.126','20181031','Measles (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.127_20181031','2.16.840.1.113762.1.4.1146.127','20181031','Measles (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.248_20200515','2.16.840.1.113762.1.4.1146.248','20200515','Spotted Fever Rickettsiosis (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2034_20230125','2.16.840.1.113762.1.4.1146.2034','20230125','Bartonella quintana infection (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2155_20230122','2.16.840.1.113762.1.4.1146.2155','20230122','Congenital Hypothyroidism [Unspecified] (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.249_20181031','2.16.840.1.113762.1.4.1146.249','20181031','Spotted Fever Rickettsiosis (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.129_20181031','2.16.840.1.113762.1.4.1146.129','20181031','Acute Hepatitis B Virus Infection (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2032_20230125','2.16.840.1.113762.1.4.1146.2032','20230125','Bartonella bacilliformis infection (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2153_20240123','2.16.840.1.113762.1.4.1146.2153','20240123','Primary Congenital Hypothyroidism (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2033_20230125','2.16.840.1.113762.1.4.1146.2033','20230125','Bartonella henselae infection (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2154_20240123','2.16.840.1.113762.1.4.1146.2154','20240123','Congenital Hypothyroidism [Unspecified] (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.590_20191227','2.16.840.1.113762.1.4.1146.590','20191227','Zika Virus Disease (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.592_20190817','2.16.840.1.113762.1.4.1146.592','20190817','Zika Virus Disease (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.230_20181031','2.16.840.1.113762.1.4.1146.230','20181031','Malaria (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.112_20240619','2.16.840.1.113762.1.4.1146.112','20240619','Tetanus (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.113_20181031','2.16.840.1.113762.1.4.1146.113','20181031','Tetanus (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.234_20181031','2.16.840.1.113762.1.4.1146.234','20181031','Lyme Disease (Erythema Migrans) (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.235_20181031','2.16.840.1.113762.1.4.1146.235','20181031','Anaplasmosis (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.115_20230122','2.16.840.1.113762.1.4.1146.115','20230122','Mumps (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.116_20190609','2.16.840.1.113762.1.4.1146.116','20190609','Diphtheria (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.117_20240123','2.16.840.1.113762.1.4.1146.117','20240123','Mumps (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.359_20240620','2.16.840.1.113762.1.4.1146.359','20240620','Botulism (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2288_20240123','2.16.840.1.113762.1.4.1146.2288','20240123','In Utero Exposure to Opioids, Benzodiazepines, or Barbiturates (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2052_20240123','2.16.840.1.113762.1.4.1146.2052','20240123','Echinococcosis (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2053_20230125','2.16.840.1.113762.1.4.1146.2053','20230125','Echinococcosis (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460','20240620','HIV Infection or AIDS (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.461_20181031','2.16.840.1.113762.1.4.1146.461','20181031','HIV Infection or AIDS (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.221_20181031','2.16.840.1.113762.1.4.1146.221','20181031','Ehrlichiosis (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.224_20181031','2.16.840.1.113762.1.4.1146.224','20181031','Ehrlichiosis (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.105_20181031','2.16.840.1.113762.1.4.1146.105','20181031','Rubella (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.226_20240123','2.16.840.1.113762.1.4.1146.226','20240123','Lyme Disease (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.106_20181031','2.16.840.1.113762.1.4.1146.106','20181031','Rubella (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2056_20230125','2.16.840.1.113762.1.4.1146.2056','20230125','Alveolar Echinococcosis (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.227_20230122','2.16.840.1.113762.1.4.1146.227','20230122','Lyme Disease (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2057_20230125','2.16.840.1.113762.1.4.1146.2057','20230125','Alveolar Echinococcosis (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1089_20191227','2.16.840.1.113762.1.4.1146.1089','20191227','Syphilis [Congenital] (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2054_20230125','2.16.840.1.113762.1.4.1146.2054','20230125','Cystic Echinococcosis (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.229_20220601','2.16.840.1.113762.1.4.1146.229','20220601','Malaria (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2055_20230125','2.16.840.1.113762.1.4.1146.2055','20230125','Cystic Echinococcosis (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2063_20230125','2.16.840.1.113762.1.4.1146.2063','20230125','Genital Warts (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2064_20230125','2.16.840.1.113762.1.4.1146.2064','20230125','Diphyllobothriasis (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2061_20230125','2.16.840.1.113762.1.4.1146.2061','20230125','Genital Warts (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1090_20230602','2.16.840.1.113762.1.4.1146.1090','20230602','Syphilis [Congenital] (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.451_20230122','2.16.840.1.113762.1.4.1146.451','20230122','Tuberculosis (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.210_20181031','2.16.840.1.113762.1.4.1146.210','20181031','Cyclosporiasis (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.211_20190605','2.16.840.1.113762.1.4.1146.211','20190605','Cyclosporiasis (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069','20240123','Pelvic Inflammatory Disease (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.458_20181031','2.16.840.1.113762.1.4.1146.458','20181031','SARS (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.217_20190608','2.16.840.1.113762.1.4.1146.217','20190608','Listeriosis (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2065_20230125','2.16.840.1.113762.1.4.1146.2065','20230125','Diphyllobothriasis (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.218_20240123','2.16.840.1.113762.1.4.1146.218','20240123','Listeriosis (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2074_20240123','2.16.840.1.113762.1.4.1146.2074','20240123','Pelvic Inflammatory Disease [Unspecified] (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2072_20240123','2.16.840.1.113762.1.4.1146.2072','20240123','Pelvic Inflammatory Disease (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2073_20240123','2.16.840.1.113762.1.4.1146.2073','20240123','Pelvic Inflammatory Disease [nonGC and nonCT] (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070','20240123','Pelvic Inflammatory Disease [nonGC and nonCT] (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071','20240123','Pelvic Inflammatory Disease [Unspecified] (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.201_20181031','2.16.840.1.113762.1.4.1146.201','20181031','Trichinellosis (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.322_20230122','2.16.840.1.113762.1.4.1146.322','20230122','Pesticide Related Illness (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.202_20230122','2.16.840.1.113762.1.4.1146.202','20230122','Trichinellosis (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.204_20230125','2.16.840.1.113762.1.4.1146.204','20230125','Giardiasis (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.205_20181031','2.16.840.1.113762.1.4.1146.205','20181031','Giardiasis (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.326_20220603','2.16.840.1.113762.1.4.1146.326','20220603','Arboviral Disease [Other] (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.207_20220601','2.16.840.1.113762.1.4.1146.207','20220601','Cryptosporidiosis (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.208_20181031','2.16.840.1.113762.1.4.1146.208','20181031','Cryptosporidiosis (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2198_20230602','2.16.840.1.113762.1.4.1146.2198','20230602','Anaplasmosis (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.792_20230125','2.16.840.1.113762.1.4.1146.792','20230125','Novel Influenza A Virus Infection (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.793_20240123','2.16.840.1.113762.1.4.1146.793','20240123','Novel Influenza A Virus Infection (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.315_20191227','2.16.840.1.113762.1.4.1146.315','20191227','Congenital Rubella Syndrome (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679','20230122','Hearing Loss (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2087_20230125','2.16.840.1.113762.1.4.1146.2087','20230125','Nongonococcal Urethritis (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2088_20230125','2.16.840.1.113762.1.4.1146.2088','20230125','Nongonococcal Urethritis (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2096_20240123','2.16.840.1.113762.1.4.1146.2096','20240123','Cyanobacteria and Cyanotoxin Poisoning (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.783_20210526','2.16.840.1.113762.1.4.1146.783','20210526','Congenital Rubella Syndrome (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.784_20220601','2.16.840.1.113762.1.4.1146.784','20220601','Rubella (Maternal Rubella during Pregnancy) (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422','20230602','Tuberculosis (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.666_20240620','2.16.840.1.113762.1.4.1146.666','20240620','Guillain Barre syndrome (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304','20230122','Pesticide Related Illness (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.667_20181031','2.16.840.1.113762.1.4.1146.667','20181031','Guillain Barre syndrome (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.410_20180620','2.16.840.1.113762.1.4.1146.410','20180620','Anthrax (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.411_20180620','2.16.840.1.113762.1.4.1146.411','20180620','Anthrax (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.657_20220115','2.16.840.1.113762.1.4.1146.657','20220115','Aseptic Meningitis (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2319_20240619','2.16.840.1.113762.1.4.1146.2319','20240619','Pulmonary valve stenosis (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2317_20240619','2.16.840.1.113762.1.4.1146.2317','20240619','Pulmonary valve atresia (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1347_20210526','2.16.840.1.113762.1.4.1146.1347','20210526','Powassan Virus Disease (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1589_20220118','2.16.840.1.113762.1.4.1146.1589','20220118','Cadmium Exposure and Toxicity (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2318_20240619','2.16.840.1.113762.1.4.1146.2318','20240619','Pulmonary valve atresia (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.86_20230125','2.16.840.1.113762.1.4.1146.86','20230125','Hemolytic Uremic Syndrome (HUS) (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2315_20240620','2.16.840.1.113762.1.4.1146.2315','20240620','Ebstein Anomaly (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.87_20240123','2.16.840.1.113762.1.4.1146.87','20240123','Thrombotic Thrombocytopenic Purpura (TTP) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2316_20240620','2.16.840.1.113762.1.4.1146.2316','20240620','Ebstein Anomaly (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.88_20240620','2.16.840.1.113762.1.4.1146.88','20240620','Hemolytic Uremic Syndrome (HUS) (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.80_20181031','2.16.840.1.113762.1.4.1146.80','20181031','Campylobacteriosis (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580','20230122','Animal Bite [Dog] (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1586_20230122','2.16.840.1.113762.1.4.1146.1586','20230122','Animal Bite [Mammal, Excluding Dogs] (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2313_20240620','2.16.840.1.113762.1.4.1146.2313','20240620','Coarctation of the Aorta (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1585_20230122','2.16.840.1.113762.1.4.1146.1585','20230122','Animal Bite [Dog] (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2314_20240620','2.16.840.1.113762.1.4.1146.2314','20240620','Coarctation of the Aorta (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1588_20230122','2.16.840.1.113762.1.4.1146.1588','20230122','Cadmium Exposure and Toxicity (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2311_20240620','2.16.840.1.113762.1.4.1146.2311','20240620','Interrupted Aortic Arch (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587','20230122','Animal Bite [Excluding Mammals] (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2312_20240620','2.16.840.1.113762.1.4.1146.2312','20240620','Interrupted Aortic Arch (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582','20230122','Animal Bite [Excluding Mammals] (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1581_20230122','2.16.840.1.113762.1.4.1146.1581','20230122','Animal Bite [Mammal, Excluding Dogs] (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2310_20240619','2.16.840.1.113762.1.4.1146.2310','20240619','Transposition of the Great Arteries [Unspecified] (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1342_20210526','2.16.840.1.113762.1.4.1146.1342','20210526','Ricin Poisoning (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1463_20240123','2.16.840.1.113762.1.4.1146.1463','20240123','VRE (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1584_20230122','2.16.840.1.113762.1.4.1146.1584','20230122','Animal Bite [Unspecified Animal] (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.78_20181031','2.16.840.1.113762.1.4.1146.78','20181031','Diarrhea Associated Hemolytic Uremic Syndrome (HUS) (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.79_20230602','2.16.840.1.113762.1.4.1146.79','20230602','Campylobacteriosis (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2328_20240619','2.16.840.1.113762.1.4.1146.2328','20240619','Tetralogy of Fallot (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2329_20240619','2.16.840.1.113762.1.4.1146.2329','20240619','Tetralogy of Fallot (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2326_20240619','2.16.840.1.113762.1.4.1146.2326','20240619','Single Ventricle (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2327_20240619','2.16.840.1.113762.1.4.1146.2327','20240619','Single Ventricle (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.193_20181031','2.16.840.1.113762.1.4.1146.193','20181031','Plague (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.195_20200515','2.16.840.1.113762.1.4.1146.195','20200515','Psittacosis (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.196_20181031','2.16.840.1.113762.1.4.1146.196','20181031','Psittacosis (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.198_20181031','2.16.840.1.113762.1.4.1146.198','20181031','Rabies (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2324_20240620','2.16.840.1.113762.1.4.1146.2324','20240620','Hypoplastic left heart syndrome (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2325_20240620','2.16.840.1.113762.1.4.1146.2325','20240620','Hypoplastic left heart syndrome (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1357_20210526','2.16.840.1.113762.1.4.1146.1357','20210526','Hepatitis E (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2201_20230602','2.16.840.1.113762.1.4.1146.2201','20230602','Agricultural Chemical Poisoning [Unspecified Chemical] (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2322_20240620','2.16.840.1.113762.1.4.1146.2322','20240620','Double Outlet Right Ventricle (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1356_20220601','2.16.840.1.113762.1.4.1146.1356','20220601','Hepatitis E (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2323_20240620','2.16.840.1.113762.1.4.1146.2323','20240620','Double Outlet Right Ventricle (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2320_20240619','2.16.840.1.113762.1.4.1146.2320','20240619','Pulmonary valve stenosis (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1471_20240123','2.16.840.1.113762.1.4.1146.1471','20240123','Amebiasis (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2321_20240619','2.16.840.1.113762.1.4.1146.2321','20240619','Fetal Pulmonary valve stenosis (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1473_20230125','2.16.840.1.113762.1.4.1146.1473','20230125','Amebiasis (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2339_20240619','2.16.840.1.113762.1.4.1146.2339','20240619','Tricuspid valve stenosis (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2337_20240619','2.16.840.1.113762.1.4.1146.2337','20240619','Tricuspid valve atresia (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1008_20191227','2.16.840.1.113762.1.4.1146.1008','20191227','Opioid Overdose and Poisoning (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2338_20240619','2.16.840.1.113762.1.4.1146.2338','20240619','Tricuspid valve stenosis (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.190_20200515','2.16.840.1.113762.1.4.1146.190','20200515','Rabies (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.192_20181031','2.16.840.1.113762.1.4.1146.192','20181031','Plague (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.182_20200515','2.16.840.1.113762.1.4.1146.182','20200515','Coccidioidomycosis (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1481_20220118','2.16.840.1.113762.1.4.1146.1481','20220118','Norovirus infection (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.184_20180620','2.16.840.1.113762.1.4.1146.184','20180620','Brucellosis (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1480_20220118','2.16.840.1.113762.1.4.1146.1480','20220118','Norovirus infection (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.185_20240123','2.16.840.1.113762.1.4.1146.185','20240123','Brucellosis (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.187_20230125','2.16.840.1.113762.1.4.1146.187','20230125','Dengue Virus Infection (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.188_20181031','2.16.840.1.113762.1.4.1146.188','20181031','Dengue Virus Infection (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1124_20240123','2.16.840.1.113762.1.4.1146.1124','20240123','COVID_19 (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1245_20210121','2.16.840.1.113762.1.4.1146.1245','20210121','Blastomycosis (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1487_20230125','2.16.840.1.113762.1.4.1146.1487','20230125','Clostridioides difficile infection (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2335_20240619','2.16.840.1.113762.1.4.1146.2335','20240619','Total Anomalous Pulmonary Venous Connection (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1123_20230125','2.16.840.1.113762.1.4.1146.1123','20230125','COVID_19 (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1244_20230122','2.16.840.1.113762.1.4.1146.1244','20230122','Blastomycosis (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2336_20240619','2.16.840.1.113762.1.4.1146.2336','20240619','Tricuspid valve atresia (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2333_20240620','2.16.840.1.113762.1.4.1146.2333','20240620','Atrioventricular septal defect (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1488_20220118','2.16.840.1.113762.1.4.1146.1488','20220118','Clostridioides difficile infection (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2334_20240619','2.16.840.1.113762.1.4.1146.2334','20240619','Total Anomalous Pulmonary Venous Connection (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2331_20240619','2.16.840.1.113762.1.4.1146.2331','20240619','Truncus Arteriosus (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2332_20240620','2.16.840.1.113762.1.4.1146.2332','20240620','Atrioventricular septal defect (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1243_20210120','2.16.840.1.113762.1.4.1146.1243','20210120','Non pestis Yersiniosis Infection (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1242_20230122','2.16.840.1.113762.1.4.1146.1242','20230122','Non pestis Yersiniosis Infection (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2330_20240619','2.16.840.1.113762.1.4.1146.2330','20240619','Truncus Arteriosus (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2108_20230125','2.16.840.1.113762.1.4.1146.2108','20230125','Methemoglobinemia [Non Congenital] (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1259_20210121','2.16.840.1.113762.1.4.1146.1259','20210121','Acanthamoeba Disease [Excluding Keratitis] (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2106_20230125','2.16.840.1.113762.1.4.1146.2106','20230125','Methemoglobinemia [Non Congenital] (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.98_20240123','2.16.840.1.113762.1.4.1146.98','20240123','Shigellosis (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2107_20230125','2.16.840.1.113762.1.4.1146.2107','20230125','Methemoglobinemia (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2349_20240619','2.16.840.1.113762.1.4.1146.2349','20240619','Consistent with Tuberculosis (Finding in Chest Xray Imaging Results)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.99_20181031','2.16.840.1.113762.1.4.1146.99','20181031','Shigellosis (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.92_20230125','2.16.840.1.113762.1.4.1146.92','20230125','Thrombotic Thrombocytopenic Purpura (TTP) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.94_20181031','2.16.840.1.113762.1.4.1146.94','20181031','Hepatitis A (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.95_20190605','2.16.840.1.113762.1.4.1146.95','20190605','Hepatitis A (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.181_20240123','2.16.840.1.113762.1.4.1146.181','20240123','Coccidioidomycosis (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.172_20181031','2.16.840.1.113762.1.4.1146.172','20181031','Yellow Fever (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293','20230122','Toxic Effects of Lead (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1371_20210526','2.16.840.1.113762.1.4.1146.1371','20210526','Japanese Encephalitis Virus Disease (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.173_20181031','2.16.840.1.113762.1.4.1146.173','20181031','Yellow Fever (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1370_20210526','2.16.840.1.113762.1.4.1146.1370','20210526','Japanese Encephalitis Virus Disease (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.175_20220601','2.16.840.1.113762.1.4.1146.175','20220601','West Nile Virus Infection (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.176_20230602','2.16.840.1.113762.1.4.1146.176','20230602','West Nile Virus Infection (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.178_20181031','2.16.840.1.113762.1.4.1146.178','20181031','St. Louis Encephalitis Virus Infection (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.179_20200515','2.16.840.1.113762.1.4.1146.179','20200515','St. Louis Encephalitis Virus Infection (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2105_20230125','2.16.840.1.113762.1.4.1146.2105','20230125','Methemoglobinemia (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1016_20240619','2.16.840.1.113762.1.4.1146.1016','20240619','S. Paratyphi Infection (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1258_20210120','2.16.840.1.113762.1.4.1146.1258','20210120','Tuberculosis [Latent Infection] (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1379_20230602','2.16.840.1.113762.1.4.1146.1379','20230602','Fish Poisoning (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1015_20190606','2.16.840.1.113762.1.4.1146.1015','20190606','S. Paratyphi Infection (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1136_20200515','2.16.840.1.113762.1.4.1146.1136','20200515','VISA (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2342_20240619','2.16.840.1.113762.1.4.1146.2342','20240619','Increased Risk for Exposure to Measles (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1012_20240619','2.16.840.1.113762.1.4.1146.1012','20240619','S. Typhi Infection (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2340_20240619','2.16.840.1.113762.1.4.1146.2340','20240619','Fetal Tricuspid valve stenosis (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1011_20190606','2.16.840.1.113762.1.4.1146.1011','20190606','S. Typhi Infection (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2341_20240619','2.16.840.1.113762.1.4.1146.2341','20240619','Exposure to Measles (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.47_20220603','2.16.840.1.113762.1.4.1146.47','20220603','Salmonellosis (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.48_20240619','2.16.840.1.113762.1.4.1146.48','20240619','Salmonellosis (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2119_20230122','2.16.840.1.113762.1.4.1146.2119','20230122','Cleft Lip with Cleft Palate (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2117_20230122','2.16.840.1.113762.1.4.1146.2117','20230122','Cleft Palate Alone (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.43_20240620','2.16.840.1.113762.1.4.1146.43','20240620','Gonorrhea [Cervicitis Urethritis] (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2118_20230122','2.16.840.1.113762.1.4.1146.2118','20230122','Cleft Palate Alone (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.44_20240620','2.16.840.1.113762.1.4.1146.44','20240620','Gonorrhea [Cervicitis Urethritis] (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.40_20230602','2.16.840.1.113762.1.4.1146.40','20230602','STEC Infection (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.291_20220603','2.16.840.1.113762.1.4.1146.291','20220603','Toxic Effects of Lead (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1380_20210526','2.16.840.1.113762.1.4.1146.1380','20210526','Shellfish Poisoning (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.161_20230122','2.16.840.1.113762.1.4.1146.161','20230122','Vibriosis (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1140_20200515','2.16.840.1.113762.1.4.1146.1140','20200515','VRSA (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1382_20210526','2.16.840.1.113762.1.4.1146.1382','20210526','Shellfish Poisoning (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1260_20210121','2.16.840.1.113762.1.4.1146.1260','20210121','Acanthamoeba Disease [Excluding Keratitis] (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1381_20210526','2.16.840.1.113762.1.4.1146.1381','20210526','Fish Poisoning (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.163_20220603','2.16.840.1.113762.1.4.1146.163','20220603','Cholera (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.164_20220603','2.16.840.1.113762.1.4.1146.164','20220603','Cholera (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.285_20230122','2.16.840.1.113762.1.4.1146.285','20230122','Encephalitis (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.288_20200515','2.16.840.1.113762.1.4.1146.288','20200515','Carbon Monoxide Poisoning (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1388_20230602','2.16.840.1.113762.1.4.1146.1388','20230602','Occupational Asthma (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2115_20230122','2.16.840.1.113762.1.4.1146.2115','20230122','Cleft Lip Alone (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.289_20230122','2.16.840.1.113762.1.4.1146.289','20230122','Carbon Monoxide Poisoning (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1387_20210522','2.16.840.1.113762.1.4.1146.1387','20210522','Acute Flaccid Myelitis (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2116_20230122','2.16.840.1.113762.1.4.1146.2116','20230122','Fetal Cleft Lip (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1269_20240123','2.16.840.1.113762.1.4.1146.1269','20240123','Tuberculosis [Latent Infection] (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2113_20230125','2.16.840.1.113762.1.4.1146.2113','20230125','Fetal Anencephaly (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2234_20240123','2.16.840.1.113762.1.4.1146.2234','20240123','Cytomegalovirus Disease (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2114_20240123','2.16.840.1.113762.1.4.1146.2114','20240123','Cleft Lip Alone (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1384_20221022','2.16.840.1.113762.1.4.1146.1384','20221022','Mpox (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2111_20230125','2.16.840.1.113762.1.4.1146.2111','20230125','Anencephaly (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2232_20240123','2.16.840.1.113762.1.4.1146.2232','20240123','Congenital Cytomegalovirus Infection (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2112_20230125','2.16.840.1.113762.1.4.1146.2112','20230125','Fetal Anencephaly (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2233_20240123','2.16.840.1.113762.1.4.1146.2233','20240123','Cytomegalovirus Disease (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1264_20210121','2.16.840.1.113762.1.4.1146.1264','20210121','Granulomatous Amebic Encephalitis (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1385_20210526','2.16.840.1.113762.1.4.1146.1385','20210526','Mpox (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2110_20240620','2.16.840.1.113762.1.4.1146.2110','20240620','Anencephaly (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2231_20240123','2.16.840.1.113762.1.4.1146.2231','20240123','Congenital Cytomegalovirus Infection (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.35_20190608','2.16.840.1.113762.1.4.1146.35','20190608','Pertussis (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.36_20190608','2.16.840.1.113762.1.4.1146.36','20190608','Pertussis (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.280_20181031','2.16.840.1.113762.1.4.1146.280','20181031','Legionellosis (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.150_20181031','2.16.840.1.113762.1.4.1146.150','20181031','Smallpox (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.271_20220119','2.16.840.1.113762.1.4.1146.271','20220119','Leptospirosis (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.392_20191227','2.16.840.1.113762.1.4.1146.392','20191227','Chancroid (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1393_20230602','2.16.840.1.113762.1.4.1146.1393','20230602','WRA (Occupational Exposure to Potential Asthma Inducing Risk Factor) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.151_20181031','2.16.840.1.113762.1.4.1146.151','20181031','Smallpox (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.393_20181031','2.16.840.1.113762.1.4.1146.393','20181031','Chancroid (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.273_20181031','2.16.840.1.113762.1.4.1146.273','20181031','Leptospirosis (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.153_20181031','2.16.840.1.113762.1.4.1146.153','20181031','Hepatitis C Virus Infection (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395','20240123','Syphilis (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.154_20230602','2.16.840.1.113762.1.4.1146.154','20230602','Hepatitis C Virus Infection (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396','20230122','Syphilis (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.156_20181031','2.16.840.1.113762.1.4.1146.156','20181031','Vibriosis (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2126_20230122','2.16.840.1.113762.1.4.1146.2126','20230122','Fetal Down Syndrome (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2368_20240620','2.16.840.1.113762.1.4.1146.2368','20240620','Perinatal Hepatitis B (Maternal Hepatitis B Virus Infection) (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2006_20230125','2.16.840.1.113762.1.4.1146.2006','20230125','Angiostrongyliasis (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2127_20230122','2.16.840.1.113762.1.4.1146.2127','20230122','Fetal Down Syndrome (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.279_20181031','2.16.840.1.113762.1.4.1146.279','20181031','Legionellosis (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1159_20200515','2.16.840.1.113762.1.4.1146.1159','20200515','Western Equine Encephalitis Virus Disease (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2124_20230122','2.16.840.1.113762.1.4.1146.2124','20230122','Down Syndrome (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2125_20230122','2.16.840.1.113762.1.4.1146.2125','20230122','Down Syndrome (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1274_20230125','2.16.840.1.113762.1.4.1146.1274','20230125','Histoplasmosis (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2122_20230125','2.16.840.1.113762.1.4.1146.2122','20230125','Spina Bifida (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1394_20220603','2.16.840.1.113762.1.4.1146.1394','20220603','WRA (Occupational Exposure to Potential Asthma Inducing Risk Factor) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2123_20230122','2.16.840.1.113762.1.4.1146.2123','20230122','Spina Bifida (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.39_20181031','2.16.840.1.113762.1.4.1146.39','20181031','STEC Infection (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1397_20210526','2.16.840.1.113762.1.4.1146.1397','20210526','Colorado Tick Fever (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2120_20230122','2.16.840.1.113762.1.4.1146.2120','20230122','Cleft Lip with Cleft Palate (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1275_20230125','2.16.840.1.113762.1.4.1146.1275','20230125','Histoplasmosis (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1396_20210526','2.16.840.1.113762.1.4.1146.1396','20210526','Colorado Tick Fever (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2000_20230125','2.16.840.1.113762.1.4.1146.2000','20230125','Lymphocytic Choriomeningitis (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2121_20230125','2.16.840.1.113762.1.4.1146.2121','20230125','Fetal Spina Bifida (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1160_20200516','2.16.840.1.113762.1.4.1146.1160','20200516','Eastern Equine Encephalitis Virus Disease (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.260_20181031','2.16.840.1.113762.1.4.1146.260','20181031','Q Fever (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1162_20200515','2.16.840.1.113762.1.4.1146.1162','20200515','California Serogroup Virus Diseases (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1283_20210120','2.16.840.1.113762.1.4.1146.1283','20210120','Naegleria fowleri PAM (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.140_20191227','2.16.840.1.113762.1.4.1146.140','20191227','Invasive Haemophilus influenzae Disease (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1161_20200515','2.16.840.1.113762.1.4.1146.1161','20200515','Chikungunya Virus Disease (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.141_20181031','2.16.840.1.113762.1.4.1146.141','20181031','Chronic Hepatitis B Virus Infection (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.264_20240123','2.16.840.1.113762.1.4.1146.264','20240123','Viral Hemorrhagic Fever (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.265_20240123','2.16.840.1.113762.1.4.1146.265','20240123','Viral Hemorrhagic Fever (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.145_20240123','2.16.840.1.113762.1.4.1146.145','20240123','Varicella (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1047_20240123','2.16.840.1.113762.1.4.1146.1047','20240123','Parkinsons disease (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.146_20181031','2.16.840.1.113762.1.4.1146.146','20181031','Varicella (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2016_20221022','2.16.840.1.113762.1.4.1146.2016','20221022','Increased Risk for Exposure to Mpox (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2137_20240123','2.16.840.1.113762.1.4.1146.2137','20240123','Prion Disease (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1167_20200515','2.16.840.1.113762.1.4.1146.1167','20200515','Western Equine Encephalitis Virus Disease (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2138_20230122','2.16.840.1.113762.1.4.1146.2138','20230122','Prion Disease (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2259_20240123','2.16.840.1.113762.1.4.1146.2259','20240123','Neonatal Abstinence Syndrome (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1049_20240123','2.16.840.1.113762.1.4.1146.1049','20240123','Parkinsonism [Secondary] (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2135_20230122','2.16.840.1.113762.1.4.1146.2135','20230122','Gerstmann Straussler Scheinker Syndrome (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2256_20240123','2.16.840.1.113762.1.4.1146.2256','20240123','CP_CRE (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1048_20240123','2.16.840.1.113762.1.4.1146.1048','20240123','Parkinsons disease (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2015_20221022','2.16.840.1.113762.1.4.1146.2015','20221022','Exposure to Mpox (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2136_20230122','2.16.840.1.113762.1.4.1146.2136','20230122','Gerstmann Straussler Scheinker Syndrome (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1164_20200515','2.16.840.1.113762.1.4.1146.1164','20200515','Chikungunya Virus Disease (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2133_20240123','2.16.840.1.113762.1.4.1146.2133','20240123','Fatal Familial Insomnia (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1163_20200515','2.16.840.1.113762.1.4.1146.1163','20200515','California Serogroup Virus Diseases (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1284_20210120','2.16.840.1.113762.1.4.1146.1284','20210120','Naegleria fowleri PAM (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2134_20230122','2.16.840.1.113762.1.4.1146.2134','20230122','Fatal Familial Insomnia (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2255_20240123','2.16.840.1.113762.1.4.1146.2255','20240123','Carbapenem Resistant Bacterial Infection [Carbapenemase Producing] (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1166_20200515','2.16.840.1.113762.1.4.1146.1166','20200515','Powassan Virus Disease (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1287_20210120','2.16.840.1.113762.1.4.1146.1287','20210120','Melioidosis (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2131_20230122','2.16.840.1.113762.1.4.1146.2131','20230122','Gastroschisis (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1165_20200516','2.16.840.1.113762.1.4.1146.1165','20200516','Eastern Equine Encephalitis Virus Disease (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2132_20230122','2.16.840.1.113762.1.4.1146.2132','20230122','Gastroschisis (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.52_20220602','2.16.840.1.113762.1.4.1146.52','20220602','Chlamydia trachomatis Infection [Cervicitis Urethritis LGV] (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.53_20220602','2.16.840.1.113762.1.4.1146.53','20220602','Chlamydia trachomatis Infection [Cervicitis Urethritis LGV] (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.51_20181031','2.16.840.1.113762.1.4.1146.51','20181031','Measles (Koplik Spots) (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1050_20240123','2.16.840.1.113762.1.4.1146.1050','20240123','Parkinsonism [Secondary] (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2140_20230122','2.16.840.1.113762.1.4.1146.2140','20230122','Phenylketonuria (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1291_20210120','2.16.840.1.113762.1.4.1146.1291','20210120','Melioidosis (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2141_20230122','2.16.840.1.113762.1.4.1146.2141','20230122','Phenylketonuria (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1051_20190608','2.16.840.1.113762.1.4.1146.1051','20190608','Multiple System Atrophy (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.130_20240123','2.16.840.1.113762.1.4.1146.130','20240123','Influenza (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2260_20240123','2.16.840.1.113762.1.4.1146.2260','20240123','Neonatal Abstinence Syndrome (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.251_20181031','2.16.840.1.113762.1.4.1146.251','20181031','Tularemia (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.131_20181031','2.16.840.1.113762.1.4.1146.131','20181031','Acute Hepatitis B Virus Infection (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.252_20220603','2.16.840.1.113762.1.4.1146.252','20220603','Tularemia (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.133_20220603','2.16.840.1.113762.1.4.1146.133','20220603','Influenza (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.135_20240620','2.16.840.1.113762.1.4.1146.135','20240620','Chronic Hepatitis B Virus Infection (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2027_20230125','2.16.840.1.113762.1.4.1146.2027','20230125','Bartonellosis (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2148_20230122','2.16.840.1.113762.1.4.1146.2148','20230122','Limb Reduction (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.256_20180620','2.16.840.1.113762.1.4.1146.256','20180620','Babesiosis (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.136_20240619','2.16.840.1.113762.1.4.1146.136','20240619','Invasive Pneumococcal Disease (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2028_20230125','2.16.840.1.113762.1.4.1146.2028','20230125','Bartonellosis (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.257_20210526','2.16.840.1.113762.1.4.1146.257','20210526','Babesiosis (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.137_20191227','2.16.840.1.113762.1.4.1146.137','20191227','Invasive Pneumococcal Disease (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147','20230122','Limb Reduction (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.259_20210527','2.16.840.1.113762.1.4.1146.259','20210527','Q Fever (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1054_20190608','2.16.840.1.113762.1.4.1146.1054','20190608','Multiple System Atrophy (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.139_20210527','2.16.840.1.113762.1.4.1146.139','20210527','Invasive Haemophilus influenzae Disease (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2023_20230125','2.16.840.1.113762.1.4.1146.2023','20230125','Tick Paralysis (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2024_20230125','2.16.840.1.113762.1.4.1146.2024','20230125','Bacillary angiomatosis (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1506_20220118','2.16.840.1.113762.1.4.1146.1506','20220118','Acanthamoeba Disease [Keratitis] (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1748_20230602','2.16.840.1.113762.1.4.1146.1748','20230602','Chemical Pneumonitis (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1505_20240123','2.16.840.1.113762.1.4.1146.1505','20240123','Acanthamoeba Disease [Keratitis] (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1508_20220118','2.16.840.1.113762.1.4.1146.1508','20220118','Arsenic Exposure and Toxicity (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1507_20230125','2.16.840.1.113762.1.4.1146.1507','20230125','Arsenic Exposure and Toxicity (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1749_20230125','2.16.840.1.113762.1.4.1146.1749','20230125','Chemical Pneumonitis (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1743_20220602','2.16.840.1.113762.1.4.1146.1743','20220602','Rotavirus Disease (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1864_20230602','2.16.840.1.113762.1.4.1146.1864','20230602','Taeniasis (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1865_20220603','2.16.840.1.113762.1.4.1146.1865','20220603','Taeniasis (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740','20230122','Head Injury (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1862_20220603','2.16.840.1.113762.1.4.1146.1862','20220603','CAUTI (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1863_20220603','2.16.840.1.113762.1.4.1146.1863','20220603','CAUTI (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742','20230122','Brain Injury [Traumatic] (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1981_20230125','2.16.840.1.113762.1.4.1146.1981','20230125','California Serogroup Virus Disease [Unspecified] (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741','20220602','Brain Injury [Traumatic] (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1980_20230125','2.16.840.1.113762.1.4.1146.1980','20230125','California Serogroup Virus Disease [Unspecified] (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1759_20220602','2.16.840.1.113762.1.4.1146.1759','20220602','Pleural Disease [Asbestosis Induced] (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1516_20230122','2.16.840.1.113762.1.4.1146.1516','20230122','Cryptococcosis (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1637_20220118','2.16.840.1.113762.1.4.1146.1637','20220118','Typhus Fever (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1758_20230602','2.16.840.1.113762.1.4.1146.1758','20230602','Asbestosis (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1879_20220603','2.16.840.1.113762.1.4.1146.1879','20220603','Surgical Site Infection (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1998_20230125','2.16.840.1.113762.1.4.1146.1998','20230125','Angiostrongyliasis (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1878_20240619','2.16.840.1.113762.1.4.1146.1878','20240619','Surgical Site Infection (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1999_20230125','2.16.840.1.113762.1.4.1146.1999','20230125','Lymphocytic Choriomeningitis (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1515_20230122','2.16.840.1.113762.1.4.1146.1515','20230122','Cryptococcosis (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1514_20220118','2.16.840.1.113762.1.4.1146.1514','20220118','Mercury Exposure and Toxicity (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1751_20220602','2.16.840.1.113762.1.4.1146.1751','20220602','Staphylococcal Poisoning [Food] (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1873_20220603','2.16.840.1.113762.1.4.1146.1873','20220603','Cysticercosis (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1750_20220602','2.16.840.1.113762.1.4.1146.1750','20220602','Staphylococcal Poisoning [Food] (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1871_20220603','2.16.840.1.113762.1.4.1146.1871','20220603','Neurocysticercosis (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1872_20220603','2.16.840.1.113762.1.4.1146.1872','20220603','Neurocysticercosis (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1870_20220603','2.16.840.1.113762.1.4.1146.1870','20220603','Cysticercosis (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1407_20240123','2.16.840.1.113762.1.4.1146.1407','20240123','Cancer [Malignant Neoplasms] (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1406_20210526','2.16.840.1.113762.1.4.1146.1406','20210526','Cancer [Benign or Borderline CNS Tumors] (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1403_20230602','2.16.840.1.113762.1.4.1146.1403','20230602','Cancer [Benign or Borderline CNS Tumors] (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1645_20220119','2.16.840.1.113762.1.4.1146.1645','20220119','Glanders (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1766_20220602','2.16.840.1.113762.1.4.1146.1766','20220602','Farmers Lung (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1402_20240123','2.16.840.1.113762.1.4.1146.1402','20240123','Cancer [Malignant Neoplasms] (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1644_20220119','2.16.840.1.113762.1.4.1146.1644','20220119','Glanders (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1765_20220602','2.16.840.1.113762.1.4.1146.1765','20220602','Farmers Lung (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1405_20240123','2.16.840.1.113762.1.4.1146.1405','20240123','Cancer [Unspecified Skin Cancer, Benign Carcinoid Tumor, in situ Cervical Cancer, Intraepithelial Neoplasia, History Cancer, Complication of Cancer or Treatment] (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1404_20240123','2.16.840.1.113762.1.4.1146.1404','20240123','Cancer [Unspecified Skin Cancer, Benign Carcinoid Tumor, in situ Cervical Cancer, Intraepithelial Neoplasia, History Cancer, Complication of Cancer or Treatment] (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1525_20230122','2.16.840.1.113762.1.4.1146.1525','20230122','Mercury Exposure and Toxicity (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1762_20220602','2.16.840.1.113762.1.4.1146.1762','20220602','Byssinosis (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1884_20220603','2.16.840.1.113762.1.4.1146.1884','20220603','Neonatal herpes (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1640_20230122','2.16.840.1.113762.1.4.1146.1640','20230122','Typhus Fever (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1761_20220602','2.16.840.1.113762.1.4.1146.1761','20220602','Pleural Disease [Asbestosis Induced] (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1764_20220329','2.16.840.1.113762.1.4.1146.1764','20220329','Post acute or Chronic COVID_19 Syndrome (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1763_20230602','2.16.840.1.113762.1.4.1146.1763','20230602','Byssinosis (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1883_20220603','2.16.840.1.113762.1.4.1146.1883','20220603','Neonatal herpes (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1760_20220602','2.16.840.1.113762.1.4.1146.1760','20220602','Asbestosis (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1418_20230122','2.16.840.1.113762.1.4.1146.1418','20230122','Alpha gal syndrome (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1538_20220118','2.16.840.1.113762.1.4.1146.1538','20220118','Drug Overdose and Poisoning [Non opioid] [Other Drug] (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1659_20220119','2.16.840.1.113762.1.4.1146.1659','20220119','Kawasaki disease (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1419_20220118','2.16.840.1.113762.1.4.1146.1419','20220118','Alpha gal syndrome (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1535_20220118','2.16.840.1.113762.1.4.1146.1535','20220118','Drug Overdose and Poisoning [Non opioid] [Analgesic] (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1656_20220119','2.16.840.1.113762.1.4.1146.1656','20220119','Nipah Virus Infection (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1534_20220118','2.16.840.1.113762.1.4.1146.1534','20220118','Drug Overdose and Poisoning [Non opioid] [Cannabinoid] (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1776_20220602','2.16.840.1.113762.1.4.1146.1776','20220602','Ophthalmia neonatorum (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1658_20220119','2.16.840.1.113762.1.4.1146.1658','20220119','Kawasaki disease (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1779_20240620','2.16.840.1.113762.1.4.1146.1779','20240620','Genital herpes (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1536_20220118','2.16.840.1.113762.1.4.1146.1536','20220118','Drug Overdose and Poisoning [Non opioid] [Hallucinogen] (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1778_20240620','2.16.840.1.113762.1.4.1146.1778','20240620','Genital herpes (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1531_20220118','2.16.840.1.113762.1.4.1146.1531','20220118','Influenza like Illness (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1652_20220115','2.16.840.1.113762.1.4.1146.1652','20220115','Chagas Disease (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1773_20240620','2.16.840.1.113762.1.4.1146.1773','20240620','CLABSI (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1651_20230122','2.16.840.1.113762.1.4.1146.1651','20230122','Chagas Disease (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1533_20240123','2.16.840.1.113762.1.4.1146.1533','20240123','Drug Overdose and Poisoning [Non opioid] [CNS Depressant] (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1775_20230602','2.16.840.1.113762.1.4.1146.1775','20230602','Ophthalmia neonatorum (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1893_20230602','2.16.840.1.113762.1.4.1146.1893','20230602','Toxoplasmosis (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1532_20220118','2.16.840.1.113762.1.4.1146.1532','20220118','Drug Overdose and Poisoning [Non opioid] [CNS Stimulant] (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1774_20220602','2.16.840.1.113762.1.4.1146.1774','20220602','CLABSI (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1894_20220603','2.16.840.1.113762.1.4.1146.1894','20220603','Toxoplasma encephalitis (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1891_20220603','2.16.840.1.113762.1.4.1146.1891','20220603','Toxoplasma encephalitis (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1892_20230602','2.16.840.1.113762.1.4.1146.1892','20230602','Toxoplasmosis (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1429_20220118','2.16.840.1.113762.1.4.1146.1429','20220118','Acute Flaccid Myelitis (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1309_20230125','2.16.840.1.113762.1.4.1146.1309','20230125','RSV (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1303_20210121','2.16.840.1.113762.1.4.1146.1303','20210121','Mycobacteria_Infection_NonTB_ExPulm (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1545_20230125','2.16.840.1.113762.1.4.1146.1545','20230125','Drug Overdose and Poisoning [Non opioid] [Other Drug] (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1789_20230602','2.16.840.1.113762.1.4.1146.1789','20230602','Granuloma Inguinale (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1542_20230125','2.16.840.1.113762.1.4.1146.1542','20230125','Drug Overdose and Poisoning [Non opioid] [Hallucinogen] (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1541_20230125','2.16.840.1.113762.1.4.1146.1541','20230125','Drug Overdose and Poisoning [Non opioid] [CNS Depressant] (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1544_20230125','2.16.840.1.113762.1.4.1146.1544','20230125','Drug Overdose and Poisoning [Non opioid] [Analgesic] (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1301_20210121','2.16.840.1.113762.1.4.1146.1301','20210121','Mycobacteria_Infection_NonTB_ExPulm (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1543_20230125','2.16.840.1.113762.1.4.1146.1543','20230125','Drug Overdose and Poisoning [Non opioid] [Cannabinoid] (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1540_20240123','2.16.840.1.113762.1.4.1146.1540','20240123','Drug Overdose and Poisoning [Non opioid] [CNS Stimulant] (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1318_20210528','2.16.840.1.113762.1.4.1146.1318','20210528','COVID_19 (COVID_19 Exposure) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1557_20220118','2.16.840.1.113762.1.4.1146.1557','20220118','Meningitis (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1799_20220601','2.16.840.1.113762.1.4.1146.1799','20220601','Nontuberculous Mycobacteria Infection, Pulmonary (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1556_20220118','2.16.840.1.113762.1.4.1146.1556','20220118','Fungal Meningitis (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1798_20220601','2.16.840.1.113762.1.4.1146.1798','20220601','Nontuberculous Mycobacteria Infection, Pulmonary (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1558_20220118','2.16.840.1.113762.1.4.1146.1558','20220118','Parasitic Meningitis (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1553_20230122','2.16.840.1.113762.1.4.1146.1553','20230122','Fungal Meningitis (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1310_20230125','2.16.840.1.113762.1.4.1146.1310','20230125','RSV (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1431_20220118','2.16.840.1.113762.1.4.1146.1431','20220118','Infant Botulism (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1552_20230122','2.16.840.1.113762.1.4.1146.1552','20230122','Bacterial Meningitis (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1555_20240123','2.16.840.1.113762.1.4.1146.1555','20240123','Bacterial Meningitis (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1554_20230122','2.16.840.1.113762.1.4.1146.1554','20230122','Parasitic Meningitis (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1670_20220602','2.16.840.1.113762.1.4.1146.1670','20220602','CRAB (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1790_20220602','2.16.840.1.113762.1.4.1146.1790','20220602','Granuloma Inguinale [Donovan Bodies] (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1430_20240123','2.16.840.1.113762.1.4.1146.1430','20240123','Infant Botulism (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1551_20220118','2.16.840.1.113762.1.4.1146.1551','20220118','Meningitis (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1672_20220602','2.16.840.1.113762.1.4.1146.1672','20220602','Carbapenem Resistant Bacterial Infection (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1447_20230122','2.16.840.1.113762.1.4.1146.1447','20230122','MRSA (Disorders (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1688_20240620','2.16.840.1.113762.1.4.1146.1688','20240620','Gunshot Wound (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1207_20230122','2.16.840.1.113762.1.4.1146.1207','20230122','CRE (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1449_20240123','2.16.840.1.113762.1.4.1146.1449','20240123','Staphylococcus aureus infection (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1448_20220118','2.16.840.1.113762.1.4.1146.1448','20220118','MRSA (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1684_20220602','2.16.840.1.113762.1.4.1146.1684','20220602','Reyes Syndrome (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1203_20210528','2.16.840.1.113762.1.4.1146.1203','20210528','COVID_19 (COVID_19 Exposure) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1687_20240620','2.16.840.1.113762.1.4.1146.1687','20240620','Gunshot Wound (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1683_20220602','2.16.840.1.113762.1.4.1146.1683','20220602','Reyes Syndrome (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1682_20220602','2.16.840.1.113762.1.4.1146.1682','20220602','Hepatitis G (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2308_20240619','2.16.840.1.113762.1.4.1146.2308','20240619','L_Transposition of the Great Arteries (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2309_20240619','2.16.840.1.113762.1.4.1146.2309','20240619','Transposition of the Great Arteries [Unspecified] (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1337_20240620','2.16.840.1.113762.1.4.1146.1337','20240620','Variant Creutzfeldt Jakob Disease (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1579_20220118','2.16.840.1.113762.1.4.1146.1579','20220118','Candida auris Infection (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1336_20240620','2.16.840.1.113762.1.4.1146.1336','20240620','Creutzfeldt Jakob Disease (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1699_20220602','2.16.840.1.113762.1.4.1146.1699','20220602','Encephalitis [Bacterial] (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2307_20240619','2.16.840.1.113762.1.4.1146.2307','20240619','D_Transposition of the Great Arteries (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1339_20210526','2.16.840.1.113762.1.4.1146.1339','20210526','Variant Creutzfeldt Jakob Disease (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1338_20220603','2.16.840.1.113762.1.4.1146.1338','20220603','Creutzfeldt Jakob Disease (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1696_20220602','2.16.840.1.113762.1.4.1146.1696','20220602','Multisystem Inflammatory Syndrome (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1574_20220119','2.16.840.1.113762.1.4.1146.1574','20220119','Invasive Group B Streptococcus (Disorders) (ICD10CM))','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1695_20220602','2.16.840.1.113762.1.4.1146.1695','20220602','Multisystem Inflammatory Syndrome (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1697_20220602','2.16.840.1.113762.1.4.1146.1697','20220602','Suicide (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1450_20230122','2.16.840.1.113762.1.4.1146.1450','20230122','Staphylococcus aureus infection (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1571_20220119','2.16.840.1.113762.1.4.1146.1571','20220119','Invasive Group A Streptococcus (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1331_20210528','2.16.840.1.113762.1.4.1146.1331','20210528','Post acute or Chronic COVID_19 Syndrome (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1573_20220119','2.16.840.1.113762.1.4.1146.1573','20220119','Invasive Group B Streptococcus (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1572_20220118','2.16.840.1.113762.1.4.1146.1572','20220118','Invasive Group A Streptococcus (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1903_20220603','2.16.840.1.113762.1.4.1146.1903','20220603','Orthopox (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1904_20220603','2.16.840.1.113762.1.4.1146.1904','20220603','Cowpox (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1902_20220603','2.16.840.1.113762.1.4.1146.1902','20220603','Orthopox (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1905_20220603','2.16.840.1.113762.1.4.1146.1905','20220603','Cowpox (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.640_20220601','2.16.840.1.113762.1.4.1146.640','20220601','Gonorrhea [Conjunctivitis] (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.641_20190605','2.16.840.1.113762.1.4.1146.641','20190605','Gonorrhea [Secondary Sites Complications Chronic] (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.642_20190605','2.16.840.1.113762.1.4.1146.642','20190605','Gonorrhea [Conjunctivitis] (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.765_20230122','2.16.840.1.113762.1.4.1146.765','20230122','Aseptic Meningitis (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.766_20230602','2.16.840.1.113762.1.4.1146.766','20230602','Encephalitis (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.404_20220118','2.16.840.1.113762.1.4.1146.404','20220118','Hantavirus Infection and Diseases (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.767_20230122','2.16.840.1.113762.1.4.1146.767','20230122','Hearing Loss (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.405_20240620','2.16.840.1.113762.1.4.1146.405','20240620','Hantavirus Infection and Diseases (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1914_20220603','2.16.840.1.113762.1.4.1146.1914','20220603','Vesicular stomatitis (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.639_20210527','2.16.840.1.113762.1.4.1146.639','20210527','Gonorrhea [Secondary Sites Complications Chronic] (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.632_20240620','2.16.840.1.113762.1.4.1146.632','20240620','Chlamydia trachomatis Infection [Secondary Sites Complications] (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.633_20220602','2.16.840.1.113762.1.4.1146.633','20220602','Chlamydia trachomatis Infection [Conjunctivitis] (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.634_20190605','2.16.840.1.113762.1.4.1146.634','20190605','Chlamydia trachomatis Infection [Secondary Sites Complications] (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.876_20181031','2.16.840.1.113762.1.4.1146.876','20181031','MERS (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.635_20181031','2.16.840.1.113762.1.4.1146.635','20181031','Chlamydia trachomatis Infection [Conjunctivitis] (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.877_20181031','2.16.840.1.113762.1.4.1146.877','20181031','Tickborne Relapsing Fever (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1805_20220601','2.16.840.1.113762.1.4.1146.1805','20220601','Coal Workers Pneumoconiosis (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.507_20240619','2.16.840.1.113762.1.4.1146.507','20240619','Toxic Shock Syndrome (TSS) (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1808_20220601','2.16.840.1.113762.1.4.1146.1808','20220601','Interstitial Lung Disease (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1809_20220601','2.16.840.1.113762.1.4.1146.1809','20220601','Interstitial Pulmonary Fibrosis [Unspecified Cause] (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1806_20220601','2.16.840.1.113762.1.4.1146.1806','20220601','Coal Workers Pneumoconiosis (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1807_20220601','2.16.840.1.113762.1.4.1146.1807','20220601','Interstitial Lung Disease (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.620_20181031','2.16.840.1.113762.1.4.1146.620','20181031','Inspiratory Whoop (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.621_20230122','2.16.840.1.113762.1.4.1146.621','20230122','Inspiratory Whoop (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.984_20181031','2.16.840.1.113762.1.4.1146.984','20181031','Streptococcal Toxic Shock Syndrome (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.505_20240619','2.16.840.1.113762.1.4.1146.505','20240619','Toxic Shock Syndrome (TSS) (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1936_20230124','2.16.840.1.113762.1.4.1146.1936','20230124','Strongyloidiasis (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1816_20220603','2.16.840.1.113762.1.4.1146.1816','20220603','Louseborne relapsing fever (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1813_20220601','2.16.840.1.113762.1.4.1146.1813','20220601','Scabies (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1935_20240123','2.16.840.1.113762.1.4.1146.1935','20240123','Strongyloidiasis (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1812_20220601','2.16.840.1.113762.1.4.1146.1812','20220601','Scabies (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1810_20220601','2.16.840.1.113762.1.4.1146.1810','20220601','Interstitial Pulmonary Fibrosis [Unspecified Cause] (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1817_20220603','2.16.840.1.113762.1.4.1146.1817','20220603','Louseborne relapsing fever (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.610_20181031','2.16.840.1.113762.1.4.1146.610','20181031','Trachoma (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.853_20181031','2.16.840.1.113762.1.4.1146.853','20181031','SARS (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.733_20230602','2.16.840.1.113762.1.4.1146.733','20230602','Perinatal Hepatitis B Virus Infection (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.734_20181031','2.16.840.1.113762.1.4.1146.734','20181031','Unspecified Hepatitis B Virus Infection (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1826_20220603','2.16.840.1.113762.1.4.1146.1826','20220603','Rheumatic Fever (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1948_20230125','2.16.840.1.113762.1.4.1146.1948','20230125','Keystone Virus Diseases (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1706_20220602','2.16.840.1.113762.1.4.1146.1706','20220602','Encephalitis [Viral] (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1705_20220602','2.16.840.1.113762.1.4.1146.1705','20220602','Encephalitis [Bacterial] (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1825_20220603','2.16.840.1.113762.1.4.1146.1825','20220603','Rheumatic Fever (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1700_20230602','2.16.840.1.113762.1.4.1146.1700','20230602','Encephalitis [Viral] (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1943_20230125','2.16.840.1.113762.1.4.1146.1943','20230125','Jamestown Canyon Virus Diseases (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.609_20191227','2.16.840.1.113762.1.4.1146.609','20191227','Trachoma (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1702_20230602','2.16.840.1.113762.1.4.1146.1702','20230602','Encephalitis [Parasitic] (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1701_20220602','2.16.840.1.113762.1.4.1146.1701','20220602','Encephalitis [Fungal] (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1708_20220602','2.16.840.1.113762.1.4.1146.1708','20220602','Encephalitis [Parasitic] (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1707_20220602','2.16.840.1.113762.1.4.1146.1707','20220602','Encephalitis [Fungal] (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1949_20230125','2.16.840.1.113762.1.4.1146.1949','20230125','La Crosse Virus Diseases (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.963_20220603','2.16.840.1.113762.1.4.1146.963','20220603','Arboviral Disease [Other] (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.725_20180620','2.16.840.1.113762.1.4.1146.725','20180620','Acute Flaccid Paralysis (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.836_20230124','2.16.840.1.113762.1.4.1146.836','20230124','Lead in Blood (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1717_20230122','2.16.840.1.113762.1.4.1146.1717','20230122','Drowning and Submersion (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1716_20230602','2.16.840.1.113762.1.4.1146.1716','20230602','Drowning and Submersion (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1719_20240619','2.16.840.1.113762.1.4.1146.1719','20240619','Motor Vehicle Injury (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1718_20240619','2.16.840.1.113762.1.4.1146.1718','20240619','Motor Vehicle Injury (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1950_20230124','2.16.840.1.113762.1.4.1146.1950','20230124','Snowshoe hare Virus Diseases (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1951_20230124','2.16.840.1.113762.1.4.1146.1951','20230124','Trivittatus Virus Diseases (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.835_20230124','2.16.840.1.113762.1.4.1146.835','20230124','Lead in Blood (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1605_20240123','2.16.840.1.113762.1.4.1146.1605','20240123','Vaccine Adverse Event (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1969_20230125','2.16.840.1.113762.1.4.1146.1969','20230125','Hepatitis D Virus Infection (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1604_20230122','2.16.840.1.113762.1.4.1146.1604','20230122','Vaccine Adverse Event (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1607_20221022','2.16.840.1.113762.1.4.1146.1607','20221022','Vaccinia disease or adverse event (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1728_20220602','2.16.840.1.113762.1.4.1146.1728','20220602','Clostridium perfringens Enterotoxin Poisoning (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1967_20230125','2.16.840.1.113762.1.4.1146.1967','20230125','Drug Overdose and Poisoning [Non opioid] [Muscle Relaxant] (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1606_20230122','2.16.840.1.113762.1.4.1146.1606','20230122','Vaccinia disease or adverse event (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1968_20230125','2.16.840.1.113762.1.4.1146.1968','20230125','Hepatitis D Virus Infection (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1844_20230602','2.16.840.1.113762.1.4.1146.1844','20230602','Leishmaniasis (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1721_20230602','2.16.840.1.113762.1.4.1146.1721','20230602','Enterovirus Infection [Non polio] (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1845_20220603','2.16.840.1.113762.1.4.1146.1845','20220603','Leishmaniasis (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1966_20230125','2.16.840.1.113762.1.4.1146.1966','20230125','Drug Overdose and Poisoning [Non opioid] [Muscle Relaxant] (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1842_20240619','2.16.840.1.113762.1.4.1146.1842','20240619','Ventilator associated event (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1963_20230125','2.16.840.1.113762.1.4.1146.1963','20230125','Hepatitis C Virus Infection, Perinatal (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1843_20220603','2.16.840.1.113762.1.4.1146.1843','20220603','Ventilator associated event (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1729_20220602','2.16.840.1.113762.1.4.1146.1729','20220602','Clostridium perfringens Infection (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1720_20230602','2.16.840.1.113762.1.4.1146.1720','20230602','Enterovirus Infection [Non polio] (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.940_20200515','2.16.840.1.113762.1.4.1146.940','20200515','Tickborne Relapsing Fever (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.701_20181031','2.16.840.1.113762.1.4.1146.701','20181031','Unspecified Hepatitis B Virus Infection (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.822_20230602','2.16.840.1.113762.1.4.1146.822','20230602','Pneumoconiosis (Unspecified) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.823_20230122','2.16.840.1.113762.1.4.1146.823','20230122','Pneumoconiosis (Unspecified) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1737_20220602','2.16.840.1.113762.1.4.1146.1737','20220602','Fertilizer Poisoning (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1739_20240620','2.16.840.1.113762.1.4.1146.1739','20240620','Head Injury (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1738_20220602','2.16.840.1.113762.1.4.1146.1738','20220602','Agricultural Chemical Poisoning [Unspecified Chemical] (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1855_20220603','2.16.840.1.113762.1.4.1146.1855','20220603','Filariasis (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1732_20220602','2.16.840.1.113762.1.4.1146.1732','20220602','Clostridium perfringens Infection (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1856_20220603','2.16.840.1.113762.1.4.1146.1856','20220603','Tropical Pulmonary Eosinophilia (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.819_20220118','2.16.840.1.113762.1.4.1146.819','20220118','Carbon Monoxide Poisoning (Carbon Monoxide Exposure) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1853_20220603','2.16.840.1.113762.1.4.1146.1853','20220603','Lymphatic Filariasis (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1974_20230125','2.16.840.1.113762.1.4.1146.1974','20230125','Baylisascariasis (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1854_20220603','2.16.840.1.113762.1.4.1146.1854','20220603','Filariasis (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1852_20220603','2.16.840.1.113762.1.4.1146.1852','20220603','Lymphatic Filariasis (Disorders) (SNOMED)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1731_20220602','2.16.840.1.113762.1.4.1146.1731','20220602','Clostridium perfringens Enterotoxin Poisoning (Disorders) (ICD10CM)','CSTE Steward','dxtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.528_20200516','2.16.840.1.113762.1.4.1146.528','20200516','Dengue Virus Infection (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.408_20240620','2.16.840.1.113762.1.4.1146.408','20240620','Hepatitis B Virus Infection (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.409_20210527','2.16.840.1.113762.1.4.1146.409','20210527','Hepatitis C Virus Infection (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1469_20230122','2.16.840.1.113762.1.4.1146.1469','20230122','Enterococcus faecium or E. faecalis (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1866_20240619','2.16.840.1.113762.1.4.1146.1866','20240619','Taeniasis (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1468_20240123','2.16.840.1.113762.1.4.1146.1468','20240123','Enterococcus gallinarum or E. casseliflavus/E. flavescens (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1745_20230602','2.16.840.1.113762.1.4.1146.1745','20230602','Rotavirus Disease (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.482_20200513','2.16.840.1.113762.1.4.1146.482','20200513','Anthrax (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.882_20181031','2.16.840.1.113762.1.4.1146.882','20181031','Morulae in Leukocytes (Finding by Microscopic Observation in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2038_20230125','2.16.840.1.113762.1.4.1146.2038','20230125','Bartonella bacilliformis (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1464_20240123','2.16.840.1.113762.1.4.1146.1464','20240123','VRE (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1346_20210526','2.16.840.1.113762.1.4.1146.1346','20210526','Ricin Poisoning (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2036_20230125','2.16.840.1.113762.1.4.1146.2036','20230125','Bartonella henselae (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1861_20220603','2.16.840.1.113762.1.4.1146.1861','20220603','Lymphatic Filariasis (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1982_20230125','2.16.840.1.113762.1.4.1146.1982','20230125','California Serogroup Virus Disease [Unspecified] (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2037_20230125','2.16.840.1.113762.1.4.1146.2037','20230125','Bartonella quintana (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1517_20220118','2.16.840.1.113762.1.4.1146.1517','20220118','Cryptococcosis [C. species] (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1638_20220118','2.16.840.1.113762.1.4.1146.1638','20220118','Typhus Fever (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1915_20220603','2.16.840.1.113762.1.4.1146.1915','20220603','Vesicular stomatitis (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1519_20220118','2.16.840.1.113762.1.4.1146.1519','20220118','Cryptococcosis [C. gatii] (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1518_20220118','2.16.840.1.113762.1.4.1146.1518','20220118','Cryptococcosis [C. neoformans] (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1910_20220603','2.16.840.1.113762.1.4.1146.1910','20220603','Orthopox (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1358_20210526','2.16.840.1.113762.1.4.1146.1358','20210526','Hepatitis E (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1754_20220602','2.16.840.1.113762.1.4.1146.1754','20220602','Staphylococcus aureus Enterotoxin B (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1911_20220603','2.16.840.1.113762.1.4.1146.1911','20220603','Cowpox (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1193_20200515','2.16.840.1.113762.1.4.1146.1193','20200515','Western Equine Encephalitis Virus Disease (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1192_20200515','2.16.840.1.113762.1.4.1146.1192','20200515','Powassan Virus Disease (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1470_20230122','2.16.840.1.113762.1.4.1146.1470','20230122','Enterococcus species (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.591_20181031','2.16.840.1.113762.1.4.1146.591','20181031','Zika Virus Disease (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1194_20200515','2.16.840.1.113762.1.4.1146.1194','20200515','California Serogroup Virus Diseases (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.473_20200515','2.16.840.1.113762.1.4.1146.473','20200515','Leptospirosis (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1191_20200516','2.16.840.1.113762.1.4.1146.1191','20200516','Eastern Equine Encephalitis Virus Disease (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1190_20200515','2.16.840.1.113762.1.4.1146.1190','20200515','Chikungunya Virus Disease (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1874_20220603','2.16.840.1.113762.1.4.1146.1874','20220603','Cysticercosis (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.356_20230602','2.16.840.1.113762.1.4.1146.356','20230602','HIV Infection (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.477_20180620','2.16.840.1.113762.1.4.1146.477','20180620','Babesiosis (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.631_20210527','2.16.840.1.113762.1.4.1146.631','20210527','Salmonellosis [Salmonella serovar] (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.599_20200515','2.16.840.1.113762.1.4.1146.599','20200515','Tularemia (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.875_20240123','2.16.840.1.113762.1.4.1146.875','20240123','SARS (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1472_20220118','2.16.840.1.113762.1.4.1146.1472','20220118','Amebiasis [Entamoeba histolytica] (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.999_20230602','2.16.840.1.113762.1.4.1146.999','20230602','Chlamydia species (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1077_20230122','2.16.840.1.113762.1.4.1146.1077','20230122','Poisoning or Overdose by Other Opioids (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.516_20240123','2.16.840.1.113762.1.4.1146.516','20240123','Brucellosis (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.905_20200515','2.16.840.1.113762.1.4.1146.905','20200515','Hantavirus Infection (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1800_20230602','2.16.840.1.113762.1.4.1146.1800','20230602','Nontuberculous Mycobacteria Infection, Pulmonary (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1646_20220119','2.16.840.1.113762.1.4.1146.1646','20220119','Glanders (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.580_20230602','2.16.840.1.113762.1.4.1146.580','20230602','Arboviral Disease [Other] (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.340_20230122','2.16.840.1.113762.1.4.1146.340','20230122','Influenza (influenza A or B virus in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.341_20240620','2.16.840.1.113762.1.4.1146.341','20240620','Campylobacteriosis (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.100_20210527','2.16.840.1.113762.1.4.1146.100','20210527','Pertussis (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.463_20220119','2.16.840.1.113762.1.4.1146.463','20220119','Legionellosis (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.586_20220118','2.16.840.1.113762.1.4.1146.586','20220118','Viral Hemorrhagic Fever (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1247_20210120','2.16.840.1.113762.1.4.1146.1247','20210120','Non pestis Yersiniosis Infection (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1489_20220118','2.16.840.1.113762.1.4.1146.1489','20220118','C. diff infection (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1882_20240620','2.16.840.1.113762.1.4.1146.1882','20240620','Carbapenemase production (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2212_20240123','2.16.840.1.113762.1.4.1146.2212','20240123','Invasive Cronobacter Infection (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.346_20210526','2.16.840.1.113762.1.4.1146.346','20210526','Diphtheria (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.467_20200515','2.16.840.1.113762.1.4.1146.467','20200515','Malaria (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1246_20230122','2.16.840.1.113762.1.4.1146.1246','20230122','Blastomycosis (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.348_20220118','2.16.840.1.113762.1.4.1146.348','20220118','Hepatitis A (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.502_20200515','2.16.840.1.113762.1.4.1146.502','20200515','Q Fever (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1485_20240123','2.16.840.1.113762.1.4.1146.1485','20240123','Norovirus (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.979_20240620','2.16.840.1.113762.1.4.1146.979','20240620','Botulism (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1814_20220601','2.16.840.1.113762.1.4.1146.1814','20220601','Scabies [Sarcoptes scabiei] (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.96_20240619','2.16.840.1.113762.1.4.1146.96','20240619','Salmonellosis [Salmonella Species and Subspecies] (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1655_20220115','2.16.840.1.113762.1.4.1146.1655','20220115','Chagas Disease [Trypanosoma cruzi] (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1657_20220119','2.16.840.1.113762.1.4.1146.1657','20220119','Nipah Virus Infection (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1490_20220118','2.16.840.1.113762.1.4.1146.1490','20220118','C. diff infection [Toxin] (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.292_20191227','2.16.840.1.113762.1.4.1146.292','20191227','Measles (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2060_20230125','2.16.840.1.113762.1.4.1146.2060','20230125','Echinococcosis (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.573_20181031','2.16.840.1.113762.1.4.1146.573','20181031','Plague (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1014_20210527','2.16.840.1.113762.1.4.1146.1014','20210527','S. Paratyphi Infection (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1895_20230602','2.16.840.1.113762.1.4.1146.1895','20230602','Toxoplasmosis (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.333_20240123','2.16.840.1.113762.1.4.1146.333','20240123','Shigellosis (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.850_20220118','2.16.840.1.113762.1.4.1146.850','20220118','Lyme Disease (Borrelia burgdorferi/mayonii in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1013_20210527','2.16.840.1.113762.1.4.1146.1013','20210527','S. Typhi Infection (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.334_20190605','2.16.840.1.113762.1.4.1146.334','20190605','Enteroinvasive E. coli (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.851_20220118','2.16.840.1.113762.1.4.1146.851','20220118','Lyme Disease (Borrelia afzelii/garinii in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1137_20200515','2.16.840.1.113762.1.4.1146.1137','20200515','VISA (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.852_20200515','2.16.840.1.113762.1.4.1146.852','20200515','Tickborne Relapsing Fever (Borrelia hermsii/miyamotoi/parkerii/turicatae in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2221_20240123','2.16.840.1.113762.1.4.1146.2221','20240123','Congenital Cytomegalovirus (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1372_20210526','2.16.840.1.113762.1.4.1146.1372','20210526','Japanese Encephalitis Virus Disease (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2068_20230125','2.16.840.1.113762.1.4.1146.2068','20230125','Angiostrongyliasis (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2066_20230125','2.16.840.1.113762.1.4.1146.2066','20230125','Diphyllobothriasis (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1308_20220118','2.16.840.1.113762.1.4.1146.1308','20220118','RSV (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1947_20230125','2.16.840.1.113762.1.4.1146.1947','20230125','Jamestown Canyon Virus Diseases (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.606_20230602','2.16.840.1.113762.1.4.1146.606','20230602','Tuberculosis (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1029_20230125','2.16.840.1.113762.1.4.1146.1029','20230125','Listeriosis [Listeria species] (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1546_20230125','2.16.840.1.113762.1.4.1146.1546','20230125','Drug Overdose and Poisoning [Non opioid] (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1822_20220603','2.16.840.1.113762.1.4.1146.1822','20220603','Louseborne relapsing fever (Borrelia recurrentis in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1823_20240620','2.16.840.1.113762.1.4.1146.1823','20240620','Louseborne relapsing fever (Borrelia species in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1941_20230125','2.16.840.1.113762.1.4.1146.1941','20230125','Strongyloidiasis (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1942_20230124','2.16.840.1.113762.1.4.1146.1942','20230124','Strongyloidiasis [Strongyloides stercoralis] (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.170_20230602','2.16.840.1.113762.1.4.1146.170','20230602','Chlamydia trachomatis Infection (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1261_20210121','2.16.840.1.113762.1.4.1146.1261','20210121','Acanthamoeba Disease [Excluding Keratitis] (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.287_20230122','2.16.840.1.113762.1.4.1146.287','20230122','Varicella (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1784_20220602','2.16.840.1.113762.1.4.1146.1784','20220602','Genital herpes (Herpes simplex virus type 2 in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.169_20230602','2.16.840.1.113762.1.4.1146.169','20230602','Gonorrhea [Neisseria gonorrhoeae] (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1783_20220603','2.16.840.1.113762.1.4.1146.1783','20220603','Herpes (Herpes simplex virus in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.444_20220119','2.16.840.1.113762.1.4.1146.444','20220119','Psittacosis (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.565_20181031','2.16.840.1.113762.1.4.1146.565','20181031','West Nile Virus Infection (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1302_20210121','2.16.840.1.113762.1.4.1146.1302','20210121','Mycobacteria_Infection_NonTB_ExPulm (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.568_20181031','2.16.840.1.113762.1.4.1146.568','20181031','Chancroid (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1141_20200515','2.16.840.1.113762.1.4.1146.1141','20200515','VRSA (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1386_20221022','2.16.840.1.113762.1.4.1146.1386','20221022','Mpox (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.845_20181031','2.16.840.1.113762.1.4.1146.845','20181031','MERS (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1143_20240123','2.16.840.1.113762.1.4.1146.1143','20240123','COVID_19 (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1715_20240620','2.16.840.1.113762.1.4.1146.1715','20240620','Viruses [Causing Encephalitis] (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1714_20240620','2.16.840.1.113762.1.4.1146.1714','20240620','Parasites [Causing Encephalitis] (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1959_20230125','2.16.840.1.113762.1.4.1146.1959','20230125','Keystone Virus Diseases (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.838_20181031','2.16.840.1.113762.1.4.1146.838','20181031','Caseating Granuloma (Finding by Microscopic Observation in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.839_20230122','2.16.840.1.113762.1.4.1146.839','20230122','Acid Fast Bacilli (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1679_20240620','2.16.840.1.113762.1.4.1146.1679','20240620','Pseudomonas aeruginosa (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1712_20240620','2.16.840.1.113762.1.4.1146.1712','20240620','Bacteria [Causing Encephalitis] (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1272_20210121','2.16.840.1.113762.1.4.1146.1272','20210121','Balamuthia mandrillaris disease (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.275_20181031','2.16.840.1.113762.1.4.1146.275','20181031','Invasive Haemophilus influenzae Disease (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1036_20190605','2.16.840.1.113762.1.4.1146.1036','20190605','Gonorrhea [Neisseria species Unspecified] (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1674_20220602','2.16.840.1.113762.1.4.1146.1674','20220602','Acinetobacter baumannii [Carbapenemase Producing] (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.795_20230125','2.16.840.1.113762.1.4.1146.795','20230125','Influenza (influenza A virus in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1156_20240123','2.16.840.1.113762.1.4.1146.1156','20240123','Staphylococcus aureus (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1398_20210526','2.16.840.1.113762.1.4.1146.1398','20210526','Colorado Tick Fever (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1673_20220602','2.16.840.1.113762.1.4.1146.1673','20220602','Acinetobacter baumannii [Carbapenem Resistant] (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1794_20220602','2.16.840.1.113762.1.4.1146.1794','20220602','Granuloma Inguinale [Klebsiella granulomatis] (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.312_20191227','2.16.840.1.113762.1.4.1146.312','20191227','Rubella (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.554_20191227','2.16.840.1.113762.1.4.1146.554','20191227','Syphilis (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.796_20240123','2.16.840.1.113762.1.4.1146.796','20240123','Influenza (Novel influenza A virus in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.435_20210527','2.16.840.1.113762.1.4.1146.435','20210527','STEC Infection (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2001_20230125','2.16.840.1.113762.1.4.1146.2001','20230125','Lymphocytic Choriomeningitis (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1155_20210528','2.16.840.1.113762.1.4.1146.1155','20210528','COVID_19 (Antibody Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1276_20210120','2.16.840.1.113762.1.4.1146.1276','20210120','Histoplasmosis (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.559_20181031','2.16.840.1.113762.1.4.1146.559','20181031','Yellow Fever (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1671_20220602','2.16.840.1.113762.1.4.1146.1671','20220602','Acinetobacter baumannii (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.318_20210527','2.16.840.1.113762.1.4.1146.318','20210527','Tetanus (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.439_20181031','2.16.840.1.113762.1.4.1146.439','20181031','Coccidioidomycosis (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1209_20220118','2.16.840.1.113762.1.4.1146.1209','20220118','Enterobacter spp., E. coli, or Klebsiella spp. [Carbapenemase Producing] (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1208_20200515','2.16.840.1.113762.1.4.1146.1208','20200515','Enterobacter spp., E. coli, or Klebsiella spp. [Carbapenem Resistant] (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1849_20220603','2.16.840.1.113762.1.4.1146.1849','20220603','Leishmaniasis (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.828_20220118','2.16.840.1.113762.1.4.1146.828','20220118','Poliovirus Infection (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1722_20230602','2.16.840.1.113762.1.4.1146.1722','20230602','Enterovirus Infection [Non polio] (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1608_20220115','2.16.840.1.113762.1.4.1146.1608','20220115','Vaccinia (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.382_20181031','2.16.840.1.113762.1.4.1146.382','20181031','Listeriosis [Listeria monocytogenes] (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1282_20210120','2.16.840.1.113762.1.4.1146.1282','20210120','Naegleria fowleri PAM (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.386_20240123','2.16.840.1.113762.1.4.1146.386','20240123','Vibriosis (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.661_20181031','2.16.840.1.113762.1.4.1146.661','20181031','Silica (Finding by Microscopic Observation in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1564_20240123','2.16.840.1.113762.1.4.1146.1564','20240123','Viruses [Causing Meningitis] (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1685_20220602','2.16.840.1.113762.1.4.1146.1685','20220602','Hepatitis G (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1961_20230125','2.16.840.1.113762.1.4.1146.1961','20230125','Snowshoe hare Virus Diseases (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.300_20230602','2.16.840.1.113762.1.4.1146.300','20230602','Meningococcal Disease (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.542_20230125','2.16.840.1.113762.1.4.1146.542','20230125','Spotted Fever Rickettsiosis (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1288_20210120','2.16.840.1.113762.1.4.1146.1288','20210120','Melioidosis (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1563_20240620','2.16.840.1.113762.1.4.1146.1563','20240620','Fungi [Causing Meningitis and Encephalitis] (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1962_20230124','2.16.840.1.113762.1.4.1146.1962','20230124','Trivittatus Virus Diseases (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.389_20181031','2.16.840.1.113762.1.4.1146.389','20181031','Trichinellosis (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.269_20181031','2.16.840.1.113762.1.4.1146.269','20181031','Mumps (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1960_20230125','2.16.840.1.113762.1.4.1146.1960','20230125','La Crosse Virus Diseases (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1043_20190609','2.16.840.1.113762.1.4.1146.1043','20190609','Candida auris Infection [Candida auris] (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1681_20220602','2.16.840.1.113762.1.4.1146.1681','20220602','Pseudomonas aeruginosa [Carbapenemase Producing] (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1680_20220602','2.16.840.1.113762.1.4.1146.1680','20220602','Pseudomonas aeruginosa [Carbapenem Resistant] (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1562_20240123','2.16.840.1.113762.1.4.1146.1562','20240123','Bacteria [Causing Meningitis] (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.306_20220602','2.16.840.1.113762.1.4.1146.306','20220602','Invasive Pneumococcal Disease (Organism or Substance for Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.549_20181031','2.16.840.1.113762.1.4.1146.549','20181031','St. Louis Encephalitis Virus Infection (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.945_20200515','2.16.840.1.113762.1.4.1146.945','20200515','Rabies (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1733_20220602','2.16.840.1.113762.1.4.1146.1733','20220602','Clostridium perfringens Infection (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2029_20230125','2.16.840.1.113762.1.4.1146.2029','20230125','Bartonellosis (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1734_20220602','2.16.840.1.113762.1.4.1146.1734','20220602','Clostridium perfringens Infection [Toxin] (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1975_20230125','2.16.840.1.113762.1.4.1146.1975','20230125','Baylisascariasis (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2305_20240619','2.16.840.1.113762.1.4.1146.2305','20240619','Gram_negative Diplococcus (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.370_20210526','2.16.840.1.113762.1.4.1146.370','20210526','Cholera (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.371_20240620','2.16.840.1.113762.1.4.1146.371','20240620','Cryptosporidiosis (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.494_20240620','2.16.840.1.113762.1.4.1146.494','20240620','Ehrlichiosis (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.495_20181031','2.16.840.1.113762.1.4.1146.495','20181031','Anaplasmosis (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.375_20230122','2.16.840.1.113762.1.4.1146.375','20230122','Cyclosporiasis (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1212_20230122','2.16.840.1.113762.1.4.1146.1212','20230122','Enterobacteriaceae species [Carbapenem Resistant] (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1575_20220118','2.16.840.1.113762.1.4.1146.1575','20220118','Group A Streptococcus (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1211_20200515','2.16.840.1.113762.1.4.1146.1211','20200515','Enterobacteriaceae species (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1973_20230125','2.16.840.1.113762.1.4.1146.1973','20230125','Hepatitis D Virus Infection (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.378_20190605','2.16.840.1.113762.1.4.1146.378','20190605','Giardiasis (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1214_20230122','2.16.840.1.113762.1.4.1146.1214','20230122','Carbapenemase resistance mechanism (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1213_20230122','2.16.840.1.113762.1.4.1146.1213','20230122','Enterobacteriaceae [Carbapenemase Producing] (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1576_20220118','2.16.840.1.113762.1.4.1146.1576','20220118','Group B Streptococcus (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.534_20230122','2.16.840.1.113762.1.4.1146.534','20230122','Smallpox (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1210_20230122','2.16.840.1.113762.1.4.1146.1210','20230122','Enterobacter spp., E. coli, or Klebsiella spp. (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1451_20220118','2.16.840.1.113762.1.4.1146.1451','20220118','MRSA (Organism or Substance in Lab Results)','CSTE Steward','ostc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1906_20221022','2.16.840.1.113762.1.4.1146.1906','20221022','Orthopox (Tests for Orthopox Virus Nucleic Acid)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2152_20230122','2.16.840.1.113762.1.4.1146.2152','20230122','Naegleria fowleri PAM (Test Panels for Naegleria fowleri Nucleic Acid)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.480_20240619','2.16.840.1.113762.1.4.1146.480','20240619','Anthrax (Tests for Bacillus anthracis Antigen)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.481_20240620','2.16.840.1.113762.1.4.1146.481','20240620','Anthrax (Tests for Bacillus anthracis Antibody)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.761_20220119','2.16.840.1.113762.1.4.1146.761','20220119','Mumps (Test Panels for mumps virus Nucleic Acid)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2159_20230602','2.16.840.1.113762.1.4.1146.2159','20230602','Mpox (Test Panels for mpox virus Nucleic Acid)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.762_20191227','2.16.840.1.113762.1.4.1146.762','20191227','Mumps (Test Panels for mumps virus IgM IgG Antibody)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.883_20181031','2.16.840.1.113762.1.4.1146.883','20181031','Hantavirus Infection (Tests for Hantavirus Antigen)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.367_20180619','2.16.840.1.113762.1.4.1146.367','20180619','Cholera (Tests for Vibrio cholerae O1 or O139 Toxin Nucleic Acid)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2157_20230602','2.16.840.1.113762.1.4.1146.2157','20230602','Mpox (Combination Tests that include mpox virus Nucleic Acid)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.522_20200515','2.16.840.1.113762.1.4.1146.522','20200515','Dengue Virus Infection (TestPanels for dengue virus Nucleic Acid)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.764_20240123','2.16.840.1.113762.1.4.1146.764','20240123','Mumps (Tests for mumps virus IgG Antibody)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2158_20230602','2.16.840.1.113762.1.4.1146.2158','20230602','Orthopox (Combination Tests that include Orthopoxvirus Nucleic Acid)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.369_20191227','2.16.840.1.113762.1.4.1146.369','20191227','Measles (Test Panels for measles virus IgM Antibody)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.523_20240123','2.16.840.1.113762.1.4.1146.523','20240123','Dengue Virus Infection (Tests for dengue virus Antigen)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.524_20230125','2.16.840.1.113762.1.4.1146.524','20230125','Dengue Virus Infection (Tests for dengue virus IgG or Total Antibody [Quantitative])','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.645_20240619','2.16.840.1.113762.1.4.1146.645','20240619','Pertussis (Test Panels for Bordetella pertussis and Bordetella parapertussis Nucleic Acid)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.920_20200515','2.16.840.1.113762.1.4.1146.920','20200515','Brucellosis (TestPanels for Brucella species Antibody [Quantitative])','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.525_20220118','2.16.840.1.113762.1.4.1146.525','20220118','Dengue Virus Infection (Tests for dengue virus IgM Antibody)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.646_20190608','2.16.840.1.113762.1.4.1146.646','20190608','Pertussis (Test Panels for Bordetella pertussis Toxin Antibody)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.801_20181031','2.16.840.1.113762.1.4.1146.801','20181031','Influenza (Tests for Novel influenza A virus by Culture and Identification Method)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.889_20200515','2.16.840.1.113762.1.4.1146.889','20200515','Hantavirus Infection (Tests for Hantavirus IgM IgG Total Antibody)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.527_20230125','2.16.840.1.113762.1.4.1146.527','20230125','Dengue Virus Infection (Tests for dengue virus IgG or Total Antibody [Qualitative])','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.802_20240123','2.16.840.1.113762.1.4.1146.802','20240123','Influenza (Tests for Novel influenza A virus Nucleic Acid)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.759_20181031','2.16.840.1.113762.1.4.1146.759','20181031','Measles (Test Panels for measles virus Nucleic Acid)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.519_20240123','2.16.840.1.113762.1.4.1146.519','20240123','Dengue Virus Infection (Tests for dengue virus Nucleic Acid)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1195_20200515','2.16.840.1.113762.1.4.1146.1195','20200515','Tularemia (Test Panels for Francisella tularensis Antibody)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2160_20230602','2.16.840.1.113762.1.4.1146.2160','20230602','Orthopox (Test Panels for orthopoxvirus Nucleic Acid)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.594_20181031','2.16.840.1.113762.1.4.1146.594','20181031','Tularemia (Tests for Francisella tularensis by Culture and Identification Method)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.595_20230602','2.16.840.1.113762.1.4.1146.595','20230602','Tularemia (Tests for Francisella tularensis Nucleic Acid)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.596_20181031','2.16.840.1.113762.1.4.1146.596','20181031','Tularemia (Tests for Francisella tularensis Antigen)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.597_20200515','2.16.840.1.113762.1.4.1146.597','20200515','Hantavirus Infection (Tests for Hantavirus Nucleic Acid)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1112_20191227','2.16.840.1.113762.1.4.1146.1112','20191227','Poliovirus infection (Test Panels for Poliovirus Antibody)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.598_20240619','2.16.840.1.113762.1.4.1146.598','20240619','Tularemia (Tests for Francisella tularensis Antibody)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.478_20240619','2.16.840.1.113762.1.4.1146.478','20240619','Anthrax (Tests for Bacillus anthracis by Culture and Identification Method)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.874_20181031','2.16.840.1.113762.1.4.1146.874','20181031','Rabies (Tests for rabies virus Nucleic Acid)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.479_20240619','2.16.840.1.113762.1.4.1146.479','20240619','Anthrax (Tests for Bacillus anthracis Nucleic Acid)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.512_20181031','2.16.840.1.113762.1.4.1146.512','20181031','Brucellosis (Tests for Brucella species Nucleic Acid)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1076_20230122','2.16.840.1.113762.1.4.1146.1076','20230122','Opioid Overdose and Poisoning (Tests for Opioids [Quantitative])','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2166_20230602','2.16.840.1.113762.1.4.1146.2166','20230602','Hantavirus Infection (Test Panels for Hantavirus IgM IgG Total Antibody)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.513_20180620','2.16.840.1.113762.1.4.1146.513','20180620','Brucellosis (Tests for Brucella species by Culture and Identification Method)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1111_20191227','2.16.840.1.113762.1.4.1146.1111','20191227','Zika Virus Disease (Test Panels for Zika virus IgM Antibody)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.515_20220118','2.16.840.1.113762.1.4.1146.515','20220118','Brucellosis (Tests for Brucella species Antibody [Quantitative])','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.25_20180619','2.16.840.1.113762.1.4.1146.25','20180619','Cholera (Tests for Vibrio cholerae O1 or O139 by Culture and Identification Method)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1921_20221022','2.16.840.1.113762.1.4.1146.1921','20221022','Mpox (Tests for mpox virus Nucleic Acid)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1127_20200515','2.16.840.1.113762.1.4.1146.1127','20200515','Pesticide Related Illness (Test Panels for Cholinesterase)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.581_20240123','2.16.840.1.113762.1.4.1146.581','20240123','Viral Hemorrhagic Fever (Tests for Viral Hemorrhagic Fever Virus Nucleic Acid)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.582_20181031','2.16.840.1.113762.1.4.1146.582','20181031','Viral Hemorrhagic Fever (Tests for Viral Hemorrhagic Fever Virus Antigen)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.220_20181031','2.16.840.1.113762.1.4.1146.220','20181031','Pertussis (Tests for Bordetella pertussis by Culture and Identification Method)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.584_20181031','2.16.840.1.113762.1.4.1146.584','20181031','Viral Hemorrhagic Fever (Tests for Viral Hemorrhagic Fever Virus IgG Antibody)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.585_20181031','2.16.840.1.113762.1.4.1146.585','20181031','Viral Hemorrhagic Fever (Tests for Viral Hemorrhagic Fever Virus IgM Antibody)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.981_20200515','2.16.840.1.113762.1.4.1146.981','20200515','Botulism (Tests for Clostridium botulinum Toxin)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.982_20180620','2.16.840.1.113762.1.4.1146.982','20180620','Botulism (Test Panels for Clostridium botulinum Toxin Nucleic Acid)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1002_20230602','2.16.840.1.113762.1.4.1146.1002','20230602','Tuberculosis (Tests for Mycobacterium species by Culture and Identification Method)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1365_20210526','2.16.840.1.113762.1.4.1146.1365','20210526','Meningococcal Disease (Tests for Neisseria meningitidis Antigen by Latex Agglutination)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.345_20181031','2.16.840.1.113762.1.4.1146.345','20181031','Smallpox (Tests for variola virus Nucleic Acid)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1126_20200515','2.16.840.1.113762.1.4.1146.1126','20200515','Pesticide Related Illness (Tests for Cholinesterase)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.500_20240619','2.16.840.1.113762.1.4.1146.500','20240619','Q Fever (Tests for Coxiella burnetii Nucleic Acid)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.588_20190608','2.16.840.1.113762.1.4.1146.588','20190608','Zika Virus Disease (Tests for Zika virus Nucleic Acid)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2213_20240123','2.16.840.1.113762.1.4.1146.2213','20240123','Invasive Cronobacter Infection (Tests for Cronobacter species by Culture and Identification Method)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.501_20181031','2.16.840.1.113762.1.4.1146.501','20181031','Q Fever (Tests for Coxiella burnetii by Culture and Identification Method)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.589_20220602','2.16.840.1.113762.1.4.1146.589','20220602','Zika Virus Disease (Tests for Zika virus IgM Antibody)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1087_20191227','2.16.840.1.113762.1.4.1146.1087','20191227','Meningococcal Disease (Tests for Neisseria meningitidis Antigen in CSF by Latex Agglutination)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1001_20220601','2.16.840.1.113762.1.4.1146.1001','20220601','Pertussis (Test Panels for Bordetella pertussis Antibody)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1088_20191227','2.16.840.1.113762.1.4.1146.1088','20191227','Meningococcal Disease (Tests for Neisseria meningitidis Antigen by Immunohistochemistry)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1539_20220118','2.16.840.1.113762.1.4.1146.1539','20220118','Naegleria fowleri PAM (Tests for Naegleria fowleri Antigen)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.10_20240620','2.16.840.1.113762.1.4.1146.10','20240620','Diphtheria (Tests for Corynebacterium diphtheriae by Culture and Identification Method)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2348_20240619','2.16.840.1.113762.1.4.1146.2348','20240619','Rubella (Test Panels for rubella virus IgM Antibody)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.570_20181031','2.16.840.1.113762.1.4.1146.570','20181031','Plague (Tests for Yersinia pestis by Culture and Identification Method)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.296_20191227','2.16.840.1.113762.1.4.1146.296','20191227','Measles (Tests for measles virus by Culture and Identification Method)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.571_20181031','2.16.840.1.113762.1.4.1146.571','20181031','Plague (Tests for Yersinia pestis Antigen)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.297_20191227','2.16.840.1.113762.1.4.1146.297','20191227','Measles (Tests for measles virus Nucleic Acid)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.572_20200515','2.16.840.1.113762.1.4.1146.572','20200515','Plague (Tests for Yersinia pestis Antibody [Qualitative])','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.298_20181031','2.16.840.1.113762.1.4.1146.298','20181031','Measles (Tests for measles virus Antigen)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.299_20181031','2.16.840.1.113762.1.4.1146.299','20181031','Measles (Tests for measles virus IgM Antibody)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2347_20240619','2.16.840.1.113762.1.4.1146.2347','20240619','Opioid Overdose and Poisoning (Test Panels for Opioids)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.697_20180620','2.16.840.1.113762.1.4.1146.697','20180620','Botulism (Tests for Clostridium botulinum by Culture and Identification Method)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2344_20240620','2.16.840.1.113762.1.4.1146.2344','20240620','Diphtheria (Tests for Diphtheria Toxin Nucleic Acid)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.215_20181031','2.16.840.1.113762.1.4.1146.215','20181031','Pertussis (Tests for Bordetella pertussis Antigen)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.216_20240619','2.16.840.1.113762.1.4.1146.216','20240619','Pertussis (Tests for Bordetella pertussis Antibody [Excluding Pertussis Toxin Antibody])','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.613_20181031','2.16.840.1.113762.1.4.1146.613','20181031','Zika Virus Disease (Test Panels for Zika virus Nucleic Acid)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.614_20240619','2.16.840.1.113762.1.4.1146.614','20240619','Pertussis (Tests for Bordetella pertussis Toxin Antibody)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.847_20240123','2.16.840.1.113762.1.4.1146.847','20240123','SARS (Tests for SARS_CoV Nucleic Acid)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.960_20200515','2.16.840.1.113762.1.4.1146.960','20200515','Plague (Tests for Yersinia pestis Antibody [Quantitative])','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.840_20220602','2.16.840.1.113762.1.4.1146.840','20220602','Tuberculosis (Tests for Mycobacterium tuberculosis by Culture and Identification Method)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.324_20181031','2.16.840.1.113762.1.4.1146.324','20181031','Meningococcal Disease (Tests for Neisseria meningitidis Antigen in Tissue by Immunohistochemistry)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.600_20220602','2.16.840.1.113762.1.4.1146.600','20220602','Tuberculosis (Tests for Mycobacterium tuberculosis Nucleic Acid)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.569_20240619','2.16.840.1.113762.1.4.1146.569','20240619','Plague (Tests for Yersinia pestis Nucleic Acid)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.966_20181031','2.16.840.1.113762.1.4.1146.966','20181031','Viral Hemorrhagic Fever (TestPanels for Viral Hemorrhagic Fever Virus Nucleic Acid)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.846_20240123','2.16.840.1.113762.1.4.1146.846','20240123','SARS (Tests for SARS_CoV by Culture and Identification Method)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1151_20200515','2.16.840.1.113762.1.4.1146.1151','20200515','Viral Hemorrhagic Fever (Tests for Viral Hemorrhagic Fever Virus Antibody)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.552_20200515','2.16.840.1.113762.1.4.1146.552','20200515','Rabies (Tests for rabies virus Antigen by Immunofluorescence)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1795_20220602','2.16.840.1.113762.1.4.1146.1795','20220602','Tuberculosis (Test Panels for Mycobacterium tuberculosis by Culture and Identification Method)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.313_20181031','2.16.840.1.113762.1.4.1146.313','20181031','Rubella (Tests for rubella virus by Culture and Identification Method)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.555_20240619','2.16.840.1.113762.1.4.1146.555','20240619','Yellow Fever (Tests for yellow fever virus Nucleic Acid)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.830_20191231','2.16.840.1.113762.1.4.1146.830','20191231','Poliovirus Infection (Tests for Poliovirus Antibody Titer in Serum Specimen)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.314_20191227','2.16.840.1.113762.1.4.1146.314','20191227','Rubella (Tests for rubella virus Nucleic Acid)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.316_20240619','2.16.840.1.113762.1.4.1146.316','20240619','Rubella (Tests for rubella virus IgM Antibody)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.946_20181031','2.16.840.1.113762.1.4.1146.946','20181031','Rabies (Tests for rabies virus by Culture and Identification Method)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.829_20180620','2.16.840.1.113762.1.4.1146.829','20180620','Poliovirus Infection (Tests for poliovirus by Culture and Identification Method)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.262_20220119','2.16.840.1.113762.1.4.1146.262','20220119','Mumps (Tests for mumps virus Nucleic Acid)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.782_20240123','2.16.840.1.113762.1.4.1146.782','20240123','Rubella (Test Panels for rubella virus IgM IgG Antibody)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.266_20191227','2.16.840.1.113762.1.4.1146.266','20191227','Mumps (Tests for mumps virus by Culture and Identification Method)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1289_20210120','2.16.840.1.113762.1.4.1146.1289','20210120','Melioidosis (Tests for Burkholderia pseudomallei by Culture and Identification Method)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.268_20181031','2.16.840.1.113762.1.4.1146.268','20181031','Mumps (Tests for mumps virus IgM Antibody)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.785_20230122','2.16.840.1.113762.1.4.1146.785','20230122','Opioid Overdose and Poisoning (Tests for Opioids [Qualitative])','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.302_20220603','2.16.840.1.113762.1.4.1146.302','20220603','Meningococcal Disease (Tests for Neisseria meningitidis Nucleic Acid)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.786_20220603','2.16.840.1.113762.1.4.1146.786','20220603','Meningococcal Disease (Tests for Neisseria meningitidis Nucleic Acid in Specimen from Normally Sterile Site)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.303_20191227','2.16.840.1.113762.1.4.1146.303','20191227','Meningococcal Disease (Tests for Neisseria meningitidis by Culture and Identification Method)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.787_20181031','2.16.840.1.113762.1.4.1146.787','20181031','Meningococcal Disease (Tests for Neisseria meningitidis in Specimen from Normally Sterile Site by Culture and Identification Method)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1285_20210120','2.16.840.1.113762.1.4.1146.1285','20210120','Naegleria fowleri PAM (Tests for Naegleria fowleri Nucleic Acid)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2012_20230122','2.16.840.1.113762.1.4.1146.2012','20230122','Mpox (Tests for mpox virus by Genomic Sequencing)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.821_20200515','2.16.840.1.113762.1.4.1146.821','20200515','Pesticide Related Illness (Test Panels for Pesticides)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2013_20230122','2.16.840.1.113762.1.4.1146.2013','20230122','Mpox (Test Panels for mpox virus by Genomic Sequencing)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1286_20220118','2.16.840.1.113762.1.4.1146.1286','20220118','Naegleria fowleri PAM (Tests for Naegleria fowleri by Culture and Identification Method)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.58_20230602','2.16.840.1.113762.1.4.1146.58','20230602','Pertussis (Tests for Bordetella pertussis Nucleic Acid)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.817_20181031','2.16.840.1.113762.1.4.1146.817','20181031','Rubella (Test Panels for rubella virus Nucleic Acid)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2306_20240619','2.16.840.1.113762.1.4.1146.2306','20240619','Pertussis (Test Panels for Bordetella pertussis and Bordetella parapertussis Culture and Identification Method)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1290_20210120','2.16.840.1.113762.1.4.1146.1290','20210120','Melioidosis (Tests for Burkholderia pseudomallei Nucleic Acid)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.499_20181031','2.16.840.1.113762.1.4.1146.499','20181031','Q Fever (Tests for Coxiella burnetii Antigen)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.897_20230125','2.16.840.1.113762.1.4.1146.897','20230125','Dengue Virus Infection (Test Panels for dengue virus IgM IgG Antibody)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.899_20181031','2.16.840.1.113762.1.4.1146.899','20181031','Tularemia (Tests for Francisella tularensis by Cell Wall Analysis)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.416_20220119','2.16.840.1.113762.1.4.1146.416','20220119','Pesticide Related Illness (Tests for Pesticides)','CSTE Steward','lotc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1182_20220602','2.16.840.1.113762.1.4.1146.1182','20220602','Powassan Virus Disease (Tests for Powassan Virus Antibody [Quantitative])','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1181_20210526','2.16.840.1.113762.1.4.1146.1181','20210526','Eastern Equine Encephalitis Virus Disease (Tests for Eastern Equine Encephalitis Virus Antibody [Quantitative])','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1184_20210526','2.16.840.1.113762.1.4.1146.1184','20210526','California Serogroup Virus Diseases (Tests for California Serogroup Virus Antibody [Quantitative])','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1183_20210527','2.16.840.1.113762.1.4.1146.1183','20210527','Western Equine Encephalitis Virus Disease (Tests for Western Equine Encephalitis Virus Antibody [Quantitative])','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.240_20230602','2.16.840.1.113762.1.4.1146.240','20230602','Chlamydia trachomatis Infection (Tests for Chlamydia trachomatis Antigen)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.483_20181031','2.16.840.1.113762.1.4.1146.483','20181031','Ehrlichiosis (Tests for Ehrlichia species by Culture and Identification Method)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.484_20181031','2.16.840.1.113762.1.4.1146.484','20181031','Anaplasmosis (Tests for Anaplasma species by Culture and Identification Method)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1180_20240620','2.16.840.1.113762.1.4.1146.1180','20240620','Chikungunya Virus Disease (Tests for Chikungunya Virus Antibody [Quantitative])','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.485_20210526','2.16.840.1.113762.1.4.1146.485','20210526','Anaplasmosis (Tests for Anaplasma species Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.244_20230602','2.16.840.1.113762.1.4.1146.244','20230602','Gonorrhea (Tests for Neisseria gonorrhoeae Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.486_20181031','2.16.840.1.113762.1.4.1146.486','20181031','Ehrlichiosis (Tests for Ehrlichia species Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.245_20191227','2.16.840.1.113762.1.4.1146.245','20191227','Gonorrhea (Tests for Neisseria gonorrhoeae by Culture and Identification Method)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.487_20181031','2.16.840.1.113762.1.4.1146.487','20181031','Ehrlichiosis (Tests for Ehrlichia species Antigen in Tissue by Immunohistochemical Stain)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1189_20230602','2.16.840.1.113762.1.4.1146.1189','20230602','California Serogroup Virus Diseases (Tests for California Serogroup Virus Antibody [Qualitative])','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2039_20230125','2.16.840.1.113762.1.4.1146.2039','20230125','Bartonella quintana infection (Tests for Bartonella quintana Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.488_20181031','2.16.840.1.113762.1.4.1146.488','20181031','Anaplasmosis (Tests for Anaplasma species Antigen in Tissue by Immunohistochemical Stain)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.368_20200515','2.16.840.1.113762.1.4.1146.368','20200515','HIV Infection (Tests for HIV Antigen)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.489_20181031','2.16.840.1.113762.1.4.1146.489','20181031','Anaplasmosis (Tests for Anaplasma species IgG Antibody [Quantitative] by IFA)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1186_20230602','2.16.840.1.113762.1.4.1146.1186','20230602','Eastern Equine Encephalitis Virus Disease (Tests for Eastern Equine Encephalitis Virus Antibody [Qualitative])','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1185_20220601','2.16.840.1.113762.1.4.1146.1185','20220601','Chikungunya Virus Disease (Tests for Chikungunya Virus Antibody [Qualitative])','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1188_20240619','2.16.840.1.113762.1.4.1146.1188','20240619','Western Equine Encephalitis Virus Disease (Tests for Western Equine Encephalitis Virus Antibody [Qualitative])','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1187_20210527','2.16.840.1.113762.1.4.1146.1187','20210527','Powassan Virus Disease (Tests for Powassan Virus Antibody [Qualitative])','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2041_20230125','2.16.840.1.113762.1.4.1146.2041','20230125','Bartonella quintana infection (Tests for Bartonella quintana IgG or Total Antibody in a clinical specimen by any method)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2042_20230125','2.16.840.1.113762.1.4.1146.2042','20230125','Bartonella henselae infection (Tests for Bartonella henselae Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.470_20181031','2.16.840.1.113762.1.4.1146.470','20181031','Leptospirosis (Tests for Leptospira Antigen)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2040_20230125','2.16.840.1.113762.1.4.1146.2040','20230125','Bartonella quintana infection (Tests for Bartonella quintana IgM Antibody in a clinical specimen by any method)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.471_20230122','2.16.840.1.113762.1.4.1146.471','20230122','Leptospirosis (Tests for Leptospira Antibody [Quantitative] by Agglutination)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.472_20181031','2.16.840.1.113762.1.4.1146.472','20181031','Leptospirosis (Tests for Leptospira Antibody)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.474_20200513','2.16.840.1.113762.1.4.1146.474','20200513','Babesiosis (Tests for Babesia species Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.475_20210526','2.16.840.1.113762.1.4.1146.475','20210526','Babesiosis (Tests for Babesia species Antibody)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2049_20230125','2.16.840.1.113762.1.4.1146.2049','20230125','Bartonella spp. (Tests by Microscopic Observation)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.476_20240620','2.16.840.1.113762.1.4.1146.476','20240620','Babesia species (Tests by Microscopic Observation in Blood)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2047_20230125','2.16.840.1.113762.1.4.1146.2047','20230125','Bartonellosis (Tests for Bartonella spp. Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2168_20240620','2.16.840.1.113762.1.4.1146.2168','20240620','Viruses [Causing Encephalitis] (Tests for Viruses Causing Encephalitis in Unspecified Specimen by Culture and Identification)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2048_20230125','2.16.840.1.113762.1.4.1146.2048','20230125','Bartonellosis (Tests for Bartonella spp. IgM Antibody in a clinical specimen by any method)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2169_20230602','2.16.840.1.113762.1.4.1146.2169','20230602','Viruses [Causing Encephalitis] (Tests for Viruses Causing Encephalitis in Cerebrospinal Fluid by Culture and Identification)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2045_20230125','2.16.840.1.113762.1.4.1146.2045','20230125','Bartonella bacilliformis infection (Tests for Bartonella bacilliformis IgM Antibody in a clinical specimen by any method)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.238_20190605','2.16.840.1.113762.1.4.1146.238','20190605','Chlamydia trachomatis Infection (Tests for Chlamydia trachomatis by Culture and Identification Method)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2046_20230125','2.16.840.1.113762.1.4.1146.2046','20230125','Bartonella bacilliformis infection (Tests for Bartonella bacilliformis IgG or Total Antibody in a clinical specimen by any method)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.239_20230602','2.16.840.1.113762.1.4.1146.239','20230602','Chlamydia trachomatis Infection (Tests for Chlamydia trachomatis Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2043_20230125','2.16.840.1.113762.1.4.1146.2043','20230125','Bartonella henselae infection (Tests for Bartonella henselae IgM Antibody in a clinical specimen by any method)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2044_20230125','2.16.840.1.113762.1.4.1146.2044','20230125','Bartonella henselae infection (Tests for Bartonella henselae IgG or Total Antibody in a clinical specimen by any method)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2173_20240620','2.16.840.1.113762.1.4.1146.2173','20240620','Bacteria [Causing Encephalitis] (Tests for Bacteria Causing Encephalitis Nucleic Acid in Unspecified Specimen)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2174_20240620','2.16.840.1.113762.1.4.1146.2174','20240620','Fungi [Causing Encephalitis] (Tests for Fungi Causing Encephalitis Nucleic Acid in Unspecified Specimen)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2050_20230125','2.16.840.1.113762.1.4.1146.2050','20230125','Bartonellosis (Tests for Bartonella spp. by Culture and Identification Method)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2171_20230602','2.16.840.1.113762.1.4.1146.2171','20230602','Fungi [Causing Encephalitis] (Tests for Fungi Causing Encephalitis in Unspecified Specimen by Culture and Identification)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2051_20230125','2.16.840.1.113762.1.4.1146.2051','20230125','Bartonellosis (Tests for Bartonella spp. IgG or Total Antibody in a clinical specimen by any method)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2172_20240620','2.16.840.1.113762.1.4.1146.2172','20240620','Viruses [Causing Encephalitis] (Tests for Viruses Causing Encephalitis Nucleic Acid in Unspecified Specimen)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2170_20240620','2.16.840.1.113762.1.4.1146.2170','20240620','Bacteria [Causing Encephalitis] (Tests for Bacteria Causing Encephalitis in Unspecified Specimen by Culture and Identification)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.342_20230602','2.16.840.1.113762.1.4.1146.342','20230602','Campylobacteriosis (Tests for Campylobacter species by Culture and Identification Method)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.343_20240620','2.16.840.1.113762.1.4.1146.343','20240620','Campylobacteriosis (Tests for Campylobacter species Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.464_20230602','2.16.840.1.113762.1.4.1146.464','20230602','Malaria (Tests for Plasmodium species Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.344_20230602','2.16.840.1.113762.1.4.1146.344','20230602','Campylobacteriosis (Tests for Campylobacter species Antigen)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.465_20181031','2.16.840.1.113762.1.4.1146.465','20181031','Malaria (Tests for Plasmodium species Antigen)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.466_20200515','2.16.840.1.113762.1.4.1146.466','20200515','Plasmodium species (Tests by Microscopic Observation in Blood)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2058_20240123','2.16.840.1.113762.1.4.1146.2058','20240123','Echinococcosis (Tests for Echinococcus species Antibody)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2179_20230602','2.16.840.1.113762.1.4.1146.2179','20230602','Parasites [Causing Encephalitis] (Tests for Parasites Causing Encephalitis Antigen in Unspecified Specimen)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2059_20230125','2.16.840.1.113762.1.4.1146.2059','20230125','Echinococcus species (Tests by Microscopic Observation)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.347_20220118','2.16.840.1.113762.1.4.1146.347','20220118','Hepatitis A (Tests for hepatitis A virus Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.468_20240123','2.16.840.1.113762.1.4.1146.468','20240123','Leptospirosis (Tests for Leptospira Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2177_20240620','2.16.840.1.113762.1.4.1146.2177','20240620','Fungi [Causing Encephalitis] (Tests for Fungi Causing Encephalitis Antigen in Unspecified Specimen)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.469_20181031','2.16.840.1.113762.1.4.1146.469','20181031','Leptospirosis (Tests for Leptospira by Culture and Identification Method)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2178_20240620','2.16.840.1.113762.1.4.1146.2178','20240620','Bacteria [Causing Encephalitis] (Tests for Bacteria Causing Encephalitis Antigen in Unspecified Specimen)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2299_20240123','2.16.840.1.113762.1.4.1146.2299','20240123','Group A Streptococcus (Tests for Group A Strep in Specimen from Normally Sterile Site by Culture and Identification Method)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.349_20181031','2.16.840.1.113762.1.4.1146.349','20181031','Hepatitis A (Tests for hepatitis A virus IgM Antibody)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2175_20240620','2.16.840.1.113762.1.4.1146.2175','20240620','Parasites [Causing Encephalitis] (Tests for Parasites Causing Encephalitis Nucleic Acid in Unspecified Specimen)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2176_20240620','2.16.840.1.113762.1.4.1146.2176','20240620','Viruses [Causing Encephalitis] (Tests for Viruses Causing Encephalitis Antigen in Unspecified Specimen)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2183_20240620','2.16.840.1.113762.1.4.1146.2183','20240620','Bacteria [Causing Encephalitis] (Tests for Bacteria Causing Encephalitis Nucleic Acid in Cerebrospinal Fluid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2180_20240620','2.16.840.1.113762.1.4.1146.2180','20240620','Parasites [Causing Encephalitis] (Tests for Parasites Causing Encephalitis in Unspecified Specimen by Microscopic Observation)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.693_20210527','2.16.840.1.113762.1.4.1146.693','20210527','Invasive Pneumococcal Disease (Tests for Streptococcus pneumoniae by Culture and Identification Method)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.575_20230602','2.16.840.1.113762.1.4.1146.575','20230602','Arboviral Disease [Other] (Tests for Arbovirus [Other] Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.576_20230602','2.16.840.1.113762.1.4.1146.576','20230602','Arboviral Disease [Other] (Tests for Arbovirus [Other] Antigen)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.335_20230125','2.16.840.1.113762.1.4.1146.335','20230125','Influenza (Tests for influenza A virus by Culture and Identification Method)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.577_20230602','2.16.840.1.113762.1.4.1146.577','20230602','Arboviral Disease [Other] (Tests for Arbovirus [Other] IgM Antibody)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.336_20240123','2.16.840.1.113762.1.4.1146.336','20240123','Influenza (Tests for influenza A or B virus Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.578_20230602','2.16.840.1.113762.1.4.1146.578','20230602','Arboviral Disease [Other] (Tests for Arbovirus [Other] Antibody [Quantitative])','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2067_20230602','2.16.840.1.113762.1.4.1146.2067','20230602','Nontuberculous Mycobacteria Infection, Pulmonary (Tests for Mycobacterium species Nucleic Acid in a Pulmonary Specimen)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2188_20240620','2.16.840.1.113762.1.4.1146.2188','20240620','Fungi [Causing Encephalitis] (Tests for Fungi Causing Encephalitis Antigen in Cerebrospinal Fluid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.337_20191227','2.16.840.1.113762.1.4.1146.337','20191227','Influenza (Tests for influenza A or B virus Antigen)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.579_20230602','2.16.840.1.113762.1.4.1146.579','20230602','Arboviral Disease [Other] (Tests for Arbovirus [Other] Antibody [Qualitative])','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2189_20230602','2.16.840.1.113762.1.4.1146.2189','20230602','Parasites [Causing Encephalitis] (Tests for Parasites Causing Encephalitis in Cerebrospinal Fluid by Microscopic Observation)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.338_20191227','2.16.840.1.113762.1.4.1146.338','20191227','Influenza (Tests for influenza A or B virus Antibody by Hemagglutination Inhibition or Neutralization)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2187_20230602','2.16.840.1.113762.1.4.1146.2187','20230602','Fungi [Causing Encephalitis] (Tests for Fungi Causing Encephalitis Nucleic Acid in Cerebrospinal Fluid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2193_20230602','2.16.840.1.113762.1.4.1146.2193','20230602','Viruses [Causing Encephalitis] (Tests for Viruses Causing Encephalitis Antigen in Cerebrospinal Fluid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.560_20240619','2.16.840.1.113762.1.4.1146.560','20240619','West Nile Virus Infection (Tests for West Nile virus Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2192_20240620','2.16.840.1.113762.1.4.1146.2192','20240620','Viruses [Causing Encephalitis] (Tests for Viruses Causing Encephalitis Nucleic Acid in Cerebrospinal Fluid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.440_20181031','2.16.840.1.113762.1.4.1146.440','20181031','Psittacosis (Tests for Chlamydophila psittaci by Culture and Identification Method)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.561_20181031','2.16.840.1.113762.1.4.1146.561','20181031','West Nile Virus Infection (Tests for West Nile virus Antigen)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.441_20181031','2.16.840.1.113762.1.4.1146.441','20181031','Psittacosis (Tests for Chlamydophila psittaci Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.562_20200515','2.16.840.1.113762.1.4.1146.562','20200515','West Nile Virus Infection (Tests for West Nile virus IgM Antibody)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2190_20240620','2.16.840.1.113762.1.4.1146.2190','20240620','Parasites [Causing Encephalitis] (Tests for Parasites Causing Encephalitis Nucleic Acid in Cerebrospinal Fluid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.442_20181031','2.16.840.1.113762.1.4.1146.442','20181031','Psittacosis (Tests for Chlamydophila psittaci IgM Antibody)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.563_20181031','2.16.840.1.113762.1.4.1146.563','20181031','West Nile Virus Infection (Tests for West Nile virus IgG or Total Antibody [Quantitative])','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.443_20181031','2.16.840.1.113762.1.4.1146.443','20181031','Psittacosis (Tests for Chlamydophila psittaci IgG Antibody)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.564_20210527','2.16.840.1.113762.1.4.1146.564','20210527','West Nile Virus Infection (Tests for West Nile virus IgG or Total Antibody [Qualitative])','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.445_20200515','2.16.840.1.113762.1.4.1146.445','20200515','Legionellosis (Tests for Legionella species Antigen)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.566_20181031','2.16.840.1.113762.1.4.1146.566','20181031','Cyclosporiasis (Tests by Microscopic Observation)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.325_20191227','2.16.840.1.113762.1.4.1146.325','20191227','Meningococcal Disease (Tests for Neisseria meningitidis Antigen in Specimen from Normally Sterile Site by Latex Agglutination)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.446_20240123','2.16.840.1.113762.1.4.1146.446','20240123','Legionellosis (Tests for Legionella species Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.567_20191227','2.16.840.1.113762.1.4.1146.567','20191227','Chancroid (Tests for Haemophilus ducreyi by Culture and Identification Method)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.447_20200515','2.16.840.1.113762.1.4.1146.447','20200515','Legionellosis (Tests for Legionella species by Culture and Identification Method)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.449_20220119','2.16.840.1.113762.1.4.1146.449','20220119','Legionellosis (Tests for Legionella species IgM Antibody)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.550_20240123','2.16.840.1.113762.1.4.1146.550','20240123','Syphilis (Tests for Treponema pallidum Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.553_20230602','2.16.840.1.113762.1.4.1146.553','20230602','Anaplasma species (Tests by Microscopic Observation)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.433_20181031','2.16.840.1.113762.1.4.1146.433','20181031','STEC Infection (Tests for STEC , E. coli O157, or Shiga Toxin [Verotoxin] Antibody)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.797_20230125','2.16.840.1.113762.1.4.1146.797','20230125','Influenza (Tests for influenza A or B virus by Culture and Identification Method)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.556_20210527','2.16.840.1.113762.1.4.1146.556','20210527','Yellow Fever (Tests for yellow fever virus IgM Antibody)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.798_20240123','2.16.840.1.113762.1.4.1146.798','20240123','Influenza (Tests for influenza A virus Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.436_20240123','2.16.840.1.113762.1.4.1146.436','20240123','Coccidioidomycosis (Tests for Coccidioides species IgM Antibody)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.557_20240619','2.16.840.1.113762.1.4.1146.557','20240619','Yellow Fever (Tests for yellow fever virus Antibody [Quantitative])','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.799_20230125','2.16.840.1.113762.1.4.1146.799','20230125','Influenza (Tests for influenza A virus Antigen)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.437_20220119','2.16.840.1.113762.1.4.1146.437','20220119','Coccidioidomycosis (Tests for Coccidioides species Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.558_20210527','2.16.840.1.113762.1.4.1146.558','20210527','Yellow Fever (Tests for yellow fever virus Antibody [Qualitative])','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.317_20240123','2.16.840.1.113762.1.4.1146.317','20240123','Shigellosis (Tests for Shigella species Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.438_20240123','2.16.840.1.113762.1.4.1146.438','20240123','Coccidioidomycosis (Tests for Coccidioides species Antigen)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.308_20230602','2.16.840.1.113762.1.4.1146.308','20230602','Invasive Pneumococcal Disease (Tests for Streptococcus pneumoniae Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.309_20181031','2.16.840.1.113762.1.4.1146.309','20181031','Invasive Pneumococcal Disease (Tests for Streptococcus pneumoniae Antigen)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.540_20181031','2.16.840.1.113762.1.4.1146.540','20181031','Spotted Fever Rickettsiosis (Tests for Rickettsia Spotted Fever Group Antigen in Tissue by Immune Staining)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.301_20240619','2.16.840.1.113762.1.4.1146.301','20240619','Shigellosis (Tests for Shigella species by Culture and Identification Method)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.544_20181031','2.16.840.1.113762.1.4.1146.544','20181031','St. Louis Encephalitis Virus Infection (Tests for Saint Louis encephalitis virus Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.545_20181031','2.16.840.1.113762.1.4.1146.545','20181031','St. Louis Encephalitis Virus Infection (Tests for Saint Louis encephalitis virus Antigen)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.425_20190606','2.16.840.1.113762.1.4.1146.425','20190606','STEC Infection (Tests for STEC, E. coli O157 H7, or E. coli O157 by Culture and Identification Method)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.546_20220602','2.16.840.1.113762.1.4.1146.546','20220602','St. Louis Encephalitis Virus Infection (Tests for Saint Louis encephalitis virus IgM Antibody)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.788_20220603','2.16.840.1.113762.1.4.1146.788','20220603','Meningococcal Disease (Tests for Neisseria meningitidis Antigen)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.426_20191227','2.16.840.1.113762.1.4.1146.426','20191227','STEC Infection (Tests for E. coli Shiga Toxin or Shiga Like Toxin)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.547_20181031','2.16.840.1.113762.1.4.1146.547','20181031','St. Louis Encephalitis Virus Infection (Tests for Saint Louis encephalitis virus Antibody [Quantitative])','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.427_20240619','2.16.840.1.113762.1.4.1146.427','20240619','STEC Infection (Tests for Shiga toxin genes, or STEC, EHEC, or E. coli O157 Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.548_20240619','2.16.840.1.113762.1.4.1146.548','20240619','St. Louis Encephalitis Virus Infection (Tests for Saint Louis encephalitis virus Antibody [Qualitative])','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.307_20181031','2.16.840.1.113762.1.4.1146.307','20181031','Leptospirosis (Tests for Leptospira IgM Antibody)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.428_20181031','2.16.840.1.113762.1.4.1146.428','20181031','STEC Infection (Tests for STEC or E. coli O157 Antigen)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.539_20181031','2.16.840.1.113762.1.4.1146.539','20181031','Rickettsioses (Tests for Rickettsia species by Culture and Identification Method)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.770_20230602','2.16.840.1.113762.1.4.1146.770','20230602','Invasive Pneumococcal Disease (Tests for Streptococcus pneumoniae Nucleic Acid in Specimen from Normally Sterile Site)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.771_20210527','2.16.840.1.113762.1.4.1146.771','20210527','Invasive Pneumococcal Disease (Tests for Streptococcus pneumoniae in Specimen from Normally Sterile Site by Culture and Identification Method)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.530_20240123','2.16.840.1.113762.1.4.1146.530','20240123','Borrelia species (Tests for Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.772_20181031','2.16.840.1.113762.1.4.1146.772','20181031','Invasive Haemophilus influenzae Disease (Tests for Haemophilus influenzae in Specimen from Normally Sterile Site by Culture and Identification Method)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.531_20240123','2.16.840.1.113762.1.4.1146.531','20240123','Lyme Disease (Tests for Borrelia burgdorferi IgM IgG Antibody by Immunoblot)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.773_20240620','2.16.840.1.113762.1.4.1146.773','20240620','Invasive Haemophilus influenzae Disease (Tests for Haemophilus influenzae Nucleic Acid in Specimen from Normally Sterile Site)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.532_20240123','2.16.840.1.113762.1.4.1146.532','20240123','Lyme Disease (Tests for Borrelia burgdorferi Antibody by Immunoassay)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.413_20200513','2.16.840.1.113762.1.4.1146.413','20200513','Lead in Blood (Tests for Lead in Blood)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.414_20180620','2.16.840.1.113762.1.4.1146.414','20180620','Lead in Blood (Tests for Lead [Quantitative] in Venous Blood)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.535_20200515','2.16.840.1.113762.1.4.1146.535','20200515','Rickettsioses (Tests for Rickettsia species Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.415_20180620','2.16.840.1.113762.1.4.1146.415','20180620','Lead in Blood (Tests for Lead [Quantitative] in Capillary Blood)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.536_20200515','2.16.840.1.113762.1.4.1146.536','20200515','Spotted Fever Rickettsiosis (Tests for Rickettsia Spotted Fever Group IgG Antibody)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.537_20200515','2.16.840.1.113762.1.4.1146.537','20200515','Spotted Fever Rickettsiosis (Tests for Rickettsia Spotted Fever Group IgM Antibody)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.417_20220118','2.16.840.1.113762.1.4.1146.417','20220118','Carbon Monoxide Poisoning (Tests for Carboxyhemoglobin in Blood [Quantitative])','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.538_20181031','2.16.840.1.113762.1.4.1146.538','20181031','Spotted Fever Rickettsiosis (Tests for Rickettsia Spotted Fever Group Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1106_20230125','2.16.840.1.113762.1.4.1146.1106','20230125','Listeriosis (Tests for Listeria monocytogenes Nucleic Acid in Specimen from Normally Sterile Site)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1344_20210526','2.16.840.1.113762.1.4.1146.1344','20210526','Ricin Poisoning (Tests for Ricin Antibody)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1465_20230122','2.16.840.1.113762.1.4.1146.1465','20230122','VRE (Tests by Culture and Identification Method)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1343_20210526','2.16.840.1.113762.1.4.1146.1343','20210526','Ricin Poisoning (Tests for Ricin)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1467_20220118','2.16.840.1.113762.1.4.1146.1467','20220118','Enterococcus faecium or E. faecalis (Tests by Culture and Identification Method)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1345_20210526','2.16.840.1.113762.1.4.1146.1345','20210526','Ricin Poisoning (Tests for Ricinine)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1466_20240123','2.16.840.1.113762.1.4.1146.1466','20240123','Enterococcus species (Tests by Culture and Identification Method)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1340_20240620','2.16.840.1.113762.1.4.1146.1340','20240620','Prion Disease (Tests for 14_3_3 Protein)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1220_20230122','2.16.840.1.113762.1.4.1146.1220','20230122','Tests for Enterobacteriaceae species by Culture and Identification Method','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1341_20240123','2.16.840.1.113762.1.4.1146.1341','20240123','Prion Disease (Tests for Abnormal Prion Protein)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1462_20230122','2.16.840.1.113762.1.4.1146.1462','20230122','Staphylococcus aureus (Tests for Staph aureus Nucleic Acid in Blood)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1359_20230602','2.16.840.1.113762.1.4.1146.1359','20230602','Hepatitis E (Tests for hepatitis E virus IgM Antibody)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.70_20240619','2.16.840.1.113762.1.4.1146.70','20240619','Salmonellosis (Tests for Salmonella except S. typhi and S. paratyphi by Culture and Identification Method)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.71_20240619','2.16.840.1.113762.1.4.1146.71','20240619','Salmonellosis (Tests for Salmonella except S. typhi and S. paratyphi Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1591_20220118','2.16.840.1.113762.1.4.1146.1591','20220118','Cadmium Exposure and Toxicity (Tests for Cadmium [Quantitative] in Urine)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1590_20220118','2.16.840.1.113762.1.4.1146.1590','20220118','Cadmium Exposure and Toxicity (Tests for Cadmium [Quantitative] in Blood)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1476_20220118','2.16.840.1.113762.1.4.1146.1476','20220118','Amebiasis (Tests for Entamoeba histolytica Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1475_20220118','2.16.840.1.113762.1.4.1146.1475','20220118','Amebiasis (Tests for Entamoeba histolytica Antigen by EIA)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1478_20220118','2.16.840.1.113762.1.4.1146.1478','20220118','Amebiasis (Tests for Entamoeba histolytica Antibody by EIA)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1477_20220118','2.16.840.1.113762.1.4.1146.1477','20220118','Amebiasis (Tests for Entamoeba histolytica Antibody)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1592_20220118','2.16.840.1.113762.1.4.1146.1592','20220118','Cadmium Exposure and Toxicity (Tests for Cadmium [Quantitative] in Unspecified Specimen)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1474_20220118','2.16.840.1.113762.1.4.1146.1474','20220118','Amebiasis (Tests for Entamoeba histolytica Antigen)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1128_20200515','2.16.840.1.113762.1.4.1146.1128','20200515','Borrelia species (Tests by Culture and Identification Method)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1249_20240123','2.16.840.1.113762.1.4.1146.1249','20240123','Blastomycosis (Tests for Blastomyces species by Culture and Identification Method)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1248_20220119','2.16.840.1.113762.1.4.1146.1248','20220119','Non pestis Yersiniosis Infection (Tests Yersinia non pestis species by Culture and Identification Method)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1129_20200515','2.16.840.1.113762.1.4.1146.1129','20200515','Tickborne Relapsing Fever (Tests for Borrelia hermsii/miyamotoi/parkerii/turicatae by Culture and Identification Method)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1360_20240620','2.16.840.1.113762.1.4.1146.1360','20240620','Hepatitis E (Tests for hepatitis E virus Antibody)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1368_20210526','2.16.840.1.113762.1.4.1146.1368','20210526','Lead in Blood (Tests for Lead in Unspecified Specimen)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1483_20220118','2.16.840.1.113762.1.4.1146.1483','20220118','Norovirus (Tests for Norovirus Antigen by EIA)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1361_20210526','2.16.840.1.113762.1.4.1146.1361','20210526','Hepatitis E (Tests for hepatitis E virus Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1482_20220118','2.16.840.1.113762.1.4.1146.1482','20220118','Norovirus (Tests for Norovirus Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2211_20240123','2.16.840.1.113762.1.4.1146.2211','20240123','Ehrlichiosis (Tests for Ehrlichia species IgG Antibody)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1000_20220601','2.16.840.1.113762.1.4.1146.1000','20220601','Gonorrhea (Tests for Neisseria species by Culture and Identification Method)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1484_20220118','2.16.840.1.113762.1.4.1146.1484','20220118','Norovirus (Tests for Norovirus Antigen in Stool by EIA)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1018_20190606','2.16.840.1.113762.1.4.1146.1018','20190606','S. Typhi Infection (Tests for S. Typhi Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1139_20200515','2.16.840.1.113762.1.4.1146.1139','20200515','VISA/VRSA (Tests for Vancomycin Resistance Gene)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2229_20240123','2.16.840.1.113762.1.4.1146.2229','20240123','Congenital Cytomegalovirus (Tests for CMV by Culture and Identification Method)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1017_20240619','2.16.840.1.113762.1.4.1146.1017','20240619','S. Typhi Infection (Tests for S. Typhi by Culture and Identification Method)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1138_20240123','2.16.840.1.113762.1.4.1146.1138','20240123','Staphylococcus Aureus (Testsby Culture and Identification Method)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2109_20230125','2.16.840.1.113762.1.4.1146.2109','20230125','Methemoglobinemia (Tests for Methemoglobin in Blood [Quantitative])','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2227_20240123','2.16.840.1.113762.1.4.1146.2227','20240123','Congenital Cytomegalovirus (Tests for CMV Antigen in Whole Blood)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1019_20210527','2.16.840.1.113762.1.4.1146.1019','20210527','S. Typhi Infection (Tests for S. Typhi Antibody)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2228_20240123','2.16.840.1.113762.1.4.1146.2228','20240123','Congenital Cytomegalovirus (Tests for CMV Antigen)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1250_20240123','2.16.840.1.113762.1.4.1146.1250','20240123','Non pestis Yersiniosis Infection (Tests for Yersinia non pestis species Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1492_20220118','2.16.840.1.113762.1.4.1146.1492','20220118','C. diff infection (Tests for C diff Toxin Nucleic Acid in Stool)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1491_20240123','2.16.840.1.113762.1.4.1146.1491','20240123','C. diff infection (Tests for C diff Toxin Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1377_20210526','2.16.840.1.113762.1.4.1146.1377','20210526','Japanese Encephalitis Virus Disease (Tests for Japanese Encephalitis Virus Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1498_20220118','2.16.840.1.113762.1.4.1146.1498','20220118','C. diff infection (Tests for C diff Toxin in Stool by Cell Culture Cytotoxicity Neutralization Method)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2225_20240123','2.16.840.1.113762.1.4.1146.2225','20240123','Congenital Cytomegalovirus (Tests for CMV in Amniotic Fluid by Culture and Identification Method)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2346_20240620','2.16.840.1.113762.1.4.1146.2346','20240620','Lead in Blood (Tests for Lead in Capillary Blood)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1376_20220601','2.16.840.1.113762.1.4.1146.1376','20220601','Japanese Encephalitis Virus Disease (Tests for Japanese Encephalitis Virus IgM Antibody)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2226_20240123','2.16.840.1.113762.1.4.1146.2226','20240123','Congenital Cytomegalovirus (Tests for CMV Nucleic Acid in Amniotic Fluid by NAAT)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2223_20240123','2.16.840.1.113762.1.4.1146.2223','20240123','Congenital Cytomegalovirus (Tests for CMV Antigen by Immunohistochemical Stain)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1378_20240619','2.16.840.1.113762.1.4.1146.1378','20240619','Tests for Mycobacterium species Nucleic Acid in Unspecified XXX Specimen','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1499_20220118','2.16.840.1.113762.1.4.1146.1499','20220118','C. diff infection (Tests for C diff antigen [glutamate dehydrogenase] in Stool)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2224_20240123','2.16.840.1.113762.1.4.1146.2224','20240123','Congenital Cytomegalovirus (Tests for CMV Antigen in Tissue by Immunohistochemical Stain)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2345_20240620','2.16.840.1.113762.1.4.1146.2345','20240620','Lead in Blood (Tests for Lead in Venous Blood)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1131_20200515','2.16.840.1.113762.1.4.1146.1131','20200515','Lyme Disease (Tests for Borreliaafzelii/gariniiIgG Antibody byImmunoassay','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1252_20230122','2.16.840.1.113762.1.4.1146.1252','20230122','Blastomycosis (Tests for Blastomyces species Antibody)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1373_20220601','2.16.840.1.113762.1.4.1146.1373','20220601','Japanese Encephalitis Virus Disease (Tests for Japanese Encephalitis Virus Antibody [Qualitative])','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1494_20220118','2.16.840.1.113762.1.4.1146.1494','20220118','C. diff infection (Tests for C diff Toxin in Stool by EIA)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1130_20240123','2.16.840.1.113762.1.4.1146.1130','20240123','Tickborne Relapsing Fever (Tests for Borrelia hermsii/miyamotoi/parkerii/turicatae Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1251_20240123','2.16.840.1.113762.1.4.1146.1251','20240123','Blastomycosis (Tests for Blastomyces species Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1493_20220118','2.16.840.1.113762.1.4.1146.1493','20220118','C. diff infection (Tests for C diff Toxin by EIA)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2343_20240620','2.16.840.1.113762.1.4.1146.2343','20240620','Giardiasis (Tests by Microscopic Observation)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1375_20210526','2.16.840.1.113762.1.4.1146.1375','20210526','Japanese Encephalitis Virus Disease (Tests for Japanese Encephalitis Virus Antigen)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1496_20220118','2.16.840.1.113762.1.4.1146.1496','20220118','C. diff infection (Tests for C diff in Stool by Culture and Identification Method)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1132_20200515','2.16.840.1.113762.1.4.1146.1132','20200515','Yellow Fever (Tests for yellow fever virus Neutralizing Antibody [Quantitative])','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1253_20230122','2.16.840.1.113762.1.4.1146.1253','20230122','Blastomycosis (Tests for Blastomyces species Antigen)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1374_20210526','2.16.840.1.113762.1.4.1146.1374','20210526','Japanese Encephalitis Virus Disease (Tests for Japanese Encephalitis Virus Antibody [Quantitative])','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1495_20220118','2.16.840.1.113762.1.4.1146.1495','20220118','C. diff infection (Tests for C diff by Culture and Identification Method)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1028_20191227','2.16.840.1.113762.1.4.1146.1028','20191227','Listeriosis (Tests for Listeria species in Specimen from Normally Sterile Site by Culture and Identification Method)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2238_20240619','2.16.840.1.113762.1.4.1146.2238','20240619','Toxoplasmosis (Tests for Toxoplasma gondii IgG IgM IgA or IgE Antibody in Blood)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2239_20240619','2.16.840.1.113762.1.4.1146.2239','20240619','Toxoplasmosis (Tests for Toxoplasma gondii IgG or IgM Antibody)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.282_20191227','2.16.840.1.113762.1.4.1146.282','20191227','Varicella (Tests for Varicella zoster virus by Culture and Identification Method)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.283_20240123','2.16.840.1.113762.1.4.1146.283','20240123','Varicella (Tests for Varicella zoster virus Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.284_20191227','2.16.840.1.113762.1.4.1146.284','20191227','Varicella (Tests for Varicella zoster virus Antigen)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.286_20220119','2.16.840.1.113762.1.4.1146.286','20220119','Varicella (Tests for Varicella zoster virus IgM Antibody)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2236_20240123','2.16.840.1.113762.1.4.1146.2236','20240123','Toxoplasmosis (Tests for Toxoplasma gondii Antigen in Tissue by Immunohistochemical Stain)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2237_20240619','2.16.840.1.113762.1.4.1146.2237','20240619','Toxoplasmosis (Tests for Toxoplasma gondii IgG IgM IgA or IgE Antibody)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2235_20240123','2.16.840.1.113762.1.4.1146.2235','20240123','Toxoplasmosis (Tests for Toxoplasma gondii Antigen by Immunohistochemical Stain)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1142_20240123','2.16.840.1.113762.1.4.1146.1142','20240123','COVID_19 (Tests for SARS_CoV_2 Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1263_20210121','2.16.840.1.113762.1.4.1146.1263','20210121','Acanthamoeba Disease [Excluding Keratitis] (Tests for Acanthamoeba species Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2353_20240620','2.16.840.1.113762.1.4.1146.2353','20240620','Acid Fast Bacilli (Tests by Microscopic Observation in Skin or Unspecified Tissue by Fite Stain)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1020_20190606','2.16.840.1.113762.1.4.1146.1020','20190606','S. Paratyphi Infection (Tests for S. Paratyphi Antibody)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1262_20210121','2.16.840.1.113762.1.4.1146.1262','20210121','Acanthamoeba Disease [Excluding Keratitis] (Tests for Acanthamoeba species by Culture and Identification Method)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1383_20210526','2.16.840.1.113762.1.4.1146.1383','20210526','Invasive Haemophilus influenzae Disease (Tests for Haemophilus influenzae Type B Antigen)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2230_20240123','2.16.840.1.113762.1.4.1146.2230','20240123','Congenital Cytomegalovirus (Tests for CMV Nucleic Acid by NAAT)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2352_20240620','2.16.840.1.113762.1.4.1146.2352','20240620','Acid Fast Bacilli (Tests by Microscopic Observation by Fite Stain)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2009_20230126','2.16.840.1.113762.1.4.1146.2009','20230126','Angiostrongyliasis (Tests for Angiostrongylus Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2128_20240123','2.16.840.1.113762.1.4.1146.2128','20240123','Down Syndrome (Tests for Trisomy 21 Chromosomal Anomaly)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2249_20240123','2.16.840.1.113762.1.4.1146.2249','20240123','Baylisascariasis (Tests for Baylisascaris species Antibody in Serum or CSF)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2360_20240619','2.16.840.1.113762.1.4.1146.2360','20240619','S. Paratyphi Infection (Tests for S. Paratyphi by Culture and Identification Method)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.391_20181031','2.16.840.1.113762.1.4.1146.391','20181031','Trichinella species (Tests by Microscopic Observation)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2240_20240123','2.16.840.1.113762.1.4.1146.2240','20240123','Toxoplasmosis (Tests for Toxoplasma gondii IgG or IgM Antibody in Cerebrospinal Fluid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2361_20240619','2.16.840.1.113762.1.4.1146.2361','20240619','S. Paratyphi Infection (Tests for S. Paratyphi Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.276_20181031','2.16.840.1.113762.1.4.1146.276','20181031','Invasive Haemophilus influenzae Disease (Tests for Haemophilus influenzae by Culture and Identification Method)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.277_20220601','2.16.840.1.113762.1.4.1146.277','20220601','Invasive Haemophilus influenzae Disease (Tests for Haemophilus influenzae Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.398_20191227','2.16.840.1.113762.1.4.1146.398','20191227','Hepatitis C Virus Infection (Tests for hepatitis C virus Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1157_20220113','2.16.840.1.113762.1.4.1146.1157','20220113','COVID_19 (Tests for SARS_CoV_2 Antibody)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1278_20210121','2.16.840.1.113762.1.4.1146.1278','20210121','Histoplasmosis (Tests for Histoplasma capsulatum by Culture and Identification Method)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1399_20210526','2.16.840.1.113762.1.4.1146.1399','20210526','Colorado tick fever (Tests for Colorado Tick Fever Virus Antibody [Quantitative])','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2005_20230125','2.16.840.1.113762.1.4.1146.2005','20230125','Lymphocytic Choriomeningitis (Tests for LCMV Antibody in CSF or Serum)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.278_20181031','2.16.840.1.113762.1.4.1146.278','20181031','Invasive Haemophilus influenzae Disease (Tests for Haemophilus influenzae Type B Antigen in Cerebrospinal Fluid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.399_20190608','2.16.840.1.113762.1.4.1146.399','20190608','Hepatitis C Virus Infection (Tests for hepatitis C virus Antigen)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1277_20220119','2.16.840.1.113762.1.4.1146.1277','20220119','Histoplasmosis (Tests for Histoplasma capsulatum Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2248_20240123','2.16.840.1.113762.1.4.1146.2248','20240123','Plasmodium species (Tests by Microscopic Observation)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2003_20230125','2.16.840.1.113762.1.4.1146.2003','20230125','Lymphocytic Choriomeningitis (Tests for LCMV Nucleic Acid in CSF or Blood)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1158_20240123','2.16.840.1.113762.1.4.1146.1158','20240123','COVID_19 (Tests for SARS_CoV_2 Antigen)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1279_20220119','2.16.840.1.113762.1.4.1146.1279','20220119','Histoplasmosis (Tests for Histoplasma capsulatum Antigen)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2004_20230125','2.16.840.1.113762.1.4.1146.2004','20230125','Lymphocytic Choriomeningitis (Tests for LCMV Antibody)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2243_20240123','2.16.840.1.113762.1.4.1146.2243','20240123','Zika Virus Disease (Tests for Zika virus IgM Antibody in Blood or CSF)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1273_20210121','2.16.840.1.113762.1.4.1146.1273','20210121','Balamuthia mandrillaris Disease (Tests for Balamuthia mandrillaris Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2002_20230125','2.16.840.1.113762.1.4.1146.2002','20230125','Lymphocytic Choriomeningitis (Tests for LCMV Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2139_20240123','2.16.840.1.113762.1.4.1146.2139','20240123','Prion Disease (Tests for Abnormal PRNP Gene Variant)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.390_20181031','2.16.840.1.113762.1.4.1146.390','20181031','Trichinellosis (Tests for Trichinella species Antibody)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1281_20230125','2.16.840.1.113762.1.4.1146.1281','20230125','Histoplasmosis (Tests for Histoplasma capsulatum H band or M band Antibody)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.380_20191227','2.16.840.1.113762.1.4.1146.380','20191227','Giardiasis (Tests for Giardia species Antigen)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1280_20220120','2.16.840.1.113762.1.4.1146.1280','20220120','Histoplasmosis (Tests for Histoplasma capsulatum Antibody [Titer] by complement fixation method)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.384_20240123','2.16.840.1.113762.1.4.1146.384','20240123','Listeriosis (Tests for Listeria monocytogenes Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.385_20191227','2.16.840.1.113762.1.4.1146.385','20191227','Listeriosis (Tests for Listeria species by Culture and Identification Method)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.387_20180619','2.16.840.1.113762.1.4.1146.387','20180619','Vibriosis (Tests for Vibrionaceae species [except Toxigenic Vibrio cholera O1 and O139] by Culture and Identification Method)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1168_20200516','2.16.840.1.113762.1.4.1146.1168','20200516','Eastern Equine Encephalitis Virus Disease (Tests for Eastern Equine Encephalitis virus Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.267_20181031','2.16.840.1.113762.1.4.1146.267','20181031','Mumps (Tests for mumps virus Antigen)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.388_20220119','2.16.840.1.113762.1.4.1146.388','20220119','Vibriosis (Tests for Vibrionaceae species [except Toxigenic Vibrio cholera O1 and O139] Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1169_20230602','2.16.840.1.113762.1.4.1146.1169','20230602','Chikungunya Virus Disease (Tests for Chikungunya virus Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2254_20240123','2.16.840.1.113762.1.4.1146.2254','20240123','Nontuberculous Mycobacteria Infection, Pulmonary (Tests for Mycobacterium species in Lower Respiratory Specimen [Excluding Sputum] by Culture and Identification Method)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1045_20230125','2.16.840.1.113762.1.4.1146.1045','20230125','Candida auris Infection (Tests for Candida auris Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1044_20230125','2.16.840.1.113762.1.4.1146.1044','20230125','Candida auris Infection (Tests for Candida auris by Culture and Identification Method)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1171_20200515','2.16.840.1.113762.1.4.1146.1171','20200515','Western Equine Encephalitis Virus Disease (Tests for Western Equine Encephalitis Virus Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1170_20200515','2.16.840.1.113762.1.4.1146.1170','20200515','Powassan Virus Disease (Tests for Powassan Virus Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.491_20181031','2.16.840.1.113762.1.4.1146.491','20181031','Ehrlichiosis (Tests for Ehrlichia species IgG Antibody [Quantitative] by IFA)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1173_20200516','2.16.840.1.113762.1.4.1146.1173','20200516','Eastern Equine Encephalitis Virus Disease (Tests for Eastern Equine Encephalitis Virus Antigen)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1172_20220601','2.16.840.1.113762.1.4.1146.1172','20220601','California Serogroup Virus Diseases (Tests for California Serogroup Virus Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.372_20230602','2.16.840.1.113762.1.4.1146.372','20230602','Cryptosporidiosis (Tests for Cryptosporidium species Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.493_20181031','2.16.840.1.113762.1.4.1146.493','20181031','Ehrlichia species (Tests by Microscopic Observation)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.373_20191227','2.16.840.1.113762.1.4.1146.373','20191227','Cryptosporidiosis (Tests for Cryptosporidium species Antigen)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.374_20181031','2.16.840.1.113762.1.4.1146.374','20181031','Cryptosporidium species (Tests by Microscopic Observation)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.496_20240619','2.16.840.1.113762.1.4.1146.496','20240619','Q Fever (Tests for Coxiella burnetii IgM IgG Antibody [Excluding Quantitative IFA Tests for IgG Antibody against Phase I or II Antigen])','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.376_20220120','2.16.840.1.113762.1.4.1146.376','20220120','Cyclosporiasis (Tests for Cyclospora cayetanensis Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.497_20181031','2.16.840.1.113762.1.4.1146.497','20181031','Q Fever (Tests for Coxiella burnetii Phase I Antigen IgG Antibody [Quantitative] by IFA)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1179_20210526','2.16.840.1.113762.1.4.1146.1179','20210526','California Serogroup Virus Diseases (Tests for California Serogroup Virus IgM Antibody)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.498_20181031','2.16.840.1.113762.1.4.1146.498','20181031','Q Fever (Tests for Coxiella burnetii Phase II Antigen IgG Antibody [Quantitative] by IFA)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1178_20210527','2.16.840.1.113762.1.4.1146.1178','20210527','Western Equine Encephalitis Virus Disease (Tests for Western Equine Encephalitis Virus IgM Antibody)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.379_20230125','2.16.840.1.113762.1.4.1146.379','20230125','Giardiasis (Tests for Giardia species Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1175_20220601','2.16.840.1.113762.1.4.1146.1175','20220601','Chikungunya Virus Disease (Tests for Chikungunya Virus IgM Antibody)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1174_20200515','2.16.840.1.113762.1.4.1146.1174','20200515','Western Equine Encephalitis Virus Disease (Tests for Western Equine Encephalitis Virus Antigen)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1177_20200515','2.16.840.1.113762.1.4.1146.1177','20200515','Powassan Virus Disease (Tests for Powassan Virus IgM Antibody)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1055_20190606','2.16.840.1.113762.1.4.1146.1055','20190606','Trichinellosis (Tests for Trichinella species Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1176_20210526','2.16.840.1.113762.1.4.1146.1176','20210526','Eastern Equine Encephalitis Virus Disease (Tests for Eastern Equine Encephalitis Virus IgM Antibody)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1747_20220602','2.16.840.1.113762.1.4.1146.1747','20220602','Rotavirus Disease (Tests for Rotavirus Antigen)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1868_20220603','2.16.840.1.113762.1.4.1146.1868','20220603','Taeniasis (Tests for Taenia species Antibody)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1867_20220603','2.16.840.1.113762.1.4.1146.1867','20220603','Taeniasis (Tests for Taenia species Antigen)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1746_20230602','2.16.840.1.113762.1.4.1146.1746','20230602','Rotavirus Disease (Tests for Rotavirus Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1985_20230125','2.16.840.1.113762.1.4.1146.1985','20230125','California Serogroup Virus Disease [Unspecified] (Tests for California Serogroup Virus Antibody)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1509_20240123','2.16.840.1.113762.1.4.1146.1509','20240123','Arsenic Exposure and Toxicity (Tests for Arsenic [Quantitative] in Unspecified Specimen)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1983_20230125','2.16.840.1.113762.1.4.1146.1983','20230125','California Serogroup Virus Disease [Unspecified] (Tests for California Serogroup Virus Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1984_20230125','2.16.840.1.113762.1.4.1146.1984','20230125','California Serogroup Virus Disease [Unspecified] (Tests for California Serogroup Virus IgM Antibody)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1860_20220603','2.16.840.1.113762.1.4.1146.1860','20220603','Lymphatic Filariasis (Tests for Filarial species Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1639_20220115','2.16.840.1.113762.1.4.1146.1639','20220115','Typhus Fever (Tests for Rickettsia Typhus Group Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1877_20220603','2.16.840.1.113762.1.4.1146.1877','20220603','Cysticercosis (Tests for Taenia solium Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1757_20220602','2.16.840.1.113762.1.4.1146.1757','20220602','Chagas Disease (Tests for Trypanosoma cruzi IgM Antibody)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1875_20230602','2.16.840.1.113762.1.4.1146.1875','20230602','Cysticercosis (Tests for Taenia solium Antibody)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1756_20220601','2.16.840.1.113762.1.4.1146.1756','20220601','Chagas Disease (Tests for Trypanosoma cruzi IgG Antibody)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1876_20220603','2.16.840.1.113762.1.4.1146.1876','20220603','Cysticercosis (Tests for Taenia solium Antigen)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1511_20220118','2.16.840.1.113762.1.4.1146.1511','20220118','Arsenic Exposure and Toxicity (Tests for Arsenic [Quantitative] in Blood)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1753_20240619','2.16.840.1.113762.1.4.1146.1753','20240619','Staphylococcal Enterotoxin B Poisoning (Tests for Staph aureus Enterotoxin B Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1510_20220118','2.16.840.1.113762.1.4.1146.1510','20220118','Arsenic Exposure and Toxicity (Tests for Arsenic [Quantitative] in Urine)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1752_20220602','2.16.840.1.113762.1.4.1146.1752','20220602','Staphylococcal Enterotoxin B Poisoning (Tests for Staph aureus Enterotoxin B)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1528_20220118','2.16.840.1.113762.1.4.1146.1528','20220118','Mercury Exposure and Toxicity (Tests for Mercury [Quantitative] in Unspecified Specimen)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1649_20220119','2.16.840.1.113762.1.4.1146.1649','20220119','Glanders (Tests for Burkholderia mallei Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1527_20220118','2.16.840.1.113762.1.4.1146.1527','20220118','Mercury Exposure and Toxicity (Tests for Mercury [Quantitative] in Urine)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1648_20220119','2.16.840.1.113762.1.4.1146.1648','20220119','Glanders (Tests for Burkholderia mallei by Culture and Identification Method)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1409_20240123','2.16.840.1.113762.1.4.1146.1409','20240123','COVID_19 (Tests for SARS_CoV_2 Genomic Sequence)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1408_20220601','2.16.840.1.113762.1.4.1146.1408','20220601','Rabies (Tests for rabies virus Antibody)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1524_20220118','2.16.840.1.113762.1.4.1146.1524','20220118','Cryptococcosis (Tests for Cryptococcus species Antigen)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1523_20240123','2.16.840.1.113762.1.4.1146.1523','20240123','Cryptococcosis (Tests for Cryptococcus species Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1889_20220603','2.16.840.1.113762.1.4.1146.1889','20220603','Anaplasmosis (Tests for Anaplasma species IgG Antibody)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1526_20220118','2.16.840.1.113762.1.4.1146.1526','20220118','Mercury Exposure and Toxicity (Tests for Mercury [Quantitative] in Blood)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1647_20220119','2.16.840.1.113762.1.4.1146.1647','20220119','Glanders (Tests for Burkholderia mallei Antibody)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1887_20220603','2.16.840.1.113762.1.4.1146.1887','20220603','Neonatal herpes (Tests for Herpes simplex virus Nucleic Acid in CSF)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1520_20220118','2.16.840.1.113762.1.4.1146.1520','20220118','Cryptococcosis (Tests for Cryptococcus species by Culture and Identification Method)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1641_20240123','2.16.840.1.113762.1.4.1146.1641','20240123','Typhus Fever (Tests for Rickettsia Typhus Group IgG Antibody)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1401_20210526','2.16.840.1.113762.1.4.1146.1401','20210526','Colorado tick fever (Tests for Colorado Tick Fever Virus IgM Antibody)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1522_20220118','2.16.840.1.113762.1.4.1146.1522','20220118','Cryptococcosis (Tests for Cryptococcus gatii by Culture and Identification Method)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1643_20240123','2.16.840.1.113762.1.4.1146.1643','20240123','Typhus Fever (Tests for Rickettsia Typhus Fever Group IgG Antibody [Quantitative] by Immunofluorescence)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1400_20240620','2.16.840.1.113762.1.4.1146.1400','20240620','Colorado tick fever (Tests for Colorado Tick Fever Virus Antibody [Qualitative])','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1521_20220118','2.16.840.1.113762.1.4.1146.1521','20220118','Cryptococcosis (Tests for Cryptococcus neoformans by Culture and Identification Method)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1642_20240123','2.16.840.1.113762.1.4.1146.1642','20240123','Typhus Fever (Tests for Rickettsia Typhus Group IgM Antibody)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1880_20230122','2.16.840.1.113762.1.4.1146.1880','20230122','Tests for Enterobacter spp., E. coli, or Klebsiella spp. Nucleic Acid','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1881_20240123','2.16.840.1.113762.1.4.1146.1881','20240123','Tests for Enterobacteriaceae species Nucleic Acid','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1417_20220118','2.16.840.1.113762.1.4.1146.1417','20220118','Acanthamoeba Disease [Excluding Keratitis] (Tests for Acanthamoeba species Antigen)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1897_20230602','2.16.840.1.113762.1.4.1146.1897','20230602','Toxoplasmosis (Tests by Microscopic Observation)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1898_20240619','2.16.840.1.113762.1.4.1146.1898','20240619','Toxoplasmosis (Tests for Toxoplasma gondii Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1896_20220603','2.16.840.1.113762.1.4.1146.1896','20220603','Toxoplasmosis (Tests for Toxoplasma gondii by Culture and Identification Method)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1654_20230122','2.16.840.1.113762.1.4.1146.1654','20230122','Chagas Disease (Tests for Trypanosoma cruzi Antibody)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1653_20220115','2.16.840.1.113762.1.4.1146.1653','20220115','Chagas Disease (Tests for Trypanosoma cruzi Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1650_20220119','2.16.840.1.113762.1.4.1146.1650','20220119','Glanders (Tests for Burkholderia mallei Antigen)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1304_20240619','2.16.840.1.113762.1.4.1146.1304','20240619','Mycobacteria_Infection_NonTB_ExPulm (Tests for Mycobacterium species in Extrapulmonary Specimen by Culture and Identification Method)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1788_20240123','2.16.840.1.113762.1.4.1146.1788','20240123','Typhus Fever (Tests for Rickettsia Typhus Fever Group IgM Antibody [Quantitative] by Immunofluorescence)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1548_20220118','2.16.840.1.113762.1.4.1146.1548','20220118','Drugs [Non opioid] (Tests by Screen or Unspecified Method in Urine)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1305_20210526','2.16.840.1.113762.1.4.1146.1305','20210526','Mycobacteria_Infection_NonTB_ExPulm (Tests for Mycobacterium species Nucleic Acid in Extrapulmonary Specimen)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1547_20220118','2.16.840.1.113762.1.4.1146.1547','20220118','Drugs [Non opioid] (Tests by Screen or Unspecified Method in Blood)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1300_20210120','2.16.840.1.113762.1.4.1146.1300','20210120','Melioidosis (Tests for Burkholderia pseudomallei Antibody [Titer] in Serum)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1421_20220118','2.16.840.1.113762.1.4.1146.1421','20220118','Balamuthia mandrillaris disease (Tests for Balamuthia mandrillaris Antigen)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1420_20230122','2.16.840.1.113762.1.4.1146.1420','20230122','Alpha gal syndrome (Tests for Alpha gal IgE Antibody [Quantitative])','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1780_20220603','2.16.840.1.113762.1.4.1146.1780','20220603','Herpes (Tests for Herpes simplex virus by Culture and Identification Method)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1782_20220602','2.16.840.1.113762.1.4.1146.1782','20220602','Genital herpes (Tests for Herpes simplex virus type 2 Antibody)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1781_20240620','2.16.840.1.113762.1.4.1146.1781','20240620','Herpes (Tests for Herpes simplex virus Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1678_20230602','2.16.840.1.113762.1.4.1146.1678','20230602','Tests for Pseudomonas aeruginosa Nucleic Acid','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1677_20230602','2.16.840.1.113762.1.4.1146.1677','20230602','Tests for Pseudomonas aeruginosa by Culture and Identification Method','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1311_20210120','2.16.840.1.113762.1.4.1146.1311','20210120','RSV (Tests for RSV Antigen)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1313_20210120','2.16.840.1.113762.1.4.1146.1313','20210120','RSV (Tests for RSV by Culture and Identification Method)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1676_20230602','2.16.840.1.113762.1.4.1146.1676','20230602','Tests for Acinetobacter baumannii Nucleic Acid','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1312_20230929','2.16.840.1.113762.1.4.1146.1312','20230929','RSV (Tests for RSV Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1675_20220602','2.16.840.1.113762.1.4.1146.1675','20220602','Tests for Acinetobacter baumannii by Culture and Identification Method','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1793_20220602','2.16.840.1.113762.1.4.1146.1793','20220602','Granuloma Inguinale [Klebsiella granulomatis (Donovan Bodies)] (Tests by Microscopic Observation in Clinical Specimen)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1568_20220118','2.16.840.1.113762.1.4.1146.1568','20220118','Bacteria [Causing Meningitis] (Tests in Cerebrospinal Fluid by Culture and Identification Method)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1567_20240123','2.16.840.1.113762.1.4.1146.1567','20240123','Bacteria [Causing Meningitis] (Tests by Culture and Identification Method)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1566_20240123','2.16.840.1.113762.1.4.1146.1566','20240123','Viruses [Causing Meningitis] (Tests for Nucleic Acid in Cerebrospinal Fluid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1565_20240123','2.16.840.1.113762.1.4.1146.1565','20240123','Viruses [Causing Meningitis] (Tests for Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1686_20220602','2.16.840.1.113762.1.4.1146.1686','20220602','Hepatitis G (Tests for hepatitis G virus Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1219_20230122','2.16.840.1.113762.1.4.1146.1219','20230122','Tests for Enterobacter spp., E. coli, or Klebsiella spp. by Culture and Identification Method','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1216_20240123','2.16.840.1.113762.1.4.1146.1216','20240123','Tests for carbapenemase resistance mechanism','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1215_20200515','2.16.840.1.113762.1.4.1146.1215','20200515','Tests for carbapenemase production','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1578_20220118','2.16.840.1.113762.1.4.1146.1578','20220118','Group B Streptococcus (Tests for Group B Strep by Culture and Identification Method)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1454_20240123','2.16.840.1.113762.1.4.1146.1454','20240123','Staphylococcus aureus (Tests for Staph aureus Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2302_20240620','2.16.840.1.113762.1.4.1146.2302','20240620','Babesia species (Tests by Microscopic Observation by Giemsa, Wright, or Wright_Giemsa Stain)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1453_20230122','2.16.840.1.113762.1.4.1146.1453','20230122','MRSA (Tests for Methicillin Resistance Gene)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1577_20220118','2.16.840.1.113762.1.4.1146.1577','20220118','Group A Streptococcus (Tests for Group A Strep by Culture and Identification Method)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2300_20240620','2.16.840.1.113762.1.4.1146.2300','20240620','Babesia species (Tests by Microscopic Observation)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1455_20220118','2.16.840.1.113762.1.4.1146.1455','20220118','Staphylococcus aureus (Tests for Staph aureus Nucleic Acid in Specimen from Normally Sterile Site)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2301_20240620','2.16.840.1.113762.1.4.1146.2301','20240620','Babesia species (Tests by Microscopic Observation in Blood by Giemsa, Wright, or Wright_Giemsa Stain)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1452_20220118','2.16.840.1.113762.1.4.1146.1452','20220118','MRSA (Tests by Culture and Identification Method)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.407_20230602','2.16.840.1.113762.1.4.1146.407','20230602','Hepatitis C Virus Infection (Tests for hepatitis C virus Antibody)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.529_20181031','2.16.840.1.113762.1.4.1146.529','20181031','Lyme Disease (Tests for Borrelia burgdorferi/mayonii by Culture and Identification Method)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1901_20240619','2.16.840.1.113762.1.4.1146.1901','20240619','Toxoplasmosis (Tests for Toxoplasma gondii Antibody)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1907_20220603','2.16.840.1.113762.1.4.1146.1907','20220603','Orthopox (Tests for Orthopox Virus by Electron Microscopic Observation)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.400_20181031','2.16.840.1.113762.1.4.1146.400','20181031','Hepatitis B Virus Infection (Tests for hepatitis B virus IgM Antibody)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.401_20230122','2.16.840.1.113762.1.4.1146.401','20230122','Hepatitis B Virus Infection (Tests for hepatitis B virus surface Antigen)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.402_20181031','2.16.840.1.113762.1.4.1146.402','20181031','Hepatitis B Virus Infection (Tests for hepatitis B virus e Antigen)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.403_20240620','2.16.840.1.113762.1.4.1146.403','20240620','Hepatitis B Virus Infection (Tests for hepatitis B virus Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.887_20181031','2.16.840.1.113762.1.4.1146.887','20181031','SARS (Tests for SARS_CoV by Unspecified Method)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.526_20200513','2.16.840.1.113762.1.4.1146.526','20200513','Arboviral Disease (Tests for Arbovirus/Flavivirus by Culture and Identification Method)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.769_20181031','2.16.840.1.113762.1.4.1146.769','20181031','Invasive Pneumococcal Disease (Tests for Streptococcus pneumoniae Antigen in Specimen from Normally Sterile Site)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1918_20220603','2.16.840.1.113762.1.4.1146.1918','20220603','Vesicular stomatitis (Tests for Vesicular stomatitis virus Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1919_20240123','2.16.840.1.113762.1.4.1146.1919','20240123','Fungi [Causing Meningitis] (Tests by Culture and Identification Method)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1916_20220603','2.16.840.1.113762.1.4.1146.1916','20220603','Vesicular stomatitis (Tests for Vesicular stomatitis virus Antigen)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1917_20220603','2.16.840.1.113762.1.4.1146.1917','20220603','Vesicular stomatitis (Tests for Vesicular stomatitis virus Antibody)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.873_20220119','2.16.840.1.113762.1.4.1146.873','20220119','Tickborne Relapsing Fever (Tests for Borrelia hermsii/miyamotoi/parkerii/turicatae Antibody by Immunoassay)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.998_20181031','2.16.840.1.113762.1.4.1146.998','20181031','Shigellosis (Tests for Enteroinvasive E. coli Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.878_20230122','2.16.840.1.113762.1.4.1146.878','20230122','MERS (Tests for MERS_CoV Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1802_20220601','2.16.840.1.113762.1.4.1146.1802','20220601','Nontuberculous Mycobacteria Infection, Pulmonary (Tests for Mycobacterium species in Sputum Specimen by Culture and Identification Method)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1801_20220601','2.16.840.1.113762.1.4.1146.1801','20220601','Nontuberculous Mycobacteria Infection, Pulmonary (Tests for Mycobacterium species by Culture and Identification Method)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1922_20221022','2.16.840.1.113762.1.4.1146.1922','20221022','Orthopox (Tests for orthopoxvirus IgM Antibody)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.742_20191227','2.16.840.1.113762.1.4.1146.742','20191227','Listeriosis (Tests for Listeria monocytogenes by Culture and Identification Method)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.743_20191227','2.16.840.1.113762.1.4.1146.743','20191227','Listeriosis (Tests for Listeria monocytogenes in Specimen from Normally Sterile Site by Culture and Identification Method)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.744_20240123','2.16.840.1.113762.1.4.1146.744','20240123','Coccidioidomycosis (Tests for Coccidioides species IgG Antibody)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.745_20181031','2.16.840.1.113762.1.4.1146.745','20181031','Coccidioidomycosis (Tests for Coccidioides species by Culture and Identification Method)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.746_20220118','2.16.840.1.113762.1.4.1146.746','20220118','Treponema pallidum (Tests by Microscopic Observation)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.989_20240619','2.16.840.1.113762.1.4.1146.989','20240619','Tests for Mycobacterium species by Cultureand Identification Method','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1815_20220601','2.16.840.1.113762.1.4.1146.1815','20220601','Scabies [Sarcoptes scabiei] (Tests byMicroscopic Observation)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.858_20181031','2.16.840.1.113762.1.4.1146.858','20181031','Carbon Monoxide Poisoning (Tests for Carboxyhemoglobin by Pulse CO Oximetry)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1937_20230124','2.16.840.1.113762.1.4.1146.1937','20230124','Strongyloidiasis (Tests for Strongyloides Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1811_20220601','2.16.840.1.113762.1.4.1146.1811','20220601','Colorado Tick Fever (Tests for Colorado Tick Fever Virus Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1819_20240619','2.16.840.1.113762.1.4.1146.1819','20240619','Louseborne relapsing fever (Tests for Borrelia species)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1938_20230124','2.16.840.1.113762.1.4.1146.1938','20230124','Strongyloidiasis (Tests for Strongyloides stercoralis IgG Antibody)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1939_20230124','2.16.840.1.113762.1.4.1146.1939','20230124','Strongyloidiasis (Tests for Strongyloides stercoralis IgG Antibody in Blood)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.730_20230602','2.16.840.1.113762.1.4.1146.730','20230602','HIV Infection (Tests for HIV Antibody)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.731_20181031','2.16.840.1.113762.1.4.1146.731','20181031','HIV Infection (Combination Tests for HIV Antigen and Antibody)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.854_20220118','2.16.840.1.113762.1.4.1146.854','20220118','Lyme Disease (Tests for Borrelia burgdorferi/mayonii Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.855_20220118','2.16.840.1.113762.1.4.1146.855','20220118','Lyme Disease (Tests for Borrelia afzelii/garinii Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.856_20200515','2.16.840.1.113762.1.4.1146.856','20200515','Lyme Disease (Tests for Borrelia afzelii/garinii IgM IgG Antibody by Line Blot)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.857_20181031','2.16.840.1.113762.1.4.1146.857','20181031','Lyme Disease (Tests for Borrelia afzelii/garinii IgM IgG Antibody by Immunoblot)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.726_20200515','2.16.840.1.113762.1.4.1146.726','20200515','HIV Infection (Tests for HIV by Culture and Identification Method)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.848_20181031','2.16.840.1.113762.1.4.1146.848','20181031','SARS (Tests for SARS_CoV Antibody)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1945_20230125','2.16.840.1.113762.1.4.1146.1945','20230125','Jamestown Canyon Virus Diseases (Tests for Jamestown Canyon Virus IgM Antibody)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.728_20230602','2.16.840.1.113762.1.4.1146.728','20230602','HIV Infection (Tests for HIV Nucleic Acid [Qualitative])','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1946_20230125','2.16.840.1.113762.1.4.1146.1946','20230125','Jamestown Canyon Virus Diseases (Tests for Jamestown Canyon Virus Antibody)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.729_20210527','2.16.840.1.113762.1.4.1146.729','20210527','HIV Infection (Tests for HIV Nucleic Acid [Viral Load])','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1944_20230125','2.16.840.1.113762.1.4.1146.1944','20230125','Jamestown Canyon Virus Diseases (Tests for Jamestown Canyon Virus Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1820_20240619','2.16.840.1.113762.1.4.1146.1820','20240619','Louseborne relapsing fever (Tests for Borrelia species in Blood)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.841_20240123','2.16.840.1.113762.1.4.1146.841','20240123','Tuberculosis (Interferon Gamma Release Assays)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.602_20200515','2.16.840.1.113762.1.4.1146.602','20200515','Tuberculosis (Mammalian Tuberculin Skin Test)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1958_20230124','2.16.840.1.113762.1.4.1146.1958','20230124','Trivittatus Virus Diseases (Tests for Trivittatus Virus Antibody)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1956_20230125','2.16.840.1.113762.1.4.1146.1956','20230125','La Crosse Virus Diseases (Tests for La Crosse Virus Antibody)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1957_20230124','2.16.840.1.113762.1.4.1146.1957','20230124','Snowshoe hare Virus Diseases (Tests for Snowshoe hare Virus Antibody)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1954_20230125','2.16.840.1.113762.1.4.1146.1954','20230125','La Crosse Virus Diseases (Tests for La Crosse Virus IgM Antibody)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1955_20230124','2.16.840.1.113762.1.4.1146.1955','20230124','Snowshoe hare Virus Diseases (Tests for Snowshoe hare Virus IgM Antibody)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1952_20230125','2.16.840.1.113762.1.4.1146.1952','20230125','La Crosse Virus Diseases (Tests for La Crosse Virus Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1953_20230124','2.16.840.1.113762.1.4.1146.1953','20230124','Snowshoe hare Virus Diseases (Tests for Snowshoe hare Virus Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1726_20230602','2.16.840.1.113762.1.4.1146.1726','20230602','Enterovirus Infection [Non polio] (Tests for Non Polio Enterovirus in Cerebrospinal Fluid Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1848_20240620','2.16.840.1.113762.1.4.1146.1848','20240620','Leishmania species (Tests by Microscopic Observation in Tissue)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1725_20240619','2.16.840.1.113762.1.4.1146.1725','20240619','Enterovirus Infection [Non polio] (Tests for Non Polio Enterovirus Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.705_20220602','2.16.840.1.113762.1.4.1146.705','20220602','Syphilis (Tests for Treponemal or Non Treponemal Antibody)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1846_20240620','2.16.840.1.113762.1.4.1146.1846','20240620','Leishmaniasis (Tests for Leishmania species Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.706_20181031','2.16.840.1.113762.1.4.1146.706','20181031','Chlamydia trachomatis Infection (Tests for Chlamydia species Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.948_20200515','2.16.840.1.113762.1.4.1146.948','20200515','Rabies (Tests for rabies virus Antibody in Serum)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1847_20230602','2.16.840.1.113762.1.4.1146.1847','20230602','Leishmaniasis (Tests for Leishmania species Antibody)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.707_20181031','2.16.840.1.113762.1.4.1146.707','20181031','Chlamydia trachomatis Infection (Tests for Chlamydia species by Culture and Identification Method)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.949_20181031','2.16.840.1.113762.1.4.1146.949','20181031','Rabies (Tests for rabies virus Antibody in CSF)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.708_20181031','2.16.840.1.113762.1.4.1146.708','20181031','Chlamydia trachomatis Infection (Tests for Chlamydia species Antigen)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1724_20220602','2.16.840.1.113762.1.4.1146.1724','20220602','Enterovirus Infection [Non polio] (Tests for Non Polio Enterovirus in Cerebrospinal Fluid by Culture and Identification Method)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1723_20240619','2.16.840.1.113762.1.4.1146.1723','20240619','Enterovirus Infection [Non polio] (Tests for Non Polio Enterovirus by Culture and Identification Method)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1859_20220603','2.16.840.1.113762.1.4.1146.1859','20220603','Lymphatic Filariasis (Tests for Wuchereria bancrofti, Brugia malayi or Brugia timori Antigen)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1736_20220602','2.16.840.1.113762.1.4.1146.1736','20220602','Clostridium perfringens Infection (Tests for C perfringens Enterotoxin)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1857_20220603','2.16.840.1.113762.1.4.1146.1857','20220603','Lymphatic Filariasis (Tests for Wuchereria bancrofti, Brugia malayi or Brugia timori IgG4 antibody)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.816_20240123','2.16.840.1.113762.1.4.1146.816','20240123','Rubella (Tests for rubella virus IgG Antibody [Ratio] in Serum)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1617_20220115','2.16.840.1.113762.1.4.1146.1617','20220115','Vaccinia (Tests for Vaccinia virus Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1858_20220603','2.16.840.1.113762.1.4.1146.1858','20220603','Lymphatic Filariasis (Tests for Wuchereria bancrofti, Brugia malayi or Brugia timori antibody)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1976_20230125','2.16.840.1.113762.1.4.1146.1976','20230125','Baylisascariasis (Tests for Baylisascaris species Antibody)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.818_20181031','2.16.840.1.113762.1.4.1146.818','20181031','Measles (Tests for measles virus IgG Antibody [Ratio] in Serum)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1735_20230602','2.16.840.1.113762.1.4.1146.1735','20230602','Clostridium perfringens Infection (Tests for C perfringens by Culture and Identification Method)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1851_20220603','2.16.840.1.113762.1.4.1146.1851','20220603','Leishmania species (Tests by Microscopic Observation)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1972_20230125','2.16.840.1.113762.1.4.1146.1972','20230125','Hepatitis D Virus Infection (Tests for hepatitis D virus Nucleic Acid)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1970_20240123','2.16.840.1.113762.1.4.1146.1970','20240123','Hepatitis D Virus Infection (Tests for hepatitis D virus total or IgG Antibody)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1971_20230125','2.16.840.1.113762.1.4.1146.1971','20230125','Hepatitis D Virus Infection (Tests for hepatitis D virus IgM Antibody)','CSTE Steward','lrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1601_20220118','2.16.840.1.113762.1.4.1146.1601','20220118','HIV Infection (ARV Boosters [CYP3A4 Inhibitor]) (RXNORM)','CSTE Steward','mrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1600_20230602','2.16.840.1.113762.1.4.1146.1600','20230602','HIV Infection (ARV Integrase Strand Transfer Inhibitors [INSTIs]) (RXNORM)','CSTE Steward','mrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1603_20220118','2.16.840.1.113762.1.4.1146.1603','20220118','HIV Infection (ARV Attachment Inhibitors) (RXNORM)','CSTE Steward','mrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1602_20220118','2.16.840.1.113762.1.4.1146.1602','20220118','HIV Infection (ARV Postattachment Inhibitors) (RXNORM)','CSTE Steward','mrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1082_20200513','2.16.840.1.113762.1.4.1146.1082','20200513','Anthrax Vaccine (RXNORM)','CSTE Steward','mrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1081_20200515','2.16.840.1.113762.1.4.1146.1081','20200515','Rabies Immune Globulin (CVX)','CSTE Steward','mrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.321_20200515','2.16.840.1.113762.1.4.1146.321','20200515','Tuberculosis (First Line Drugs for Treatment) (RXNORM)','CSTE Steward','mrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.741_20230602','2.16.840.1.113762.1.4.1146.741','20230602','Hepatitis B Immune Globulin (RXNORM)','CSTE Steward','mrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.961_20200515','2.16.840.1.113762.1.4.1146.961','20200515','Rabies Immune Globulin (RXNORM)','CSTE Steward','mrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.983_20200515','2.16.840.1.113762.1.4.1146.983','20200515','Botulism Antitoxin (RXNORM)','CSTE Steward','mrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.843_20200515','2.16.840.1.113762.1.4.1146.843','20200515','Tuberculosis (First Line Drugs for Treatment [Combinations]) (RXNORM)','CSTE Steward','mrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.943_20200513','2.16.840.1.113762.1.4.1146.943','20200513','Anthrax Vaccine (CVX)','CSTE Steward','mrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.747_20220603','2.16.840.1.113762.1.4.1146.747','20220603','Penicillin G [Benzathine] [Injectable] [Bicillin] (RXNORM)','CSTE Steward','mrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1618_20230602','2.16.840.1.113762.1.4.1146.1618','20230602','Smallpox Vaccine (RXNORM)','CSTE Steward','mrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1912_20230122','2.16.840.1.113762.1.4.1146.1912','20230122','Penicillin G [Aqueous Crystalline] [Injectable] (RXNORM)','CSTE Steward','mrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1913_20230122','2.16.840.1.113762.1.4.1146.1913','20230122','Penicillin G [Procaine] [Injectable] (RXNORM)','CSTE Steward','mrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1634_20230602','2.16.840.1.113762.1.4.1146.1634','20230602','Sofosbuvir Velpatasvir Combination (RXNORM)','CSTE Steward','mrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1633_20220118','2.16.840.1.113762.1.4.1146.1633','20220118','Ledipasvir Sofosbuvir Combination (RXNORM)','CSTE Steward','mrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1636_20220118','2.16.840.1.113762.1.4.1146.1636','20220118','Sofosbuvir (RXNORM)','CSTE Steward','mrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1635_20220118','2.16.840.1.113762.1.4.1146.1635','20220118','Sofosbuvir Velpatasvir Voxilaprevir Combination (RXNORM)','CSTE Steward','mrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1619_20220119','2.16.840.1.113762.1.4.1146.1619','20220119','Smallpox Vaccine (CVX)','CSTE Steward','mrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1052_20191227','2.16.840.1.113762.1.4.1146.1052','20191227','Levodopa (RXNORM)','CSTE Steward','mrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.990_20200515','2.16.840.1.113762.1.4.1146.990','20200515','Dapsone (RXNORM)','CSTE Steward','mrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.992_20200515','2.16.840.1.113762.1.4.1146.992','20200515','Clofazimine (RXNORM)','CSTE Steward','mrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1597_20230602','2.16.840.1.113762.1.4.1146.1597','20230602','HIV Infection (ARV Combination Treatment for HIV) (RXNORM)','CSTE Steward','mrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1596_20220118','2.16.840.1.113762.1.4.1146.1596','20220118','HIV Infection (ARV Fusion Inhibitors) (RXNORM)','CSTE Steward','mrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1599_20220118','2.16.840.1.113762.1.4.1146.1599','20220118','HIV Infection (ARV CCR5 Antagonists) (RXNORM)','CSTE Steward','mrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1632_20220118','2.16.840.1.113762.1.4.1146.1632','20220118','Glecaprevir Pibrentasvir Combination (RXNORM)','CSTE Steward','mrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2366_20240619','2.16.840.1.113762.1.4.1146.2366','20240619','Tuberculosis (Rifampin) (RXNORM)','CSTE Steward','mrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1598_20230602','2.16.840.1.113762.1.4.1146.1598','20230602','HIV Infection (ARV Protease Inhibitors [PIs]) (RXNORM)','CSTE Steward','mrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1631_20220118','2.16.840.1.113762.1.4.1146.1631','20220118','Elbasvir Grazoprevir Combination (RXNORM)','CSTE Steward','mrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2367_20240619','2.16.840.1.113762.1.4.1146.2367','20240619','Tuberculosis (Rifapentine) (RXNORM)','CSTE Steward','mrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.732_20200515','2.16.840.1.113762.1.4.1146.732','20200515','Azidothymidine (AZT) (RXNORM)','CSTE Steward','mrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2144_20230122','2.16.840.1.113762.1.4.1146.2144','20230122','Tuberculosis (Bedaquiline) (RXNORM)','CSTE Steward','mrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2364_20240619','2.16.840.1.113762.1.4.1146.2364','20240619','Tuberculosis (Pyrazinamide [PZA]) (RXNORM)','CSTE Steward','mrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1053_20190604','2.16.840.1.113762.1.4.1146.1053','20190604','Carbidopa Levodopa Combination (RXNORM)','CSTE Steward','mrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2365_20240619','2.16.840.1.113762.1.4.1146.2365','20240619','Tuberculosis (Rifabutin) (RXNORM)','CSTE Steward','mrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1078_20230122','2.16.840.1.113762.1.4.1146.1078','20230122','Opioid Overdose and Poisoning (Naloxone) (RxNorm)','CSTE Steward','mrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1595_20230602','2.16.840.1.113762.1.4.1146.1595','20230602','HIV Infection (ARV Non nucleoside Reverse Transcriptase Inhibitors [NNRTIs]) (RXNORM)','CSTE Steward','mrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2142_20230122','2.16.840.1.113762.1.4.1146.2142','20230122','Tuberculosis (Linezolid) (RXNORM)','CSTE Steward','mrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2362_20240619','2.16.840.1.113762.1.4.1146.2362','20240619','Tuberculosis (Ethambutol) (RXNORM)','CSTE Steward','mrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.339_20191227','2.16.840.1.113762.1.4.1146.339','20191227','Tetanus (Tetanus Immune Globulin) (RXNORM)','CSTE Steward','mrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1594_20230602','2.16.840.1.113762.1.4.1146.1594','20230602','HIV Infection (ARV Nucleoside Reverse Transcriptase Inhibitors [NRTIs]) (RXNORM)','CSTE Steward','mrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2143_20230122','2.16.840.1.113762.1.4.1146.2143','20230122','Tuberculosis (Pretomanid) (RXNORM)','CSTE Steward','mrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2363_20240619','2.16.840.1.113762.1.4.1146.2363','20240619','Tuberculosis (Isoniazid [INH]) (RXNORM)','CSTE Steward','mrtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1439_20220118','2.16.840.1.113762.1.4.1146.1439','20220118','Rabies [Suspected] (Disorders) (SNOMED)','CSTE Steward','sdtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1777_20220602','2.16.840.1.113762.1.4.1146.1777','20220602','Novel Influenza A Virus Infection[Suspected](Disorders) (SNOMED)','CSTE Steward','sdtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1436_20220118','2.16.840.1.113762.1.4.1146.1436','20220118','Measles [Suspected] (Disorders) (SNOMED)','CSTE Steward','sdtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1446_20230122','2.16.840.1.113762.1.4.1146.1446','20230122','Viral Hemorrhagic Fever [Suspected] (Disorders) (SNOMED)','CSTE Steward','sdtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1435_20220118','2.16.840.1.113762.1.4.1146.1435','20220118','Diphtheria [Suspected] (Disorders) (SNOMED)','CSTE Steward','sdtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1438_20220118','2.16.840.1.113762.1.4.1146.1438','20220118','Poliomyelitis [Suspected] (Disorders) (SNOMED)','CSTE Steward','sdtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1437_20220118','2.16.840.1.113762.1.4.1146.1437','20220118','Plague [Suspected] (Disorders) (SNOMED)','CSTE Steward','sdtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2163_20230602','2.16.840.1.113762.1.4.1146.2163','20230602','Dengue Virus Infection [Suspected] (Disorders) (SNOMED)','CSTE Steward','sdtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1432_20220118','2.16.840.1.113762.1.4.1146.1432','20220118','Botulism [Suspected] (Disorders) (SNOMED)','CSTE Steward','sdtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1443_20220118','2.16.840.1.113762.1.4.1146.1443','20220118','Yellow Fever [Suspected] (Disorders) (SNOMED)','CSTE Steward','sdtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1442_20220118','2.16.840.1.113762.1.4.1146.1442','20220118','Smallpox [Suspected] (Disorders) (SNOMED)','CSTE Steward','sdtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2014_20221022','2.16.840.1.113762.1.4.1146.2014','20221022','Mpox [Suspected] (Disorders) (SNOMED)','CSTE Steward','sdtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2146_20230122','2.16.840.1.113762.1.4.1146.2146','20230122','Congenital Rubella Syndrome [Suspected] (Disorders) (SNOMED)','CSTE Steward','sdtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1434_20220118','2.16.840.1.113762.1.4.1146.1434','20220118','Brucellosis [Suspected] (Disorders) (SNOMED)','CSTE Steward','sdtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1445_20220118','2.16.840.1.113762.1.4.1146.1445','20220118','Meningococcal Disease [Suspected] (Disorders) (SNOMED)','CSTE Steward','sdtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1433_20220118','2.16.840.1.113762.1.4.1146.1433','20220118','Anthrax [Suspected] (Disorders) (SNOMED)','CSTE Steward','sdtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1444_20220118','2.16.840.1.113762.1.4.1146.1444','20220118','Cholera [Suspected] (Disorders) (SNOMED)','CSTE Steward','sdtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2145_20230122','2.16.840.1.113762.1.4.1146.2145','20230122','Tuberculosis [Suspected] (Disorders) (SNOMED)','CSTE Steward','sdtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1441_20220118','2.16.840.1.113762.1.4.1146.1441','20220118','SARS [Suspected] (Disorders) (SNOMED)','CSTE Steward','sdtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2164_20230602','2.16.840.1.113762.1.4.1146.2164','20230602','Mumps [Suspected] (Disorders) (SNOMED)','CSTE Steward','sdtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.2165_20230602','2.16.840.1.113762.1.4.1146.2165','20230602','Pertussis [Suspected] (Disorders) (SNOMED)','CSTE Steward','sdtc');
-INSERT INTO valuesets VALUES('2.16.840.1.113762.1.4.1146.1440_20220118','2.16.840.1.113762.1.4.1146.1440','20220118','Rubella [Suspected] (Disorders) (SNOMED)','CSTE Steward','sdtc');
--- CREATE TABLE conditions (
--- id TEXT PRIMARY KEY,
--- system TEXT,
--- name TEXT,
--- version TEXT
--- );
-INSERT INTO conditions VALUES('276197005','http://snomed.info/sct','Infection caused by Corynebacterium diphtheriae (disorder)','20240301');
-INSERT INTO conditions VALUES('266123003','http://snomed.info/sct','Bartonellosis (disorder)','20240301');
-INSERT INTO conditions VALUES('95821001','http://snomed.info/sct','Neonatal hearing loss (disorder)','20240301');
-INSERT INTO conditions VALUES('242253008','http://snomed.info/sct','Overdose of opiate (disorder)','20240301');
-INSERT INTO conditions VALUES('414488002','http://snomed.info/sct','Infantile botulism (disorder)','20240301');
-INSERT INTO conditions VALUES('398565003','http://snomed.info/sct','Infection caused by Clostridium botulinum (disorder)','20240301');
-INSERT INTO conditions VALUES('23511006','http://snomed.info/sct','Meningococcal infectious disease (disorder)','20240301');
-INSERT INTO conditions VALUES('81004002','http://snomed.info/sct','Leprosy (disorder)','20240301');
-INSERT INTO conditions VALUES('398102009','http://snomed.info/sct','Acute poliomyelitis (disorder)','20240301');
-INSERT INTO conditions VALUES('805002','http://snomed.info/sct','Pneumoconiosis caused by silica (disorder)','20240301');
-INSERT INTO conditions VALUES('14189004','http://snomed.info/sct','Measles (disorder)','20240301');
-INSERT INTO conditions VALUES('186771002','http://snomed.info/sct','Spotted fever group rickettsial disease (disorder)','20240301');
-INSERT INTO conditions VALUES('190268003','http://snomed.info/sct','Congenital hypothyroidism (disorder)','20240301');
-INSERT INTO conditions VALUES('60498001','http://snomed.info/sct','Congenital viral hepatitis B infection (disorder)','20240301');
-INSERT INTO conditions VALUES('66071002','http://snomed.info/sct','Viral hepatitis type B (disorder)','20240301');
-INSERT INTO conditions VALUES('3928002','http://snomed.info/sct','Zika virus disease (disorder)','20240301');
-INSERT INTO conditions VALUES('61462000','http://snomed.info/sct','Malaria (disorder)','20240301');
-INSERT INTO conditions VALUES('76902006','http://snomed.info/sct','Tetanus (disorder)','20240301');
-INSERT INTO conditions VALUES('23502006','http://snomed.info/sct','Lyme disease (disorder)','20240301');
-INSERT INTO conditions VALUES('13906002','http://snomed.info/sct','Anaplasmosis (disorder)','20240301');
-INSERT INTO conditions VALUES('36989005','http://snomed.info/sct','Mumps (disorder)','20240301');
-INSERT INTO conditions VALUES('414819007','http://snomed.info/sct','Neonatal abstinence syndrome (disorder)','20240301');
-INSERT INTO conditions VALUES('74942003','http://snomed.info/sct','Echinococcosis (disorder)','20240301');
-INSERT INTO conditions VALUES('86406008','http://snomed.info/sct','Human immunodeficiency virus infection (disorder)','20240301');
-INSERT INTO conditions VALUES('240626005','http://snomed.info/sct','Human ehrlichiosis (disorder)','20240301');
-INSERT INTO conditions VALUES('36653000','http://snomed.info/sct','Rubella (disorder)','20240301');
-INSERT INTO conditions VALUES('35742006','http://snomed.info/sct','Congenital syphilis (disorder)','20240301');
-INSERT INTO conditions VALUES('266113007','http://snomed.info/sct','Genital warts (disorder)','20240301');
-INSERT INTO conditions VALUES('187151009','http://snomed.info/sct','Diphyllobothriasis (disorder)','20240301');
-INSERT INTO conditions VALUES('56717001','http://snomed.info/sct','Tuberculosis (disorder)','20240301');
-INSERT INTO conditions VALUES('240372001','http://snomed.info/sct','Cyclosporiasis (disorder)','20240301');
-INSERT INTO conditions VALUES('198130006','http://snomed.info/sct','Female pelvic inflammatory disease (disorder)','20240301');
-INSERT INTO conditions VALUES('398447004','http://snomed.info/sct','Severe acute respiratory syndrome (disorder)','20240301');
-INSERT INTO conditions VALUES('4241002','http://snomed.info/sct','Listeriosis (disorder)','20240301');
-INSERT INTO conditions VALUES('709018004','http://snomed.info/sct','Infection caused by larvae of Trichinella (disorder)','20240301');
-INSERT INTO conditions VALUES('37131007','http://snomed.info/sct','Pesticide poisoning (disorder)','20240301');
-INSERT INTO conditions VALUES('58265007','http://snomed.info/sct','Giardiasis (disorder)','20240301');
-INSERT INTO conditions VALUES('40610006','http://snomed.info/sct','Arbovirus infection (disorder)','20240301');
-INSERT INTO conditions VALUES('240370009','http://snomed.info/sct','Cryptosporidiosis (disorder)','20240301');
-INSERT INTO conditions VALUES('541131000124102','http://snomed.info/sct','Infection caused by novel Influenza A virus variant (disorder)','20240301');
-INSERT INTO conditions VALUES('1857005','http://snomed.info/sct','Congenital rubella syndrome (disorder)','20240301');
-INSERT INTO conditions VALUES('84619001','http://snomed.info/sct','Nongonococcal urethritis (disorder)','20240301');
-INSERT INTO conditions VALUES('41439009','http://snomed.info/sct','Microcystis flos-aquae poisoning (disorder)','20240301');
-INSERT INTO conditions VALUES('40956001','http://snomed.info/sct','Guillain-Barre syndrome (disorder)','20240301');
-INSERT INTO conditions VALUES('409498004','http://snomed.info/sct','Anthrax (disorder)','20240301');
-INSERT INTO conditions VALUES('7180009','http://snomed.info/sct','Meningitis (disorder)','20240301');
-INSERT INTO conditions VALUES('204339005','http://snomed.info/sct','Congenital pulmonary valve abnormality (disorder)','20240301');
-INSERT INTO conditions VALUES('416707008','http://snomed.info/sct','Powassan encephalitis virus infection (disorder)','20240301');
-INSERT INTO conditions VALUES('3398004','http://snomed.info/sct','Cadmium poisoning (disorder)','20240301');
-INSERT INTO conditions VALUES('111407006','http://snomed.info/sct','Hemolytic uremic syndrome (disorder)','20240301');
-INSERT INTO conditions VALUES('204357006','http://snomed.info/sct','Ebstein''s anomaly of tricuspid valve (disorder)','20240301');
-INSERT INTO conditions VALUES('86500004','http://snomed.info/sct','Campylobacteriosis (disorder)','20240301');
-INSERT INTO conditions VALUES('399907009','http://snomed.info/sct','Animal bite wound (disorder)','20240301');
-INSERT INTO conditions VALUES('7305005','http://snomed.info/sct','Coarctation of aorta (disorder)','20240301');
-INSERT INTO conditions VALUES('218728005','http://snomed.info/sct','Interrupted aortic arch (disorder)','20240301');
-INSERT INTO conditions VALUES('204296002','http://snomed.info/sct','Discordant ventriculoarterial connection (disorder)','20240301');
-INSERT INTO conditions VALUES('409617000','http://snomed.info/sct','Ricin poisoning (disorder)','20240301');
-INSERT INTO conditions VALUES('406575008','http://snomed.info/sct','Infection caused by vancomycin resistant enterococcus (disorder)','20240301');
-INSERT INTO conditions VALUES('328291000119103','http://snomed.info/sct','Infection caused by Shiga toxin producing Escherichia coli (disorder)','20240301');
-INSERT INTO conditions VALUES('86299006','http://snomed.info/sct','Tetralogy of Fallot (disorder)','20240301');
-INSERT INTO conditions VALUES('45503006','http://snomed.info/sct','Common ventricle (disorder)','20240301');
-INSERT INTO conditions VALUES('58750007','http://snomed.info/sct','Plague (disorder)','20240301');
-INSERT INTO conditions VALUES('75116005','http://snomed.info/sct','Ornithosis (disorder)','20240301');
-INSERT INTO conditions VALUES('14168008','http://snomed.info/sct','Rabies (disorder)','20240301');
-INSERT INTO conditions VALUES('62067003','http://snomed.info/sct','Hypoplastic left heart syndrome (disorder)','20240301');
-INSERT INTO conditions VALUES('7111000119109','http://snomed.info/sct','Viral hepatitis type E (disorder)','20240301');
-INSERT INTO conditions VALUES('216809001','http://snomed.info/sct','Accidental poisoning caused by fertilizers (disorder)','20240301');
-INSERT INTO conditions VALUES('7484005','http://snomed.info/sct','Double outlet right ventricle (disorder)','20240301');
-INSERT INTO conditions VALUES('388759003','http://snomed.info/sct','Infection caused by Entamoeba histolytica (disorder)','20240301');
-INSERT INTO conditions VALUES('4374004','http://snomed.info/sct','Congenital anomaly of tricuspid valve (disorder)','20240301');
-INSERT INTO conditions VALUES('60826002','http://snomed.info/sct','Coccidioidomycosis (disorder)','20240301');
-INSERT INTO conditions VALUES('721763002','http://snomed.info/sct','Infection caused by Norovirus (disorder)','20240301');
-INSERT INTO conditions VALUES('75702008','http://snomed.info/sct','Brucellosis (disorder)','20240301');
-INSERT INTO conditions VALUES('38362002','http://snomed.info/sct','Dengue (disorder)','20240301');
-INSERT INTO conditions VALUES('840539006','http://snomed.info/sct','Disease caused by severe acute respiratory syndrome coronavirus 2 (disorder)','20240301');
-INSERT INTO conditions VALUES('69996000','http://snomed.info/sct','Blastomycosis (disorder)','20240301');
-INSERT INTO conditions VALUES('186431008','http://snomed.info/sct','Infection caused by Clostridioides difficile (disorder)','20240301');
-INSERT INTO conditions VALUES('111323005','http://snomed.info/sct','Total anomalous pulmonary venous return (disorder)','20240301');
-INSERT INTO conditions VALUES('1237074000','http://snomed.info/sct','Congenital atrioventricular septal defect (disorder)','20240301');
-INSERT INTO conditions VALUES('61959006','http://snomed.info/sct','Common truncus arteriosus (disorder)','20240301');
-INSERT INTO conditions VALUES('83436008','http://snomed.info/sct','Yersiniosis (disorder)','20240301');
-INSERT INTO conditions VALUES('38959009','http://snomed.info/sct','Methemoglobinemia (disorder)','20240301');
-INSERT INTO conditions VALUES('49649001','http://snomed.info/sct','Infection caused by Acanthamoeba (disorder)','20240301');
-INSERT INTO conditions VALUES('36188001','http://snomed.info/sct','Shigellosis (disorder)','20240301');
-INSERT INTO conditions VALUES('40468003','http://snomed.info/sct','Viral hepatitis, type A (disorder)','20240301');
-INSERT INTO conditions VALUES('16541001','http://snomed.info/sct','Yellow fever (disorder)','20240301');
-INSERT INTO conditions VALUES('407152001','http://snomed.info/sct','Blood lead level above reference range (finding)','20240301');
-INSERT INTO conditions VALUES('52947006','http://snomed.info/sct','Japanese encephalitis virus disease (disorder)','20240301');
-INSERT INTO conditions VALUES('417093003','http://snomed.info/sct','Disease caused by West Nile virus (disorder)','20240301');
-INSERT INTO conditions VALUES('417192005','http://snomed.info/sct','Saint Louis encephalitis virus infection (disorder)','20240301');
-INSERT INTO conditions VALUES('85904008','http://snomed.info/sct','Paratyphoid fever (disorder)','20240301');
-INSERT INTO conditions VALUES('11999007','http://snomed.info/sct','Inactive tuberculosis (finding)','20240301');
-INSERT INTO conditions VALUES('269275003','http://snomed.info/sct','Seafood causing toxic effect (disorder)','20240301');
-INSERT INTO conditions VALUES('406604002','http://snomed.info/sct','Infection caused by vancomycin intermediate Staphylococcus aureus (disorder)','20240301');
-INSERT INTO conditions VALUES('4834000','http://snomed.info/sct','Typhoid fever (disorder)','20240301');
-INSERT INTO conditions VALUES('302231008','http://snomed.info/sct','Salmonella infection (disorder)','20240301');
-INSERT INTO conditions VALUES('66948001','http://snomed.info/sct','Cleft palate with cleft lip (disorder)','20240301');
-INSERT INTO conditions VALUES('87979003','http://snomed.info/sct','Cleft palate (disorder)','20240301');
-INSERT INTO conditions VALUES('15628003','http://snomed.info/sct','Gonorrhea (disorder)','20240301');
-INSERT INTO conditions VALUES('398557001','http://snomed.info/sct','Infection caused by non-cholerae vibrio (disorder)','20240301');
-INSERT INTO conditions VALUES('404681006','http://snomed.info/sct','Infection caused by vancomycin resistant Staphylococcus aureus (disorder)','20240301');
-INSERT INTO conditions VALUES('63650001','http://snomed.info/sct','Cholera (disorder)','20240301');
-INSERT INTO conditions VALUES('45170000','http://snomed.info/sct','Encephalitis (disorder)','20240301');
-INSERT INTO conditions VALUES('17383000','http://snomed.info/sct','Toxic effect of carbon monoxide (disorder)','20240301');
-INSERT INTO conditions VALUES('57607007','http://snomed.info/sct','Occupational asthma (disorder)','20240301');
-INSERT INTO conditions VALUES('80281008','http://snomed.info/sct','Cleft lip (disorder)','20240301');
-INSERT INTO conditions VALUES('897031002','http://snomed.info/sct','Acute flaccid myelitis (disorder)','20240301');
-INSERT INTO conditions VALUES('89369001','http://snomed.info/sct','Anencephalus (disorder)','20240301');
-INSERT INTO conditions VALUES('59527008','http://snomed.info/sct','Congenital cytomegalovirus infection (disorder)','20240301');
-INSERT INTO conditions VALUES('414015000','http://snomed.info/sct','Disease caused by Orthopoxvirus (disorder)','20240301');
-INSERT INTO conditions VALUES('359814004','http://snomed.info/sct','Monkeypox (disorder)','20240301');
-INSERT INTO conditions VALUES('115635005','http://snomed.info/sct','Balamuthia mandrillaris (organism)','20240301');
-INSERT INTO conditions VALUES('27836007','http://snomed.info/sct','Pertussis (disorder)','20240301');
-INSERT INTO conditions VALUES('26726000','http://snomed.info/sct','Legionella infection (disorder)','20240301');
-INSERT INTO conditions VALUES('67924001','http://snomed.info/sct','Smallpox (disorder)','20240301');
-INSERT INTO conditions VALUES('77377001','http://snomed.info/sct','Leptospirosis (disorder)','20240301');
-INSERT INTO conditions VALUES('266143009','http://snomed.info/sct','Chancroid (disorder)','20240301');
-INSERT INTO conditions VALUES('551611000124101','http://snomed.info/sct','Perinatal hepatitis caused by Hepatitis C virus (disorder)','20240301');
-INSERT INTO conditions VALUES('50711007','http://snomed.info/sct','Viral hepatitis type C (disorder)','20240301');
-INSERT INTO conditions VALUES('76272004','http://snomed.info/sct','Syphilis (disorder)','20240301');
-INSERT INTO conditions VALUES('41040004','http://snomed.info/sct','Complete trisomy 21 syndrome (disorder)','20240301');
-INSERT INTO conditions VALUES('61750000','http://snomed.info/sct','Infection caused by Angiostrongylus (disorder)','20240301');
-INSERT INTO conditions VALUES('47523006','http://snomed.info/sct','Western equine encephalitis (disorder)','20240301');
-INSERT INTO conditions VALUES('12962009','http://snomed.info/sct','Histoplasmosis (disorder)','20240301');
-INSERT INTO conditions VALUES('67531005','http://snomed.info/sct','Spina bifida (disorder)','20240301');
-INSERT INTO conditions VALUES('6452009','http://snomed.info/sct','Colorado tick fever (disorder)','20240301');
-INSERT INTO conditions VALUES('721781004','http://snomed.info/sct','Infection caused by Lymphocytic choriomeningitis virus (disorder)','20240301');
-INSERT INTO conditions VALUES('416925005','http://snomed.info/sct','Eastern equine encephalitis virus infection (disorder)','20240301');
-INSERT INTO conditions VALUES('186788009','http://snomed.info/sct','Q fever (disorder)','20240301');
-INSERT INTO conditions VALUES('418182000','http://snomed.info/sct','Disease caused by California serogroup virus (disorder)','20240301');
-INSERT INTO conditions VALUES('428175000','http://snomed.info/sct','Primary amebic encephalitis caused by Naegleria fowleri (disorder)','20240301');
-INSERT INTO conditions VALUES('406583002','http://snomed.info/sct','Invasive Haemophilus influenzae disease (disorder)','20240301');
-INSERT INTO conditions VALUES('111864006','http://snomed.info/sct','Chikungunya fever (disorder)','20240301');
-INSERT INTO conditions VALUES('240523007','http://snomed.info/sct','Viral hemorrhagic fever (disorder)','20240301');
-INSERT INTO conditions VALUES('38907003','http://snomed.info/sct','Varicella (disorder)','20240301');
-INSERT INTO conditions VALUES('49049000','http://snomed.info/sct','Parkinson''s disease (disorder)','20240301');
-INSERT INTO conditions VALUES('20484008','http://snomed.info/sct','Prion disease (disorder)','20240301');
-INSERT INTO conditions VALUES('712662001','http://snomed.info/sct','Carbapenem resistant Enterobacteriaceae (organism)','20240301');
-INSERT INTO conditions VALUES('734350003','http://snomed.info/sct','Carbapenemase-producing bacteria (organism)','20240301');
-INSERT INTO conditions VALUES('428111003','http://snomed.info/sct','Melioidosis (disorder)','20240301');
-INSERT INTO conditions VALUES('72951007','http://snomed.info/sct','Gastroschisis (disorder)','20240301');
-INSERT INTO conditions VALUES('240589008','http://snomed.info/sct','Chlamydia trachomatis infection (disorder)','20240301');
-INSERT INTO conditions VALUES('190687004','http://snomed.info/sct','Phenylketonuria (disorder)','20240301');
-INSERT INTO conditions VALUES('661761000124109','http://snomed.info/sct','Death associated with influenza (event)','20240301');
-INSERT INTO conditions VALUES('6142004','http://snomed.info/sct','Influenza (disorder)','20240301');
-INSERT INTO conditions VALUES('43692000','http://snomed.info/sct','Influenzal acute upper respiratory infection (disorder)','20240301');
-INSERT INTO conditions VALUES('19265001','http://snomed.info/sct','Tularemia (disorder)','20240301');
-INSERT INTO conditions VALUES('67341007','http://snomed.info/sct','Longitudinal deficiency of limb (disorder)','20240301');
-INSERT INTO conditions VALUES('21061004','http://snomed.info/sct','Babesiosis (disorder)','20240301');
-INSERT INTO conditions VALUES('406617004','http://snomed.info/sct','Invasive Streptococcus pneumoniae disease (disorder)','20240301');
-INSERT INTO conditions VALUES('74225001','http://snomed.info/sct','Tick paralysis (disorder)','20240301');
-INSERT INTO conditions VALUES('233733000','http://snomed.info/sct','Toxic pneumonitis (disorder)','20240301');
-INSERT INTO conditions VALUES('767146004','http://snomed.info/sct','Toxic effect of arsenic and/or arsenic compound (disorder)','20240301');
-INSERT INTO conditions VALUES('18624000','http://snomed.info/sct','Disease caused by Rotavirus (disorder)','20240301');
-INSERT INTO conditions VALUES('76172008','http://snomed.info/sct','Infection caused by Taenia (disorder)','20240301');
-INSERT INTO conditions VALUES('82271004','http://snomed.info/sct','Injury of head (disorder)','20240301');
-INSERT INTO conditions VALUES('700372006','http://snomed.info/sct','Urinary tract infection associated with catheter (disorder)','20240301');
-INSERT INTO conditions VALUES('22607003','http://snomed.info/sct','Asbestosis (disorder)','20240301');
-INSERT INTO conditions VALUES('42386007','http://snomed.info/sct','Cryptococcosis (disorder)','20240301');
-INSERT INTO conditions VALUES('240613006','http://snomed.info/sct','Typhus group rickettsial disease (disorder)','20240301');
-INSERT INTO conditions VALUES('433202001','http://snomed.info/sct','Surgical site infection (disorder)','20240301');
-INSERT INTO conditions VALUES('767299002','http://snomed.info/sct','Toxic effect of mercury and/or mercury compound (disorder)','20240301');
-INSERT INTO conditions VALUES('419488004','http://snomed.info/sct','Staphylococcus aureus enterotoxin B (substance)','20240301');
-INSERT INTO conditions VALUES('59051007','http://snomed.info/sct','Cysticercosis (disorder)','20240301');
-INSERT INTO conditions VALUES('363346000','http://snomed.info/sct','Malignant neoplastic disease (disorder)','20240301');
-INSERT INTO conditions VALUES('4639008','http://snomed.info/sct','Glanders (disorder)','20240301');
-INSERT INTO conditions VALUES('18690003','http://snomed.info/sct','Farmers'' lung (disorder)','20240301');
-INSERT INTO conditions VALUES('85761009','http://snomed.info/sct','Byssinosis (disorder)','20240301');
-INSERT INTO conditions VALUES('91576008','http://snomed.info/sct','Congenital herpes simplex (disorder)','20240301');
-INSERT INTO conditions VALUES('788781001','http://snomed.info/sct','Delayed allergy to red meat (finding)','20240301');
-INSERT INTO conditions VALUES('1149222004','http://snomed.info/sct','Overdose (disorder)','20240301');
-INSERT INTO conditions VALUES('75053002','http://snomed.info/sct','Acute febrile mucocutaneous lymph node syndrome (disorder)','20240301');
-INSERT INTO conditions VALUES('406597005','http://snomed.info/sct','Infection caused by Nipah virus (disorder)','20240301');
-INSERT INTO conditions VALUES('34298002','http://snomed.info/sct','Neonatal conjunctivitis (disorder)','20240301');
-INSERT INTO conditions VALUES('33839006','http://snomed.info/sct','Genital herpes simplex (disorder)','20240301');
-INSERT INTO conditions VALUES('95891005','http://snomed.info/sct','Influenza-like illness (finding)','20240301');
-INSERT INTO conditions VALUES('77506005','http://snomed.info/sct','Infection caused by Trypanosoma cruzi (disorder)','20240301');
-INSERT INTO conditions VALUES('736152001','http://snomed.info/sct','Infection of bloodstream co-occurrent and due to central venous catheter in situ (disorder)','20240301');
-INSERT INTO conditions VALUES('187192000','http://snomed.info/sct','Toxoplasmosis (disorder)','20240301');
-INSERT INTO conditions VALUES('6415009','http://snomed.info/sct','Human respiratory syncytial virus (organism)','20240301');
-INSERT INTO conditions VALUES('55735004','http://snomed.info/sct','Respiratory syncytial virus infection (disorder)','20240301');
-INSERT INTO conditions VALUES('111811007','http://snomed.info/sct','Mycobacterial infection (excluding tuberculosis AND leprosy) (disorder)','20240301');
-INSERT INTO conditions VALUES('28867007','http://snomed.info/sct','Granuloma inguinale (disorder)','20240301');
-INSERT INTO conditions VALUES('895448002','http://snomed.info/sct','Multisystem inflammatory syndrome in children (disorder)','20240301');
-INSERT INTO conditions VALUES('1731000119106','http://snomed.info/sct','Atypical mycobacterial infection of lung (disorder)','20240301');
-INSERT INTO conditions VALUES('715174007','http://snomed.info/sct','Carbapenem resistant Acinetobacter baumannii (organism)','20240301');
-INSERT INTO conditions VALUES('406602003','http://snomed.info/sct','Infection caused by Staphylococcus aureus (disorder)','20240301');
-INSERT INTO conditions VALUES('283545005','http://snomed.info/sct','Gunshot wound (disorder)','20240301');
-INSERT INTO conditions VALUES('74351001','http://snomed.info/sct','Reye''s Syndrome (disorder)','20240301');
-INSERT INTO conditions VALUES('397575003','http://snomed.info/sct','Viral hepatitis, type G (disorder)','20240301');
-INSERT INTO conditions VALUES('792004','http://snomed.info/sct','Jakob-Creutzfeldt disease (disorder)','20240301');
-INSERT INTO conditions VALUES('865929003','http://snomed.info/sct','Infection caused by Candida auris (disorder)','20240301');
-INSERT INTO conditions VALUES('1119306006','http://snomed.info/sct','Multisystem inflammatory syndrome in adults (disorder)','20240301');
-INSERT INTO conditions VALUES('406612005','http://snomed.info/sct','Invasive Group B beta-hemolytic streptococcal disease (disorder)','20240301');
-INSERT INTO conditions VALUES('44301001','http://snomed.info/sct','Suicide (event)','20240301');
-INSERT INTO conditions VALUES('406614006','http://snomed.info/sct','Invasive Group A beta-hemolytic streptococcal disease (disorder)','20240301');
-INSERT INTO conditions VALUES('359761005','http://snomed.info/sct','Disease caused by Hantavirus (disorder)','20240301');
-INSERT INTO conditions VALUES('36921006','http://snomed.info/sct','Vesicular stomatitis (disorder)','20240301');
-INSERT INTO conditions VALUES('651000146102','http://snomed.info/sct','Middle East respiratory syndrome (disorder)','20240301');
-INSERT INTO conditions VALUES('10301003','http://snomed.info/sct','Tick-borne relapsing fever (disorder)','20240301');
-INSERT INTO conditions VALUES('29422001','http://snomed.info/sct','Coal workers'' pneumoconiosis (disorder)','20240301');
-INSERT INTO conditions VALUES('18504008','http://snomed.info/sct','Toxic shock syndrome (disorder)','20240301');
-INSERT INTO conditions VALUES('240451000','http://snomed.info/sct','Streptococcal toxic shock syndrome (disorder)','20240301');
-INSERT INTO conditions VALUES('1214006','http://snomed.info/sct','Infection caused by Strongyloides (disorder)','20240301');
-INSERT INTO conditions VALUES('14683004','http://snomed.info/sct','Relapsing fever caused by Borrelia recurrentis (disorder)','20240301');
-INSERT INTO conditions VALUES('128869009','http://snomed.info/sct','Infestation caused by Sarcoptes scabiei var hominis (disorder)','20240301');
-INSERT INTO conditions VALUES('58718002','http://snomed.info/sct','Rheumatic fever (disorder)','20240301');
-INSERT INTO conditions VALUES('404237007','http://snomed.info/sct','Keystone virus encephalitis (disorder)','20240301');
-INSERT INTO conditions VALUES('41723001','http://snomed.info/sct','Jamestown Canyon virus disease (disorder)','20240301');
-INSERT INTO conditions VALUES('61094002','http://snomed.info/sct','La Crosse encephalitis (disorder)','20240301');
-INSERT INTO conditions VALUES('212962007','http://snomed.info/sct','Drowning and non-fatal immersion (disorder)','20240301');
-INSERT INTO conditions VALUES('407153006','http://snomed.info/sct','Injury due to motor vehicle accident (disorder)','20240301');
-INSERT INTO conditions VALUES('404236003','http://snomed.info/sct','Snowshoe hare virus encephalitis (disorder)','20240301');
-INSERT INTO conditions VALUES('240507007','http://snomed.info/sct','Trivittatus fever (disorder)','20240301');
-INSERT INTO conditions VALUES('293104008','http://snomed.info/sct','Adverse reaction to component of vaccine product (disorder)','20240301');
-INSERT INTO conditions VALUES('707341005','http://snomed.info/sct','Viral hepatitis type D (disorder)','20240301');
-INSERT INTO conditions VALUES('409636005','http://snomed.info/sct','Complication of smallpox vaccination (disorder)','20240301');
-INSERT INTO conditions VALUES('65154009','http://snomed.info/sct','Infection caused by Clostridium perfringens (disorder)','20240301');
-INSERT INTO conditions VALUES('80612004','http://snomed.info/sct','Leishmaniasis (disorder)','20240301');
-INSERT INTO conditions VALUES('53648006','http://snomed.info/sct','Disease caused by Enterovirus (disorder)','20240301');
-INSERT INTO conditions VALUES('71695001','http://snomed.info/sct','Complication of ventilation therapy (disorder)','20240301');
-INSERT INTO conditions VALUES('240820001','http://snomed.info/sct','Lymphatic filariasis (disorder)','20240301');
-INSERT INTO conditions VALUES('93614002','http://snomed.info/sct','Infection caused by Baylisascaris procyonis (disorder)','20240301');
-INSERT INTO conditions VALUES('719590007','http://snomed.info/sct','Influenza caused by seasonal influenza virus (disorder)','20240301');
-INSERT INTO conditions VALUES('726492000','http://snomed.info/sct','Carbapenem resistant Pseudomonas aeruginosa (organism)','20240301');
-INSERT INTO conditions VALUES('444664004','http://snomed.info/sct','Genus Cronobacter (organism)','20240301');
--- CREATE TABLE concepts (
--- id TEXT PRIMARY KEY,
--- code TEXT,
--- code_system TEXT,
--- display TEXT,
--- gem_formatted_code TEXT,
--- version TEXT
--- );
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.6_1086051000119107','1086051000119107','http://snomed.info/sct','Cardiomyopathy due to diphtheria (disorder)','1086051000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.6_1086061000119109','1086061000119109','http://snomed.info/sct','Diphtheria radiculomyelitis (disorder)','1086061000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.6_1086071000119103','1086071000119103','http://snomed.info/sct','Diphtheria tubulointerstitial nephropathy (disorder)','1086071000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.6_1090211000119102','1090211000119102','http://snomed.info/sct','Pharyngeal diphtheria (disorder)','1090211000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.6_1177005009','1177005009','http://snomed.info/sct','Diphtheria of eye region caused by Corynebacterium diphtheriae (disorder)','1177005009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.6_1259059003','1259059003','http://snomed.info/sct','Disorder of autonomic nervous system due to diphtheria (disorder)','1259059003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.6_129667001','129667001','http://snomed.info/sct','Diphtheritic peripheral neuritis (disorder)','129667001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.6_13596001','13596001','http://snomed.info/sct','Diphtheritic peritonitis (disorder)','13596001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.6_15682004','15682004','http://snomed.info/sct','Anterior nasal diphtheria (disorder)','15682004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.6_186347006','186347006','http://snomed.info/sct','Diphtheria of penis (disorder)','186347006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.6_18901009','18901009','http://snomed.info/sct','Cutaneous diphtheria (disorder)','18901009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.6_194945009','194945009','http://snomed.info/sct','Acute myocarditis - diphtheritic (disorder)','194945009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.6_230596007','230596007','http://snomed.info/sct','Diphtheritic neuropathy (disorder)','230596007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.6_240422004','240422004','http://snomed.info/sct','Tracheobronchial diphtheria (disorder)','240422004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.6_26117009','26117009','http://snomed.info/sct','Diphtheritic myocarditis (disorder)','26117009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.6_276197005','276197005','http://snomed.info/sct','Infection caused by Corynebacterium diphtheriae (disorder)','276197005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.6_3419005','3419005','http://snomed.info/sct','Faucial diphtheria (disorder)','3419005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.6_397428000','397428000','http://snomed.info/sct','Diphtheria (disorder)','397428000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.6_397430003','397430003','http://snomed.info/sct','Diphtheria caused by Corynebacterium diphtheriae (disorder)','397430003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.6_48278001','48278001','http://snomed.info/sct','Diphtheritic cystitis (disorder)','48278001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.6_50215002','50215002','http://snomed.info/sct','Laryngeal diphtheria (disorder)','50215002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.6_715659006','715659006','http://snomed.info/sct','Diphtheria of respiratory system (disorder)','715659006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.6_75589004','75589004','http://snomed.info/sct','Nasopharyngeal diphtheria (disorder)','75589004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.6_7773002','7773002','http://snomed.info/sct','Conjunctival diphtheria (disorder)','7773002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.6_789005009','789005009','http://snomed.info/sct','Paralysis of uvula after diphtheria (disorder)','789005009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2030_1141789006','1141789006','http://snomed.info/sct','Bacillary peliosis caused by Bartonella henselae (disorder)','1141789006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2030_410472006','410472006','http://snomed.info/sct','Bartonella henselae neuroretinitis (disorder)','410472006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2030_79974007','79974007','http://snomed.info/sct','Cat scratch disease (disorder)','79974007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2151_Q16.0','Q16.0','http://hl7.org/fhir/sid/icd-10-cm','Congenital absence of (ear) auricle','Q160','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2151_Q16.1','Q16.1','http://hl7.org/fhir/sid/icd-10-cm','Congenital absence, atresia and stricture of auditory canal (external)','Q161','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2151_Q16.2','Q16.2','http://hl7.org/fhir/sid/icd-10-cm','Absence of eustachian tube','Q162','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2151_Q16.3','Q16.3','http://hl7.org/fhir/sid/icd-10-cm','Congenital malformation of ear ossicles','Q163','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2151_Q16.4','Q16.4','http://hl7.org/fhir/sid/icd-10-cm','Other congenital malformations of middle ear','Q164','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2151_Q16.5','Q16.5','http://hl7.org/fhir/sid/icd-10-cm','Congenital malformation of inner ear','Q165','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2151_Q16.9','Q16.9','http://hl7.org/fhir/sid/icd-10-cm','Congenital malformation of ear causing impairment of hearing, unspecified','Q169','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2031_1141788003','1141788003','http://snomed.info/sct','Bacillary peliosis caused by Bartonella quintana (disorder)','1141788003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2031_82214002','82214002','http://snomed.info/sct','Trench fever (disorder)','82214002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_12898000','12898000','http://snomed.info/sct','Poisoning caused by pentazocine (disorder)','12898000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_13187008','13187008','http://snomed.info/sct','Poisoning caused by heroin (disorder)','13187008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_18052008','18052008','http://snomed.info/sct','Poisoning caused by meperidine (disorder)','18052008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_216463005','216463005','http://snomed.info/sct','Accidental poisoning caused by heroin (disorder)','216463005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_216464004','216464004','http://snomed.info/sct','Accidental poisoning caused by methadone (disorder)','216464004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_216466002','216466002','http://snomed.info/sct','Accidental poisoning caused by codeine (disorder)','216466002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_216467006','216467006','http://snomed.info/sct','Accidental poisoning caused by pethidine (disorder)','216467006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_216468001','216468001','http://snomed.info/sct','Accidental poisoning caused by morphine (disorder)','216468001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_216494005','216494005','http://snomed.info/sct','Accidental poisoning caused by pentazocine (disorder)','216494005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_241750009','241750009','http://snomed.info/sct','Poisoning caused by dihydrocodeine (disorder)','241750009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_242253008','242253008','http://snomed.info/sct','Overdose of opiate (disorder)','242253008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_242829007','242829007','http://snomed.info/sct','Intentional diamorphine overdose (disorder)','242829007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_242830002','242830002','http://snomed.info/sct','Intentional dihydrocodeine overdose (disorder)','242830002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_242831003','242831003','http://snomed.info/sct','Intentional methadone overdose (disorder)','242831003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_290151009','290151009','http://snomed.info/sct','Intentional pentazocine poisoning (disorder)','290151009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_290153007','290153007','http://snomed.info/sct','Phenazocine poisoning (disorder)','290153007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_290154001','290154001','http://snomed.info/sct','Accidental phenazocine poisoning (disorder)','290154001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_290155000','290155000','http://snomed.info/sct','Intentional phenazocine poisoning (disorder)','290155000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_290157008','290157008','http://snomed.info/sct','Methadone analog poisoning (disorder)','290157008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_290158003','290158003','http://snomed.info/sct','Dextromoramide poisoning (disorder)','290158003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_290159006','290159006','http://snomed.info/sct','Accidental dextromoramide poisoning (disorder)','290159006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_290160001','290160001','http://snomed.info/sct','Intentional dextromoramide poisoning (disorder)','290160001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_290162009','290162009','http://snomed.info/sct','Dextropropoxyphene poisoning (disorder)','290162009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_290163004','290163004','http://snomed.info/sct','Accidental dextropropoxyphene poisoning (disorder)','290163004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_290164005','290164005','http://snomed.info/sct','Intentional dextropropoxyphene poisoning (disorder)','290164005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_290166007','290166007','http://snomed.info/sct','Dipipanone poisoning (disorder)','290166007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_290167003','290167003','http://snomed.info/sct','Accidental dipipanone poisoning (disorder)','290167003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_290168008','290168008','http://snomed.info/sct','Intentional dipipanone poisoning (disorder)','290168008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_290171000','290171000','http://snomed.info/sct','Intentional methadone poisoning (disorder)','290171000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_290173002','290173002','http://snomed.info/sct','Morphinan opioid poisoning (disorder)','290173002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_290174008','290174008','http://snomed.info/sct','Buprenorphine poisoning (disorder)','290174008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_290175009','290175009','http://snomed.info/sct','Accidental buprenorphine poisoning (disorder)','290175009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_290176005','290176005','http://snomed.info/sct','Intentional buprenorphine poisoning (disorder)','290176005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_290179003','290179003','http://snomed.info/sct','Intentional poisoning caused by codeine (disorder)','290179003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_290182008','290182008','http://snomed.info/sct','Intentional heroin poisoning (disorder)','290182008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_290184009','290184009','http://snomed.info/sct','Accidental poisoning caused by dihydrocodeine (disorder)','290184009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_290185005','290185005','http://snomed.info/sct','Intentional poisoning caused by dihydrocodeine (disorder)','290185005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_290188007','290188007','http://snomed.info/sct','Nalbuphine poisoning (disorder)','290188007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_290189004','290189004','http://snomed.info/sct','Accidental nalbuphine poisoning (disorder)','290189004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_290190008','290190008','http://snomed.info/sct','Intentional nalbuphine poisoning (disorder)','290190008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_290193005','290193005','http://snomed.info/sct','Intentional morphine poisoning (disorder)','290193005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_290196002','290196002','http://snomed.info/sct','Pethidine analog poisoning (disorder)','290196002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_290197006','290197006','http://snomed.info/sct','Alfentanil poisoning (disorder)','290197006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_290198001','290198001','http://snomed.info/sct','Accidental alfentanil poisoning (disorder)','290198001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_290199009','290199009','http://snomed.info/sct','Intentional alfentanil poisoning (disorder)','290199009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_290201006','290201006','http://snomed.info/sct','Fentanyl poisoning (disorder)','290201006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_290202004','290202004','http://snomed.info/sct','Accidental fentanyl poisoning (disorder)','290202004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_290203009','290203009','http://snomed.info/sct','Intentional fentanyl poisoning (disorder)','290203009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_290206001','290206001','http://snomed.info/sct','Intentional pethidine poisoning (disorder)','290206001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_290208000','290208000','http://snomed.info/sct','Phenoperidine poisoning (disorder)','290208000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_290209008','290209008','http://snomed.info/sct','Accidental phenoperidine poisoning (disorder)','290209008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_290210003','290210003','http://snomed.info/sct','Intentional phenoperidine poisoning (disorder)','290210003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_290212006','290212006','http://snomed.info/sct','Meptazinol poisoning (disorder)','290212006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_290213001','290213001','http://snomed.info/sct','Accidental meptazinol poisoning (disorder)','290213001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_290214007','290214007','http://snomed.info/sct','Intentional meptazinol poisoning (disorder)','290214007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_290216009','290216009','http://snomed.info/sct','Levorphanol poisoning (disorder)','290216009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_290217000','290217000','http://snomed.info/sct','Accidental levorphanol poisoning (disorder)','290217000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_290218005','290218005','http://snomed.info/sct','Intentional levorphanol poisoning (disorder)','290218005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_295140007','295140007','http://snomed.info/sct','Pentazocine overdose (disorder)','295140007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_295141006','295141006','http://snomed.info/sct','Accidental pentazocine overdose (disorder)','295141006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_295142004','295142004','http://snomed.info/sct','Intentional pentazocine overdose (disorder)','295142004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_295144003','295144003','http://snomed.info/sct','Phenazocine overdose (disorder)','295144003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_295145002','295145002','http://snomed.info/sct','Accidental phenazocine overdose (disorder)','295145002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_295146001','295146001','http://snomed.info/sct','Intentional phenazocine overdose (disorder)','295146001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_295148000','295148000','http://snomed.info/sct','Methadone analog overdose (disorder)','295148000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_295149008','295149008','http://snomed.info/sct','Dextromoramide overdose (disorder)','295149008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_295150008','295150008','http://snomed.info/sct','Accidental dextromoramide overdose (disorder)','295150008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_295151007','295151007','http://snomed.info/sct','Intentional dextromoramide overdose (disorder)','295151007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_295153005','295153005','http://snomed.info/sct','Dextropropoxyphene overdose (disorder)','295153005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_295154004','295154004','http://snomed.info/sct','Accidental dextropropoxyphene overdose (disorder)','295154004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_295155003','295155003','http://snomed.info/sct','Intentional dextropropoxyphene overdose (disorder)','295155003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_295157006','295157006','http://snomed.info/sct','Dipipanone overdose (disorder)','295157006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_295158001','295158001','http://snomed.info/sct','Accidental dipipanone overdose (disorder)','295158001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_295159009','295159009','http://snomed.info/sct','Intentional dipipanone overdose (disorder)','295159009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_295161000','295161000','http://snomed.info/sct','Methadone overdose (disorder)','295161000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_295163002','295163002','http://snomed.info/sct','Accidental methadone overdose (disorder)','295163002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_295165009','295165009','http://snomed.info/sct','Morphinan opioid overdose (disorder)','295165009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_295166005','295166005','http://snomed.info/sct','Buprenorphine overdose (disorder)','295166005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_295167001','295167001','http://snomed.info/sct','Accidental buprenorphine overdose (disorder)','295167001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_295168006','295168006','http://snomed.info/sct','Intentional buprenorphine overdose (disorder)','295168006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_295170002','295170002','http://snomed.info/sct','Overdose of codeine (disorder)','295170002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_295171003','295171003','http://snomed.info/sct','Accidental overdose by codeine (disorder)','295171003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_295172005','295172005','http://snomed.info/sct','Intentional overdose by codeine (disorder)','295172005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_295174006','295174006','http://snomed.info/sct','Heroin overdose (disorder)','295174006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_295175007','295175007','http://snomed.info/sct','Accidental heroin overdose (disorder)','295175007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_295177004','295177004','http://snomed.info/sct','Overdose of dihydrocodeine (disorder)','295177004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_295178009','295178009','http://snomed.info/sct','Accidental overdose by dihydrocodeine (disorder)','295178009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_295180003','295180003','http://snomed.info/sct','Nalbuphine overdose (disorder)','295180003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_295181004','295181004','http://snomed.info/sct','Accidental nalbuphine overdose (disorder)','295181004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_295182006','295182006','http://snomed.info/sct','Intentional nalbuphine overdose (disorder)','295182006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_295184007','295184007','http://snomed.info/sct','Morphine overdose (disorder)','295184007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_295185008','295185008','http://snomed.info/sct','Accidental morphine overdose (disorder)','295185008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_295186009','295186009','http://snomed.info/sct','Intentional morphine overdose (disorder)','295186009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_295188005','295188005','http://snomed.info/sct','Pethidine analog overdose (disorder)','295188005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_295189002','295189002','http://snomed.info/sct','Alfentanil overdose (disorder)','295189002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_295190006','295190006','http://snomed.info/sct','Accidental alfentanil overdose (disorder)','295190006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_295191005','295191005','http://snomed.info/sct','Intentional alfentanil overdose (disorder)','295191005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_295193008','295193008','http://snomed.info/sct','Fentanyl overdose (disorder)','295193008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_295194002','295194002','http://snomed.info/sct','Accidental fentanyl overdose (disorder)','295194002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_295195001','295195001','http://snomed.info/sct','Intentional fentanyl overdose (disorder)','295195001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_295197009','295197009','http://snomed.info/sct','Pethidine overdose (disorder)','295197009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_295198004','295198004','http://snomed.info/sct','Accidental pethidine overdose (disorder)','295198004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_295199007','295199007','http://snomed.info/sct','Intentional pethidine overdose (disorder)','295199007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_295201009','295201009','http://snomed.info/sct','Phenoperidine overdose (disorder)','295201009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_295202002','295202002','http://snomed.info/sct','Accidental phenoperidine overdose (disorder)','295202002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_295203007','295203007','http://snomed.info/sct','Intentional phenoperidine overdose (disorder)','295203007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_295205000','295205000','http://snomed.info/sct','Meptazinol overdose (disorder)','295205000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_295206004','295206004','http://snomed.info/sct','Accidental meptazinol overdose (disorder)','295206004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_295207008','295207008','http://snomed.info/sct','Intentional meptazinol overdose (disorder)','295207008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_295209006','295209006','http://snomed.info/sct','Levorphanol overdose (disorder)','295209006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_295210001','295210001','http://snomed.info/sct','Accidental levorphanol overdose (disorder)','295210001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_295211002','295211002','http://snomed.info/sct','Intentional levorphanol overdose (disorder)','295211002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_296515004','296515004','http://snomed.info/sct','Opiate antagonist overdose (disorder)','296515004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_297199006','297199006','http://snomed.info/sct','Accidental overdose of opiate (disorder)','297199006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_432353006','432353006','http://snomed.info/sct','Accidental poisoning caused by opiate agonist (disorder)','432353006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_461001000124107','461001000124107','http://snomed.info/sct','Suicide attempt by heroin overdose (event)','461001000124107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_461011000124105','461011000124105','http://snomed.info/sct','Suicide attempt by fentanyl overdose (event)','461011000124105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_461041000124109','461041000124109','http://snomed.info/sct','Suicide attempt by methadone overdose (event)','461041000124109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_47836003','47836003','http://snomed.info/sct','Poisoning caused by morphine (disorder)','47836003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_60199004','60199004','http://snomed.info/sct','Poisoning caused by methadone (disorder)','60199004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_68099003','68099003','http://snomed.info/sct','Poisoning caused by codeine (disorder)','68099003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1063_74264003','74264003','http://snomed.info/sct','Poisoning caused by opium alkaloid (disorder)','74264003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.360_A05.1','A05.1','http://hl7.org/fhir/sid/icd-10-cm','Botulism food poisoning','A051','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.360_A48.52','A48.52','http://hl7.org/fhir/sid/icd-10-cm','Wound botulism','A4852','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.360_A48.51','A48.51','http://hl7.org/fhir/sid/icd-10-cm','Infant botulism','A4851','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_1010606009','1010606009','http://snomed.info/sct','Waardenburg syndrome type 1 (disorder)','1010606009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_1010610007','1010610007','http://snomed.info/sct','Retinitis pigmentosa-deafness syndrome type 3 (disorder)','1010610007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_1010636000','1010636000','http://snomed.info/sct','Waardenburg syndrome type 2 (disorder)','1010636000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_1010638004','1010638004','http://snomed.info/sct','Waardenburg syndrome type 3 (disorder)','1010638004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_10170007','10170007','http://snomed.info/sct','Black locks, oculocutaneous albinism, AND deafness of the sensorineural type (disorder)','10170007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_111339003','111339003','http://snomed.info/sct','Congenital anomaly of ear with impairment of hearing (disorder)','111339003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_1167372000','1167372000','http://snomed.info/sct','X-linked external auditory canal atresia, dilated internal auditory canal, facial dysmorphism syndrome (disorder)','1167372000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_1208614008','1208614008','http://snomed.info/sct','Autosomal dominant deafness with onychodystrophy syndrome (disorder)','1208614008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_1228871002','1228871002','http://snomed.info/sct','Proliferating cell nuclear antigen-related progressive neurodegenerative photosensitivity syndrome (disorder)','1228871002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_1230014007','1230014007','http://snomed.info/sct','Duane retraction syndrome with congenital deafness (disorder)','1230014007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_1271009','1271009','http://snomed.info/sct','Knuckle pads, leukonychia, sensorineural deafness, palmoplantar hyperkeratosis syndrome (disorder)','1271009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_15984431000119109','15984431000119109','http://snomed.info/sct','Impairment of hearing of right ear co-occurrent and due to congenital ear malformation (disorder)','15984431000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_15984471000119107','15984471000119107','http://snomed.info/sct','Impairment of hearing of left ear co-occurrent and due to congenital ear malformation (disorder)','15984471000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_15984511000119103','15984511000119103','http://snomed.info/sct','Impairment of hearing of bilateral ears co-occurrent and due to congenital ear malformation (disorder)','15984511000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_15984551000119102','15984551000119102','http://snomed.info/sct','Impairment of hearing of right ear co-occurrent and due to congenital external ear malformation (disorder)','15984551000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_15984591000119107','15984591000119107','http://snomed.info/sct','Impairment of hearing of left ear co-occurrent and due to congenital external ear malformation (disorder)','15984591000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_15984631000119107','15984631000119107','http://snomed.info/sct','Impairment of hearing of bilateral ears co-occurrent and due to congenital external ear malformation (disorder)','15984631000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_232057003','232057003','http://snomed.info/sct','Usher syndrome type 1 (disorder)','232057003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_232058008','232058008','http://snomed.info/sct','Usher syndrome type 2 (disorder)','232058008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_232335002','232335002','http://snomed.info/sct','Earpit syndrome (disorder)','232335002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_236529001','236529001','http://snomed.info/sct','Prune belly syndrome with pulmonic stenosis, intellectual disability and deafness (disorder)','236529001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_237617006','237617006','http://snomed.info/sct','Megaloblastic anemia, thiamine-responsive, with diabetes mellitus and sensorineural deafness (disorder)','237617006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_238047006','238047006','http://snomed.info/sct','Beta-D-mannosidosis (disorder)','238047006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_239010003','239010003','http://snomed.info/sct','Alopecia, onychodysplasia, hypohidrosis, deafness ectodermal dysplasia (disorder)','239010003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_239059004','239059004','http://snomed.info/sct','Keratitis ichthyosis and deafness syndrome (disorder)','239059004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_24559001','24559001','http://snomed.info/sct','Mutilating keratoderma (disorder)','24559001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_2625009','2625009','http://snomed.info/sct','Senter syndrome (disorder)','2625009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_290006','290006','http://snomed.info/sct','Melnick-Fraser syndrome (disorder)','290006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_373905003','373905003','http://snomed.info/sct','Jervell and Lange-Nielsen syndrome (disorder)','373905003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_403780007','403780007','http://snomed.info/sct','Autosomal recessive keratitis-ichthyosis-deafness syndrome (disorder)','403780007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_403805009','403805009','http://snomed.info/sct','Albinism-deafness syndrome of Tietz (disorder)','403805009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_47434006','47434006','http://snomed.info/sct','Waardenburg syndrome (disorder)','47434006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_54036001','54036001','http://snomed.info/sct','Oto-palato-digital syndrome, type I (disorder)','54036001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_57838006','57838006','http://snomed.info/sct','Retinitis pigmentosa-deafness syndrome (disorder)','57838006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_67817003','67817003','http://snomed.info/sct','Pili torti-deafness syndrome (disorder)','67817003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_698615007','698615007','http://snomed.info/sct','Congenital deaf mutism (disorder)','698615007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_699238006','699238006','http://snomed.info/sct','Congenital prelingual deafness (disorder)','699238006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_699316006','699316006','http://snomed.info/sct','Myhre syndrome (disorder)','699316006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_700112007','700112007','http://snomed.info/sct','Bartter syndrome type 4 (disorder)','700112007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_702360007','702360007','http://snomed.info/sct','Congenital deafness with labyrinthine aplasia, microtia and microdontia (disorder)','702360007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_702362004','702362004','http://snomed.info/sct','Craniofacial deafness hand syndrome (disorder)','702362004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_70348004','70348004','http://snomed.info/sct','Pendred''s syndrome (disorder)','70348004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_711409002','711409002','http://snomed.info/sct','3-methylglutaconic aciduria type IV with sensorineural deafness, encephalopathy and Leigh-like syndrome (disorder)','711409002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_715527006','715527006','http://snomed.info/sct','Deafness and oligodontia syndrome (disorder)','715527006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_715529009','715529009','http://snomed.info/sct','Progressive deafness with stapes fixation (disorder)','715529009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_715952000','715952000','http://snomed.info/sct','Waardenburg Shah syndrome (disorder)','715952000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_716238003','716238003','http://snomed.info/sct','Deafness with epiphyseal dysplasia and short stature syndrome (disorder)','716238003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_716243005','716243005','http://snomed.info/sct','Deafness with malformation of ear and facial palsy syndrome (disorder)','716243005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_716245003','716245003','http://snomed.info/sct','Deafness craniofacial syndrome (disorder)','716245003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_717183001','717183001','http://snomed.info/sct','Keratoderma hereditarium mutilans with ichthyosis syndrome (disorder)','717183001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_717761005','717761005','http://snomed.info/sct','Choroideremia with deafness and obesity syndrome (disorder)','717761005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_717791000','717791000','http://snomed.info/sct','Bartter syndrome type 4a (disorder)','717791000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_717944002','717944002','http://snomed.info/sct','Branchiogenic deafness syndrome (disorder)','717944002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_718714006','718714006','http://snomed.info/sct','Deafness and hypogonadism syndrome (disorder)','718714006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_719305006','719305006','http://snomed.info/sct','Stapes ankylosis with broad thumb and toe syndrome (disorder)','719305006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_719689005','719689005','http://snomed.info/sct','Multiple epiphyseal dysplasia Beighton type (disorder)','719689005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_719800009','719800009','http://snomed.info/sct','Deafness, onychodystrophy, osteodystrophy, intellectual disability syndrome (disorder)','719800009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_720567008','720567008','http://snomed.info/sct','Bosley Salih Alorainy syndrome (disorder)','720567008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_720612000','720612000','http://snomed.info/sct','Cardiospondylocarpofacial syndrome (disorder)','720612000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_720957007','720957007','http://snomed.info/sct','Deafness with skeletal dysplasia and lip granuloma syndrome (disorder)','720957007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_721087008','721087008','http://snomed.info/sct','Deafness and intellectual disability Martin Probst type syndrome (disorder)','721087008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_721221000','721221000','http://snomed.info/sct','Hirschsprung disease with deafness and polydactyly syndrome (disorder)','721221000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_721584005','721584005','http://snomed.info/sct','Johnson neuroectodermal syndrome (disorder)','721584005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_722019000','722019000','http://snomed.info/sct','Oculootoradial syndrome (disorder)','722019000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_722213009','722213009','http://snomed.info/sct','Severe X-linked intellectual disability Gustavson type (disorder)','722213009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_722285005','722285005','http://snomed.info/sct','Albinism with deafness syndrome (disorder)','722285005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_722378009','722378009','http://snomed.info/sct','Congenital cataract with deafness and hypogonadism syndrome (disorder)','722378009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_722389002','722389002','http://snomed.info/sct','Congenital hereditary facial paralysis with variable hearing loss syndrome (disorder)','722389002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_722476007','722476007','http://snomed.info/sct','Thickened earlobe with conductive deafness syndrome (disorder)','722476007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_725137007','725137007','http://snomed.info/sct','Neutropenia, monocytopenia, deafness syndrome (disorder)','725137007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_726621009','726621009','http://snomed.info/sct','Caudal appendage deafness syndrome (disorder)','726621009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_73119000','73119000','http://snomed.info/sct','Retinitis pigmentosa-deafness-ataxia syndrome (disorder)','73119000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_732248005','732248005','http://snomed.info/sct','Coxoauricular syndrome (disorder)','732248005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_733065003','733065003','http://snomed.info/sct','Myoclonus, cerebellar ataxia, deafness syndrome (disorder)','733065003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_733069009','733069009','http://snomed.info/sct','Deafness, vitiligo, achalasia syndrome (disorder)','733069009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_733071009','733071009','http://snomed.info/sct','Deafness, small bowel diverticulosis, neuropathy syndrome (disorder)','733071009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_733089005','733089005','http://snomed.info/sct','Spastic paraplegia, nephritis, deafness syndrome (disorder)','733089005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_733419006','733419006','http://snomed.info/sct','Metaphyseal dysostosis, intellectual disability, conductive deafness syndrome (disorder)','733419006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_734022008','734022008','http://snomed.info/sct','Wolfram-like syndrome (disorder)','734022008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_763136000','763136000','http://snomed.info/sct','Charcot-Marie-Tooth disease, deafness, intellectual disability syndrome (disorder)','763136000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_763279007','763279007','http://snomed.info/sct','Facial dysmorphism, conductive hearing loss, heart defect syndrome (disorder)','763279007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_763688008','763688008','http://snomed.info/sct','Deafness, encephaloneuropathy, obesity, valvulopathy syndrome (disorder)','763688008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_763774001','763774001','http://snomed.info/sct','Keipert syndrome (disorder)','763774001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_764098007','764098007','http://snomed.info/sct','Prelingual non-syndromic genetic deafness (disorder)','764098007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_764810000','764810000','http://snomed.info/sct','Branchiootic syndrome (disorder)','764810000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_765325002','765325002','http://snomed.info/sct','Peripheral demyelinating neuropathy, central dysmyelinating leukodystrophy, Waardenburg syndrome, Hirschsprung disease (disorder)','765325002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_766249007','766249007','http://snomed.info/sct','Deafness, nephritis, anorectal malformation syndrome (disorder)','766249007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_766870005','766870005','http://snomed.info/sct','Epiphyseal dysplasia, hearing loss, dysmorphism syndrome (disorder)','766870005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_770751003','770751003','http://snomed.info/sct','Severe motor and intellectual disabilities, sensorineural deafness, dystonia syndrome (disorder)','770751003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_770784003','770784003','http://snomed.info/sct','Sinoatrial node dysfunction and deafness (disorder)','770784003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_770944002','770944002','http://snomed.info/sct','Oculootodental syndrome (disorder)','770944002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_773398005','773398005','http://snomed.info/sct','Congenital cataract, progressive muscular hypotonia, hearing loss, developmental delay syndrome (disorder)','773398005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_773406003','773406003','http://snomed.info/sct','Mandibular hypoplasia, deafness, progeroid syndrome (disorder)','773406003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_773575001','773575001','http://snomed.info/sct','Ocular albinism with congenital sensorineural deafness (disorder)','773575001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_773583007','773583007','http://snomed.info/sct','Aphonia, deafness, retinal dystrophy, bifid halluces, intellectual disability syndrome (disorder)','773583007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_773648002','773648002','http://snomed.info/sct','Congenital cataract, hearing loss, severe developmental delay syndrome (disorder)','773648002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_773665006','773665006','http://snomed.info/sct','Hypogonadotropic hypogonadism, severe microcephaly, sensorineural hearing loss, dysmorphism syndrome (disorder)','773665006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_773667003','773667003','http://snomed.info/sct','Hypertelorism, preauricular sinus, punctual pits, deafness syndrome (disorder)','773667003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_773735007','773735007','http://snomed.info/sct','Deafness with onychodystrophy syndrome (disorder)','773735007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_782942003','782942003','http://snomed.info/sct','Renal caliceal diverticuli and deafness syndrome (disorder)','782942003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_783097004','783097004','http://snomed.info/sct','Stickler syndrome type 3 (disorder)','783097004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_783742004','783742004','http://snomed.info/sct','Conductive hearing loss, malformation of external ear syndrome (disorder)','783742004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_79665007','79665007','http://snomed.info/sct','Wildervanck syndrome (disorder)','79665007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_93466004','93466004','http://snomed.info/sct','Gonadal dysgenesis with auditory dysfunction, autosomal recessive inheritance (disorder)','93466004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_95827002','95827002','http://snomed.info/sct','Congenital hearing disorder (disorder)','95827002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_95828007','95828007','http://snomed.info/sct','Congenital deafness (disorder)','95828007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_1172635005','1172635005','http://snomed.info/sct','Split-foot malformation, mesoaxial polydactyly syndrome (disorder)','1172635005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_715506001','715506001','http://snomed.info/sct','Phocomelia, ectrodactyly, deafness and sinus arrhythmia syndrome (disorder)','715506001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_717909004','717909004','http://snomed.info/sct','Bilateral microtia with deafness and cleft palate syndrome (disorder)','717909004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_718574003','718574003','http://snomed.info/sct','Cleft palate with coloboma of eye and deafness syndrome (disorder)','718574003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_777998000','777998000','http://snomed.info/sct','Temtamy preaxial brachydactyly syndrome (disorder)','777998000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_1187039001','1187039001','http://snomed.info/sct','Cleft lip and palate, craniofacial dysmorphism, congenital heart defect, hearing loss syndrome (disorder)','1187039001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_186570004','186570004','http://snomed.info/sct','Rubella deafness (disorder)','186570004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_700453005','700453005','http://snomed.info/sct','Congenital sensorineural hearing loss (disorder)','700453005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_716007007','716007007','http://snomed.info/sct','Cleft palate and cleft lip with deafness and sacral lipoma syndrome (disorder)','716007007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_737344003','737344003','http://snomed.info/sct','Congenital conductive hearing loss (disorder)','737344003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_737377004','737377004','http://snomed.info/sct','Congenital mixed conductive and sensorineural hearing loss (disorder)','737377004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2150_778006008','778006008','http://snomed.info/sct','Autosomal dominant aplasia and myelodysplasia (disorder)','778006008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.120_1089801000119108','1089801000119108','http://snomed.info/sct','Meningococcal retrobulbar neuritis (disorder)','1089801000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.120_127181000119102','127181000119102','http://snomed.info/sct','Septic shock co-occurrent with acute organ dysfunction caused by Meningococcus (disorder)','127181000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.120_127311000119106','127311000119106','http://snomed.info/sct','Sepsis caused by Meningococcus (disorder)','127311000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.120_186365005','186365005','http://snomed.info/sct','Acute meningococcemia (finding)','186365005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.120_194906004','194906004','http://snomed.info/sct','Acute meningococcal pericarditis (disorder)','194906004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.120_194950003','194950003','http://snomed.info/sct','Acute myocarditis - meningococcal (disorder)','194950003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.120_232402006','232402006','http://snomed.info/sct','Meningococcal pharyngitis (disorder)','232402006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.120_233608005','233608005','http://snomed.info/sct','Meningococcal pneumonia (disorder)','233608005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.120_23511006','23511006','http://snomed.info/sct','Meningococcal infectious disease (disorder)','23511006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.120_238425003','238425003','http://snomed.info/sct','Meningococcal rash (disorder)','238425003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.120_240427005','240427005','http://snomed.info/sct','Meningococcal eye disease (disorder)','240427005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.120_33618002','33618002','http://snomed.info/sct','Meningococcal carditis (disorder)','33618002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.120_34845009','34845009','http://snomed.info/sct','Meningococcal endocarditis (disorder)','34845009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.120_36102002','36102002','http://snomed.info/sct','Acute adrenal insufficiency with meningococcemia (disorder)','36102002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.120_4089001','4089001','http://snomed.info/sct','Meningococcemia (finding)','4089001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.120_66704002','66704002','http://snomed.info/sct','Meningococcal pericarditis (disorder)','66704002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.120_707225006','707225006','http://snomed.info/sct','Invasive meningococcal disease (disorder)','707225006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.120_73431005','73431005','http://snomed.info/sct','Meningococcal optic neuritis (disorder)','73431005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.120_91468009','91468009','http://snomed.info/sct','Meningococcal myocarditis (disorder)','91468009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.120_94151004','94151004','http://snomed.info/sct','Meningococcal conjunctivitis (disorder)','94151004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.120_9467007','9467007','http://snomed.info/sct','Meningococcal arthropathy (disorder)','9467007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.120_192644005','192644005','http://snomed.info/sct','Meningococcal meningitis (disorder)','192644005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.120_313437008','313437008','http://snomed.info/sct','Meningococcal meningitis with acute meningococcal septicemia (disorder)','313437008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.120_314130008','314130008','http://snomed.info/sct','Meningococcal meningitis with meningococcal septicemia (disorder)','314130008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.120_18071005','18071005','http://snomed.info/sct','Meningococcal encephalitis (disorder)','18071005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.120_860805006','860805006','http://snomed.info/sct','Encephalomyelitis caused by Neisseria meningitidis (disorder)','860805006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.362_128215004','128215004','http://snomed.info/sct','Leprosy neuropathy (disorder)','128215004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.362_14386001','14386001','http://snomed.info/sct','Indeterminate leprosy (disorder)','14386001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.362_187259004','187259004','http://snomed.info/sct','Sequelae of leprosy (disorder)','187259004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.362_21560005','21560005','http://snomed.info/sct','Lepromatous leprosy (disorder)','21560005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.362_228007','228007','http://snomed.info/sct','Lucio phenomenon (disorder)','228007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.362_240401005','240401005','http://snomed.info/sct','Neural type tuberculoid leprosy (disorder)','240401005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.362_240402003','240402003','http://snomed.info/sct','Borderline tuberculoid leprosy (disorder)','240402003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.362_240403008','240403008','http://snomed.info/sct','Borderline lepromatous leprosy (disorder)','240403008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.362_240404002','240404002','http://snomed.info/sct','Diffuse lepromatous leprosy (disorder)','240404002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.362_240405001','240405001','http://snomed.info/sct','Leprosy reversal reaction (disorder)','240405001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.362_240406000','240406000','http://snomed.info/sct','Lepromatous skin complications (disorder)','240406000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.362_240407009','240407009','http://snomed.info/sct','Delayed hypersensitivity reaction co-occurrent and due to leprosy (disorder)','240407009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.362_240408004','240408004','http://snomed.info/sct','Upgrading type 1 lepra reaction (disorder)','240408004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.362_240409007','240409007','http://snomed.info/sct','Downgrading type 1 lepra reaction (disorder)','240409007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.362_240410002','240410002','http://snomed.info/sct','Immune complex reaction co-occurrent and due to multibacillary leprosy (disorder)','240410002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.362_240412005','240412005','http://snomed.info/sct','Histioid leprosy (disorder)','240412005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.362_400008009','400008009','http://snomed.info/sct','Borderline leprosy (disorder)','400008009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.362_400154003','400154003','http://snomed.info/sct','Midborderline leprosy (disorder)','400154003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.362_414600000','414600000','http://snomed.info/sct','Lepromatous anterior uveitis (disorder)','414600000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.362_416257001','416257001','http://snomed.info/sct','Multibacillary leprosy (disorder)','416257001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.362_416483009','416483009','http://snomed.info/sct','Paucibacillary leprosy (disorder)','416483009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.362_416597004','416597004','http://snomed.info/sct','Dapsone resistant leprosy (disorder)','416597004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.362_5631000124102','5631000124102','http://snomed.info/sct','Facies leprosa (disorder)','5631000124102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.362_711171008','711171008','http://snomed.info/sct','Resorption of anterior maxillary alveolar bone and anterior nasal spine due to lepromatous leprosy (disorder)','711171008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.362_838360003','838360003','http://snomed.info/sct','Arthritis caused by Mycobacterium leprae (disorder)','838360003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.362_870352009','870352009','http://snomed.info/sct','Neuropathic ulceration of skin caused by Mycobacterium leprae (disorder)','870352009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.362_70143003','70143003','http://snomed.info/sct','Tuberculoid leprosy (disorder)','70143003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.362_81004002','81004002','http://snomed.info/sct','Leprosy (disorder)','81004002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.121_A39.1','A39.1','http://hl7.org/fhir/sid/icd-10-cm','Waterhouse-Friderichsen syndrome','A391','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.121_A39.2','A39.2','http://hl7.org/fhir/sid/icd-10-cm','Acute meningococcemia','A392','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.121_A39.4','A39.4','http://hl7.org/fhir/sid/icd-10-cm','Meningococcemia, unspecified','A394','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.121_A39.50','A39.50','http://hl7.org/fhir/sid/icd-10-cm','Meningococcal carditis, unspecified','A3950','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.121_A39.51','A39.51','http://hl7.org/fhir/sid/icd-10-cm','Meningococcal endocarditis','A3951','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.121_A39.52','A39.52','http://hl7.org/fhir/sid/icd-10-cm','Meningococcal myocarditis','A3952','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.121_A39.53','A39.53','http://hl7.org/fhir/sid/icd-10-cm','Meningococcal pericarditis','A3953','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.121_A39.82','A39.82','http://hl7.org/fhir/sid/icd-10-cm','Meningococcal retrobulbar neuritis','A3982','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.121_A39.83','A39.83','http://hl7.org/fhir/sid/icd-10-cm','Meningococcal arthritis','A3983','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.121_A39.89','A39.89','http://hl7.org/fhir/sid/icd-10-cm','Other meningococcal infections','A3989','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.121_A39.9','A39.9','http://hl7.org/fhir/sid/icd-10-cm','Meningococcal infection, unspecified','A399','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.121_A39.0','A39.0','http://hl7.org/fhir/sid/icd-10-cm','Meningococcal meningitis','A390','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.121_A39.81','A39.81','http://hl7.org/fhir/sid/icd-10-cm','Meningococcal encephalitis','A3981','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.363_A30','A30','http://hl7.org/fhir/sid/icd-10-cm','Leprosy [Hansen''s disease]','A30','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.363_A30.0','A30.0','http://hl7.org/fhir/sid/icd-10-cm','Indeterminate leprosy','A300','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.363_A30.1','A30.1','http://hl7.org/fhir/sid/icd-10-cm','Tuberculoid leprosy','A301','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.363_A30.2','A30.2','http://hl7.org/fhir/sid/icd-10-cm','Borderline tuberculoid leprosy','A302','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.363_A30.3','A30.3','http://hl7.org/fhir/sid/icd-10-cm','Borderline leprosy','A303','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.363_A30.4','A30.4','http://hl7.org/fhir/sid/icd-10-cm','Borderline lepromatous leprosy','A304','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.363_A30.5','A30.5','http://hl7.org/fhir/sid/icd-10-cm','Lepromatous leprosy','A305','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.363_A30.8','A30.8','http://hl7.org/fhir/sid/icd-10-cm','Other forms of leprosy','A308','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.363_A30.9','A30.9','http://hl7.org/fhir/sid/icd-10-cm','Leprosy, unspecified','A309','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.363_B92','B92','http://hl7.org/fhir/sid/icd-10-cm','Sequelae of leprosy','B92','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.123_A80','A80','http://hl7.org/fhir/sid/icd-10-cm','Acute poliomyelitis','A80','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.123_A80.1','A80.1','http://hl7.org/fhir/sid/icd-10-cm','Acute paralytic poliomyelitis, wild virus, imported','A801','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.123_A80.2','A80.2','http://hl7.org/fhir/sid/icd-10-cm','Acute paralytic poliomyelitis, wild virus, indigenous','A802','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.123_A80.3','A80.3','http://hl7.org/fhir/sid/icd-10-cm','Acute paralytic poliomyelitis, other and unspecified','A803','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.123_A80.30','A80.30','http://hl7.org/fhir/sid/icd-10-cm','Acute paralytic poliomyelitis, unspecified','A8030','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.123_A80.39','A80.39','http://hl7.org/fhir/sid/icd-10-cm','Other acute paralytic poliomyelitis','A8039','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.123_A80.4','A80.4','http://hl7.org/fhir/sid/icd-10-cm','Acute nonparalytic poliomyelitis','A804','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.123_A80.9','A80.9','http://hl7.org/fhir/sid/icd-10-cm','Acute poliomyelitis, unspecified','A809','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.123_A80.0','A80.0','http://hl7.org/fhir/sid/icd-10-cm','Acute paralytic poliomyelitis, vaccine-associated','A800','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.365_17919002','17919002','http://snomed.info/sct','Silica granuloma of skin (disorder)','17919002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.365_233760007','233760007','http://snomed.info/sct','Acute silicosis (disorder)','233760007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.365_233761006','233761006','http://snomed.info/sct','Subacute silicosis (disorder)','233761006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.365_233762004','233762004','http://snomed.info/sct','Chronic silicosis (disorder)','233762004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.365_233763009','233763009','http://snomed.info/sct','Silicotuberculosis (disorder)','233763009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.365_33548005','33548005','http://snomed.info/sct','Anthracosilicosis (disorder)','33548005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.365_34004002','34004002','http://snomed.info/sct','Siderosilicosis (disorder)','34004002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.365_40640008','40640008','http://snomed.info/sct','Massive fibrosis of lung co-occurrent and due to silicosis (disorder)','40640008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.365_426853005','426853005','http://snomed.info/sct','Pneumoconiosis caused by silicate (disorder)','426853005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.365_47515009','47515009','http://snomed.info/sct','Simple silicosis (disorder)','47515009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.365_49840000','49840000','http://snomed.info/sct','Complicated silicosis (disorder)','49840000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.365_64631008','64631008','http://snomed.info/sct','Fullers'' earth disease (disorder)','64631008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.365_805002','805002','http://snomed.info/sct','Pneumoconiosis caused by silica (disorder)','805002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.124_14535005','14535005','http://snomed.info/sct','Acute nonparalytic poliomyelitis (disorder)','14535005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.124_172672006','172672006','http://snomed.info/sct','Acute poliomyelitis with paralysis except bulbar (disorder)','172672006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.124_186476008','186476008','http://snomed.info/sct','Acute paralytic non-bulbar poliomyelitis (disorder)','186476008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.124_186479001','186479001','http://snomed.info/sct','Acute paralytic poliomyelitis, wild virus, imported (disorder)','186479001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.124_186480003','186480003','http://snomed.info/sct','Acute paralytic poliomyelitis, wild virus, indigenous (disorder)','186480003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.124_240459003','240459003','http://snomed.info/sct','Abortive poliomyelitis (disorder)','240459003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.124_240460008','240460008','http://snomed.info/sct','Acute paralytic poliomyelitis (disorder)','240460008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.124_30057005','30057005','http://snomed.info/sct','Polioencephalopathy (disorder)','30057005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.124_397928009','397928009','http://snomed.info/sct','Infantile paralysis (disorder)','397928009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.124_398102009','398102009','http://snomed.info/sct','Acute poliomyelitis (disorder)','398102009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.124_398256009','398256009','http://snomed.info/sct','Epidemic acute poliomyelitis (disorder)','398256009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.124_398327006','398327006','http://snomed.info/sct','Anterior acute poliomyelitis (disorder)','398327006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.124_429297003','429297003','http://snomed.info/sct','Acute nonparalytic poliomyelitis caused by human poliovirus 1 (disorder)','429297003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.124_446311006','446311006','http://snomed.info/sct','Acute bulbar poliomyelitis caused by Human poliovirus 2 (disorder)','446311006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.124_446312004','446312004','http://snomed.info/sct','Acute poliomyelitis caused by Human poliovirus 1 (disorder)','446312004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.124_446957000','446957000','http://snomed.info/sct','Acute bulbar poliomyelitis caused by Human poliovirus 1 (disorder)','446957000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.124_446958005','446958005','http://snomed.info/sct','Acute paralytic poliomyelitis caused by Human poliovirus 1 (disorder)','446958005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.124_447262002','447262002','http://snomed.info/sct','Acute paralytic poliomyelitis caused by Human poliovirus 2 (disorder)','447262002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.124_447378002','447378002','http://snomed.info/sct','Acute paralytic poliomyelitis caused by Human poliovirus 3 (disorder)','447378002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.124_64764001','64764001','http://snomed.info/sct','Acute paralytic poliomyelitis, bulbar (disorder)','64764001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.124_721764008','721764008','http://snomed.info/sct','Infection caused by Human poliovirus (disorder)','721764008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.124_843004','843004','http://snomed.info/sct','Poliomyelomalacia (disorder)','843004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.124_866124002','866124002','http://snomed.info/sct','Myelitis caused by human poliovirus (disorder)','866124002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.124_192686004','192686004','http://snomed.info/sct','Polioencephalitis (disorder)','192686004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.124_721765009','721765009','http://snomed.info/sct','Meningitis caused by Human poliovirus (disorder)','721765009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.366_J62.8','J62.8','http://hl7.org/fhir/sid/icd-10-cm','Pneumoconiosis due to other dust containing silica','J628','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.126_B05','B05','http://hl7.org/fhir/sid/icd-10-cm','Measles','B05','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.126_B05.2','B05.2','http://hl7.org/fhir/sid/icd-10-cm','Measles complicated by pneumonia','B052','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.126_B05.3','B05.3','http://hl7.org/fhir/sid/icd-10-cm','Measles complicated by otitis media','B053','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.126_B05.4','B05.4','http://hl7.org/fhir/sid/icd-10-cm','Measles with intestinal complications','B054','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.126_B05.8','B05.8','http://hl7.org/fhir/sid/icd-10-cm','Measles with other complications','B058','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.126_B05.81','B05.81','http://hl7.org/fhir/sid/icd-10-cm','Measles keratitis and keratoconjunctivitis','B0581','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.126_B05.89','B05.89','http://hl7.org/fhir/sid/icd-10-cm','Other measles complications','B0589','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.126_B05.9','B05.9','http://hl7.org/fhir/sid/icd-10-cm','Measles without complication','B059','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.126_B05.1','B05.1','http://hl7.org/fhir/sid/icd-10-cm','Measles complicated by meningitis','B051','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.126_B05.0','B05.0','http://hl7.org/fhir/sid/icd-10-cm','Measles complicated by encephalitis','B050','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.127_111873003','111873003','http://snomed.info/sct','Measles without complication (disorder)','111873003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.127_13420004','13420004','http://snomed.info/sct','Post measles otitis media (disorder)','13420004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.127_14189004','14189004','http://snomed.info/sct','Measles (disorder)','14189004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.127_186562009','186562009','http://snomed.info/sct','Disorder of intestine due to measles (disorder)','186562009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.127_191727003','191727003','http://snomed.info/sct','Post measles pneumonia (disorder)','191727003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.127_195900001','195900001','http://snomed.info/sct','Pneumonia due to measles (disorder)','195900001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.127_240483006','240483006','http://snomed.info/sct','Atypical measles (disorder)','240483006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.127_240484000','240484000','http://snomed.info/sct','Modified measles (disorder)','240484000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.127_28463004','28463004','http://snomed.info/sct','Measles keratitis (disorder)','28463004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.127_38921001','38921001','http://snomed.info/sct','Measles with complication (disorder)','38921001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.127_406592004','406592004','http://snomed.info/sct','Measles of the central nervous system (disorder)','406592004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.127_417145006','417145006','http://snomed.info/sct','Rubeola retinopathy (disorder)','417145006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.127_424306000','424306000','http://snomed.info/sct','Exanthem caused by measles virus (disorder)','424306000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.127_60013002','60013002','http://snomed.info/sct','Measles keratoconjunctivitis (disorder)','60013002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.127_74918002','74918002','http://snomed.info/sct','Measles myocarditis (disorder)','74918002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.127_186561002','186561002','http://snomed.info/sct','Meningitis caused by measles morbillivirus (disorder)','186561002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.127_230146001','230146001','http://snomed.info/sct','Post measles meningitis (disorder)','230146001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.127_416154000','416154000','http://snomed.info/sct','Measles inclusion body encephalitis (disorder)','416154000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.127_111872008','111872008','http://snomed.info/sct','Post measles encephalitis (disorder)','111872008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.248_186771002','186771002','http://snomed.info/sct','Spotted fever group rickettsial disease (disorder)','186771002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.248_186772009','186772009','http://snomed.info/sct','Rocky Mountain spotted fever (disorder)','186772009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.248_186774005','186774005','http://snomed.info/sct','Boutonneuse fever (disorder)','186774005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.248_186781003','186781003','http://snomed.info/sct','North Asian tick typhus (disorder)','186781003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.248_233851006','233851006','http://snomed.info/sct','Rickettsial endocarditis (disorder)','233851006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.248_240615004','240615004','http://snomed.info/sct','Western Rocky Mountain spotted fever (disorder)','240615004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.248_240616003','240616003','http://snomed.info/sct','Eastern Rocky Mountain spotted fever (disorder)','240616003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.248_240618002','240618002','http://snomed.info/sct','Old World tick typhus (disorder)','240618002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.248_37246009','37246009','http://snomed.info/sct','Disease caused by rickettsiae (disorder)','37246009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.248_406558002','406558002','http://snomed.info/sct','African tick bite fever (disorder)','406558002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.248_409904000','409904000','http://snomed.info/sct','Disease caused by Rickettsiales (disorder)','409904000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.248_415561000','415561000','http://snomed.info/sct','South African tick-bite fever (disorder)','415561000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.248_416829003','416829003','http://snomed.info/sct','Disease caused by Rickettsia (disorder)','416829003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.248_460317007','460317007','http://snomed.info/sct','Myocarditis caused by Rickettsia (disorder)','460317007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.248_472822008','472822008','http://snomed.info/sct','Far eastern spotted fever (disorder)','472822008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.248_68981009','68981009','http://snomed.info/sct','Queensland tick typhus (disorder)','68981009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.248_75096007','75096007','http://snomed.info/sct','Rickettsialpox (disorder)','75096007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.248_764104003','764104003','http://snomed.info/sct','Infection caused by Rickettsia felis (disorder)','764104003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.248_233621003','233621003','http://snomed.info/sct','Rickettsial pneumonia (disorder)','233621003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.248_419868009','419868009','http://snomed.info/sct','Encephalitis caused by rickettsia (disorder)','419868009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2034_A79.0','A79.0','http://hl7.org/fhir/sid/icd-10-cm','Trench fever','A790','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2155_E03.0','E03.0','http://hl7.org/fhir/sid/icd-10-cm','Congenital hypothyroidism with diffuse goiter','E030','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2155_E03.1','E03.1','http://hl7.org/fhir/sid/icd-10-cm','Congenital hypothyroidism without goiter','E031','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.249_A77','A77','http://hl7.org/fhir/sid/icd-10-cm','Spotted fever [tick-borne rickettsioses]','A77','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.249_A77.0','A77.0','http://hl7.org/fhir/sid/icd-10-cm','Spotted fever due to Rickettsia rickettsii','A770','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.249_A77.1','A77.1','http://hl7.org/fhir/sid/icd-10-cm','Spotted fever due to Rickettsia conorii','A771','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.249_A77.2','A77.2','http://hl7.org/fhir/sid/icd-10-cm','Spotted fever due to Rickettsia siberica','A772','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.249_A77.3','A77.3','http://hl7.org/fhir/sid/icd-10-cm','Spotted fever due to Rickettsia australis','A773','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.249_A77.8','A77.8','http://hl7.org/fhir/sid/icd-10-cm','Other spotted fevers','A778','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.249_A77.9','A77.9','http://hl7.org/fhir/sid/icd-10-cm','Spotted fever, unspecified','A779','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.249_A79.1','A79.1','http://hl7.org/fhir/sid/icd-10-cm','Rickettsialpox due to Rickettsia akari','A791','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.249_A79.81','A79.81','http://hl7.org/fhir/sid/icd-10-cm','Rickettsiosis due to Ehrlichia sennetsu','A7981','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.249_A79.9','A79.9','http://hl7.org/fhir/sid/icd-10-cm','Rickettsiosis, unspecified','A799','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.129_13265006','13265006','http://snomed.info/sct','Acute fulminating type B viral hepatitis (disorder)','13265006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.129_424099008','424099008','http://snomed.info/sct','Hepatic coma due to acute hepatitis B (disorder)','424099008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.129_76795007','76795007','http://snomed.info/sct','Acute type B viral hepatitis (disorder)','76795007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.129_186624004','186624004','http://snomed.info/sct','Hepatic coma due to acute hepatitis B with delta agent (disorder)','186624004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.129_186626002','186626002','http://snomed.info/sct','Acute hepatitis B with delta-agent (coinfection) without hepatic coma (disorder)','186626002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.129_235864009','235864009','http://snomed.info/sct','Acute hepatitis B with hepatitis D (disorder)','235864009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2032_240453002','240453002','http://snomed.info/sct','Oroya fever (disorder)','240453002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2032_240455009','240455009','http://snomed.info/sct','Verruga peruana (disorder)','240455009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2032_262461007','262461007','http://snomed.info/sct','Infection caused by Bartonella bacilliformis (disorder)','262461007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2153_1142106007','1142106007','http://snomed.info/sct','Transient congenital hypothyroidism due to dual oxidase 2 mutation (disorder)','1142106007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2153_1179394003','1179394003','http://snomed.info/sct','Congenital hypothyroidism due to thyroid peroxidase mutation (disorder)','1179394003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2153_1179396001','1179396001','http://snomed.info/sct','Congenital hypothyroidism due to thyroid deiodinase mutation (disorder)','1179396001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2153_1179397005','1179397005','http://snomed.info/sct','Congenital hypothyroidism due to symporter mutation (disorder)','1179397005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2153_1179399008','1179399008','http://snomed.info/sct','Congenital hypothyroidism due to thyroglobulin mutation (disorder)','1179399008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2153_1179400001','1179400001','http://snomed.info/sct','Congenital hypothyroidism due to dual oxidase maturation factor 2 (disorder)','1179400001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2153_1179401002','1179401002','http://snomed.info/sct','Congenital hypothyroidism due to peripheral resistance to thyroid hormone (disorder)','1179401002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2153_1179404005','1179404005','http://snomed.info/sct','Congenital hypothyroidism due to congenital anomaly of thyroid gland (disorder)','1179404005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2153_1230272009','1230272009','http://snomed.info/sct','Congenital hypothyroidism due to thyroid stimulating hormone receptor mutation (disorder)','1230272009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2153_190304001','190304001','http://snomed.info/sct','Dyshormonogenic goiter (disorder)','190304001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2153_215677009','215677009','http://snomed.info/sct','Congenital hypothyroidism with ectopic thyroid (disorder)','215677009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2153_22558005','22558005','http://snomed.info/sct','Iodide transport defect (disorder)','22558005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2153_237555006','237555006','http://snomed.info/sct','Hypothyroidism due to iodide trapping defect (disorder)','237555006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2153_52724003','52724003','http://snomed.info/sct','Iodide oxidation defect (disorder)','52724003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2153_55838005','55838005','http://snomed.info/sct','Athyrotic hypothyroidism sequence (disorder)','55838005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2153_56041007','56041007','http://snomed.info/sct','Hypothyroidism due to defect in thyroid hormone synthesis (disorder)','56041007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2153_717333002','717333002','http://snomed.info/sct','Congenital hypothyroidism due to transplacental passage of maternal thyroid stimulating hormone binding inhibitory antibody (disorder)','717333002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2153_717334008','717334008','http://snomed.info/sct','Idiopathic congenital hypothyroidism (disorder)','717334008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2153_718183003','718183003','http://snomed.info/sct','Familial thyroid dyshormonogenesis (disorder)','718183003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2153_718690009','718690009','http://snomed.info/sct','Congenital hypothyroidism due to absence of thyroid gland (disorder)','718690009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2153_719098007','719098007','http://snomed.info/sct','Choreoathetosis with congenital hypothyroidism and neonatal respiratory distress syndrome (disorder)','719098007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2153_722939004','722939004','http://snomed.info/sct','Congenital hypothyroidism due to iodine deficiency (disorder)','722939004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2153_724094005','724094005','http://snomed.info/sct','Neonatal diabetes, congenital hypothyroidism, congenital glaucoma, hepatic fibrosis, polycystic kidney syndrome (disorder)','724094005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2153_725462002','725462002','http://snomed.info/sct','Congenital central hypothyroidism due to thyrotropin-releasing hormone receptor deficiency (disorder)','725462002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2153_783177006','783177006','http://snomed.info/sct','Congenital hypothyroidism due to maternal intake of antithyroid drug (disorder)','783177006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2153_722375007','722375007','http://snomed.info/sct','Bamforth Lazarus syndrome (disorder)','722375007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2033_A28.1','A28.1','http://hl7.org/fhir/sid/icd-10-cm','Cat-scratch disease','A281','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2154_190268003','190268003','http://snomed.info/sct','Congenital hypothyroidism (disorder)','190268003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2154_206457007','206457007','http://snomed.info/sct','Neonatal jaundice with congenital hypothyroidism (disorder)','206457007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2154_237515009','237515009','http://snomed.info/sct','Congenital hypothyroidism without goiter (disorder)','237515009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2154_278503003','278503003','http://snomed.info/sct','Congenital hypothyroidism with diffuse goiter (disorder)','278503003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2154_722938007','722938007','http://snomed.info/sct','Congenital central hypothyroidism (disorder)','722938007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2154_770631009','770631009','http://snomed.info/sct','Genetic transient congenital hypothyroidism (disorder)','770631009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2154_771510006','771510006','http://snomed.info/sct','X-linked central congenital hypothyroidism with late-onset testicular enlargement (disorder)','771510006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2154_84781002','84781002','http://snomed.info/sct','Sporadic cretinism (disorder)','84781002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.590_3928002','3928002','http://snomed.info/sct','Zika virus disease (disorder)','3928002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.590_460521000124103','460521000124103','http://snomed.info/sct','Recent Zika virus infection (finding)','460521000124103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.590_762725007','762725007','http://snomed.info/sct','Congenital infection caused by Zika virus (disorder)','762725007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.592_A92.5','A92.5','http://hl7.org/fhir/sid/icd-10-cm','Zika virus disease','A925','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.592_P35.4','P35.4','http://hl7.org/fhir/sid/icd-10-cm','Congenital Zika virus disease','P354','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.230_B50','B50','http://hl7.org/fhir/sid/icd-10-cm','Plasmodium falciparum malaria','B50','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.230_B50.0','B50.0','http://hl7.org/fhir/sid/icd-10-cm','Plasmodium falciparum malaria with cerebral complications','B500','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.230_B50.8','B50.8','http://hl7.org/fhir/sid/icd-10-cm','Other severe and complicated Plasmodium falciparum malaria','B508','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.230_B50.9','B50.9','http://hl7.org/fhir/sid/icd-10-cm','Plasmodium falciparum malaria, unspecified','B509','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.230_B51','B51','http://hl7.org/fhir/sid/icd-10-cm','Plasmodium vivax malaria','B51','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.230_B51.0','B51.0','http://hl7.org/fhir/sid/icd-10-cm','Plasmodium vivax malaria with rupture of spleen','B510','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.230_B51.8','B51.8','http://hl7.org/fhir/sid/icd-10-cm','Plasmodium vivax malaria with other complications','B518','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.230_B51.9','B51.9','http://hl7.org/fhir/sid/icd-10-cm','Plasmodium vivax malaria without complication','B519','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.230_B52','B52','http://hl7.org/fhir/sid/icd-10-cm','Plasmodium malariae malaria','B52','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.230_B52.0','B52.0','http://hl7.org/fhir/sid/icd-10-cm','Plasmodium malariae malaria with nephropathy','B520','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.230_B52.8','B52.8','http://hl7.org/fhir/sid/icd-10-cm','Plasmodium malariae malaria with other complications','B528','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.230_B52.9','B52.9','http://hl7.org/fhir/sid/icd-10-cm','Plasmodium malariae malaria without complication','B529','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.230_B53','B53','http://hl7.org/fhir/sid/icd-10-cm','Other specified malaria','B53','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.230_B53.0','B53.0','http://hl7.org/fhir/sid/icd-10-cm','Plasmodium ovale malaria','B530','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.230_B53.1','B53.1','http://hl7.org/fhir/sid/icd-10-cm','Malaria due to simian plasmodia','B531','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.230_B53.8','B53.8','http://hl7.org/fhir/sid/icd-10-cm','Other malaria, not elsewhere classified','B538','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.230_B54','B54','http://hl7.org/fhir/sid/icd-10-cm','Unspecified malaria','B54','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.230_P37.3','P37.3','http://hl7.org/fhir/sid/icd-10-cm','Congenital falciparum malaria','P373','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.230_P37.4','P37.4','http://hl7.org/fhir/sid/icd-10-cm','Other congenital malaria','P374','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.112_1264130004','1264130004','http://snomed.info/sct','Tetanus following ectopic pregnancy (disorder)','1264130004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.112_1264131000','1264131000','http://snomed.info/sct','Tetanus following molar pregnancy (disorder)','1264131000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.112_13766008','13766008','http://snomed.info/sct','Puerperal tetanus (disorder)','13766008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.112_186378005','186378005','http://snomed.info/sct','Obstetrical tetanus (disorder)','186378005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.112_240429008','240429008','http://snomed.info/sct','Localized tetanus (disorder)','240429008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.112_240431004','240431004','http://snomed.info/sct','Cephalic tetanus (disorder)','240431004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.112_240432006','240432006','http://snomed.info/sct','Tetanus with trismus (disorder)','240432006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.112_240433001','240433001','http://snomed.info/sct','Tetanic opisthotonus (disorder)','240433001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.112_240434007','240434007','http://snomed.info/sct','Generalized tetanus (disorder)','240434007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.112_276202003','276202003','http://snomed.info/sct','Infection caused by Clostridium tetani (disorder)','276202003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.112_43424001','43424001','http://snomed.info/sct','Tetanus neonatorum (disorder)','43424001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.112_609493004','609493004','http://snomed.info/sct','Induced termination of pregnancy complicated by tetanus (disorder)','609493004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.112_61145000','61145000','http://snomed.info/sct','Tetanus omphalitis (disorder)','61145000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.112_76843005','76843005','http://snomed.info/sct','Tetanus complicating ectopic AND/OR molar pregnancy (disorder)','76843005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.112_76902006','76902006','http://snomed.info/sct','Tetanus (disorder)','76902006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.113_A33','A33','http://hl7.org/fhir/sid/icd-10-cm','Tetanus neonatorum','A33','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.113_A34','A34','http://hl7.org/fhir/sid/icd-10-cm','Obstetrical tetanus','A34','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.113_A35','A35','http://hl7.org/fhir/sid/icd-10-cm','Other tetanus','A35','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.234_69588003','69588003','http://snomed.info/sct','Erythema chronica migrans (disorder)','69588003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.235_13906002','13906002','http://snomed.info/sct','Anaplasmosis (disorder)','13906002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.235_427481004','427481004','http://snomed.info/sct','Human anaplasmosis (disorder)','427481004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.235_85708001','85708001','http://snomed.info/sct','Human anaplasmosis caused by Anaplasma phagocytophilum (disorder)','85708001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.115_10665004','10665004','http://snomed.info/sct','Mumps pancreatitis (disorder)','10665004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.115_111870000','111870000','http://snomed.info/sct','Mumps without complication (disorder)','111870000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.115_1163539003','1163539003','http://snomed.info/sct','Dacryoadenitis caused by mumps virus (disorder)','1163539003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.115_17121006','17121006','http://snomed.info/sct','Mumps nephritis (disorder)','17121006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.115_235123001','235123001','http://snomed.info/sct','Mumps acute sialadenitis (disorder)','235123001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.115_236771002','236771002','http://snomed.info/sct','Mumps epididymo-orchitis (disorder)','236771002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.115_237443002','237443002','http://snomed.info/sct','Mastitis of mumps (disorder)','237443002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.115_240526004','240526004','http://snomed.info/sct','Mumps parotitis (disorder)','240526004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.115_240527008','240527008','http://snomed.info/sct','Mumps submandibular sialadenitis (disorder)','240527008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.115_240529006','240529006','http://snomed.info/sct','Mumps sublingual sialadenitis (disorder)','240529006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.115_31524007','31524007','http://snomed.info/sct','Mumps polyneuropathy (disorder)','31524007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.115_36989005','36989005','http://snomed.info/sct','Mumps (disorder)','36989005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.115_63462008','63462008','http://snomed.info/sct','Mumps myocarditis (disorder)','63462008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.115_72071001','72071001','http://snomed.info/sct','Mumps thyroiditis (disorder)','72071001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.115_74717002','74717002','http://snomed.info/sct','Mumps with complication (disorder)','74717002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.115_78580004','78580004','http://snomed.info/sct','Mumps orchitis (disorder)','78580004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.115_89231008','89231008','http://snomed.info/sct','Mumps hepatitis (disorder)','89231008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.115_89764009','89764009','http://snomed.info/sct','Arthritis due to mumps (disorder)','89764009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.115_44201003','44201003','http://snomed.info/sct','Meningitis caused by mumps virus (disorder)','44201003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.115_31646008','31646008','http://snomed.info/sct','Mumps encephalitis (disorder)','31646008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.115_40099009','40099009','http://snomed.info/sct','Meningoencephalitis caused by mumps virus (disorder)','40099009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.115_75548002','75548002','http://snomed.info/sct','Mumps oophoritis (disorder)','75548002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.116_A36','A36','http://hl7.org/fhir/sid/icd-10-cm','Diphtheria','A36','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.116_A36.0','A36.0','http://hl7.org/fhir/sid/icd-10-cm','Pharyngeal diphtheria','A360','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.116_A36.1','A36.1','http://hl7.org/fhir/sid/icd-10-cm','Nasopharyngeal diphtheria','A361','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.116_A36.2','A36.2','http://hl7.org/fhir/sid/icd-10-cm','Laryngeal diphtheria','A362','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.116_A36.3','A36.3','http://hl7.org/fhir/sid/icd-10-cm','Cutaneous diphtheria','A363','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.116_A36.8','A36.8','http://hl7.org/fhir/sid/icd-10-cm','Other diphtheria','A368','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.116_A36.81','A36.81','http://hl7.org/fhir/sid/icd-10-cm','Diphtheritic cardiomyopathy','A3681','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.116_A36.82','A36.82','http://hl7.org/fhir/sid/icd-10-cm','Diphtheritic radiculomyelitis','A3682','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.116_A36.83','A36.83','http://hl7.org/fhir/sid/icd-10-cm','Diphtheritic polyneuritis','A3683','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.116_A36.84','A36.84','http://hl7.org/fhir/sid/icd-10-cm','Diphtheritic tubulo-interstitial nephropathy','A3684','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.116_A36.85','A36.85','http://hl7.org/fhir/sid/icd-10-cm','Diphtheritic cystitis','A3685','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.116_A36.86','A36.86','http://hl7.org/fhir/sid/icd-10-cm','Diphtheritic conjunctivitis','A3686','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.116_A36.89','A36.89','http://hl7.org/fhir/sid/icd-10-cm','Other diphtheritic complications','A3689','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.116_A36.9','A36.9','http://hl7.org/fhir/sid/icd-10-cm','Diphtheria, unspecified','A369','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.117_B26.0','B26.0','http://hl7.org/fhir/sid/icd-10-cm','Mumps orchitis','B260','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.117_B26.3','B26.3','http://hl7.org/fhir/sid/icd-10-cm','Mumps pancreatitis','B263','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.117_B26.81','B26.81','http://hl7.org/fhir/sid/icd-10-cm','Mumps hepatitis','B2681','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.117_B26.82','B26.82','http://hl7.org/fhir/sid/icd-10-cm','Mumps myocarditis','B2682','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.117_B26.83','B26.83','http://hl7.org/fhir/sid/icd-10-cm','Mumps nephritis','B2683','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.117_B26.84','B26.84','http://hl7.org/fhir/sid/icd-10-cm','Mumps polyneuropathy','B2684','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.117_B26.85','B26.85','http://hl7.org/fhir/sid/icd-10-cm','Mumps arthritis','B2685','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.117_B26.89','B26.89','http://hl7.org/fhir/sid/icd-10-cm','Other mumps complications','B2689','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.117_B26.9','B26.9','http://hl7.org/fhir/sid/icd-10-cm','Mumps without complication','B269','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.117_B26.1','B26.1','http://hl7.org/fhir/sid/icd-10-cm','Mumps meningitis','B261','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.117_B26.2','B26.2','http://hl7.org/fhir/sid/icd-10-cm','Mumps encephalitis','B262','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.359_1149327007','1149327007','http://snomed.info/sct','Poisoning caused by Clostridium botulinum toxin (disorder)','1149327007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.359_1156793005','1156793005','http://snomed.info/sct','Adult infection of intestine caused by Clostridium botulinum (disorder)','1156793005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.359_1156829005','1156829005','http://snomed.info/sct','Iatrogenic infection caused by Clostridium botulinum (disorder)','1156829005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.359_1259069009','1259069009','http://snomed.info/sct','Disorder of autonomic nervous system due to infection caused by Clostridium botulinum (disorder)','1259069009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.359_1285577000','1285577000','http://snomed.info/sct','Adult intestinal botulism (disorder)','1285577000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.359_1285578005','1285578005','http://snomed.info/sct','Infection of intestine caused by Clostridium botulinum in adulthood (disorder)','1285578005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.359_1285590007','1285590007','http://snomed.info/sct','Infection of intestine caused by Clostridium botulinum (disorder)','1285590007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.359_38719000','38719000','http://snomed.info/sct','Toxicoinfectious botulism (disorder)','38719000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.359_398523009','398523009','http://snomed.info/sct','Foodborne botulism (disorder)','398523009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.359_398530003','398530003','http://snomed.info/sct','Wound botulism (disorder)','398530003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.359_398565003','398565003','http://snomed.info/sct','Infection caused by Clostridium botulinum (disorder)','398565003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.359_409562009','409562009','http://snomed.info/sct','Inhalational botulism (disorder)','409562009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.359_409563004','409563004','http://snomed.info/sct','Intestinal botulism (disorder)','409563004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.359_409564005','409564005','http://snomed.info/sct','Foodborne botulism, type A (disorder)','409564005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.359_409565006','409565006','http://snomed.info/sct','Foodborne botulism, type B (disorder)','409565006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.359_409566007','409566007','http://snomed.info/sct','Foodborne botulism, type E (disorder)','409566007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.359_409567003','409567003','http://snomed.info/sct','Foodborne botulism, type F (disorder)','409567003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.359_414531002','414531002','http://snomed.info/sct','Intoxication with Clostridium botulinum toxin (disorder)','414531002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.359_840421000','840421000','http://snomed.info/sct','Disorder of neuromuscular junction caused by botulinum toxin (disorder)','840421000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.359_414488002','414488002','http://snomed.info/sct','Infantile botulism (disorder)','414488002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.359_414820001','414820001','http://snomed.info/sct','Neonatal botulism (disorder)','414820001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2288_P04.14','P04.14','http://hl7.org/fhir/sid/icd-10-cm','Newborn affected by maternal use of opiates','P0414','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2288_P04.17','P04.17','http://hl7.org/fhir/sid/icd-10-cm','Newborn affected by maternal use of sedative-hypnotics','P0417','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2288_P04.1A','P04.1A','http://hl7.org/fhir/sid/icd-10-cm','Newborn affected by maternal use of anxiolytics','P041A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2052_1176983008','1176983008','http://snomed.info/sct','Polycystic hydatid caused by Echinococcus vogeli (disorder)','1176983008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2052_1176986000','1176986000','http://snomed.info/sct','Polycystic hydatid caused by Echinococcus oligarthus (disorder)','1176986000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2052_187144000','187144000','http://snomed.info/sct','Hydatid cyst of kidney caused by Echinococcus (disorder)','187144000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2052_187145004','187145004','http://snomed.info/sct','Pancreatic echinococcosis (disorder)','187145004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2052_234503004','234503004','http://snomed.info/sct','Hydatid cyst of spleen caused by Echinococcus (disorder)','234503004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2052_240819007','240819007','http://snomed.info/sct','Larval echinococcosis (disorder)','240819007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2052_26103000','26103000','http://snomed.info/sct','Echinococcosis of liver (disorder)','26103000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2052_403131008','403131008','http://snomed.info/sct','Echinococcosis of skin (disorder)','403131008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2052_45115003','45115003','http://snomed.info/sct','Echinococcus vogeli infection (disorder)','45115003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2052_47087004','47087004','http://snomed.info/sct','Echinococcus oligarthus infection (disorder)','47087004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2052_54026009','54026009','http://snomed.info/sct','Cystitis with Echinococcus infestation (disorder)','54026009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2052_721264007','721264007','http://snomed.info/sct','Hydatid cyst of orbit caused by Echinococcus (disorder)','721264007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2052_735532001','735532001','http://snomed.info/sct','Infection of lung caused by Echinococcus (disorder)','735532001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2052_735533006','735533006','http://snomed.info/sct','Infection of bone caused by Echinococcus (disorder)','735533006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2052_735534000','735534000','http://snomed.info/sct','Infection of central nervous system caused by Echinococcus (disorder)','735534000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2052_74942003','74942003','http://snomed.info/sct','Echinococcosis (disorder)','74942003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2052_1086721000119102','1086721000119102','http://snomed.info/sct','Echinococcus granulosus infection of multiple sites (disorder)','1086721000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2052_1086731000119104','1086731000119104','http://snomed.info/sct','Echinococcus multilocularis infection of multiple sites (disorder)','1086731000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2052_187137009','187137009','http://snomed.info/sct','Echinococcus granulosus infection of bone (disorder)','187137009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2052_20790006','20790006','http://snomed.info/sct','Echinococcus granulosus infection of liver (disorder)','20790006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2052_21009004','21009004','http://snomed.info/sct','Echinococcus multilocularis infection (disorder)','21009004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2052_27235001','27235001','http://snomed.info/sct','Echinococcus multilocularis infection of liver (disorder)','27235001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2052_65963007','65963007','http://snomed.info/sct','Echinococcus granulosus infection of thyroid (disorder)','65963007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2052_721822004','721822004','http://snomed.info/sct','Cystic echinococcosis (disorder)','721822004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2052_75006000','75006000','http://snomed.info/sct','Echinococcus granulosus infection (disorder)','75006000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2052_75388006','75388006','http://snomed.info/sct','Echinococcus granulosus infection of lung (disorder)','75388006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2052_840499006','840499006','http://snomed.info/sct','Rupture of liver due to Echinococcus granulosus infection (disorder)','840499006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2052_721823009','721823009','http://snomed.info/sct','Encephalitis caused by Echinococcus granulosus (disorder)','721823009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2053_B67.8','B67.8','http://hl7.org/fhir/sid/icd-10-cm','Echinococcosis, unspecified, of liver','B678','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2053_B67.90','B67.90','http://hl7.org/fhir/sid/icd-10-cm','Echinococcosis, unspecified','B6790','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2053_B67.99','B67.99','http://hl7.org/fhir/sid/icd-10-cm','Other echinococcosis','B6799','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2053_B67.0','B67.0','http://hl7.org/fhir/sid/icd-10-cm','Echinococcus granulosus infection of liver','B670','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2053_B67.1','B67.1','http://hl7.org/fhir/sid/icd-10-cm','Echinococcus granulosus infection of lung','B671','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2053_B67.2','B67.2','http://hl7.org/fhir/sid/icd-10-cm','Echinococcus granulosus infection of bone','B672','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2053_B67.31','B67.31','http://hl7.org/fhir/sid/icd-10-cm','Echinococcus granulosus infection, thyroid gland','B6731','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2053_B67.32','B67.32','http://hl7.org/fhir/sid/icd-10-cm','Echinococcus granulosus infection, multiple sites','B6732','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2053_B67.39','B67.39','http://hl7.org/fhir/sid/icd-10-cm','Echinococcus granulosus infection, other sites','B6739','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2053_B67.4','B67.4','http://hl7.org/fhir/sid/icd-10-cm','Echinococcus granulosus infection, unspecified','B674','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2053_B67.5','B67.5','http://hl7.org/fhir/sid/icd-10-cm','Echinococcus multilocularis infection of liver','B675','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2053_B67.61','B67.61','http://hl7.org/fhir/sid/icd-10-cm','Echinococcus multilocularis infection, multiple sites','B6761','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2053_B67.69','B67.69','http://hl7.org/fhir/sid/icd-10-cm','Echinococcus multilocularis infection, other sites','B6769','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2053_B67.7','B67.7','http://hl7.org/fhir/sid/icd-10-cm','Echinococcus multilocularis infection, unspecified','B677','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_1003679009','1003679009','http://snomed.info/sct','Human immunodeficiency virus Centers for Disease Control and Prevention dual infection with human immunodeficiency virus-1 and human immunodeficiency virus-2 (finding)','1003679009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_1003682004','1003682004','http://snomed.info/sct','Human immunodeficiency virus Centers for Disease Control and Prevention stage 1 (finding)','1003682004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_1003683009','1003683009','http://snomed.info/sct','Human immunodeficiency virus Centers for Disease Control and Prevention stage 2 (finding)','1003683009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_1003684003','1003684003','http://snomed.info/sct','Human immunodeficiency virus Centers for Disease Control and Prevention stage 3 (finding)','1003684003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_1052325005','1052325005','http://snomed.info/sct','Exacerbation of psoriasis due to human immunodeficiency virus infection (disorder)','1052325005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_10746341000119109','10746341000119109','http://snomed.info/sct','Acquired immune deficiency syndrome complicating childbirth (disorder)','10746341000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_10755671000119100','10755671000119100','http://snomed.info/sct','Human immunodeficiency virus in mother complicating childbirth (disorder)','10755671000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_111880001','111880001','http://snomed.info/sct','Acute human immunodeficiency virus infection (disorder)','111880001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_1142045004','1142045004','http://snomed.info/sct','Primary human immunodeficiency virus infection (disorder)','1142045004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_1142046003','1142046003','http://snomed.info/sct','Pityriasis rubra pilaris due to human immunodeficiency virus infection (disorder)','1142046003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_1142049005','1142049005','http://snomed.info/sct','Parasitic disease due to human immunodeficiency virus infection (disorder)','1142049005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_1142055000','1142055000','http://snomed.info/sct','Human immunodeficiency virus modified skin disease (disorder)','1142055000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_1148863007','1148863007','http://snomed.info/sct','Disorder of skin due to human immunodeficiency virus infection (disorder)','1148863007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_1153348007','1153348007','http://snomed.info/sct','Primary effusion lymphoma due to human immune deficiency virus infection (disorder)','1153348007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_1187000005','1187000005','http://snomed.info/sct','Infectious mononucleosis caused by human immunodeficiency virus (disorder)','1187000005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_1187001009','1187001009','http://snomed.info/sct','Infectious mononucleosis caused by human immunodeficiency virus type I (disorder)','1187001009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_1187156006','1187156006','http://snomed.info/sct','Periodontitis exacerbated by human immunodeficiency virus infection (disorder)','1187156006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_1193751008','1193751008','http://snomed.info/sct','Inflammation of small intestine due to human immunodeficiency virus disease (disorder)','1193751008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_1193752001','1193752001','http://snomed.info/sct','Inflammation of intestine due to human immunodeficiency virus disease (disorder)','1193752001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_1259057001','1259057001','http://snomed.info/sct','Disorder of autonomic nervous system due to human immunodeficiency virus infection (disorder)','1259057001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_1260096003','1260096003','http://snomed.info/sct','Wasting syndrome due to acquired immunodeficiency syndrome (disorder)','1260096003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_1263535005','1263535005','http://snomed.info/sct','Motor neuron disease due to human immunodeficiency virus infection (disorder)','1263535005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_15928141000119107','15928141000119107','http://snomed.info/sct','Cognitive impairment co-occurrent and due to human immunodeficiency virus infection (disorder)','15928141000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_186706006','186706006','http://snomed.info/sct','Human immunodeficiency virus infection constitutional disease (disorder)','186706006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_186707002','186707002','http://snomed.info/sct','Human immunodeficiency virus infection with neurological disease (disorder)','186707002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_186708007','186708007','http://snomed.info/sct','Human immunodeficiency virus infection with secondary clinical infectious disease (disorder)','186708007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_230180003','230180003','http://snomed.info/sct','Human immunodeficiency virus leukoencephalopathy (disorder)','230180003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_230598008','230598008','http://snomed.info/sct','Neuropathy caused by human immunodeficiency virus (disorder)','230598008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_235009000','235009000','http://snomed.info/sct','Human immunodeficiency virus-associated periodontitis (disorder)','235009000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_235726002','235726002','http://snomed.info/sct','Human immunodeficiency virus enteropathy (disorder)','235726002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_236406007','236406007','http://snomed.info/sct','Acquired immune deficiency syndrome-related nephropathy (disorder)','236406007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_240103002','240103002','http://snomed.info/sct','Human immunodeficiency virus myopathy (disorder)','240103002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_276665006','276665006','http://snomed.info/sct','Congenital acquired immune deficiency syndrome (disorder)','276665006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_276666007','276666007','http://snomed.info/sct','Congenital human immunodeficiency virus positive status syndrome (disorder)','276666007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_281388009','281388009','http://snomed.info/sct','Human immunodeficiency virus-related sclerosing cholangitis (disorder)','281388009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_397763006','397763006','http://snomed.info/sct','Human immunodeficiency virus encephalopathy (disorder)','397763006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_402901009','402901009','http://snomed.info/sct','Oral hairy leukoplakia associated with human immunodeficiency virus disease (disorder)','402901009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_405631006','405631006','http://snomed.info/sct','Pediatric human immunodeficiency virus infection (disorder)','405631006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_40780007','40780007','http://snomed.info/sct','Human immunodeficiency virus I infection (disorder)','40780007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_414376003','414376003','http://snomed.info/sct','Hairy leukoplakia of tongue associated with human immunodeficiency virus disease (disorder)','414376003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_414604009','414604009','http://snomed.info/sct','Leukoplakia of tongue associated with human immunodeficiency virus disease (disorder)','414604009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_416729007','416729007','http://snomed.info/sct','Neutropenia with acquired immunodeficiency syndrome (disorder)','416729007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_420281004','420281004','http://snomed.info/sct','Skin rash with acquired immunodeficiency syndrome (disorder)','420281004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_420308006','420308006','http://snomed.info/sct','Retinal vascular changes with acquired immunodeficiency syndrome (disorder)','420308006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_420321004','420321004','http://snomed.info/sct','Intestinal malabsorption with acquired immunodeficiency syndrome (disorder)','420321004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_420384005','420384005','http://snomed.info/sct','Hematopoietic system disease with acquired immunodeficiency syndrome (disorder)','420384005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_420395004','420395004','http://snomed.info/sct','Acute endocarditis with acquired immunodeficiency syndrome (disorder)','420395004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_420403001','420403001','http://snomed.info/sct','Pneumocystosis with acquired immunodeficiency syndrome (disorder)','420403001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_420452002','420452002','http://snomed.info/sct','Myelopathy with acquired immunodeficiency syndrome (disorder)','420452002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_420543008','420543008','http://snomed.info/sct','Anemia associated with acquired immunodeficiency syndrome (disorder)','420543008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_420544002','420544002','http://snomed.info/sct','Bacterial pneumonia with acquired immunodeficiency syndrome (disorder)','420544002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_420549007','420549007','http://snomed.info/sct','Salivary gland disease with acquired immunodeficiency syndrome (disorder)','420549007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_420554003','420554003','http://snomed.info/sct','Progressive multifocal leukoencephalopathy with acquired immunodeficiency syndrome (disorder)','420554003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_420614009','420614009','http://snomed.info/sct','Organic dementia with acquired immunodeficiency syndrome (disorder)','420614009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_420658009','420658009','http://snomed.info/sct','Radiculitis with acquired immunodeficiency syndrome (disorder)','420658009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_420687005','420687005','http://snomed.info/sct','Ill-defined intestinal infection associated with acquired immunodeficiency syndrome (disorder)','420687005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_420691000','420691000','http://snomed.info/sct','Nutritional deficiency with acquired immunodeficiency syndrome (disorder)','420691000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_420718004','420718004','http://snomed.info/sct','Central nervous system demyelinating disease with acquired immunodeficiency syndrome (disorder)','420718004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_420721002','420721002','http://snomed.info/sct','Acquired immunodeficiency syndrome-associated disorder (disorder)','420721002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_420774007','420774007','http://snomed.info/sct','Organic brain syndrome with acquired immunodeficiency syndrome (disorder)','420774007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_420787001','420787001','http://snomed.info/sct','Pneumococcal pneumonia with acquired immunodeficiency syndrome (disorder)','420787001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_420801006','420801006','http://snomed.info/sct','Malaise with acquired immunodeficiency syndrome (disorder)','420801006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_420818005','420818005','http://snomed.info/sct','Mycobacteriosis with acquired immunodeficiency syndrome (disorder)','420818005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_420877009','420877009','http://snomed.info/sct','Dermatomycosis with acquired immunodeficiency syndrome (disorder)','420877009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_420900006','420900006','http://snomed.info/sct','Fatigue with acquired immunodeficiency syndrome (disorder)','420900006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_420938005','420938005','http://snomed.info/sct','Subacute endocarditis with acquired immunodeficiency syndrome (disorder)','420938005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_420945005','420945005','http://snomed.info/sct','Histoplasmosis with acquired immunodeficiency syndrome (disorder)','420945005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_421020000','421020000','http://snomed.info/sct','Microsporidiosis associated with acquired immunodeficiency syndrome (disorder)','421020000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_421023003','421023003','http://snomed.info/sct','Presenile dementia with acquired immunodeficiency syndrome (disorder)','421023003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_421047005','421047005','http://snomed.info/sct','Candidiasis of lung with acquired immunodeficiency syndrome (disorder)','421047005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_421077004','421077004','http://snomed.info/sct','Disseminated candidiasis with acquired immunodeficiency syndrome (disorder)','421077004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_421102007','421102007','http://snomed.info/sct','Aplastic anemia with acquired immunodeficiency syndrome (disorder)','421102007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_421230000','421230000','http://snomed.info/sct','Hepatomegaly with acquired immunodeficiency syndrome (disorder)','421230000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_421272004','421272004','http://snomed.info/sct','Subacute myocarditis with acquired immunodeficiency syndrome (disorder)','421272004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_421312009','421312009','http://snomed.info/sct','Agranulocytosis with acquired immunodeficiency syndrome (disorder)','421312009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_421315006','421315006','http://snomed.info/sct','Myelitis with acquired immunodeficiency syndrome (disorder)','421315006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_421394009','421394009','http://snomed.info/sct','Skin disorder with acquired immunodeficiency syndrome (disorder)','421394009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_421431004','421431004','http://snomed.info/sct','Nocardiosis with acquired immunodeficiency syndrome (disorder)','421431004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_421454008','421454008','http://snomed.info/sct','Infectious gastroenteritis with acquired immunodeficiency syndrome (disorder)','421454008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_421460008','421460008','http://snomed.info/sct','Retinopathy with acquired immunodeficiency syndrome (disorder)','421460008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_421508002','421508002','http://snomed.info/sct','Viral pneumonia with acquired immunodeficiency syndrome (disorder)','421508002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_421510000','421510000','http://snomed.info/sct','Isosporiasis associated with acquired immunodeficiency syndrome (disorder)','421510000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_421529006','421529006','http://snomed.info/sct','Dementia with acquired immunodeficiency syndrome (disorder)','421529006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_421597001','421597001','http://snomed.info/sct','Polyneuropathy with acquired immunodeficiency syndrome (disorder)','421597001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_421660003','421660003','http://snomed.info/sct','Failure to thrive in infant with acquired immunodeficiency syndrome (disorder)','421660003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_421666009','421666009','http://snomed.info/sct','Toxoplasmosis associated with acquired immunodeficiency syndrome (disorder)','421666009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_421671002','421671002','http://snomed.info/sct','Pneumonia with acquired immunodeficiency syndrome (disorder)','421671002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_421695000','421695000','http://snomed.info/sct','Abnormal weight loss associated with acquired immunodeficiency syndrome (finding)','421695000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_421706001','421706001','http://snomed.info/sct','Blindness with acquired immunodeficiency syndrome (disorder)','421706001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_421708000','421708000','http://snomed.info/sct','Infective arthritis with acquired immunodeficiency syndrome (disorder)','421708000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_421710003','421710003','http://snomed.info/sct','Candidiasis of mouth with acquired immunodeficiency syndrome (disorder)','421710003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_421766003','421766003','http://snomed.info/sct','Thrombocytopenia with acquired immunodeficiency syndrome (disorder)','421766003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_421827003','421827003','http://snomed.info/sct','Encephalopathy with acquired immunodeficiency syndrome (disorder)','421827003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_421851008','421851008','http://snomed.info/sct','Acquired hemolytic anemia associated with acquired immunodeficiency syndrome (disorder)','421851008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_421874007','421874007','http://snomed.info/sct','Respiratory disorder with acquired immunodeficiency syndrome (disorder)','421874007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_421929001','421929001','http://snomed.info/sct','Myocarditis with acquired immunodeficiency syndrome (disorder)','421929001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_421983003','421983003','http://snomed.info/sct','Noninfectious gastroenteritis with acquired immunodeficiency syndrome (disorder)','421983003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_421998001','421998001','http://snomed.info/sct','Central nervous disorder with acquired immunodeficiency syndrome (disorder)','421998001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_422003001','422003001','http://snomed.info/sct','Cachexia associated with acquired immunodeficiency syndrome (finding)','422003001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_422012004','422012004','http://snomed.info/sct','Neuritis with acquired immunodeficiency syndrome (disorder)','422012004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_422074008','422074008','http://snomed.info/sct','Coccidiosis associated with acquired immunodeficiency syndrome (disorder)','422074008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_422127002','422127002','http://snomed.info/sct','Herpes zoster with acquired immunodeficiency syndrome (disorder)','422127002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_422136003','422136003','http://snomed.info/sct','Neuralgia with acquired immunodeficiency syndrome (disorder)','422136003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_422177004','422177004','http://snomed.info/sct','Dyspnea with acquired immunodeficiency syndrome (disorder)','422177004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_422189002','422189002','http://snomed.info/sct','Low vision with acquired immunodeficiency syndrome (disorder)','422189002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_422194002','422194002','http://snomed.info/sct','Hyperhidrosis with acquired immunodeficiency syndrome (disorder)','422194002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_445945000','445945000','http://snomed.info/sct','Infectious disease with acquired immune deficiency syndrome (disorder)','445945000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_48794007','48794007','http://snomed.info/sct','Human immunodeficiency virus infection with infectious mononucleosis-like syndrome (disorder)','48794007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_52079000','52079000','http://snomed.info/sct','Congenital human immunodeficiency virus infection (disorder)','52079000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_62479008','62479008','http://snomed.info/sct','Acquired immune deficiency syndrome (disorder)','62479008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_697904001','697904001','http://snomed.info/sct','Pulmonary arterial hypertension associated with human immunodeficiency virus infection (disorder)','697904001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_697965002','697965002','http://snomed.info/sct','Cholangitis with acquired immunodeficiency syndrome (disorder)','697965002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_700053002','700053002','http://snomed.info/sct','Sepsis with acquired immunodeficiency syndrome (disorder)','700053002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_713275003','713275003','http://snomed.info/sct','Splenomegaly co-occurrent with human immunodeficiency virus infection (disorder)','713275003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_713278001','713278001','http://snomed.info/sct','Neuralgia co-occurrent with human immunodeficiency virus infection (disorder)','713278001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_713297001','713297001','http://snomed.info/sct','Candidiasis of esophagus co-occurrent with human immunodeficiency virus infection (disorder)','713297001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_713298006','713298006','http://snomed.info/sct','Heart disease co-occurrent with human immunodeficiency virus infection (disorder)','713298006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_713299003','713299003','http://snomed.info/sct','Disorder of eye proper co-occurrent with human immunodeficiency virus infection (disorder)','713299003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_713300006','713300006','http://snomed.info/sct','Disorder of gastrointestinal tract co-occurrent with human immunodeficiency virus infection (disorder)','713300006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_713316008','713316008','http://snomed.info/sct','Eruption of skin co-occurrent with human immunodeficiency virus infection (disorder)','713316008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_713318009','713318009','http://snomed.info/sct','Myocarditis co-occurrent with human immunodeficiency virus infection (disorder)','713318009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_713320007','713320007','http://snomed.info/sct','Radiculitis co-occurrent with human immunodeficiency virus infection (disorder)','713320007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_713340000','713340000','http://snomed.info/sct','Disorder of skin co-occurrent with human immunodeficiency virus infection (disorder)','713340000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_713341001','713341001','http://snomed.info/sct','Myelitis co-occurrent with human immunodeficiency virus infection (disorder)','713341001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_713349004','713349004','http://snomed.info/sct','Anemia co-occurrent with human immunodeficiency virus infection (disorder)','713349004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_713444005','713444005','http://snomed.info/sct','Hemophagocytic syndrome with human immunodeficiency virus infection (disorder)','713444005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_713446007','713446007','http://snomed.info/sct','Chronic infection caused by herpes simplex virus co-occurrent with human immunodeficiency virus infection (disorder)','713446007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_713483007','713483007','http://snomed.info/sct','Reticulosarcoma co-occurrent with human immunodeficiency virus infection (disorder)','713483007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_713484001','713484001','http://snomed.info/sct','Disorder of respiratory system co-occurrent with human immunodeficiency virus infection (disorder)','713484001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_713487008','713487008','http://snomed.info/sct','Progressive multifocal leukoencephalopathy co-occurrent with human immunodeficiency virus infection (disorder)','713487008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_713488003','713488003','http://snomed.info/sct','Presenile dementia co-occurrent with human immunodeficiency virus infection (disorder)','713488003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_713489006','713489006','http://snomed.info/sct','Polyneuropathy co-occurrent with human immunodeficiency virus infection (disorder)','713489006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_713490002','713490002','http://snomed.info/sct','Infection caused by Pneumocystis co-occurrent with human immunodeficiency virus infection (disorder)','713490002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_713491003','713491003','http://snomed.info/sct','Organic brain syndrome co-occurrent with human immunodeficiency virus infection (disorder)','713491003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_713497004','713497004','http://snomed.info/sct','Candidiasis of mouth co-occurrent with human immunodeficiency virus infection (disorder)','713497004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_713503007','713503007','http://snomed.info/sct','Disorder of spinal cord co-occurrent with human immunodeficiency virus infection (disorder)','713503007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_713504001','713504001','http://snomed.info/sct','Disorder of kidney co-occurrent with human immunodeficiency virus infection (disorder)','713504001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_713505000','713505000','http://snomed.info/sct','Gastrointestinal malabsorption syndrome co-occurrent with human immunodeficiency virus infection (disorder)','713505000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_713506004','713506004','http://snomed.info/sct','Neuritis co-occurrent with human immunodeficiency virus infection (disorder)','713506004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_713507008','713507008','http://snomed.info/sct','Lymphadenopathy co-occurrent with human immunodeficiency virus infection (disorder)','713507008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_713508003','713508003','http://snomed.info/sct','Aplastic anemia co-occurrent with human immunodeficiency virus infection (disorder)','713508003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_713510001','713510001','http://snomed.info/sct','Enlargement of liver co-occurrent with human immunodeficiency virus infection (disorder)','713510001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_713511002','713511002','http://snomed.info/sct','Acute endocarditis co-occurrent with human immunodeficiency virus infection (disorder)','713511002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_713523008','713523008','http://snomed.info/sct','Cardiomyopathy co-occurrent with human immunodeficiency virus infection (disorder)','713523008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_713526000','713526000','http://snomed.info/sct','Recurrent bacterial pneumonia co-occurrent with human immunodeficiency virus infection (disorder)','713526000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_713527009','713527009','http://snomed.info/sct','Disorder of peripheral nervous system co-occurrent with human immunodeficiency virus infection (disorder)','713527009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_713530002','713530002','http://snomed.info/sct','Agranulocytosis co-occurrent with human immunodeficiency virus infection (disorder)','713530002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_713531003','713531003','http://snomed.info/sct','Visual impairment co-occurrent with human immunodeficiency virus infection (disorder)','713531003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_713532005','713532005','http://snomed.info/sct','Infective arthritis co-occurrent with human immunodeficiency virus infection (disorder)','713532005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_713533000','713533000','http://snomed.info/sct','Acquired hemolytic anemia co-occurrent with human immunodeficiency virus infection (disorder)','713533000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_713543002','713543002','http://snomed.info/sct','Demyelinating disease of central nervous system co-occurrent with human immunodeficiency virus infection (disorder)','713543002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_713544008','713544008','http://snomed.info/sct','Bacterial pneumonia co-occurrent with human immunodeficiency virus infection (disorder)','713544008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_713545009','713545009','http://snomed.info/sct','Infection caused by Nocardia co-occurrent with human immunodeficiency virus infection (disorder)','713545009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_713546005','713546005','http://snomed.info/sct','Isosporiasis co-occurrent with human immunodeficiency virus infection (disorder)','713546005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_713570009','713570009','http://snomed.info/sct','Infectious gastroenteritis co-occurrent with human immunodeficiency virus infection (disorder)','713570009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_713571008','713571008','http://snomed.info/sct','Disorder of central nervous system co-occurrent with human immunodeficiency virus infection (disorder)','713571008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_713695001','713695001','http://snomed.info/sct','Nephrotic syndrome co-occurrent with human immunodeficiency virus infection (disorder)','713695001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_713696000','713696000','http://snomed.info/sct','Renal failure syndrome co-occurrent with human immunodeficiency virus infection (disorder)','713696000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_713729005','713729005','http://snomed.info/sct','Infection caused by Coccidia co-occurrent with human immunodeficiency virus infection (disorder)','713729005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_713730000','713730000','http://snomed.info/sct','Infection caused by herpes simplex virus co-occurrent with human immunodeficiency virus infection (disorder)','713730000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_713731001','713731001','http://snomed.info/sct','Pyrexia of unknown origin co-occurrent with human immunodeficiency virus infection (disorder)','713731001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_713732008','713732008','http://snomed.info/sct','Infection caused by Aspergillus co-occurrent with human immunodeficiency virus infection (disorder)','713732008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_713733003','713733003','http://snomed.info/sct','Infection caused by herpes zoster virus co-occurrent with human immunodeficiency virus infection (disorder)','713733003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_713734009','713734009','http://snomed.info/sct','Infection caused by Dermatophyte co-occurrent with human immunodeficiency virus infection (disorder)','713734009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_713844000','713844000','http://snomed.info/sct','Dementia co-occurrent with human immunodeficiency virus infection (disorder)','713844000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_713880000','713880000','http://snomed.info/sct','Opportunistic mycosis co-occurrent with human immunodeficiency virus infection (disorder)','713880000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_713881001','713881001','http://snomed.info/sct','Infection caused by Microsporidia co-occurrent with human immunodeficiency virus infection (disorder)','713881001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_713887002','713887002','http://snomed.info/sct','Focal segmental glomerulosclerosis co-occurrent with human immunodeficiency virus infection (disorder)','713887002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_713964006','713964006','http://snomed.info/sct','Multidermatomal infection caused by Herpes zoster co-occurrent with human immunodeficiency virus infection (disorder)','713964006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_713967004','713967004','http://snomed.info/sct','Disseminated atypical infection caused by Mycobacterium co-occurrent with human immunodeficiency virus infection (disorder)','713967004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_714464009','714464009','http://snomed.info/sct','Immune reconstitution inflammatory syndrome caused by human immunodeficiency virus infection (disorder)','714464009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_719522009','719522009','http://snomed.info/sct','Infection of upper respiratory tract caused by Candida co-occurrent with human immunodeficiency virus infection (disorder)','719522009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_721166000','721166000','http://snomed.info/sct','Human immunodeficiency virus complicating pregnancy childbirth and the puerperium (disorder)','721166000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_722554000','722554000','http://snomed.info/sct','Sequela of infection caused by Human immunodeficiency virus (disorder)','722554000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_72621000119104','72621000119104','http://snomed.info/sct','Human immunodeficiency virus (HIV) II infection category B1 (disorder)','72621000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_72631000119101','72631000119101','http://snomed.info/sct','Human immunodeficiency virus (HIV) II infection category B2 (disorder)','72631000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_737378009','737378009','http://snomed.info/sct','World Health Organization 2007 Human immunodeficiency virus infection clinical stage 1 (finding)','737378009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_737379001','737379001','http://snomed.info/sct','World Health Organization 2007 Human immunodeficiency virus infection clinical stage 2 (finding)','737379001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_737380003','737380003','http://snomed.info/sct','World Health Organization 2007 Human immunodeficiency virus infection clinical stage 3 (finding)','737380003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_737381004','737381004','http://snomed.info/sct','World Health Organization 2007 Human immunodeficiency virus infection clinical stage 4 (finding)','737381004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_765434008','765434008','http://snomed.info/sct','Human immunodeficiency virus type I enhancer binding protein 2 related intellectual disability (disorder)','765434008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_76981000119106','76981000119106','http://snomed.info/sct','Human immunodeficiency virus (HIV) infection category B1 (disorder)','76981000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_76991000119109','76991000119109','http://snomed.info/sct','Human immunodeficiency virus (HIV) infection category B2 (disorder)','76991000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_771119002','771119002','http://snomed.info/sct','Infection caused by Coccidia co-occurrent with acquired immunodeficiency syndrome (disorder)','771119002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_771127006','771127006','http://snomed.info/sct','Infection caused by Isospora co-occurrent with acquired immunodeficiency syndrome (disorder)','771127006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_79019005','79019005','http://snomed.info/sct','Human immunodeficiency virus II infection (disorder)','79019005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_80191000119101','80191000119101','http://snomed.info/sct','Symptomatic human immunodeficiency virus I infection (disorder)','80191000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_81000119104','81000119104','http://snomed.info/sct','Symptomatic human immunodeficiency virus infection (disorder)','81000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_838338001','838338001','http://snomed.info/sct','Bacterial infection due to human immunodeficiency virus infection (disorder)','838338001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_860871003','860871003','http://snomed.info/sct','Eosinophilic folliculitis due to human immunodeficiency virus infection (disorder)','860871003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_860872005','860872005','http://snomed.info/sct','Esophagitis due to human immunodeficiency virus disease (disorder)','860872005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_860874006','860874006','http://snomed.info/sct','Enteritis due to human immunodeficiency virus disease (disorder)','860874006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_86406008','86406008','http://snomed.info/sct','Human immunodeficiency virus infection (disorder)','86406008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_866044006','866044006','http://snomed.info/sct','Mycosis due to human immunodeficiency virus infection (disorder)','866044006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_870271009','870271009','http://snomed.info/sct','Pruritus due to human immunodeficiency virus infection (disorder)','870271009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_870328002','870328002','http://snomed.info/sct','Papular pruritic eruption of skin due to human immunodeficiency virus infection (disorder)','870328002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_870344006','870344006','http://snomed.info/sct','Seborrheic dermatitis due to human immunodeficiency virus infection (disorder)','870344006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_87117006','87117006','http://snomed.info/sct','Human immunodeficiency virus infection with acute lymphadenitis (disorder)','87117006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_90681000119107','90681000119107','http://snomed.info/sct','Asymptomatic human immunodeficiency virus A1 infection (disorder)','90681000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_90691000119105','90691000119105','http://snomed.info/sct','Asymptomatic human immunodeficiency virus A2 infection (disorder)','90691000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_91947003','91947003','http://snomed.info/sct','Asymptomatic human immunodeficiency virus infection (disorder)','91947003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_91948008','91948008','http://snomed.info/sct','Asymptomatic human immunodeficiency virus infection in pregnancy (disorder)','91948008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_315019000','315019000','http://snomed.info/sct','Aseptic meningitis due to human immunodeficiency virus infection (disorder)','315019000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_420244003','420244003','http://snomed.info/sct','Encephalitis with acquired immunodeficiency syndrome (disorder)','420244003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_421403008','421403008','http://snomed.info/sct','Cryptococcosis with acquired immunodeficiency syndrome (disorder)','421403008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_421883002','421883002','http://snomed.info/sct','Strongyloidiasis with acquired immunodeficiency syndrome (disorder)','421883002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_422089004','422089004','http://snomed.info/sct','Encephalomyelitis with acquired immunodeficiency syndrome (disorder)','422089004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_422337001','422337001','http://snomed.info/sct','Coccidioidomycosis with acquired immunodeficiency syndrome (disorder)','422337001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_442134007','442134007','http://snomed.info/sct','Hepatitis B associated with Human immunodeficiency virus infection (disorder)','442134007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_713339002','713339002','http://snomed.info/sct','Infection caused by Strongyloides co-occurrent with human immunodeficiency virus infection (disorder)','713339002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_713445006','713445006','http://snomed.info/sct','Disseminated infection caused by Strongyloides co-occurrent with human immunodeficiency virus infection (disorder)','713445006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_713722001','713722001','http://snomed.info/sct','Infection caused by Cytomegalovirus co-occurrent with human immunodeficiency virus infection (disorder)','713722001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_713845004','713845004','http://snomed.info/sct','Infection caused by Cryptosporidium co-occurrent with human immunodeficiency virus infection (disorder)','713845004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_722557007','722557007','http://snomed.info/sct','Parkinsonism due to human immunodeficiency virus infection (disorder)','722557007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_838377003','838377003','http://snomed.info/sct','Chronic hepatitis C co-occurrent with human immunodeficiency virus infection (disorder)','838377003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_420302007','420302007','http://snomed.info/sct','Reticulosarcoma with acquired immunodeficiency syndrome (disorder)','420302007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_420524008','420524008','http://snomed.info/sct','Kaposi''s sarcoma with acquired immunodeficiency syndrome (disorder)','420524008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_420764009','420764009','http://snomed.info/sct','Salmonella infection with acquired immunodeficiency syndrome (disorder)','420764009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_421283008','421283008','http://snomed.info/sct','Primary lymphoma of brain with acquired immunodeficiency syndrome (disorder)','421283008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_422282000','422282000','http://snomed.info/sct','Malignant neoplasm with acquired immunodeficiency syndrome (disorder)','422282000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_442537007','442537007','http://snomed.info/sct','Non-Hodgkin lymphoma associated with Human immunodeficiency virus infection (disorder)','442537007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_713325002','713325002','http://snomed.info/sct','Primary cerebral lymphoma co-occurrent with human immunodeficiency virus infection (disorder)','713325002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_713342008','713342008','http://snomed.info/sct','Infection caused by Salmonella co-occurrent with human immunodeficiency virus infection (disorder)','713342008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_713572001','713572001','http://snomed.info/sct','Malignant neoplastic disease co-occurrent with human immunodeficiency virus infection (disorder)','713572001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_713718006','713718006','http://snomed.info/sct','Diffuse non-Hodgkin immunoblastic lymphoma co-occurrent with human immunodeficiency virus infection (disorder)','713718006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_713897006','713897006','http://snomed.info/sct','Burkitt lymphoma co-occurrent with human immunodeficiency virus infection (disorder)','713897006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_714083007','714083007','http://snomed.info/sct','Recurrent salmonella sepsis co-occurrent with human immunodeficiency virus infection (disorder)','714083007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_733834006','733834006','http://snomed.info/sct','Invasive carcinoma of uterine cervix co-occurrent with human immunodeficiency virus infection (disorder)','733834006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_733835007','733835007','http://snomed.info/sct','Extrapulmonary tuberculosis co-occurrent with human immunodeficiency virus infection (disorder)','733835007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_735521001','735521001','http://snomed.info/sct','Human immunodeficiency virus World Health Organization 2007 stage 1 co-occurrent with tuberculosis (disorder)','735521001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_735522008','735522008','http://snomed.info/sct','Human immunodeficiency virus World Health Organization 2007 stage 1 co-occurrent with malaria (disorder)','735522008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_735523003','735523003','http://snomed.info/sct','Human immunodeficiency virus World Health Organization 2007 stage 2 co-occurrent with tuberculosis (disorder)','735523003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_735524009','735524009','http://snomed.info/sct','Human immunodeficiency virus World Health Organization 2007 stage 2 co-occurrent with malaria (disorder)','735524009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_735525005','735525005','http://snomed.info/sct','Human immunodeficiency virus World Health Organization 2007 stage 3 co-occurrent with tuberculosis (disorder)','735525005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_735526006','735526006','http://snomed.info/sct','Human immunodeficiency virus World Health Organization 2007 stage 3 co-occurrent with malaria (disorder)','735526006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_735527002','735527002','http://snomed.info/sct','Human immunodeficiency virus World Health Organization 2007 stage 4 co-occurrent with tuberculosis (disorder)','735527002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_735528007','735528007','http://snomed.info/sct','Human immunodeficiency virus World Health Organization 2007 stage 4 co-occurrent with malaria (disorder)','735528007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_771126002','771126002','http://snomed.info/sct','Infection caused by Toxoplasma gondii co-occurrent with acquired immunodeficiency syndrome (disorder)','771126002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_398329009','398329009','http://snomed.info/sct','Human immunodeficiency virus encephalitis (disorder)','398329009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_421415007','421415007','http://snomed.info/sct','Subacute adenoviral encephalitis with acquired immunodeficiency syndrome (disorder)','421415007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_713260006','713260006','http://snomed.info/sct','Subacute adenoviral encephalitis co-occurrent with human immunodeficiency virus infection (disorder)','713260006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_840442003','840442003','http://snomed.info/sct','Encephalitis caused by human immunodeficiency virus type 2 (disorder)','840442003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_840498003','840498003','http://snomed.info/sct','Encephalitis caused by human immunodeficiency virus type 1 (disorder)','840498003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.460_421571007','421571007','http://snomed.info/sct','Tuberculosis with acquired immunodeficiency syndrome (disorder)','421571007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.461_B20','B20','http://hl7.org/fhir/sid/icd-10-cm','Human immunodeficiency virus [HIV] disease','B20','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.461_B97.35','B97.35','http://hl7.org/fhir/sid/icd-10-cm','Human immunodeficiency virus, type 2 [HIV 2] as the cause of diseases classified elsewhere','B9735','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.461_O98.7','O98.7','http://hl7.org/fhir/sid/icd-10-cm','Human immunodeficiency virus [HIV] disease complicating pregnancy, childbirth and the puerperium','O987','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.461_O98.71','O98.71','http://hl7.org/fhir/sid/icd-10-cm','Human immunodeficiency virus [HIV] disease complicating pregnancy','O9871','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.461_O98.711','O98.711','http://hl7.org/fhir/sid/icd-10-cm','Human immunodeficiency virus [HIV] disease complicating pregnancy, first trimester','O98711','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.461_O98.712','O98.712','http://hl7.org/fhir/sid/icd-10-cm','Human immunodeficiency virus [HIV] disease complicating pregnancy, second trimester','O98712','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.461_O98.713','O98.713','http://hl7.org/fhir/sid/icd-10-cm','Human immunodeficiency virus [HIV] disease complicating pregnancy, third trimester','O98713','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.461_O98.719','O98.719','http://hl7.org/fhir/sid/icd-10-cm','Human immunodeficiency virus [HIV] disease complicating pregnancy, unspecified trimester','O98719','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.461_O98.72','O98.72','http://hl7.org/fhir/sid/icd-10-cm','Human immunodeficiency virus [HIV] disease complicating childbirth','O9872','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.461_O98.73','O98.73','http://hl7.org/fhir/sid/icd-10-cm','Human immunodeficiency virus [HIV] disease complicating the puerperium','O9873','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.461_Z21','Z21','http://hl7.org/fhir/sid/icd-10-cm','Asymptomatic human immunodeficiency virus [HIV] infection status','Z21','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.221_A77.4','A77.4','http://hl7.org/fhir/sid/icd-10-cm','Ehrlichiosis','A774','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.221_A77.40','A77.40','http://hl7.org/fhir/sid/icd-10-cm','Ehrlichiosis, unspecified','A7740','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.221_A77.41','A77.41','http://hl7.org/fhir/sid/icd-10-cm','Ehrlichiosis chafeensis [E. chafeensis]','A7741','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.221_A77.49','A77.49','http://hl7.org/fhir/sid/icd-10-cm','Other ehrlichiosis','A7749','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.224_240626005','240626005','http://snomed.info/sct','Human ehrlichiosis (disorder)','240626005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.224_359747000','359747000','http://snomed.info/sct','Human ehrlichiosis caused by Ehrlichia chaffeensis (disorder)','359747000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.224_406572006','406572006','http://snomed.info/sct','Ehrlichia infection of the central nervous system (disorder)','406572006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.224_441554001','441554001','http://snomed.info/sct','Human ehrlichiosis caused by Ehrlichia ewingii (disorder)','441554001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.224_77361002','77361002','http://snomed.info/sct','Ehrlichiosis (disorder)','77361002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.105_B06','B06','http://hl7.org/fhir/sid/icd-10-cm','Rubella [German measles]','B06','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.105_B06.0','B06.0','http://hl7.org/fhir/sid/icd-10-cm','Rubella with neurological complications','B060','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.105_B06.00','B06.00','http://hl7.org/fhir/sid/icd-10-cm','Rubella with neurological complication, unspecified','B0600','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.105_B06.09','B06.09','http://hl7.org/fhir/sid/icd-10-cm','Other neurological complications of rubella','B0609','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.105_B06.8','B06.8','http://hl7.org/fhir/sid/icd-10-cm','Rubella with other complications','B068','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.105_B06.81','B06.81','http://hl7.org/fhir/sid/icd-10-cm','Rubella pneumonia','B0681','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.105_B06.82','B06.82','http://hl7.org/fhir/sid/icd-10-cm','Rubella arthritis','B0682','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.105_B06.89','B06.89','http://hl7.org/fhir/sid/icd-10-cm','Other rubella complications','B0689','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.105_B06.9','B06.9','http://hl7.org/fhir/sid/icd-10-cm','Rubella without complication','B069','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.105_B06.02','B06.02','http://hl7.org/fhir/sid/icd-10-cm','Rubella meningitis','B0602','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.105_P35.0','P35.0','http://hl7.org/fhir/sid/icd-10-cm','Congenital rubella syndrome','P350','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.105_B06.01','B06.01','http://hl7.org/fhir/sid/icd-10-cm','Rubella encephalitis','B0601','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.226_1142227009','1142227009','http://snomed.info/sct','Arthritis of knee joint caused by Borrelia burgdorferi (disorder)','1142227009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.226_1163084005','1163084005','http://snomed.info/sct','Dacryoadenitis caused by Borrelia burgdorferi (disorder)','1163084005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.226_1163460006','1163460006','http://snomed.info/sct','Intermediate uveitis caused by Borrelia burgdorferi (disorder)','1163460006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.226_1259042008','1259042008','http://snomed.info/sct','Demyelination of central nervous system due to Lyme borreliosis (disorder)','1259042008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.226_230605007','230605007','http://snomed.info/sct','Lyme mononeuritis multiplex (disorder)','230605007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.226_232314004','232314004','http://snomed.info/sct','Lyme disease of inner ear (disorder)','232314004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.226_23502006','23502006','http://snomed.info/sct','Lyme disease (disorder)','23502006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.226_240669002','240669002','http://snomed.info/sct','Congenital Lyme disease (disorder)','240669002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.226_240670001','240670001','http://snomed.info/sct','Skeletal Lyme disease (disorder)','240670001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.226_240671002','240671002','http://snomed.info/sct','Lyme erosive synovitis (disorder)','240671002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.226_33937009','33937009','http://snomed.info/sct','Lyme arthritis (disorder)','33937009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.226_410473001','410473001','http://snomed.info/sct','Lyme uveitis (disorder)','410473001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.226_410474007','410474007','http://snomed.info/sct','Lyme keratitis (disorder)','410474007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.226_410475008','410475008','http://snomed.info/sct','Lyme conjunctivitis (disorder)','410475008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.226_426637005','426637005','http://snomed.info/sct','Acute lyme disease (disorder)','426637005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.226_4340003','4340003','http://snomed.info/sct','Acrodermatitis atrophicans chronica (disorder)','4340003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.226_48982009','48982009','http://snomed.info/sct','Bannwarth syndrome (disorder)','48982009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.226_715507005','715507005','http://snomed.info/sct','Infection of central nervous system caused by Borrelia burgdorferi (disorder)','715507005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.226_733166004','733166004','http://snomed.info/sct','Infection of skin caused by Borrelia (disorder)','733166004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.226_735520000','735520000','http://snomed.info/sct','Disseminated infection caused by Borrelia (disorder)','735520000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.226_77863005','77863005','http://snomed.info/sct','Lyme carditis (disorder)','77863005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.226_866066004','866066004','http://snomed.info/sct','Myelitis caused by Borrelia burgdorferi (disorder)','866066004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.226_870335005','870335005','http://snomed.info/sct','Panuveitis caused by Borrelia burgdorferi (disorder)','870335005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.226_230150008','230150008','http://snomed.info/sct','Meningitis in Lyme disease (disorder)','230150008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.106_10759761000119100','10759761000119100','http://snomed.info/sct','Rubella in mother complicating childbirth (disorder)','10759761000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.106_1092361000119109','1092361000119109','http://snomed.info/sct','Rubella pneumonia (disorder)','1092361000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.106_111868009','111868009','http://snomed.info/sct','Rubella infection of central nervous system (disorder)','111868009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.106_186567003','186567003','http://snomed.info/sct','Rubella with neurological complication (disorder)','186567003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.106_19431000','19431000','http://snomed.info/sct','Arthritis due to rubella (disorder)','19431000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.106_232312000','232312000','http://snomed.info/sct','Endocochlear rubella (disorder)','232312000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.106_240485004','240485004','http://snomed.info/sct','Hemorrhagic rubella (disorder)','240485004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.106_277138006','277138006','http://snomed.info/sct','Rubella arthralgia (disorder)','277138006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.106_36653000','36653000','http://snomed.info/sct','Rubella (disorder)','36653000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.106_41679006','41679006','http://snomed.info/sct','Toxoplasmosis, other infections, rubella, cytomegalovirus, and herpes simplex virus syndrome (disorder)','41679006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.106_721773000','721773000','http://snomed.info/sct','Meningitis caused by Rubella virus (disorder)','721773000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.106_1092351000119107','1092351000119107','http://snomed.info/sct','Meningitis caused by Rubella virus (disorder)','1092351000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.106_186570004','186570004','http://snomed.info/sct','Rubella deafness (disorder)','186570004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.106_199192005','199192005','http://snomed.info/sct','Maternal rubella during pregnancy - baby delivered (disorder)','199192005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.106_199193000','199193000','http://snomed.info/sct','Maternal rubella in the puerperium - baby delivered during current episode of care (disorder)','199193000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.106_199194006','199194006','http://snomed.info/sct','Maternal rubella during pregnancy - baby not yet delivered (disorder)','199194006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.106_199195007','199195007','http://snomed.info/sct','Maternal rubella in the puerperium - baby delivered during previous episode of care (disorder)','199195007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.106_274119009','274119009','http://snomed.info/sct','Rubella in pregnancy (disorder)','274119009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.106_84939004','84939004','http://snomed.info/sct','Rubella in mother complicating pregnancy, childbirth AND/OR puerperium (disorder)','84939004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.106_1857005','1857005','http://snomed.info/sct','Congenital rubella syndrome (disorder)','1857005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.106_231985001','231985001','http://snomed.info/sct','Rubella retinopathy (disorder)','231985001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.106_253227001','253227001','http://snomed.info/sct','Rubella cataract (disorder)','253227001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.106_47082005','47082005','http://snomed.info/sct','Congenital rubella pneumonitis (disorder)','47082005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.106_64190005','64190005','http://snomed.info/sct','Rubella myocarditis (disorder)','64190005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.106_79303006','79303006','http://snomed.info/sct','Expanded rubella syndrome (disorder)','79303006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.106_10082001','10082001','http://snomed.info/sct','Progressive rubella panencephalitis (disorder)','10082001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.106_128191000','128191000','http://snomed.info/sct','Encephalomyelitis due to rubella (disorder)','128191000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.106_192689006','192689006','http://snomed.info/sct','Rubella encephalitis (disorder)','192689006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.106_609434007','609434007','http://snomed.info/sct','Fetal damage from maternal rubella (disorder)','609434007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.106_13225007','13225007','http://snomed.info/sct','Meningoencephalitis caused by Rubella virus (disorder)','13225007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.106_302811004','302811004','http://snomed.info/sct','Progressive congenital rubella encephalomyelitis (disorder)','302811004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2056_1086731000119104','1086731000119104','http://snomed.info/sct','Echinococcus multilocularis infection of multiple sites (disorder)','1086731000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2056_21009004','21009004','http://snomed.info/sct','Echinococcus multilocularis infection (disorder)','21009004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2056_27235001','27235001','http://snomed.info/sct','Echinococcus multilocularis infection of liver (disorder)','27235001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.227_A69.20','A69.20','http://hl7.org/fhir/sid/icd-10-cm','Lyme disease, unspecified','A6920','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.227_A69.22','A69.22','http://hl7.org/fhir/sid/icd-10-cm','Other neurologic disorders in Lyme disease','A6922','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.227_A69.23','A69.23','http://hl7.org/fhir/sid/icd-10-cm','Arthritis due to Lyme disease','A6923','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.227_A69.29','A69.29','http://hl7.org/fhir/sid/icd-10-cm','Other conditions associated with Lyme disease','A6929','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.227_L90.4','L90.4','http://hl7.org/fhir/sid/icd-10-cm','Acrodermatitis chronica atrophicans','L904','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.227_A69.21','A69.21','http://hl7.org/fhir/sid/icd-10-cm','Meningitis due to Lyme disease','A6921','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2057_B67.5','B67.5','http://hl7.org/fhir/sid/icd-10-cm','Echinococcus multilocularis infection of liver','B675','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2057_B67.61','B67.61','http://hl7.org/fhir/sid/icd-10-cm','Echinococcus multilocularis infection, multiple sites','B6761','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2057_B67.69','B67.69','http://hl7.org/fhir/sid/icd-10-cm','Echinococcus multilocularis infection, other sites','B6769','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2057_B67.7','B67.7','http://hl7.org/fhir/sid/icd-10-cm','Echinococcus multilocularis infection, unspecified','B677','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1089_A50','A50','http://hl7.org/fhir/sid/icd-10-cm','Congenital syphilis','A50','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1089_A50.0','A50.0','http://hl7.org/fhir/sid/icd-10-cm','Early congenital syphilis, symptomatic','A500','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1089_A50.3','A50.3','http://hl7.org/fhir/sid/icd-10-cm','Late congenital syphilitic oculopathy','A503','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1089_A50.4','A50.4','http://hl7.org/fhir/sid/icd-10-cm','Late congenital neurosyphilis [juvenile neurosyphilis]','A504','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1089_A50.5','A50.5','http://hl7.org/fhir/sid/icd-10-cm','Other late congenital syphilis, symptomatic','A505','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1089_A50.01','A50.01','http://hl7.org/fhir/sid/icd-10-cm','Early congenital syphilitic oculopathy','A5001','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1089_A50.02','A50.02','http://hl7.org/fhir/sid/icd-10-cm','Early congenital syphilitic osteochondropathy','A5002','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1089_A50.03','A50.03','http://hl7.org/fhir/sid/icd-10-cm','Early congenital syphilitic pharyngitis','A5003','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1089_A50.04','A50.04','http://hl7.org/fhir/sid/icd-10-cm','Early congenital syphilitic pneumonia','A5004','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1089_A50.05','A50.05','http://hl7.org/fhir/sid/icd-10-cm','Early congenital syphilitic rhinitis','A5005','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1089_A50.06','A50.06','http://hl7.org/fhir/sid/icd-10-cm','Early cutaneous congenital syphilis','A5006','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1089_A50.07','A50.07','http://hl7.org/fhir/sid/icd-10-cm','Early mucocutaneous congenital syphilis','A5007','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1089_A50.08','A50.08','http://hl7.org/fhir/sid/icd-10-cm','Early visceral congenital syphilis','A5008','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1089_A50.09','A50.09','http://hl7.org/fhir/sid/icd-10-cm','Other early congenital syphilis, symptomatic','A5009','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1089_A50.1','A50.1','http://hl7.org/fhir/sid/icd-10-cm','Early congenital syphilis, latent','A501','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1089_A50.2','A50.2','http://hl7.org/fhir/sid/icd-10-cm','Early congenital syphilis, unspecified','A502','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1089_A50.30','A50.30','http://hl7.org/fhir/sid/icd-10-cm','Late congenital syphilitic oculopathy, unspecified','A5030','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1089_A50.31','A50.31','http://hl7.org/fhir/sid/icd-10-cm','Late congenital syphilitic interstitial keratitis','A5031','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1089_A50.32','A50.32','http://hl7.org/fhir/sid/icd-10-cm','Late congenital syphilitic chorioretinitis','A5032','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1089_A50.39','A50.39','http://hl7.org/fhir/sid/icd-10-cm','Other late congenital syphilitic oculopathy','A5039','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1089_A50.40','A50.40','http://hl7.org/fhir/sid/icd-10-cm','Late congenital neurosyphilis, unspecified','A5040','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1089_A50.41','A50.41','http://hl7.org/fhir/sid/icd-10-cm','Late congenital syphilitic meningitis','A5041','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1089_A50.43','A50.43','http://hl7.org/fhir/sid/icd-10-cm','Late congenital syphilitic polyneuropathy','A5043','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1089_A50.44','A50.44','http://hl7.org/fhir/sid/icd-10-cm','Late congenital syphilitic optic nerve atrophy','A5044','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1089_A50.45','A50.45','http://hl7.org/fhir/sid/icd-10-cm','Juvenile general paresis','A5045','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1089_A50.49','A50.49','http://hl7.org/fhir/sid/icd-10-cm','Other late congenital neurosyphilis','A5049','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1089_A50.51','A50.51','http://hl7.org/fhir/sid/icd-10-cm','Clutton''s joints','A5051','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1089_A50.52','A50.52','http://hl7.org/fhir/sid/icd-10-cm','Hutchinson''s teeth','A5052','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1089_A50.53','A50.53','http://hl7.org/fhir/sid/icd-10-cm','Hutchinson''s triad','A5053','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1089_A50.54','A50.54','http://hl7.org/fhir/sid/icd-10-cm','Late congenital cardiovascular syphilis','A5054','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1089_A50.55','A50.55','http://hl7.org/fhir/sid/icd-10-cm','Late congenital syphilitic arthropathy','A5055','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1089_A50.56','A50.56','http://hl7.org/fhir/sid/icd-10-cm','Late congenital syphilitic osteochondropathy','A5056','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1089_A50.57','A50.57','http://hl7.org/fhir/sid/icd-10-cm','Syphilitic saddle nose','A5057','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1089_A50.59','A50.59','http://hl7.org/fhir/sid/icd-10-cm','Other late congenital syphilis, symptomatic','A5059','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1089_A50.6','A50.6','http://hl7.org/fhir/sid/icd-10-cm','Late congenital syphilis, latent','A506','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1089_A50.7','A50.7','http://hl7.org/fhir/sid/icd-10-cm','Late congenital syphilis, unspecified','A507','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1089_A50.9','A50.9','http://hl7.org/fhir/sid/icd-10-cm','Congenital syphilis, unspecified','A509','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1089_A50.42','A50.42','http://hl7.org/fhir/sid/icd-10-cm','Late congenital syphilitic encephalitis','A5042','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2054_1086721000119102','1086721000119102','http://snomed.info/sct','Echinococcus granulosus infection of multiple sites (disorder)','1086721000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2054_187137009','187137009','http://snomed.info/sct','Echinococcus granulosus infection of bone (disorder)','187137009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2054_20790006','20790006','http://snomed.info/sct','Echinococcus granulosus infection of liver (disorder)','20790006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2054_65963007','65963007','http://snomed.info/sct','Echinococcus granulosus infection of thyroid (disorder)','65963007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2054_721822004','721822004','http://snomed.info/sct','Cystic echinococcosis (disorder)','721822004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2054_75006000','75006000','http://snomed.info/sct','Echinococcus granulosus infection (disorder)','75006000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2054_75388006','75388006','http://snomed.info/sct','Echinococcus granulosus infection of lung (disorder)','75388006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2054_840499006','840499006','http://snomed.info/sct','Rupture of liver due to Echinococcus granulosus infection (disorder)','840499006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2054_721823009','721823009','http://snomed.info/sct','Encephalitis caused by Echinococcus granulosus (disorder)','721823009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.229_10809061000119106','10809061000119106','http://snomed.info/sct','Malaria in mother complicating childbirth (disorder)','10809061000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.229_1141602008','1141602008','http://snomed.info/sct','Complicated malaria (disorder)','1141602008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.229_18342001','18342001','http://snomed.info/sct','Algid malaria (disorder)','18342001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.229_186792002','186792002','http://snomed.info/sct','Plasmodium vivax malaria with rupture of spleen (disorder)','186792002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.229_186795000','186795000','http://snomed.info/sct','Malaria caused by simian plasmodia (disorder)','186795000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.229_186796004','186796004','http://snomed.info/sct','Plasmodium malariae malaria with nephropathy (disorder)','186796004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.229_19341001','19341001','http://snomed.info/sct','Ovale malaria (disorder)','19341001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.229_197606008','197606008','http://snomed.info/sct','Nephrotic syndrome in malaria (disorder)','197606008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.229_199183007','199183007','http://snomed.info/sct','Maternal malaria during pregnancy, childbirth and the puerperium (disorder)','199183007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.229_199185000','199185000','http://snomed.info/sct','Maternal malaria during pregnancy - baby delivered (disorder)','199185000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.229_199186004','199186004','http://snomed.info/sct','Maternal malaria in the puerperium - baby delivered during current episode of care (disorder)','199186004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.229_199187008','199187008','http://snomed.info/sct','Maternal malaria during pregnancy - baby not yet delivered (disorder)','199187008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.229_199188003','199188003','http://snomed.info/sct','Maternal malaria in the puerperium - baby delivered during previous episode of care (disorder)','199188003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.229_206445003','206445003','http://snomed.info/sct','Malarial pigment deposition (disorder)','206445003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.229_21070001','21070001','http://snomed.info/sct','Mixed malaria (disorder)','21070001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.229_240631007','240631007','http://snomed.info/sct','Airport malaria (disorder)','240631007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.229_248437004','248437004','http://snomed.info/sct','Malarial fever (finding)','248437004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.229_27052006','27052006','http://snomed.info/sct','Vivax malaria (disorder)','27052006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.229_27618009','27618009','http://snomed.info/sct','Quartan malaria (disorder)','27618009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.229_276671000','276671000','http://snomed.info/sct','Congenital falciparum malaria (disorder)','276671000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.229_3095005','3095005','http://snomed.info/sct','Induced malaria (disorder)','3095005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.229_397071003','397071003','http://snomed.info/sct','Malarial red blood cell inclusion (finding)','397071003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.229_4911000124103','4911000124103','http://snomed.info/sct','Plasmodium falciparum malaria with complication (disorder)','4911000124103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.229_51634001','51634001','http://snomed.info/sct','Congenital malaria (disorder)','51634001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.229_56625005','56625005','http://snomed.info/sct','Black water fever (disorder)','56625005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.229_61462000','61462000','http://snomed.info/sct','Malaria (disorder)','61462000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.229_62676009','62676009','http://snomed.info/sct','Falciparum malaria (disorder)','62676009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.229_69668008','69668008','http://snomed.info/sct','Therapeutically induced malaria (disorder)','69668008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.229_722888000','722888000','http://snomed.info/sct','Malaria caused by Plasmodium not Plasmodium falciparum (disorder)','722888000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.229_735531008','735531008','http://snomed.info/sct','Clinical malaria (disorder)','735531008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.229_77663007','77663007','http://snomed.info/sct','Hemolytic anemia due to malaria (disorder)','77663007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.229_83072009','83072009','http://snomed.info/sct','Malarial hepatitis (disorder)','83072009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.229_866127009','866127009','http://snomed.info/sct','Myelitis caused by Plasmodium (disorder)','866127009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.229_240629003','240629003','http://snomed.info/sct','Malarial shock lung (disorder)','240629003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.229_735522008','735522008','http://snomed.info/sct','Human immunodeficiency virus World Health Organization 2007 stage 1 co-occurrent with malaria (disorder)','735522008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.229_735524009','735524009','http://snomed.info/sct','Human immunodeficiency virus World Health Organization 2007 stage 2 co-occurrent with malaria (disorder)','735524009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.229_735526006','735526006','http://snomed.info/sct','Human immunodeficiency virus World Health Organization 2007 stage 3 co-occurrent with malaria (disorder)','735526006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.229_735528007','735528007','http://snomed.info/sct','Human immunodeficiency virus World Health Organization 2007 stage 4 co-occurrent with malaria (disorder)','735528007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.229_186791009','186791009','http://snomed.info/sct','Plasmodium falciparum malaria with cerebral complications (disorder)','186791009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.229_53622003','53622003','http://snomed.info/sct','Cerebral malaria (disorder)','53622003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2055_B67.3','B67.3','http://hl7.org/fhir/sid/icd-10-cm','Echinococcus granulosus infection, other and multiple sites','B673','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2055_B67.0','B67.0','http://hl7.org/fhir/sid/icd-10-cm','Echinococcus granulosus infection of liver','B670','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2055_B67.1','B67.1','http://hl7.org/fhir/sid/icd-10-cm','Echinococcus granulosus infection of lung','B671','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2055_B67.2','B67.2','http://hl7.org/fhir/sid/icd-10-cm','Echinococcus granulosus infection of bone','B672','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2055_B67.31','B67.31','http://hl7.org/fhir/sid/icd-10-cm','Echinococcus granulosus infection, thyroid gland','B6731','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2055_B67.32','B67.32','http://hl7.org/fhir/sid/icd-10-cm','Echinococcus granulosus infection, multiple sites','B6732','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2055_B67.39','B67.39','http://hl7.org/fhir/sid/icd-10-cm','Echinococcus granulosus infection, other sites','B6739','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2055_B67.4','B67.4','http://hl7.org/fhir/sid/icd-10-cm','Echinococcus granulosus infection, unspecified','B674','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2063_A63.0','A63.0','http://hl7.org/fhir/sid/icd-10-cm','Anogenital (venereal) warts','A630','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2064_187151009','187151009','http://snomed.info/sct','Diphyllobothriasis (disorder)','187151009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2064_34240005','34240005','http://snomed.info/sct','Infection caused by Diphyllobothrium pacificum (disorder)','34240005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2064_359799003','359799003','http://snomed.info/sct','Intestinal diphyllobothriasis (disorder)','359799003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2064_7877005','7877005','http://snomed.info/sct','Infection caused by Diphyllobothrium latum (disorder)','7877005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2061_237109002','237109002','http://snomed.info/sct','Vulval warts (disorder)','237109002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2061_237110007','237110007','http://snomed.info/sct','Condyloma acuminata of vulva (disorder)','237110007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2061_240542006','240542006','http://snomed.info/sct','Anogenital warts (disorder)','240542006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2061_240597001','240597001','http://snomed.info/sct','Anal warts (disorder)','240597001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2061_240598006','240598006','http://snomed.info/sct','Penile warts (disorder)','240598006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2061_266113007','266113007','http://snomed.info/sct','Genital warts (disorder)','266113007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2061_266114001','266114001','http://snomed.info/sct','Perianal warts (disorder)','266114001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2061_298128008','298128008','http://snomed.info/sct','Perineal wart (disorder)','298128008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2061_298129000','298129000','http://snomed.info/sct','Female perineal wart (disorder)','298129000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2061_399599006','399599006','http://snomed.info/sct','Condyloma acuminata of vagina (disorder)','399599006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2061_419266001','419266001','http://snomed.info/sct','Condyloma acuminata of cervix (disorder)','419266001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2061_428017002','428017002','http://snomed.info/sct','Condyloma acuminata of vulva in pregnancy (disorder)','428017002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2061_871634008','871634008','http://snomed.info/sct','Warts of perianal region in infancy caused by human papillomavirus (disorder)','871634008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1090_109436001','109436001','http://snomed.info/sct','Moon molar teeth (disorder)','109436001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1090_1142031005','1142031005','http://snomed.info/sct','Optic atrophy due to late congenital syphilis (disorder)','1142031005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1090_1142092000','1142092000','http://snomed.info/sct','Late congenital syphilitic osteochondropathy (disorder)','1142092000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1090_1142095003','1142095003','http://snomed.info/sct','Late congenital syphilis of cardiovascular system (disorder)','1142095003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1090_1142112002','1142112002','http://snomed.info/sct','Sensorineural deafness due to late congenital syphilis (disorder)','1142112002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1090_1177081002','1177081002','http://snomed.info/sct','Mulberry molar teeth (disorder)','1177081002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1090_186833000','186833000','http://snomed.info/sct','Early congenital syphilis - latent (disorder)','186833000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1090_186842007','186842007','http://snomed.info/sct','Late congenital syphilitic oculopathy (disorder)','186842007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1090_192008','192008','http://snomed.info/sct','Congenital syphilitic hepatomegaly (disorder)','192008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1090_19290004','19290004','http://snomed.info/sct','Clutton''s joints (disorder)','19290004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1090_230152000','230152000','http://snomed.info/sct','Late congenital syphilitic meningitis (disorder)','230152000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1090_230563005','230563005','http://snomed.info/sct','Late congenital syphilitic polyneuropathy (disorder)','230563005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1090_235898000','235898000','http://snomed.info/sct','Pericellular fibrosis of congenital syphilis (disorder)','235898000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1090_240554006','240554006','http://snomed.info/sct','Hutchinson''s triad (disorder)','240554006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1090_266125005','266125005','http://snomed.info/sct','Early congenital syphilis with symptoms (disorder)','266125005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1090_266126006','266126006','http://snomed.info/sct','Late congenital neurosyphilis (disorder)','266126006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1090_275376007','275376007','http://snomed.info/sct','Congenital syphilitic chronic coryza (disorder)','275376007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1090_27648007','27648007','http://snomed.info/sct','Congenital syphilitic periostitis (disorder)','27648007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1090_276700005','276700005','http://snomed.info/sct','Congenital syphilitic rhinitis (disorder)','276700005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1090_35742006','35742006','http://snomed.info/sct','Congenital syphilis (disorder)','35742006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1090_4359001','4359001','http://snomed.info/sct','Early congenital syphilis (less than 2 years) (disorder)','4359001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1090_46235002','46235002','http://snomed.info/sct','Early latent congenital syphilis, positive serology, negative spinal fluid (disorder)','46235002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1090_54069001','54069001','http://snomed.info/sct','Congenital syphilitic mucous patches (disorder)','54069001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1090_56118002','56118002','http://snomed.info/sct','Congenital syphilitic splenomegaly (disorder)','56118002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1090_58392004','58392004','http://snomed.info/sct','Congenital syphilitic osteochondritis (disorder)','58392004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1090_59721007','59721007','http://snomed.info/sct','Congenital syphilitic pemphigus (disorder)','59721007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1090_6267005','6267005','http://snomed.info/sct','Congenital syphilitic meningitis (disorder)','6267005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1090_68764005','68764005','http://snomed.info/sct','Juvenile taboparesis (disorder)','68764005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1090_703134008','703134008','http://snomed.info/sct','Hypoplasia of enamel due to congenital syphilis (disorder)','703134008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1090_721583004','721583004','http://snomed.info/sct','Mucocutaneous early congenital syphilis (disorder)','721583004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1090_735515000','735515000','http://snomed.info/sct','Symptomatic late congenital syphilis (disorder)','735515000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1090_82323002','82323002','http://snomed.info/sct','Late congenital syphilis (2 years or more) (disorder)','82323002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1090_827006','827006','http://snomed.info/sct','Late congenital syphilis, latent (positive serology - cerebrospinal fluid, 2 years OR more) (disorder)','827006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1090_82959004','82959004','http://snomed.info/sct','Dementia paralytica juvenilis (disorder)','82959004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1090_86443005','86443005','http://snomed.info/sct','Hutchinson''s teeth (disorder)','86443005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1090_866106004','866106004','http://snomed.info/sct','Interstitial keratitis due to late congenital syphilis (disorder)','866106004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1090_87318008','87318008','http://snomed.info/sct','Congenital syphilis with gumma (disorder)','87318008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1090_9941009','9941009','http://snomed.info/sct','Congenital syphilitic choroiditis (disorder)','9941009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1090_32735002','32735002','http://snomed.info/sct','Congenital syphilitic encephalitis (disorder)','32735002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.451_A15.0','A15.0','http://hl7.org/fhir/sid/icd-10-cm','Tuberculosis of lung','A150','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.451_A15.4','A15.4','http://hl7.org/fhir/sid/icd-10-cm','Tuberculosis of intrathoracic lymph nodes','A154','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.451_A15.5','A15.5','http://hl7.org/fhir/sid/icd-10-cm','Tuberculosis of larynx, trachea and bronchus','A155','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.451_A15.6','A15.6','http://hl7.org/fhir/sid/icd-10-cm','Tuberculous pleurisy','A156','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.451_A15.7','A15.7','http://hl7.org/fhir/sid/icd-10-cm','Primary respiratory tuberculosis','A157','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.451_A15.8','A15.8','http://hl7.org/fhir/sid/icd-10-cm','Other respiratory tuberculosis','A158','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.451_A15.9','A15.9','http://hl7.org/fhir/sid/icd-10-cm','Respiratory tuberculosis unspecified','A159','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.451_A17.1','A17.1','http://hl7.org/fhir/sid/icd-10-cm','Meningeal tuberculoma','A171','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.451_A17.81','A17.81','http://hl7.org/fhir/sid/icd-10-cm','Tuberculoma of brain and spinal cord','A1781','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.451_A17.83','A17.83','http://hl7.org/fhir/sid/icd-10-cm','Tuberculous neuritis','A1783','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.451_A17.89','A17.89','http://hl7.org/fhir/sid/icd-10-cm','Other tuberculosis of nervous system','A1789','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.451_A17.9','A17.9','http://hl7.org/fhir/sid/icd-10-cm','Tuberculosis of nervous system, unspecified','A179','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.451_A18.01','A18.01','http://hl7.org/fhir/sid/icd-10-cm','Tuberculosis of spine','A1801','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.451_A18.02','A18.02','http://hl7.org/fhir/sid/icd-10-cm','Tuberculous arthritis of other joints','A1802','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.451_A18.03','A18.03','http://hl7.org/fhir/sid/icd-10-cm','Tuberculosis of other bones','A1803','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.451_A18.09','A18.09','http://hl7.org/fhir/sid/icd-10-cm','Other musculoskeletal tuberculosis','A1809','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.451_A18.10','A18.10','http://hl7.org/fhir/sid/icd-10-cm','Tuberculosis of genitourinary system, unspecified','A1810','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.451_A18.11','A18.11','http://hl7.org/fhir/sid/icd-10-cm','Tuberculosis of kidney and ureter','A1811','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.451_A18.12','A18.12','http://hl7.org/fhir/sid/icd-10-cm','Tuberculosis of bladder','A1812','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.451_A18.13','A18.13','http://hl7.org/fhir/sid/icd-10-cm','Tuberculosis of other urinary organs','A1813','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.451_A18.14','A18.14','http://hl7.org/fhir/sid/icd-10-cm','Tuberculosis of prostate','A1814','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.451_A18.15','A18.15','http://hl7.org/fhir/sid/icd-10-cm','Tuberculosis of other male genital organs','A1815','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.451_A18.16','A18.16','http://hl7.org/fhir/sid/icd-10-cm','Tuberculosis of cervix','A1816','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.451_A18.18','A18.18','http://hl7.org/fhir/sid/icd-10-cm','Tuberculosis of other female genital organs','A1818','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.451_A18.2','A18.2','http://hl7.org/fhir/sid/icd-10-cm','Tuberculous peripheral lymphadenopathy','A182','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.451_A18.31','A18.31','http://hl7.org/fhir/sid/icd-10-cm','Tuberculous peritonitis','A1831','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.451_A18.32','A18.32','http://hl7.org/fhir/sid/icd-10-cm','Tuberculous enteritis','A1832','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.451_A18.39','A18.39','http://hl7.org/fhir/sid/icd-10-cm','Retroperitoneal tuberculosis','A1839','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.451_A18.4','A18.4','http://hl7.org/fhir/sid/icd-10-cm','Tuberculosis of skin and subcutaneous tissue','A184','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.451_A18.50','A18.50','http://hl7.org/fhir/sid/icd-10-cm','Tuberculosis of eye, unspecified','A1850','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.451_A18.51','A18.51','http://hl7.org/fhir/sid/icd-10-cm','Tuberculous episcleritis','A1851','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.451_A18.52','A18.52','http://hl7.org/fhir/sid/icd-10-cm','Tuberculous keratitis','A1852','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.451_A18.53','A18.53','http://hl7.org/fhir/sid/icd-10-cm','Tuberculous chorioretinitis','A1853','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.451_A18.54','A18.54','http://hl7.org/fhir/sid/icd-10-cm','Tuberculous iridocyclitis','A1854','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.451_A18.59','A18.59','http://hl7.org/fhir/sid/icd-10-cm','Other tuberculosis of eye','A1859','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.451_A18.6','A18.6','http://hl7.org/fhir/sid/icd-10-cm','Tuberculosis of (inner) (middle) ear','A186','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.451_A18.7','A18.7','http://hl7.org/fhir/sid/icd-10-cm','Tuberculosis of adrenal glands','A187','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.451_A18.81','A18.81','http://hl7.org/fhir/sid/icd-10-cm','Tuberculosis of thyroid gland','A1881','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.451_A18.82','A18.82','http://hl7.org/fhir/sid/icd-10-cm','Tuberculosis of other endocrine glands','A1882','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.451_A18.83','A18.83','http://hl7.org/fhir/sid/icd-10-cm','Tuberculosis of digestive tract organs, not elsewhere classified','A1883','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.451_A18.84','A18.84','http://hl7.org/fhir/sid/icd-10-cm','Tuberculosis of heart','A1884','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.451_A18.85','A18.85','http://hl7.org/fhir/sid/icd-10-cm','Tuberculosis of spleen','A1885','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.451_A18.89','A18.89','http://hl7.org/fhir/sid/icd-10-cm','Tuberculosis of other sites','A1889','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.451_A19.0','A19.0','http://hl7.org/fhir/sid/icd-10-cm','Acute miliary tuberculosis of a single specified site','A190','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.451_A19.1','A19.1','http://hl7.org/fhir/sid/icd-10-cm','Acute miliary tuberculosis of multiple sites','A191','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.451_A19.2','A19.2','http://hl7.org/fhir/sid/icd-10-cm','Acute miliary tuberculosis, unspecified','A192','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.451_A19.8','A19.8','http://hl7.org/fhir/sid/icd-10-cm','Other miliary tuberculosis','A198','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.451_A19.9','A19.9','http://hl7.org/fhir/sid/icd-10-cm','Miliary tuberculosis, unspecified','A199','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.451_B90.0','B90.0','http://hl7.org/fhir/sid/icd-10-cm','Sequelae of central nervous system tuberculosis','B900','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.451_B90.1','B90.1','http://hl7.org/fhir/sid/icd-10-cm','Sequelae of genitourinary tuberculosis','B901','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.451_B90.2','B90.2','http://hl7.org/fhir/sid/icd-10-cm','Sequelae of tuberculosis of bones and joints','B902','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.451_B90.8','B90.8','http://hl7.org/fhir/sid/icd-10-cm','Sequelae of tuberculosis of other organs','B908','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.451_B90.9','B90.9','http://hl7.org/fhir/sid/icd-10-cm','Sequelae of respiratory and unspecified tuberculosis','B909','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.451_O98.011','O98.011','http://hl7.org/fhir/sid/icd-10-cm','Tuberculosis complicating pregnancy, first trimester','O98011','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.451_O98.012','O98.012','http://hl7.org/fhir/sid/icd-10-cm','Tuberculosis complicating pregnancy, second trimester','O98012','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.451_O98.013','O98.013','http://hl7.org/fhir/sid/icd-10-cm','Tuberculosis complicating pregnancy, third trimester','O98013','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.451_O98.019','O98.019','http://hl7.org/fhir/sid/icd-10-cm','Tuberculosis complicating pregnancy, unspecified trimester','O98019','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.451_O98.02','O98.02','http://hl7.org/fhir/sid/icd-10-cm','Tuberculosis complicating childbirth','O9802','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.451_O98.03','O98.03','http://hl7.org/fhir/sid/icd-10-cm','Tuberculosis complicating the puerperium','O9803','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.451_P37.0','P37.0','http://hl7.org/fhir/sid/icd-10-cm','Congenital tuberculosis','P370','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.451_J65','J65','http://hl7.org/fhir/sid/icd-10-cm','Pneumoconiosis associated with tuberculosis','J65','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.451_A17.0','A17.0','http://hl7.org/fhir/sid/icd-10-cm','Tuberculous meningitis','A170','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.451_A17.82','A17.82','http://hl7.org/fhir/sid/icd-10-cm','Tuberculous meningoencephalitis','A1782','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.451_A18.17','A18.17','http://hl7.org/fhir/sid/icd-10-cm','Tuberculous female pelvic inflammatory disease','A1817','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.210_A07.4','A07.4','http://hl7.org/fhir/sid/icd-10-cm','Cyclosporiasis','A074','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.211_240372001','240372001','http://snomed.info/sct','Cyclosporiasis (disorder)','240372001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.211_716860005','716860005','http://snomed.info/sct','Infection of intestine caused by cyclospora cayetanensis (disorder)','716860005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.211_721810002','721810002','http://snomed.info/sct','Infection caused by Cyclospora (disorder)','721810002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_11906007','11906007','http://snomed.info/sct','Chronic gonococcal vulvovaginitis (disorder)','11906007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_188463006','188463006','http://snomed.info/sct','Chlamydial pelvic inflammatory disease (disorder)','188463006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_198242009','198242009','http://snomed.info/sct','Female gonococcal pelvic inflammatory disease (disorder)','198242009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_237038001','237038001','http://snomed.info/sct','Gonococcal salpingitis (disorder)','237038001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_237039009','237039009','http://snomed.info/sct','Chlamydial salpingitis (disorder)','237039009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_237069002','237069002','http://snomed.info/sct','Gonococcal endometritis (disorder)','237069002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_237070001','237070001','http://snomed.info/sct','Uterine candidiasis (disorder)','237070001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_270550006','270550006','http://snomed.info/sct','Pelvic inflammatory disease caused by Metamycoplasma hominis (disorder)','270550006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_271488001','271488001','http://snomed.info/sct','Mycoplasmal pelvic inflammatory disease (disorder)','271488001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_31999004','31999004','http://snomed.info/sct','Chronic gonococcal endometritis (disorder)','31999004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_45377007','45377007','http://snomed.info/sct','Acute gonococcal salpingitis (disorder)','45377007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_53529004','53529004','http://snomed.info/sct','Chronic gonococcal salpingitis (disorder)','53529004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_65295003','65295003','http://snomed.info/sct','Acute gonococcal endometritis (disorder)','65295003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_722522009','722522009','http://snomed.info/sct','Female pelvic inflammatory disease caused by Mycoplasma genitalium (disorder)','722522009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_76802005','76802005','http://snomed.info/sct','Chronic gonococcal cervicitis (disorder)','76802005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_81598001','81598001','http://snomed.info/sct','Trichomonal vulvovaginitis (disorder)','81598001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_10751311000119100','10751311000119100','http://snomed.info/sct','Salpingitis due to ectopic pregnancy (disorder)','10751311000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_10759231000119102','10759231000119102','http://snomed.info/sct','Salpingo-oophoritis in pregnancy (disorder)','10759231000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_111418006','111418006','http://snomed.info/sct','Chronic endocervicitis with erosion (disorder)','111418006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_1263771009','1263771009','http://snomed.info/sct','Acute on chronic pelvic inflammatory disease (disorder)','1263771009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_1264132007','1264132007','http://snomed.info/sct','Salpingitis following molar pregnancy (disorder)','1264132007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_1264133002','1264133002','http://snomed.info/sct','Salpingitis following ectopic pregnancy (disorder)','1264133002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_1264134008','1264134008','http://snomed.info/sct','Endometritis following molar pregnancy (disorder)','1264134008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_1264135009','1264135009','http://snomed.info/sct','Endometritis following ectopic pregnancy (disorder)','1264135009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_1264136005','1264136005','http://snomed.info/sct','Parametritis following molar pregnancy (disorder)','1264136005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_1264137001','1264137001','http://snomed.info/sct','Parametritis following ectopic pregnancy (disorder)','1264137001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_1264160009','1264160009','http://snomed.info/sct','Salpingo-oophoritis following molar pregnancy (disorder)','1264160009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_1264161008','1264161008','http://snomed.info/sct','Salpingo-oophoritis following ectopic pregnancy (disorder)','1264161008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_13125003','13125003','http://snomed.info/sct','Chronic myometritis (disorder)','13125003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_14053009','14053009','http://snomed.info/sct','Acute endomyometritis (disorder)','14053009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_16486000','16486000','http://snomed.info/sct','Acute oophoritis (disorder)','16486000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_172001','172001','http://snomed.info/sct','Endometritis following molar AND/OR ectopic pregnancy (disorder)','172001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_17716001','17716001','http://snomed.info/sct','Chronic endomyometritis (disorder)','17716001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_198130006','198130006','http://snomed.info/sct','Female pelvic inflammatory disease (disorder)','198130006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_198133008','198133008','http://snomed.info/sct','Acute perioophoritis (disorder)','198133008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_198135001','198135001','http://snomed.info/sct','Acute perisalpingitis (disorder)','198135001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_198136000','198136000','http://snomed.info/sct','Subacute perioophoritis (disorder)','198136000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_198137009','198137009','http://snomed.info/sct','Subacute salpingo-oophoritis (disorder)','198137009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_198138004','198138004','http://snomed.info/sct','Subacute perisalpingitis (disorder)','198138004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_198141008','198141008','http://snomed.info/sct','Chronic perioophoritis (disorder)','198141008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_198142001','198142001','http://snomed.info/sct','Chronic salpingo-oophoritis (disorder)','198142001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_198143006','198143006','http://snomed.info/sct','Chronic perisalpingitis (disorder)','198143006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_198156004','198156004','http://snomed.info/sct','Acute parametritis (disorder)','198156004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_198159006','198159006','http://snomed.info/sct','Chronic parametritis and pelvic cellulitis (disorder)','198159006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_198175009','198175009','http://snomed.info/sct','Female syphilitic pelvic inflammatory disease (disorder)','198175009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_198179003','198179003','http://snomed.info/sct','Uterine inflammatory diseases excluding the cervix (disorder)','198179003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_198180000','198180000','http://snomed.info/sct','Acute uterine inflammatory disease (disorder)','198180000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_198182008','198182008','http://snomed.info/sct','Subacute endometritis (disorder)','198182008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_198183003','198183003','http://snomed.info/sct','Subacute endomyometritis (disorder)','198183003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_198184009','198184009','http://snomed.info/sct','Subacute myometritis (disorder)','198184009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_198185005','198185005','http://snomed.info/sct','Subacute perimetritis (disorder)','198185005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_198186006','198186006','http://snomed.info/sct','Subacute pyometra (disorder)','198186006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_198188007','198188007','http://snomed.info/sct','Chronic uterine inflammatory disease (disorder)','198188007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_198189004','198189004','http://snomed.info/sct','Chronic pyometra (disorder)','198189004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_198198001','198198001','http://snomed.info/sct','Cervical, vaginal and vulval inflammatory diseases (disorder)','198198001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_198199009','198199009','http://snomed.info/sct','Cervicitis and endocervicitis (disorder)','198199009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_198203009','198203009','http://snomed.info/sct','Cervicitis with Nabothian cyst (disorder)','198203009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_198206001','198206001','http://snomed.info/sct','Endocervicitis with Nabothian cyst (disorder)','198206001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_198824009','198824009','http://snomed.info/sct','Salpingo-oophoritis following abortive pregnancy (disorder)','198824009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_200181000','200181000','http://snomed.info/sct','Puerperal endometritis - delivered with postnatal complication (disorder)','200181000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_200182007','200182007','http://snomed.info/sct','Puerperal endometritis with postnatal complication (disorder)','200182007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_200185009','200185009','http://snomed.info/sct','Puerperal salpingitis - delivered with postnatal complication (disorder)','200185009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_200187001','200187001','http://snomed.info/sct','Puerperal salpingitis with postnatal complication (disorder)','200187001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_20932005','20932005','http://snomed.info/sct','Puerperal salpingitis (disorder)','20932005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_21711003','21711003','http://snomed.info/sct','Hydrosalpinx (disorder)','21711003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_22399000','22399000','http://snomed.info/sct','Puerperal endometritis (disorder)','22399000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_237037006','237037006','http://snomed.info/sct','Acute pelvic inflammatory disease (disorder)','237037006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_237044002','237044002','http://snomed.info/sct','Chronic pelvic inflammatory disease (disorder)','237044002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_237045001','237045001','http://snomed.info/sct','Chronic parametritis (disorder)','237045001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_237124006','237124006','http://snomed.info/sct','Hematopyometra (disorder)','237124006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_266581008','266581008','http://snomed.info/sct','Acute salpingo-oophoritis (disorder)','266581008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_280483007','280483007','http://snomed.info/sct','Parametritis (disorder)','280483007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_286985001','286985001','http://snomed.info/sct','Endometritis, excluding cervix (disorder)','286985001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_28783002','28783002','http://snomed.info/sct','Inflammatory disease of the uterus (disorder)','28783002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_30806007','30806007','http://snomed.info/sct','Miscarriage with endometritis (disorder)','30806007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_31354001','31354001','http://snomed.info/sct','Endocervicitis (disorder)','31354001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_32582007','32582007','http://snomed.info/sct','Chronic oophoritis (disorder)','32582007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_34543006','34543006','http://snomed.info/sct','Chronic cervicitis with erosion (disorder)','34543006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_36742000','36742000','http://snomed.info/sct','Salpingitis isthmica nodosa (disorder)','36742000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_37830006','37830006','http://snomed.info/sct','Chronic perimetritis (disorder)','37830006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_38099005','38099005','http://snomed.info/sct','Failed attempted abortion with endometritis (disorder)','38099005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_39120007','39120007','http://snomed.info/sct','Failed attempted abortion with salpingo-oophoritis (disorder)','39120007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_397810006','397810006','http://snomed.info/sct','Pyosalpinx (disorder)','397810006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_4316006','4316006','http://snomed.info/sct','Myometritis (disorder)','4316006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_442506007','442506007','http://snomed.info/sct','Inflammatory disease of female genital structure (disorder)','442506007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_46536000','46536000','http://snomed.info/sct','Tubo-ovarian inflammatory disease (disorder)','46536000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_473079009','473079009','http://snomed.info/sct','Inflammation associated with retained intrauterine contraceptive device (disorder)','473079009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_473082004','473082004','http://snomed.info/sct','Infection and inflammation associated with retained intrauterine contraceptive device (disorder)','473082004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_48153009','48153009','http://snomed.info/sct','Acute perimetritis (disorder)','48153009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_49249007','49249007','http://snomed.info/sct','Acute endocervicitis (disorder)','49249007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_49258000','49258000','http://snomed.info/sct','Chronic endocervicitis (disorder)','49258000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_55551005','55551005','http://snomed.info/sct','Chronic salpingitis (disorder)','55551005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_56321006','56321006','http://snomed.info/sct','Perisalpingitis (disorder)','56321006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_56728002','56728002','http://snomed.info/sct','Chronic cervicitis (disorder)','56728002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_57468008','57468008','http://snomed.info/sct','Salpingo-oophoritis following molar AND/OR ectopic pregnancy (disorder)','57468008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_609464004','609464004','http://snomed.info/sct','Induced termination of pregnancy complicated by endometritis (disorder)','609464004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_609483006','609483006','http://snomed.info/sct','Induced termination of pregnancy complicated by salpingitis (disorder)','609483006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_609484000','609484000','http://snomed.info/sct','Induced termination of pregnancy complicated by salpingo-oophoritis (disorder)','609484000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_61568004','61568004','http://snomed.info/sct','Miscarriage with salpingo-oophoritis (disorder)','61568004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_63922003','63922003','http://snomed.info/sct','Chronic endometritis (disorder)','63922003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_64150007','64150007','http://snomed.info/sct','Endocervicitis with erosion (disorder)','64150007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_65984002','65984002','http://snomed.info/sct','Salpingitis follicularis (disorder)','65984002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_67667007','67667007','http://snomed.info/sct','Acute endometritis (disorder)','67667007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_698628000','698628000','http://snomed.info/sct','Postabortal pelvic inflammatory disease (disorder)','698628000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_70120007','70120007','http://snomed.info/sct','Subacute salpingitis (disorder)','70120007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_702716009','702716009','http://snomed.info/sct','Acute on chronic endometritis (disorder)','702716009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_702717000','702717000','http://snomed.info/sct','Acute on chronic cervicitis (disorder)','702717000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_713454009','713454009','http://snomed.info/sct','Atrophic endometritis (disorder)','713454009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_722830001','722830001','http://snomed.info/sct','Acute female pelvic inflammatory disease following procedure (disorder)','722830001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_723736005','723736005','http://snomed.info/sct','Xanthogranulomatous salpingitis (disorder)','723736005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_735619000','735619000','http://snomed.info/sct','Pyometra co-occurrent and due to acute inflammatory disease of uterus (disorder)','735619000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_735620006','735620006','http://snomed.info/sct','Pyometra co-occurrent and due to chronic inflammatory disease of uterus (disorder)','735620006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_73806001','73806001','http://snomed.info/sct','Subacute oophoritis (disorder)','73806001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_75548002','75548002','http://snomed.info/sct','Mumps oophoritis (disorder)','75548002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_75585005','75585005','http://snomed.info/sct','Decidual endometritis (disorder)','75585005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_76047005','76047005','http://snomed.info/sct','Oophoritis (disorder)','76047005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_76151005','76151005','http://snomed.info/sct','Acute myometritis (disorder)','76151005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_78623009','78623009','http://snomed.info/sct','Endometritis (disorder)','78623009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_7910003','7910003','http://snomed.info/sct','Miscarriage with salpingitis (disorder)','7910003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_81521003','81521003','http://snomed.info/sct','Failed attempted abortion with salpingitis (disorder)','81521003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_8258000','8258000','http://snomed.info/sct','Perioophoritis (disorder)','8258000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_83774001','83774001','http://snomed.info/sct','Cervicitis with erosion (disorder)','83774001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_86070006','86070006','http://snomed.info/sct','Perimetritis (disorder)','86070006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_88027004','88027004','http://snomed.info/sct','Endomyometritis (disorder)','88027004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_88157006','88157006','http://snomed.info/sct','Salpingitis (disorder)','88157006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_88981003','88981003','http://snomed.info/sct','Pyometra (disorder)','88981003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_8912009','8912009','http://snomed.info/sct','Acute salpingitis (disorder)','8912009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_9516007','9516007','http://snomed.info/sct','Salpingitis following molar AND/OR ectopic pregnancy (disorder)','9516007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_198241002','198241002','http://snomed.info/sct','Female tuberculous pelvic inflammatory disease (disorder)','198241002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_35585004','35585004','http://snomed.info/sct','Tuberculous endometritis (disorder)','35585004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_49558004','49558004','http://snomed.info/sct','Tuberculous salpingitis (disorder)','49558004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_62819009','62819009','http://snomed.info/sct','Tuberculous cervicitis (disorder)','62819009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_74181004','74181004','http://snomed.info/sct','Tuberculosis of female genital organs (disorder)','74181004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2069_84194006','84194006','http://snomed.info/sct','Tuberculous oophoritis (disorder)','84194006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.458_B97.21','B97.21','http://hl7.org/fhir/sid/icd-10-cm','SARS-associated coronavirus as the cause of diseases classified elsewhere','B9721','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.458_J12.81','J12.81','http://hl7.org/fhir/sid/icd-10-cm','Pneumonia due to SARS-associated coronavirus','J1281','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.217_186317009','186317009','http://snomed.info/sct','Listerial cerebral arteritis (disorder)','186317009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.217_186318004','186318004','http://snomed.info/sct','Listerial endocarditis (disorder)','186318004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.217_186319007','186319007','http://snomed.info/sct','Oculoglandular listeriosis (disorder)','186319007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.217_200426004','200426004','http://snomed.info/sct','Disseminated infantile listeriosis (disorder)','200426004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.217_29786001','29786001','http://snomed.info/sct','Listeria conjunctivitis (disorder)','29786001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.217_359646002','359646002','http://snomed.info/sct','Neonatal disseminated listeriosis (disorder)','359646002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.217_402128003','402128003','http://snomed.info/sct','Cutaneous listeriosis (disorder)','402128003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.217_406590007','406590007','http://snomed.info/sct','Listeria infection of the central nervous system (disorder)','406590007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.217_4241002','4241002','http://snomed.info/sct','Listeriosis (disorder)','4241002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.217_449335002','449335002','http://snomed.info/sct','Sepsis caused by Listeria monocytogenes (disorder)','449335002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.217_57420002','57420002','http://snomed.info/sct','Listeria abortion (disorder)','57420002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.217_609435008','609435008','http://snomed.info/sct','Fetal damage from maternal listeriosis (disorder)','609435008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.217_707211005','707211005','http://snomed.info/sct','Invasive listeriosis (disorder)','707211005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.217_721657003','721657003','http://snomed.info/sct','Food poisoning caused by Listeria monocytogenes (disorder)','721657003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.217_721739005','721739005','http://snomed.info/sct','Infection caused by Listeria (disorder)','721739005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.217_7964000','7964000','http://snomed.info/sct','Congenital listeriosis (disorder)','7964000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.217_31568009','31568009','http://snomed.info/sct','Listeria meningitis (disorder)','31568009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.217_240393003','240393003','http://snomed.info/sct','Listeria cerebritis (disorder)','240393003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.217_24630008','24630008','http://snomed.info/sct','Listeria meningoencephalitis (disorder)','24630008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2065_B70.0','B70.0','http://hl7.org/fhir/sid/icd-10-cm','Diphyllobothriasis','B700','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.218_A32.0','A32.0','http://hl7.org/fhir/sid/icd-10-cm','Cutaneous listeriosis','A320','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.218_A32.7','A32.7','http://hl7.org/fhir/sid/icd-10-cm','Listerial sepsis','A327','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.218_A32.81','A32.81','http://hl7.org/fhir/sid/icd-10-cm','Oculoglandular listeriosis','A3281','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.218_A32.82','A32.82','http://hl7.org/fhir/sid/icd-10-cm','Listerial endocarditis','A3282','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.218_A32.89','A32.89','http://hl7.org/fhir/sid/icd-10-cm','Other forms of listeriosis','A3289','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.218_A32.9','A32.9','http://hl7.org/fhir/sid/icd-10-cm','Listeriosis, unspecified','A329','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.218_P37.2','P37.2','http://hl7.org/fhir/sid/icd-10-cm','Neonatal (disseminated) listeriosis','P372','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.218_A32.11','A32.11','http://hl7.org/fhir/sid/icd-10-cm','Listerial meningitis','A3211','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.218_A32.12','A32.12','http://hl7.org/fhir/sid/icd-10-cm','Listerial meningoencephalitis','A3212','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2074_N70.01','N70.01','http://hl7.org/fhir/sid/icd-10-cm','Acute salpingitis','N7001','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2074_N70.02','N70.02','http://hl7.org/fhir/sid/icd-10-cm','Acute oophoritis','N7002','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2074_N70.03','N70.03','http://hl7.org/fhir/sid/icd-10-cm','Acute salpingitis and oophoritis','N7003','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2074_N70.11','N70.11','http://hl7.org/fhir/sid/icd-10-cm','Chronic salpingitis','N7011','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2074_N70.12','N70.12','http://hl7.org/fhir/sid/icd-10-cm','Chronic oophoritis','N7012','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2074_N70.13','N70.13','http://hl7.org/fhir/sid/icd-10-cm','Chronic salpingitis and oophoritis','N7013','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2074_N70.91','N70.91','http://hl7.org/fhir/sid/icd-10-cm','Salpingitis, unspecified','N7091','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2074_N70.92','N70.92','http://hl7.org/fhir/sid/icd-10-cm','Oophoritis, unspecified','N7092','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2074_N70.93','N70.93','http://hl7.org/fhir/sid/icd-10-cm','Salpingitis and oophoritis, unspecified','N7093','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2074_N71.0','N71.0','http://hl7.org/fhir/sid/icd-10-cm','Acute inflammatory disease of uterus','N710','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2074_N71.1','N71.1','http://hl7.org/fhir/sid/icd-10-cm','Chronic inflammatory disease of uterus','N711','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2074_N71.9','N71.9','http://hl7.org/fhir/sid/icd-10-cm','Inflammatory disease of uterus, unspecified','N719','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2074_N73.0','N73.0','http://hl7.org/fhir/sid/icd-10-cm','Acute parametritis and pelvic cellulitis','N730','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2074_N73.1','N73.1','http://hl7.org/fhir/sid/icd-10-cm','Chronic parametritis and pelvic cellulitis','N731','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2074_N73.2','N73.2','http://hl7.org/fhir/sid/icd-10-cm','Unspecified parametritis and pelvic cellulitis','N732','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2074_N73.3','N73.3','http://hl7.org/fhir/sid/icd-10-cm','Female acute pelvic peritonitis','N733','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2074_N73.4','N73.4','http://hl7.org/fhir/sid/icd-10-cm','Female chronic pelvic peritonitis','N734','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2074_N73.5','N73.5','http://hl7.org/fhir/sid/icd-10-cm','Female pelvic peritonitis, unspecified','N735','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2074_N73.6','N73.6','http://hl7.org/fhir/sid/icd-10-cm','Female pelvic peritoneal adhesions (postinfective)','N736','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2074_N73.8','N73.8','http://hl7.org/fhir/sid/icd-10-cm','Other specified female pelvic inflammatory diseases','N738','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2074_N73.9','N73.9','http://hl7.org/fhir/sid/icd-10-cm','Female pelvic inflammatory disease, unspecified','N739','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2074_N74','N74','http://hl7.org/fhir/sid/icd-10-cm','Female pelvic inflammatory disorders in diseases classified elsewhere','N74','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2074_O86.12','O86.12','http://hl7.org/fhir/sid/icd-10-cm','Endometritis following delivery','O8612','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2072_A56.11','A56.11','http://hl7.org/fhir/sid/icd-10-cm','Chlamydial female pelvic inflammatory disease','A5611','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2072_A54.24','A54.24','http://hl7.org/fhir/sid/icd-10-cm','Gonococcal female pelvic inflammatory disease','A5424','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2072_A18.17','A18.17','http://hl7.org/fhir/sid/icd-10-cm','Tuberculous female pelvic inflammatory disease','A1817','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2072_A52.76','A52.76','http://hl7.org/fhir/sid/icd-10-cm','Other genitourinary symptomatic late syphilis','A5276','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2072_N70.01','N70.01','http://hl7.org/fhir/sid/icd-10-cm','Acute salpingitis','N7001','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2072_N70.02','N70.02','http://hl7.org/fhir/sid/icd-10-cm','Acute oophoritis','N7002','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2072_N70.03','N70.03','http://hl7.org/fhir/sid/icd-10-cm','Acute salpingitis and oophoritis','N7003','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2072_N70.11','N70.11','http://hl7.org/fhir/sid/icd-10-cm','Chronic salpingitis','N7011','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2072_N70.12','N70.12','http://hl7.org/fhir/sid/icd-10-cm','Chronic oophoritis','N7012','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2072_N70.13','N70.13','http://hl7.org/fhir/sid/icd-10-cm','Chronic salpingitis and oophoritis','N7013','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2072_N70.91','N70.91','http://hl7.org/fhir/sid/icd-10-cm','Salpingitis, unspecified','N7091','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2072_N70.92','N70.92','http://hl7.org/fhir/sid/icd-10-cm','Oophoritis, unspecified','N7092','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2072_N70.93','N70.93','http://hl7.org/fhir/sid/icd-10-cm','Salpingitis and oophoritis, unspecified','N7093','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2072_N71.0','N71.0','http://hl7.org/fhir/sid/icd-10-cm','Acute inflammatory disease of uterus','N710','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2072_N71.1','N71.1','http://hl7.org/fhir/sid/icd-10-cm','Chronic inflammatory disease of uterus','N711','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2072_N71.9','N71.9','http://hl7.org/fhir/sid/icd-10-cm','Inflammatory disease of uterus, unspecified','N719','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2072_N73.0','N73.0','http://hl7.org/fhir/sid/icd-10-cm','Acute parametritis and pelvic cellulitis','N730','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2072_N73.1','N73.1','http://hl7.org/fhir/sid/icd-10-cm','Chronic parametritis and pelvic cellulitis','N731','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2072_N73.2','N73.2','http://hl7.org/fhir/sid/icd-10-cm','Unspecified parametritis and pelvic cellulitis','N732','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2072_N73.3','N73.3','http://hl7.org/fhir/sid/icd-10-cm','Female acute pelvic peritonitis','N733','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2072_N73.4','N73.4','http://hl7.org/fhir/sid/icd-10-cm','Female chronic pelvic peritonitis','N734','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2072_N73.5','N73.5','http://hl7.org/fhir/sid/icd-10-cm','Female pelvic peritonitis, unspecified','N735','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2072_N73.6','N73.6','http://hl7.org/fhir/sid/icd-10-cm','Female pelvic peritoneal adhesions (postinfective)','N736','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2072_N73.8','N73.8','http://hl7.org/fhir/sid/icd-10-cm','Other specified female pelvic inflammatory diseases','N738','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2072_N73.9','N73.9','http://hl7.org/fhir/sid/icd-10-cm','Female pelvic inflammatory disease, unspecified','N739','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2072_N74','N74','http://hl7.org/fhir/sid/icd-10-cm','Female pelvic inflammatory disorders in diseases classified elsewhere','N74','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2072_O86.12','O86.12','http://hl7.org/fhir/sid/icd-10-cm','Endometritis following delivery','O8612','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2073_A18.17','A18.17','http://hl7.org/fhir/sid/icd-10-cm','Tuberculous female pelvic inflammatory disease','A1817','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2073_A52.76','A52.76','http://hl7.org/fhir/sid/icd-10-cm','Other genitourinary symptomatic late syphilis','A5276','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2073_N70.01','N70.01','http://hl7.org/fhir/sid/icd-10-cm','Acute salpingitis','N7001','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2073_N70.02','N70.02','http://hl7.org/fhir/sid/icd-10-cm','Acute oophoritis','N7002','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2073_N70.03','N70.03','http://hl7.org/fhir/sid/icd-10-cm','Acute salpingitis and oophoritis','N7003','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2073_N70.11','N70.11','http://hl7.org/fhir/sid/icd-10-cm','Chronic salpingitis','N7011','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2073_N70.12','N70.12','http://hl7.org/fhir/sid/icd-10-cm','Chronic oophoritis','N7012','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2073_N70.13','N70.13','http://hl7.org/fhir/sid/icd-10-cm','Chronic salpingitis and oophoritis','N7013','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2073_N70.91','N70.91','http://hl7.org/fhir/sid/icd-10-cm','Salpingitis, unspecified','N7091','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2073_N70.92','N70.92','http://hl7.org/fhir/sid/icd-10-cm','Oophoritis, unspecified','N7092','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2073_N70.93','N70.93','http://hl7.org/fhir/sid/icd-10-cm','Salpingitis and oophoritis, unspecified','N7093','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2073_N71.0','N71.0','http://hl7.org/fhir/sid/icd-10-cm','Acute inflammatory disease of uterus','N710','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2073_N71.1','N71.1','http://hl7.org/fhir/sid/icd-10-cm','Chronic inflammatory disease of uterus','N711','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2073_N71.9','N71.9','http://hl7.org/fhir/sid/icd-10-cm','Inflammatory disease of uterus, unspecified','N719','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2073_N73.0','N73.0','http://hl7.org/fhir/sid/icd-10-cm','Acute parametritis and pelvic cellulitis','N730','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2073_N73.1','N73.1','http://hl7.org/fhir/sid/icd-10-cm','Chronic parametritis and pelvic cellulitis','N731','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2073_N73.2','N73.2','http://hl7.org/fhir/sid/icd-10-cm','Unspecified parametritis and pelvic cellulitis','N732','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2073_N73.3','N73.3','http://hl7.org/fhir/sid/icd-10-cm','Female acute pelvic peritonitis','N733','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2073_N73.4','N73.4','http://hl7.org/fhir/sid/icd-10-cm','Female chronic pelvic peritonitis','N734','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2073_N73.5','N73.5','http://hl7.org/fhir/sid/icd-10-cm','Female pelvic peritonitis, unspecified','N735','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2073_N73.6','N73.6','http://hl7.org/fhir/sid/icd-10-cm','Female pelvic peritoneal adhesions (postinfective)','N736','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2073_N73.8','N73.8','http://hl7.org/fhir/sid/icd-10-cm','Other specified female pelvic inflammatory diseases','N738','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2073_N73.9','N73.9','http://hl7.org/fhir/sid/icd-10-cm','Female pelvic inflammatory disease, unspecified','N739','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2073_N74','N74','http://hl7.org/fhir/sid/icd-10-cm','Female pelvic inflammatory disorders in diseases classified elsewhere','N74','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2073_O86.12','O86.12','http://hl7.org/fhir/sid/icd-10-cm','Endometritis following delivery','O8612','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_237070001','237070001','http://snomed.info/sct','Uterine candidiasis (disorder)','237070001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_270550006','270550006','http://snomed.info/sct','Pelvic inflammatory disease caused by Metamycoplasma hominis (disorder)','270550006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_271488001','271488001','http://snomed.info/sct','Mycoplasmal pelvic inflammatory disease (disorder)','271488001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_722522009','722522009','http://snomed.info/sct','Female pelvic inflammatory disease caused by Mycoplasma genitalium (disorder)','722522009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_81598001','81598001','http://snomed.info/sct','Trichomonal vulvovaginitis (disorder)','81598001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_10751311000119100','10751311000119100','http://snomed.info/sct','Salpingitis due to ectopic pregnancy (disorder)','10751311000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_10759231000119102','10759231000119102','http://snomed.info/sct','Salpingo-oophoritis in pregnancy (disorder)','10759231000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_111418006','111418006','http://snomed.info/sct','Chronic endocervicitis with erosion (disorder)','111418006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_1263771009','1263771009','http://snomed.info/sct','Acute on chronic pelvic inflammatory disease (disorder)','1263771009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_1264132007','1264132007','http://snomed.info/sct','Salpingitis following molar pregnancy (disorder)','1264132007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_1264133002','1264133002','http://snomed.info/sct','Salpingitis following ectopic pregnancy (disorder)','1264133002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_1264134008','1264134008','http://snomed.info/sct','Endometritis following molar pregnancy (disorder)','1264134008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_1264135009','1264135009','http://snomed.info/sct','Endometritis following ectopic pregnancy (disorder)','1264135009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_1264136005','1264136005','http://snomed.info/sct','Parametritis following molar pregnancy (disorder)','1264136005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_1264137001','1264137001','http://snomed.info/sct','Parametritis following ectopic pregnancy (disorder)','1264137001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_1264160009','1264160009','http://snomed.info/sct','Salpingo-oophoritis following molar pregnancy (disorder)','1264160009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_1264161008','1264161008','http://snomed.info/sct','Salpingo-oophoritis following ectopic pregnancy (disorder)','1264161008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_13125003','13125003','http://snomed.info/sct','Chronic myometritis (disorder)','13125003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_14053009','14053009','http://snomed.info/sct','Acute endomyometritis (disorder)','14053009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_16486000','16486000','http://snomed.info/sct','Acute oophoritis (disorder)','16486000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_172001','172001','http://snomed.info/sct','Endometritis following molar AND/OR ectopic pregnancy (disorder)','172001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_17716001','17716001','http://snomed.info/sct','Chronic endomyometritis (disorder)','17716001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_198130006','198130006','http://snomed.info/sct','Female pelvic inflammatory disease (disorder)','198130006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_198133008','198133008','http://snomed.info/sct','Acute perioophoritis (disorder)','198133008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_198135001','198135001','http://snomed.info/sct','Acute perisalpingitis (disorder)','198135001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_198136000','198136000','http://snomed.info/sct','Subacute perioophoritis (disorder)','198136000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_198137009','198137009','http://snomed.info/sct','Subacute salpingo-oophoritis (disorder)','198137009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_198138004','198138004','http://snomed.info/sct','Subacute perisalpingitis (disorder)','198138004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_198141008','198141008','http://snomed.info/sct','Chronic perioophoritis (disorder)','198141008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_198142001','198142001','http://snomed.info/sct','Chronic salpingo-oophoritis (disorder)','198142001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_198143006','198143006','http://snomed.info/sct','Chronic perisalpingitis (disorder)','198143006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_198156004','198156004','http://snomed.info/sct','Acute parametritis (disorder)','198156004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_198159006','198159006','http://snomed.info/sct','Chronic parametritis and pelvic cellulitis (disorder)','198159006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_198175009','198175009','http://snomed.info/sct','Female syphilitic pelvic inflammatory disease (disorder)','198175009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_198179003','198179003','http://snomed.info/sct','Uterine inflammatory diseases excluding the cervix (disorder)','198179003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_198180000','198180000','http://snomed.info/sct','Acute uterine inflammatory disease (disorder)','198180000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_198182008','198182008','http://snomed.info/sct','Subacute endometritis (disorder)','198182008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_198183003','198183003','http://snomed.info/sct','Subacute endomyometritis (disorder)','198183003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_198184009','198184009','http://snomed.info/sct','Subacute myometritis (disorder)','198184009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_198185005','198185005','http://snomed.info/sct','Subacute perimetritis (disorder)','198185005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_198186006','198186006','http://snomed.info/sct','Subacute pyometra (disorder)','198186006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_198188007','198188007','http://snomed.info/sct','Chronic uterine inflammatory disease (disorder)','198188007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_198189004','198189004','http://snomed.info/sct','Chronic pyometra (disorder)','198189004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_198198001','198198001','http://snomed.info/sct','Cervical, vaginal and vulval inflammatory diseases (disorder)','198198001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_198199009','198199009','http://snomed.info/sct','Cervicitis and endocervicitis (disorder)','198199009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_198203009','198203009','http://snomed.info/sct','Cervicitis with Nabothian cyst (disorder)','198203009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_198206001','198206001','http://snomed.info/sct','Endocervicitis with Nabothian cyst (disorder)','198206001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_198241002','198241002','http://snomed.info/sct','Female tuberculous pelvic inflammatory disease (disorder)','198241002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_198824009','198824009','http://snomed.info/sct','Salpingo-oophoritis following abortive pregnancy (disorder)','198824009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_200181000','200181000','http://snomed.info/sct','Puerperal endometritis - delivered with postnatal complication (disorder)','200181000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_200182007','200182007','http://snomed.info/sct','Puerperal endometritis with postnatal complication (disorder)','200182007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_200185009','200185009','http://snomed.info/sct','Puerperal salpingitis - delivered with postnatal complication (disorder)','200185009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_200187001','200187001','http://snomed.info/sct','Puerperal salpingitis with postnatal complication (disorder)','200187001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_20932005','20932005','http://snomed.info/sct','Puerperal salpingitis (disorder)','20932005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_21711003','21711003','http://snomed.info/sct','Hydrosalpinx (disorder)','21711003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_22399000','22399000','http://snomed.info/sct','Puerperal endometritis (disorder)','22399000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_237037006','237037006','http://snomed.info/sct','Acute pelvic inflammatory disease (disorder)','237037006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_237044002','237044002','http://snomed.info/sct','Chronic pelvic inflammatory disease (disorder)','237044002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_237045001','237045001','http://snomed.info/sct','Chronic parametritis (disorder)','237045001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_237124006','237124006','http://snomed.info/sct','Hematopyometra (disorder)','237124006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_266581008','266581008','http://snomed.info/sct','Acute salpingo-oophoritis (disorder)','266581008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_280483007','280483007','http://snomed.info/sct','Parametritis (disorder)','280483007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_286985001','286985001','http://snomed.info/sct','Endometritis, excluding cervix (disorder)','286985001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_28783002','28783002','http://snomed.info/sct','Inflammatory disease of the uterus (disorder)','28783002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_30806007','30806007','http://snomed.info/sct','Miscarriage with endometritis (disorder)','30806007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_31354001','31354001','http://snomed.info/sct','Endocervicitis (disorder)','31354001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_32582007','32582007','http://snomed.info/sct','Chronic oophoritis (disorder)','32582007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_34543006','34543006','http://snomed.info/sct','Chronic cervicitis with erosion (disorder)','34543006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_35585004','35585004','http://snomed.info/sct','Tuberculous endometritis (disorder)','35585004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_36742000','36742000','http://snomed.info/sct','Salpingitis isthmica nodosa (disorder)','36742000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_37830006','37830006','http://snomed.info/sct','Chronic perimetritis (disorder)','37830006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_38099005','38099005','http://snomed.info/sct','Failed attempted abortion with endometritis (disorder)','38099005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_39120007','39120007','http://snomed.info/sct','Failed attempted abortion with salpingo-oophoritis (disorder)','39120007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_397810006','397810006','http://snomed.info/sct','Pyosalpinx (disorder)','397810006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_4316006','4316006','http://snomed.info/sct','Myometritis (disorder)','4316006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_442506007','442506007','http://snomed.info/sct','Inflammatory disease of female genital structure (disorder)','442506007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_46536000','46536000','http://snomed.info/sct','Tubo-ovarian inflammatory disease (disorder)','46536000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_473079009','473079009','http://snomed.info/sct','Inflammation associated with retained intrauterine contraceptive device (disorder)','473079009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_473082004','473082004','http://snomed.info/sct','Infection and inflammation associated with retained intrauterine contraceptive device (disorder)','473082004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_48153009','48153009','http://snomed.info/sct','Acute perimetritis (disorder)','48153009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_49249007','49249007','http://snomed.info/sct','Acute endocervicitis (disorder)','49249007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_49258000','49258000','http://snomed.info/sct','Chronic endocervicitis (disorder)','49258000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_49558004','49558004','http://snomed.info/sct','Tuberculous salpingitis (disorder)','49558004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_55551005','55551005','http://snomed.info/sct','Chronic salpingitis (disorder)','55551005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_56321006','56321006','http://snomed.info/sct','Perisalpingitis (disorder)','56321006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_56728002','56728002','http://snomed.info/sct','Chronic cervicitis (disorder)','56728002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_57468008','57468008','http://snomed.info/sct','Salpingo-oophoritis following molar AND/OR ectopic pregnancy (disorder)','57468008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_609464004','609464004','http://snomed.info/sct','Induced termination of pregnancy complicated by endometritis (disorder)','609464004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_609483006','609483006','http://snomed.info/sct','Induced termination of pregnancy complicated by salpingitis (disorder)','609483006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_609484000','609484000','http://snomed.info/sct','Induced termination of pregnancy complicated by salpingo-oophoritis (disorder)','609484000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_61568004','61568004','http://snomed.info/sct','Miscarriage with salpingo-oophoritis (disorder)','61568004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_62819009','62819009','http://snomed.info/sct','Tuberculous cervicitis (disorder)','62819009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_63922003','63922003','http://snomed.info/sct','Chronic endometritis (disorder)','63922003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_64150007','64150007','http://snomed.info/sct','Endocervicitis with erosion (disorder)','64150007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_65984002','65984002','http://snomed.info/sct','Salpingitis follicularis (disorder)','65984002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_67667007','67667007','http://snomed.info/sct','Acute endometritis (disorder)','67667007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_698628000','698628000','http://snomed.info/sct','Postabortal pelvic inflammatory disease (disorder)','698628000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_70120007','70120007','http://snomed.info/sct','Subacute salpingitis (disorder)','70120007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_702716009','702716009','http://snomed.info/sct','Acute on chronic endometritis (disorder)','702716009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_702717000','702717000','http://snomed.info/sct','Acute on chronic cervicitis (disorder)','702717000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_713454009','713454009','http://snomed.info/sct','Atrophic endometritis (disorder)','713454009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_722830001','722830001','http://snomed.info/sct','Acute female pelvic inflammatory disease following procedure (disorder)','722830001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_723736005','723736005','http://snomed.info/sct','Xanthogranulomatous salpingitis (disorder)','723736005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_735619000','735619000','http://snomed.info/sct','Pyometra co-occurrent and due to acute inflammatory disease of uterus (disorder)','735619000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_735620006','735620006','http://snomed.info/sct','Pyometra co-occurrent and due to chronic inflammatory disease of uterus (disorder)','735620006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_73806001','73806001','http://snomed.info/sct','Subacute oophoritis (disorder)','73806001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_74181004','74181004','http://snomed.info/sct','Tuberculosis of female genital organs (disorder)','74181004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_75548002','75548002','http://snomed.info/sct','Mumps oophoritis (disorder)','75548002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_75585005','75585005','http://snomed.info/sct','Decidual endometritis (disorder)','75585005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_76047005','76047005','http://snomed.info/sct','Oophoritis (disorder)','76047005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_76151005','76151005','http://snomed.info/sct','Acute myometritis (disorder)','76151005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_78623009','78623009','http://snomed.info/sct','Endometritis (disorder)','78623009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_7910003','7910003','http://snomed.info/sct','Miscarriage with salpingitis (disorder)','7910003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_81521003','81521003','http://snomed.info/sct','Failed attempted abortion with salpingitis (disorder)','81521003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_8258000','8258000','http://snomed.info/sct','Perioophoritis (disorder)','8258000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_83774001','83774001','http://snomed.info/sct','Cervicitis with erosion (disorder)','83774001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_84194006','84194006','http://snomed.info/sct','Tuberculous oophoritis (disorder)','84194006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_86070006','86070006','http://snomed.info/sct','Perimetritis (disorder)','86070006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_88027004','88027004','http://snomed.info/sct','Endomyometritis (disorder)','88027004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_88157006','88157006','http://snomed.info/sct','Salpingitis (disorder)','88157006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_88981003','88981003','http://snomed.info/sct','Pyometra (disorder)','88981003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_8912009','8912009','http://snomed.info/sct','Acute salpingitis (disorder)','8912009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2070_9516007','9516007','http://snomed.info/sct','Salpingitis following molar AND/OR ectopic pregnancy (disorder)','9516007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_10751311000119100','10751311000119100','http://snomed.info/sct','Salpingitis due to ectopic pregnancy (disorder)','10751311000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_10759231000119102','10759231000119102','http://snomed.info/sct','Salpingo-oophoritis in pregnancy (disorder)','10759231000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_111418006','111418006','http://snomed.info/sct','Chronic endocervicitis with erosion (disorder)','111418006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_1263771009','1263771009','http://snomed.info/sct','Acute on chronic pelvic inflammatory disease (disorder)','1263771009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_1264132007','1264132007','http://snomed.info/sct','Salpingitis following molar pregnancy (disorder)','1264132007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_1264133002','1264133002','http://snomed.info/sct','Salpingitis following ectopic pregnancy (disorder)','1264133002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_1264134008','1264134008','http://snomed.info/sct','Endometritis following molar pregnancy (disorder)','1264134008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_1264135009','1264135009','http://snomed.info/sct','Endometritis following ectopic pregnancy (disorder)','1264135009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_1264136005','1264136005','http://snomed.info/sct','Parametritis following molar pregnancy (disorder)','1264136005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_1264137001','1264137001','http://snomed.info/sct','Parametritis following ectopic pregnancy (disorder)','1264137001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_1264160009','1264160009','http://snomed.info/sct','Salpingo-oophoritis following molar pregnancy (disorder)','1264160009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_1264161008','1264161008','http://snomed.info/sct','Salpingo-oophoritis following ectopic pregnancy (disorder)','1264161008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_13125003','13125003','http://snomed.info/sct','Chronic myometritis (disorder)','13125003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_14053009','14053009','http://snomed.info/sct','Acute endomyometritis (disorder)','14053009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_16486000','16486000','http://snomed.info/sct','Acute oophoritis (disorder)','16486000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_172001','172001','http://snomed.info/sct','Endometritis following molar AND/OR ectopic pregnancy (disorder)','172001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_17716001','17716001','http://snomed.info/sct','Chronic endomyometritis (disorder)','17716001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_198130006','198130006','http://snomed.info/sct','Female pelvic inflammatory disease (disorder)','198130006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_198133008','198133008','http://snomed.info/sct','Acute perioophoritis (disorder)','198133008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_198135001','198135001','http://snomed.info/sct','Acute perisalpingitis (disorder)','198135001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_198136000','198136000','http://snomed.info/sct','Subacute perioophoritis (disorder)','198136000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_198137009','198137009','http://snomed.info/sct','Subacute salpingo-oophoritis (disorder)','198137009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_198138004','198138004','http://snomed.info/sct','Subacute perisalpingitis (disorder)','198138004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_198141008','198141008','http://snomed.info/sct','Chronic perioophoritis (disorder)','198141008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_198142001','198142001','http://snomed.info/sct','Chronic salpingo-oophoritis (disorder)','198142001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_198143006','198143006','http://snomed.info/sct','Chronic perisalpingitis (disorder)','198143006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_198156004','198156004','http://snomed.info/sct','Acute parametritis (disorder)','198156004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_198159006','198159006','http://snomed.info/sct','Chronic parametritis and pelvic cellulitis (disorder)','198159006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_198179003','198179003','http://snomed.info/sct','Uterine inflammatory diseases excluding the cervix (disorder)','198179003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_198180000','198180000','http://snomed.info/sct','Acute uterine inflammatory disease (disorder)','198180000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_198182008','198182008','http://snomed.info/sct','Subacute endometritis (disorder)','198182008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_198183003','198183003','http://snomed.info/sct','Subacute endomyometritis (disorder)','198183003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_198184009','198184009','http://snomed.info/sct','Subacute myometritis (disorder)','198184009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_198185005','198185005','http://snomed.info/sct','Subacute perimetritis (disorder)','198185005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_198186006','198186006','http://snomed.info/sct','Subacute pyometra (disorder)','198186006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_198188007','198188007','http://snomed.info/sct','Chronic uterine inflammatory disease (disorder)','198188007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_198189004','198189004','http://snomed.info/sct','Chronic pyometra (disorder)','198189004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_198198001','198198001','http://snomed.info/sct','Cervical, vaginal and vulval inflammatory diseases (disorder)','198198001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_198199009','198199009','http://snomed.info/sct','Cervicitis and endocervicitis (disorder)','198199009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_198203009','198203009','http://snomed.info/sct','Cervicitis with Nabothian cyst (disorder)','198203009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_198206001','198206001','http://snomed.info/sct','Endocervicitis with Nabothian cyst (disorder)','198206001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_198824009','198824009','http://snomed.info/sct','Salpingo-oophoritis following abortive pregnancy (disorder)','198824009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_200181000','200181000','http://snomed.info/sct','Puerperal endometritis - delivered with postnatal complication (disorder)','200181000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_200182007','200182007','http://snomed.info/sct','Puerperal endometritis with postnatal complication (disorder)','200182007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_200185009','200185009','http://snomed.info/sct','Puerperal salpingitis - delivered with postnatal complication (disorder)','200185009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_200187001','200187001','http://snomed.info/sct','Puerperal salpingitis with postnatal complication (disorder)','200187001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_20932005','20932005','http://snomed.info/sct','Puerperal salpingitis (disorder)','20932005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_21711003','21711003','http://snomed.info/sct','Hydrosalpinx (disorder)','21711003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_22399000','22399000','http://snomed.info/sct','Puerperal endometritis (disorder)','22399000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_237037006','237037006','http://snomed.info/sct','Acute pelvic inflammatory disease (disorder)','237037006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_237044002','237044002','http://snomed.info/sct','Chronic pelvic inflammatory disease (disorder)','237044002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_237045001','237045001','http://snomed.info/sct','Chronic parametritis (disorder)','237045001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_237124006','237124006','http://snomed.info/sct','Hematopyometra (disorder)','237124006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_266581008','266581008','http://snomed.info/sct','Acute salpingo-oophoritis (disorder)','266581008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_280483007','280483007','http://snomed.info/sct','Parametritis (disorder)','280483007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_286985001','286985001','http://snomed.info/sct','Endometritis, excluding cervix (disorder)','286985001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_28783002','28783002','http://snomed.info/sct','Inflammatory disease of the uterus (disorder)','28783002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_30806007','30806007','http://snomed.info/sct','Miscarriage with endometritis (disorder)','30806007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_31354001','31354001','http://snomed.info/sct','Endocervicitis (disorder)','31354001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_32582007','32582007','http://snomed.info/sct','Chronic oophoritis (disorder)','32582007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_34543006','34543006','http://snomed.info/sct','Chronic cervicitis with erosion (disorder)','34543006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_36742000','36742000','http://snomed.info/sct','Salpingitis isthmica nodosa (disorder)','36742000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_37830006','37830006','http://snomed.info/sct','Chronic perimetritis (disorder)','37830006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_38099005','38099005','http://snomed.info/sct','Failed attempted abortion with endometritis (disorder)','38099005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_39120007','39120007','http://snomed.info/sct','Failed attempted abortion with salpingo-oophoritis (disorder)','39120007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_397810006','397810006','http://snomed.info/sct','Pyosalpinx (disorder)','397810006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_4316006','4316006','http://snomed.info/sct','Myometritis (disorder)','4316006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_442506007','442506007','http://snomed.info/sct','Inflammatory disease of female genital structure (disorder)','442506007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_46536000','46536000','http://snomed.info/sct','Tubo-ovarian inflammatory disease (disorder)','46536000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_473079009','473079009','http://snomed.info/sct','Inflammation associated with retained intrauterine contraceptive device (disorder)','473079009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_473082004','473082004','http://snomed.info/sct','Infection and inflammation associated with retained intrauterine contraceptive device (disorder)','473082004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_48153009','48153009','http://snomed.info/sct','Acute perimetritis (disorder)','48153009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_49249007','49249007','http://snomed.info/sct','Acute endocervicitis (disorder)','49249007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_49258000','49258000','http://snomed.info/sct','Chronic endocervicitis (disorder)','49258000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_55551005','55551005','http://snomed.info/sct','Chronic salpingitis (disorder)','55551005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_56321006','56321006','http://snomed.info/sct','Perisalpingitis (disorder)','56321006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_56728002','56728002','http://snomed.info/sct','Chronic cervicitis (disorder)','56728002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_57468008','57468008','http://snomed.info/sct','Salpingo-oophoritis following molar AND/OR ectopic pregnancy (disorder)','57468008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_609464004','609464004','http://snomed.info/sct','Induced termination of pregnancy complicated by endometritis (disorder)','609464004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_609483006','609483006','http://snomed.info/sct','Induced termination of pregnancy complicated by salpingitis (disorder)','609483006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_609484000','609484000','http://snomed.info/sct','Induced termination of pregnancy complicated by salpingo-oophoritis (disorder)','609484000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_61568004','61568004','http://snomed.info/sct','Miscarriage with salpingo-oophoritis (disorder)','61568004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_63922003','63922003','http://snomed.info/sct','Chronic endometritis (disorder)','63922003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_64150007','64150007','http://snomed.info/sct','Endocervicitis with erosion (disorder)','64150007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_65984002','65984002','http://snomed.info/sct','Salpingitis follicularis (disorder)','65984002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_67667007','67667007','http://snomed.info/sct','Acute endometritis (disorder)','67667007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_698628000','698628000','http://snomed.info/sct','Postabortal pelvic inflammatory disease (disorder)','698628000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_70120007','70120007','http://snomed.info/sct','Subacute salpingitis (disorder)','70120007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_702716009','702716009','http://snomed.info/sct','Acute on chronic endometritis (disorder)','702716009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_702717000','702717000','http://snomed.info/sct','Acute on chronic cervicitis (disorder)','702717000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_713454009','713454009','http://snomed.info/sct','Atrophic endometritis (disorder)','713454009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_722830001','722830001','http://snomed.info/sct','Acute female pelvic inflammatory disease following procedure (disorder)','722830001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_723736005','723736005','http://snomed.info/sct','Xanthogranulomatous salpingitis (disorder)','723736005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_735619000','735619000','http://snomed.info/sct','Pyometra co-occurrent and due to acute inflammatory disease of uterus (disorder)','735619000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_735620006','735620006','http://snomed.info/sct','Pyometra co-occurrent and due to chronic inflammatory disease of uterus (disorder)','735620006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_73806001','73806001','http://snomed.info/sct','Subacute oophoritis (disorder)','73806001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_75585005','75585005','http://snomed.info/sct','Decidual endometritis (disorder)','75585005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_76047005','76047005','http://snomed.info/sct','Oophoritis (disorder)','76047005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_76151005','76151005','http://snomed.info/sct','Acute myometritis (disorder)','76151005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_78623009','78623009','http://snomed.info/sct','Endometritis (disorder)','78623009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_7910003','7910003','http://snomed.info/sct','Miscarriage with salpingitis (disorder)','7910003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_81521003','81521003','http://snomed.info/sct','Failed attempted abortion with salpingitis (disorder)','81521003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_8258000','8258000','http://snomed.info/sct','Perioophoritis (disorder)','8258000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_83774001','83774001','http://snomed.info/sct','Cervicitis with erosion (disorder)','83774001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_86070006','86070006','http://snomed.info/sct','Perimetritis (disorder)','86070006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_88027004','88027004','http://snomed.info/sct','Endomyometritis (disorder)','88027004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_88157006','88157006','http://snomed.info/sct','Salpingitis (disorder)','88157006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_88981003','88981003','http://snomed.info/sct','Pyometra (disorder)','88981003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_8912009','8912009','http://snomed.info/sct','Acute salpingitis (disorder)','8912009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2071_9516007','9516007','http://snomed.info/sct','Salpingitis following molar AND/OR ectopic pregnancy (disorder)','9516007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.201_B75','B75','http://hl7.org/fhir/sid/icd-10-cm','Trichinellosis','B75','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.322_T60.0X1A','T60.0X1A','http://hl7.org/fhir/sid/icd-10-cm','Toxic effect of organophosphate and carbamate insecticides, accidental (unintentional), initial encounter','T600X1A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.322_T60.0X2A','T60.0X2A','http://hl7.org/fhir/sid/icd-10-cm','Toxic effect of organophosphate and carbamate insecticides, intentional self-harm, initial encounter','T600X2A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.322_T60.0X3A','T60.0X3A','http://hl7.org/fhir/sid/icd-10-cm','Toxic effect of organophosphate and carbamate insecticides, assault, initial encounter','T600X3A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.322_T60.0X4A','T60.0X4A','http://hl7.org/fhir/sid/icd-10-cm','Toxic effect of organophosphate and carbamate insecticides, undetermined, initial encounter','T600X4A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.322_T60.1X1A','T60.1X1A','http://hl7.org/fhir/sid/icd-10-cm','Toxic effect of halogenated insecticides, accidental (unintentional), initial encounter','T601X1A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.322_T60.1X2A','T60.1X2A','http://hl7.org/fhir/sid/icd-10-cm','Toxic effect of halogenated insecticides, intentional self-harm, initial encounter','T601X2A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.322_T60.1X3A','T60.1X3A','http://hl7.org/fhir/sid/icd-10-cm','Toxic effect of halogenated insecticides, assault, initial encounter','T601X3A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.322_T60.1X4A','T60.1X4A','http://hl7.org/fhir/sid/icd-10-cm','Toxic effect of halogenated insecticides, undetermined, initial encounter','T601X4A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.322_T60.2X1A','T60.2X1A','http://hl7.org/fhir/sid/icd-10-cm','Toxic effect of other insecticides, accidental (unintentional), initial encounter','T602X1A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.322_T60.2X2A','T60.2X2A','http://hl7.org/fhir/sid/icd-10-cm','Toxic effect of other insecticides, intentional self-harm, initial encounter','T602X2A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.322_T60.2X3A','T60.2X3A','http://hl7.org/fhir/sid/icd-10-cm','Toxic effect of other insecticides, assault, initial encounter','T602X3A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.322_T60.2X4A','T60.2X4A','http://hl7.org/fhir/sid/icd-10-cm','Toxic effect of other insecticides, undetermined, initial encounter','T602X4A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.322_T60.3X2A','T60.3X2A','http://hl7.org/fhir/sid/icd-10-cm','Toxic effect of herbicides and fungicides, intentional self-harm, initial encounter','T603X2A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.322_T60.3X3A','T60.3X3A','http://hl7.org/fhir/sid/icd-10-cm','Toxic effect of herbicides and fungicides, assault, initial encounter','T603X3A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.322_T60.3X4A','T60.3X4A','http://hl7.org/fhir/sid/icd-10-cm','Toxic effect of herbicides and fungicides, undetermined, initial encounter','T603X4A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.322_T60.4X1A','T60.4X1A','http://hl7.org/fhir/sid/icd-10-cm','Toxic effect of rodenticides, accidental (unintentional), initial encounter','T604X1A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.322_T60.4X2A','T60.4X2A','http://hl7.org/fhir/sid/icd-10-cm','Toxic effect of rodenticides, intentional self-harm, initial encounter','T604X2A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.322_T60.4X3A','T60.4X3A','http://hl7.org/fhir/sid/icd-10-cm','Toxic effect of rodenticides, assault, initial encounter','T604X3A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.322_T60.4X4A','T60.4X4A','http://hl7.org/fhir/sid/icd-10-cm','Toxic effect of rodenticides, undetermined, initial encounter','T604X4A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.322_T60.8X1A','T60.8X1A','http://hl7.org/fhir/sid/icd-10-cm','Toxic effect of other pesticides, accidental (unintentional), initial encounter','T608X1A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.322_T60.8X2A','T60.8X2A','http://hl7.org/fhir/sid/icd-10-cm','Toxic effect of other pesticides, intentional self-harm, initial encounter','T608X2A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.322_T60.8X3A','T60.8X3A','http://hl7.org/fhir/sid/icd-10-cm','Toxic effect of other pesticides, assault, initial encounter','T608X3A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.322_T60.8X4A','T60.8X4A','http://hl7.org/fhir/sid/icd-10-cm','Toxic effect of other pesticides, undetermined, initial encounter','T608X4A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.322_T60.91XA','T60.91XA','http://hl7.org/fhir/sid/icd-10-cm','Toxic effect of unspecified pesticide, accidental (unintentional), initial encounter','T6091XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.322_T60.92XA','T60.92XA','http://hl7.org/fhir/sid/icd-10-cm','Toxic effect of unspecified pesticide, intentional self-harm, initial encounter','T6092XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.322_T60.93XA','T60.93XA','http://hl7.org/fhir/sid/icd-10-cm','Toxic effect of unspecified pesticide, assault, initial encounter','T6093XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.322_T60.94XA','T60.94XA','http://hl7.org/fhir/sid/icd-10-cm','Toxic effect of unspecified pesticide, undetermined, initial encounter','T6094XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.322_T60.3X1A','T60.3X1A','http://hl7.org/fhir/sid/icd-10-cm','Toxic effect of herbicides and fungicides, accidental (unintentional), initial encounter','T603X1A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.202_1177046004','1177046004','http://snomed.info/sct','Infection caused by larvae of Trichinella pseudospiralis (disorder)','1177046004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.202_1177048003','1177048003','http://snomed.info/sct','Infection caused by larvae of Trichinella nelsoni (disorder)','1177048003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.202_1177049006','1177049006','http://snomed.info/sct','Infection caused by larvae of Trichinella papuae (disorder)','1177049006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.202_1177050006','1177050006','http://snomed.info/sct','Infection caused by larvae of Trichinella nativa (disorder)','1177050006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.202_1177051005','1177051005','http://snomed.info/sct','Infection caused by larvae of Trichinella britovi (disorder)','1177051005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.202_1177052003','1177052003','http://snomed.info/sct','Infection caused by larvae of Trichinella murelli (disorder)','1177052003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.202_233747001','233747001','http://snomed.info/sct','Diaphragmatic trichiniasis (disorder)','233747001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.202_240117006','240117006','http://snomed.info/sct','Trichinosis myositis (disorder)','240117006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.202_240867002','240867002','http://snomed.info/sct','Invasive trichinosis (disorder)','240867002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.202_240868007','240868007','http://snomed.info/sct','Migratory trichinosis (disorder)','240868007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.202_709018004','709018004','http://snomed.info/sct','Infection caused by larvae of Trichinella (disorder)','709018004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.202_721830003','721830003','http://snomed.info/sct','Infection caused by Trichinella (disorder)','721830003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.202_88264003','88264003','http://snomed.info/sct','Infection caused by larvae of Trichinella spiralis (disorder)','88264003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.204_10679007','10679007','http://snomed.info/sct','Infection caused by Giardia lamblia (disorder)','10679007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.204_1163081002','1163081002','http://snomed.info/sct','Duodenitis caused by Giardia lamblia (disorder)','1163081002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.204_1163109001','1163109001','http://snomed.info/sct','Colitis caused by Giardia lamblia (disorder)','1163109001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.204_1193804003','1193804003','http://snomed.info/sct','Inflammation of small intestine caused by Giardia lamblia (disorder)','1193804003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.204_1193805002','1193805002','http://snomed.info/sct','Inflammation of intestine caused by Giardia lamblia (disorder)','1193805002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.204_58265007','58265007','http://snomed.info/sct','Giardiasis (disorder)','58265007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.205_A07.1','A07.1','http://hl7.org/fhir/sid/icd-10-cm','Giardiasis [lambliasis]','A071','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.326_A83.6','A83.6','http://hl7.org/fhir/sid/icd-10-cm','Rocio virus disease','A836','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.326_A92.1','A92.1','http://hl7.org/fhir/sid/icd-10-cm','O''nyong-nyong fever','A921','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.326_A92.2','A92.2','http://hl7.org/fhir/sid/icd-10-cm','Venezuelan equine fever','A922','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.326_A92.4','A92.4','http://hl7.org/fhir/sid/icd-10-cm','Rift Valley fever','A924','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.326_A92.8','A92.8','http://hl7.org/fhir/sid/icd-10-cm','Other specified mosquito-borne viral fevers','A928','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.326_A92.9','A92.9','http://hl7.org/fhir/sid/icd-10-cm','Mosquito-borne viral fever, unspecified','A929','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.326_A93.0','A93.0','http://hl7.org/fhir/sid/icd-10-cm','Oropouche virus disease','A930','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.326_A93.8','A93.8','http://hl7.org/fhir/sid/icd-10-cm','Other specified arthropod-borne viral fevers','A938','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.326_A94','A94','http://hl7.org/fhir/sid/icd-10-cm','Unspecified arthropod-borne viral fever','A94','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.326_A98.2','A98.2','http://hl7.org/fhir/sid/icd-10-cm','Kyasanur Forest disease','A982','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.326_B33.1','B33.1','http://hl7.org/fhir/sid/icd-10-cm','Ross River disease','B331','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.326_A83.8','A83.8','http://hl7.org/fhir/sid/icd-10-cm','Other mosquito-borne viral encephalitis','A838','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.326_A83.9','A83.9','http://hl7.org/fhir/sid/icd-10-cm','Mosquito-borne viral encephalitis, unspecified','A839','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.326_A84.0','A84.0','http://hl7.org/fhir/sid/icd-10-cm','Far Eastern tick-borne encephalitis [Russian spring-summer encephalitis]','A840','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.326_A84.1','A84.1','http://hl7.org/fhir/sid/icd-10-cm','Central European tick-borne encephalitis','A841','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.326_A84.89','A84.89','http://hl7.org/fhir/sid/icd-10-cm','Other tick-borne viral encephalitis','A8489','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.326_A84.9','A84.9','http://hl7.org/fhir/sid/icd-10-cm','Tick-borne viral encephalitis, unspecified','A849','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.326_A85.2','A85.2','http://hl7.org/fhir/sid/icd-10-cm','Arthropod-borne viral encephalitis, unspecified','A852','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.207_1193800007','1193800007','http://snomed.info/sct','Inflammation of small intestine caused by Cryptosporidium (disorder)','1193800007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.207_1193801006','1193801006','http://snomed.info/sct','Inflammation of intestine caused by Cryptosporidium (disorder)','1193801006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.207_15907009','15907009','http://snomed.info/sct','Infection caused by Cryptosporidium parvum (disorder)','15907009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.207_240370009','240370009','http://snomed.info/sct','Cryptosporidiosis (disorder)','240370009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.207_240371008','240371008','http://snomed.info/sct','Chronic intestinal cryptosporidiasis (disorder)','240371008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.207_26081002','26081002','http://snomed.info/sct','Infection caused by Cryptosporidium crotalis (disorder)','26081002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.207_58777003','58777003','http://snomed.info/sct','Infection caused by Cryptosporidium (disorder)','58777003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.207_66160001','66160001','http://snomed.info/sct','Cryptosporidial gastroenteritis (disorder)','66160001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.207_70683005','70683005','http://snomed.info/sct','Infection caused by Cryptosporidium nasorum (disorder)','70683005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.207_75333007','75333007','http://snomed.info/sct','Infection caused by Cryptosporidium muris (disorder)','75333007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.207_7977009','7977009','http://snomed.info/sct','Infection caused by Cryptosporidium meleagridis (disorder)','7977009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.207_840460003','840460003','http://snomed.info/sct','Colitis caused by Cryptosporidium (disorder)','840460003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.207_860885008','860885008','http://snomed.info/sct','Enteritis caused by Cryptosporidium (disorder)','860885008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.207_860889002','860889002','http://snomed.info/sct','Gastritis caused by Cryptosporidium (disorder)','860889002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.207_713845004','713845004','http://snomed.info/sct','Infection caused by Cryptosporidium co-occurrent with human immunodeficiency virus infection (disorder)','713845004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.208_A07.2','A07.2','http://hl7.org/fhir/sid/icd-10-cm','Cryptosporidiosis','A072','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2198_A79.82','A79.82','http://hl7.org/fhir/sid/icd-10-cm','Anaplasmosis [A. phagocytophilum]','A7982','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.792_J09.X1','J09.X1','http://hl7.org/fhir/sid/icd-10-cm','Influenza due to identified novel influenza A virus with pneumonia','J09X1','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.792_J09.X2','J09.X2','http://hl7.org/fhir/sid/icd-10-cm','Influenza due to identified novel influenza A virus with other respiratory manifestations','J09X2','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.792_J09.X3','J09.X3','http://hl7.org/fhir/sid/icd-10-cm','Influenza due to identified novel influenza A virus with gastrointestinal manifestations','J09X3','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.792_J09.X9','J09.X9','http://hl7.org/fhir/sid/icd-10-cm','Influenza due to identified novel influenza A virus with other manifestations','J09X9','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.793_1011000124101','1011000124101','http://snomed.info/sct','Influenza A virus subtype H5 asian strain detected (finding)','1011000124101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.793_440927002','440927002','http://snomed.info/sct','Influenza A virus subtype H2 present (finding)','440927002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.793_441343005','441343005','http://snomed.info/sct','Influenza A virus subtype H5 present (finding)','441343005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.793_708119004','708119004','http://snomed.info/sct','Influenza A virus subtype H7 present (finding)','708119004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.793_708120005','708120005','http://snomed.info/sct','Influenza A virus subtype H9 present (finding)','708120005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.793_1149091008','1149091008','http://snomed.info/sct','Influenza caused by Influenza A virus subtype H2 (disorder)','1149091008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.793_427873006','427873006','http://snomed.info/sct','Influenza caused by influenza virus type A, avian, H5N1 strain (disorder)','427873006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.793_450715004','450715004','http://snomed.info/sct','Influenza caused by Influenza A virus subtype H7 (disorder)','450715004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.793_450716003','450716003','http://snomed.info/sct','Influenza caused by Influenza A virus subtype H9 (disorder)','450716003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.793_541131000124102','541131000124102','http://snomed.info/sct','Infection caused by novel Influenza A virus variant (disorder)','541131000124102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.793_707448003','707448003','http://snomed.info/sct','Influenza caused by Influenza A virus subtype H7N9 (disorder)','707448003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.793_713083002','713083002','http://snomed.info/sct','Influenza caused by Influenza A virus subtype H5 (disorder)','713083002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.793_772828001','772828001','http://snomed.info/sct','Influenza caused by Influenza A virus subtype H5N1 (disorder)','772828001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.315_P35.0','P35.0','http://hl7.org/fhir/sid/icd-10-cm','Congenital rubella syndrome','P350','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.315_B06.01','B06.01','http://hl7.org/fhir/sid/icd-10-cm','Rubella encephalitis','B0601','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_1010229008','1010229008','http://snomed.info/sct','Neural hearing loss of left ear (disorder)','1010229008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_1010230003','1010230003','http://snomed.info/sct','Neural hearing loss of right ear (disorder)','1010230003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_1010236009','1010236009','http://snomed.info/sct','Conductive hearing loss of right ear (disorder)','1010236009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_1010238005','1010238005','http://snomed.info/sct','Conductive hearing loss of left ear (disorder)','1010238005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_1010439000','1010439000','http://snomed.info/sct','Conductive hearing loss of left ear with normal hearing on right side (disorder)','1010439000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_1010440003','1010440003','http://snomed.info/sct','Conductive hearing loss of right ear with normal hearing on left side (disorder)','1010440003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_1010441004','1010441004','http://snomed.info/sct','Sensorineural hearing loss of right ear with normal hearing on left side (disorder)','1010441004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_1010442006','1010442006','http://snomed.info/sct','Sensorineural hearing loss of left ear with normal hearing on right side (disorder)','1010442006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_103276001','103276001','http://snomed.info/sct','Decreased hearing (finding)','103276001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_1052205008','1052205008','http://snomed.info/sct','Mixed conductive and sensorineural hearing loss of left ear with normal hearing on right side (disorder)','1052205008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_1052206009','1052206009','http://snomed.info/sct','Mixed conductive and sensorineural hearing loss of right ear with normal hearing on left side (disorder)','1052206009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_1083811000119108','1083811000119108','http://snomed.info/sct','High frequency sensorineural hearing loss of bilateral ears (disorder)','1083811000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_1084051000119104','1084051000119104','http://snomed.info/sct','Conductive hearing loss of bilateral middle ears (disorder)','1084051000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_1088891000119106','1088891000119106','http://snomed.info/sct','Hearing loss in left ear (disorder)','1088891000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_1088931000119103','1088931000119103','http://snomed.info/sct','High frequency sensorineural hearing loss in left ear (disorder)','1088931000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_1091501000119106','1091501000119106','http://snomed.info/sct','Hearing loss in right ear (disorder)','1091501000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_1091541000119108','1091541000119108','http://snomed.info/sct','High frequency sensorineural hearing loss in right ear (disorder)','1091541000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_1119386008','1119386008','http://snomed.info/sct','Sensorineural hearing loss of right ear (disorder)','1119386008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_1119387004','1119387004','http://snomed.info/sct','Sensorineural hearing loss of left ear (disorder)','1119387004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_1179361001','1179361001','http://snomed.info/sct','Maternal perinatal sensorineural hearing loss (disorder)','1179361001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_1179362008','1179362008','http://snomed.info/sct','Neonatal sensorineural hearing loss (disorder)','1179362008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_1179555000','1179555000','http://snomed.info/sct','Fetal sensorineural hearing loss (disorder)','1179555000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_1230412003','1230412003','http://snomed.info/sct','Profound hearing loss (disorder)','1230412003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_14230001000004101','14230001000004101','http://snomed.info/sct','Perception of hearing loss (finding)','14230001000004101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_15188001','15188001','http://snomed.info/sct','Hearing loss (disorder)','15188001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_15190000','15190000','http://snomed.info/sct','Tympanic membrane conductive hearing loss (disorder)','15190000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_162340000','162340000','http://snomed.info/sct','Hearing difficulty (finding)','162340000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_18701000119107','18701000119107','http://snomed.info/sct','Mixed conductive and sensorineural hearing loss of left ear (disorder)','18701000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_18711000119105','18711000119105','http://snomed.info/sct','Mixed conductive and sensorineural hearing loss of right ear (disorder)','18711000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_194413008','194413008','http://snomed.info/sct','Conductive hearing loss due to disorder of external ear (disorder)','194413008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_194414002','194414002','http://snomed.info/sct','Conductive hearing loss due to disorder of tympanic membrane (disorder)','194414002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_194415001','194415001','http://snomed.info/sct','Conductive hearing loss due to disorder of middle ear (disorder)','194415001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_194416000','194416000','http://snomed.info/sct','Conductive hearing loss due to disorder of inner ear (disorder)','194416000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_194417009','194417009','http://snomed.info/sct','Conductive hearing loss, bilateral (disorder)','194417009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_194418004','194418004','http://snomed.info/sct','Unilateral conductive hearing loss with unrestricted hearing on the contralateral side (situation)','194418004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_194419007','194419007','http://snomed.info/sct','Combined conductive hearing loss (disorder)','194419007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_194424005','194424005','http://snomed.info/sct','Sensorineural hearing loss of bilateral ears (disorder)','194424005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_194425006','194425006','http://snomed.info/sct','Unilateral sensorineural hearing loss with unrestricted hearing on the contralateral side (situation)','194425006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_194426007','194426007','http://snomed.info/sct','Combined perceptive hearing loss (disorder)','194426007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_194428008','194428008','http://snomed.info/sct','Unilateral mixed conductive and sensorineural hearing loss with unrestricted hearing on the contralateral side (situation)','194428008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_194429000','194429000','http://snomed.info/sct','Mixed conductive and sensorineural hearing loss, bilateral (disorder)','194429000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_2061000','2061000','http://snomed.info/sct','Conductive hearing loss of combined sites (disorder)','2061000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_21451000119101','21451000119101','http://snomed.info/sct','Mild to moderate hearing loss (disorder)','21451000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_232328005','232328005','http://snomed.info/sct','Dominant sensorineural hearing loss (disorder)','232328005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_232330007','232330007','http://snomed.info/sct','Recessive sensorineural hearing loss (disorder)','232330007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_232331006','232331006','http://snomed.info/sct','Perinatal sensorineural hearing loss (disorder)','232331006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_232332004','232332004','http://snomed.info/sct','Postnatal acquired sensorineural hearing loss (disorder)','232332004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_232333009','232333009','http://snomed.info/sct','Hearing loss associated with syndrome (disorder)','232333009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_23631000119109','23631000119109','http://snomed.info/sct','Sensorineural hearing loss in left ear (disorder)','23631000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_23641000119100','23641000119100','http://snomed.info/sct','Sensorineural hearing loss in right ear (disorder)','23641000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_280122007','280122007','http://snomed.info/sct','Hearing worse (finding)','280122007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_314914004','314914004','http://snomed.info/sct','Deteriorating hearing (finding)','314914004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_3541000119107','3541000119107','http://snomed.info/sct','Left conductive hearing loss (disorder)','3541000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_3551000119109','3551000119109','http://snomed.info/sct','Right conductive hearing loss (disorder)','3551000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_3561000119106','3561000119106','http://snomed.info/sct','Severe hearing loss (disorder)','3561000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_3820005','3820005','http://snomed.info/sct','Inner ear conductive hearing loss (disorder)','3820005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_425601005','425601005','http://snomed.info/sct','Unilateral neural hearing loss (situation)','425601005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_425980006','425980006','http://snomed.info/sct','Unilateral sensory hearing loss (situation)','425980006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_427644005','427644005','http://snomed.info/sct','Bilateral central hearing loss (disorder)','427644005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_427772009','427772009','http://snomed.info/sct','Asymmetrical hearing loss (disorder)','427772009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_428470000','428470000','http://snomed.info/sct','Autoimmune sensorineural hearing loss (disorder)','428470000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_42853003','42853003','http://snomed.info/sct','Paradoxic hearing loss (disorder)','42853003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_428887009','428887009','http://snomed.info/sct','Asymmetrical sensorineural hearing loss (disorder)','428887009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_430977001','430977001','http://snomed.info/sct','Bilateral neural hearing loss (disorder)','430977001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_430985005','430985005','http://snomed.info/sct','Bilateral sensory hearing loss (disorder)','430985005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_44057004','44057004','http://snomed.info/sct','Conductive hearing loss (disorder)','44057004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_442535004','442535004','http://snomed.info/sct','Unilateral conductive hearing loss (situation)','442535004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_47111006','47111006','http://snomed.info/sct','External ear conductive hearing loss (disorder)','47111006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_473423001','473423001','http://snomed.info/sct','Hearing loss of right ear (disorder)','473423001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_473424007','473424007','http://snomed.info/sct','Hearing loss of left ear (disorder)','473424007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_60700002','60700002','http://snomed.info/sct','Sensorineural hearing loss (disorder)','60700002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_609125008','609125008','http://snomed.info/sct','Acquired sensorineural hearing loss (disorder)','609125008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_61743004','61743004','http://snomed.info/sct','Middle ear conductive hearing loss (disorder)','61743004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_65680009','65680009','http://snomed.info/sct','Sensorineural hearing loss of combined sites (disorder)','65680009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_68467004','68467004','http://snomed.info/sct','Central hearing loss (disorder)','68467004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_700454004','700454004','http://snomed.info/sct','Profound sensorineural hearing loss (disorder)','700454004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_715239002','715239002','http://snomed.info/sct','Sudden sensorineural hearing loss (disorder)','715239002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_715483009','715483009','http://snomed.info/sct','Olivopontocerebellar atrophy co-occurrent with sensorineural hearing loss (disorder)','715483009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_721294001','721294001','http://snomed.info/sct','Acquired hearing loss (disorder)','721294001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_724636005','724636005','http://snomed.info/sct','Sudden idiopathic hearing loss (disorder)','724636005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_73371001','73371001','http://snomed.info/sct','Neural hearing loss (disorder)','73371001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_737047001','737047001','http://snomed.info/sct','Mild acquired hearing loss (disorder)','737047001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_737048006','737048006','http://snomed.info/sct','Moderate acquired hearing loss (disorder)','737048006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_737049003','737049003','http://snomed.info/sct','Severe acquired hearing loss (disorder)','737049003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_737050003','737050003','http://snomed.info/sct','Profound acquired hearing loss (disorder)','737050003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_77507001','77507001','http://snomed.info/sct','Mixed conductive AND sensorineural hearing loss (disorder)','77507001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_788953003','788953003','http://snomed.info/sct','Hereditary hearing loss (disorder)','788953003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_79471008','79471008','http://snomed.info/sct','Sudden hearing loss (disorder)','79471008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_85571008','85571008','http://snomed.info/sct','Sensory hearing loss (disorder)','85571008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_95820000','95820000','http://snomed.info/sct','Bilateral hearing loss (disorder)','95820000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_95821001','95821001','http://snomed.info/sct','Neonatal hearing loss (disorder)','95821001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_700453005','700453005','http://snomed.info/sct','Congenital sensorineural hearing loss (disorder)','700453005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_737344003','737344003','http://snomed.info/sct','Congenital conductive hearing loss (disorder)','737344003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.679_737377004','737377004','http://snomed.info/sct','Congenital mixed conductive and sensorineural hearing loss (disorder)','737377004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2087_110041000119104','110041000119104','http://snomed.info/sct','Reactive arthritis co-occurrent and due to nonspecific urethritis (disorder)','110041000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2087_197903003','197903003','http://snomed.info/sct','Candidal urethritis (disorder)','197903003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2087_236685000','236685000','http://snomed.info/sct','Schistosomiasis of the urethra (disorder)','236685000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2087_236690002','236690002','http://snomed.info/sct','Urethritis due to reactive arthritis triad (disorder)','236690002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2087_30116001','30116001','http://snomed.info/sct','Trichomonal urethritis (disorder)','30116001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2087_51105006','51105006','http://snomed.info/sct','Nongonococcal urethritis caused by Ureaplasma urealyticum (disorder)','51105006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2087_707131004','707131004','http://snomed.info/sct','Polypoid urethritis (disorder)','707131004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2087_84619001','84619001','http://snomed.info/sct','Nongonococcal urethritis (disorder)','84619001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2087_179101003','179101003','http://snomed.info/sct','Urethritis caused by Chlamydia trachomatis (disorder)','179101003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2087_236684001','236684001','http://snomed.info/sct','Tuberculous urethritis (disorder)','236684001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2087_236683007','236683007','http://snomed.info/sct','Chlamydial urethritis (disorder)','236683007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2088_A59.03','A59.03','http://hl7.org/fhir/sid/icd-10-cm','Trichomonal cystitis and urethritis','A5903','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2088_B37.41','B37.41','http://hl7.org/fhir/sid/icd-10-cm','Candidal cystitis and urethritis','B3741','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2088_A56.01','A56.01','http://hl7.org/fhir/sid/icd-10-cm','Chlamydial cystitis and urethritis','A5601','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2096_11086007','11086007','http://snomed.info/sct','Microcystis poisoning (disorder)','11086007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2096_41439009','41439009','http://snomed.info/sct','Microcystis flos-aquae poisoning (disorder)','41439009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2096_81034007','81034007','http://snomed.info/sct','Poisoning caused by Cyanobacterial toxin (disorder)','81034007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.783_1857005','1857005','http://snomed.info/sct','Congenital rubella syndrome (disorder)','1857005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.783_231985001','231985001','http://snomed.info/sct','Rubella retinopathy (disorder)','231985001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.783_253227001','253227001','http://snomed.info/sct','Rubella cataract (disorder)','253227001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.783_47082005','47082005','http://snomed.info/sct','Congenital rubella pneumonitis (disorder)','47082005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.783_64190005','64190005','http://snomed.info/sct','Rubella myocarditis (disorder)','64190005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.783_79303006','79303006','http://snomed.info/sct','Expanded rubella syndrome (disorder)','79303006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.783_609434007','609434007','http://snomed.info/sct','Fetal damage from maternal rubella (disorder)','609434007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.783_13225007','13225007','http://snomed.info/sct','Meningoencephalitis caused by Rubella virus (disorder)','13225007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.783_302811004','302811004','http://snomed.info/sct','Progressive congenital rubella encephalomyelitis (disorder)','302811004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.784_10759761000119100','10759761000119100','http://snomed.info/sct','Rubella in mother complicating childbirth (disorder)','10759761000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.784_199192005','199192005','http://snomed.info/sct','Maternal rubella during pregnancy - baby delivered (disorder)','199192005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.784_199193000','199193000','http://snomed.info/sct','Maternal rubella in the puerperium - baby delivered during current episode of care (disorder)','199193000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.784_199194006','199194006','http://snomed.info/sct','Maternal rubella during pregnancy - baby not yet delivered (disorder)','199194006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.784_199195007','199195007','http://snomed.info/sct','Maternal rubella in the puerperium - baby delivered during previous episode of care (disorder)','199195007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.784_274119009','274119009','http://snomed.info/sct','Rubella in pregnancy (disorder)','274119009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.784_84939004','84939004','http://snomed.info/sct','Rubella in mother complicating pregnancy, childbirth AND/OR puerperium (disorder)','84939004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.784_609434007','609434007','http://snomed.info/sct','Fetal damage from maternal rubella (disorder)','609434007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_10706006','10706006','http://snomed.info/sct','Tuberculosis of central nervous system (disorder)','10706006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_10893003','10893003','http://snomed.info/sct','Tuberculous adenitis (disorder)','10893003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_1092761000119105','1092761000119105','http://snomed.info/sct','Iridocyclitis caused by tuberculosis (disorder)','1092761000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_1092771000119104','1092771000119104','http://snomed.info/sct','Tuberculous neuritis (disorder)','1092771000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_111825008','111825008','http://snomed.info/sct','Tuberculosis of conjunctiva (disorder)','111825008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_111830007','111830007','http://snomed.info/sct','Tuberculosis of urinary organs (disorder)','111830007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_111832004','111832004','http://snomed.info/sct','Primary progressive tuberculosis (disorder)','111832004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_11354005','11354005','http://snomed.info/sct','Tuberculosis cutis indurativa (disorder)','11354005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_1144499001','1144499001','http://snomed.info/sct','Tuberculosis of pelvis and femur (disorder)','1144499001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_1162297009','1162297009','http://snomed.info/sct','Infection of multiple sites of spine caused by Mycobacterium tuberculosis (disorder)','1162297009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_1162356000','1162356000','http://snomed.info/sct','Inflammation of joint of hand caused by Mycobacterium tuberculosis (disorder)','1162356000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_1162401004','1162401004','http://snomed.info/sct','Infection of thoracolumbar region of spine caused by Mycobacterium tuberculosis (disorder)','1162401004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_1162404007','1162404007','http://snomed.info/sct','Infection of cervicothoracic region of spine caused by Mycobacterium tuberculosis (disorder)','1162404007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_1162879007','1162879007','http://snomed.info/sct','Inflammation of joint of shoulder region caused by Mycobacterium tuberculosis (disorder)','1162879007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_11676005','11676005','http://snomed.info/sct','Tuberculous leptomeningitis (disorder)','11676005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_1176981005','1176981005','http://snomed.info/sct','Posterior uveitis caused by Mycobacterium tuberculosis complex (disorder)','1176981005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_1177009003','1177009003','http://snomed.info/sct','Infection of penis caused by Mycobacterium tuberculosis complex (disorder)','1177009003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_1177013005','1177013005','http://snomed.info/sct','Infection of lumbosacral spine caused by Mycobacterium tuberculosis complex (disorder)','1177013005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_1177015003','1177015003','http://snomed.info/sct','Cerebral arteritis caused by Mycobacterium tuberculosis complex (disorder)','1177015003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_1177018001','1177018001','http://snomed.info/sct','Anterior uveitis caused by Mycobacterium tuberculosis complex (disorder)','1177018001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_1177021004','1177021004','http://snomed.info/sct','Infection of bile duct caused by Mycobacterium tuberculosis complex (disorder)','1177021004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_1177026009','1177026009','http://snomed.info/sct','Infection of anal canal caused by Mycobacterium tuberculosis complex (disorder)','1177026009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_1177031006','1177031006','http://snomed.info/sct','Intermediate uveitis caused by Mycobacterium tuberculosis complex (disorder)','1177031006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_1177041009','1177041009','http://snomed.info/sct','Enterocolitis caused by Mycobacterium tuberculosis complex (disorder)','1177041009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_1177067004','1177067004','http://snomed.info/sct','Spinal cord compression due to tuberculosis (disorder)','1177067004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_1197013001','1197013001','http://snomed.info/sct','Infection of gingiva caused by Mycobacterium tuberculosis complex (disorder)','1197013001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_12137005','12137005','http://snomed.info/sct','Tuberculous enteritis (disorder)','12137005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_1231669001','1231669001','http://snomed.info/sct','Infection of orbit caused by Mycobacterium tuberculosis (disorder)','1231669001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_123583002','123583002','http://snomed.info/sct','Tuberculid (disorder)','123583002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_12677003','12677003','http://snomed.info/sct','Tuberculosis of brain (disorder)','12677003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_129211000119108','129211000119108','http://snomed.info/sct','Isoniazid resistant tuberculosis of lung (disorder)','129211000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_12985005','12985005','http://snomed.info/sct','Tuberculosis of seminal vesicle (disorder)','12985005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_13570003','13570003','http://snomed.info/sct','Tuberculous tenosynovitis (disorder)','13570003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_14188007','14188007','http://snomed.info/sct','Tuberculosis of hip (disorder)','14188007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_14527007','14527007','http://snomed.info/sct','Tuberculous empyema (disorder)','14527007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_15202009','15202009','http://snomed.info/sct','Tuberculoma (disorder)','15202009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_15284007','15284007','http://snomed.info/sct','Tuberculosis of esophagus (disorder)','15284007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_154283005','154283005','http://snomed.info/sct','Pulmonary tuberculosis (disorder)','154283005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_15984271000119108','15984271000119108','http://snomed.info/sct','Tuberculosis of bilateral ears (disorder)','15984271000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_15991471000119106','15991471000119106','http://snomed.info/sct','Chorioretinitis of left eye caused by Mycobacterium tuberculosis (disorder)','15991471000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_15991511000119102','15991511000119102','http://snomed.info/sct','Chorioretinitis of right eye caused by Mycobacterium tuberculosis (disorder)','15991511000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_16016231000119109','16016231000119109','http://snomed.info/sct','Tuberculosis of right knee joint (disorder)','16016231000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_16016311000119107','16016311000119107','http://snomed.info/sct','Tuberculosis of left knee joint (disorder)','16016311000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_16409009','16409009','http://snomed.info/sct','Tuberculosis of retroperitoneal lymph nodes (disorder)','16409009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_17136009','17136009','http://snomed.info/sct','Tuberculosis of knee (disorder)','17136009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_17653001','17653001','http://snomed.info/sct','Tuberculosis of bones and/or joints (disorder)','17653001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_185113005','185113005','http://snomed.info/sct','Tuberculosis of adrenal glands (disorder)','185113005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_186172004','186172004','http://snomed.info/sct','Tuberculous pleurisy in primary progressive tuberculosis (disorder)','186172004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_186175002','186175002','http://snomed.info/sct','Infiltrative lung tuberculosis (disorder)','186175002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_186177005','186177005','http://snomed.info/sct','Tuberculosis of lung with cavitation (disorder)','186177005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_186178000','186178000','http://snomed.info/sct','Tuberculosis of bronchus (disorder)','186178000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_186182003','186182003','http://snomed.info/sct','Tuberculosis of pleura (disorder)','186182003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_186192006','186192006','http://snomed.info/sct','Respiratory tuberculosis, bacteriologically and histologically confirmed (disorder)','186192006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_186193001','186193001','http://snomed.info/sct','Tuberculosis of lung, confirmed by sputum microscopy with or without culture (disorder)','186193001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_186194007','186194007','http://snomed.info/sct','Tuberculosis of lung, confirmed by culture only (disorder)','186194007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_186195008','186195008','http://snomed.info/sct','Tuberculosis of lung, confirmed histologically (disorder)','186195008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_186199002','186199002','http://snomed.info/sct','Tuberculosis of larynx, trachea and bronchus, confirmed bacteriologically and histologically (disorder)','186199002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_186200004','186200004','http://snomed.info/sct','Tuberculous pleurisy, confirmed bacteriologically and histologically (disorder)','186200004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_186201000','186201000','http://snomed.info/sct','Primary respiratory tuberculosis, confirmed bacteriologically and histologically (disorder)','186201000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_186202007','186202007','http://snomed.info/sct','Respiratory tuberculosis, not confirmed bacteriologically or histologically (disorder)','186202007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_186203002','186203002','http://snomed.info/sct','Tuberculosis of lung, bacteriologically and histologically negative (disorder)','186203002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_186204008','186204008','http://snomed.info/sct','Tuberculosis of lung, bacteriological and histological examination not done (disorder)','186204008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_186225008','186225008','http://snomed.info/sct','Tuberculosis of intestines, peritoneum and mesenteric glands (disorder)','186225008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_186231006','186231006','http://snomed.info/sct','Tuberculosis limb bones - Tuberculous dactylitis (disorder)','186231006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_186259007','186259007','http://snomed.info/sct','Scrofulous tuberculous abscess (disorder)','186259007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_186263000','186263000','http://snomed.info/sct','Tuberculous chorioretinitis (disorder)','186263000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_186266008','186266008','http://snomed.info/sct','Tuberculous chronic iridocyclitis (disorder)','186266008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_186267004','186267004','http://snomed.info/sct','Tuberculous keratoconjunctivitis (disorder)','186267004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_186269001','186269001','http://snomed.info/sct','Tuberculosis of ear (disorder)','186269001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_186270000','186270000','http://snomed.info/sct','Tuberculous Addison''s disease (disorder)','186270000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_186272008','186272008','http://snomed.info/sct','Tuberculosis of stomach (disorder)','186272008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_186273003','186273003','http://snomed.info/sct','Tuberculosis of liver (disorder)','186273003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_186276006','186276006','http://snomed.info/sct','Acute miliary tuberculosis (disorder)','186276006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_186278007','186278007','http://snomed.info/sct','Acute miliary tuberculosis of multiple sites (disorder)','186278007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_187251001','187251001','http://snomed.info/sct','Sequelae of tuberculosis (disorder)','187251001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_187252008','187252008','http://snomed.info/sct','Late effects of respiratory tuberculosis (disorder)','187252008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_187253003','187253003','http://snomed.info/sct','Late effects of central nervous system tuberculosis (disorder)','187253003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_187254009','187254009','http://snomed.info/sct','Late effects of genitourinary system tuberculosis (disorder)','187254009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_187255005','187255005','http://snomed.info/sct','Late effects of tuberculosis of bones and/or joints (disorder)','187255005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_190710003','190710003','http://snomed.info/sct','Tuberculous arthritis (disorder)','190710003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_192745001','192745001','http://snomed.info/sct','Tuberculous intracranial abscess (disorder)','192745001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_194908003','194908003','http://snomed.info/sct','Acute tuberculous pericarditis (disorder)','194908003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_194949003','194949003','http://snomed.info/sct','Acute myocarditis - tuberculous (disorder)','194949003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_196017002','196017002','http://snomed.info/sct','Pneumoconiosis associated with tuberculosis (disorder)','196017002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_199175001','199175001','http://snomed.info/sct','Maternal tuberculosis during pregnancy, childbirth and the puerperium (disorder)','199175001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_199178004','199178004','http://snomed.info/sct','Tuberculosis in pregnancy, childbirth and the puerperium - delivered (disorder)','199178004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_199179007','199179007','http://snomed.info/sct','Maternal tuberculosis in the puerperium - baby delivered during current episode of care (disorder)','199179007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_199180005','199180005','http://snomed.info/sct','Maternal tuberculosis during pregnancy - baby not yet delivered (disorder)','199180005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_199181009','199181009','http://snomed.info/sct','Maternal tuberculosis in the puerperium - baby delivered during previous episode of care (disorder)','199181009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_203263006','203263006','http://snomed.info/sct','Tuberculosis of cervical spine (disorder)','203263006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_203264000','203264000','http://snomed.info/sct','Tuberculosis of thoracic spine (disorder)','203264000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_203265004','203265004','http://snomed.info/sct','Tuberculosis of lumbar spine (disorder)','203265004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_203266003','203266003','http://snomed.info/sct','Tuberculosis of sacrum/coccyx (disorder)','203266003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_203267007','203267007','http://snomed.info/sct','Tuberculosis of limb bones (disorder)','203267007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_203269005','203269005','http://snomed.info/sct','Tuberculosis of the upper arm bone (disorder)','203269005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_203270006','203270006','http://snomed.info/sct','Tuberculosis of the forearm bone (disorder)','203270006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_203271005','203271005','http://snomed.info/sct','Tuberculosis of the pelvic and/or thigh bones (disorder)','203271005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_203272003','203272003','http://snomed.info/sct','Tuberculosis of the lower leg bone (disorder)','203272003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_203274002','203274002','http://snomed.info/sct','Tuberculosis of multiple limb bones (disorder)','203274002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_203278004','203278004','http://snomed.info/sct','Tuberculosis of bones of shoulder region (disorder)','203278004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_203279007','203279007','http://snomed.info/sct','Tuberculosis of the bones of the hand (disorder)','203279007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_203280005','203280005','http://snomed.info/sct','Tuberculosis of the bones of the ankle and/or foot (disorder)','203280005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_203282002','203282002','http://snomed.info/sct','Tuberculosis of the bones of multiple sites (disorder)','203282002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_20372007','20372007','http://snomed.info/sct','Tuberculosis of prostate (disorder)','20372007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_20533009','20533009','http://snomed.info/sct','Pott''s curvature (disorder)','20533009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_22990009','22990009','http://snomed.info/sct','Chronic tuberculosis (disorder)','22990009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_23022004','23022004','http://snomed.info/sct','Tuberculous bronchiectasis (disorder)','23022004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_233649005','233649005','http://snomed.info/sct','Tuberculous chylothorax (disorder)','233649005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_233794009','233794009','http://snomed.info/sct','Tuberculous bronchopleural fistula (disorder)','233794009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_234090004','234090004','http://snomed.info/sct','Tuberculous mesenteric adenitis (disorder)','234090004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_234953003','234953003','http://snomed.info/sct','Tuberculate supernumerary tooth (disorder)','234953003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_235067001','235067001','http://snomed.info/sct','Oral tuberculosis (disorder)','235067001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_235694001','235694001','http://snomed.info/sct','Tuberculous duodenitis (disorder)','235694001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_236602004','236602004','http://snomed.info/sct','Tuberculous stricture of ureter (disorder)','236602004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_236770001','236770001','http://snomed.info/sct','Tuberculous epididymo-orchitis (disorder)','236770001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_237445009','237445009','http://snomed.info/sct','Tuberculosis of breast (disorder)','237445009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_238428001','238428001','http://snomed.info/sct','Papular tuberculide (disorder)','238428001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_238429009','238429009','http://snomed.info/sct','Nodular tuberculide (disorder)','238429009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_240376003','240376003','http://snomed.info/sct','Tuberculosis of gastrointestinal tract (disorder)','240376003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_240379005','240379005','http://snomed.info/sct','Tuberculosis of male genital organs (disorder)','240379005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_240380008','240380008','http://snomed.info/sct','Acute tuberculous ulcer (disorder)','240380008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_240381007','240381007','http://snomed.info/sct','Acute miliary cutaneous tuberculosis (disorder)','240381007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_240382000','240382000','http://snomed.info/sct','Cutaneous tuberculous gumma (disorder)','240382000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_24235005','24235005','http://snomed.info/sct','Tuberculous hydrothorax (disorder)','24235005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_24810006','24810006','http://snomed.info/sct','Tuberculosis orificialis of mouth (disorder)','24810006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_25629007','25629007','http://snomed.info/sct','Acute tuberculosis (disorder)','25629007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_25738004','25738004','http://snomed.info/sct','Tuberculous synovitis (disorder)','25738004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_25831001','25831001','http://snomed.info/sct','Tuberculosis of nasal septum (disorder)','25831001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_267317007','267317007','http://snomed.info/sct','Tuberculosis in pregnancy (disorder)','267317007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_26935004','26935004','http://snomed.info/sct','Tuberculosis of thyroid gland (disorder)','26935004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_271423008','271423008','http://snomed.info/sct','Tuberculosis of skin and subcutaneous tissue (disorder)','271423008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_281623008','281623008','http://snomed.info/sct','Genital tuberculosis (disorder)','281623008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_28399005','28399005','http://snomed.info/sct','Tuberculosis of spleen (disorder)','28399005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_29731002','29731002','http://snomed.info/sct','Tuberculous pneumothorax (disorder)','29731002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_301836007','301836007','http://snomed.info/sct','Tuberculosis of colon (disorder)','301836007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_302131003','302131003','http://snomed.info/sct','Tuberculosis of heart (disorder)','302131003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_314029000','314029000','http://snomed.info/sct','Tuberculous uveitis (disorder)','314029000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_32268008','32268008','http://snomed.info/sct','Tuberculosis of urinary bladder (disorder)','32268008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_33893009','33893009','http://snomed.info/sct','Tuberculosis verrucosa cutis (disorder)','33893009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_34320001','34320001','http://snomed.info/sct','Tuberculous myelitis (disorder)','34320001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_35117008','35117008','http://snomed.info/sct','Tuberculosis of small intestine (disorder)','35117008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_35984006','35984006','http://snomed.info/sct','Tuberculosis of vertebral column (disorder)','35984006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_363310009','363310009','http://snomed.info/sct','Soft tissue infection associated with tuberculosis (disorder)','363310009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_37133005','37133005','http://snomed.info/sct','Tuberculous pyelitis (disorder)','37133005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_37260006','37260006','http://snomed.info/sct','Congenital tuberculosis (disorder)','37260006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_373043002','373043002','http://snomed.info/sct','Infection caused by Mycobacterium microti (disorder)','373043002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_373085003','373085003','http://snomed.info/sct','Infection caused by Mycobacterium africanum (disorder)','373085003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_373086002','373086002','http://snomed.info/sct','Infection caused by mycobacterium tuberculosis hominis (disorder)','373086002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_373437006','373437006','http://snomed.info/sct','Infection caused by Mycobacterium bovis (disorder)','373437006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_373576009','373576009','http://snomed.info/sct','Infection caused by Mycobacterium tuberculosis (disorder)','373576009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_38115001','38115001','http://snomed.info/sct','Tuberculosis of spinal meninges (disorder)','38115001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_38279006','38279006','http://snomed.info/sct','Tuberculosis of bone (disorder)','38279006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_38420005','38420005','http://snomed.info/sct','Tuberculosis of large intestine (disorder)','38420005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_39306006','39306006','http://snomed.info/sct','Tuberculosis of anus (disorder)','39306006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_40258005','40258005','http://snomed.info/sct','Tuberculosis of testis (disorder)','40258005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_41156006','41156006','http://snomed.info/sct','Tuberculosis papulonecrotica (disorder)','41156006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_413556004','413556004','http://snomed.info/sct','Antibiotic resistant tuberculosis (disorder)','413556004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_413852006','413852006','http://snomed.info/sct','Ciprofloxacin resistant tuberculosis (disorder)','413852006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_414146004','414146004','http://snomed.info/sct','Ethambutol resistant tuberculosis (disorder)','414146004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_414149006','414149006','http://snomed.info/sct','Ethionamide resistant tuberculosis (disorder)','414149006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_414546009','414546009','http://snomed.info/sct','Isoniazid resistant tuberculosis (disorder)','414546009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_415222009','415222009','http://snomed.info/sct','Pyrazinamide resistant tuberculosis (disorder)','415222009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_415345001','415345001','http://snomed.info/sct','Rifampicin resistant tuberculosis (disorder)','415345001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_415622003','415622003','http://snomed.info/sct','Streptomycin resistant tuberculosis (disorder)','415622003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_422481005','422481005','http://snomed.info/sct','Extreme drug resistant tuberculosis (disorder)','422481005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_4225003','4225003','http://snomed.info/sct','Tuberculosis of nose (disorder)','4225003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_423092005','423092005','http://snomed.info/sct','Multidrug resistant tuberculosis (disorder)','423092005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_423709000','423709000','http://snomed.info/sct','Drug resistant tuberculosis (disorder)','423709000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_423997002','423997002','http://snomed.info/sct','Tuberculosis, extrapulmonary (disorder)','423997002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_427099000','427099000','http://snomed.info/sct','Active tuberculosis (disorder)','427099000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_441770001','441770001','http://snomed.info/sct','Tuberculosis of external body orifice (disorder)','441770001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_44182001','44182001','http://snomed.info/sct','Avascular necrosis of bone caused by Mycobacterium tuberculosis complex (disorder)','44182001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_44323002','44323002','http://snomed.info/sct','Tuberculosis of kidney (disorder)','44323002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_4445009','4445009','http://snomed.info/sct','Tuberculosis of genitourinary system (disorder)','4445009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_44572005','44572005','http://snomed.info/sct','Tuberculous peritonitis (disorder)','44572005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_446123007','446123007','http://snomed.info/sct','Tuberculous abscess (disorder)','446123007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_446753005','446753005','http://snomed.info/sct','Tuberculosis of oropharynx (disorder)','446753005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_446926000','446926000','http://snomed.info/sct','Tuberculous abscess of sacrum (disorder)','446926000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_446946005','446946005','http://snomed.info/sct','Reinfection pulmonary tuberculosis (disorder)','446946005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_446986002','446986002','http://snomed.info/sct','Tuberculous pleural effusion (disorder)','446986002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_447006007','447006007','http://snomed.info/sct','Relapse pulmonary tuberculosis (disorder)','447006007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_447012002','447012002','http://snomed.info/sct','Tuberculosis of spinal cord (disorder)','447012002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_447253004','447253004','http://snomed.info/sct','Tuberculous arachnoiditis (disorder)','447253004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_447330002','447330002','http://snomed.info/sct','Tuberculosis of abdomen (disorder)','447330002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_447371008','447371008','http://snomed.info/sct','Tuberculosis of ileum (disorder)','447371008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_447399004','447399004','http://snomed.info/sct','Tuberculous abscess of neck (disorder)','447399004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_449925002','449925002','http://snomed.info/sct','Tuberculosis of bone of upper limb (disorder)','449925002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_4501007','4501007','http://snomed.info/sct','Tuberculous ascites (disorder)','4501007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_460440005','460440005','http://snomed.info/sct','Pericarditis with pericardial effusion caused by Mycobacterium tuberculosis complex (disorder)','460440005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_460464006','460464006','http://snomed.info/sct','Constrictive pericarditis caused by Mycobacterium tuberculosis complex (disorder)','460464006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_47292005','47292005','http://snomed.info/sct','Tuberculosis of myocardium (disorder)','47292005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_473426009','473426009','http://snomed.info/sct','Primary tuberculous complex confirmed by culture (disorder)','473426009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_473427000','473427000','http://snomed.info/sct','Primary tuberculous complex confirmed histologically (disorder)','473427000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_473428005','473428005','http://snomed.info/sct','Primary tuberculous complex confirmed by microscopic examination (disorder)','473428005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_473429002','473429002','http://snomed.info/sct','Tuberculoma of spinal cord confirmed (disorder)','473429002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_473430007','473430007','http://snomed.info/sct','Primary tuberculous complex confirmed (disorder)','473430007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_473431006','473431006','http://snomed.info/sct','Primary tuberculous complex with bacteriological or histological examination results unknown (disorder)','473431006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_47604008','47604008','http://snomed.info/sct','Miliary tuberculosis (disorder)','47604008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_48225000','48225000','http://snomed.info/sct','Tuberculous disseminated chorioretinitis (disorder)','48225000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_49107007','49107007','http://snomed.info/sct','Tuberculosis of eye (disorder)','49107007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_49807009','49807009','http://snomed.info/sct','Tuberculous dactylitis (disorder)','49807009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_51014003','51014003','http://snomed.info/sct','Reinfection tuberculosis (disorder)','51014003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_52721006','52721006','http://snomed.info/sct','Tuberculosis of nasal sinus (disorder)','52721006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_52987001','52987001','http://snomed.info/sct','Tuberculosis of endocardium (disorder)','52987001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_54084005','54084005','http://snomed.info/sct','Cervical tuberculous lymphadenitis (disorder)','54084005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_55419007','55419007','http://snomed.info/sct','Tuberculosis of glottis (disorder)','55419007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_56498009','56498009','http://snomed.info/sct','Tuberculosis of nasopharynx (disorder)','56498009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_58374007','58374007','http://snomed.info/sct','Acute diffuse tuberculosis (disorder)','58374007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_58437007','58437007','http://snomed.info/sct','Tuberculosis of meninges (disorder)','58437007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_58764007','58764007','http://snomed.info/sct','Tuberculous osteomyelitis (disorder)','58764007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_60136008','60136008','http://snomed.info/sct','Tuberculosis of intestine (disorder)','60136008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_62494007','62494007','http://snomed.info/sct','Chronic miliary tuberculosis (disorder)','62494007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_63309002','63309002','http://snomed.info/sct','Primary tuberculosis (disorder)','63309002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_66291003','66291003','http://snomed.info/sct','Tuberculous phlyctenular keratoconjunctivitis (disorder)','66291003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_67256000','67256000','http://snomed.info/sct','Tuberculosis of pericardium (disorder)','67256000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_698729002','698729002','http://snomed.info/sct','Hypercalcemia due to tuberculosis (disorder)','698729002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_698733009','698733009','http://snomed.info/sct','Intestinal obstruction due to tuberculosis (disorder)','698733009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_700272008','700272008','http://snomed.info/sct','Tuberculosis of respiratory system (disorder)','700272008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_700273003','700273003','http://snomed.info/sct','Isolated tracheobronchial tuberculosis (disorder)','700273003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_70341005','70341005','http://snomed.info/sct','Tuberculous laryngitis (disorder)','70341005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_710106005','710106005','http://snomed.info/sct','Extensively drug resistant tuberculosis (disorder)','710106005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_71375000','71375000','http://snomed.info/sct','Tuberculosis of mastoid process (disorder)','71375000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_717697005','717697005','http://snomed.info/sct','Tuberculous ulceration of vulva (disorder)','717697005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_71943007','71943007','http://snomed.info/sct','Chronic granulomatous tuberculosis (disorder)','71943007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_721732001','721732001','http://snomed.info/sct','Infection of musculoskeletal system caused by Mycobacterium tuberculosis (disorder)','721732001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_724541008','724541008','http://snomed.info/sct','Acute miliary tuberculosis of single site (disorder)','724541008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_72807002','72807002','http://snomed.info/sct','Tuberculous polyserositis (disorder)','72807002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_735517008','735517008','http://snomed.info/sct','Myositis caused by Mycobacterium tuberculosis (disorder)','735517008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_735518003','735518003','http://snomed.info/sct','Infection of digestive system caused by Mycobacterium tuberculosis (disorder)','735518003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_735519006','735519006','http://snomed.info/sct','Infection of endocrine gland caused by Mycobacterium tuberculosis (disorder)','735519006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_74387008','74387008','http://snomed.info/sct','Tuberculosis of hilar lymph nodes (disorder)','74387008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_7444001','7444001','http://snomed.info/sct','Tuberculosis of rectum (disorder)','7444001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_74610006','74610006','http://snomed.info/sct','Erythema nodosum due to tuberculosis (disorder)','74610006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_77038006','77038006','http://snomed.info/sct','Tuberculosis of peripheral lymph nodes (disorder)','77038006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_77668003','77668003','http://snomed.info/sct','Isolated tracheal tuberculosis (disorder)','77668003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_78436002','78436002','http://snomed.info/sct','Tuberculosis of intrathoracic lymph nodes (disorder)','78436002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_788960009','788960009','http://snomed.info/sct','Infection of placenta caused by Mycobacterium tuberculosis complex (disorder)','788960009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_789056000','789056000','http://snomed.info/sct','Tuberculosis of inner ear (disorder)','789056000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_789057009','789057009','http://snomed.info/sct','Tuberculosis of middle ear (disorder)','789057009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_79158003','79158003','http://snomed.info/sct','Tuberculous interstitial keratitis (disorder)','79158003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_80010008','80010008','http://snomed.info/sct','Isolated bronchial tuberculosis (disorder)','80010008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_80602006','80602006','http://snomed.info/sct','Nodular tuberculosis of lung (disorder)','80602006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_81133003','81133003','http://snomed.info/sct','Tuberculosis of bones of lower extremity (disorder)','81133003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_81359005','81359005','http://snomed.info/sct','Tuberculosis of ureter (disorder)','81359005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_81554001','81554001','http://snomed.info/sct','Tuberculosis of lung with involvement of bronchus (disorder)','81554001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_82495004','82495004','http://snomed.info/sct','Tuberculosis of mediastinal lymph nodes (disorder)','82495004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_8250007','8250007','http://snomed.info/sct','Tuberculosis of subcutaneous cellular tissue (disorder)','8250007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_82796002','82796002','http://snomed.info/sct','Scrofuloderma (disorder)','82796002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_83652003','83652003','http://snomed.info/sct','Tuberculosis of epididymis (disorder)','83652003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_83784000','83784000','http://snomed.info/sct','Tuberculosis of mediastinum (disorder)','83784000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_840446000','840446000','http://snomed.info/sct','Dacryoadenitis caused by Mycobacterium tuberculosis (disorder)','840446000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_84288007','84288007','http://snomed.info/sct','Tuberculous episcleritis (disorder)','84288007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_85692003','85692003','http://snomed.info/sct','Tuberculosis of tracheobronchial lymph nodes (disorder)','85692003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_85940005','85940005','http://snomed.info/sct','Tuberculous otitis media (disorder)','85940005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_860803004','860803004','http://snomed.info/sct','Hydrocephalus due to tuberculosis of brain (disorder)','860803004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_866083008','866083008','http://snomed.info/sct','Infection of eyelid caused by Mycobacterium tuberculosis (disorder)','866083008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_870333003','870333003','http://snomed.info/sct','Panuveitis caused by Mycobacterium tuberculosis (disorder)','870333003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_8832006','8832006','http://snomed.info/sct','Tuberculosis orificialis of anus (disorder)','8832006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_88356006','88356006','http://snomed.info/sct','Primary tuberculous complex (disorder)','88356006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_90302003','90302003','http://snomed.info/sct','Tuberculosis of cerebral meninges (disorder)','90302003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_9768003','9768003','http://snomed.info/sct','Tuberculosis cutis lichenoides (disorder)','9768003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_182159002','182159002','http://snomed.info/sct','Disseminated tuberculosis (disorder)','182159002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_186217006','186217006','http://snomed.info/sct','Tuberculous abscess of brain (disorder)','186217006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_193787009','193787009','http://snomed.info/sct','Keratitis due to tuberculosis (disorder)','193787009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_202994006','202994006','http://snomed.info/sct','Tuberculous infection of tendon sheath (disorder)','202994006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_236684001','236684001','http://snomed.info/sct','Tuberculous urethritis (disorder)','236684001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_35786001','35786001','http://snomed.info/sct','Tuberculoma of meninges (disorder)','35786001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_416265003','416265003','http://snomed.info/sct','Tuberculoma of brain (disorder)','416265003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_416903004','416903004','http://snomed.info/sct','Tuberculoma of spinal cord (disorder)','416903004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_417484006','417484006','http://snomed.info/sct','Tuberculous abscess of spinal cord (disorder)','417484006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_446543007','446543007','http://snomed.info/sct','Tuberculous abscess of lung (disorder)','446543007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_447332005','447332005','http://snomed.info/sct','Tuberculous abscess of epidural space (disorder)','447332005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_56717001','56717001','http://snomed.info/sct','Tuberculosis (disorder)','56717001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_63808004','63808004','http://snomed.info/sct','Tuberculous chancre (disorder)','63808004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_66986005','66986005','http://snomed.info/sct','Tuberculosis of skin (disorder)','66986005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_733835007','733835007','http://snomed.info/sct','Extrapulmonary tuberculosis co-occurrent with human immunodeficiency virus infection (disorder)','733835007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_735521001','735521001','http://snomed.info/sct','Human immunodeficiency virus World Health Organization 2007 stage 1 co-occurrent with tuberculosis (disorder)','735521001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_735523003','735523003','http://snomed.info/sct','Human immunodeficiency virus World Health Organization 2007 stage 2 co-occurrent with tuberculosis (disorder)','735523003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_735525005','735525005','http://snomed.info/sct','Human immunodeficiency virus World Health Organization 2007 stage 3 co-occurrent with tuberculosis (disorder)','735525005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_735527002','735527002','http://snomed.info/sct','Human immunodeficiency virus World Health Organization 2007 stage 4 co-occurrent with tuberculosis (disorder)','735527002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_80003002','80003002','http://snomed.info/sct','Tuberculous pneumonia (disorder)','80003002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_88415009','88415009','http://snomed.info/sct','Mycobacteriosis (disorder)','88415009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_90117007','90117007','http://snomed.info/sct','Tuberculous fibrosis of lung (disorder)','90117007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_198241002','198241002','http://snomed.info/sct','Female tuberculous pelvic inflammatory disease (disorder)','198241002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_35585004','35585004','http://snomed.info/sct','Tuberculous endometritis (disorder)','35585004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_421571007','421571007','http://snomed.info/sct','Tuberculosis with acquired immunodeficiency syndrome (disorder)','421571007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_49558004','49558004','http://snomed.info/sct','Tuberculous salpingitis (disorder)','49558004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_62819009','62819009','http://snomed.info/sct','Tuberculous cervicitis (disorder)','62819009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_74181004','74181004','http://snomed.info/sct','Tuberculosis of female genital organs (disorder)','74181004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_84194006','84194006','http://snomed.info/sct','Tuberculous oophoritis (disorder)','84194006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_91483004','91483004','http://snomed.info/sct','Tuberculous encephalitis (disorder)','91483004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_31112008','31112008','http://snomed.info/sct','Tuberculous meningoencephalitis (disorder)','31112008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.422_10759881000119100','10759881000119100','http://snomed.info/sct','Tuberculosis in mother complicating childbirth (disorder)','10759881000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.666_1172701002','1172701002','http://snomed.info/sct','Facial diplegia with paresthesia (disorder)','1172701002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.666_1231204003','1231204003','http://snomed.info/sct','Ophthalmoplegia due to and following Guillain-Barre syndrome (disorder)','1231204003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.666_1259074001','1259074001','http://snomed.info/sct','Disorder of autonomic nerve due to Guillain-Barre Syndrome (disorder)','1259074001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.666_16064651000119108','16064651000119108','http://snomed.info/sct','Disorder due to and following Guillain Barre syndrome (disorder)','16064651000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.666_1767005','1767005','http://snomed.info/sct','Fisher''s syndrome (disorder)','1767005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.666_40956001','40956001','http://snomed.info/sct','Guillain-Barre syndrome (disorder)','40956001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.666_715770009','715770009','http://snomed.info/sct','Acute motor axonal neuropathy (disorder)','715770009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.666_716722005','716722005','http://snomed.info/sct','Acute motor sensory axonal Guillain-Barre syndrome (disorder)','716722005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.666_716723000','716723000','http://snomed.info/sct','Guillain-Barre syndrome acute inflammatory demyelinating polyradiculoneuropathic form (disorder)','716723000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.666_766049000','766049000','http://snomed.info/sct','Acute sensory ataxic neuropathy (disorder)','766049000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.666_766722008','766722008','http://snomed.info/sct','Paraparetic variant of Guillain-Barre syndrome (disorder)','766722008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.666_783010003','783010003','http://snomed.info/sct','Pharyngeal-cervical-brachial variant of Guillain-Barre syndrome (disorder)','783010003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.666_783244002','783244002','http://snomed.info/sct','Acute pure sensory neuropathy (disorder)','783244002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_111780007','111780007','http://snomed.info/sct','Ammonium sulfamate toxicity (disorder)','111780007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_111782004','111782004','http://snomed.info/sct','Trichlorfon poisoning (disorder)','111782004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_1144839007','1144839007','http://snomed.info/sct','Poisoning caused by warfarin (disorder)','1144839007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_1148830000','1148830000','http://snomed.info/sct','Crufomate poisoning (disorder)','1148830000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_1156308007','1156308007','http://snomed.info/sct','Herbicide and/or fungicide poisoning (disorder)','1156308007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_1254980009','1254980009','http://snomed.info/sct','Self poisoning by herbicide (disorder)','1254980009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_13754002','13754002','http://snomed.info/sct','2,4-Dichlorophenoxyacetic acid poisoning (disorder)','13754002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_15670008','15670008','http://snomed.info/sct','Strobane poisoning (disorder)','15670008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_1657008','1657008','http://snomed.info/sct','Mevinphos poisoning (disorder)','1657008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_16959008','16959008','http://snomed.info/sct','Azinphos-ethyl poisoning (disorder)','16959008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_17345001','17345001','http://snomed.info/sct','Norbormide toxicity (disorder)','17345001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_18051001','18051001','http://snomed.info/sct','Toxic effect of dichlorvos (disorder)','18051001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_20202008','20202008','http://snomed.info/sct','Coumaphos poisoning (disorder)','20202008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_20215004','20215004','http://snomed.info/sct','Carbophenothion poisoning (disorder)','20215004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_20310007','20310007','http://snomed.info/sct','Diphenadione poisoning (disorder)','20310007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_20745002','20745002','http://snomed.info/sct','Zinc phosphide poisoning (disorder)','20745002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_21002008','21002008','http://snomed.info/sct','Famphur poisoning (disorder)','21002008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_212847009','212847009','http://snomed.info/sct','Toxic effect of phosphorus and/or phosphorus compound (disorder)','212847009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_21511000','21511000','http://snomed.info/sct','Crotoxyphos poisoning (disorder)','21511000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_216691009','216691009','http://snomed.info/sct','Accidental poisoning caused by insecticides of organochlorine compounds (disorder)','216691009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_216692002','216692002','http://snomed.info/sct','Accidental poisoning caused by lindane (disorder)','216692002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_216694001','216694001','http://snomed.info/sct','Accidental poisoning caused by chlordane (disorder)','216694001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_216695000','216695000','http://snomed.info/sct','Accidental poisoning caused by dichlorodiphenyltrichloroethane (disorder)','216695000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_216696004','216696004','http://snomed.info/sct','Accidental poisoning caused by dieldrin (disorder)','216696004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_216698003','216698003','http://snomed.info/sct','Accidental poisoning caused by toxaphene (disorder)','216698003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_216700007','216700007','http://snomed.info/sct','Accidental poisoning caused by insecticides of organophosphorus compounds (disorder)','216700007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_216701006','216701006','http://snomed.info/sct','Accidental poisoning caused by demeton (disorder)','216701006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_216702004','216702004','http://snomed.info/sct','Accidental poisoning caused by diazinon (disorder)','216702004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_216703009','216703009','http://snomed.info/sct','Accidental poisoning caused by dichlorvos (disorder)','216703009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_216704003','216704003','http://snomed.info/sct','Accidental poisoning caused by malathion (disorder)','216704003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_216705002','216705002','http://snomed.info/sct','Accidental poisoning caused by methyl parathion (disorder)','216705002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_216706001','216706001','http://snomed.info/sct','Accidental poisoning caused by parathion (disorder)','216706001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_216708000','216708000','http://snomed.info/sct','Accidental poisoning caused by phorate (disorder)','216708000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_216709008','216709008','http://snomed.info/sct','Accidental poisoning caused by phosdrin (disorder)','216709008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_216712006','216712006','http://snomed.info/sct','Accidental poisoning caused by aldicarb (disorder)','216712006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_216713001','216713001','http://snomed.info/sct','Accidental poisoning caused by carbaryl (disorder)','216713001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_216714007','216714007','http://snomed.info/sct','Accidental poisoning caused by propoxur (disorder)','216714007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_216718005','216718005','http://snomed.info/sct','Accidental poisoning caused by insecticide of kerosene compound (disorder)','216718005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_216720008','216720008','http://snomed.info/sct','Accidental poisoning caused by herbicides (disorder)','216720008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_216724004','216724004','http://snomed.info/sct','Accidental poisoning caused by diquat (disorder)','216724004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_216726002','216726002','http://snomed.info/sct','Accidental poisoning caused by paraquat (disorder)','216726002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_216728001','216728001','http://snomed.info/sct','Accidental poisoning caused by fungicide (disorder)','216728001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_216730004','216730004','http://snomed.info/sct','Accidental poisoning caused by pentachlorophenol (disorder)','216730004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_216732007','216732007','http://snomed.info/sct','Accidental poisoning caused by rodenticides (disorder)','216732007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_216736005','216736005','http://snomed.info/sct','Accidental poisoning caused by warfarin (disorder)','216736005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_216737001','216737001','http://snomed.info/sct','Accidental poisoning caused by zinc phosphide (disorder)','216737001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_216739003','216739003','http://snomed.info/sct','Accidental poisoning caused by fumigant (disorder)','216739003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_216742009','216742009','http://snomed.info/sct','Accidental poisoning caused by phosphine (disorder)','216742009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_22706002','22706002','http://snomed.info/sct','Dioxathion poisoning (disorder)','22706002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_241786005','241786005','http://snomed.info/sct','Fungicide causing toxic effect (disorder)','241786005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_241787001','241787001','http://snomed.info/sct','Sheep dip causing toxic effect (disorder)','241787001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_241788006','241788006','http://snomed.info/sct','Phenoxyacid derivative herbicide causing toxic effect (disorder)','241788006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_241789003','241789003','http://snomed.info/sct','Toxic effect of 2,4,5-trichlorophenoxyacetic acid (disorder)','241789003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_241790007','241790007','http://snomed.info/sct','Bipyridinium compound herbicide causing toxic effect (disorder)','241790007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_241791006','241791006','http://snomed.info/sct','Diquat causing toxic effect (disorder)','241791006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_241792004','241792004','http://snomed.info/sct','Urea herbicide causing toxic effect (disorder)','241792004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_241793009','241793009','http://snomed.info/sct','Organophosphorus herbicide causing toxic effect (disorder)','241793009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_241796001','241796001','http://snomed.info/sct','4,6-dinitro-o-cresol causing toxic effect (disorder)','241796001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_241797005','241797005','http://snomed.info/sct','Triazine or triazole herbicide causing toxic effect (disorder)','241797005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_241798000','241798000','http://snomed.info/sct','Nitrile herbicide causing toxic effect (disorder)','241798000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_241799008','241799008','http://snomed.info/sct','Non-anticoagulant rodenticide causing toxic effect (disorder)','241799008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_241800007','241800007','http://snomed.info/sct','Alphachloralose causing toxic effect (disorder)','241800007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_241801006','241801006','http://snomed.info/sct','Zinc sulfide causing toxic effect (disorder)','241801006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_241802004','241802004','http://snomed.info/sct','Molluscicide causing toxic effect (disorder)','241802004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_241862001','241862001','http://snomed.info/sct','Insect repellant causing toxic effect (disorder)','241862001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_241863006','241863006','http://snomed.info/sct','Mosquito repellant causing toxic effect (disorder)','241863006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_242837004','242837004','http://snomed.info/sct','Self poisoning by paraquat (disorder)','242837004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_24880004','24880004','http://snomed.info/sct','2-(2-Methyl-4-chlorophenoxy)propionic acid poisoning (disorder)','24880004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_25166002','25166002','http://snomed.info/sct','Plant hormone herbicide toxicity (disorder)','25166002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_27616008','27616008','http://snomed.info/sct','Methoxychlor poisoning (disorder)','27616008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_27992006','27992006','http://snomed.info/sct','Chlorfenvinphos poisoning (disorder)','27992006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_2805007','2805007','http://snomed.info/sct','Phosmet poisoning (disorder)','2805007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_29069000','29069000','http://snomed.info/sct','Anticoagulant rodenticide toxicity (disorder)','29069000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_291701002','291701002','http://snomed.info/sct','Accidental pesticide product poisoning (disorder)','291701002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_291703004','291703004','http://snomed.info/sct','Intentional pesticide product poisoning (disorder)','291703004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_293083001','293083001','http://snomed.info/sct','Pesticide adverse reaction (disorder)','293083001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_293084007','293084007','http://snomed.info/sct','Benzyl benzoate adverse reaction (disorder)','293084007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_293085008','293085008','http://snomed.info/sct','Monosulfiram adverse reaction (disorder)','293085008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_293086009','293086009','http://snomed.info/sct','Carbamate pesticide adverse reaction (disorder)','293086009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_293087000','293087000','http://snomed.info/sct','Carbaryl adverse reaction (disorder)','293087000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_293088005','293088005','http://snomed.info/sct','Chlorinated pesticide adverse reaction (disorder)','293088005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_293089002','293089002','http://snomed.info/sct','Lindane adverse reaction (disorder)','293089002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_293090006','293090006','http://snomed.info/sct','Organophosphate pesticide adverse reaction (disorder)','293090006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_293344008','293344008','http://snomed.info/sct','Warfarin adverse reaction (disorder)','293344008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_293467006','293467006','http://snomed.info/sct','Torasemide adverse reaction (disorder)','293467006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_29826009','29826009','http://snomed.info/sct','Diazinon poisoning (disorder)','29826009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_31141004','31141004','http://snomed.info/sct','Pyrethrin toxicity (disorder)','31141004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_31148005','31148005','http://snomed.info/sct','Temephos poisoning (disorder)','31148005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_31861007','31861007','http://snomed.info/sct','Toxic effect of chlordane (disorder)','31861007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_33996002','33996002','http://snomed.info/sct','Chlorpyrifos poisoning (disorder)','33996002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_34668002','34668002','http://snomed.info/sct','Carbofuran poisoning (disorder)','34668002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_35008005','35008005','http://snomed.info/sct','Terbufos poisoning (disorder)','35008005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_3611003','3611003','http://snomed.info/sct','Demeton poisoning (disorder)','3611003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_37131007','37131007','http://snomed.info/sct','Pesticide poisoning (disorder)','37131007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_37392009','37392009','http://snomed.info/sct','Azinphos-methyl poisoning (disorder)','37392009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_39890003','39890003','http://snomed.info/sct','Herbicide poisoning (disorder)','39890003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_399286009','399286009','http://snomed.info/sct','Carbamate insecticide toxicity (disorder)','399286009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_407147006','407147006','http://snomed.info/sct','Hexachlorobenzene poisoning (disorder)','407147006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_40989001','40989001','http://snomed.info/sct','Propoxur poisoning (disorder)','40989001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_43140008','43140008','http://snomed.info/sct','Pentachlorophenol toxicity (disorder)','43140008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_43384002','43384002','http://snomed.info/sct','Glyphosate toxicity (disorder)','43384002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_43881003','43881003','http://snomed.info/sct','Ethyl p-nitrophenyl thionobenzenephosphonate poisoning (disorder)','43881003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_44336002','44336002','http://snomed.info/sct','Toxic effect of aldrin (disorder)','44336002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_44631003','44631003','http://snomed.info/sct','Methyl parathion poisoning (disorder)','44631003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_47546008','47546008','http://snomed.info/sct','Warfarin overdosage (disorder)','47546008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_47580006','47580006','http://snomed.info/sct','Acaricide poisoning (disorder)','47580006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_49424005','49424005','http://snomed.info/sct','Disulfoton poisoning (disorder)','49424005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_5174000','5174000','http://snomed.info/sct','Sodium fluoroacetamide toxicity (disorder)','5174000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_53271004','53271004','http://snomed.info/sct','Tannic acid poisoning (disorder)','53271004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_53456000','53456000','http://snomed.info/sct','Pindone poisoning (disorder)','53456000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_54067004','54067004','http://snomed.info/sct','Ronnel poisoning (disorder)','54067004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_55847002','55847002','http://snomed.info/sct','Rodenticide poisoning (disorder)','55847002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_56055004','56055004','http://snomed.info/sct','Heptachlor poisoning (disorder)','56055004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_56277006','56277006','http://snomed.info/sct','Naled poisoning (disorder)','56277006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_56686009','56686009','http://snomed.info/sct','Alphanaphthylthiourea toxicity (disorder)','56686009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_60179005','60179005','http://snomed.info/sct','Sodium chlorate toxicity (disorder)','60179005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_60950004','60950004','http://snomed.info/sct','Toxic effect of chlorinated hydrocarbon pesticide (disorder)','60950004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_61544007','61544007','http://snomed.info/sct','Flunixin poisoning (disorder)','61544007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_61780005','61780005','http://snomed.info/sct','Toxic effect of phorate (disorder)','61780005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_62942003','62942003','http://snomed.info/sct','Tetraethyl pyrophosphate poisoning (disorder)','62942003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_63163008','63163008','http://snomed.info/sct','Toxic effect of carbaryl (disorder)','63163008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_67553007','67553007','http://snomed.info/sct','Dimethoate poisoning (disorder)','67553007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_69460006','69460006','http://snomed.info/sct','Toxaphene poisoning (disorder)','69460006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_69956002','69956002','http://snomed.info/sct','Poisoning caused by organophosphorus anticholinesterase (disorder)','69956002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_70136009','70136009','http://snomed.info/sct','Toxic effect of malathion (disorder)','70136009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_70336002','70336002','http://snomed.info/sct','Methomyl poisoning (disorder)','70336002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_70857003','70857003','http://snomed.info/sct','Toxic effect of parathion (disorder)','70857003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_715063000','715063000','http://snomed.info/sct','Accidental poisoning caused by 2,4,5-Trichlorophenoxyacetic acid (disorder)','715063000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_715064006','715064006','http://snomed.info/sct','Accidental poisoning caused by 2,4-Dichlorophenoxyacetic acid (disorder)','715064006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_715143005','715143005','http://snomed.info/sct','Accidental poisoning caused by endrin (disorder)','715143005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_71597002','71597002','http://snomed.info/sct','Phosphate salt poisoning (disorder)','71597002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_72376001','72376001','http://snomed.info/sct','Toxic effect of dieldrin (disorder)','72376001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_7287001','7287001','http://snomed.info/sct','Poisoning caused by triorthocresyl phosphate (disorder)','7287001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_73724005','73724005','http://snomed.info/sct','Phenoxyacetate herbicide toxicity (disorder)','73724005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_74132001','74132001','http://snomed.info/sct','Toxic effect of dichlorodiphenyltrichloroethane (disorder)','74132001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_75017004','75017004','http://snomed.info/sct','Paraquat toxicity (disorder)','75017004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_75529001','75529001','http://snomed.info/sct','Phosphorus poisoning (disorder)','75529001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_75730008','75730008','http://snomed.info/sct','Lindane poisoning (disorder)','75730008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_76547000','76547000','http://snomed.info/sct','Fenthion poisoning (disorder)','76547000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_8260003','8260003','http://snomed.info/sct','Organophosphate poisoning (disorder)','8260003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_83833006','83833006','http://snomed.info/sct','Crimidine toxicity (disorder)','83833006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_84325005','84325005','http://snomed.info/sct','Tetrachlorvinphos poisoning (disorder)','84325005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_84997000','84997000','http://snomed.info/sct','Insecticide poisoning (disorder)','84997000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_86232000','86232000','http://snomed.info/sct','Pyriminil toxicity (disorder)','86232000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_87197007','87197007','http://snomed.info/sct','Endrin poisoning (disorder)','87197007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_87841007','87841007','http://snomed.info/sct','Oxydemeton-methyl poisoning (disorder)','87841007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.304_88031005','88031005','http://snomed.info/sct','4-aminopyridine poisoning (disorder)','88031005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.667_G61.0','G61.0','http://hl7.org/fhir/sid/icd-10-cm','Guillain-Barre syndrome','G610','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.667_G65.0','G65.0','http://hl7.org/fhir/sid/icd-10-cm','Sequelae of Guillain-Barre syndrome','G650','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.410_111798006','111798006','http://snomed.info/sct','Gastrointestinal anthrax (disorder)','111798006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.410_111800004','111800004','http://snomed.info/sct','Anthrax manifestation (disorder)','111800004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.410_11389007','11389007','http://snomed.info/sct','Inhalational anthrax (disorder)','11389007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.410_195902009','195902009','http://snomed.info/sct','Anthrax pneumonia (disorder)','195902009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.410_409498004','409498004','http://snomed.info/sct','Anthrax (disorder)','409498004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.410_448482003','448482003','http://snomed.info/sct','Sepsis caused by Bacillus anthracis (disorder)','448482003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.410_84980006','84980006','http://snomed.info/sct','Cutaneous anthrax (disorder)','84980006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.410_720990007','720990007','http://snomed.info/sct','Meningitis caused by Bacillus anthracis (disorder)','720990007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.411_A22','A22','http://hl7.org/fhir/sid/icd-10-cm','Anthrax','A22','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.411_A22.0','A22.0','http://hl7.org/fhir/sid/icd-10-cm','Cutaneous anthrax','A220','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.411_A22.1','A22.1','http://hl7.org/fhir/sid/icd-10-cm','Pulmonary anthrax','A221','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.411_A22.2','A22.2','http://hl7.org/fhir/sid/icd-10-cm','Gastrointestinal anthrax','A222','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.411_A22.7','A22.7','http://hl7.org/fhir/sid/icd-10-cm','Anthrax sepsis','A227','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.411_A22.8','A22.8','http://hl7.org/fhir/sid/icd-10-cm','Other forms of anthrax','A228','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.411_A22.9','A22.9','http://hl7.org/fhir/sid/icd-10-cm','Anthrax, unspecified','A229','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.411_Z20.810','Z20.810','http://hl7.org/fhir/sid/icd-10-cm','Contact with and (suspected) exposure to anthrax','Z20810','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.657_A87','A87','http://hl7.org/fhir/sid/icd-10-cm','Viral meningitis','A87','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.657_A87.1','A87.1','http://hl7.org/fhir/sid/icd-10-cm','Adenoviral meningitis','A871','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.657_A87.8','A87.8','http://hl7.org/fhir/sid/icd-10-cm','Other viral meningitis','A878','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.657_A87.9','A87.9','http://hl7.org/fhir/sid/icd-10-cm','Viral meningitis, unspecified','A879','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.657_B00.3','B00.3','http://hl7.org/fhir/sid/icd-10-cm','Herpesviral meningitis','B003','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.657_B02.1','B02.1','http://hl7.org/fhir/sid/icd-10-cm','Zoster meningitis','B021','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.657_B27.02','B27.02','http://hl7.org/fhir/sid/icd-10-cm','Gammaherpesviral mononucleosis with meningitis','B2702','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.657_B27.92','B27.92','http://hl7.org/fhir/sid/icd-10-cm','Infectious mononucleosis, unspecified with meningitis','B2792','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.657_G03.0','G03.0','http://hl7.org/fhir/sid/icd-10-cm','Nonpyogenic meningitis','G030','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.657_B05.1','B05.1','http://hl7.org/fhir/sid/icd-10-cm','Measles complicated by meningitis','B051','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.657_B06.02','B06.02','http://hl7.org/fhir/sid/icd-10-cm','Rubella meningitis','B0602','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.657_B27.12','B27.12','http://hl7.org/fhir/sid/icd-10-cm','Cytomegaloviral mononucleosis with meningitis','B2712','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.657_A87.0','A87.0','http://hl7.org/fhir/sid/icd-10-cm','Enteroviral meningitis','A870','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.657_B01.0','B01.0','http://hl7.org/fhir/sid/icd-10-cm','Varicella meningitis','B010','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.657_B26.1','B26.1','http://hl7.org/fhir/sid/icd-10-cm','Mumps meningitis','B261','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.657_G00.1','G00.1','http://hl7.org/fhir/sid/icd-10-cm','Pneumococcal meningitis','G001','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2319_194997002','194997002','http://snomed.info/sct','Pulmonary stenosis, non-rheumatic (disorder)','194997002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2319_195000004','195000004','http://snomed.info/sct','Pulmonary valve stenosis with insufficiency (disorder)','195000004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2319_236530006','236530006','http://snomed.info/sct','Pulmonic stenosis and congenital nephrosis (disorder)','236530006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2319_251006007','251006007','http://snomed.info/sct','Pulmonary valve stenosis with doming (disorder)','251006007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2319_251007003','251007003','http://snomed.info/sct','Pulmonary valve stenosis with narrow jet (disorder)','251007003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2319_56786000','56786000','http://snomed.info/sct','Pulmonic valve stenosis (disorder)','56786000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2319_67278007','67278007','http://snomed.info/sct','Congenital stenosis of pulmonary valve (disorder)','67278007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2319_703178004','703178004','http://snomed.info/sct','Non-rheumatic pulmonary valve stenosis with regurgitation (disorder)','703178004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2319_838538002','838538002','http://snomed.info/sct','Mild pulmonary valve stenosis (disorder)','838538002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2319_838539005','838539005','http://snomed.info/sct','Moderate pulmonary valve stenosis (disorder)','838539005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2319_838540007','838540007','http://snomed.info/sct','Severe pulmonary valve stenosis (disorder)','838540007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2319_92830003','92830003','http://snomed.info/sct','Combined valvular-subvalvular pulmonic stenosis (disorder)','92830003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2319_472845002','472845002','http://snomed.info/sct','Stenosis of fetal pulmonary valve (disorder)','472845002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2317_204342004','204342004','http://snomed.info/sct','Congenital atresia of the pulmonary valve (disorder)','204342004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2317_253303001','253303001','http://snomed.info/sct','Solitary aortic trunk with pulmonary atresia (disorder)','253303001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2317_253590009','253590009','http://snomed.info/sct','Pulmonary atresia with intact ventricular septum (disorder)','253590009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2317_253592001','253592001','http://snomed.info/sct','Pulmonary valve atresia without ventricular outflow tract (disorder)','253592001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2317_253593006','253593006','http://snomed.info/sct','Imperforate pulmonary valve (disorder)','253593006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2317_253594000','253594000','http://snomed.info/sct','Muscular pulmonary atresia (disorder)','253594000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2317_253624000','253624000','http://snomed.info/sct','Pulmonary atresia with confluent pulmonary arteries (disorder)','253624000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2317_253625004','253625004','http://snomed.info/sct','Pulmonary atresia with absent pulmonary artery (disorder)','253625004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2317_719955006','719955006','http://snomed.info/sct','Atresia of pulmonary valve (disorder)','719955006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1347_A84.81','A84.81','http://hl7.org/fhir/sid/icd-10-cm','Powassan virus disease','A8481','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1589_216800002','216800002','http://snomed.info/sct','Accidental poisoning caused by cadmium and/or cadmium compound (disorder)','216800002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1589_236456002','236456002','http://snomed.info/sct','Chronic cadmium nephropathy (disorder)','236456002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1589_236517005','236517005','http://snomed.info/sct','Acute cadmium nephropathy (disorder)','236517005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1589_3398004','3398004','http://snomed.info/sct','Cadmium poisoning (disorder)','3398004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1589_37711000','37711000','http://snomed.info/sct','Cadmium pneumonitis (disorder)','37711000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2318_Q22.0','Q22.0','http://hl7.org/fhir/sid/icd-10-cm','Pulmonary valve atresia','Q220','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.86_111407006','111407006','http://snomed.info/sct','Hemolytic uremic syndrome (disorder)','111407006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.86_1144979004','1144979004','http://snomed.info/sct','Disorder of glomerulus due to hemolytic uremic syndrome (disorder)','1144979004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.86_36568005','36568005','http://snomed.info/sct','Hemolytic uremic syndrome of childhood (disorder)','36568005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.86_373422007','373422007','http://snomed.info/sct','Diarrhea-negative hemolytic uremic syndrome (disorder)','373422007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.86_444976001','444976001','http://snomed.info/sct','Congenital hemolytic uremic syndrome (disorder)','444976001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.86_78209002','78209002','http://snomed.info/sct','Hemolytic uremic syndrome, adult type (disorder)','78209002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.86_789660001','789660001','http://snomed.info/sct','Atypical hemolytic uremic syndrome (disorder)','789660001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.86_373421000','373421000','http://snomed.info/sct','Diarrhea-associated hemolytic uremic syndrome (disorder)','373421000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2315_17394001','17394001','http://snomed.info/sct','Ebstein''s anomaly with atrial septal defect (disorder)','17394001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2315_204357006','204357006','http://snomed.info/sct','Ebstein''s anomaly of tricuspid valve (disorder)','204357006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2315_447915002','447915002','http://snomed.info/sct','Ebstein''s anomaly of left sided tricuspid valve with discordant atrioventricular connections (disorder)','447915002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2315_449158005','449158005','http://snomed.info/sct','Ebstein''s anomaly of tricuspid valve with atrialization of right ventricular chamber (disorder)','449158005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2315_448074008','448074008','http://snomed.info/sct','Ebstein''s anomaly with functional tricuspid stenosis (disorder)','448074008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.87_1144975005','1144975005','http://snomed.info/sct','Disorder of glomerulus due to thrombotic thrombocytopenic purpura (disorder)','1144975005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.87_267535004','267535004','http://snomed.info/sct','Congenital thrombocytopenic purpura (disorder)','267535004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.87_302873008','302873008','http://snomed.info/sct','Thrombocytopenic purpura (disorder)','302873008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.87_33183004','33183004','http://snomed.info/sct','Post infectious thrombocytopenic purpura (disorder)','33183004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.87_402653004','402653004','http://snomed.info/sct','Thrombocytopenic purpura due to defective platelet production (disorder)','402653004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.87_402654005','402654005','http://snomed.info/sct','Thrombocytopenic purpura due to platelet consumption (disorder)','402654005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.87_417626001','417626001','http://snomed.info/sct','Thrombocytopenic purpura associated with metabolic disorder (disorder)','417626001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.87_439007008','439007008','http://snomed.info/sct','Acquired thrombotic thrombocytopenic purpura (disorder)','439007008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.87_78129009','78129009','http://snomed.info/sct','Thrombotic thrombocytopenic purpura (disorder)','78129009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2316_Q22.5','Q22.5','http://hl7.org/fhir/sid/icd-10-cm','Ebstein''s anomaly','Q225','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.88_D59.30','D59.30','http://hl7.org/fhir/sid/icd-10-cm','Hemolytic-uremic syndrome, unspecified','D5930','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.88_D59.31','D59.31','http://hl7.org/fhir/sid/icd-10-cm','Infection-associated hemolytic-uremic syndrome','D5931','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.80_A04.5','A04.5','http://hl7.org/fhir/sid/icd-10-cm','Campylobacter enteritis','A045','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_10847261000119103','10847261000119103','http://snomed.info/sct','Open wound of left foot due to dog bite (disorder)','10847261000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_10858961000119108','10858961000119108','http://snomed.info/sct','Open wound of right chest wall due to dog bite (disorder)','10858961000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_10859161000119101','10859161000119101','http://snomed.info/sct','Open wound of left chest wall due to dog bite (disorder)','10859161000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_10861771000119101','10861771000119101','http://snomed.info/sct','Open wound of scalp due to dog bite (disorder)','10861771000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_10867471000119104','10867471000119104','http://snomed.info/sct','Open wound of lower back due to dog bite (disorder)','10867471000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_10871751000119103','10871751000119103','http://snomed.info/sct','Open wound of abdominal wall due to dog bite (disorder)','10871751000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_10872191000119100','10872191000119100','http://snomed.info/sct','Open wound of right shoulder due to dog bite (disorder)','10872191000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_10882791000119106','10882791000119106','http://snomed.info/sct','Open wound of right buttock due to dog bite (disorder)','10882791000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_10882831000119100','10882831000119100','http://snomed.info/sct','Open wound of left buttock due to dog bite (disorder)','10882831000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_10882991000119108','10882991000119108','http://snomed.info/sct','Open wound of left shoulder due to dog bite (disorder)','10882991000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_10947291000119103','10947291000119103','http://snomed.info/sct','Open wound of finger of left hand due to dog bite (disorder)','10947291000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_10947331000119109','10947331000119109','http://snomed.info/sct','Open wound of left index finger due to dog bite (disorder)','10947331000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_10947371000119107','10947371000119107','http://snomed.info/sct','Open wound of left little finger due to dog bite (disorder)','10947371000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_10947411000119108','10947411000119108','http://snomed.info/sct','Open wound of left middle finger due to dog bite (disorder)','10947411000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_10947451000119109','10947451000119109','http://snomed.info/sct','Open wound of left ring finger due to dog bite (disorder)','10947451000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_10947491000119104','10947491000119104','http://snomed.info/sct','Open wound of finger of right hand due to dog bite (disorder)','10947491000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_10947531000119104','10947531000119104','http://snomed.info/sct','Open wound of right index finger due to dog bite (disorder)','10947531000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_10947571000119101','10947571000119101','http://snomed.info/sct','Open wound of right little finger due to dog bite (disorder)','10947571000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_10947611000119105','10947611000119105','http://snomed.info/sct','Open wound of right middle finger due to dog bite (disorder)','10947611000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_10947651000119106','10947651000119106','http://snomed.info/sct','Open wound of right ring finger due to dog bite (disorder)','10947651000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_10948191000119107','10948191000119107','http://snomed.info/sct','Open wound of right thumb due to dog bite (disorder)','10948191000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_10948231000119103','10948231000119103','http://snomed.info/sct','Open wound of left thumb due to dog bite (disorder)','10948231000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_10948471000119101','10948471000119101','http://snomed.info/sct','Open wound of left hand due to dog bite (disorder)','10948471000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_10948511000119105','10948511000119105','http://snomed.info/sct','Open wound of right hand due to dog bite (disorder)','10948511000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_10948851000119108','10948851000119108','http://snomed.info/sct','Open wound of right upper arm due to dog bite (disorder)','10948851000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_10948891000119103','10948891000119103','http://snomed.info/sct','Open wound of left upper arm due to dog bite (disorder)','10948891000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_10949171000119104','10949171000119104','http://snomed.info/sct','Open wound of right wrist due to dog bite (disorder)','10949171000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_10949211000119102','10949211000119102','http://snomed.info/sct','Open wound of left wrist due to dog bite (disorder)','10949211000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_10949531000119105','10949531000119105','http://snomed.info/sct','Open wound of left elbow due to dog bite (disorder)','10949531000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_10949571000119108','10949571000119108','http://snomed.info/sct','Open wound of right elbow due to dog bite (disorder)','10949571000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_10949671000119107','10949671000119107','http://snomed.info/sct','Open wound of right forearm due to dog bite (disorder)','10949671000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_10949711000119106','10949711000119106','http://snomed.info/sct','Open wound of left forearm due to dog bite (disorder)','10949711000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_10952691000119101','10952691000119101','http://snomed.info/sct','Open wound of neck due to dog bite (disorder)','10952691000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_10967121000119100','10967121000119100','http://snomed.info/sct','Open wound of right great toe due to dog bite (disorder)','10967121000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_10967161000119105','10967161000119105','http://snomed.info/sct','Open wound of left great toe due to dog bite (disorder)','10967161000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_10967601000119102','10967601000119102','http://snomed.info/sct','Open wound of right hip due to dog bite (disorder)','10967601000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_10967641000119100','10967641000119100','http://snomed.info/sct','Open wound of left hip due to dog bite (disorder)','10967641000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_10969411000119108','10969411000119108','http://snomed.info/sct','Open wound of right ankle due to dog bite (disorder)','10969411000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_10969451000119109','10969451000119109','http://snomed.info/sct','Open wound of left ankle due to dog bite (disorder)','10969451000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_10969771000119106','10969771000119106','http://snomed.info/sct','Open wound of right thigh due to dog bite (disorder)','10969771000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_10969811000119106','10969811000119106','http://snomed.info/sct','Open wound of left thigh due to dog bite (disorder)','10969811000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_10970131000119105','10970131000119105','http://snomed.info/sct','Open wound of right foot due to dog bite (disorder)','10970131000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_10970371000119105','10970371000119105','http://snomed.info/sct','Open wound of right lower leg due to dog bite (disorder)','10970371000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_10970411000119106','10970411000119106','http://snomed.info/sct','Open wound of left lower leg due to dog bite (disorder)','10970411000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_10970731000119106','10970731000119106','http://snomed.info/sct','Open wound of right knee due to dog bite (disorder)','10970731000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_10970771000119109','10970771000119109','http://snomed.info/sct','Open wound of left knee due to dog bite (disorder)','10970771000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_262556008','262556008','http://snomed.info/sct','Superficial dog bite wound (disorder)','262556008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_262571007','262571007','http://snomed.info/sct','Deep dog bite (disorder)','262571007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_283734005','283734005','http://snomed.info/sct','Dog bite - wound (disorder)','283734005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_283745008','283745008','http://snomed.info/sct','Dog bite of neck (disorder)','283745008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_283746009','283746009','http://snomed.info/sct','Dog bite of throat (disorder)','283746009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_283747000','283747000','http://snomed.info/sct','Dog bite of upper limb (disorder)','283747000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_283748005','283748005','http://snomed.info/sct','Dog bite of shoulder (disorder)','283748005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_283749002','283749002','http://snomed.info/sct','Dog bite of axilla (disorder)','283749002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_283750002','283750002','http://snomed.info/sct','Dog bite of upper arm (disorder)','283750002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_283751003','283751003','http://snomed.info/sct','Dog bite of elbow (disorder)','283751003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_283752005','283752005','http://snomed.info/sct','Dog bite of forearm (disorder)','283752005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_283753000','283753000','http://snomed.info/sct','Dog bite of wrist (disorder)','283753000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_283754006','283754006','http://snomed.info/sct','Dog bite of hand (disorder)','283754006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_283755007','283755007','http://snomed.info/sct','Dog bite of dorsum of hand (disorder)','283755007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_283756008','283756008','http://snomed.info/sct','Dog bite of palm of hand (disorder)','283756008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_283757004','283757004','http://snomed.info/sct','Dog bite of finger (disorder)','283757004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_283758009','283758009','http://snomed.info/sct','Dog bite of thumb (disorder)','283758009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_283759001','283759001','http://snomed.info/sct','Dog bite of trunk (disorder)','283759001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_283760006','283760006','http://snomed.info/sct','Dog bite of back (disorder)','283760006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_283761005','283761005','http://snomed.info/sct','Dog bite of chest (disorder)','283761005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_283762003','283762003','http://snomed.info/sct','Dog bite of abdomen (disorder)','283762003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_283763008','283763008','http://snomed.info/sct','Dog bite of pelvic region (disorder)','283763008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_283764002','283764002','http://snomed.info/sct','Dog bite of perineum (disorder)','283764002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_283765001','283765001','http://snomed.info/sct','Dog bite of genitalia (disorder)','283765001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_283766000','283766000','http://snomed.info/sct','Dog bite of groin (disorder)','283766000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_283767009','283767009','http://snomed.info/sct','Dog bite of lower limb (disorder)','283767009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_283768004','283768004','http://snomed.info/sct','Dog bite of buttock (disorder)','283768004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_283769007','283769007','http://snomed.info/sct','Dog bite of hip (disorder)','283769007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_283770008','283770008','http://snomed.info/sct','Dog bite of thigh (disorder)','283770008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_283771007','283771007','http://snomed.info/sct','Dog bite of knee (disorder)','283771007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_283772000','283772000','http://snomed.info/sct','Dog bite of lower leg (disorder)','283772000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_283773005','283773005','http://snomed.info/sct','Dog bite of shin (disorder)','283773005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_283774004','283774004','http://snomed.info/sct','Dog bite of calf (disorder)','283774004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_283775003','283775003','http://snomed.info/sct','Dog bite of ankle (disorder)','283775003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_283776002','283776002','http://snomed.info/sct','Dog bite of foot (disorder)','283776002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_283777006','283777006','http://snomed.info/sct','Dog bite of toe (disorder)','283777006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_283778001','283778001','http://snomed.info/sct','Dog bite of great toe (disorder)','283778001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_283779009','283779009','http://snomed.info/sct','Dog bite of dorsum of foot (disorder)','283779009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_283780007','283780007','http://snomed.info/sct','Dog bite of sole of foot (disorder)','283780007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_283781006','283781006','http://snomed.info/sct','Dog bite of heel (disorder)','283781006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_716104002','716104002','http://snomed.info/sct','Open wound of hand due to dog bite (disorder)','716104002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_718510004','718510004','http://snomed.info/sct','Open wound of forearm due to dog bite (disorder)','718510004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_10872731000119103','10872731000119103','http://snomed.info/sct','Open wound of nose due to dog bite (disorder)','10872731000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_10873411000119105','10873411000119105','http://snomed.info/sct','Open wound of right ear due to dog bite (disorder)','10873411000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_10873451000119106','10873451000119106','http://snomed.info/sct','Open wound of left ear due to dog bite (disorder)','10873451000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_10875551000119108','10875551000119108','http://snomed.info/sct','Open wound of right eyelid due to dog bite (disorder)','10875551000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_10875631000119103','10875631000119103','http://snomed.info/sct','Open wound of left eyelid due to dog bite (disorder)','10875631000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_10898251000119106','10898251000119106','http://snomed.info/sct','Open wound of right cheek due to dog bite (disorder)','10898251000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_10898291000119101','10898291000119101','http://snomed.info/sct','Open wound of left cheek due to dog bite (disorder)','10898291000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_10898371000119105','10898371000119105','http://snomed.info/sct','Open wound of lip due to dog bite (disorder)','10898371000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_10905711000119100','10905711000119100','http://snomed.info/sct','Open wound of face due to dog bite (disorder)','10905711000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_10905751000119104','10905751000119104','http://snomed.info/sct','Open wound of chin due to dog bite (disorder)','10905751000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_10905791000119109','10905791000119109','http://snomed.info/sct','Open wound of jaw due to dog bite (disorder)','10905791000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_10906311000119107','10906311000119107','http://snomed.info/sct','Open wound of head due to dog bite (disorder)','10906311000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_283735006','283735006','http://snomed.info/sct','Dog bite of head and neck (disorder)','283735006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_283736007','283736007','http://snomed.info/sct','Dog bite of head (disorder)','283736007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_283737003','283737003','http://snomed.info/sct','Dog bite of scalp (disorder)','283737003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_283738008','283738008','http://snomed.info/sct','Dog bite of face (disorder)','283738008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_283739000','283739000','http://snomed.info/sct','Dog bite of forehead (disorder)','283739000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_283740003','283740003','http://snomed.info/sct','Dog bite of eye region (disorder)','283740003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_283741004','283741004','http://snomed.info/sct','Dog bite of ear region (disorder)','283741004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_283742006','283742006','http://snomed.info/sct','Dog bite of nose (disorder)','283742006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_283743001','283743001','http://snomed.info/sct','Dog bite of cheek (disorder)','283743001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1580_283744007','283744007','http://snomed.info/sct','Dog bite of mouth (disorder)','283744007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1586_W53.01XA','W53.01XA','http://hl7.org/fhir/sid/icd-10-cm','Bitten by mouse, initial encounter','W5301XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1586_W53.11XA','W53.11XA','http://hl7.org/fhir/sid/icd-10-cm','Bitten by rat, initial encounter','W5311XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1586_W53.21XA','W53.21XA','http://hl7.org/fhir/sid/icd-10-cm','Bitten by squirrel, initial encounter','W5321XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1586_W53.81XA','W53.81XA','http://hl7.org/fhir/sid/icd-10-cm','Bitten by other rodent, initial encounter','W5381XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1586_W55.01XA','W55.01XA','http://hl7.org/fhir/sid/icd-10-cm','Bitten by cat, initial encounter','W5501XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1586_W55.11XA','W55.11XA','http://hl7.org/fhir/sid/icd-10-cm','Bitten by horse, initial encounter','W5511XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1586_W55.21XA','W55.21XA','http://hl7.org/fhir/sid/icd-10-cm','Bitten by cow, initial encounter','W5521XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1586_W55.31XA','W55.31XA','http://hl7.org/fhir/sid/icd-10-cm','Bitten by other hoof stock, initial encounter','W5531XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1586_W55.41XA','W55.41XA','http://hl7.org/fhir/sid/icd-10-cm','Bitten by pig, initial encounter','W5541XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1586_W55.51XA','W55.51XA','http://hl7.org/fhir/sid/icd-10-cm','Bitten by raccoon, initial encounter','W5551XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1586_W55.81XA','W55.81XA','http://hl7.org/fhir/sid/icd-10-cm','Bitten by other mammals, initial encounter','W5581XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1586_W56.01XA','W56.01XA','http://hl7.org/fhir/sid/icd-10-cm','Bitten by dolphin, initial encounter','W5601XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1586_W56.11XA','W56.11XA','http://hl7.org/fhir/sid/icd-10-cm','Bitten by sea lion, initial encounter','W5611XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1586_W56.21XA','W56.21XA','http://hl7.org/fhir/sid/icd-10-cm','Bitten by orca, initial encounter','W5621XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1586_W56.31XA','W56.31XA','http://hl7.org/fhir/sid/icd-10-cm','Bitten by other marine mammals, initial encounter','W5631XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2313_13867009','13867009','http://snomed.info/sct','Preductal coarctation of aorta (disorder)','13867009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2313_253672004','253672004','http://snomed.info/sct','Preductal aortic stenosis (disorder)','253672004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2313_253673009','253673009','http://snomed.info/sct','Preductal interruption of aorta (disorder)','253673009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2313_253674003','253674003','http://snomed.info/sct','Preductal hypoplasia of aorta (disorder)','253674003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2313_253675002','253675002','http://snomed.info/sct','Juxtaductal aortic coarctation (disorder)','253675002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2313_253676001','253676001','http://snomed.info/sct','Postductal aortic stenosis (disorder)','253676001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2313_253677005','253677005','http://snomed.info/sct','Postductal interruption of aorta (disorder)','253677005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2313_253678000','253678000','http://snomed.info/sct','Thoracic aortic coarctation (disorder)','253678000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2313_253679008','253679008','http://snomed.info/sct','Abdominal aortic coarctation (disorder)','253679008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2313_41371000119100','41371000119100','http://snomed.info/sct','Shone complex (disorder)','41371000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2313_450304006','450304006','http://snomed.info/sct','Coarctation of suprarenal abdominal aorta (disorder)','450304006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2313_450305007','450305007','http://snomed.info/sct','Coarctation of infrarenal abdominal aorta (disorder)','450305007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2313_450312003','450312003','http://snomed.info/sct','Coarctation of aorta between subclavian artery and common carotid artery (disorder)','450312003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2313_450313008','450313008','http://snomed.info/sct','Coarctation of aorta between left common carotid artery and right common carotid artery (disorder)','450313008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2313_72242008','72242008','http://snomed.info/sct','Postductal coarctation of aorta (disorder)','72242008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2313_723867002','723867002','http://snomed.info/sct','Coarctation of aortic arch (disorder)','723867002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2313_7305005','7305005','http://snomed.info/sct','Coarctation of aorta (disorder)','7305005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2313_871650000','871650000','http://snomed.info/sct','Common arterial trunk with pulmonary dominance and aortic coarctation (disorder)','871650000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1585_W54.0XXA','W54.0XXA','http://hl7.org/fhir/sid/icd-10-cm','Bitten by dog, initial encounter','W540XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2314_Q25.1','Q25.1','http://hl7.org/fhir/sid/icd-10-cm','Coarctation of aorta','Q251','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1588_T56.3X1A','T56.3X1A','http://hl7.org/fhir/sid/icd-10-cm','Toxic effect of cadmium and its compounds, accidental (unintentional), initial encounter','T563X1A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1588_T56.3X2A','T56.3X2A','http://hl7.org/fhir/sid/icd-10-cm','Toxic effect of cadmium and its compounds, intentional self-harm, initial encounter','T563X2A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1588_T56.3X3A','T56.3X3A','http://hl7.org/fhir/sid/icd-10-cm','Toxic effect of cadmium and its compounds, assault, initial encounter','T563X3A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1588_T56.3X4A','T56.3X4A','http://hl7.org/fhir/sid/icd-10-cm','Toxic effect of cadmium and its compounds, undetermined, initial encounter','T563X4A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2311_218728005','218728005','http://snomed.info/sct','Interrupted aortic arch (disorder)','218728005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2311_253681005','253681005','http://snomed.info/sct','Interrupted aortic arch distal to left subclavian artery (disorder)','253681005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2311_253682003','253682003','http://snomed.info/sct','Interrupted aortic arch between left subclavian and left common carotid artery (disorder)','253682003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2311_253683008','253683008','http://snomed.info/sct','Interrupted aortic arch between left common carotid and brachiocephalic artery (disorder)','253683008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2311_472101004','472101004','http://snomed.info/sct','Interruption of aortic arch distal to subclavian artery (disorder)','472101004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2311_472102006','472102006','http://snomed.info/sct','Interruption of aortic arch between subclavian artery and common carotid artery (disorder)','472102006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2311_472103001','472103001','http://snomed.info/sct','Interruption of aortic arch between left common carotid artery and right common carotid artery (disorder)','472103001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2311_762253006','762253006','http://snomed.info/sct','Common arterial trunk with pulmonary dominance co-occurrent with interrupted aortic arch (disorder)','762253006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S00.06XA','S00.06XA','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous) of scalp, initial encounter','S0006XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S00.261A','S00.261A','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous) of right eyelid and periocular area, initial encounter','S00261A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S00.262A','S00.262A','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous) of left eyelid and periocular area, initial encounter','S00262A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S00.269A','S00.269A','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous) of unspecified eyelid and periocular area, initial encounter','S00269A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S00.36XA','S00.36XA','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous) of nose, initial encounter','S0036XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S00.461A','S00.461A','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous) of right ear, initial encounter','S00461A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S00.462A','S00.462A','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous) of left ear, initial encounter','S00462A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S00.469A','S00.469A','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous) of unspecified ear, initial encounter','S00469A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S00.561A','S00.561A','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous) of lip, initial encounter','S00561A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S00.562A','S00.562A','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous) of oral cavity, initial encounter','S00562A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S00.86XA','S00.86XA','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous) of other part of head, initial encounter','S0086XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S00.96XA','S00.96XA','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous) of unspecified part of head, initial encounter','S0096XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S10.16XA','S10.16XA','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous) of throat, initial encounter','S1016XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S10.86XA','S10.86XA','http://hl7.org/fhir/sid/icd-10-cm','Insect bite of other specified part of neck, initial encounter','S1086XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S10.96XA','S10.96XA','http://hl7.org/fhir/sid/icd-10-cm','Insect bite of unspecified part of neck, initial encounter','S1096XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S20.161A','S20.161A','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous) of breast, right breast, initial encounter','S20161A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S20.162A','S20.162A','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous) of breast, left breast, initial encounter','S20162A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S20.169A','S20.169A','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous) of breast, unspecified breast, initial encounter','S20169A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S20.361A','S20.361A','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous) of right front wall of thorax, initial encounter','S20361A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S20.362A','S20.362A','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous) of left front wall of thorax, initial encounter','S20362A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S20.363A','S20.363A','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous) of bilateral front wall of thorax, initial encounter','S20363A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S20.364A','S20.364A','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous) of middle front wall of thorax, initial encounter','S20364A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S20.369A','S20.369A','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous) of unspecified front wall of thorax, initial encounter','S20369A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S20.461A','S20.461A','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous) of right back wall of thorax, initial encounter','S20461A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S20.462A','S20.462A','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous) of left back wall of thorax, initial encounter','S20462A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S20.469A','S20.469A','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous) of unspecified back wall of thorax, initial encounter','S20469A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S20.96XA','S20.96XA','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous) of unspecified parts of thorax, initial encounter','S2096XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S30.860A','S30.860A','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous) of lower back and pelvis, initial encounter','S30860A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S30.861A','S30.861A','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous) of abdominal wall, initial encounter','S30861A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S30.862A','S30.862A','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous) of penis, initial encounter','S30862A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S30.863A','S30.863A','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous) of scrotum and testes, initial encounter','S30863A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S30.864A','S30.864A','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous) of vagina and vulva, initial encounter','S30864A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S30.865A','S30.865A','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous) of unspecified external genital organs, male, initial encounter','S30865A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S30.866A','S30.866A','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous) of unspecified external genital organs, female, initial encounter','S30866A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S30.867A','S30.867A','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous) of anus, initial encounter','S30867A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S40.261A','S40.261A','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous) of right shoulder, initial encounter','S40261A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S40.262A','S40.262A','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous) of left shoulder, initial encounter','S40262A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S40.269A','S40.269A','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous) of unspecified shoulder, initial encounter','S40269A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S40.861A','S40.861A','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous) of right upper arm, initial encounter','S40861A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S40.862A','S40.862A','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous) of left upper arm, initial encounter','S40862A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S40.869A','S40.869A','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous) of unspecified upper arm, initial encounter','S40869A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S50.361A','S50.361A','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous) of right elbow, initial encounter','S50361A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S50.362A','S50.362A','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous) of left elbow, initial encounter','S50362A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S50.369A','S50.369A','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous) of unspecified elbow, initial encounter','S50369A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S50.861A','S50.861A','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous) of right forearm, initial encounter','S50861A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S50.862A','S50.862A','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous) of left forearm, initial encounter','S50862A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S50.869A','S50.869A','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous) of unspecified forearm, initial encounter','S50869A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S60.361A','S60.361A','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous) of right thumb, initial encounter','S60361A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S60.362A','S60.362A','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous) of left thumb, initial encounter','S60362A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S60.369A','S60.369A','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous) of unspecified thumb, initial encounter','S60369A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S60.460A','S60.460A','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous) of right index finger, initial encounter','S60460A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S60.461A','S60.461A','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous) of left index finger, initial encounter','S60461A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S60.462A','S60.462A','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous) of right middle finger, initial encounter','S60462A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S60.463A','S60.463A','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous) of left middle finger, initial encounter','S60463A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S60.464A','S60.464A','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous) of right ring finger, initial encounter','S60464A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S60.465A','S60.465A','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous) of left ring finger, initial encounter','S60465A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S60.466A','S60.466A','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous) of right little finger, initial encounter','S60466A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S60.467A','S60.467A','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous) of left little finger, initial encounter','S60467A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S60.468A','S60.468A','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous) of other finger, initial encounter','S60468A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S60.469A','S60.469A','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous) of unspecified finger, initial encounter','S60469A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S60.561A','S60.561A','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous) of right hand, initial encounter','S60561A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S60.562A','S60.562A','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous) of left hand, initial encounter','S60562A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S60.569A','S60.569A','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous) of unspecified hand, initial encounter','S60569A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S60.861A','S60.861A','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous) of right wrist, initial encounter','S60861A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S60.862A','S60.862A','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous) of left wrist, initial encounter','S60862A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S60.869A','S60.869A','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous) of unspecified wrist, initial encounter','S60869A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S70.261A','S70.261A','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous), right hip, initial encounter','S70261A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S70.262A','S70.262A','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous), left hip, initial encounter','S70262A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S70.269A','S70.269A','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous), unspecified hip, initial encounter','S70269A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S70.361A','S70.361A','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous), right thigh, initial encounter','S70361A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S70.362A','S70.362A','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous), left thigh, initial encounter','S70362A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S70.369A','S70.369A','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous), unspecified thigh, initial encounter','S70369A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S80.261A','S80.261A','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous), right knee, initial encounter','S80261A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S80.262A','S80.262A','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous), left knee, initial encounter','S80262A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S80.269A','S80.269A','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous), unspecified knee, initial encounter','S80269A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S80.861A','S80.861A','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous), right lower leg, initial encounter','S80861A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S80.862A','S80.862A','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous), left lower leg, initial encounter','S80862A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S80.869A','S80.869A','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous), unspecified lower leg, initial encounter','S80869A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S90.461A','S90.461A','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous), right great toe, initial encounter','S90461A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S90.462A','S90.462A','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous), left great toe, initial encounter','S90462A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S90.463A','S90.463A','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous), unspecified great toe, initial encounter','S90463A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S90.464A','S90.464A','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous), right lesser toe(s), initial encounter','S90464A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S90.465A','S90.465A','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous), left lesser toe(s), initial encounter','S90465A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S90.466A','S90.466A','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous), unspecified lesser toe(s), initial encounter','S90466A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S90.561A','S90.561A','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous), right ankle, initial encounter','S90561A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S90.562A','S90.562A','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous), left ankle, initial encounter','S90562A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S90.569A','S90.569A','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous), unspecified ankle, initial encounter','S90569A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S90.861A','S90.861A','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous), right foot, initial encounter','S90861A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S90.862A','S90.862A','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous), left foot, initial encounter','S90862A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_S90.869A','S90.869A','http://hl7.org/fhir/sid/icd-10-cm','Insect bite (nonvenomous), unspecified foot, initial encounter','S90869A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_W56.41XA','W56.41XA','http://hl7.org/fhir/sid/icd-10-cm','Bitten by shark, initial encounter','W5641XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_W56.51XA','W56.51XA','http://hl7.org/fhir/sid/icd-10-cm','Bitten by other fish, initial encounter','W5651XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_W56.81XA','W56.81XA','http://hl7.org/fhir/sid/icd-10-cm','Bitten by other nonvenomous marine animals, initial encounter','W5681XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_W57.XXXA','W57.XXXA','http://hl7.org/fhir/sid/icd-10-cm','Bitten or stung by nonvenomous insect and other nonvenomous arthropods, initial encounter','W57XXXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_W58.01XA','W58.01XA','http://hl7.org/fhir/sid/icd-10-cm','Bitten by alligator, initial encounter','W5801XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_W58.11XA','W58.11XA','http://hl7.org/fhir/sid/icd-10-cm','Bitten by crocodile, initial encounter','W5811XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_W59.01XA','W59.01XA','http://hl7.org/fhir/sid/icd-10-cm','Bitten by nonvenomous lizards, initial encounter','W5901XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_W59.11XA','W59.11XA','http://hl7.org/fhir/sid/icd-10-cm','Bitten by nonvenomous snake, initial encounter','W5911XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_W59.21XA','W59.21XA','http://hl7.org/fhir/sid/icd-10-cm','Bitten by turtle, initial encounter','W5921XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_W59.81XA','W59.81XA','http://hl7.org/fhir/sid/icd-10-cm','Bitten by other nonvenomous reptiles, initial encounter','W5981XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_W61.01XA','W61.01XA','http://hl7.org/fhir/sid/icd-10-cm','Bitten by parrot, initial encounter','W6101XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_W61.11XA','W61.11XA','http://hl7.org/fhir/sid/icd-10-cm','Bitten by macaw, initial encounter','W6111XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_W61.21XA','W61.21XA','http://hl7.org/fhir/sid/icd-10-cm','Bitten by other psittacines, initial encounter','W6121XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_W61.51XA','W61.51XA','http://hl7.org/fhir/sid/icd-10-cm','Bitten by goose, initial encounter','W6151XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_W61.61XA','W61.61XA','http://hl7.org/fhir/sid/icd-10-cm','Bitten by duck, initial encounter','W6161XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1587_W61.91XA','W61.91XA','http://hl7.org/fhir/sid/icd-10-cm','Bitten by other birds, initial encounter','W6191XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2312_Q25.21','Q25.21','http://hl7.org/fhir/sid/icd-10-cm','Interruption of aortic arch','Q2521','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_10461000','10461000','http://snomed.info/sct','Nonvenomous insect bite with infection (disorder)','10461000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_10662001','10662001','http://snomed.info/sct','Nonvenomous insect bite of face with infection (disorder)','10662001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_11773571000119109','11773571000119109','http://snomed.info/sct','Infected wound of right elbow due to non venomous insect bite (disorder)','11773571000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_11773611000119100','11773611000119100','http://snomed.info/sct','Wound of right elbow region due to nonvenomous insect bite (disorder)','11773611000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_11773651000119104','11773651000119104','http://snomed.info/sct','Infected wound of left elbow due to non venomous insect bite (disorder)','11773651000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_11773691000119109','11773691000119109','http://snomed.info/sct','Wound of left elbow region due to nonvenomous insect bite (disorder)','11773691000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_11779561000119100','11779561000119100','http://snomed.info/sct','Infected wound of right forearm due to non venomous insect bite (disorder)','11779561000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_11779601000119100','11779601000119100','http://snomed.info/sct','Infected wound of left forearm due to non venomous insect bite (disorder)','11779601000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_11779841000119102','11779841000119102','http://snomed.info/sct','Wound of right forearm due to nonvenomous insect bite (disorder)','11779841000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_11779881000119107','11779881000119107','http://snomed.info/sct','Wound of left forearm due to nonvenomous insect bite (disorder)','11779881000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_11783401000119109','11783401000119109','http://snomed.info/sct','Infected wound of right hip due to nonvenomous insect bite (disorder)','11783401000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_11783441000119106','11783441000119106','http://snomed.info/sct','Infected wound of left hip due to nonvenomous insect bite (disorder)','11783441000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_11783881000119104','11783881000119104','http://snomed.info/sct','Nonvenomous insect bite of right hand with infection (disorder)','11783881000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_11783921000119106','11783921000119106','http://snomed.info/sct','Nonvenomous insect bite of left hand with infection (disorder)','11783921000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_11783961000119101','11783961000119101','http://snomed.info/sct','Infected wound of right thigh due to nonvenomous insect bite (disorder)','11783961000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_11784001000119100','11784001000119100','http://snomed.info/sct','Infected wound of left thigh due to nonvenomous insect bite (disorder)','11784001000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_11784041000119103','11784041000119103','http://snomed.info/sct','Infected wound of right wrist due to non venomous insect bite (disorder)','11784041000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_11784081000119108','11784081000119108','http://snomed.info/sct','Infected wound of left wrist due to non venomous insect bite (disorder)','11784081000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_11785921000119107','11785921000119107','http://snomed.info/sct','Wound of right wrist due to nonvenomous insect bite (disorder)','11785921000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_11785961000119102','11785961000119102','http://snomed.info/sct','Wound of left wrist due to nonvenomous insect bite (disorder)','11785961000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_11786001000119105','11786001000119105','http://snomed.info/sct','Nonvenomous insect bite of right hand (disorder)','11786001000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_11786041000119107','11786041000119107','http://snomed.info/sct','Nonvenomous insect bite of left hand (disorder)','11786041000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_11789161000119101','11789161000119101','http://snomed.info/sct','Nonvenomous insect bite of finger of left hand (disorder)','11789161000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_11789321000119108','11789321000119108','http://snomed.info/sct','Nonvenomous insect bite of middle finger of left hand (disorder)','11789321000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_11789561000119109','11789561000119109','http://snomed.info/sct','Nonvenomous insect bite of finger of right hand (disorder)','11789561000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_11789681000119101','11789681000119101','http://snomed.info/sct','Nonvenomous insect bite of middle finger of right hand (disorder)','11789681000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_11793701000119104','11793701000119104','http://snomed.info/sct','Wound of right foot due to nonvenomous insect bite (disorder)','11793701000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_11793741000119102','11793741000119102','http://snomed.info/sct','Wound of left foot due to nonvenomous insect bite (disorder)','11793741000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_11808981000119103','11808981000119103','http://snomed.info/sct','Wound of right hip region due to nonvenomous insect bite (disorder)','11808981000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_11809021000119109','11809021000119109','http://snomed.info/sct','Wound of left hip region due to nonvenomous insect bite (disorder)','11809021000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_11809061000119104','11809061000119104','http://snomed.info/sct','Wound of right thigh due to nonvenomous insect bite (disorder)','11809061000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_11809101000119101','11809101000119101','http://snomed.info/sct','Wound of left thigh due to nonvenomous insect bite (disorder)','11809101000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_11809221000119101','11809221000119101','http://snomed.info/sct','Infected wound of low back due to nonvenomous insect bite (disorder)','11809221000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_11809341000119101','11809341000119101','http://snomed.info/sct','Wound of lower back due to nonvenomous insect bite (disorder)','11809341000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_11809661000119109','11809661000119109','http://snomed.info/sct','Infected wound of right knee due to nonvenomous insect bite (disorder)','11809661000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_11809701000119102','11809701000119102','http://snomed.info/sct','Infected wound of left knee due to nonvenomous insect bite (disorder)','11809701000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_11809741000119100','11809741000119100','http://snomed.info/sct','Wound of right lower leg due to nonvenomous insect bite (disorder)','11809741000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_11809781000119105','11809781000119105','http://snomed.info/sct','Wound of left lower leg due to nonvenomous insect bite (disorder)','11809781000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_11809821000119100','11809821000119100','http://snomed.info/sct','Wound of right knee region due to nonvenomous insect bite (disorder)','11809821000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_11809861000119105','11809861000119105','http://snomed.info/sct','Wound of left knee region due to nonvenomous insect bite (disorder)','11809861000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_11822681000119102','11822681000119102','http://snomed.info/sct','Wound of right axilla due to nonvenomous insect bite (disorder)','11822681000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_11822721000119108','11822721000119108','http://snomed.info/sct','Wound of left axilla due to nonvenomous insect bite (disorder)','11822721000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_11823321000119101','11823321000119101','http://snomed.info/sct','Infected wound of right upper arm due to non venomous insect bite (disorder)','11823321000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_11823361000119106','11823361000119106','http://snomed.info/sct','Infected wound of left upper arm due to non venomous insect bite (disorder)','11823361000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_11823721000119102','11823721000119102','http://snomed.info/sct','Wound of right upper arm due to nonvenomous insect bite (disorder)','11823721000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_11823761000119107','11823761000119107','http://snomed.info/sct','Wound of left upper arm due to nonvenomous insect bite (disorder)','11823761000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_11823801000119104','11823801000119104','http://snomed.info/sct','Wound of right shoulder due to nonvenomous insect bite (disorder)','11823801000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_11823841000119102','11823841000119102','http://snomed.info/sct','Wound of left shoulder due to nonvenomous insect bite (disorder)','11823841000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_11837001000119102','11837001000119102','http://snomed.info/sct','Infected wound of right lower leg due to nonvenomous insect bite (disorder)','11837001000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_11837041000119100','11837041000119100','http://snomed.info/sct','Infected wound of left lower leg due to nonvenomous insect bite (disorder)','11837041000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_11843551000119104','11843551000119104','http://snomed.info/sct','Wound of right ear due to nonvenomous insect bite (disorder)','11843551000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_11843591000119109','11843591000119109','http://snomed.info/sct','Wound of left ear due to nonvenomous insect bite (disorder)','11843591000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_11847821000119101','11847821000119101','http://snomed.info/sct','Nonvenomous insect bite of cheek (disorder)','11847821000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_11848301000119100','11848301000119100','http://snomed.info/sct','Infected wound of right eyelid due to nonvenomous insect bite (disorder)','11848301000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_11848341000119103','11848341000119103','http://snomed.info/sct','Wound of right eyelid due to nonvenomous insect bite (disorder)','11848341000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_11848381000119108','11848381000119108','http://snomed.info/sct','Infected wound of left eyelid due to nonvenomous insect bite (disorder)','11848381000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_11848421000119104','11848421000119104','http://snomed.info/sct','Wound of left eyelid due to nonvenomous insect bite (disorder)','11848421000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_11849221000119106','11849221000119106','http://snomed.info/sct','Wound of right breast due to nonvenomous insect bite (disorder)','11849221000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_11849261000119101','11849261000119101','http://snomed.info/sct','Wound of left breast due to nonvenomous insect bite (disorder)','11849261000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_11849381000119101','11849381000119101','http://snomed.info/sct','Wound of right half of chest wall due to nonvenomous insect bite (disorder)','11849381000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_11849421000119105','11849421000119105','http://snomed.info/sct','Wound of left half of chest wall due to nonvenomous insect bite (disorder)','11849421000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_11849861000119102','11849861000119102','http://snomed.info/sct','Wound of head due to nonvenomous insect bite (disorder)','11849861000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_11862521000119106','11862521000119106','http://snomed.info/sct','Infected wound of right foot due to nonvenomous insect bite (disorder)','11862521000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_11862561000119101','11862561000119101','http://snomed.info/sct','Infected wound of left foot due to nonvenomous insect bite (disorder)','11862561000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_11862601000119101','11862601000119101','http://snomed.info/sct','Wound of right ankle due to nonvenomous insect bite (disorder)','11862601000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_11862641000119104','11862641000119104','http://snomed.info/sct','Wound of left ankle due to nonvenomous insect bite (disorder)','11862641000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_13751005','13751005','http://snomed.info/sct','Poisoning due to bite of Heloderma horridum (disorder)','13751005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_13915009','13915009','http://snomed.info/sct','Nonvenomous insect bite of buttock without infection (disorder)','13915009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_14096004','14096004','http://snomed.info/sct','Nonvenomous insect bite of scapular region with infection (disorder)','14096004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_14220008','14220008','http://snomed.info/sct','Nonvenomous insect bite of lip without infection (disorder)','14220008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_15034009','15034009','http://snomed.info/sct','Nonvenomous insect bite of breast with infection (disorder)','15034009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_17198008','17198008','http://snomed.info/sct','Nonvenomous insect bite of ear with infection (disorder)','17198008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_17384006','17384006','http://snomed.info/sct','Nonvenomous insect bite of toe with infection (disorder)','17384006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_19108007','19108007','http://snomed.info/sct','Nonvenomous insect bite of trunk with infection (disorder)','19108007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_211008009','211008009','http://snomed.info/sct','Insect bite, nonvenomous, of face (disorder)','211008009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_211009001','211009001','http://snomed.info/sct','Insect bite, nonvenomous, of neck (disorder)','211009001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_211010006','211010006','http://snomed.info/sct','Insect bite, nonvenomous, of scalp (disorder)','211010006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_211012003','211012003','http://snomed.info/sct','Insect bite, nonvenomous, of head, infected (disorder)','211012003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_211103003','211103003','http://snomed.info/sct','Insect bite, nonvenomous, of interscapular region (disorder)','211103003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_211104009','211104009','http://snomed.info/sct','Insect bite, nonvenomous, of chest wall (disorder)','211104009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_211105005','211105005','http://snomed.info/sct','Insect bite, nonvenomous, of breast (disorder)','211105005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_211106006','211106006','http://snomed.info/sct','Insect bite, nonvenomous, of abdominal wall (disorder)','211106006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_211107002','211107002','http://snomed.info/sct','Insect bite, nonvenomous, of back (disorder)','211107002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_211108007','211108007','http://snomed.info/sct','Insect bite, nonvenomous, of buttock (disorder)','211108007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_211109004','211109004','http://snomed.info/sct','Insect bite, nonvenomous, of anus (disorder)','211109004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_211110009','211110009','http://snomed.info/sct','Insect bite, nonvenomous, of flank (disorder)','211110009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_211111008','211111008','http://snomed.info/sct','Insect bite, nonvenomous, of groin (disorder)','211111008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_211112001','211112001','http://snomed.info/sct','Insect bite, nonvenomous, of perineum (disorder)','211112001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_211113006','211113006','http://snomed.info/sct','Insect bite, nonvenomous, of penis (disorder)','211113006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_211115004','211115004','http://snomed.info/sct','Insect bite, nonvenomous, of vulva (disorder)','211115004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_211116003','211116003','http://snomed.info/sct','Insect bite, nonvenomous, of vagina (disorder)','211116003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_211215005','211215005','http://snomed.info/sct','Insect bite, nonvenomous, of shoulder (disorder)','211215005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_211217002','211217002','http://snomed.info/sct','Insect bite, nonvenomous, of axilla (disorder)','211217002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_211218007','211218007','http://snomed.info/sct','Insect bite, nonvenomous, of upper arm (disorder)','211218007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_211220005','211220005','http://snomed.info/sct','Insect bite, nonvenomous, of shoulder and upper arm, infected (disorder)','211220005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_211272000','211272000','http://snomed.info/sct','Insect bite, nonvenomous, of elbow (disorder)','211272000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_211273005','211273005','http://snomed.info/sct','Insect bite, nonvenomous, of forearm (disorder)','211273005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_211274004','211274004','http://snomed.info/sct','Insect bite, nonvenomous, of wrist (disorder)','211274004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_211358006','211358006','http://snomed.info/sct','Insect bite, nonvenomous, of hip (disorder)','211358006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_211359003','211359003','http://snomed.info/sct','Insect bite, nonvenomous, of thigh (disorder)','211359003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_211360008','211360008','http://snomed.info/sct','Insect bite, nonvenomous, of knee (disorder)','211360008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_211361007','211361007','http://snomed.info/sct','Insect bite, nonvenomous, lower leg (disorder)','211361007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_211362000','211362000','http://snomed.info/sct','Insect bite, nonvenomous, of ankle (disorder)','211362000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_211364004','211364004','http://snomed.info/sct','Insect bite, nonvenomous, of lower limb, infected (disorder)','211364004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_211365003','211365003','http://snomed.info/sct','Insect bite, nonvenomous, of knee, infected (disorder)','211365003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_211421007','211421007','http://snomed.info/sct','Insect bite, nonvenomous, of toe (disorder)','211421007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_23455003','23455003','http://snomed.info/sct','Nonvenomous insect bite of hip without infection (disorder)','23455003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_238452008','238452008','http://snomed.info/sct','Insect bite granuloma (disorder)','238452008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_240100004','240100004','http://snomed.info/sct','Myopathy due to snake bite (disorder)','240100004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_241818005','241818005','http://snomed.info/sct','Poisoning due to bite of tick (disorder)','241818005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_25726008','25726008','http://snomed.info/sct','Nonvenomous insect bite of groin with infection (disorder)','25726008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_262550002','262550002','http://snomed.info/sct','Infected insect bite (disorder)','262550002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_2683000','2683000','http://snomed.info/sct','Nonvenomous insect bite of axilla without infection (disorder)','2683000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_269196004','269196004','http://snomed.info/sct','Insect bite, nonvenomous, of scrotum and testis (disorder)','269196004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_269197008','269197008','http://snomed.info/sct','Insect bite, nonvenomous, of scrotum and/or testis, infected (disorder)','269197008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_269205004','269205004','http://snomed.info/sct','Insect bite, nonvenomous, of foot (disorder)','269205004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_269206003','269206003','http://snomed.info/sct','Insect bite, nonvenomous, of foot and toe, infected (disorder)','269206003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_269211001','269211001','http://snomed.info/sct','Insect bite of eyelids and periocular area (disorder)','269211001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_27447009','27447009','http://snomed.info/sct','Nonvenomous insect bite of groin without infection (disorder)','27447009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_276433004','276433004','http://snomed.info/sct','Insect bite - wound (disorder)','276433004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_278487002','278487002','http://snomed.info/sct','Insect bite of eyelid (disorder)','278487002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_283321007','283321007','http://snomed.info/sct','Insect bite of head and neck (disorder)','283321007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_283322000','283322000','http://snomed.info/sct','Insect bite of head (disorder)','283322000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_283323005','283323005','http://snomed.info/sct','Insect bite of forehead (disorder)','283323005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_283324004','283324004','http://snomed.info/sct','Insect bite of eye region (disorder)','283324004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_283325003','283325003','http://snomed.info/sct','Insect bite of ear region (disorder)','283325003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_283326002','283326002','http://snomed.info/sct','Insect bite of nose (disorder)','283326002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_283327006','283327006','http://snomed.info/sct','Insect bite of cheek (disorder)','283327006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_283328001','283328001','http://snomed.info/sct','Insect bite of mouth (disorder)','283328001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_283329009','283329009','http://snomed.info/sct','Insect bite of throat (disorder)','283329009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_283330004','283330004','http://snomed.info/sct','Insect bite of upper limb (disorder)','283330004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_283331000','283331000','http://snomed.info/sct','Insect bite of hand (disorder)','283331000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_283332007','283332007','http://snomed.info/sct','Insect bite of dorsum of hand (disorder)','283332007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_283333002','283333002','http://snomed.info/sct','Insect bite of palm of hand (disorder)','283333002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_283334008','283334008','http://snomed.info/sct','Insect bite of finger (disorder)','283334008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_283335009','283335009','http://snomed.info/sct','Insect bite of thumb (disorder)','283335009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_283336005','283336005','http://snomed.info/sct','Insect bite of trunk (disorder)','283336005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_283337001','283337001','http://snomed.info/sct','Insect bite of pelvic region (disorder)','283337001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_283338006','283338006','http://snomed.info/sct','Insect bite of genitalia (disorder)','283338006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_283339003','283339003','http://snomed.info/sct','Insect bite of lower limb (disorder)','283339003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_283340001','283340001','http://snomed.info/sct','Insect bite of great toe (disorder)','283340001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_283341002','283341002','http://snomed.info/sct','Insect bite of dorsum of foot (disorder)','283341002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_283342009','283342009','http://snomed.info/sct','Insect bite of sole of foot (disorder)','283342009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_283343004','283343004','http://snomed.info/sct','Insect bite of heel (disorder)','283343004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_283344005','283344005','http://snomed.info/sct','Mosquito bite (disorder)','283344005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_283345006','283345006','http://snomed.info/sct','Fly bite (disorder)','283345006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_283346007','283346007','http://snomed.info/sct','Infected insect bite of head and neck (disorder)','283346007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_283347003','283347003','http://snomed.info/sct','Infected insect bite of upper limb (disorder)','283347003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_283348008','283348008','http://snomed.info/sct','Infected insect bite of dorsum of hand (disorder)','283348008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_283349000','283349000','http://snomed.info/sct','Infected insect bite of palm of hand (disorder)','283349000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_283350000','283350000','http://snomed.info/sct','Infected insect bite of thumb (disorder)','283350000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_283351001','283351001','http://snomed.info/sct','Infected insect bite of pelvic region (disorder)','283351001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_283352008','283352008','http://snomed.info/sct','Infected insect bite of genitalia (disorder)','283352008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_283353003','283353003','http://snomed.info/sct','Infected insect bite of dorsum of foot (disorder)','283353003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_283354009','283354009','http://snomed.info/sct','Infected insect bite of sole of foot (disorder)','283354009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_283837005','283837005','http://snomed.info/sct','Fish bite wound (disorder)','283837005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_283838000','283838000','http://snomed.info/sct','Reptile bite wound (disorder)','283838000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_283840005','283840005','http://snomed.info/sct','Snake bite - wound (disorder)','283840005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_287109001','287109001','http://snomed.info/sct','Insect bite to trunk - nonvenomous (disorder)','287109001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_287112003','287112003','http://snomed.info/sct','Insect bite to arm - nonvenomous (disorder)','287112003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_287115001','287115001','http://snomed.info/sct','Insect bite to hand - nonvenomous (disorder)','287115001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_287118004','287118004','http://snomed.info/sct','Insect bite to leg - nonvenomous (disorder)','287118004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_287126007','287126007','http://snomed.info/sct','Insect bite to cornea - nonvenomous (disorder)','287126007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_29757004','29757004','http://snomed.info/sct','Nonvenomous insect bite of foot without infection (disorder)','29757004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_3032005','3032005','http://snomed.info/sct','Nonvenomous insect bite of cheek without infection (disorder)','3032005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_30818003','30818003','http://snomed.info/sct','Nonvenomous insect bite of perineum with infection (disorder)','30818003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_33155001','33155001','http://snomed.info/sct','Nonvenomous insect bite of flank with infection (disorder)','33155001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_35057008','35057008','http://snomed.info/sct','Nonvenomous insect bite of penis with infection (disorder)','35057008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_37887002','37887002','http://snomed.info/sct','Nonvenomous insect bite of neck with infection (disorder)','37887002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_38189003','38189003','http://snomed.info/sct','Nonvenomous insect bite of ankle with infection (disorder)','38189003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_400023004','400023004','http://snomed.info/sct','Seal bite wound (disorder)','400023004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_40175007','40175007','http://snomed.info/sct','Allergic dermatitis caused by bite of Ctenocephalides felis (disorder)','40175007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_403148000','403148000','http://snomed.info/sct','Bullous insect bite reaction (disorder)','403148000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_403149008','403149008','http://snomed.info/sct','Spider bite wound (disorder)','403149008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_403162007','403162007','http://snomed.info/sct','Sea lice bite (disorder)','403162007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_409985002','409985002','http://snomed.info/sct','Arthropod bite wound (disorder)','409985002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_4124006','4124006','http://snomed.info/sct','Nonvenomous insect bite of vagina with infection (disorder)','4124006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_41958008','41958008','http://snomed.info/sct','Nonvenomous insect bite of back with infection (disorder)','41958008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_419884005','419884005','http://snomed.info/sct','Allergic reaction caused by flea bite (disorder)','419884005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_42032008','42032008','http://snomed.info/sct','Nonvenomous insect bite of abdominal wall with infection (disorder)','42032008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_42089007','42089007','http://snomed.info/sct','Nonvenomous insect bite of anus with infection (disorder)','42089007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_428471001','428471001','http://snomed.info/sct','Nonvenomous insect bite of multiple sites with infection (disorder)','428471001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_428509000','428509000','http://snomed.info/sct','Nonvenomous insect bite of multiple sites (disorder)','428509000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_428762009','428762009','http://snomed.info/sct','Infected insect bite of hand (disorder)','428762009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_429305003','429305003','http://snomed.info/sct','Nonvenomous insect bite (disorder)','429305003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_44352004','44352004','http://snomed.info/sct','Nonvenomous insect bite of hand with infection (disorder)','44352004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_443874006','443874006','http://snomed.info/sct','Infection of tick bite (disorder)','443874006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_446845005','446845005','http://snomed.info/sct','Nonvenomous insect bite of finger (disorder)','446845005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_446917003','446917003','http://snomed.info/sct','Nonvenomous snake bite wound of lower extremity (disorder)','446917003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_44921007','44921007','http://snomed.info/sct','Nonvenomous insect bite of ear without infection (disorder)','44921007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_449643001','449643001','http://snomed.info/sct','Nonvenomous insect bite of lower leg with infection (disorder)','449643001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_449720001','449720001','http://snomed.info/sct','Nonvenomous insect bite of lower limb without infection (disorder)','449720001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_449915007','449915007','http://snomed.info/sct','Nonvenomous insect bite of lower leg without infection (disorder)','449915007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_45915002','45915002','http://snomed.info/sct','Nonvenomous insect bite of upper arm with infection (disorder)','45915002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_47027001','47027001','http://snomed.info/sct','Nonvenomous insect bite of scrotum with infection (disorder)','47027001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_49976003','49976003','http://snomed.info/sct','Nonvenomous insect bite of back without infection (disorder)','49976003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_50124004','50124004','http://snomed.info/sct','Nonvenomous insect bite of buttock with infection (disorder)','50124004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_51882009','51882009','http://snomed.info/sct','Nonvenomous insect bite of interscapular region with infection (disorder)','51882009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_52705001','52705001','http://snomed.info/sct','Nonvenomous insect bite of finger with infection (disorder)','52705001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_53188002','53188002','http://snomed.info/sct','Nonvenomous insect bite of gum with infection (disorder)','53188002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_53706009','53706009','http://snomed.info/sct','Nonvenomous insect bite of vulva with infection (disorder)','53706009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_56892000','56892000','http://snomed.info/sct','Nonvenomous insect bite of chest wall with infection (disorder)','56892000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_59443003','59443003','http://snomed.info/sct','Nonvenomous insect bite of thigh with infection (disorder)','59443003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_60298004','60298004','http://snomed.info/sct','Nonvenomous insect bite of forearm with infection (disorder)','60298004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_60807005','60807005','http://snomed.info/sct','Nonvenomous insect bite of lip with infection (disorder)','60807005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_62591002','62591002','http://snomed.info/sct','Nonvenomous insect bite of abdominal wall without infection (disorder)','62591002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_67862004','67862004','http://snomed.info/sct','Nonvenomous insect bite of elbow with infection (disorder)','67862004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_67974004','67974004','http://snomed.info/sct','Nonvenomous insect bite of nose with infection (disorder)','67974004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_68765006','68765006','http://snomed.info/sct','Nonvenomous insect bite of ankle without infection (disorder)','68765006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_69743002','69743002','http://snomed.info/sct','Nonvenomous insect bite of hand without infection (disorder)','69743002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_70294003','70294003','http://snomed.info/sct','Nonvenomous insect bite of scalp with infection (disorder)','70294003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_71696000','71696000','http://snomed.info/sct','Nonvenomous insect bite of face without infection (disorder)','71696000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_71804007','71804007','http://snomed.info/sct','Nonvenomous insect bite of scapular region without infection (disorder)','71804007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_72498006','72498006','http://snomed.info/sct','Nonvenomous insect bite of breast without infection (disorder)','72498006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_73405008','73405008','http://snomed.info/sct','Nonvenomous insect bite of trunk without infection (disorder)','73405008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_76584003','76584003','http://snomed.info/sct','Nonvenomous insect bite of hip with infection (disorder)','76584003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_77874001','77874001','http://snomed.info/sct','Nonvenomous insect bite of shoulder with infection (disorder)','77874001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_789229008','789229008','http://snomed.info/sct','Infected wound of eyelid due to nonvenomous insect bite (disorder)','789229008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_789230003','789230003','http://snomed.info/sct','Infected wound of bilateral eyelids due to nonvenomous insect bite (disorder)','789230003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_801006','801006','http://snomed.info/sct','Nonvenomous insect bite of foot with infection (disorder)','801006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_80961000','80961000','http://snomed.info/sct','Nonvenomous insect bite of chest wall without infection (disorder)','80961000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_81769002','81769002','http://snomed.info/sct','Nonvenomous insect bite of testis with infection (disorder)','81769002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_82244004','82244004','http://snomed.info/sct','Nonvenomous insect bite of elbow without infection (disorder)','82244004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_8297008','8297008','http://snomed.info/sct','Nonvenomous insect bite of toe without infection (disorder)','8297008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_83364002','83364002','http://snomed.info/sct','Poisoning by sting AND/OR bite of fire ant (disorder)','83364002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_83587009','83587009','http://snomed.info/sct','Nonvenomous insect bite of cheek with infection (disorder)','83587009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_838335003','838335003','http://snomed.info/sct','Arthropod bite caused by Atrax (disorder)','838335003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_84070009','84070009','http://snomed.info/sct','Nonvenomous insect bite of axilla with infection (disorder)','84070009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_871920005','871920005','http://snomed.info/sct','Allergic reaction caused by insect bite (disorder)','871920005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_871926004','871926004','http://snomed.info/sct','Anaphylaxis caused by insect bite and/or insect sting (disorder)','871926004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_871927008','871927008','http://snomed.info/sct','Allergic reaction caused by insect bite and/or insect sting (disorder)','871927008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_874914008','874914008','http://snomed.info/sct','Nonvenomous insect bite of gum (disorder)','874914008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_874916005','874916005','http://snomed.info/sct','Nonvenomous insect bite of nose (disorder)','874916005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_874930000','874930000','http://snomed.info/sct','Nonvenomous insect bite of scrotum (disorder)','874930000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_89021008','89021008','http://snomed.info/sct','Nonvenomous insect bite without infection (disorder)','89021008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_8975004','8975004','http://snomed.info/sct','Nonvenomous insect bite of thigh without infection (disorder)','8975004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_91060006','91060006','http://snomed.info/sct','Nonvenomous insect bite of wrist with infection (disorder)','91060006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_91178003','91178003','http://snomed.info/sct','Allergic dermatitis caused by bite of Ctenocephalides canis (disorder)','91178003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_9377008','9377008','http://snomed.info/sct','Nonvenomous insect bite of forearm without infection (disorder)','9377008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1582_95898004','95898004','http://snomed.info/sct','Tick bite (disorder)','95898004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1581_10847381000119103','10847381000119103','http://snomed.info/sct','Open wound of left foot due to cat bite (disorder)','10847381000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1581_10953201000119100','10953201000119100','http://snomed.info/sct','Open wound of finger of left hand due to cat bite (disorder)','10953201000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1581_10953241000119103','10953241000119103','http://snomed.info/sct','Open wound of left index finger due to cat bite (disorder)','10953241000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1581_10953281000119108','10953281000119108','http://snomed.info/sct','Open wound of left little finger due to cat bite (disorder)','10953281000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1581_10953321000119103','10953321000119103','http://snomed.info/sct','Open wound of left middle finger due to cat bite (disorder)','10953321000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1581_10953361000119108','10953361000119108','http://snomed.info/sct','Open wound of left ring finger due to cat bite (disorder)','10953361000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1581_10953401000119104','10953401000119104','http://snomed.info/sct','Open wound of finger of right hand due to cat bite (disorder)','10953401000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1581_10953441000119102','10953441000119102','http://snomed.info/sct','Open wound of right index finger due to cat bite (disorder)','10953441000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1581_10953481000119107','10953481000119107','http://snomed.info/sct','Open wound of right little finger due to cat bite (disorder)','10953481000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1581_10953521000119107','10953521000119107','http://snomed.info/sct','Open wound of right middle finger due to cat bite (disorder)','10953521000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1581_10953561000119102','10953561000119102','http://snomed.info/sct','Open wound of right ring finger due to cat bite (disorder)','10953561000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1581_10953641000119100','10953641000119100','http://snomed.info/sct','Open wound of right thumb due to cat bite (disorder)','10953641000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1581_10953681000119105','10953681000119105','http://snomed.info/sct','Open wound of left thumb due to cat bite (disorder)','10953681000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1581_10953761000119109','10953761000119109','http://snomed.info/sct','Open wound of right forearm due to cat bite (disorder)','10953761000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1581_10953801000119101','10953801000119101','http://snomed.info/sct','Open wound of left forearm due to cat bite (disorder)','10953801000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1581_10953881000119109','10953881000119109','http://snomed.info/sct','Open wound of left hand due to cat bite (disorder)','10953881000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1581_10953921000119102','10953921000119102','http://snomed.info/sct','Open wound of right hand due to cat bite (disorder)','10953921000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1581_10954001000119108','10954001000119108','http://snomed.info/sct','Open wound of left wrist due to cat bite (disorder)','10954001000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1581_10954041000119105','10954041000119105','http://snomed.info/sct','Open wound of right wrist due to cat bite (disorder)','10954041000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1581_10954121000119103','10954121000119103','http://snomed.info/sct','Open wound of right upper arm due to cat bite (disorder)','10954121000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1581_10954161000119108','10954161000119108','http://snomed.info/sct','Open wound of left upper arm due to cat bite (disorder)','10954161000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1581_10969651000119106','10969651000119106','http://snomed.info/sct','Open wound of right ankle due to cat bite (disorder)','10969651000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1581_10969691000119101','10969691000119101','http://snomed.info/sct','Open wound of left ankle due to cat bite (disorder)','10969691000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1581_10970291000119101','10970291000119101','http://snomed.info/sct','Open wound of right foot due to cat bite (disorder)','10970291000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1581_10970611000119108','10970611000119108','http://snomed.info/sct','Open wound of right lower leg due to cat bite (disorder)','10970611000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1581_10970651000119109','10970651000119109','http://snomed.info/sct','Open wound of left lower leg due to cat bite (disorder)','10970651000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1581_186327003','186327003','http://snomed.info/sct','Pasteurella septic infection (cat or dog bite) (disorder)','186327003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1581_200153006','200153006','http://snomed.info/sct','Localized septic infection caused by Pasteurella multocida due to cat and/or dog bite (disorder)','200153006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1581_262554006','262554006','http://snomed.info/sct','Superficial mammalian bite wound (disorder)','262554006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1581_262569007','262569007','http://snomed.info/sct','Deep mammalian bite wound (disorder)','262569007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1581_283683002','283683002','http://snomed.info/sct','Mammal bite wound (disorder)','283683002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1581_283782004','283782004','http://snomed.info/sct','Cat bite - wound (disorder)','283782004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1581_283783009','283783009','http://snomed.info/sct','Hamster bite wound (disorder)','283783009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1581_283784003','283784003','http://snomed.info/sct','Horse bite wound (disorder)','283784003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1581_283785002','283785002','http://snomed.info/sct','Rabbit bite wound (disorder)','283785002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1581_283786001','283786001','http://snomed.info/sct','Rat bite - wound (disorder)','283786001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1581_283787005','283787005','http://snomed.info/sct','Monkey bite - wound (disorder)','283787005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1581_283788000','283788000','http://snomed.info/sct','Squirrel bite wound (disorder)','283788000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1581_716103008','716103008','http://snomed.info/sct','Open wound of hand due to cat bite (disorder)','716103008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1581_718509009','718509009','http://snomed.info/sct','Open wound of forearm due to cat bite (disorder)','718509009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1581_10905991000119106','10905991000119106','http://snomed.info/sct','Open wound of face due to cat bite (disorder)','10905991000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2310_Q20.3','Q20.3','http://hl7.org/fhir/sid/icd-10-cm','Discordant ventriculoarterial connection','Q203','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2310_Q20.5','Q20.5','http://hl7.org/fhir/sid/icd-10-cm','Discordant atrioventricular connection','Q205','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1342_409616009','409616009','http://snomed.info/sct','Castor bean poisoning (disorder)','409616009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1342_409617000','409617000','http://snomed.info/sct','Ricin poisoning (disorder)','409617000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1342_409618005','409618005','http://snomed.info/sct','Inhalational ricin poisoning (disorder)','409618005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1342_409620008','409620008','http://snomed.info/sct','Parenteral ricin poisoning (disorder)','409620008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1342_409621007','409621007','http://snomed.info/sct','Gastrointestinal ricin poisoning (disorder)','409621007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1463_1149093006','1149093006','http://snomed.info/sct','Pneumonia caused by vancomycin resistant Enterococcus (disorder)','1149093006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1463_1153534006','1153534006','http://snomed.info/sct','Sepsis caused by vancomycin resistant Enterococcus (disorder)','1153534006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1463_406575008','406575008','http://snomed.info/sct','Infection caused by vancomycin resistant Enterococcus (disorder)','406575008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1584_10847341000119108','10847341000119108','http://snomed.info/sct','Open wound of left foot due to animal bite (disorder)','10847341000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1584_10947731000119108','10947731000119108','http://snomed.info/sct','Open wound of finger of left hand due to animal bite (disorder)','10947731000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1584_10947771000119106','10947771000119106','http://snomed.info/sct','Open wound of left index finger due to animal bite (disorder)','10947771000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1584_10947851000119107','10947851000119107','http://snomed.info/sct','Open wound of left middle finger due to animal bite (disorder)','10947851000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1584_10947891000119102','10947891000119102','http://snomed.info/sct','Open wound of left ring finger due to animal bite (disorder)','10947891000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1584_10947931000119105','10947931000119105','http://snomed.info/sct','Open wound of finger of right hand due to animal bite (disorder)','10947931000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1584_10947971000119108','10947971000119108','http://snomed.info/sct','Open wound of right index finger due to animal bite (disorder)','10947971000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1584_10948051000119101','10948051000119101','http://snomed.info/sct','Open wound of right middle finger due to animal bite (disorder)','10948051000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1584_10948091000119106','10948091000119106','http://snomed.info/sct','Open wound of right ring finger due to animal bite (disorder)','10948091000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1584_10948311000119100','10948311000119100','http://snomed.info/sct','Open wound of right thumb due to animal bite (disorder)','10948311000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1584_10948351000119104','10948351000119104','http://snomed.info/sct','Open wound of left thumb due to animal bite (disorder)','10948351000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1584_10948671000119103','10948671000119103','http://snomed.info/sct','Open wound of left hand due to animal bite (disorder)','10948671000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1584_10948711000119104','10948711000119104','http://snomed.info/sct','Open wound of right hand due to animal bite (disorder)','10948711000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1584_10949871000119106','10949871000119106','http://snomed.info/sct','Open wound of left forearm due to animal bite (disorder)','10949871000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1584_10949911000119109','10949911000119109','http://snomed.info/sct','Open wound of right forearm due to animal bite (disorder)','10949911000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1584_10968811000119102','10968811000119102','http://snomed.info/sct','Open wound of toe of right foot due to animal bite (disorder)','10968811000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1584_10968851000119101','10968851000119101','http://snomed.info/sct','Open wound of toe of left foot due to animal bite (disorder)','10968851000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1584_10969891000119102','10969891000119102','http://snomed.info/sct','Open wound of right thigh due to animal bite (disorder)','10969891000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1584_10969931000119105','10969931000119105','http://snomed.info/sct','Open wound of left thigh due to animal bite (disorder)','10969931000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1584_10970171000119108','10970171000119108','http://snomed.info/sct','Open wound of right foot due to animal bite (disorder)','10970171000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1584_10970491000119102','10970491000119102','http://snomed.info/sct','Open wound of right lower leg due to animal bite (disorder)','10970491000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1584_10970531000119102','10970531000119102','http://snomed.info/sct','Open wound of left lower leg due to animal bite (disorder)','10970531000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1584_10970851000119105','10970851000119105','http://snomed.info/sct','Open wound of right knee due to animal bite (disorder)','10970851000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1584_10970891000119100','10970891000119100','http://snomed.info/sct','Open wound of left knee due to animal bite (disorder)','10970891000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1584_10981471000119104','10981471000119104','http://snomed.info/sct','Open wound of abdominal wall due to animal bite (disorder)','10981471000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1584_283800004','283800004','http://snomed.info/sct','Animal bite wound of neck (disorder)','283800004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1584_283801000','283801000','http://snomed.info/sct','Animal bite of throat (disorder)','283801000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1584_283802007','283802007','http://snomed.info/sct','Animal bite wound of upper limb (disorder)','283802007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1584_283803002','283803002','http://snomed.info/sct','Animal bite of shoulder (disorder)','283803002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1584_283804008','283804008','http://snomed.info/sct','Animal bite of axilla (disorder)','283804008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1584_283805009','283805009','http://snomed.info/sct','Animal bite of upper arm (disorder)','283805009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1584_283806005','283806005','http://snomed.info/sct','Animal bite of elbow (disorder)','283806005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1584_283807001','283807001','http://snomed.info/sct','Animal bite of forearm (disorder)','283807001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1584_283808006','283808006','http://snomed.info/sct','Animal bite of wrist (disorder)','283808006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1584_283809003','283809003','http://snomed.info/sct','Animal bite of hand (disorder)','283809003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1584_283810008','283810008','http://snomed.info/sct','Animal bite of dorsum of hand (disorder)','283810008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1584_283811007','283811007','http://snomed.info/sct','Animal bite of palm of hand (disorder)','283811007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1584_283812000','283812000','http://snomed.info/sct','Animal bite of finger (disorder)','283812000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1584_283813005','283813005','http://snomed.info/sct','Animal bite of thumb (disorder)','283813005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1584_283814004','283814004','http://snomed.info/sct','Animal bite wound of trunk (disorder)','283814004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1584_283815003','283815003','http://snomed.info/sct','Animal bite of back (disorder)','283815003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1584_283816002','283816002','http://snomed.info/sct','Animal bite of chest (disorder)','283816002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1584_283817006','283817006','http://snomed.info/sct','Animal bite of abdomen (disorder)','283817006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1584_283818001','283818001','http://snomed.info/sct','Animal bite of pelvic region (disorder)','283818001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1584_283819009','283819009','http://snomed.info/sct','Animal bite of perineum (disorder)','283819009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1584_283820003','283820003','http://snomed.info/sct','Animal bite of genitalia (disorder)','283820003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1584_283821004','283821004','http://snomed.info/sct','Animal bite of groin (disorder)','283821004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1584_283822006','283822006','http://snomed.info/sct','Animal bite wound of lower limb (disorder)','283822006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1584_283823001','283823001','http://snomed.info/sct','Animal bite of buttock (disorder)','283823001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1584_283824007','283824007','http://snomed.info/sct','Animal bite of hip (disorder)','283824007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1584_283825008','283825008','http://snomed.info/sct','Animal bite of thigh (disorder)','283825008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1584_283826009','283826009','http://snomed.info/sct','Animal bite of knee (disorder)','283826009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1584_283827000','283827000','http://snomed.info/sct','Animal bite of lower leg (disorder)','283827000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1584_283828005','283828005','http://snomed.info/sct','Animal bite of shin (disorder)','283828005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1584_283829002','283829002','http://snomed.info/sct','Animal bite of calf (disorder)','283829002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1584_283830007','283830007','http://snomed.info/sct','Animal bite of ankle (disorder)','283830007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1584_283831006','283831006','http://snomed.info/sct','Animal bite of foot (disorder)','283831006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1584_283832004','283832004','http://snomed.info/sct','Animal bite of toe (disorder)','283832004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1584_283833009','283833009','http://snomed.info/sct','Animal bite of great toe (disorder)','283833009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1584_283834003','283834003','http://snomed.info/sct','Animal bite of dorsum of foot (disorder)','283834003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1584_283835002','283835002','http://snomed.info/sct','Animal bite of sole of foot (disorder)','283835002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1584_283836001','283836001','http://snomed.info/sct','Animal bite of heel (disorder)','283836001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1584_399907009','399907009','http://snomed.info/sct','Animal bite wound (disorder)','399907009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1584_406560000','406560000','http://snomed.info/sct','Animal bite by potentially rabid animal (disorder)','406560000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1584_406561001','406561001','http://snomed.info/sct','Animal bite to human by potentially rabid animal (disorder)','406561001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1584_10905871000119100','10905871000119100','http://snomed.info/sct','Open wound of face due to animal bite (disorder)','10905871000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1584_283789008','283789008','http://snomed.info/sct','Animal bite wound of head and neck (disorder)','283789008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1584_283790004','283790004','http://snomed.info/sct','Animal bite wound of head (disorder)','283790004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1584_283791000','283791000','http://snomed.info/sct','Animal bite of scalp (disorder)','283791000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1584_283792007','283792007','http://snomed.info/sct','Animal bite of face (disorder)','283792007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1584_283793002','283793002','http://snomed.info/sct','Animal bite of forehead (disorder)','283793002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1584_283794008','283794008','http://snomed.info/sct','Animal bite of eye region (disorder)','283794008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1584_283795009','283795009','http://snomed.info/sct','Animal bite of ear region (disorder)','283795009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1584_283796005','283796005','http://snomed.info/sct','Animal bite of nose (disorder)','283796005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1584_283798006','283798006','http://snomed.info/sct','Animal bite of cheek (disorder)','283798006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1584_283799003','283799003','http://snomed.info/sct','Animal bite of mouth (disorder)','283799003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.78_373421000','373421000','http://snomed.info/sct','Diarrhea-associated hemolytic uremic syndrome (disorder)','373421000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.79_111835002','111835002','http://snomed.info/sct','Infection caused by Campylobacter fetus (disorder)','111835002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.79_1163143005','1163143005','http://snomed.info/sct','Colitis caused by Campylobacter (disorder)','1163143005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.79_1176987009','1176987009','http://snomed.info/sct','Periodontitis caused by Campylobacter (disorder)','1176987009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.79_18081009','18081009','http://snomed.info/sct','Enteric campylobacteriosis (disorder)','18081009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.79_446122002','446122002','http://snomed.info/sct','Intestinal infection caused by Campylobacter coli (disorder)','446122002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.79_447354007','447354007','http://snomed.info/sct','Intestinal infection caused by Campylobacter jejuni (disorder)','447354007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.79_86500004','86500004','http://snomed.info/sct','Campylobacteriosis (disorder)','86500004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2328_204306007','204306007','http://snomed.info/sct','Pentalogy of Fallot (disorder)','204306007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2328_253512000','253512000','http://snomed.info/sct','Tetralogy of Fallot with pulmonary stenosis (disorder)','253512000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2328_253513005','253513005','http://snomed.info/sct','Tetralogy of Fallot with pulmonary atresia (disorder)','253513005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2328_253514004','253514004','http://snomed.info/sct','Dextraposition of aorta in Fallot''s tetralogy (disorder)','253514004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2328_253515003','253515003','http://snomed.info/sct','Ventricular septal defect in Fallot''s tetralogy (disorder)','253515003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2328_399228007','399228007','http://snomed.info/sct','Tetralogy of Fallot with absent pulmonary valve (disorder)','399228007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2328_448007000','448007000','http://snomed.info/sct','Atrioventricular septal defect associated with tetralogy of Fallot (disorder)','448007000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2328_448155003','448155003','http://snomed.info/sct','Pulmonary atresia with ventricular septal defect of Fallot type (disorder)','448155003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2328_723336008','723336008','http://snomed.info/sct','Fallot complex with intellectual disability and growth delay syndrome (disorder)','723336008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2328_762433009','762433009','http://snomed.info/sct','Tetralogy of Fallot with pulmonary atresia co-occurrent with systemic-to-pulmonary collateral artery (disorder)','762433009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2328_766976003','766976003','http://snomed.info/sct','Pulmonary valve agenesis, tetralogy of Fallot, absence of ductus arteriosus syndrome (disorder)','766976003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2329_Q21.3','Q21.3','http://hl7.org/fhir/sid/icd-10-cm','Tetralogy of Fallot','Q213','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2326_253281003','253281003','http://snomed.info/sct','Double inlet ventricle (disorder)','253281003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2326_253282005','253282005','http://snomed.info/sct','Double inlet right ventricle (disorder)','253282005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2326_253283000','253283000','http://snomed.info/sct','Double inlet left ventricle (disorder)','253283000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2326_253284006','253284006','http://snomed.info/sct','Double inlet to ventricle of indeterminate morphology (disorder)','253284006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2326_253454000','253454000','http://snomed.info/sct','Abnormality of right atrioventricular valve in double inlet ventricle (disorder)','253454000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2326_253483002','253483002','http://snomed.info/sct','Abnormality of left atrioventricular valve in double inlet ventricle (disorder)','253483002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2326_253485009','253485009','http://snomed.info/sct','Imperforate left atrioventricular valve (disorder)','253485009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2326_253486005','253486005','http://snomed.info/sct','Left atrioventricular valve dysplasia (disorder)','253486005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2326_253489003','253489003','http://snomed.info/sct','Overriding left atrioventricular valve (disorder)','253489003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2326_253492004','253492004','http://snomed.info/sct','Straddling left atrioventricular valve (disorder)','253492004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2326_253493009','253493009','http://snomed.info/sct','Left atrioventricular valve leaflet abnormality (disorder)','253493009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2326_253494003','253494003','http://snomed.info/sct','Absent left atrioventricular valve leaflets (disorder)','253494003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2326_253495002','253495002','http://snomed.info/sct','Double orifice of left atrioventricular valve (disorder)','253495002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2326_253497005','253497005','http://snomed.info/sct','Left atrioventricular valve prolapse (disorder)','253497005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2326_253498000','253498000','http://snomed.info/sct','True cleft of left atrioventricular valve leaflet (disorder)','253498000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2326_253499008','253499008','http://snomed.info/sct','Accessory tissue on left atrioventricular valve leaflet (disorder)','253499008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2326_253500004','253500004','http://snomed.info/sct','Left atrioventricular valve leaflet dysplasia (disorder)','253500004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2326_253501000','253501000','http://snomed.info/sct','Abnormality of left atrioventricular valve chordae tendinae (disorder)','253501000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2326_253502007','253502007','http://snomed.info/sct','Left atrioventricular valve chordae too short (disorder)','253502007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2326_253503002','253503002','http://snomed.info/sct','Left atrioventricular valve chordae too long (disorder)','253503002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2326_253504008','253504008','http://snomed.info/sct','Left atrioventricular valve chordae to outlet septum (disorder)','253504008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2326_253505009','253505009','http://snomed.info/sct','Arcade abnormality of left atrioventricular valve chordae (disorder)','253505009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2326_445294008','445294008','http://snomed.info/sct','Common atrioventricular orifice in double inlet ventricle (disorder)','445294008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2326_445330003','445330003','http://snomed.info/sct','Right atrioventricular valve leaflets absent in double inlet ventricle (unguarded orifice) (disorder)','445330003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2326_446667008','446667008','http://snomed.info/sct','Two atrioventricular valves in double inlet ventricle (disorder)','446667008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2326_448947009','448947009','http://snomed.info/sct','Congenital abnormality of left atrioventricular valve in double inlet ventricle (disorder)','448947009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2326_449031001','449031001','http://snomed.info/sct','Congenital abnormality of right atrioventricular valve leaflet in double inlet ventricle (disorder)','449031001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2326_449032008','449032008','http://snomed.info/sct','Congenital abnormality of right atrioventricular valve papillary muscle in double inlet ventricle (disorder)','449032008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2326_449098005','449098005','http://snomed.info/sct','Congenital abnormality of left atrioventricular valve chordae tendinae in double inlet ventricle (disorder)','449098005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2326_449099002','449099002','http://snomed.info/sct','Left atrioventricular valve stenosis in double inlet ventricle (disorder)','449099002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2326_449111002','449111002','http://snomed.info/sct','Double orifice of right atrioventricular valve in double inlet ventricle (disorder)','449111002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2326_449315003','449315003','http://snomed.info/sct','Congenital abnormality of right atrioventricular valve chordae tendinae in double inlet ventricle (disorder)','449315003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2326_449316002','449316002','http://snomed.info/sct','Congenital abnormality of right atrioventricular valve in double inlet ventricle (disorder)','449316002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2326_45503006','45503006','http://snomed.info/sct','Common ventricle (disorder)','45503006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2326_460614005','460614005','http://snomed.info/sct','Dilatation of left atrioventricular (not morphologically mitral) valve in double inlet ventricle (disorder)','460614005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2326_871583003','871583003','http://snomed.info/sct','Congenital anomaly of left-sided atrioventricular valve in double inlet ventricle (disorder)','871583003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2326_871585005','871585005','http://snomed.info/sct','Congenital anomaly of right-sided atrioventricular valve in double inlet ventricle (disorder)','871585005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2326_871659004','871659004','http://snomed.info/sct','Double inlet to solitary ventricle of indeterminate morphology (disorder)','871659004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2327_Q20.4','Q20.4','http://hl7.org/fhir/sid/icd-10-cm','Double inlet ventricle','Q204','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.193_A20','A20','http://hl7.org/fhir/sid/icd-10-cm','Plague','A20','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.193_A20.0','A20.0','http://hl7.org/fhir/sid/icd-10-cm','Bubonic plague','A200','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.193_A20.1','A20.1','http://hl7.org/fhir/sid/icd-10-cm','Cellulocutaneous plague','A201','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.193_A20.2','A20.2','http://hl7.org/fhir/sid/icd-10-cm','Pneumonic plague','A202','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.193_A20.7','A20.7','http://hl7.org/fhir/sid/icd-10-cm','Septicemic plague','A207','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.193_A20.8','A20.8','http://hl7.org/fhir/sid/icd-10-cm','Other forms of plague','A208','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.193_A20.9','A20.9','http://hl7.org/fhir/sid/icd-10-cm','Plague, unspecified','A209','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.193_A20.3','A20.3','http://hl7.org/fhir/sid/icd-10-cm','Plague meningitis','A203','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.195_429586004','429586004','http://snomed.info/sct','Chlamydophila psittaci infection (disorder)','429586004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.195_56672005','56672005','http://snomed.info/sct','Ornithosis with complication (disorder)','56672005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.195_735958007','735958007','http://snomed.info/sct','Exanthem caused by Chlamydophila psittaci (disorder)','735958007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.195_75116005','75116005','http://snomed.info/sct','Ornithosis (disorder)','75116005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.195_81164001','81164001','http://snomed.info/sct','Ornithosis with pneumonia (disorder)','81164001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.196_A70','A70','http://hl7.org/fhir/sid/icd-10-cm','Chlamydia psittaci infections','A70','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.198_A82','A82','http://hl7.org/fhir/sid/icd-10-cm','Rabies','A82','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.198_A82.0','A82.0','http://hl7.org/fhir/sid/icd-10-cm','Sylvatic rabies','A820','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.198_A82.1','A82.1','http://hl7.org/fhir/sid/icd-10-cm','Urban rabies','A821','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.198_A82.9','A82.9','http://hl7.org/fhir/sid/icd-10-cm','Rabies, unspecified','A829','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2324_62067003','62067003','http://snomed.info/sct','Hypoplastic left heart syndrome (disorder)','62067003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2325_Q23.4','Q23.4','http://hl7.org/fhir/sid/icd-10-cm','Hypoplastic left heart syndrome','Q234','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1357_B17.2','B17.2','http://hl7.org/fhir/sid/icd-10-cm','Acute hepatitis E','B172','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2201_T60.3X1A','T60.3X1A','http://hl7.org/fhir/sid/icd-10-cm','Toxic effect of herbicides and fungicides, accidental (unintentional), initial encounter','T603X1A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2322_253298003','253298003','http://snomed.info/sct','Double outlet right ventricle with subaortic ventricular septal defect (disorder)','253298003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2322_253299006','253299006','http://snomed.info/sct','Double outlet right ventricle with noncommitted ventricular septal defect (disorder)','253299006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2322_253300003','253300003','http://snomed.info/sct','Double outlet right ventricle with doubly committed ventricular septal defect (disorder)','253300003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2322_447284002','447284002','http://snomed.info/sct','Double outlet right ventricle with intact ventricular septum (disorder)','447284002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2322_448516008','448516008','http://snomed.info/sct','Double outlet right ventricle with doubly committed ventricular septal defect and pulmonary stenosis (disorder)','448516008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2322_448794008','448794008','http://snomed.info/sct','Double outlet right ventricle with subpulmonary ventricular septal defect (disorder)','448794008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2322_7484005','7484005','http://snomed.info/sct','Double outlet right ventricle (disorder)','7484005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2322_762251008','762251008','http://snomed.info/sct','Double outlet right ventricle with subaortic or doubly committed ventricular septal defect without pulmonary stenosis - ventricular septal defect type (disorder)','762251008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2322_840507004','840507004','http://snomed.info/sct','Double outlet right ventricle with subaortic ventricular septal defect without pulmonary stenosis (disorder)','840507004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2322_871599009','871599009','http://snomed.info/sct','Double outlet right ventricle with subaortic or doubly committed ventricular septal defect and pulmonary stenosis Fallot type (disorder)','871599009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2322_871601006','871601006','http://snomed.info/sct','Double outlet right ventricle with subaortic ventricular septal defect and pulmonary stenosis Fallot type (disorder)','871601006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1356_235867002','235867002','http://snomed.info/sct','Acute hepatitis E (disorder)','235867002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1356_450880008','450880008','http://snomed.info/sct','Chronic hepatitis E (disorder)','450880008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1356_7111000119109','7111000119109','http://snomed.info/sct','Viral hepatitis type E (disorder)','7111000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2323_Q20.1','Q20.1','http://hl7.org/fhir/sid/icd-10-cm','Double outlet right ventricle','Q201','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2320_Q22.1','Q22.1','http://hl7.org/fhir/sid/icd-10-cm','Congenital pulmonary valve stenosis','Q221','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1471_111912001','111912001','http://snomed.info/sct','Acute amebic dysentery without abscess (disorder)','111912001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1471_1193802004','1193802004','http://snomed.info/sct','Inflammation of small intestine caused by Entamoeba histolytica (disorder)','1193802004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1471_1193803009','1193803009','http://snomed.info/sct','Inflammation of intestine caused by Entamoeba histolytica (disorder)','1193803009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1471_186116005','186116005','http://snomed.info/sct','Acute amebic dysentery (disorder)','186116005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1471_235747003','235747003','http://snomed.info/sct','Amebic colitis (disorder)','235747003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1471_235748008','235748008','http://snomed.info/sct','Fulminant amebic colitis (disorder)','235748008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1471_237105008','237105008','http://snomed.info/sct','Vulval amebiasis (disorder)','237105008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1471_238449000','238449000','http://snomed.info/sct','Amebiasis of skin (disorder)','238449000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1471_240363009','240363009','http://snomed.info/sct','Toxic megacolon due to amebic infection (disorder)','240363009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1471_240364003','240364003','http://snomed.info/sct','Amebic perianal ulceration (disorder)','240364003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1471_240663001','240663001','http://snomed.info/sct','Penile amebiasis (disorder)','240663001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1471_240664007','240664007','http://snomed.info/sct','Amebic abscess of skin (disorder)','240664007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1471_26826005','26826005','http://snomed.info/sct','Amebic appendicitis (disorder)','26826005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1471_27908001','27908001','http://snomed.info/sct','Amebic brain abscess (disorder)','27908001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1471_387754006','387754006','http://snomed.info/sct','Amebic dysentery (disorder)','387754006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1471_388759003','388759003','http://snomed.info/sct','Infection caused by Entamoeba histolytica (disorder)','388759003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1471_39224005','39224005','http://snomed.info/sct','Acute amebiasis (disorder)','39224005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1471_399924003','399924003','http://snomed.info/sct','Perianal amebiasis (disorder)','399924003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1471_400086005','400086005','http://snomed.info/sct','Amebic ulcer of skin (disorder)','400086005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1471_50227004','50227004','http://snomed.info/sct','Amebic balanitis (disorder)','50227004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1471_55023005','55023005','http://snomed.info/sct','Amebic nondysenteric colitis (disorder)','55023005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1471_65095005','65095005','http://snomed.info/sct','Amebic lung abscess (disorder)','65095005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1471_721807009','721807009','http://snomed.info/sct','Abscess caused by Entamoeba histolytica (disorder)','721807009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1471_721808004','721808004','http://snomed.info/sct','Infection of intestine caused by Entamoeba histolytica (disorder)','721808004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1471_733153004','733153004','http://snomed.info/sct','Enteritis caused by Entamoeba histolytica (disorder)','733153004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1471_733172004','733172004','http://snomed.info/sct','Ameboma of large intestine caused by Entamoeba histolytica (disorder)','733172004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1471_75119003','75119003','http://snomed.info/sct','Amebic liver abscess (disorder)','75119003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1471_866122003','866122003','http://snomed.info/sct','Infection of large intestine caused by Entamoeba histolytica (disorder)','866122003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1471_8776008','8776008','http://snomed.info/sct','Amebic cystitis (disorder)','8776008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1471_95897009','95897009','http://snomed.info/sct','Amebic hepatitis (disorder)','95897009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2321_472845002','472845002','http://snomed.info/sct','Stenosis of fetal pulmonary valve (disorder)','472845002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1473_A06.0','A06.0','http://hl7.org/fhir/sid/icd-10-cm','Acute amebic dysentery','A060','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1473_A06.2','A06.2','http://hl7.org/fhir/sid/icd-10-cm','Amebic nondysenteric colitis','A062','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1473_A06.3','A06.3','http://hl7.org/fhir/sid/icd-10-cm','Ameboma of intestine','A063','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1473_A06.4','A06.4','http://hl7.org/fhir/sid/icd-10-cm','Amebic liver abscess','A064','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1473_A06.5','A06.5','http://hl7.org/fhir/sid/icd-10-cm','Amebic lung abscess','A065','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1473_A06.6','A06.6','http://hl7.org/fhir/sid/icd-10-cm','Amebic brain abscess','A066','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1473_A06.7','A06.7','http://hl7.org/fhir/sid/icd-10-cm','Cutaneous amebiasis','A067','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1473_A06.81','A06.81','http://hl7.org/fhir/sid/icd-10-cm','Amebic cystitis','A0681','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1473_A06.82','A06.82','http://hl7.org/fhir/sid/icd-10-cm','Other amebic genitourinary infections','A0682','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1473_A06.89','A06.89','http://hl7.org/fhir/sid/icd-10-cm','Other amebic infections','A0689','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1473_A06.9','A06.9','http://hl7.org/fhir/sid/icd-10-cm','Amebiasis, unspecified','A069','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2339_Q22.4','Q22.4','http://hl7.org/fhir/sid/icd-10-cm','Congenital tricuspid stenosis','Q224','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2337_Q22.4','Q22.4','http://hl7.org/fhir/sid/icd-10-cm','Congenital tricuspid stenosis','Q224','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1008_T40.0X1A','T40.0X1A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by opium, accidental (unintentional), initial encounter','T400X1A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1008_T40.0X2A','T40.0X2A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by opium, intentional self-harm, initial encounter','T400X2A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1008_T40.0X3A','T40.0X3A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by opium, assault, initial encounter','T400X3A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1008_T40.0X4A','T40.0X4A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by opium, undetermined, initial encounter','T400X4A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1008_T40.1X1A','T40.1X1A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by heroin, accidental (unintentional), initial encounter','T401X1A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1008_T40.1X2A','T40.1X2A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by heroin, intentional self-harm, initial encounter','T401X2A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1008_T40.1X3A','T40.1X3A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by heroin, assault, initial encounter','T401X3A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1008_T40.1X4A','T40.1X4A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by heroin, undetermined, initial encounter','T401X4A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1008_T40.2X1A','T40.2X1A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by other opioids, accidental (unintentional), initial encounter','T402X1A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1008_T40.2X2A','T40.2X2A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by other opioids, intentional self-harm, initial encounter','T402X2A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1008_T40.2X3A','T40.2X3A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by other opioids, assault, initial encounter','T402X3A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1008_T40.2X4A','T40.2X4A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by other opioids, undetermined, initial encounter','T402X4A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1008_T40.3X1A','T40.3X1A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by methadone, accidental (unintentional), initial encounter','T403X1A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1008_T40.3X2A','T40.3X2A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by methadone, intentional self-harm, initial encounter','T403X2A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1008_T40.3X3A','T40.3X3A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by methadone, assault, initial encounter','T403X3A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1008_T40.3X4A','T40.3X4A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by methadone, undetermined, initial encounter','T403X4A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1008_T40.601A','T40.601A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by unspecified narcotics, accidental (unintentional), initial encounter','T40601A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1008_T40.602A','T40.602A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by unspecified narcotics, intentional self-harm, initial encounter','T40602A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1008_T40.603A','T40.603A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by unspecified narcotics, assault, initial encounter','T40603A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1008_T40.604A','T40.604A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by unspecified narcotics, undetermined, initial encounter','T40604A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1008_T40.691A','T40.691A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by other narcotics, accidental (unintentional), initial encounter','T40691A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1008_T40.692A','T40.692A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by other narcotics, intentional self-harm, initial encounter','T40692A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1008_T40.693A','T40.693A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by other narcotics, assault, initial encounter','T40693A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1008_T40.694A','T40.694A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by other narcotics, undetermined, initial encounter','T40694A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2338_36233006','36233006','http://snomed.info/sct','Congenital stenosis of tricuspid valve (disorder)','36233006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2338_204354004','204354004','http://snomed.info/sct','Congenital tricuspid atresia and stenosis (disorder)','204354004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2338_448074008','448074008','http://snomed.info/sct','Ebstein''s anomaly with functional tricuspid stenosis (disorder)','448074008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.190_14168008','14168008','http://snomed.info/sct','Rabies (disorder)','14168008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.190_240461007','240461007','http://snomed.info/sct','Incubating rabies (disorder)','240461007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.190_240462000','240462000','http://snomed.info/sct','Rabies prodrome (disorder)','240462000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.190_240463005','240463005','http://snomed.info/sct','Acute neurological rabies (disorder)','240463005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.190_240464004','240464004','http://snomed.info/sct','Rabies coma (disorder)','240464004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.190_240465003','240465003','http://snomed.info/sct','Rabies - recovery phase (disorder)','240465003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.190_266196000','266196000','http://snomed.info/sct','Rabies - hydrophobia (disorder)','266196000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.190_398446008','398446008','http://snomed.info/sct','Human rabies (disorder)','398446008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.190_415035006','415035006','http://snomed.info/sct','Paralytic rabies (disorder)','415035006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.190_59671002','59671002','http://snomed.info/sct','Derriengue (disorder)','59671002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.190_87330002','87330002','http://snomed.info/sct','Disease caused by Lyssavirus (disorder)','87330002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.192_186287003','186287003','http://snomed.info/sct','Ambulatory plague (disorder)','186287003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.192_240384004','240384004','http://snomed.info/sct','Gastroenteric plague (disorder)','240384004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.192_35339003','35339003','http://snomed.info/sct','Primary pneumonic plague (disorder)','35339003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.192_38976008','38976008','http://snomed.info/sct','Pneumonic plague (disorder)','38976008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.192_43484003','43484003','http://snomed.info/sct','Cellulocutaneous plague (disorder)','43484003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.192_50797007','50797007','http://snomed.info/sct','Bubonic plague (disorder)','50797007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.192_58750007','58750007','http://snomed.info/sct','Plague (disorder)','58750007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.192_67525007','67525007','http://snomed.info/sct','Secondary pneumonic plague (disorder)','67525007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.192_9012003','9012003','http://snomed.info/sct','Septicemic plague (disorder)','9012003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.192_186284005','186284005','http://snomed.info/sct','Plague meningitis (disorder)','186284005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.182_B38','B38','http://hl7.org/fhir/sid/icd-10-cm','Coccidioidomycosis','B38','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.182_B38.0','B38.0','http://hl7.org/fhir/sid/icd-10-cm','Acute pulmonary coccidioidomycosis','B380','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.182_B38.1','B38.1','http://hl7.org/fhir/sid/icd-10-cm','Chronic pulmonary coccidioidomycosis','B381','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.182_B38.2','B38.2','http://hl7.org/fhir/sid/icd-10-cm','Pulmonary coccidioidomycosis, unspecified','B382','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.182_B38.3','B38.3','http://hl7.org/fhir/sid/icd-10-cm','Cutaneous coccidioidomycosis','B383','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.182_B38.7','B38.7','http://hl7.org/fhir/sid/icd-10-cm','Disseminated coccidioidomycosis','B387','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.182_B38.8','B38.8','http://hl7.org/fhir/sid/icd-10-cm','Other forms of coccidioidomycosis','B388','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.182_B38.81','B38.81','http://hl7.org/fhir/sid/icd-10-cm','Prostatic coccidioidomycosis','B3881','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.182_B38.89','B38.89','http://hl7.org/fhir/sid/icd-10-cm','Other forms of coccidioidomycosis','B3889','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.182_B38.9','B38.9','http://hl7.org/fhir/sid/icd-10-cm','Coccidioidomycosis, unspecified','B389','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.182_B38.4','B38.4','http://hl7.org/fhir/sid/icd-10-cm','Coccidioidomycosis meningitis','B384','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1481_A08.11','A08.11','http://hl7.org/fhir/sid/icd-10-cm','Acute gastroenteropathy due to Norwalk agent','A0811','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.184_A23','A23','http://hl7.org/fhir/sid/icd-10-cm','Brucellosis','A23','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.184_A23.0','A23.0','http://hl7.org/fhir/sid/icd-10-cm','Brucellosis due to Brucella melitensis','A230','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.184_A23.1','A23.1','http://hl7.org/fhir/sid/icd-10-cm','Brucellosis due to Brucella abortus','A231','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.184_A23.2','A23.2','http://hl7.org/fhir/sid/icd-10-cm','Brucellosis due to Brucella suis','A232','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.184_A23.3','A23.3','http://hl7.org/fhir/sid/icd-10-cm','Brucellosis due to Brucella canis','A233','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.184_A23.8','A23.8','http://hl7.org/fhir/sid/icd-10-cm','Other brucellosis','A238','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.184_A23.9','A23.9','http://hl7.org/fhir/sid/icd-10-cm','Brucellosis, unspecified','A239','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1480_24789006','24789006','http://snomed.info/sct','Viral gastroenteritis caused by Norwalk-like agent (disorder)','24789006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1480_445152004','445152004','http://snomed.info/sct','Inflammation of intestine caused by Norovirus (disorder)','445152004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1480_721763002','721763002','http://snomed.info/sct','Infection caused by Norovirus (disorder)','721763002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.185_1177063000','1177063000','http://snomed.info/sct','Spondylitis caused by Brucella suis (disorder)','1177063000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.185_1177065007','1177065007','http://snomed.info/sct','Spondylitis caused by Brucella canis (disorder)','1177065007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.185_1177066008','1177066008','http://snomed.info/sct','Spondylitis caused by Brucella melitensis (disorder)','1177066008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.185_1177068009','1177068009','http://snomed.info/sct','Spondylitis caused by Brucella abortus (disorder)','1177068009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.185_202698007','202698007','http://snomed.info/sct','Brucella spondylitis (disorder)','202698007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.185_402127008','402127008','http://snomed.info/sct','Brucellosis of skin (disorder)','402127008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.185_406564009','406564009','http://snomed.info/sct','Brucella infection of the central nervous system (disorder)','406564009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.185_413716003','413716003','http://snomed.info/sct','Brucellosis uveitis (disorder)','413716003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.185_427795000','427795000','http://snomed.info/sct','Infection caused by Brucella abortus (disorder)','427795000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.185_427999003','427999003','http://snomed.info/sct','Infection caused by Brucella melitensis (disorder)','427999003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.185_428174001','428174001','http://snomed.info/sct','Infection caused by Brucella canis (disorder)','428174001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.185_428508008','428508008','http://snomed.info/sct','Abortion due to Brucella abortus (disorder)','428508008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.185_428592003','428592003','http://snomed.info/sct','Infection caused by Brucella ovis (disorder)','428592003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.185_429600003','429600003','http://snomed.info/sct','Infection caused by Brucella suis (disorder)','429600003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.185_75702008','75702008','http://snomed.info/sct','Brucellosis (disorder)','75702008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.187_20927009','20927009','http://snomed.info/sct','Dengue hemorrhagic fever (disorder)','20927009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.187_38362002','38362002','http://snomed.info/sct','Dengue (disorder)','38362002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.187_409671005','409671005','http://snomed.info/sct','Dengue shock syndrome (disorder)','409671005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.187_409676000','409676000','http://snomed.info/sct','Dengue hemorrhagic fever, grade I (disorder)','409676000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.187_409677009','409677009','http://snomed.info/sct','Dengue hemorrhagic fever, grade II (disorder)','409677009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.187_409678004','409678004','http://snomed.info/sct','Dengue hemorrhagic fever, grade III (disorder)','409678004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.187_409679007','409679007','http://snomed.info/sct','Dengue hemorrhagic fever, grade IV (disorder)','409679007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.187_722862003','722862003','http://snomed.info/sct','Dengue without warning signs (disorder)','722862003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.187_722863008','722863008','http://snomed.info/sct','Dengue with warning signs (disorder)','722863008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.187_866057003','866057003','http://snomed.info/sct','Myelitis caused by Dengue virus (disorder)','866057003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.187_1163101003','1163101003','http://snomed.info/sct','Encephalitis caused by Dengue virus (disorder)','1163101003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.188_A90','A90','http://hl7.org/fhir/sid/icd-10-cm','Dengue fever [classical dengue]','A90','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.188_A91','A91','http://hl7.org/fhir/sid/icd-10-cm','Dengue hemorrhagic fever','A91','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1124_1017214008','1017214008','http://snomed.info/sct','Viremia caused by severe acute respiratory syndrome coronavirus 2 (disorder)','1017214008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1124_1119302008','1119302008','http://snomed.info/sct','Acute disease caused by severe acute respiratory syndrome coronavirus 2 (disorder)','1119302008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1124_119731000146105','119731000146105','http://snomed.info/sct','Cardiomyopathy due to disease caused by severe acute respiratory syndrome coronavirus 2 (disorder)','119731000146105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1124_119741000146102','119741000146102','http://snomed.info/sct','Conjunctivitis due to disease caused by severe acute respiratory syndrome coronavirus 2 (disorder)','119741000146102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1124_119751000146104','119751000146104','http://snomed.info/sct','Fever caused by severe acute respiratory syndrome coronavirus 2 (disorder)','119751000146104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1124_119981000146107','119981000146107','http://snomed.info/sct','Dyspnea caused by severe acute respiratory syndrome coronavirus 2 (disorder)','119981000146107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1124_1240521000000100','1240521000000100','http://snomed.info/sct','Otitis media due to disease caused by severe acute respiratory syndrome coronavirus 2 (disorder)','1240521000000100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1124_1240531000000103','1240531000000103','http://snomed.info/sct','Myocarditis due to disease caused by severe acute respiratory syndrome coronavirus 2 (disorder)','1240531000000103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1124_1240541000000107','1240541000000107','http://snomed.info/sct','Infection of upper respiratory tract caused by severe acute respiratory syndrome coronavirus 2 (disorder)','1240541000000107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1124_1240561000000108','1240561000000108','http://snomed.info/sct','Encephalopathy due to disease caused by severe acute respiratory syndrome coronavirus 2 (disorder)','1240561000000108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1124_138389411000119105','138389411000119105','http://snomed.info/sct','Acute bronchitis caused by severe acute respiratory syndrome coronavirus 2 (disorder)','138389411000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1124_189486241000119100','189486241000119100','http://snomed.info/sct','Asymptomatic severe acute respiratory syndrome coronavirus 2 infection (finding)','189486241000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1124_840539006','840539006','http://snomed.info/sct','Disease caused by severe acute respiratory syndrome coronavirus 2 (disorder)','840539006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1124_866151004','866151004','http://snomed.info/sct','Lymphocytopenia due to severe acute respiratory syndrome coronavirus 2 (disorder)','866151004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1124_866152006','866152006','http://snomed.info/sct','Thrombocytopenia due to severe acute respiratory syndrome coronavirus 2 (disorder)','866152006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1124_870588003','870588003','http://snomed.info/sct','Sepsis due to disease caused by severe acute respiratory syndrome coronavirus 2 (disorder)','870588003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1124_870589006','870589006','http://snomed.info/sct','Acute kidney injury due to disease caused by severe acute respiratory syndrome coronavirus 2 (disorder)','870589006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1124_870590002','870590002','http://snomed.info/sct','Acute hypoxemic respiratory failure due to disease caused by severe acute respiratory syndrome coronavirus 2 (disorder)','870590002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1124_870591003','870591003','http://snomed.info/sct','Rhabdomyolysis due to disease caused by severe acute respiratory syndrome coronavirus 2 (disorder)','870591003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1124_880529761000119102','880529761000119102','http://snomed.info/sct','Infection of lower respiratory tract caused by severe acute respiratory syndrome coronavirus 2 (disorder)','880529761000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1124_882784691000119100','882784691000119100','http://snomed.info/sct','Pneumonia caused by severe acute respiratory syndrome coronavirus 2 (disorder)','882784691000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1124_1217296006','1217296006','http://snomed.info/sct','Disease caused by severe acute respiratory syndrome coronavirus 2 following administration of vaccine product against severe acute respiratory syndrome coronavirus 2 (disorder)','1217296006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1124_674814021000119106','674814021000119106','http://snomed.info/sct','Acute respiratory distress syndrome due to disease caused by severe acute respiratory syndrome coronavirus 2 (disorder)','674814021000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1245_B40','B40','http://hl7.org/fhir/sid/icd-10-cm','Blastomycosis','B40','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1245_B40.0','B40.0','http://hl7.org/fhir/sid/icd-10-cm','Acute pulmonary blastomycosis','B400','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1245_B40.1','B40.1','http://hl7.org/fhir/sid/icd-10-cm','Chronic pulmonary blastomycosis','B401','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1245_B40.2','B40.2','http://hl7.org/fhir/sid/icd-10-cm','Pulmonary blastomycosis, unspecified','B402','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1245_B40.3','B40.3','http://hl7.org/fhir/sid/icd-10-cm','Cutaneous blastomycosis','B403','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1245_B40.7','B40.7','http://hl7.org/fhir/sid/icd-10-cm','Disseminated blastomycosis','B407','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1245_B40.8','B40.8','http://hl7.org/fhir/sid/icd-10-cm','Other forms of blastomycosis','B408','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1245_B40.89','B40.89','http://hl7.org/fhir/sid/icd-10-cm','Other forms of blastomycosis','B4089','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1245_B40.9','B40.9','http://hl7.org/fhir/sid/icd-10-cm','Blastomycosis, unspecified','B409','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1245_B40.81','B40.81','http://hl7.org/fhir/sid/icd-10-cm','Blastomycotic meningoencephalitis','B4081','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1487_1163524004','1163524004','http://snomed.info/sct','Food-borne intoxication caused by Clostridium difficile (disorder)','1163524004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1487_1172958005','1172958005','http://snomed.info/sct','Intestinal infection caused by Clostridioides difficile (disorder)','1172958005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1487_1172959002','1172959002','http://snomed.info/sct','Extraintestinal infection caused by Clostridioides difficile (disorder)','1172959002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1487_186431008','186431008','http://snomed.info/sct','Infection caused by Clostridioides difficile (disorder)','186431008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1487_404907009','404907009','http://snomed.info/sct','Toxic megacolon due to Clostridium difficile infection (disorder)','404907009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1487_423590009','423590009','http://snomed.info/sct','Clostridium difficile colitis (disorder)','423590009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1487_5891000119102','5891000119102','http://snomed.info/sct','Clostridium difficile diarrhea (disorder)','5891000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1487_789685005','789685005','http://snomed.info/sct','Recurrent infection caused by Clostridioides difficile (disorder)','789685005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2335_Q26.2','Q26.2','http://hl7.org/fhir/sid/icd-10-cm','Total anomalous pulmonary venous connection','Q262','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1123_J12.82','J12.82','http://hl7.org/fhir/sid/icd-10-cm','Pneumonia due to coronavirus disease 2019','J1282','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1123_U07.1','U07.1','http://hl7.org/fhir/sid/icd-10-cm','COVID-19','U071','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1123_U07.2','U07.2','http://hl7.org/fhir/sid/icd-10-cm','COVID-19, virus not identified','U072','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1244_1193651003','1193651003','http://snomed.info/sct','Inflammation of intestine caused by Blastomyces dermatitidis (disorder)','1193651003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1244_1193652005','1193652005','http://snomed.info/sct','Inflammation of small intestine caused by Blastomyces dermatitidis (disorder)','1193652005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1244_187065008','187065008','http://snomed.info/sct','Cutaneous blastomycosis (disorder)','187065008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1244_187066009','187066009','http://snomed.info/sct','Primary pulmonary blastomycosis (disorder)','187066009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1244_187067000','187067000','http://snomed.info/sct','Disseminated blastomycosis (disorder)','187067000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1244_187068005','187068005','http://snomed.info/sct','Blastomycosis liver (disorder)','187068005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1244_187069002','187069002','http://snomed.info/sct','Acute pulmonary blastomycosis (disorder)','187069002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1244_191950004','191950004','http://snomed.info/sct','Infection caused by Blastomyces dermatitidis (disorder)','191950004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1244_194931003','194931003','http://snomed.info/sct','Endocarditis - blastomycosis (disorder)','194931003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1244_197965008','197965008','http://snomed.info/sct','Blastomycotic prostatitis (disorder)','197965008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1244_233616001','233616001','http://snomed.info/sct','Pulmonary blastomycosis (disorder)','233616001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1244_238440001','238440001','http://snomed.info/sct','Primary cutaneous blastomycosis (disorder)','238440001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1244_240747003','240747003','http://snomed.info/sct','Chronic pulmonary blastomycosis (disorder)','240747003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1244_240748008','240748008','http://snomed.info/sct','Disseminated cutaneous blastomycosis (disorder)','240748008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1244_406562008','406562008','http://snomed.info/sct','Blastomyces infection of central nervous system (disorder)','406562008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1244_418068003','418068003','http://snomed.info/sct','Urogenital blastomycosis (disorder)','418068003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1244_418675003','418675003','http://snomed.info/sct','Ocular blastomycosis (disorder)','418675003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1244_69996000','69996000','http://snomed.info/sct','Blastomycosis (disorder)','69996000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1244_840445001','840445001','http://snomed.info/sct','Dacryoadenitis caused by Blastomyces (disorder)','840445001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1244_1084741000119103','1084741000119103','http://snomed.info/sct','Meningoencephalitis due to Blastomyces dermatitidis (disorder)','1084741000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2336_253455004','253455004','http://snomed.info/sct','Right atrioventricular valve atresia (disorder)','253455004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2336_253456003','253456003','http://snomed.info/sct','Imperforate right atrioventricular valve (disorder)','253456003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2336_63042009','63042009','http://snomed.info/sct','Congenital atresia of tricuspid valve (disorder)','63042009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2336_871655005','871655005','http://snomed.info/sct','Tricuspid atresia with absent right atrioventricular connection (disorder)','871655005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2336_204354004','204354004','http://snomed.info/sct','Congenital tricuspid atresia and stenosis (disorder)','204354004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2333_Q21.20','Q21.20','http://hl7.org/fhir/sid/icd-10-cm','Atrioventricular septal defect, unspecified as to partial or complete','Q2120','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2333_Q21.21','Q21.21','http://hl7.org/fhir/sid/icd-10-cm','Partial atrioventricular septal defect','Q2121','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2333_Q21.22','Q21.22','http://hl7.org/fhir/sid/icd-10-cm','Transitional atrioventricular septal defect','Q2122','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2333_Q21.23','Q21.23','http://hl7.org/fhir/sid/icd-10-cm','Complete atrioventricular septal defect','Q2123','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1488_A04.7','A04.7','http://hl7.org/fhir/sid/icd-10-cm','Enterocolitis due to Clostridium difficile','A047','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1488_A04.71','A04.71','http://hl7.org/fhir/sid/icd-10-cm','Enterocolitis due to Clostridium difficile, recurrent','A0471','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1488_A04.72','A04.72','http://hl7.org/fhir/sid/icd-10-cm','Enterocolitis due to Clostridium difficile, not specified as recurrent','A0472','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2334_111323005','111323005','http://snomed.info/sct','Total anomalous pulmonary venous return (disorder)','111323005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2334_204456001','204456001','http://snomed.info/sct','Subdiaphragmatic total anomalous pulmonary venous return (disorder)','204456001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2334_204457005','204457005','http://snomed.info/sct','Supradiaphragmatic total anomalous pulmonary venous return (disorder)','204457005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2334_286331000119109','286331000119109','http://snomed.info/sct','Total anomalous pulmonary venous connection to coronary sinus (disorder)','286331000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2334_286341000119100','286341000119100','http://snomed.info/sct','Total anomalous pulmonary venous connection to hepatic vein (disorder)','286341000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2334_286351000119103','286351000119103','http://snomed.info/sct','Total anomalous pulmonary venous connection to right atrium (disorder)','286351000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2334_286361000119101','286361000119101','http://snomed.info/sct','Total anomalous pulmonary venous connection to superior vena cava (disorder)','286361000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2334_447832002','447832002','http://snomed.info/sct','Total anomalous pulmonary venous connection of supracardiac type (disorder)','447832002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2334_447914003','447914003','http://snomed.info/sct','Total anomalous pulmonary venous connection of intracardiac type (disorder)','447914003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2334_448599000','448599000','http://snomed.info/sct','Total anomalous pulmonary venous connection of infracardiac type (disorder)','448599000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2334_448727008','448727008','http://snomed.info/sct','Total anomalous pulmonary venous connections of mixed type (disorder)','448727008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2331_Q20.0','Q20.0','http://hl7.org/fhir/sid/icd-10-cm','Common arterial trunk','Q200','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2332_1237074000','1237074000','http://snomed.info/sct','Congenital atrioventricular septal defect (disorder)','1237074000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2332_15459006','15459006','http://snomed.info/sct','Endocardial cushion defect (disorder)','15459006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2332_204330009','204330009','http://snomed.info/sct','Common atrioventricular-type ventricular septal defect (disorder)','204330009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2332_253373002','253373002','http://snomed.info/sct','Atrioventricular septal defect - isolated atrial component (disorder)','253373002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2332_253374008','253374008','http://snomed.info/sct','Congenital abnormality of atrioventricular valves in atrioventricular septal defect (disorder)','253374008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2332_253414002','253414002','http://snomed.info/sct','Atrioventricular septal defect and common atrioventricular junction (disorder)','253414002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2332_253415001','253415001','http://snomed.info/sct','Atrioventricular septal defect - isolated ventricular component (disorder)','253415001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2332_253416000','253416000','http://snomed.info/sct','Atrioventricular septal defect: atrial and ventricular components (disorder)','253416000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2332_253417009','253417009','http://snomed.info/sct','Atrioventricular septal defect - ventricular component (disorder)','253417009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2332_253418004','253418004','http://snomed.info/sct','Atrioventricular septal defect - ventricular component under superior bridging leaflet (disorder)','253418004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2332_253419007','253419007','http://snomed.info/sct','Atrioventricular septal defect with ventricular component under superior bridging leaflet with chords at crest ventricular septum (disorder)','253419007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2332_253420001','253420001','http://snomed.info/sct','Atrioventricular septal defect with ventricular component under superior bridging leaflet with chords to papillary muscle on right ventricular side septum (disorder)','253420001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2332_253421002','253421002','http://snomed.info/sct','Atrioventricular septal defect with ventricular component under free floating superior bridging leaflet and chords to papillary muscle at right ventricular free wall (disorder)','253421002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2332_253422009','253422009','http://snomed.info/sct','Atrioventricular septal defect - ventricular component under inferior bridging leaflet (disorder)','253422009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2332_253428008','253428008','http://snomed.info/sct','Abnormality of common atrioventricular valve in atrioventricular septal defect (disorder)','253428008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2332_253429000','253429000','http://snomed.info/sct','Atresia of common atrioventricular valve (disorder)','253429000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2332_253430005','253430005','http://snomed.info/sct','Imperforate common atrioventricular valve (disorder)','253430005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2332_253431009','253431009','http://snomed.info/sct','Hypoplasia of common atrioventricular valve (disorder)','253431009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2332_253432002','253432002','http://snomed.info/sct','Dysplasia of common atrioventricular valve (disorder)','253432002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2332_253434001','253434001','http://snomed.info/sct','Common atrioventricular valve limited to one ventricle (disorder)','253434001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2332_253437008','253437008','http://snomed.info/sct','Common atrioventricular valve leaflet abnormality (disorder)','253437008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2332_253438003','253438003','http://snomed.info/sct','Common atrioventricular valve prolapse (disorder)','253438003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2332_253439006','253439006','http://snomed.info/sct','True cleft of common atrioventricular valve leaflet (disorder)','253439006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2332_253440008','253440008','http://snomed.info/sct','Accessory tissue on common atrioventricular valve leaflet (disorder)','253440008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2332_253442000','253442000','http://snomed.info/sct','Triple orifice of left ventricular component of common atrioventricular valve (disorder)','253442000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2332_253443005','253443005','http://snomed.info/sct','Ebstein''s anomaly of common atrioventricular valve (disorder)','253443005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2332_253444004','253444004','http://snomed.info/sct','Abnormality of common atrioventricular valve chordae tendinae (disorder)','253444004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2332_253445003','253445003','http://snomed.info/sct','Common atrioventricular valve chordae too short (disorder)','253445003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2332_253446002','253446002','http://snomed.info/sct','Common atrioventricular valve chordae too long (disorder)','253446002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2332_253447006','253447006','http://snomed.info/sct','Common atrioventricular valve chordae to outlet septum (disorder)','253447006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2332_253448001','253448001','http://snomed.info/sct','Arcade abnormality of common atrioventricular valve chordae (disorder)','253448001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2332_253449009','253449009','http://snomed.info/sct','Abnormality of common atrioventricular valve papillary muscle (disorder)','253449009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2332_253452001','253452001','http://snomed.info/sct','Fused common atrioventricular valve papillary muscle (disorder)','253452001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2332_253453006','253453006','http://snomed.info/sct','Hypoplastic common atrioventricular valve papillary muscle (disorder)','253453006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2332_360481003','360481003','http://snomed.info/sct','Common atrioventricular canal (disorder)','360481003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2332_444961009','444961009','http://snomed.info/sct','Atrioventricular septal defect with common atrioventricular orifice (disorder)','444961009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2332_445002005','445002005','http://snomed.info/sct','Atrioventricular septal defect with separate atrioventricular orifices (disorder)','445002005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2332_445264002','445264002','http://snomed.info/sct','Atrioventricular septal defect with ventricular imbalance consisting of dominant left ventricle and hypoplastic right ventricle (disorder)','445264002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2332_445299003','445299003','http://snomed.info/sct','Atrioventricular septal defect with ventricular imbalance consisting of dominant right ventricle and hypoplastic left ventricle (disorder)','445299003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2332_445334007','445334007','http://snomed.info/sct','Atrioventricular septal defect with additional muscular ventricular septal defect (disorder)','445334007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2332_447779007','447779007','http://snomed.info/sct','Trifoliate left atrioventricular valve (disorder)','447779007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2332_448026008','448026008','http://snomed.info/sct','Left atrioventricular valve bifoliate with fused left sided superior and inferior bridging leaflet (disorder)','448026008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2332_448118003','448118003','http://snomed.info/sct','Atrioventricular septal defect with atrial and ventricular components and separate atrioventricular valves (disorder)','448118003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2332_448119006','448119006','http://snomed.info/sct','Atrioventricular septal defect with atrioventricular valve regurgitation (disorder)','448119006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2332_448182006','448182006','http://snomed.info/sct','Atrioventricular septal defect with ventricular component and interchordal shunting under inferior bridging leaflet (disorder)','448182006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2332_448183001','448183001','http://snomed.info/sct','Atrioventricular septal defect with ventricular component and interchordal shunting under superior bridging leaflet (disorder)','448183001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2332_448184007','448184007','http://snomed.info/sct','Atrioventricular septal defect with ventricular component and shunting under connecting tongue with separate orifices (disorder)','448184007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2332_448331000','448331000','http://snomed.info/sct','Atrioventricular septal defect with restrictive ventricular component (disorder)','448331000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2332_448626007','448626007','http://snomed.info/sct','Gelatinous atrioventricular valve leaflet in atrioventricular septal defect (disorder)','448626007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2332_448777006','448777006','http://snomed.info/sct','Noncoapting atrioventricular valve leaflet in atrioventricular septal defect (disorder)','448777006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2332_448822006','448822006','http://snomed.info/sct','Deficiency of atrioventricular valve leaflet in atrioventricular septal defect (disorder)','448822006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2332_448836001','448836001','http://snomed.info/sct','Thickened atrioventricular valve leaflet in atrioventricular septal defect (disorder)','448836001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2332_448919005','448919005','http://snomed.info/sct','Atrioventricular septal defect with ventricular component under superior bridging leaflet without chordal attachment to ventricular septal crest (disorder)','448919005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2332_449008001','449008001','http://snomed.info/sct','Flail atrioventricular valve leaflet in atrioventricular septal defect (disorder)','449008001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2332_449011000','449011000','http://snomed.info/sct','Fenestration of atrioventricular valve leaflet in atrioventricular septal defect (disorder)','449011000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2332_449189009','449189009','http://snomed.info/sct','Mass associated with atrioventricular valve leaflet in atrioventricular septal defect (disorder)','449189009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2332_449379004','449379004','http://snomed.info/sct','Atrioventricular septal defect with ventricular component under inferior bridging leaflet with chords to crest ventricular septum (disorder)','449379004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2332_449382009','449382009','http://snomed.info/sct','Congenital abnormality of atrioventricular valve leaflet in atrioventricular septal defect (disorder)','449382009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2332_449383004','449383004','http://snomed.info/sct','Congenital abnormality of atrioventricular valve papillary muscle in atrioventricular septal defect (disorder)','449383004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2332_449388008','449388008','http://snomed.info/sct','Abnormality of atrioventricular valve leaflet in atrioventricular septal defect (disorder)','449388008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2332_449456004','449456004','http://snomed.info/sct','Atrioventricular septal defect with atrioventricular valve regurgitation through left septal commissure (disorder)','449456004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2332_449457008','449457008','http://snomed.info/sct','Atrioventricular septal defect with atrioventricular valve regurgitation through left superior bridging leaflet lateral mural commissure (disorder)','449457008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2332_449459006','449459006','http://snomed.info/sct','Atrioventricular septal defect with atrioventricular valve regurgitation through left inferior bridging leaflet lateral mural commissure (disorder)','449459006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2332_449490008','449490008','http://snomed.info/sct','Atrioventricular septal defect with atrioventricular valve regurgitation through right septal commissure (disorder)','449490008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2332_449537006','449537006','http://snomed.info/sct','Atrioventricular septal defect with atrioventricular valve regurgitation through right anterosuperior inferior mural commissure (disorder)','449537006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2332_449538001','449538001','http://snomed.info/sct','Atrioventricular septal defect with atrioventricular valve regurgitation through right anterosuperior superior bridging leaflet commissure (disorder)','449538001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2332_449539009','449539009','http://snomed.info/sct','Atrioventricular septal defect with atrioventricular valve regurgitation through right inferior bridging leaflet inferior mural commissure (disorder)','449539009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2332_60732002','60732002','http://snomed.info/sct','Atrial septal defect with endocardial cushion defect, partial type (disorder)','60732002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2332_718216009','718216009','http://snomed.info/sct','Partial defect of atrioventricular canal (disorder)','718216009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2332_763066009','763066009','http://snomed.info/sct','Atrioventricular septal defect, blepharophimosis, radial and anal defect syndrome (disorder)','763066009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2332_840497008','840497008','http://snomed.info/sct','Atrioventricular septal defect, atrial and ventricular components with common atrioventricular valve with unbalanced commitment of valve to left ventricle (disorder)','840497008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2332_840517009','840517009','http://snomed.info/sct','Atrioventricular septal defect, atrial and ventricular components with common atrioventricular valve with unbalanced commitment of valve to right ventricle (disorder)','840517009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2332_871625003','871625003','http://snomed.info/sct','Intermediate atrioventricular septal defect with atrial and ventricular components and separate atrioventricular valves (disorder)','871625003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2332_871630004','871630004','http://snomed.info/sct','Atrioventricular septal defect with ventricular imbalance (disorder)','871630004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2332_871643004','871643004','http://snomed.info/sct','Atrioventricular septal defect with balanced ventricles (disorder)','871643004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1243_A04.6','A04.6','http://hl7.org/fhir/sid/icd-10-cm','Enteritis due to Yersinia enterocolitica','A046','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1243_A28.2','A28.2','http://hl7.org/fhir/sid/icd-10-cm','Extraintestinal yersiniosis','A282','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1242_1163121002','1163121002','http://snomed.info/sct','Colitis caused by Yersinia enterocolitica (disorder)','1163121002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1242_1177017006','1177017006','http://snomed.info/sct','Arthritis due to and following enteritis caused by Yersinia enterocolitica (disorder)','1177017006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1242_186329000','186329000','http://snomed.info/sct','Extraintestinal yersiniosis (disorder)','186329000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1242_240334006','240334006','http://snomed.info/sct','Yersinia enterocolitica food poisoning (disorder)','240334006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1242_240360007','240360007','http://snomed.info/sct','Erythema nodosum due to yersiniosis (disorder)','240360007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1242_402970009','402970009','http://snomed.info/sct','Erythema nodosum due to Yersinia enterocolitica (disorder)','402970009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1242_711167005','711167005','http://snomed.info/sct','Enteritis caused by Yersinia enterocolitica (disorder)','711167005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1242_80960004','80960004','http://snomed.info/sct','Infection caused by Yersinia enterocolitica (disorder)','80960004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1242_83436008','83436008','http://snomed.info/sct','Yersiniosis (disorder)','83436008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2330_111319002','111319002','http://snomed.info/sct','Truncus arteriosus, Edwards'' type IV (disorder)','111319002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2330_447988007','447988007','http://snomed.info/sct','Common arterial trunk with pulmonary arteries arising from trunk and unobstructed aortic arch (disorder)','447988007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2330_448120000','448120000','http://snomed.info/sct','Common arterial trunk with crossed over pulmonary arteries (disorder)','448120000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2330_448747000','448747000','http://snomed.info/sct','Common arterial trunk with pulmonary origin from truncal valve sinus (disorder)','448747000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2330_448809003','448809003','http://snomed.info/sct','Common arterial trunk with obstruction of aortic arch (disorder)','448809003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2330_448887003','448887003','http://snomed.info/sct','Common arterial trunk with isolated pulmonary artery (disorder)','448887003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2330_460619000','460619000','http://snomed.info/sct','Abscess of wall of truncus arteriosus (disorder)','460619000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2330_60106004','60106004','http://snomed.info/sct','Common arterial trunk and separate origin of pulmonary arteries (disorder)','60106004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2330_61959006','61959006','http://snomed.info/sct','Common truncus arteriosus (disorder)','61959006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2330_73699003','73699003','http://snomed.info/sct','Common arterial trunk and common origin of pulmonary arteries (disorder)','73699003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2330_762252001','762252001','http://snomed.info/sct','Common arterial trunk with aortic dominance (disorder)','762252001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2330_85081000','85081000','http://snomed.info/sct','Common arterial trunk and widely separate origin of pulmonary arteries (disorder)','85081000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2330_871647003','871647003','http://snomed.info/sct','Common arterial trunk with pulmonary dominance (disorder)','871647003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2330_890209003','890209003','http://snomed.info/sct','Acquired stenosis of common arterial trunk following procedure (disorder)','890209003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2330_762253006','762253006','http://snomed.info/sct','Common arterial trunk with pulmonary dominance co-occurrent with interrupted aortic arch (disorder)','762253006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2330_871650000','871650000','http://snomed.info/sct','Common arterial trunk with pulmonary dominance and aortic coarctation (disorder)','871650000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2108_D74.8','D74.8','http://hl7.org/fhir/sid/icd-10-cm','Other methemoglobinemias','D748','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2108_D74.9','D74.9','http://hl7.org/fhir/sid/icd-10-cm','Methemoglobinemia, unspecified','D749','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1259_127601000119103','127601000119103','http://snomed.info/sct','Disseminated Acanthamoeba infection (disorder)','127601000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1259_49649001','49649001','http://snomed.info/sct','Infection caused by Acanthamoeba (disorder)','49649001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1259_51817006','51817006','http://snomed.info/sct','Infection caused by Acanthamoeba castellani (disorder)','51817006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1259_711644007','711644007','http://snomed.info/sct','Endophthalmitis caused by Acanthamoeba (disorder)','711644007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1259_1089811000119106','1089811000119106','http://snomed.info/sct','Meningoencephalitis caused by Acanthamoeba (disorder)','1089811000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2106_127037003','127037003','http://snomed.info/sct','Toxic methemoglobinemia with cyanosis (disorder)','127037003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2106_131171006','131171006','http://snomed.info/sct','Methemoglobin above reference range (finding)','131171006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2106_191389000','191389000','http://snomed.info/sct','Idiopathic methemoglobinemia (disorder)','191389000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2106_191390009','191390009','http://snomed.info/sct','Drug-induced methemoglobinemia (disorder)','191390009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2106_295315008','295315008','http://snomed.info/sct','Acquired methemoglobinemia (disorder)','295315008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2106_38959009','38959009','http://snomed.info/sct','Methemoglobinemia (disorder)','38959009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2106_406593009','406593009','http://snomed.info/sct','Methemoglobinemia due to nitrate poisoning (disorder)','406593009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2106_57020009','57020009','http://snomed.info/sct','Stokvis'' disease (disorder)','57020009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.98_111817006','111817006','http://snomed.info/sct','Infection caused by Shigella (disorder)','111817006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.98_1163120001','1163120001','http://snomed.info/sct','Colitis caused by Shigella sonnei (disorder)','1163120001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.98_1163122009','1163122009','http://snomed.info/sct','Colitis caused by Shigella flexneri (disorder)','1163122009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.98_1163123004','1163123004','http://snomed.info/sct','Colitis caused by Shigella boydii (disorder)','1163123004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.98_1163124005','1163124005','http://snomed.info/sct','Colitis caused by Shigella dysenteriae (disorder)','1163124005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.98_1163126007','1163126007','http://snomed.info/sct','Colitis caused by Shigella (disorder)','1163126007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.98_1177061003','1177061003','http://snomed.info/sct','Spondylitis due to shigellosis (disorder)','1177061003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.98_1193741007','1193741007','http://snomed.info/sct','Inflammation of small intestine caused by Shigella boydii (disorder)','1193741007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.98_1193742000','1193742000','http://snomed.info/sct','Inflammation of intestine caused by Shigella boydii (disorder)','1193742000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.98_1193743005','1193743005','http://snomed.info/sct','Inflammation of small intestine caused by Shigella dysenteriae (disorder)','1193743005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.98_1193744004','1193744004','http://snomed.info/sct','Inflammation of intestine caused by Shigella dysenteriae (disorder)','1193744004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.98_1193745003','1193745003','http://snomed.info/sct','Inflammation of small intestine caused by Shigella flexneri (disorder)','1193745003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.98_1193746002','1193746002','http://snomed.info/sct','Inflammation of intestine caused by Shigella flexneri (disorder)','1193746002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.98_1193747006','1193747006','http://snomed.info/sct','Inflammation of small intestine caused by Shigella sonnei (disorder)','1193747006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.98_1193748001','1193748001','http://snomed.info/sct','Inflammation of intestine caused by Shigella sonnei (disorder)','1193748001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.98_1231379009','1231379009','http://snomed.info/sct','Inflammation of small intestine caused by Shigella (disorder)','1231379009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.98_1231380007','1231380007','http://snomed.info/sct','Inflammation of intestine caused by Shigella (disorder)','1231380007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.98_186105003','186105003','http://snomed.info/sct','Shigella boydii (group C) (disorder)','186105003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.98_34335000','34335000','http://snomed.info/sct','Infection caused by Group B Shigella (disorder)','34335000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.98_36188001','36188001','http://snomed.info/sct','Shigellosis (disorder)','36188001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.98_55760004','55760004','http://snomed.info/sct','Infection caused by Group C Shigella (disorder)','55760004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.98_66301008','66301008','http://snomed.info/sct','Infection caused by Group A Shigella (disorder)','66301008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.98_69794009','69794009','http://snomed.info/sct','Infection caused by Group D Shigella (disorder)','69794009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2107_D74.0','D74.0','http://hl7.org/fhir/sid/icd-10-cm','Congenital methemoglobinemia','D740','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2107_D74.8','D74.8','http://hl7.org/fhir/sid/icd-10-cm','Other methemoglobinemias','D748','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2107_D74.9','D74.9','http://hl7.org/fhir/sid/icd-10-cm','Methemoglobinemia, unspecified','D749','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2349_459581000124103','459581000124103','http://snomed.info/sct','Imaging of lung consistent with tuberculosis (finding)','459581000124103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.99_A03','A03','http://hl7.org/fhir/sid/icd-10-cm','Shigellosis','A03','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.99_A03.0','A03.0','http://hl7.org/fhir/sid/icd-10-cm','Shigellosis due to Shigella dysenteriae','A030','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.99_A03.1','A03.1','http://hl7.org/fhir/sid/icd-10-cm','Shigellosis due to Shigella flexneri','A031','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.99_A03.2','A03.2','http://hl7.org/fhir/sid/icd-10-cm','Shigellosis due to Shigella boydii','A032','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.99_A03.3','A03.3','http://hl7.org/fhir/sid/icd-10-cm','Shigellosis due to Shigella sonnei','A033','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.99_A03.8','A03.8','http://hl7.org/fhir/sid/icd-10-cm','Other shigellosis','A038','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.99_A03.9','A03.9','http://hl7.org/fhir/sid/icd-10-cm','Shigellosis, unspecified','A039','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.99_A04.2','A04.2','http://hl7.org/fhir/sid/icd-10-cm','Enteroinvasive Escherichia coli infection','A042','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.92_M31.10','M31.10','http://hl7.org/fhir/sid/icd-10-cm','Thrombotic microangiopathy, unspecified','M3110','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.92_M31.19','M31.19','http://hl7.org/fhir/sid/icd-10-cm','Other thrombotic microangiopathy','M3119','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.94_B15','B15','http://hl7.org/fhir/sid/icd-10-cm','Acute hepatitis A','B15','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.94_B15.0','B15.0','http://hl7.org/fhir/sid/icd-10-cm','Hepatitis A with hepatic coma','B150','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.94_B15.9','B15.9','http://hl7.org/fhir/sid/icd-10-cm','Hepatitis A without hepatic coma','B159','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.95_111879004','111879004','http://snomed.info/sct','Viral hepatitis A without hepatic coma (disorder)','111879004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.95_16060001','16060001','http://snomed.info/sct','Hepatic coma due to viral hepatitis A (disorder)','16060001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.95_18917003','18917003','http://snomed.info/sct','Acute fulminating type A viral hepatitis (disorder)','18917003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.95_206373002','206373002','http://snomed.info/sct','Congenital hepatitis A infection (disorder)','206373002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.95_25102003','25102003','http://snomed.info/sct','Acute type A viral hepatitis (disorder)','25102003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.95_40468003','40468003','http://snomed.info/sct','Viral hepatitis, type A (disorder)','40468003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.95_424758008','424758008','http://snomed.info/sct','Viral hepatitis A without hepatic coma, without hepatitis delta (disorder)','424758008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.95_43634002','43634002','http://snomed.info/sct','Relapsing type A viral hepatitis (disorder)','43634002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.95_79031007','79031007','http://snomed.info/sct','Anicteric type A viral hepatitis (disorder)','79031007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.181_1090331000119100','1090331000119100','http://snomed.info/sct','Prostatic coccidioidomycosis (disorder)','1090331000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.181_1163138003','1163138003','http://snomed.info/sct','Infection of joint caused by Coccidioides (disorder)','1163138003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.181_1163139006','1163139006','http://snomed.info/sct','Infection of bone caused by Coccidioides (disorder)','1163139006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.181_184431000119108','184431000119108','http://snomed.info/sct','Acute pneumonia due to coccidioidomycosis (disorder)','184431000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.181_187027001','187027001','http://snomed.info/sct','Acute pulmonary coccidioidomycosis (disorder)','187027001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.181_195904005','195904005','http://snomed.info/sct','Pneumonia with coccidioidomycosis (disorder)','195904005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.181_23247008','23247008','http://snomed.info/sct','Primary extrapulmonary coccidioidomycosis (disorder)','23247008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.181_233615002','233615002','http://snomed.info/sct','Chronic pulmonary coccidioidomycosis (disorder)','233615002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.181_240727006','240727006','http://snomed.info/sct','Cutaneous coccidioidomycosis (disorder)','240727006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.181_240728001','240728001','http://snomed.info/sct','Subcutaneous coccidioidomycosis (disorder)','240728001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.181_240729009','240729009','http://snomed.info/sct','Coccidiomycosis liver (disorder)','240729009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.181_3071000119108','3071000119108','http://snomed.info/sct','Acute coccidioidomycosis (disorder)','3071000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.181_403110005','403110005','http://snomed.info/sct','Disseminated cutaneous coccidioidomycosis (disorder)','403110005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.181_406567002','406567002','http://snomed.info/sct','Coccidioides infection of the central nervous system (disorder)','406567002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.181_41030002','41030002','http://snomed.info/sct','Coccidioidomycosis with erythema multiforme (disorder)','41030002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.181_417018008','417018008','http://snomed.info/sct','Pulmonary coccidioidomycosis (disorder)','417018008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.181_417405005','417405005','http://snomed.info/sct','Chorioretinitis with coccidioidmycosis (disorder)','417405005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.181_417688002','417688002','http://snomed.info/sct','Chronic progressive coccidioidal pneumonia (disorder)','417688002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.181_442543009','442543009','http://snomed.info/sct','Infection caused by Coccidioides immitis (disorder)','442543009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.181_445880000','445880000','http://snomed.info/sct','Progressive coccidioidomycosis (disorder)','445880000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.181_60826002','60826002','http://snomed.info/sct','Coccidioidomycosis (disorder)','60826002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.181_65696007','65696007','http://snomed.info/sct','Coccidioidal granuloma (disorder)','65696007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.181_707772007','707772007','http://snomed.info/sct','Pulmonary nodule following infection by Coccidioides (disorder)','707772007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.181_707836006','707836006','http://snomed.info/sct','Pulmonary cavity following infection by Coccidioides (disorder)','707836006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.181_708025003','708025003','http://snomed.info/sct','Pyopneumothorax following infection by Coccidioides (disorder)','708025003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.181_72463008','72463008','http://snomed.info/sct','Chancriform syndrome (disorder)','72463008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.181_78223000','78223000','http://snomed.info/sct','Erythema nodosum due to coccidioidomycosis (disorder)','78223000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.181_79949009','79949009','http://snomed.info/sct','Primary cutaneous coccidioidomycosis (disorder)','79949009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.181_85055004','85055004','http://snomed.info/sct','Disseminated coccidioidomycosis (disorder)','85055004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.181_866061009','866061009','http://snomed.info/sct','Myelitis caused by Coccidioides (disorder)','866061009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.181_88036000','88036000','http://snomed.info/sct','Primary pulmonary coccidioidomycosis (disorder)','88036000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.181_422337001','422337001','http://snomed.info/sct','Coccidioidomycosis with acquired immunodeficiency syndrome (disorder)','422337001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.181_46303000','46303000','http://snomed.info/sct','Coccidioidal meningitis (disorder)','46303000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.172_16541001','16541001','http://snomed.info/sct','Yellow fever (disorder)','16541001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.172_197342009','197342009','http://snomed.info/sct','Hepatitis in yellow fever (disorder)','197342009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.172_42100005','42100005','http://snomed.info/sct','Jungle yellow fever (disorder)','42100005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.172_74166005','74166005','http://snomed.info/sct','Urban yellow fever (disorder)','74166005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.293_M10.10','M10.10','http://hl7.org/fhir/sid/icd-10-cm','Lead-induced gout, unspecified site','M1010','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.293_M10.111','M10.111','http://hl7.org/fhir/sid/icd-10-cm','Lead-induced gout, right shoulder','M10111','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.293_M10.112','M10.112','http://hl7.org/fhir/sid/icd-10-cm','Lead-induced gout, left shoulder','M10112','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.293_M10.119','M10.119','http://hl7.org/fhir/sid/icd-10-cm','Lead-induced gout, unspecified shoulder','M10119','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.293_M10.121','M10.121','http://hl7.org/fhir/sid/icd-10-cm','Lead-induced gout, right elbow','M10121','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.293_M10.122','M10.122','http://hl7.org/fhir/sid/icd-10-cm','Lead-induced gout, left elbow','M10122','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.293_M10.129','M10.129','http://hl7.org/fhir/sid/icd-10-cm','Lead-induced gout, unspecified elbow','M10129','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.293_M10.131','M10.131','http://hl7.org/fhir/sid/icd-10-cm','Lead-induced gout, right wrist','M10131','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.293_M10.132','M10.132','http://hl7.org/fhir/sid/icd-10-cm','Lead-induced gout, left wrist','M10132','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.293_M10.139','M10.139','http://hl7.org/fhir/sid/icd-10-cm','Lead-induced gout, unspecified wrist','M10139','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.293_M10.141','M10.141','http://hl7.org/fhir/sid/icd-10-cm','Lead-induced gout, right hand','M10141','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.293_M10.142','M10.142','http://hl7.org/fhir/sid/icd-10-cm','Lead-induced gout, left hand','M10142','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.293_M10.149','M10.149','http://hl7.org/fhir/sid/icd-10-cm','Lead-induced gout, unspecified hand','M10149','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.293_M10.151','M10.151','http://hl7.org/fhir/sid/icd-10-cm','Lead-induced gout, right hip','M10151','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.293_M10.152','M10.152','http://hl7.org/fhir/sid/icd-10-cm','Lead-induced gout, left hip','M10152','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.293_M10.159','M10.159','http://hl7.org/fhir/sid/icd-10-cm','Lead-induced gout, unspecified hip','M10159','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.293_M10.161','M10.161','http://hl7.org/fhir/sid/icd-10-cm','Lead-induced gout, right knee','M10161','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.293_M10.162','M10.162','http://hl7.org/fhir/sid/icd-10-cm','Lead-induced gout, left knee','M10162','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.293_M10.169','M10.169','http://hl7.org/fhir/sid/icd-10-cm','Lead-induced gout, unspecified knee','M10169','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.293_M10.171','M10.171','http://hl7.org/fhir/sid/icd-10-cm','Lead-induced gout, right ankle and foot','M10171','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.293_M10.172','M10.172','http://hl7.org/fhir/sid/icd-10-cm','Lead-induced gout, left ankle and foot','M10172','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.293_M10.179','M10.179','http://hl7.org/fhir/sid/icd-10-cm','Lead-induced gout, unspecified ankle and foot','M10179','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.293_M10.18','M10.18','http://hl7.org/fhir/sid/icd-10-cm','Lead-induced gout, vertebrae','M1018','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.293_M10.19','M10.19','http://hl7.org/fhir/sid/icd-10-cm','Lead-induced gout, multiple sites','M1019','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.293_M1A.10X0','M1A.10X0','http://hl7.org/fhir/sid/icd-10-cm','Lead-induced chronic gout, unspecified site, without tophus (tophi)','M1A10X0','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.293_M1A.10X1','M1A.10X1','http://hl7.org/fhir/sid/icd-10-cm','Lead-induced chronic gout, unspecified site, with tophus (tophi)','M1A10X1','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.293_M1A.1110','M1A.1110','http://hl7.org/fhir/sid/icd-10-cm','Lead-induced chronic gout, right shoulder, without tophus (tophi)','M1A1110','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.293_M1A.1111','M1A.1111','http://hl7.org/fhir/sid/icd-10-cm','Lead-induced chronic gout, right shoulder, with tophus (tophi)','M1A1111','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.293_M1A.1120','M1A.1120','http://hl7.org/fhir/sid/icd-10-cm','Lead-induced chronic gout, left shoulder, without tophus (tophi)','M1A1120','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.293_M1A.1121','M1A.1121','http://hl7.org/fhir/sid/icd-10-cm','Lead-induced chronic gout, left shoulder, with tophus (tophi)','M1A1121','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.293_M1A.1190','M1A.1190','http://hl7.org/fhir/sid/icd-10-cm','Lead-induced chronic gout, unspecified shoulder, without tophus (tophi)','M1A1190','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.293_M1A.1191','M1A.1191','http://hl7.org/fhir/sid/icd-10-cm','Lead-induced chronic gout, unspecified shoulder, with tophus (tophi)','M1A1191','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.293_M1A.1210','M1A.1210','http://hl7.org/fhir/sid/icd-10-cm','Lead-induced chronic gout, right elbow, without tophus (tophi)','M1A1210','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.293_M1A.1211','M1A.1211','http://hl7.org/fhir/sid/icd-10-cm','Lead-induced chronic gout, right elbow, with tophus (tophi)','M1A1211','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.293_M1A.1220','M1A.1220','http://hl7.org/fhir/sid/icd-10-cm','Lead-induced chronic gout, left elbow, without tophus (tophi)','M1A1220','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.293_M1A.1221','M1A.1221','http://hl7.org/fhir/sid/icd-10-cm','Lead-induced chronic gout, left elbow, with tophus (tophi)','M1A1221','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.293_M1A.1290','M1A.1290','http://hl7.org/fhir/sid/icd-10-cm','Lead-induced chronic gout, unspecified elbow, without tophus (tophi)','M1A1290','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.293_M1A.1291','M1A.1291','http://hl7.org/fhir/sid/icd-10-cm','Lead-induced chronic gout, unspecified elbow, with tophus (tophi)','M1A1291','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.293_M1A.1310','M1A.1310','http://hl7.org/fhir/sid/icd-10-cm','Lead-induced chronic gout, right wrist, without tophus (tophi)','M1A1310','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.293_M1A.1311','M1A.1311','http://hl7.org/fhir/sid/icd-10-cm','Lead-induced chronic gout, right wrist, with tophus (tophi)','M1A1311','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.293_M1A.1320','M1A.1320','http://hl7.org/fhir/sid/icd-10-cm','Lead-induced chronic gout, left wrist, without tophus (tophi)','M1A1320','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.293_M1A.1321','M1A.1321','http://hl7.org/fhir/sid/icd-10-cm','Lead-induced chronic gout, left wrist, with tophus (tophi)','M1A1321','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.293_M1A.1390','M1A.1390','http://hl7.org/fhir/sid/icd-10-cm','Lead-induced chronic gout, unspecified wrist, without tophus (tophi)','M1A1390','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.293_M1A.1391','M1A.1391','http://hl7.org/fhir/sid/icd-10-cm','Lead-induced chronic gout, unspecified wrist, with tophus (tophi)','M1A1391','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.293_M1A.1410','M1A.1410','http://hl7.org/fhir/sid/icd-10-cm','Lead-induced chronic gout, right hand, without tophus (tophi)','M1A1410','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.293_M1A.1411','M1A.1411','http://hl7.org/fhir/sid/icd-10-cm','Lead-induced chronic gout, right hand, with tophus (tophi)','M1A1411','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.293_M1A.1420','M1A.1420','http://hl7.org/fhir/sid/icd-10-cm','Lead-induced chronic gout, left hand, without tophus (tophi)','M1A1420','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.293_M1A.1421','M1A.1421','http://hl7.org/fhir/sid/icd-10-cm','Lead-induced chronic gout, left hand, with tophus (tophi)','M1A1421','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.293_M1A.1490','M1A.1490','http://hl7.org/fhir/sid/icd-10-cm','Lead-induced chronic gout, unspecified hand, without tophus (tophi)','M1A1490','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.293_M1A.1491','M1A.1491','http://hl7.org/fhir/sid/icd-10-cm','Lead-induced chronic gout, unspecified hand, with tophus (tophi)','M1A1491','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.293_M1A.1510','M1A.1510','http://hl7.org/fhir/sid/icd-10-cm','Lead-induced chronic gout, right hip, without tophus (tophi)','M1A1510','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.293_M1A.1511','M1A.1511','http://hl7.org/fhir/sid/icd-10-cm','Lead-induced chronic gout, right hip, with tophus (tophi)','M1A1511','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.293_M1A.1520','M1A.1520','http://hl7.org/fhir/sid/icd-10-cm','Lead-induced chronic gout, left hip, without tophus (tophi)','M1A1520','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.293_M1A.1521','M1A.1521','http://hl7.org/fhir/sid/icd-10-cm','Lead-induced chronic gout, left hip, with tophus (tophi)','M1A1521','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.293_M1A.1590','M1A.1590','http://hl7.org/fhir/sid/icd-10-cm','Lead-induced chronic gout, unspecified hip, without tophus (tophi)','M1A1590','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.293_M1A.1591','M1A.1591','http://hl7.org/fhir/sid/icd-10-cm','Lead-induced chronic gout, unspecified hip, with tophus (tophi)','M1A1591','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.293_M1A.1610','M1A.1610','http://hl7.org/fhir/sid/icd-10-cm','Lead-induced chronic gout, right knee, without tophus (tophi)','M1A1610','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.293_M1A.1611','M1A.1611','http://hl7.org/fhir/sid/icd-10-cm','Lead-induced chronic gout, right knee, with tophus (tophi)','M1A1611','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.293_M1A.1620','M1A.1620','http://hl7.org/fhir/sid/icd-10-cm','Lead-induced chronic gout, left knee, without tophus (tophi)','M1A1620','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.293_M1A.1621','M1A.1621','http://hl7.org/fhir/sid/icd-10-cm','Lead-induced chronic gout, left knee, with tophus (tophi)','M1A1621','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.293_M1A.1690','M1A.1690','http://hl7.org/fhir/sid/icd-10-cm','Lead-induced chronic gout, unspecified knee, without tophus (tophi)','M1A1690','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.293_M1A.1691','M1A.1691','http://hl7.org/fhir/sid/icd-10-cm','Lead-induced chronic gout, unspecified knee, with tophus (tophi)','M1A1691','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.293_M1A.1710','M1A.1710','http://hl7.org/fhir/sid/icd-10-cm','Lead-induced chronic gout, right ankle and foot, without tophus (tophi)','M1A1710','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.293_M1A.1711','M1A.1711','http://hl7.org/fhir/sid/icd-10-cm','Lead-induced chronic gout, right ankle and foot, with tophus (tophi)','M1A1711','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.293_M1A.1720','M1A.1720','http://hl7.org/fhir/sid/icd-10-cm','Lead-induced chronic gout, left ankle and foot, without tophus (tophi)','M1A1720','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.293_M1A.1721','M1A.1721','http://hl7.org/fhir/sid/icd-10-cm','Lead-induced chronic gout, left ankle and foot, with tophus (tophi)','M1A1721','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.293_M1A.1790','M1A.1790','http://hl7.org/fhir/sid/icd-10-cm','Lead-induced chronic gout, unspecified ankle and foot, without tophus (tophi)','M1A1790','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.293_M1A.1791','M1A.1791','http://hl7.org/fhir/sid/icd-10-cm','Lead-induced chronic gout, unspecified ankle and foot, with tophus (tophi)','M1A1791','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.293_M1A.18X0','M1A.18X0','http://hl7.org/fhir/sid/icd-10-cm','Lead-induced chronic gout, vertebrae, without tophus (tophi)','M1A18X0','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.293_M1A.18X1','M1A.18X1','http://hl7.org/fhir/sid/icd-10-cm','Lead-induced chronic gout, vertebrae, with tophus (tophi)','M1A18X1','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.293_M1A.19X0','M1A.19X0','http://hl7.org/fhir/sid/icd-10-cm','Lead-induced chronic gout, multiple sites, without tophus (tophi)','M1A19X0','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.293_M1A.19X1','M1A.19X1','http://hl7.org/fhir/sid/icd-10-cm','Lead-induced chronic gout, multiple sites, with tophus (tophi)','M1A19X1','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.293_T56.0X1S','T56.0X1S','http://hl7.org/fhir/sid/icd-10-cm','Toxic effect of lead and its compounds, accidental (unintentional), sequela','T560X1S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.293_T56.0X2A','T56.0X2A','http://hl7.org/fhir/sid/icd-10-cm','Toxic effect of lead and its compounds, intentional self-harm, initial encounter','T560X2A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.293_T56.0X2D','T56.0X2D','http://hl7.org/fhir/sid/icd-10-cm','Toxic effect of lead and its compounds, intentional self-harm, subsequent encounter','T560X2D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.293_T56.0X2S','T56.0X2S','http://hl7.org/fhir/sid/icd-10-cm','Toxic effect of lead and its compounds, intentional self-harm, sequela','T560X2S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.293_T56.0X3A','T56.0X3A','http://hl7.org/fhir/sid/icd-10-cm','Toxic effect of lead and its compounds, assault, initial encounter','T560X3A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.293_T56.0X3D','T56.0X3D','http://hl7.org/fhir/sid/icd-10-cm','Toxic effect of lead and its compounds, assault, subsequent encounter','T560X3D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.293_T56.0X3S','T56.0X3S','http://hl7.org/fhir/sid/icd-10-cm','Toxic effect of lead and its compounds, assault, sequela','T560X3S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.293_T56.0X4S','T56.0X4S','http://hl7.org/fhir/sid/icd-10-cm','Toxic effect of lead and its compounds, undetermined, sequela','T560X4S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.293_T56.0X1A','T56.0X1A','http://hl7.org/fhir/sid/icd-10-cm','Toxic effect of lead and its compounds, accidental (unintentional), initial encounter','T560X1A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.293_T56.0X1D','T56.0X1D','http://hl7.org/fhir/sid/icd-10-cm','Toxic effect of lead and its compounds, accidental (unintentional), subsequent encounter','T560X1D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.293_T56.0X4A','T56.0X4A','http://hl7.org/fhir/sid/icd-10-cm','Toxic effect of lead and its compounds, undetermined, initial encounter','T560X4A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.293_T56.0X4D','T56.0X4D','http://hl7.org/fhir/sid/icd-10-cm','Toxic effect of lead and its compounds, undetermined, subsequent encounter','T560X4D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1371_52947006','52947006','http://snomed.info/sct','Japanese encephalitis virus disease (disorder)','52947006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.173_A95','A95','http://hl7.org/fhir/sid/icd-10-cm','Yellow fever','A95','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.173_A95.0','A95.0','http://hl7.org/fhir/sid/icd-10-cm','Sylvatic yellow fever','A950','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.173_A95.1','A95.1','http://hl7.org/fhir/sid/icd-10-cm','Urban yellow fever','A951','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.173_A95.9','A95.9','http://hl7.org/fhir/sid/icd-10-cm','Yellow fever, unspecified','A959','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1370_A83.0','A83.0','http://hl7.org/fhir/sid/icd-10-cm','Japanese encephalitis','A830','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.175_397420007','397420007','http://snomed.info/sct','West Nile fever without encephalitis (disorder)','397420007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.175_417093003','417093003','http://snomed.info/sct','Disease caused by West Nile virus (disorder)','417093003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.175_430397002','430397002','http://snomed.info/sct','Disorder of nervous system caused by West Nile virus (disorder)','430397002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.175_763018002','763018002','http://snomed.info/sct','Asymptomatic West Nile virus infection (disorder)','763018002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.175_87048000','87048000','http://snomed.info/sct','Kunjin fever (disorder)','87048000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.175_404233006','404233006','http://snomed.info/sct','Meningitis caused by West Nile virus (disorder)','404233006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.175_1163553003','1163553003','http://snomed.info/sct','Encephalitis caused by Kunjin virus (disorder)','1163553003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.175_392662004','392662004','http://snomed.info/sct','West Nile encephalitis (disorder)','392662004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.176_A92.30','A92.30','http://hl7.org/fhir/sid/icd-10-cm','West Nile virus infection, unspecified','A9230','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.176_A92.32','A92.32','http://hl7.org/fhir/sid/icd-10-cm','West Nile virus infection with other neurologic manifestation','A9232','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.176_A92.39','A92.39','http://hl7.org/fhir/sid/icd-10-cm','West Nile virus infection with other complications','A9239','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.176_A92.31','A92.31','http://hl7.org/fhir/sid/icd-10-cm','West Nile virus infection with encephalitis','A9231','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.178_A83.3','A83.3','http://hl7.org/fhir/sid/icd-10-cm','St Louis encephalitis','A833','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.179_416129000','416129000','http://snomed.info/sct','St. Louis encephalitis virus non-neuroinvasive disease (disorder)','416129000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.179_417192005','417192005','http://snomed.info/sct','Saint Louis encephalitis virus infection (disorder)','417192005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.179_404234000','404234000','http://snomed.info/sct','Meningitis caused by Saint Louis encephalitis virus (disorder)','404234000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.179_417607009','417607009','http://snomed.info/sct','Neuroinvasive Saint Louis encephalitis virus infection (disorder)','417607009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2105_191388008','191388008','http://snomed.info/sct','Familial methemoglobinemia (disorder)','191388008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2105_234395000','234395000','http://snomed.info/sct','Congenital methemoglobinaema with defective methemoglobin-reducing system (disorder)','234395000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2105_234396004','234396004','http://snomed.info/sct','Congenital methemoglobinemia with abnormal methemoglobins (disorder)','234396004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2105_267550008','267550008','http://snomed.info/sct','Congenital methemoglobinemia (disorder)','267550008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2105_74912001','74912001','http://snomed.info/sct','Hereditary methemoglobinemia due to globin chain mutation (disorder)','74912001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2105_767497003','767497003','http://snomed.info/sct','Autosomal recessive congenital methemoglobinemia (disorder)','767497003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2105_767498008','767498008','http://snomed.info/sct','Autosomal recessive congenital methemoglobinemia type II (disorder)','767498008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2105_767499000','767499000','http://snomed.info/sct','Autosomal recessive congenital methemoglobinemia type I (disorder)','767499000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2105_127037003','127037003','http://snomed.info/sct','Toxic methemoglobinemia with cyanosis (disorder)','127037003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2105_131171006','131171006','http://snomed.info/sct','Methemoglobin above reference range (finding)','131171006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2105_191389000','191389000','http://snomed.info/sct','Idiopathic methemoglobinemia (disorder)','191389000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2105_191390009','191390009','http://snomed.info/sct','Drug-induced methemoglobinemia (disorder)','191390009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2105_295315008','295315008','http://snomed.info/sct','Acquired methemoglobinemia (disorder)','295315008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2105_38959009','38959009','http://snomed.info/sct','Methemoglobinemia (disorder)','38959009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2105_406593009','406593009','http://snomed.info/sct','Methemoglobinemia due to nitrate poisoning (disorder)','406593009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2105_57020009','57020009','http://snomed.info/sct','Stokvis'' disease (disorder)','57020009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1016_105628008','105628008','http://snomed.info/sct','Human typhoid AND/OR paratyphoid fever (disorder)','105628008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1016_1163125006','1163125006','http://snomed.info/sct','Colitis caused by Salmonella paratyphi C (disorder)','1163125006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1016_1163127003','1163127003','http://snomed.info/sct','Colitis caused by Salmonella paratyphi A (disorder)','1163127003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1016_1163128008','1163128008','http://snomed.info/sct','Colitis caused by Salmonella paratyphi B (disorder)','1163128008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1016_1287471003','1287471003','http://snomed.info/sct','Eruption of skin caused by Salmonella Paratyphi (disorder)','1287471003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1016_1287511006','1287511006','http://snomed.info/sct','Eruption of skin caused by Salmonella Paratyphi A (disorder)','1287511006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1016_1287512004','1287512004','http://snomed.info/sct','Eruption of skin caused by Salmonella Paratyphi B (disorder)','1287512004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1016_1287513009','1287513009','http://snomed.info/sct','Eruption of skin caused by Salmonella Paratyphi C (disorder)','1287513009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1016_402964003','402964003','http://snomed.info/sct','Paratyphoid exanthem (disorder)','402964003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1016_51254007','51254007','http://snomed.info/sct','Paratyphoid C fever (disorder)','51254007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1016_71085009','71085009','http://snomed.info/sct','Paratyphoid B fever (disorder)','71085009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1016_76623002','76623002','http://snomed.info/sct','Paratyphoid A fever (disorder)','76623002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1016_85904008','85904008','http://snomed.info/sct','Paratyphoid fever (disorder)','85904008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1016_186090001','186090001','http://snomed.info/sct','Typhoid and paratyphoid fevers (disorder)','186090001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1258_Z22.7','Z22.7','http://hl7.org/fhir/sid/icd-10-cm','Latent tuberculosis','Z227','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1379_1186838001','1186838001','http://snomed.info/sct','Peripheral neuropathy caused by ciguatoxin (disorder)','1186838001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1379_186597006','186597006','http://snomed.info/sct','Fish poisoning (disorder)','186597006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1379_241774007','241774007','http://snomed.info/sct','Ciguatoxin causing toxic effect (disorder)','241774007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1379_242296003','242296003','http://snomed.info/sct','Accidental ingestion of scombroid fish (event)','242296003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1379_242297007','242297007','http://snomed.info/sct','Accidental ingestion of ciguatoxin (event)','242297007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1379_446438003','446438003','http://snomed.info/sct','Poisoning by ingestion of fish contaminated by bacteria (disorder)','446438003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1379_446439006','446439006','http://snomed.info/sct','Poisoning by ingestion of fish contaminated by environmental toxin (disorder)','446439006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1379_446443005','446443005','http://snomed.info/sct','Poisoning caused by ingestion of fish toxin (disorder)','446443005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1379_67987005','67987005','http://snomed.info/sct','Toxic effect from eating fish (disorder)','67987005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1379_83227006','83227006','http://snomed.info/sct','Scombroid fish poisoning (disorder)','83227006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1015_A01.1','A01.1','http://hl7.org/fhir/sid/icd-10-cm','Paratyphoid fever A','A011','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1015_A01.2','A01.2','http://hl7.org/fhir/sid/icd-10-cm','Paratyphoid fever B','A012','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1015_A01.3','A01.3','http://hl7.org/fhir/sid/icd-10-cm','Paratyphoid fever C','A013','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1015_A01.4','A01.4','http://hl7.org/fhir/sid/icd-10-cm','Paratyphoid fever, unspecified','A014','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1015_A01','A01','http://hl7.org/fhir/sid/icd-10-cm','Typhoid and paratyphoid fevers','A01','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1136_406603008','406603008','http://snomed.info/sct','Infection caused by glycopeptide intermediate Staphylococcus aureus (disorder)','406603008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1136_406604002','406604002','http://snomed.info/sct','Infection caused by vancomycin intermediate Staphylococcus aureus (disorder)','406604002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1136_406577000','406577000','http://snomed.info/sct','Infection caused by vancomycin intermediate/resistant Staphylococcus aureus (disorder)','406577000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1136_406607009','406607009','http://snomed.info/sct','Infection caused by glycopeptide intermediate/resistant Staphylococcus aureus (disorder)','406607009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2342_1237016007','1237016007','http://snomed.info/sct','At increased risk of exposure to Measles virus (finding)','1237016007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1012_105628008','105628008','http://snomed.info/sct','Human typhoid AND/OR paratyphoid fever (disorder)','105628008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1012_1084791000119106','1084791000119106','http://snomed.info/sct','Cardiac disorder due to typhoid fever (disorder)','1084791000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1012_1179378005','1179378005','http://snomed.info/sct','Osteomyelitis caused by Salmonella enterica enterica serovar Typhi (disorder)','1179378005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1012_1179405006','1179405006','http://snomed.info/sct','Inflammation of joint caused by Salmonella enterica enterica serovar Typhi (disorder)','1179405006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1012_1179407003','1179407003','http://snomed.info/sct','Inflammation of colon caused by Salmonella enterica enterica serovar Typhi (disorder)','1179407003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1012_1217295005','1217295005','http://snomed.info/sct','Infection of heart caused by Salmonella enterica enterica serovar Typhi (disorder)','1217295005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1012_1287189007','1287189007','http://snomed.info/sct','Eruption of skin caused by Salmonella enterica enterica serovar Typhi (disorder)','1287189007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1012_194929007','194929007','http://snomed.info/sct','Endocarditis - typhoid (disorder)','194929007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1012_402963009','402963009','http://snomed.info/sct','Typhoid exanthem (disorder)','402963009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1012_45312009','45312009','http://snomed.info/sct','Pneumonia in typhoid fever (disorder)','45312009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1012_4834000','4834000','http://snomed.info/sct','Typhoid fever (disorder)','4834000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1012_789006005','789006005','http://snomed.info/sct','Peritonitis caused by Salmonella typhi (disorder)','789006005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1012_192648008','192648008','http://snomed.info/sct','Meningitis due to typhoid fever (disorder)','192648008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1012_186090001','186090001','http://snomed.info/sct','Typhoid and paratyphoid fevers (disorder)','186090001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2340_472841006','472841006','http://snomed.info/sct','Stenosis of fetal tricuspid valve (disorder)','472841006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1011_A01.0','A01.0','http://hl7.org/fhir/sid/icd-10-cm','Typhoid fever','A010','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1011_A01.00','A01.00','http://hl7.org/fhir/sid/icd-10-cm','Typhoid fever, unspecified','A0100','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1011_A01.02','A01.02','http://hl7.org/fhir/sid/icd-10-cm','Typhoid fever with heart involvement','A0102','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1011_A01.03','A01.03','http://hl7.org/fhir/sid/icd-10-cm','Typhoid pneumonia','A0103','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1011_A01.04','A01.04','http://hl7.org/fhir/sid/icd-10-cm','Typhoid arthritis','A0104','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1011_A01.05','A01.05','http://hl7.org/fhir/sid/icd-10-cm','Typhoid osteomyelitis','A0105','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1011_A01.09','A01.09','http://hl7.org/fhir/sid/icd-10-cm','Typhoid fever with other complications','A0109','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1011_A01','A01','http://hl7.org/fhir/sid/icd-10-cm','Typhoid and paratyphoid fevers','A01','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1011_A01.01','A01.01','http://hl7.org/fhir/sid/icd-10-cm','Typhoid meningitis','A0101','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2341_444435003','444435003','http://snomed.info/sct','Exposure to Measles virus (event)','444435003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.47_A02.0','A02.0','http://hl7.org/fhir/sid/icd-10-cm','Salmonella enteritis','A020','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.47_A02.1','A02.1','http://hl7.org/fhir/sid/icd-10-cm','Salmonella sepsis','A021','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.47_A02.20','A02.20','http://hl7.org/fhir/sid/icd-10-cm','Localized salmonella infection, unspecified','A0220','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.47_A02.22','A02.22','http://hl7.org/fhir/sid/icd-10-cm','Salmonella pneumonia','A0222','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.47_A02.23','A02.23','http://hl7.org/fhir/sid/icd-10-cm','Salmonella arthritis','A0223','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.47_A02.24','A02.24','http://hl7.org/fhir/sid/icd-10-cm','Salmonella osteomyelitis','A0224','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.47_A02.25','A02.25','http://hl7.org/fhir/sid/icd-10-cm','Salmonella pyelonephritis','A0225','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.47_A02.29','A02.29','http://hl7.org/fhir/sid/icd-10-cm','Salmonella with other localized infection','A0229','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.47_A02.8','A02.8','http://hl7.org/fhir/sid/icd-10-cm','Other specified salmonella infections','A028','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.47_A02.9','A02.9','http://hl7.org/fhir/sid/icd-10-cm','Salmonella infection, unspecified','A029','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.47_A02.21','A02.21','http://hl7.org/fhir/sid/icd-10-cm','Salmonella meningitis','A0221','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.48_1092371000119103','1092371000119103','http://snomed.info/sct','Salmonella pyelonephritis (disorder)','1092371000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.48_1142226000','1142226000','http://snomed.info/sct','Infection of intestine caused by Salmonella group O:2 (disorder)','1142226000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.48_1179031004','1179031004','http://snomed.info/sct','Infection of intestine caused by Salmonella group O:4 (disorder)','1179031004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.48_1179034007','1179034007','http://snomed.info/sct','Infection of intestine caused by Salmonella group D (disorder)','1179034007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.48_1179071009','1179071009','http://snomed.info/sct','Infection of intestine caused by Salmonella group C (disorder)','1179071009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.48_1179073007','1179073007','http://snomed.info/sct','Infection of intestine caused by Salmonella group E (disorder)','1179073007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.48_127361000119109','127361000119109','http://snomed.info/sct','Severe sepsis with acute organ dysfunction caused by Salmonella (disorder)','127361000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.48_1287188004','1287188004','http://snomed.info/sct','Eruption of skin caused by Salmonella (disorder)','1287188004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.48_186134009','186134009','http://snomed.info/sct','Infection of gastrointestinal tract by Salmonella enterica arizonae (disorder)','186134009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.48_2523007','2523007','http://snomed.info/sct','Salmonella pneumonia (disorder)','2523007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.48_276288002','276288002','http://snomed.info/sct','Recurrent salmonella septicemia (disorder)','276288002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.48_302229004','302229004','http://snomed.info/sct','Salmonella food poisoning (disorder)','302229004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.48_302231008','302231008','http://snomed.info/sct','Salmonella infection (disorder)','302231008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.48_397503006','397503006','http://snomed.info/sct','Salmonella enterica arizonae infection (disorder)','397503006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.48_402962004','402962004','http://snomed.info/sct','Salmonella infection with skin involvement (disorder)','402962004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.48_42338000','42338000','http://snomed.info/sct','Salmonella gastroenteritis (disorder)','42338000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.48_449083008','449083008','http://snomed.info/sct','Sepsis caused by Salmonella (disorder)','449083008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.48_47375003','47375003','http://snomed.info/sct','Localized Salmonella infection (disorder)','47375003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.48_6803002','6803002','http://snomed.info/sct','Salmonella osteomyelitis (disorder)','6803002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.48_71299003','71299003','http://snomed.info/sct','Salmonella arthritis (disorder)','71299003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.48_721682003','721682003','http://snomed.info/sct','Colitis caused by Salmonella (disorder)','721682003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.48_763772002','763772002','http://snomed.info/sct','Invasive non-typhoidal salmonellosis (disorder)','763772002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.48_90974009','90974009','http://snomed.info/sct','Salmonellosis (except human typhoid and paratyphoid) (disorder)','90974009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.48_420764009','420764009','http://snomed.info/sct','Salmonella infection with acquired immunodeficiency syndrome (disorder)','420764009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.48_713342008','713342008','http://snomed.info/sct','Infection caused by Salmonella co-occurrent with human immunodeficiency virus infection (disorder)','713342008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.48_714083007','714083007','http://snomed.info/sct','Recurrent salmonella sepsis co-occurrent with human immunodeficiency virus infection (disorder)','714083007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.48_77645007','77645007','http://snomed.info/sct','Salmonella meningitis (disorder)','77645007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2119_1085291000119101','1085291000119101','http://snomed.info/sct','Cleft hard and soft palate with cleft lip (disorder)','1085291000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2119_1085301000119100','1085301000119100','http://snomed.info/sct','Cleft of hard palate and cleft lip (disorder)','1085301000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2119_1085331000119107','1085331000119107','http://snomed.info/sct','Cleft palate and bilateral cleft lip (disorder)','1085331000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2119_1085341000119103','1085341000119103','http://snomed.info/sct','Cleft of soft palate and bilateral cleft lip (disorder)','1085341000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2119_1085351000119101','1085351000119101','http://snomed.info/sct','Cleft of soft palate and cleft lip (disorder)','1085351000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2119_1148541006','1148541006','http://snomed.info/sct','Bilateral incomplete cleft palate and bilateral incomplete cleft lip (disorder)','1148541006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2119_204614006','204614006','http://snomed.info/sct','Bilateral complete cleft palate with cleft lip (disorder)','204614006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2119_204616008','204616008','http://snomed.info/sct','Central complete cleft palate with cleft lip (disorder)','204616008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2119_204617004','204617004','http://snomed.info/sct','Central incomplete cleft palate with cleft lip (disorder)','204617004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2119_204620007','204620007','http://snomed.info/sct','Cleft hard palate with cleft lip, bilateral (disorder)','204620007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2119_337471007','337471007','http://snomed.info/sct','Cleft upper lip, upper jaw AND palate (disorder)','337471007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2119_338486003','338486003','http://snomed.info/sct','Cheilognathouranoschisis (disorder)','338486003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2119_66948001','66948001','http://snomed.info/sct','Cleft palate with cleft lip (disorder)','66948001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2119_716248001','716248001','http://snomed.info/sct','Cleft lip and cleft palate with ectodermal dysplasia syndrome (disorder)','716248001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2119_719042007','719042007','http://snomed.info/sct','Uveal coloboma with cleft lip and palate and intellectual disability syndrome (disorder)','719042007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2119_719456001','719456001','http://snomed.info/sct','Cleft lip and cleft palate with intestinal malrotation and cardiopathy syndrome (disorder)','719456001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2119_762403002','762403002','http://snomed.info/sct','Cleft hard palate with left cleft lip (disorder)','762403002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2119_762404008','762404008','http://snomed.info/sct','Cleft hard palate with right cleft lip (disorder)','762404008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2119_762405009','762405009','http://snomed.info/sct','Cleft soft palate with left cleft lip (disorder)','762405009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2119_762406005','762406005','http://snomed.info/sct','Cleft soft palate with right cleft lip (disorder)','762406005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2119_762407001','762407001','http://snomed.info/sct','Cleft hard and soft palate with left cleft lip (disorder)','762407001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2119_762408006','762408006','http://snomed.info/sct','Cleft hard and soft palate with right cleft lip (disorder)','762408006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2119_762409003','762409003','http://snomed.info/sct','Cleft palate with left cleft lip (disorder)','762409003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2119_762410008','762410008','http://snomed.info/sct','Cleft palate with right cleft lip (disorder)','762410008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2119_762580003','762580003','http://snomed.info/sct','Cleft hard palate with bilateral cleft lip and bilateral cleft of alveolar process of maxilla (disorder)','762580003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2119_762581004','762581004','http://snomed.info/sct','Cleft hard palate with left cleft lip and cleft of left alveolar process of maxilla (disorder)','762581004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2119_762582006','762582006','http://snomed.info/sct','Cleft hard palate with right cleft lip and cleft of right alveolar process of maxilla (disorder)','762582006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2119_762583001','762583001','http://snomed.info/sct','Cleft soft palate with bilateral cleft lip and bilateral cleft of alveolar process of maxilla (disorder)','762583001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2119_762584007','762584007','http://snomed.info/sct','Cleft soft palate with left cleft lip and cleft of left alveolar process of maxilla (disorder)','762584007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2119_762585008','762585008','http://snomed.info/sct','Cleft soft palate with right cleft lip and cleft of right alveolar process of maxilla (disorder)','762585008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2119_762586009','762586009','http://snomed.info/sct','Cleft hard and soft palate with bilateral cleft lip and bilateral cleft of alveolar process of maxilla (disorder)','762586009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2119_762587000','762587000','http://snomed.info/sct','Cleft hard and soft palate with left cleft lip and left alveolar process of maxilla (disorder)','762587000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2119_762588005','762588005','http://snomed.info/sct','Cleft hard and soft palate with right cleft lip and cleft of right alveolar process of maxilla (disorder)','762588005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2119_762660007','762660007','http://snomed.info/sct','Cleft palate with bilateral cleft lip and bilateral cleft of alveolar process of maxilla (disorder)','762660007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2119_764697003','764697003','http://snomed.info/sct','Verloove Vanhorick Brubakk syndrome (disorder)','764697003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2119_771013004','771013004','http://snomed.info/sct','Pilotto syndrome (disorder)','771013004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2119_783159001','783159001','http://snomed.info/sct','Holzgreve syndrome (disorder)','783159001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2119_1187039001','1187039001','http://snomed.info/sct','Cleft lip and palate, craniofacial dysmorphism, congenital heart defect, hearing loss syndrome (disorder)','1187039001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2119_1208338004','1208338004','http://snomed.info/sct','Dysraphism, cleft lip and palate, limb reduction defect syndrome (disorder)','1208338004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2119_716007007','716007007','http://snomed.info/sct','Cleft palate and cleft lip with deafness and sacral lipoma syndrome (disorder)','716007007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2117_109546001','109546001','http://snomed.info/sct','Cleft of primary palate (disorder)','109546001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2117_109548000','109548000','http://snomed.info/sct','Bilateral cleft of primary palate (disorder)','109548000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2117_1119390005','1119390005','http://snomed.info/sct','Cleft of right hard palate (disorder)','1119390005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2117_1119391009','1119391009','http://snomed.info/sct','Cleft of left hard palate (disorder)','1119391009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2117_1119392002','1119392002','http://snomed.info/sct','Complete cleft of right hard and soft palate (disorder)','1119392002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2117_1119393007','1119393007','http://snomed.info/sct','Complete cleft of left hard and soft palate (disorder)','1119393007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2117_18910001','18910001','http://snomed.info/sct','Cleft uvula (disorder)','18910001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2117_24194000','24194000','http://snomed.info/sct','Complete bilateral cleft palate (disorder)','24194000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2117_253993003','253993003','http://snomed.info/sct','Cleft hard palate, central (disorder)','253993003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2117_253994009','253994009','http://snomed.info/sct','Cleft hard palate, bilateral (disorder)','253994009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2117_253995005','253995005','http://snomed.info/sct','Incomplete cleft hard and soft palate (disorder)','253995005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2117_253996006','253996006','http://snomed.info/sct','Complete cleft hard and soft palate (disorder)','253996006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2117_253997002','253997002','http://snomed.info/sct','Cleft of soft palate (disorder)','253997002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2117_254000002','254000002','http://snomed.info/sct','Cleft soft palate, bilateral (disorder)','254000002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2117_254001003','254001003','http://snomed.info/sct','Complete cleft of soft palate (disorder)','254001003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2117_254002005','254002005','http://snomed.info/sct','Incomplete cleft of soft palate (disorder)','254002005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2117_254003000','254003000','http://snomed.info/sct','Occult submucous cleft palate (disorder)','254003000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2117_268197001','268197001','http://snomed.info/sct','Central incomplete cleft palate (disorder)','268197001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2117_270513005','270513005','http://snomed.info/sct','Central complete cleft palate (disorder)','270513005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2117_403772000','403772000','http://snomed.info/sct','Cleft palate lateral synechia syndrome (disorder)','403772000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2117_431040002','431040002','http://snomed.info/sct','Velopharyngeal incompetence due to cleft palate (disorder)','431040002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2117_43437003','43437003','http://snomed.info/sct','Submucous cleft of hard palate (disorder)','43437003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2117_448915004','448915004','http://snomed.info/sct','Cleft of hard palate (disorder)','448915004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2117_47686007','47686007','http://snomed.info/sct','Incomplete bilateral cleft palate (disorder)','47686007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2117_63567004','63567004','http://snomed.info/sct','Cleft hard and soft palate (disorder)','63567004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2117_715471007','715471007','http://snomed.info/sct','Mesomelic dysplasia with cleft palate and camptodactyly syndrome (disorder)','715471007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2117_718576001','718576001','http://snomed.info/sct','Hydrocephalus with cleft palate and joint contracture syndrome (disorder)','718576001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2117_718766002','718766002','http://snomed.info/sct','Spondyloepiphyseal dysplasia, craniosynostosis, cleft palate, cataract and intellectual disability syndrome (disorder)','718766002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2117_719394002','719394002','http://snomed.info/sct','Microcephalus cleft palate syndrome (disorder)','719394002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2117_719408007','719408007','http://snomed.info/sct','Lethal omphalocele with cleft palate syndrome (disorder)','719408007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2117_719466009','719466009','http://snomed.info/sct','Cleft palate with short stature and vertebral anomaly syndrome (disorder)','719466009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2117_719468005','719468005','http://snomed.info/sct','Cleft palate with stapes fixation and oligodontia syndrome (disorder)','719468005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2117_720636001','720636001','http://snomed.info/sct','Cholestasis with pigmentary retinopathy and cleft palate syndrome (disorder)','720636001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2117_722463001','722463001','http://snomed.info/sct','Macular coloboma, cleft palate, hallux valgus syndrome (disorder)','722463001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2117_726670008','726670008','http://snomed.info/sct','Weaver Williams syndrome (disorder)','726670008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2117_763108005','763108005','http://snomed.info/sct','Submucous cleft palate (disorder)','763108005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2117_763109002','763109002','http://snomed.info/sct','Central cleft of soft palate (disorder)','763109002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2117_763130006','763130006','http://snomed.info/sct','Cleft palate, large ears, small head syndrome (disorder)','763130006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2117_763278004','763278004','http://snomed.info/sct','Facial dysmorphism, cleft palate, loose skin syndrome (disorder)','763278004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2117_766761000','766761000','http://snomed.info/sct','X-linked cleft palate and ankyloglossia (disorder)','766761000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2117_771186004','771186004','http://snomed.info/sct','Poikiloderma, alopecia, retrognathism, cleft palate syndrome (disorder)','771186004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2117_773282001','773282001','http://snomed.info/sct','Macrosomia, microphthalmia, cleft palate syndrome (disorder)','773282001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2117_773749003','773749003','http://snomed.info/sct','Genitopalatocardiac syndrome (disorder)','773749003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2117_783204009','783204009','http://snomed.info/sct','Ankyloblepharon filiforme adnatum with cleft palate syndrome (disorder)','783204009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2117_783400002','783400002','http://snomed.info/sct','Complete cleft of hard palate (disorder)','783400002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2117_783407004','783407004','http://snomed.info/sct','Incomplete cleft palate (disorder)','783407004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2117_87979003','87979003','http://snomed.info/sct','Cleft palate (disorder)','87979003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2117_897570002','897570002','http://snomed.info/sct','Distal arthrogryposis type 3 (disorder)','897570002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2117_717909004','717909004','http://snomed.info/sct','Bilateral microtia with deafness and cleft palate syndrome (disorder)','717909004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2117_718574003','718574003','http://snomed.info/sct','Cleft palate with coloboma of eye and deafness syndrome (disorder)','718574003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2117_722375007','722375007','http://snomed.info/sct','Bamforth Lazarus syndrome (disorder)','722375007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.43_20943002','20943002','http://snomed.info/sct','Acute gonococcal cervicitis (disorder)','20943002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.43_236682002','236682002','http://snomed.info/sct','Gonococcal urethritis (disorder)','236682002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.43_237083000','237083000','http://snomed.info/sct','Gonococcal cervicitis (disorder)','237083000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.43_29864006','29864006','http://snomed.info/sct','Acute gonococcal urethritis (disorder)','29864006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.43_44412000','44412000','http://snomed.info/sct','Chronic gonococcal urethritis (disorder)','44412000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.43_788961008','788961008','http://snomed.info/sct','Infection of the penile urethra caused by Neisseria gonorrhoeae (disorder)','788961008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.43_1087021000119101','1087021000119101','http://snomed.info/sct','Periurethral abscess caused by Neisseria gonorrhoeae (disorder)','1087021000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.43_16217981000119107','16217981000119107','http://snomed.info/sct','Infection of upper genitourinary tract caused by Neisseria gonorrheae (disorder)','16217981000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.43_444834005','444834005','http://snomed.info/sct','Abscess of urethral gland caused by Neisseria gonorrhoeae (disorder)','444834005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.43_50970007','50970007','http://snomed.info/sct','Acute gonorrhea of upper genitourinary tract (disorder)','50970007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.43_54825009','54825009','http://snomed.info/sct','Acute gonorrhea of lower genitourinary tract (disorder)','54825009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.43_76802005','76802005','http://snomed.info/sct','Chronic gonococcal cervicitis (disorder)','76802005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2118_Q35.1','Q35.1','http://hl7.org/fhir/sid/icd-10-cm','Cleft hard palate','Q351','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2118_Q35.3','Q35.3','http://hl7.org/fhir/sid/icd-10-cm','Cleft soft palate','Q353','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2118_Q35.5','Q35.5','http://hl7.org/fhir/sid/icd-10-cm','Cleft hard palate with cleft soft palate','Q355','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2118_Q35.7','Q35.7','http://hl7.org/fhir/sid/icd-10-cm','Cleft uvula','Q357','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2118_Q35.9','Q35.9','http://hl7.org/fhir/sid/icd-10-cm','Cleft palate, unspecified','Q359','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.44_A54.01','A54.01','http://hl7.org/fhir/sid/icd-10-cm','Gonococcal cystitis and urethritis, unspecified','A5401','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.44_A54.03','A54.03','http://hl7.org/fhir/sid/icd-10-cm','Gonococcal cervicitis, unspecified','A5403','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.44_A54.00','A54.00','http://hl7.org/fhir/sid/icd-10-cm','Gonococcal infection of lower genitourinary tract, unspecified','A5400','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.44_A54.02','A54.02','http://hl7.org/fhir/sid/icd-10-cm','Gonococcal vulvovaginitis, unspecified','A5402','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.44_A54.1','A54.1','http://hl7.org/fhir/sid/icd-10-cm','Gonococcal infection of lower genitourinary tract with periurethral and accessory gland abscess','A541','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.40_1163114002','1163114002','http://snomed.info/sct','Colitis caused by enterohemorrhagic Escherichia coli (disorder)','1163114002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.40_1193658009','1193658009','http://snomed.info/sct','Inflammation of small intestine caused by enterohemorrhagic Escherichia coli (disorder)','1193658009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.40_1193660006','1193660006','http://snomed.info/sct','Inflammation of intestine caused by enterohemorrhagic Escherichia coli (disorder)','1193660006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.40_127531000119106','127531000119106','http://snomed.info/sct','Infection caused by Escherichia coli O157 (disorder)','127531000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.40_240337004','240337004','http://snomed.info/sct','Verotoxigenic Escherichia coli food poisoning (disorder)','240337004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.40_240354007','240354007','http://snomed.info/sct','Verotoxigenic Escherichia coli gastrointestinal tract infection (disorder)','240354007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.40_328291000119103','328291000119103','http://snomed.info/sct','Infection caused by Shiga toxin producing Escherichia coli (disorder)','328291000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.40_446328009','446328009','http://snomed.info/sct','Intestinal infection caused by Escherichia coli O157:H7 (disorder)','446328009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.40_69810009','69810009','http://snomed.info/sct','Acute hemorrhagic colitis caused by Escherichia coli (disorder)','69810009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.291_1153332006','1153332006','http://snomed.info/sct','Polyarticular chronic gout caused by lead (disorder)','1153332006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.291_1153334007','1153334007','http://snomed.info/sct','Polyarticular acute gout caused by lead (disorder)','1153334007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.291_1153363005','1153363005','http://snomed.info/sct','Acute gout caused by lead (disorder)','1153363005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.291_1153376004','1153376004','http://snomed.info/sct','Monoarticular chronic gout caused by lead (disorder)','1153376004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.291_1153378003','1153378003','http://snomed.info/sct','Monoarticular acute gout caused by lead (disorder)','1153378003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.291_1153420008','1153420008','http://snomed.info/sct','Chronic gout caused by lead (disorder)','1153420008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.291_216777009','216777009','http://snomed.info/sct','Accidental poisoning caused by lead and its compounds and fumes (disorder)','216777009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.291_216779007','216779007','http://snomed.info/sct','Accidental poisoning caused by lead compound (disorder)','216779007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.291_236454004','236454004','http://snomed.info/sct','Chronic lead nephropathy (disorder)','236454004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.291_239846006','239846006','http://snomed.info/sct','Gout caused by lead (disorder)','239846006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.291_26617005','26617005','http://snomed.info/sct','Poisoning caused by anti-infective compound of lead (disorder)','26617005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.291_38342005','38342005','http://snomed.info/sct','Toxic effect of lead compound (disorder)','38342005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.291_405811009','405811009','http://snomed.info/sct','Adverse reaction caused by anti-infective lead compound (disorder)','405811009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.291_59992000','59992000','http://snomed.info/sct','Blue line on gingivae (disorder)','59992000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.291_72338007','72338007','http://snomed.info/sct','Toxic effect of lead salt (disorder)','72338007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.291_1145155005','1145155005','http://snomed.info/sct','Lead and/or lead compound poisoning (disorder)','1145155005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.291_1145156006','1145156006','http://snomed.info/sct','Accidental poisoning caused by lead and/or lead compound (disorder)','1145156006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.291_216662006','216662006','http://snomed.info/sct','Accidental poisoning by lead paints (disorder)','216662006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.291_216780005','216780005','http://snomed.info/sct','Accidental poisoning caused by lead fumes (disorder)','216780005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.291_230610006','230610006','http://snomed.info/sct','Lead neuropathy (disorder)','230610006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.291_236516001','236516001','http://snomed.info/sct','Acute lead nephropathy (disorder)','236516001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.291_36919001','36919001','http://snomed.info/sct','Anemia caused by lead (disorder)','36919001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.291_48152004','48152004','http://snomed.info/sct','Toxic effect of tetraethyl lead (disorder)','48152004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.291_51399001','51399001','http://snomed.info/sct','Toxic encephalopathy caused by lead (disorder)','51399001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.291_67121008','67121008','http://snomed.info/sct','Toxic effect of lead dioxide (disorder)','67121008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.291_704204003','704204003','http://snomed.info/sct','Nephropathy caused by lead (disorder)','704204003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.291_70842005','70842005','http://snomed.info/sct','Toxic effect of lead acetate (disorder)','70842005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.291_72446009','72446009','http://snomed.info/sct','Toxic effect of inorganic lead compound (disorder)','72446009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.291_78405005','78405005','http://snomed.info/sct','Toxic effect of organic lead compound (disorder)','78405005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.291_870676005','870676005','http://snomed.info/sct','Adverse reaction to lead and/or lead compound (disorder)','870676005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1380_177569000','177569000','http://snomed.info/sct','Poisoning by eating contaminated shellfish (disorder)','177569000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1380_216763006','216763006','http://snomed.info/sct','Accidental poisoning from shellfish (disorder)','216763006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1380_242298002','242298002','http://snomed.info/sct','Accidental ingestion of paralytic shellfish (event)','242298002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1380_426487006','426487006','http://snomed.info/sct','Toxic effect from eating shellfish (disorder)','426487006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1380_427639003','427639003','http://snomed.info/sct','Azaspiracid poisoning (disorder)','427639003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1380_45133009','45133009','http://snomed.info/sct','Neurotoxic shellfish poisoning (disorder)','45133009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1380_715149009','715149009','http://snomed.info/sct','Shellfish poisoning caused by Gonyaulax catenella (disorder)','715149009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1380_77889005','77889005','http://snomed.info/sct','Paralytic shellfish poisoning (disorder)','77889005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1380_90359003','90359003','http://snomed.info/sct','Shellfish poisoning caused by Gonyaulax tamarensis (disorder)','90359003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1380_95878009','95878009','http://snomed.info/sct','Amnesic shellfish poisoning (disorder)','95878009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1380_95879001','95879001','http://snomed.info/sct','Diarrheic shellfish poisoning (disorder)','95879001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.161_1148585008','1148585008','http://snomed.info/sct','Infection of intestine caused by Vibrio parahaemolyticus (disorder)','1148585008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.161_398557001','398557001','http://snomed.info/sct','Infection caused by non-cholerae vibrio (disorder)','398557001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.161_402965002','402965002','http://snomed.info/sct','Vibrio vulnificus infection (disorder)','402965002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.161_406621006','406621006','http://snomed.info/sct','Infection caused by Vibrio (disorder)','406621006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.161_406622004','406622004','http://snomed.info/sct','Infection caused by Vibrio alginolyticus (disorder)','406622004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.161_406623009','406623009','http://snomed.info/sct','Infection caused by Vibrio fluvialis (disorder)','406623009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.161_406625002','406625002','http://snomed.info/sct','Infection caused by Vibrio mimicus (disorder)','406625002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.161_406626001','406626001','http://snomed.info/sct','Infection caused by Vibrio parahaemolyticus (disorder)','406626001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.161_414286000','414286000','http://snomed.info/sct','Food poisoning caused by Vibrio vulnificus (disorder)','414286000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.161_446672004','446672004','http://snomed.info/sct','Intestinal infection caused by Vibrio cholerae non-O139 (disorder)','446672004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.161_450861006','450861006','http://snomed.info/sct','Infection caused by Grimontia hollisae (disorder)','450861006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.161_707525005','707525005','http://snomed.info/sct','Non-O1 and non-O139 Vibrio cholerae infection (disorder)','707525005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.161_735514001','735514001','http://snomed.info/sct','Infection of intestine caused by Vibrio (disorder)','735514001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.161_81159000','81159000','http://snomed.info/sct','Food poisoning caused by Vibrio parahaemolyticus (disorder)','81159000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.161_240350003','240350003','http://snomed.info/sct','Cholera - non-O1 group vibrio (disorder)','240350003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1140_404678001','404678001','http://snomed.info/sct','Infection caused by glycopeptide resistant Staphylococcus aureus (disorder)','404678001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1140_404681006','404681006','http://snomed.info/sct','Infection caused by vancomycin resistant Staphylococcus aureus (disorder)','404681006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1140_406615007','406615007','http://snomed.info/sct','Infection caused by vancomycin resistant Staphylococcus aureus, coagulase positive (disorder)','406615007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1140_406577000','406577000','http://snomed.info/sct','Infection caused by vancomycin intermediate/resistant Staphylococcus aureus (disorder)','406577000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1140_406607009','406607009','http://snomed.info/sct','Infection caused by glycopeptide intermediate/resistant Staphylococcus aureus (disorder)','406607009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1382_T61.78','T61.78','http://hl7.org/fhir/sid/icd-10-cm','Other shellfish poisoning','T6178','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1382_T61.781','T61.781','http://hl7.org/fhir/sid/icd-10-cm','Other shellfish poisoning, accidental (unintentional)','T61781','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1382_T61.781A','T61.781A','http://hl7.org/fhir/sid/icd-10-cm','Other shellfish poisoning, accidental (unintentional), initial encounter','T61781A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1382_T61.781D','T61.781D','http://hl7.org/fhir/sid/icd-10-cm','Other shellfish poisoning, accidental (unintentional), subsequent encounter','T61781D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1382_T61.781S','T61.781S','http://hl7.org/fhir/sid/icd-10-cm','Other shellfish poisoning, accidental (unintentional), sequela','T61781S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1382_T61.784','T61.784','http://hl7.org/fhir/sid/icd-10-cm','Other shellfish poisoning, undetermined','T61784','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1382_T61.784A','T61.784A','http://hl7.org/fhir/sid/icd-10-cm','Other shellfish poisoning, undetermined, initial encounter','T61784A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1382_T61.784D','T61.784D','http://hl7.org/fhir/sid/icd-10-cm','Other shellfish poisoning, undetermined, subsequent encounter','T61784D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1382_T61.784S','T61.784S','http://hl7.org/fhir/sid/icd-10-cm','Other shellfish poisoning, undetermined, sequela','T61784S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1260_B60.11','B60.11','http://hl7.org/fhir/sid/icd-10-cm','Meningoencephalitis due to Acanthamoeba (culbertsoni)','B6011','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1381_T61.0','T61.0','http://hl7.org/fhir/sid/icd-10-cm','Ciguatera fish poisoning','T610','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1381_T61.01','T61.01','http://hl7.org/fhir/sid/icd-10-cm','Ciguatera fish poisoning, accidental (unintentional)','T6101','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1381_T61.01XA','T61.01XA','http://hl7.org/fhir/sid/icd-10-cm','Ciguatera fish poisoning, accidental (unintentional), initial encounter','T6101XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1381_T61.01XD','T61.01XD','http://hl7.org/fhir/sid/icd-10-cm','Ciguatera fish poisoning, accidental (unintentional), subsequent encounter','T6101XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1381_T61.01XS','T61.01XS','http://hl7.org/fhir/sid/icd-10-cm','Ciguatera fish poisoning, accidental (unintentional), sequela','T6101XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1381_T61.04','T61.04','http://hl7.org/fhir/sid/icd-10-cm','Ciguatera fish poisoning, undetermined','T6104','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1381_T61.04XA','T61.04XA','http://hl7.org/fhir/sid/icd-10-cm','Ciguatera fish poisoning, undetermined, initial encounter','T6104XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1381_T61.04XD','T61.04XD','http://hl7.org/fhir/sid/icd-10-cm','Ciguatera fish poisoning, undetermined, subsequent encounter','T6104XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1381_T61.04XS','T61.04XS','http://hl7.org/fhir/sid/icd-10-cm','Ciguatera fish poisoning, undetermined, sequela','T6104XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1381_T61.1','T61.1','http://hl7.org/fhir/sid/icd-10-cm','Scombroid fish poisoning','T611','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1381_T61.11','T61.11','http://hl7.org/fhir/sid/icd-10-cm','Scombroid fish poisoning, accidental (unintentional)','T6111','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1381_T61.11XA','T61.11XA','http://hl7.org/fhir/sid/icd-10-cm','Scombroid fish poisoning, accidental (unintentional), initial encounter','T6111XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1381_T61.11XD','T61.11XD','http://hl7.org/fhir/sid/icd-10-cm','Scombroid fish poisoning, accidental (unintentional), subsequent encounter','T6111XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1381_T61.11XS','T61.11XS','http://hl7.org/fhir/sid/icd-10-cm','Scombroid fish poisoning, accidental (unintentional), sequela','T6111XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1381_T61.14','T61.14','http://hl7.org/fhir/sid/icd-10-cm','Scombroid fish poisoning, undetermined','T6114','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1381_T61.14XA','T61.14XA','http://hl7.org/fhir/sid/icd-10-cm','Scombroid fish poisoning, undetermined, initial encounter','T6114XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1381_T61.14XD','T61.14XD','http://hl7.org/fhir/sid/icd-10-cm','Scombroid fish poisoning, undetermined, subsequent encounter','T6114XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1381_T61.14XS','T61.14XS','http://hl7.org/fhir/sid/icd-10-cm','Scombroid fish poisoning, undetermined, sequela','T6114XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1381_T61.77','T61.77','http://hl7.org/fhir/sid/icd-10-cm','Other fish poisoning','T6177','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1381_T61.771','T61.771','http://hl7.org/fhir/sid/icd-10-cm','Other fish poisoning, accidental (unintentional)','T61771','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1381_T61.771A','T61.771A','http://hl7.org/fhir/sid/icd-10-cm','Other fish poisoning, accidental (unintentional), initial encounter','T61771A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1381_T61.771D','T61.771D','http://hl7.org/fhir/sid/icd-10-cm','Other fish poisoning, accidental (unintentional), subsequent encounter','T61771D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1381_T61.771S','T61.771S','http://hl7.org/fhir/sid/icd-10-cm','Other fish poisoning, accidental (unintentional), sequela','T61771S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1381_T61.774','T61.774','http://hl7.org/fhir/sid/icd-10-cm','Other fish poisoning, undetermined','T61774','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1381_T61.774A','T61.774A','http://hl7.org/fhir/sid/icd-10-cm','Other fish poisoning, undetermined, initial encounter','T61774A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1381_T61.774D','T61.774D','http://hl7.org/fhir/sid/icd-10-cm','Other fish poisoning, undetermined, subsequent encounter','T61774D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1381_T61.774S','T61.774S','http://hl7.org/fhir/sid/icd-10-cm','Other fish poisoning, undetermined, sequela','T61774S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.163_1193749009','1193749009','http://snomed.info/sct','Inflammation of small intestine caused by Vibrio cholerae (disorder)','1193749009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.163_1193750009','1193750009','http://snomed.info/sct','Inflammation of intestine caused by Vibrio cholerae (disorder)','1193750009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.163_240349003','240349003','http://snomed.info/sct','Cholera caused by Vibrio cholerae O1 Classical biotype (disorder)','240349003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.163_240351004','240351004','http://snomed.info/sct','Cholera - O139 group Vibrio cholerae (disorder)','240351004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.163_447282003','447282003','http://snomed.info/sct','Intestinal infection caused by Vibrio cholerae O1 (disorder)','447282003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.163_63650001','63650001','http://snomed.info/sct','Cholera (disorder)','63650001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.163_81020007','81020007','http://snomed.info/sct','Cholera caused by Vibrio cholerae El Tor (disorder)','81020007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.163_240350003','240350003','http://snomed.info/sct','Cholera - non-O1 group vibrio (disorder)','240350003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.164_A00.0','A00.0','http://hl7.org/fhir/sid/icd-10-cm','Cholera due to Vibrio cholerae 01, biovar cholerae','A000','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.164_A00.1','A00.1','http://hl7.org/fhir/sid/icd-10-cm','Cholera due to Vibrio cholerae 01, biovar eltor','A001','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.164_A00.9','A00.9','http://hl7.org/fhir/sid/icd-10-cm','Cholera, unspecified','A009','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.285_G04.00','G04.00','http://hl7.org/fhir/sid/icd-10-cm','Acute disseminated encephalitis and encephalomyelitis, unspecified','G0400','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.285_G04.01','G04.01','http://hl7.org/fhir/sid/icd-10-cm','Postinfectious acute disseminated encephalitis and encephalomyelitis (postinfectious ADEM)','G0401','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.285_G04.02','G04.02','http://hl7.org/fhir/sid/icd-10-cm','Postimmunization acute disseminated encephalitis, myelitis and encephalomyelitis','G0402','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.285_G04.81','G04.81','http://hl7.org/fhir/sid/icd-10-cm','Other encephalitis and encephalomyelitis','G0481','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.285_G04.90','G04.90','http://hl7.org/fhir/sid/icd-10-cm','Encephalitis and encephalomyelitis, unspecified','G0490','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.285_G05.3','G05.3','http://hl7.org/fhir/sid/icd-10-cm','Encephalitis and encephalomyelitis in diseases classified elsewhere','G053','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.285_G36.1','G36.1','http://hl7.org/fhir/sid/icd-10-cm','Acute and subacute hemorrhagic leukoencephalitis [Hurst]','G361','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.285_A42.82','A42.82','http://hl7.org/fhir/sid/icd-10-cm','Actinomycotic encephalitis','A4282','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.285_G04.2','G04.2','http://hl7.org/fhir/sid/icd-10-cm','Bacterial meningoencephalitis and meningomyelitis, not elsewhere classified','G042','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.285_A81.1','A81.1','http://hl7.org/fhir/sid/icd-10-cm','Subacute sclerosing panencephalitis','A811','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.285_A83.4','A83.4','http://hl7.org/fhir/sid/icd-10-cm','Australian encephalitis','A834','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.285_A85.1','A85.1','http://hl7.org/fhir/sid/icd-10-cm','Adenoviral encephalitis','A851','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.285_A85.8','A85.8','http://hl7.org/fhir/sid/icd-10-cm','Other specified viral encephalitis','A858','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.285_A86','A86','http://hl7.org/fhir/sid/icd-10-cm','Unspecified viral encephalitis','A86','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.285_B00.4','B00.4','http://hl7.org/fhir/sid/icd-10-cm','Herpesviral encephalitis','B004','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.285_B02.0','B02.0','http://hl7.org/fhir/sid/icd-10-cm','Zoster encephalitis','B020','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.285_B10.01','B10.01','http://hl7.org/fhir/sid/icd-10-cm','Human herpesvirus 6 encephalitis','B1001','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.285_B10.09','B10.09','http://hl7.org/fhir/sid/icd-10-cm','Other human herpesvirus encephalitis','B1009','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.285_A17.82','A17.82','http://hl7.org/fhir/sid/icd-10-cm','Tuberculous meningoencephalitis','A1782','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.285_A32.12','A32.12','http://hl7.org/fhir/sid/icd-10-cm','Listerial meningoencephalitis','A3212','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.285_A39.81','A39.81','http://hl7.org/fhir/sid/icd-10-cm','Meningococcal encephalitis','A3981','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.285_A83.1','A83.1','http://hl7.org/fhir/sid/icd-10-cm','Western equine encephalitis','A831','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.285_A83.8','A83.8','http://hl7.org/fhir/sid/icd-10-cm','Other mosquito-borne viral encephalitis','A838','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.285_A83.9','A83.9','http://hl7.org/fhir/sid/icd-10-cm','Mosquito-borne viral encephalitis, unspecified','A839','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.285_A84.0','A84.0','http://hl7.org/fhir/sid/icd-10-cm','Far Eastern tick-borne encephalitis [Russian spring-summer encephalitis]','A840','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.285_A84.1','A84.1','http://hl7.org/fhir/sid/icd-10-cm','Central European tick-borne encephalitis','A841','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.285_A84.89','A84.89','http://hl7.org/fhir/sid/icd-10-cm','Other tick-borne viral encephalitis','A8489','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.285_A84.9','A84.9','http://hl7.org/fhir/sid/icd-10-cm','Tick-borne viral encephalitis, unspecified','A849','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.285_A85.2','A85.2','http://hl7.org/fhir/sid/icd-10-cm','Arthropod-borne viral encephalitis, unspecified','A852','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.285_A92.31','A92.31','http://hl7.org/fhir/sid/icd-10-cm','West Nile virus infection with encephalitis','A9231','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.285_B05.0','B05.0','http://hl7.org/fhir/sid/icd-10-cm','Measles complicated by encephalitis','B050','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.285_B40.81','B40.81','http://hl7.org/fhir/sid/icd-10-cm','Blastomycotic meningoencephalitis','B4081','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.285_B57.42','B57.42','http://hl7.org/fhir/sid/icd-10-cm','Meningoencephalitis in Chagas'' disease','B5742','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.285_B60.11','B60.11','http://hl7.org/fhir/sid/icd-10-cm','Meningoencephalitis due to Acanthamoeba (culbertsoni)','B6011','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.285_A52.14','A52.14','http://hl7.org/fhir/sid/icd-10-cm','Late syphilitic encephalitis','A5214','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.285_A83.0','A83.0','http://hl7.org/fhir/sid/icd-10-cm','Japanese encephalitis','A830','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.285_A83.2','A83.2','http://hl7.org/fhir/sid/icd-10-cm','Eastern equine encephalitis','A832','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.285_A83.3','A83.3','http://hl7.org/fhir/sid/icd-10-cm','St Louis encephalitis','A833','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.285_A85.0','A85.0','http://hl7.org/fhir/sid/icd-10-cm','Enteroviral encephalitis','A850','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.285_B01.11','B01.11','http://hl7.org/fhir/sid/icd-10-cm','Varicella encephalitis and encephalomyelitis','B0111','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.285_B26.2','B26.2','http://hl7.org/fhir/sid/icd-10-cm','Mumps encephalitis','B262','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.285_A83.5','A83.5','http://hl7.org/fhir/sid/icd-10-cm','California encephalitis','A835','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.285_B58.2','B58.2','http://hl7.org/fhir/sid/icd-10-cm','Toxoplasma meningoencephalitis','B582','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.285_B06.01','B06.01','http://hl7.org/fhir/sid/icd-10-cm','Rubella encephalitis','B0601','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.285_A50.42','A50.42','http://hl7.org/fhir/sid/icd-10-cm','Late congenital syphilitic encephalitis','A5042','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.288_123775005','123775005','http://snomed.info/sct','Carboxyhemoglobinemia (disorder)','123775005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.288_17383000','17383000','http://snomed.info/sct','Toxic effect of carbon monoxide (disorder)','17383000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.288_214959008','214959008','http://snomed.info/sct','Motor vehicle nontraffic accident involving accidental poisoning from carbon monoxide generated by motor vehicle, except off-road motor vehicle, while in motion, not on public highway (disorder)','214959008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.288_214960003','214960003','http://snomed.info/sct','Nontraffic accident involving accidental poisoning from carbon monoxide generated by moving motor vehicle, except off-road motor vehicle, not on public highway, driver of motor vehicle injured (disorder)','214960003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.288_214961004','214961004','http://snomed.info/sct','Nontraffic accident involving accidental poisoning from carbon monoxide generated by moving motor vehicle, except off-road motor vehicle, not on public highway, passenger of motor vehicle injured (disorder)','214961004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.288_214962006','214962006','http://snomed.info/sct','Nontraffic accident involving accidental poisoning from carbon monoxide generated by moving motor vehicle, except off-road motor vehicle, not on public highway, motor cyclist injured (disorder)','214962006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.288_214963001','214963001','http://snomed.info/sct','Nontraffic accident involving accidental poisoning from carbon monoxide generated by moving motor vehicle, except off-road motor vehicle, not on public highway, passenger on motor cycle injured (disorder)','214963001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.288_214964007','214964007','http://snomed.info/sct','Nontraffic accident involving accidental poisoning from carbon monoxide generated by moving motor vehicle, except off-road motor vehicle, not on public highway, occupant of tram injured (disorder)','214964007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.288_214965008','214965008','http://snomed.info/sct','Nontraffic accident with accidental poisoning from carbon monoxide generated by moving motor vehicle,except off-road vehicle, not on highway, rider of animal or animal-drawn vehicle occupant injured (disorder)','214965008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.288_214966009','214966009','http://snomed.info/sct','Nontraffic accident involving accidental poisoning from carbon monoxide generated by moving motor vehicle, except off-road motor vehicle, not on public highway, pedal cyclist injured (disorder)','214966009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.288_214967000','214967000','http://snomed.info/sct','Nontraffic accident involving accidental poisoning from carbon monoxide generated by moving motor vehicle, except off-road motor vehicle, not on public highway, pedestrian injured (disorder)','214967000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.288_216233003','216233003','http://snomed.info/sct','Poisoning caused by carbon monoxide from aircraft while in transit, without accident to aircraft (disorder)','216233003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.288_216234009','216234009','http://snomed.info/sct','Poisoning caused by carbon monoxide from aircraft while in transit, without accident to aircraft, occupant of spacecraft injured (disorder)','216234009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.288_216236006','216236006','http://snomed.info/sct','Poisoning caused by carbon monoxide from aircraft while in transit, without accident to aircraft, occupant of military aircraft injured (disorder)','216236006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.288_216237002','216237002','http://snomed.info/sct','Poisoning caused by carbon monoxide from aircraft while in transit, without accident to aircraft, member of crew of commercial aircraft in surface to surface transport injured (disorder)','216237002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.288_216239004','216239004','http://snomed.info/sct','Poisoning caused by carbon monoxide from aircraft while in transit, without accident to aircraft, occupant of commercial aircraft in surface to air transport injured (disorder)','216239004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.288_216241003','216241003','http://snomed.info/sct','Poisoning caused by carbon monoxide from aircraft while in transit, without accident to aircraft, occupant of unpowered aircraft, except parachutist, injured (disorder)','216241003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.288_216242005','216242005','http://snomed.info/sct','Poisoning caused by carbon monoxide from aircraft while in transit, without accident to aircraft, parachutist injured (disorder)','216242005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.288_216243000','216243000','http://snomed.info/sct','Poisoning caused by carbon monoxide from aircraft while in transit, without accident to aircraft, member of ground crew or airline employee injured (disorder)','216243000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.288_216819007','216819007','http://snomed.info/sct','Accidental poisoning by carbon monoxide from incomplete combustion of piped gas (disorder)','216819007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.288_216836004','216836004','http://snomed.info/sct','Accidental poisoning by motor vehicle exhaust gas (disorder)','216836004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.288_216843005','216843005','http://snomed.info/sct','Accidental poisoning caused by carbon monoxide from incomplete combustion of coal in domestic stove or fireplace (disorder)','216843005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.288_216845003','216845003','http://snomed.info/sct','Accidental poisoning caused by carbon monoxide from incomplete combustion of coke in domestic stove or fireplace (disorder)','216845003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.288_216846002','216846002','http://snomed.info/sct','Accidental poisoning caused by carbon monoxide from incomplete combustion of wood in domestic stove or fireplace (disorder)','216846002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.288_216847006','216847006','http://snomed.info/sct','Accidental poisoning caused by carbon monoxide from incomplete combustion of kerosene or paraffin in domestic stove or fireplace (disorder)','216847006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.288_216850009','216850009','http://snomed.info/sct','Accidental poisoning caused by carbon monoxide from blast furnace gas (disorder)','216850009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.288_216851008','216851008','http://snomed.info/sct','Accidental poisoning caused by carbon monoxide from kiln vapor (disorder)','216851008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.288_216852001','216852001','http://snomed.info/sct','Accidental poisoning caused by carbon monoxide from incomplete combustion of fuels in industrial use (disorder)','216852001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.288_219131005','219131005','http://snomed.info/sct','Self poisoning caused by motor vehicle exhaust gas (disorder)','219131005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.288_219324001','219324001','http://snomed.info/sct','Injury undetermined whether accidentally or purposely inflicted, poisoning by motor vehicle exhaust gas (disorder)','219324001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.288_242840004','242840004','http://snomed.info/sct','Self poisoning caused by carbon monoxide (disorder)','242840004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.288_420057003','420057003','http://snomed.info/sct','Accidental poisoning caused by carbon monoxide (disorder)','420057003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.288_95872005','95872005','http://snomed.info/sct','Carbon monoxide poisoning from motor vehicle exhaust (disorder)','95872005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.288_95873000','95873000','http://snomed.info/sct','Carbon monoxide poisoning from faulty furnace AND/OR heater (disorder)','95873000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.288_95874006','95874006','http://snomed.info/sct','Carbon monoxide poisoning from fire (disorder)','95874006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1388_11641008','11641008','http://snomed.info/sct','Millers'' asthma (disorder)','11641008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1388_18041002','18041002','http://snomed.info/sct','Printers'' asthma (disorder)','18041002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1388_19849005','19849005','http://snomed.info/sct','Meat-wrappers'' asthma (disorder)','19849005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1388_233687002','233687002','http://snomed.info/sct','Colophony asthma (disorder)','233687002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1388_34015007','34015007','http://snomed.info/sct','Bakers'' asthma (disorder)','34015007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1388_404804003','404804003','http://snomed.info/sct','Platinum asthma (disorder)','404804003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1388_404806001','404806001','http://snomed.info/sct','Cheese-makers'' asthma (disorder)','404806001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1388_404808000','404808000','http://snomed.info/sct','Isocyanate induced asthma (disorder)','404808000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1388_41553006','41553006','http://snomed.info/sct','Detergent asthma (disorder)','41553006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1388_418395004','418395004','http://snomed.info/sct','Tea-makers'' asthma (disorder)','418395004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1388_56968009','56968009','http://snomed.info/sct','Asthma caused by wood dust (disorder)','56968009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1388_57607007','57607007','http://snomed.info/sct','Occupational asthma (disorder)','57607007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1388_59786004','59786004','http://snomed.info/sct','Weavers'' cough (disorder)','59786004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2115_Q36.0','Q36.0','http://hl7.org/fhir/sid/icd-10-cm','Cleft lip, bilateral','Q360','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2115_Q36.1','Q36.1','http://hl7.org/fhir/sid/icd-10-cm','Cleft lip, median','Q361','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2115_Q36.9','Q36.9','http://hl7.org/fhir/sid/icd-10-cm','Cleft lip, unilateral','Q369','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.289_T58.01XA','T58.01XA','http://hl7.org/fhir/sid/icd-10-cm','Toxic effect of carbon monoxide from motor vehicle exhaust, accidental (unintentional), initial encounter','T5801XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.289_T58.02XA','T58.02XA','http://hl7.org/fhir/sid/icd-10-cm','Toxic effect of carbon monoxide from motor vehicle exhaust, intentional self-harm, initial encounter','T5802XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.289_T58.03XA','T58.03XA','http://hl7.org/fhir/sid/icd-10-cm','Toxic effect of carbon monoxide from motor vehicle exhaust, assault, initial encounter','T5803XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.289_T58.04XA','T58.04XA','http://hl7.org/fhir/sid/icd-10-cm','Toxic effect of carbon monoxide from motor vehicle exhaust, undetermined, initial encounter','T5804XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.289_T58.11XA','T58.11XA','http://hl7.org/fhir/sid/icd-10-cm','Toxic effect of carbon monoxide from utility gas, accidental (unintentional), initial encounter','T5811XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.289_T58.12XA','T58.12XA','http://hl7.org/fhir/sid/icd-10-cm','Toxic effect of carbon monoxide from utility gas, intentional self-harm, initial encounter','T5812XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.289_T58.13XA','T58.13XA','http://hl7.org/fhir/sid/icd-10-cm','Toxic effect of carbon monoxide from utility gas, assault, initial encounter','T5813XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.289_T58.14XA','T58.14XA','http://hl7.org/fhir/sid/icd-10-cm','Toxic effect of carbon monoxide from utility gas, undetermined, initial encounter','T5814XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.289_T58.2X1A','T58.2X1A','http://hl7.org/fhir/sid/icd-10-cm','Toxic effect of carbon monoxide from incomplete combustion of other domestic fuels, accidental (unintentional), initial encounter','T582X1A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.289_T58.2X2A','T58.2X2A','http://hl7.org/fhir/sid/icd-10-cm','Toxic effect of carbon monoxide from incomplete combustion of other domestic fuels, intentional self-harm, initial encounter','T582X2A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.289_T58.2X3A','T58.2X3A','http://hl7.org/fhir/sid/icd-10-cm','Toxic effect of carbon monoxide from incomplete combustion of other domestic fuels, assault, initial encounter','T582X3A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.289_T58.2X4A','T58.2X4A','http://hl7.org/fhir/sid/icd-10-cm','Toxic effect of carbon monoxide from incomplete combustion of other domestic fuels, undetermined, initial encounter','T582X4A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.289_T58.8X1A','T58.8X1A','http://hl7.org/fhir/sid/icd-10-cm','Toxic effect of carbon monoxide from other source, accidental (unintentional), initial encounter','T588X1A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.289_T58.8X2A','T58.8X2A','http://hl7.org/fhir/sid/icd-10-cm','Toxic effect of carbon monoxide from other source, intentional self-harm, initial encounter','T588X2A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.289_T58.8X3A','T58.8X3A','http://hl7.org/fhir/sid/icd-10-cm','Toxic effect of carbon monoxide from other source, assault, initial encounter','T588X3A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.289_T58.8X4A','T58.8X4A','http://hl7.org/fhir/sid/icd-10-cm','Toxic effect of carbon monoxide from other source, undetermined, initial encounter','T588X4A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.289_T58.91XA','T58.91XA','http://hl7.org/fhir/sid/icd-10-cm','Toxic effect of carbon monoxide from unspecified source, accidental (unintentional), initial encounter','T5891XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.289_T58.92XA','T58.92XA','http://hl7.org/fhir/sid/icd-10-cm','Toxic effect of carbon monoxide from unspecified source, intentional self-harm, initial encounter','T5892XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.289_T58.93XA','T58.93XA','http://hl7.org/fhir/sid/icd-10-cm','Toxic effect of carbon monoxide from unspecified source, assault, initial encounter','T5893XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.289_T58.94XA','T58.94XA','http://hl7.org/fhir/sid/icd-10-cm','Toxic effect of carbon monoxide from unspecified source, undetermined, initial encounter','T5894XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1387_897031002','897031002','http://snomed.info/sct','Acute flaccid myelitis (disorder)','897031002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2116_63061000119104','63061000119104','http://snomed.info/sct','Fetal cleft lip (disorder)','63061000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1269_11999007','11999007','http://snomed.info/sct','Inactive tuberculosis (finding)','11999007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1269_428697002','428697002','http://snomed.info/sct','Inactive tuberculosis of lung (finding)','428697002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2113_O35.0','O35.0','http://hl7.org/fhir/sid/icd-10-cm','Maternal care for (suspected) central nervous system malformation in fetus','O350','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2113_O35.02X0','O35.02X0','http://hl7.org/fhir/sid/icd-10-cm','Maternal care for (suspected) central nervous system malformation or damage in fetus, anencephaly, not applicable or unspecified','O3502X0','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2113_O35.02X1','O35.02X1','http://hl7.org/fhir/sid/icd-10-cm','Maternal care for (suspected) central nervous system malformation or damage in fetus, anencephaly, fetus 1','O3502X1','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2113_O35.02X2','O35.02X2','http://hl7.org/fhir/sid/icd-10-cm','Maternal care for (suspected) central nervous system malformation or damage in fetus, anencephaly, fetus 2','O3502X2','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2113_O35.02X3','O35.02X3','http://hl7.org/fhir/sid/icd-10-cm','Maternal care for (suspected) central nervous system malformation or damage in fetus, anencephaly, fetus 3','O3502X3','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2113_O35.02X4','O35.02X4','http://hl7.org/fhir/sid/icd-10-cm','Maternal care for (suspected) central nervous system malformation or damage in fetus, anencephaly, fetus 4','O3502X4','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2113_O35.02X5','O35.02X5','http://hl7.org/fhir/sid/icd-10-cm','Maternal care for (suspected) central nervous system malformation or damage in fetus, anencephaly, fetus 5','O3502X5','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2113_O35.02X9','O35.02X9','http://hl7.org/fhir/sid/icd-10-cm','Maternal care for (suspected) central nervous system malformation or damage in fetus, anencephaly, other fetus','O3502X9','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2234_B25.0','B25.0','http://hl7.org/fhir/sid/icd-10-cm','Cytomegaloviral pneumonitis','B250','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2234_B25.1','B25.1','http://hl7.org/fhir/sid/icd-10-cm','Cytomegaloviral hepatitis','B251','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2234_B25.2','B25.2','http://hl7.org/fhir/sid/icd-10-cm','Cytomegaloviral pancreatitis','B252','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2234_B25.8','B25.8','http://hl7.org/fhir/sid/icd-10-cm','Other cytomegaloviral diseases','B258','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2234_B25.9','B25.9','http://hl7.org/fhir/sid/icd-10-cm','Cytomegaloviral disease, unspecified','B259','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2234_B27.10','B27.10','http://hl7.org/fhir/sid/icd-10-cm','Cytomegaloviral mononucleosis without complications','B2710','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2234_B27.11','B27.11','http://hl7.org/fhir/sid/icd-10-cm','Cytomegaloviral mononucleosis with polyneuropathy','B2711','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2234_B27.19','B27.19','http://hl7.org/fhir/sid/icd-10-cm','Cytomegaloviral mononucleosis with other complication','B2719','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2234_B27.12','B27.12','http://hl7.org/fhir/sid/icd-10-cm','Cytomegaloviral mononucleosis with meningitis','B2712','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2234_P35.1','P35.1','http://hl7.org/fhir/sid/icd-10-cm','Congenital cytomegalovirus infection','P351','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2114_1145543005','1145543005','http://snomed.info/sct','Complete left cleft lip and incomplete right cleft lip (disorder)','1145543005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2114_1145544004','1145544004','http://snomed.info/sct','Complete right cleft lip and incomplete left cleft lip (disorder)','1145544004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2114_1231525004','1231525004','http://snomed.info/sct','Complete cleft lip (disorder)','1231525004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2114_204608004','204608004','http://snomed.info/sct','Central cleft lip (disorder)','204608004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2114_253989009','253989009','http://snomed.info/sct','Bilateral incomplete cleft lip and bilateral incomplete cleft of alveolar process of maxilla (disorder)','253989009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2114_304068004','304068004','http://snomed.info/sct','Bilateral cleft lip (disorder)','304068004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2114_373643003','373643003','http://snomed.info/sct','Cleft lip and cleft of alveolar process of maxilla (disorder)','373643003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2114_62815003','62815003','http://snomed.info/sct','Incomplete bilateral cleft lip (disorder)','62815003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2114_6936002','6936002','http://snomed.info/sct','Cleft lip sequence (disorder)','6936002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2114_699700006','699700006','http://snomed.info/sct','Median cleft lip and cleft of alveolar process of maxilla (disorder)','699700006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2114_718552009','718552009','http://snomed.info/sct','Familial median cleft of upper and lower lip (disorder)','718552009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2114_722201004','722201004','http://snomed.info/sct','Median cleft of upper lip, corpus callosum lipoma, cutaneous polyp syndrome (disorder)','722201004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2114_723383005','723383005','http://snomed.info/sct','Midline cleft of lower lip (disorder)','723383005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2114_723403008','723403008','http://snomed.info/sct','Microbrachycephaly, ptosis, cleft lip syndrome (disorder)','723403008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2114_725149008','725149008','http://snomed.info/sct','Auricular abnormality, cleft lip, ocular abnormality syndrome (disorder)','725149008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2114_732247000','732247000','http://snomed.info/sct','Cleft lip retinopathy syndrome (disorder)','732247000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2114_763498007','763498007','http://snomed.info/sct','Incomplete left cleft lip and incomplete cleft of left alveolar process of maxilla (disorder)','763498007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2114_763499004','763499004','http://snomed.info/sct','Incomplete right cleft lip and incomplete cleft of right alveolar process of maxilla (disorder)','763499004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2114_763727005','763727005','http://snomed.info/sct','Complete left cleft lip and complete cleft of left alveolar process of maxilla (disorder)','763727005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2114_763728000','763728000','http://snomed.info/sct','Complete right cleft lip and complete cleft of right alveolar process of maxilla (disorder)','763728000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2114_763733001','763733001','http://snomed.info/sct','Complete left cleft lip (disorder)','763733001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2114_763734007','763734007','http://snomed.info/sct','Complete right cleft lip (disorder)','763734007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2114_763735008','763735008','http://snomed.info/sct','Bilateral complete cleft lip and bilateral complete cleft of alveolar process of maxilla (disorder)','763735008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2114_763753002','763753002','http://snomed.info/sct','Incomplete right cleft lip (disorder)','763753002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2114_763754008','763754008','http://snomed.info/sct','Incomplete left cleft lip (disorder)','763754008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2114_764091001','764091001','http://snomed.info/sct','Right cleft lip (disorder)','764091001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2114_764092008','764092008','http://snomed.info/sct','Left cleft lip (disorder)','764092008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2114_77414002','77414002','http://snomed.info/sct','Cheilognathoschisis (disorder)','77414002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2114_788875002','788875002','http://snomed.info/sct','Bilateral cleft lip and bilateral cleft of alveolar process of maxilla (disorder)','788875002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2114_80281008','80281008','http://snomed.info/sct','Cleft lip (disorder)','80281008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2114_80446009','80446009','http://snomed.info/sct','Complete bilateral cleft lip (disorder)','80446009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2114_88659005','88659005','http://snomed.info/sct','Cheilognathoprosoposchisis (disorder)','88659005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1384_1290801000000102','1290801000000102','http://snomed.info/sct','Disorder of brain caused by monkeypox virus (disorder)','1290801000000102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1384_1290821000000106','1290821000000106','http://snomed.info/sct','Disorder of cornea caused by monkeypox virus (disorder)','1290821000000106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1384_1290841000000104','1290841000000104','http://snomed.info/sct','Sepsis caused by monkeypox virus (disorder)','1290841000000104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1384_359811007','359811007','http://snomed.info/sct','Human monkeypox (disorder)','359811007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1384_359814004','359814004','http://snomed.info/sct','Monkeypox (disorder)','359814004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2111_Q00.0','Q00.0','http://hl7.org/fhir/sid/icd-10-cm','Anencephaly','Q000','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2111_Q00.1','Q00.1','http://hl7.org/fhir/sid/icd-10-cm','Craniorachischisis','Q001','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2232_P35.1','P35.1','http://hl7.org/fhir/sid/icd-10-cm','Congenital cytomegalovirus infection','P351','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2112_609416008','609416008','http://snomed.info/sct','Suspected fetal anencephaly (situation)','609416008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2112_609417004','609417004','http://snomed.info/sct','Fetal anencephaly (disorder)','609417004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2233_1085371000119105','1085371000119105','http://snomed.info/sct','Polyneuropathy due to cytomegaloviral mononucleosis (disorder)','1085371000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2233_1085381000119108','1085381000119108','http://snomed.info/sct','Cytomegalovirus viremia (disorder)','1085381000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2233_1163079004','1163079004','http://snomed.info/sct','Polyneuropathy caused by human Cytomegalovirus 5 (disorder)','1163079004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2233_1163082009','1163082009','http://snomed.info/sct','Dacryoadenitis caused by Cytomegalovirus (disorder)','1163082009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2233_15685561000119102','15685561000119102','http://snomed.info/sct','Retinitis of right eye caused by cytomegalovirus (disorder)','15685561000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2233_15685601000119102','15685601000119102','http://snomed.info/sct','Retinitis of bilateral eyes caused by cytomegalovirus (disorder)','15685601000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2233_15685641000119100','15685641000119100','http://snomed.info/sct','Retinitis of left eye caused by cytomegalovirus (disorder)','15685641000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2233_15969461000119103','15969461000119103','http://snomed.info/sct','Large liver due to infectious mononucleosis caused by Cytomegalovirus (disorder)','15969461000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2233_16196000','16196000','http://snomed.info/sct','Infectious mononucleosis caused by Cytomegalovirus (disorder)','16196000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2233_186698009','186698009','http://snomed.info/sct','Cytomegalovirus hepatitis (disorder)','186698009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2233_22455005','22455005','http://snomed.info/sct','Cytomegaloviral retinitis (disorder)','22455005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2233_232311007','232311007','http://snomed.info/sct','Endocochlear cytomegalovirus infection (disorder)','232311007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2233_235749000','235749000','http://snomed.info/sct','Cytomegaloviral colitis (disorder)','235749000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2233_235947007','235947007','http://snomed.info/sct','Cytomegaloviral pancreatitis (disorder)','235947007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2233_236590008','236590008','http://snomed.info/sct','Cytomegalovirus-induced glomerulonephritis (disorder)','236590008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2233_28944009','28944009','http://snomed.info/sct','Cytomegalovirus infection (disorder)','28944009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2233_402122002','402122002','http://snomed.info/sct','Cytomegalovirus infection of skin (disorder)','402122002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2233_406570003','406570003','http://snomed.info/sct','Cytomegalovirus infection of the central nervous system (disorder)','406570003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2233_426137009','426137009','http://snomed.info/sct','Cytomegaloviral enteritis (disorder)','426137009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2233_428217009','428217009','http://snomed.info/sct','Disseminated cytomegalovirus infection (disorder)','428217009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2233_429300008','429300008','http://snomed.info/sct','Cytomegaloviral gastritis (disorder)','429300008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2233_689981000119103','689981000119103','http://snomed.info/sct','Ulcer of skin caused by Cytomegalovirus (disorder)','689981000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2233_689991000119100','689991000119100','http://snomed.info/sct','Gastric ulcer caused by cytomegalovirus (disorder)','689991000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2233_711616006','711616006','http://snomed.info/sct','Chorioretinitis caused by Cytomegalovirus (disorder)','711616006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2233_713045003','713045003','http://snomed.info/sct','Esophagitis caused by Cytomegalovirus (disorder)','713045003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2233_7678002','7678002','http://snomed.info/sct','Cytomegaloviral pneumonia (disorder)','7678002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2233_840504006','840504006','http://snomed.info/sct','Duodenitis caused by Cytomegalovirus (disorder)','840504006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2233_866060005','866060005','http://snomed.info/sct','Myelitis caused by Cytomegalovirus (disorder)','866060005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2233_93891000119100','93891000119100','http://snomed.info/sct','Ulcerative cytomegalovirus lesion (disorder)','93891000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2233_1085361000119104','1085361000119104','http://snomed.info/sct','Meningitis due to Cytomegaloviral Mononucleosis (disorder)','1085361000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2233_276701009','276701009','http://snomed.info/sct','Fetal cytomegalovirus syndrome (disorder)','276701009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2233_59527008','59527008','http://snomed.info/sct','Congenital cytomegalovirus infection (disorder)','59527008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2233_713722001','713722001','http://snomed.info/sct','Infection caused by Cytomegalovirus co-occurrent with human immunodeficiency virus infection (disorder)','713722001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2233_721770002','721770002','http://snomed.info/sct','Meningitis caused by Human cytomegalovirus 5 (disorder)','721770002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2233_83159006','83159006','http://snomed.info/sct','Cytomegalovirus encephalitis (disorder)','83159006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1264_230187000','230187000','http://snomed.info/sct','Granulomatous amebic encephalitis (disorder)','230187000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1385_B04','B04','http://hl7.org/fhir/sid/icd-10-cm','Monkeypox','B04','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2110_1169358003','1169358003','http://snomed.info/sct','Multinucleated neurons, anhydramnios, renal dysplasia, cerebellar hypoplasia, hydranencephaly syndrome (disorder)','1169358003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2110_1172705006','1172705006','http://snomed.info/sct','Lethal hydranencephaly, diaphragmatic hernia syndrome (disorder)','1172705006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2110_203923004','203923004','http://snomed.info/sct','Acrania (disorder)','203923004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2110_26595007','26595007','http://snomed.info/sct','Congenital absence of part of brain (disorder)','26595007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2110_32219008','32219008','http://snomed.info/sct','Craniorachischisis (disorder)','32219008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2110_359824007','359824007','http://snomed.info/sct','Incomplete anencephaly (disorder)','359824007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2110_417658006','417658006','http://snomed.info/sct','Holoanencephaly (disorder)','417658006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2110_717939009','717939009','http://snomed.info/sct','Anencephaly without rachischisis (disorder)','717939009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2110_84461004','84461004','http://snomed.info/sct','Exencephaly (disorder)','84461004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2110_85641006','85641006','http://snomed.info/sct','Hemianencephaly (disorder)','85641006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2110_89369001','89369001','http://snomed.info/sct','Anencephalus (disorder)','89369001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2110_91885001','91885001','http://snomed.info/sct','Congenital absence of frontal bone (disorder)','91885001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2110_91889007','91889007','http://snomed.info/sct','Congenital absence of interparietal bone (disorder)','91889007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2110_91902004','91902004','http://snomed.info/sct','Congenital absence of parietal bone (disorder)','91902004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2231_276701009','276701009','http://snomed.info/sct','Fetal cytomegalovirus syndrome (disorder)','276701009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2231_59527008','59527008','http://snomed.info/sct','Congenital cytomegalovirus infection (disorder)','59527008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.35_27836007','27836007','http://snomed.info/sct','Pertussis (disorder)','27836007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.35_408682005','408682005','http://snomed.info/sct','Healthcare associated pertussis (disorder)','408682005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.35_59475000','59475000','http://snomed.info/sct','Pneumonia in pertussis (disorder)','59475000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.35_93417001','93417001','http://snomed.info/sct','Conjunctivitis caused by Bordetella pertussis (disorder)','93417001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.35_192650000','192650000','http://snomed.info/sct','Meningitis caused by Bordetella pertussis (disorder)','192650000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.36_A37.0','A37.0','http://hl7.org/fhir/sid/icd-10-cm','Whooping cough due to Bordetella pertussis','A370','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.36_A37.00','A37.00','http://hl7.org/fhir/sid/icd-10-cm','Whooping cough due to Bordetella pertussis without pneumonia','A3700','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.36_A37.01','A37.01','http://hl7.org/fhir/sid/icd-10-cm','Whooping cough due to Bordetella pertussis with pneumonia','A3701','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.280_A48.1','A48.1','http://hl7.org/fhir/sid/icd-10-cm','Legionnaires'' disease','A481','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.280_A48.2','A48.2','http://hl7.org/fhir/sid/icd-10-cm','Nonpneumonic Legionnaires'' disease [Pontiac fever]','A482','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.150_B03','B03','http://hl7.org/fhir/sid/icd-10-cm','Smallpox','B03','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.271_186957004','186957004','http://snomed.info/sct','Canicola fever (disorder)','186957004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.271_22312005','22312005','http://snomed.info/sct','Infection caused by Leptospira bataviae (disorder)','22312005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.271_240673004','240673004','http://snomed.info/sct','Leptospiral rash (disorder)','240673004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.271_240674005','240674005','http://snomed.info/sct','Leptospiral hemorrhage (disorder)','240674005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.271_26275000','26275000','http://snomed.info/sct','Fever due to Leptospira autumnalis (disorder)','26275000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.271_32266007','32266007','http://snomed.info/sct','Anicteric leptospirosis (disorder)','32266007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.271_398067003','398067003','http://snomed.info/sct','Icteric leptospirosis (disorder)','398067003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.271_398222003','398222003','http://snomed.info/sct','Leptospirosis icterohemorrhagica (disorder)','398222003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.271_402959002','402959002','http://snomed.info/sct','Leptospirosis with cutaneous involvement (disorder)','402959002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.271_406589003','406589003','http://snomed.info/sct','Leptospira infection of the central nervous system (disorder)','406589003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.271_410476009','410476009','http://snomed.info/sct','Uveitis due to leptospirosis (disorder)','410476009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.271_65267003','65267003','http://snomed.info/sct','Infection caused by Leptospira Pyrogenes (disorder)','65267003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.271_68013003','68013003','http://snomed.info/sct','Infection caused by Leptospira australis (disorder)','68013003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.271_70543009','70543009','http://snomed.info/sct','Infection caused by Leptospira Grippotyphosa (disorder)','70543009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.271_77377001','77377001','http://snomed.info/sct','Leptospirosis (disorder)','77377001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.271_79309005','79309005','http://snomed.info/sct','Leptospirosis leptospiremic phase (disorder)','79309005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.271_80194003','80194003','http://snomed.info/sct','Leptospirosis immune phase (disorder)','80194003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.271_871841000','871841000','http://snomed.info/sct','Pulmonary hemorrhage due to leptospirosis (disorder)','871841000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.271_871842007','871842007','http://snomed.info/sct','Intracranial hemorrhage due to leptospirosis (disorder)','871842007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.271_93465000','93465000','http://snomed.info/sct','Nanukayami (disorder)','93465000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.271_186956008','186956008','http://snomed.info/sct','Leptospiral meningitis (disorder)','186956008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.271_25957002','25957002','http://snomed.info/sct','Aseptic leptospiral meningitis (disorder)','25957002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.271_284184004','284184004','http://snomed.info/sct','Lepthangamushi syndrome (disorder)','284184004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.271_840440006','840440006','http://snomed.info/sct','Encephalitis caused by Leptospira (disorder)','840440006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.392_240585002','240585002','http://snomed.info/sct','Chancroid - anogenital ulcer (disorder)','240585002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.392_240586001','240586001','http://snomed.info/sct','Chancroid - extragenital ulcer (disorder)','240586001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.392_240587005','240587005','http://snomed.info/sct','Chancroid - latent infection (disorder)','240587005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.392_266143009','266143009','http://snomed.info/sct','Chancroid (disorder)','266143009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.392_402954007','402954007','http://snomed.info/sct','Penile chancroid (disorder)','402954007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.392_402955008','402955008','http://snomed.info/sct','Vulval chancroid (disorder)','402955008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1393_102422007','102422007','http://snomed.info/sct','Exposure to environmental pollution, occupational (event)','102422007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1393_102425009','102425009','http://snomed.info/sct','Exposure to polluted air, occupational (event)','102425009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1393_102428006','102428006','http://snomed.info/sct','Exposure to polluted water, occupational (event)','102428006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1393_102433005','102433005','http://snomed.info/sct','Exposure to polluted soil, occupational (event)','102433005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1393_102436002','102436002','http://snomed.info/sct','Exposure to chemical pollution, occupational (event)','102436002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1393_102439009','102439009','http://snomed.info/sct','Exposure to toxic waste, occupational (event)','102439009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1393_102442003','102442003','http://snomed.info/sct','Exposure to toxic agricultural agents, occupational (event)','102442003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1393_102445001','102445001','http://snomed.info/sct','Exposure to toxic dust, occupational (event)','102445001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1393_16090571000119109','16090571000119109','http://snomed.info/sct','Occupational exposure to toxic agents (event)','16090571000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1393_16090691000119109','16090691000119109','http://snomed.info/sct','Occupational exposure to dust (event)','16090691000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1393_16090731000119102','16090731000119102','http://snomed.info/sct','Occupational exposure to risk factor (event)','16090731000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1393_16090771000119104','16090771000119104','http://snomed.info/sct','Occupational exposure to environmental tobacco smoke (event)','16090771000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.151_409641002','409641002','http://snomed.info/sct','Hemorrhagic smallpox (disorder)','409641002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.151_47452006','47452006','http://snomed.info/sct','Variola major (disorder)','47452006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.151_51423006','51423006','http://snomed.info/sct','Modified smallpox (disorder)','51423006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.151_67924001','67924001','http://snomed.info/sct','Smallpox (disorder)','67924001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.151_72294005','72294005','http://snomed.info/sct','Alastrim (disorder)','72294005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.151_74724001','74724001','http://snomed.info/sct','Smallpox without rash (disorder)','74724001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.151_86497005','86497005','http://snomed.info/sct','Flat-type smallpox (disorder)','86497005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.393_A57','A57','http://hl7.org/fhir/sid/icd-10-cm','Chancroid','A57','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.273_A27','A27','http://hl7.org/fhir/sid/icd-10-cm','Leptospirosis','A27','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.273_A27.0','A27.0','http://hl7.org/fhir/sid/icd-10-cm','Leptospirosis icterohemorrhagica','A270','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.273_A27.8','A27.8','http://hl7.org/fhir/sid/icd-10-cm','Other forms of leptospirosis','A278','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.273_A27.89','A27.89','http://hl7.org/fhir/sid/icd-10-cm','Other forms of leptospirosis','A2789','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.273_A27.9','A27.9','http://hl7.org/fhir/sid/icd-10-cm','Leptospirosis, unspecified','A279','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.273_A27.81','A27.81','http://hl7.org/fhir/sid/icd-10-cm','Aseptic meningitis in leptospirosis','A2781','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.153_B17.1','B17.1','http://hl7.org/fhir/sid/icd-10-cm','Acute hepatitis C','B171','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.153_B17.10','B17.10','http://hl7.org/fhir/sid/icd-10-cm','Acute hepatitis C without hepatic coma','B1710','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.153_B17.11','B17.11','http://hl7.org/fhir/sid/icd-10-cm','Acute hepatitis C with hepatic coma','B1711','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.153_B18.2','B18.2','http://hl7.org/fhir/sid/icd-10-cm','Chronic viral hepatitis C','B182','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.153_B19.2','B19.2','http://hl7.org/fhir/sid/icd-10-cm','Unspecified viral hepatitis C','B192','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.153_B19.20','B19.20','http://hl7.org/fhir/sid/icd-10-cm','Unspecified viral hepatitis C without hepatic coma','B1920','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.153_B19.21','B19.21','http://hl7.org/fhir/sid/icd-10-cm','Unspecified viral hepatitis C with hepatic coma','B1921','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_1010615002','1010615002','http://snomed.info/sct','Late syphilis of lung (disorder)','1010615002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_10345003','10345003','http://snomed.info/sct','Primary syphilis of tonsils (disorder)','10345003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_104471000119105','104471000119105','http://snomed.info/sct','Charcot arthropathy due to syphilis (disorder)','104471000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_1052296002','1052296002','http://snomed.info/sct','Gastritis due to secondary syphilis (disorder)','1052296002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_1052300001','1052300001','http://snomed.info/sct','Proctocolitis due to secondary syphilis (disorder)','1052300001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_1052319006','1052319006','http://snomed.info/sct','Secondary syphilis of nervous system (disorder)','1052319006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_1052321001','1052321001','http://snomed.info/sct','Secondary syphilis of digestive system (disorder)','1052321001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_1052322008','1052322008','http://snomed.info/sct','Secondary syphilis of eye (disorder)','1052322008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_1052323003','1052323003','http://snomed.info/sct','Secondary syphilis of musculoskeletal system (disorder)','1052323003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_10759921000119107','10759921000119107','http://snomed.info/sct','Syphilis in mother complicating childbirth (disorder)','10759921000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_1107004','1107004','http://snomed.info/sct','Early latent syphilis, positive serology, negative cerebrospinal fluid, with relapse after treatment (disorder)','1107004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_11338007','11338007','http://snomed.info/sct','Syphilitic episcleritis (disorder)','11338007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_1142043006','1142043006','http://snomed.info/sct','Regurgitation of pulmonary valve due to late syphilis (disorder)','1142043006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_1142099009','1142099009','http://snomed.info/sct','Secondary syphilis of synovium (disorder)','1142099009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_1163466000','1163466000','http://snomed.info/sct','Infection of eyelid caused by Treponema pallidum pertenue (disorder)','1163466000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_1177029002','1177029002','http://snomed.info/sct','Intermediate uveitis caused by Treponema pallidum (disorder)','1177029002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_1177060002','1177060002','http://snomed.info/sct','Tic disorder due to neurosyphilis (disorder)','1177060002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_1177076006','1177076006','http://snomed.info/sct','Dacryoadenitis caused by Treponema pallidum (disorder)','1177076006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_12232008','12232008','http://snomed.info/sct','Syphilitic aneurysm of aorta (disorder)','12232008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_127058009','127058009','http://snomed.info/sct','Paroxysmal cold hemoglobinuria associated with tertiary syphilis (disorder)','127058009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_13095005','13095005','http://snomed.info/sct','Primary symptomatic early syphilis (disorder)','13095005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_13310005','13310005','http://snomed.info/sct','Taboparesis (disorder)','13310005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_13731006','13731006','http://snomed.info/sct','Secondary symptomatic early syphilis (disorder)','13731006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_15677801000119103','15677801000119103','http://snomed.info/sct','Chorioretinitis of right eye due to secondary syphilis (disorder)','15677801000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_15677841000119101','15677841000119101','http://snomed.info/sct','Chorioretinitis of bilateral eyes due to secondary syphilis (disorder)','15677841000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_15677881000119106','15677881000119106','http://snomed.info/sct','Chorioretinitis of left eye due to secondary syphilis (disorder)','15677881000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_15679481000119104','15679481000119104','http://snomed.info/sct','Iritis of right eye caused by Treponema pallidum (disorder)','15679481000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_15679561000119109','15679561000119109','http://snomed.info/sct','Iritis of left eye caused by Treponema pallidum (disorder)','15679561000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_15679681000119101','15679681000119101','http://snomed.info/sct','Iritis of bilateral eyes caused by Treponema pallidum (disorder)','15679681000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_15685441000119102','15685441000119102','http://snomed.info/sct','Retinitis of bilateral eyes caused by Treponema pallidum (disorder)','15685441000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_15685481000119107','15685481000119107','http://snomed.info/sct','Retinitis of right eye caused by Treponema pallidum (disorder)','15685481000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_15685521000119107','15685521000119107','http://snomed.info/sct','Retinitis of left eye caused by Treponema pallidum (disorder)','15685521000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_15993311000119106','15993311000119106','http://snomed.info/sct','Iritis of right eye due to secondary syphilis (disorder)','15993311000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_15993351000119107','15993351000119107','http://snomed.info/sct','Iritis of left eye due to secondary syphilis (disorder)','15993351000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_15993391000119102','15993391000119102','http://snomed.info/sct','Retinitis of bilateral eyes due to secondary syphilis (disorder)','15993391000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_15993471000119105','15993471000119105','http://snomed.info/sct','Iritis of bilateral eyes due to secondary syphilis (disorder)','15993471000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_16070004','16070004','http://snomed.info/sct','Syphilitic cirrhosis (disorder)','16070004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_186846005','186846005','http://snomed.info/sct','Early symptomatic syphilis (disorder)','186846005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_186847001','186847001','http://snomed.info/sct','Primary genital syphilis (disorder)','186847001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_186850003','186850003','http://snomed.info/sct','Secondary syphilis of skin and mucous membrane (disorder)','186850003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_186854007','186854007','http://snomed.info/sct','Uveitis due to secondary syphilis (disorder)','186854007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_186861006','186861006','http://snomed.info/sct','Secondary syphilis relapse (disorder)','186861006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_186863009','186863009','http://snomed.info/sct','Acute secondary syphilitic meningitis (disorder)','186863009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_186867005','186867005','http://snomed.info/sct','Latent early syphilis (disorder)','186867005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_186868000','186868000','http://snomed.info/sct','Serological relapse after treatment of latent early syphilis (disorder)','186868000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_186875004','186875004','http://snomed.info/sct','Syphilitic endocarditis of mitral valve (disorder)','186875004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_186877007','186877007','http://snomed.info/sct','Syphilitic endocarditis of tricuspid valve (disorder)','186877007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_186878002','186878002','http://snomed.info/sct','Syphilitic endocarditis of pulmonary valve (disorder)','186878002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_186893003','186893003','http://snomed.info/sct','Rupture of syphilitic cerebral aneurysm (disorder)','186893003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_186899004','186899004','http://snomed.info/sct','Syphilis of synovium, tendon or bursa (disorder)','186899004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_186903006','186903006','http://snomed.info/sct','Late latent syphilis (disorder)','186903006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_19206003','19206003','http://snomed.info/sct','Syphilitic acoustic neuritis (disorder)','19206003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_192647003','192647003','http://snomed.info/sct','Secondary syphilitic meningitis (disorder)','192647003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_193786000','193786000','http://snomed.info/sct','Keratitis due to syphilis (disorder)','193786000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_194907008','194907008','http://snomed.info/sct','Acute syphilitic pericarditis (disorder)','194907008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_194947001','194947001','http://snomed.info/sct','Acute myocarditis caused by Treponema pallidum (disorder)','194947001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_197305002','197305002','http://snomed.info/sct','Syphilitic portal cirrhosis (disorder)','197305002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_197347003','197347003','http://snomed.info/sct','Hepatitis in late syphilis (disorder)','197347003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_197348008','197348008','http://snomed.info/sct','Hepatitis in secondary syphilis (disorder)','197348008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_197757004','197757004','http://snomed.info/sct','Late syphilis of kidney (disorder)','197757004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_197966009','197966009','http://snomed.info/sct','Syphilitic prostatitis (disorder)','197966009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_199154009','199154009','http://snomed.info/sct','Maternal syphilis during pregnancy, childbirth and the puerperium (disorder)','199154009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_199156006','199156006','http://snomed.info/sct','Maternal syphilis during pregnancy - baby delivered (disorder)','199156006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_199157002','199157002','http://snomed.info/sct','Maternal syphilis in the puerperium - baby delivered during current episode of care (disorder)','199157002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_199158007','199158007','http://snomed.info/sct','Maternal syphilis during pregnancy - baby not yet delivered (disorder)','199158007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_199159004','199159004','http://snomed.info/sct','Maternal syphilis in the puerperium - baby delivered during previous episode of care (disorder)','199159004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_201738001','201738001','http://snomed.info/sct','Post-infective arthropathy in syphilis (disorder)','201738001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_202933002','202933002','http://snomed.info/sct','Bursitis caused by Treponema pallidum (disorder)','202933002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_20735004','20735004','http://snomed.info/sct','Syphilitic aortitis (disorder)','20735004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_21523006','21523006','http://snomed.info/sct','Syphilitic gumma of central nervous system (disorder)','21523006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_22386003','22386003','http://snomed.info/sct','Syphilitic optic atrophy (disorder)','22386003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_230735006','230735006','http://snomed.info/sct','Syphilitic cerebral arteritis (disorder)','230735006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_232313005','232313005','http://snomed.info/sct','Endocochlear syphilis (disorder)','232313005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_232367004','232367004','http://snomed.info/sct','Nasal syphilis (disorder)','232367004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_233849007','233849007','http://snomed.info/sct','Syphilitic valve disease (disorder)','233849007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_234017002','234017002','http://snomed.info/sct','Syphilitic aneurysm (disorder)','234017002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_235032001','235032001','http://snomed.info/sct','Syphilitic oral leukoplakia (disorder)','235032001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_235062007','235062007','http://snomed.info/sct','Oral syphilis (disorder)','235062007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_235064008','235064008','http://snomed.info/sct','Syphilitic gumma of oral cavity (disorder)','235064008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_235065009','235065009','http://snomed.info/sct','Syphilitic oral snail track ulcer (disorder)','235065009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_23550005','23550005','http://snomed.info/sct','Syphilis of bursa (disorder)','23550005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_237446005','237446005','http://snomed.info/sct','Syphilis of breast (disorder)','237446005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_237447001','237447001','http://snomed.info/sct','Primary syphilis of nipple (disorder)','237447001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_239825002','239825002','http://snomed.info/sct','Tabetic joint (disorder)','239825002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_240552005','240552005','http://snomed.info/sct','Juvenile tabes dorsalis (disorder)','240552005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_240553000','240553000','http://snomed.info/sct','Late congenital neurovascular syphilis (disorder)','240553000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_240555007','240555007','http://snomed.info/sct','Acquired syphilis (disorder)','240555007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_240556008','240556008','http://snomed.info/sct','Primary extragenital syphilis (disorder)','240556008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_240557004','240557004','http://snomed.info/sct','Secondary syphilis (disorder)','240557004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_240558009','240558009','http://snomed.info/sct','Macular syphilide (disorder)','240558009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_240560006','240560006','http://snomed.info/sct','Papular syphilide (disorder)','240560006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_240561005','240561005','http://snomed.info/sct','Corona veneris (disorder)','240561005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_240562003','240562003','http://snomed.info/sct','Pustular syphilide (disorder)','240562003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_240563008','240563008','http://snomed.info/sct','Syphilitic mucosal ulceration (disorder)','240563008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_240564002','240564002','http://snomed.info/sct','Secondary neurosyphilis (disorder)','240564002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_240565001','240565001','http://snomed.info/sct','Asymptomatic secondary neurosyphilis (disorder)','240565001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_240566000','240566000','http://snomed.info/sct','Gummatous neurosyphilis (disorder)','240566000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_240567009','240567009','http://snomed.info/sct','Syphilitic coronary artery disease (disorder)','240567009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_240568004','240568004','http://snomed.info/sct','Meningovascular syphilis - quaternary stage (disorder)','240568004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_240569007','240569007','http://snomed.info/sct','Syphilitic polyneuropathy (disorder)','240569007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_26039008','26039008','http://snomed.info/sct','Neurosyphilis (disorder)','26039008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_266127002','266127002','http://snomed.info/sct','Primary syphilis (disorder)','266127002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_266128007','266128007','http://snomed.info/sct','Rash of secondary syphilis (disorder)','266128007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_266130009','266130009','http://snomed.info/sct','Acquired syphilis - early latent (disorder)','266130009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_266133006','266133006','http://snomed.info/sct','Late quaternary neurosyphilis (disorder)','266133006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_266136003','266136003','http://snomed.info/sct','Acquired syphilis - late latent (disorder)','266136003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_271426000','271426000','http://snomed.info/sct','Non-venereal endemic syphilis (disorder)','271426000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_27460003','27460003','http://snomed.info/sct','Primary syphilis of breast (disorder)','27460003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_278480000','278480000','http://snomed.info/sct','Syphilitic endocarditis of aortic valve (disorder)','278480000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_278481001','278481001','http://snomed.info/sct','Quaternary syphilis (disorder)','278481001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_28198007','28198007','http://snomed.info/sct','Primary syphilis of lip (disorder)','28198007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_29500006','29500006','http://snomed.info/sct','Urethral stricture due to syphilis (disorder)','29500006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_30080002','30080002','http://snomed.info/sct','Secondary syphilitic iridocyclitis (disorder)','30080002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_302813001','302813001','http://snomed.info/sct','Syphilitic acoustic neuritis - quaternary stage (disorder)','302813001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_31015008','31015008','http://snomed.info/sct','Primary anal syphilis (disorder)','31015008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_31137003','31137003','http://snomed.info/sct','Early latent syphilis, positive serology, negative cerebrospinal fluid, less than 2 years after infection (disorder)','31137003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_312934004','312934004','http://snomed.info/sct','Syphilitic chorioretinitis (disorder)','312934004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_312955002','312955002','http://snomed.info/sct','Tertiary syphilitic chorioretinitis (disorder)','312955002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_314840009','314840009','http://snomed.info/sct','Progressive locomotor ataxia (disorder)','314840009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_315826004','315826004','http://snomed.info/sct','Tabetic neurosyphilis (disorder)','315826004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_316841006','316841006','http://snomed.info/sct','Tabes dorsalis (disorder)','316841006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_331151000119109','331151000119109','http://snomed.info/sct','Syphilitic choroiditis (disorder)','331151000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_34242002','34242002','http://snomed.info/sct','Syphilis in mother complicating pregnancy, childbirth AND/OR puerperium (disorder)','34242002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_34964002','34964002','http://snomed.info/sct','Syphilitic peritonitis (disorder)','34964002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_3589003','3589003','http://snomed.info/sct','Syphilitic pericarditis (disorder)','3589003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_36276008','36276008','http://snomed.info/sct','Syphilitic retrobulbar neuritis (disorder)','36276008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_37028008','37028008','http://snomed.info/sct','Juvenile tabes (disorder)','37028008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_371237000','371237000','http://snomed.info/sct','Syphilitic skin disorder (disorder)','371237000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_37430004','37430004','http://snomed.info/sct','Syphilis of synovium (disorder)','37430004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_37754005','37754005','http://snomed.info/sct','Asymptomatic neurosyphilis (disorder)','37754005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_39085002','39085002','http://snomed.info/sct','Secondary syphilis of mucous membrane (disorder)','39085002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_402940004','402940004','http://snomed.info/sct','Syphilitic chancre of penis (disorder)','402940004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_402941000','402941000','http://snomed.info/sct','Syphilitic chancre of vulva (disorder)','402941000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_402942007','402942007','http://snomed.info/sct','Syphilitic chancre of oral mucous membranes (disorder)','402942007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_402943002','402943002','http://snomed.info/sct','Syphilitic balanitis (disorder)','402943002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_402944008','402944008','http://snomed.info/sct','Condylomata lata of perianal skin (disorder)','402944008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_402945009','402945009','http://snomed.info/sct','Condylomata lata of penis (disorder)','402945009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_402946005','402946005','http://snomed.info/sct','Condylomata lata of vulva (disorder)','402946005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_402947001','402947001','http://snomed.info/sct','Late secondary syphilis (disorder)','402947001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_402948006','402948006','http://snomed.info/sct','Nail dystrophy due to secondary syphilis (disorder)','402948006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_402949003','402949003','http://snomed.info/sct','Nodular syphilide (disorder)','402949003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_402950003','402950003','http://snomed.info/sct','Syphilitic leukoplakia of tongue (disorder)','402950003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_402951004','402951004','http://snomed.info/sct','Oral mucous membrane lesion due to late syphilis (disorder)','402951004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_402952006','402952006','http://snomed.info/sct','Anetoderma secondary to syphilis (disorder)','402952006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_405635002','405635002','http://snomed.info/sct','Late syphilis with clinical manifestations other than neurosyphilis (disorder)','405635002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_4082005','4082005','http://snomed.info/sct','Myocarditis caused by Treponema pallidum (disorder)','4082005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_410468007','410468007','http://snomed.info/sct','Iris roseola (disorder)','410468007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_410469004','410469004','http://snomed.info/sct','Iris papulosa (disorder)','410469004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_410470003','410470003','http://snomed.info/sct','Syphilitic retinitis (disorder)','410470003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_410478005','410478005','http://snomed.info/sct','Ocular syphilis (disorder)','410478005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_42770003','42770003','http://snomed.info/sct','Syphilis of tricuspid valve (disorder)','42770003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_444150000','444150000','http://snomed.info/sct','Latent syphilis (disorder)','444150000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_44568006','44568006','http://snomed.info/sct','Syphilitic interstitial keratitis (disorder)','44568006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_4483005','4483005','http://snomed.info/sct','Syphilitic punched out ulcer (disorder)','4483005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_449773001','449773001','http://snomed.info/sct','Interstitial glossitis (disorder)','449773001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_449776009','449776009','http://snomed.info/sct','Luetic glossitis (disorder)','449776009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_45058001','45058001','http://snomed.info/sct','Syphilis of pulmonary valve (disorder)','45058001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_49923008','49923008','http://snomed.info/sct','Syphilis of tendon (disorder)','49923008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_50528008','50528008','http://snomed.info/sct','Syphilis of bone (disorder)','50528008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_51928006','51928006','http://snomed.info/sct','General paresis - neurosyphilis (disorder)','51928006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_51960003','51960003','http://snomed.info/sct','Secondary syphilis of pharynx (disorder)','51960003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_52414005','52414005','http://snomed.info/sct','Secondary syphilis of vulva (disorder)','52414005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_54274001','54274001','http://snomed.info/sct','Primary syphilis of fingers (disorder)','54274001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_55768006','55768006','http://snomed.info/sct','Syphilitic leukoderma (disorder)','55768006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_58056005','58056005','http://snomed.info/sct','Syphilis of mitral valve (disorder)','58056005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_58227000','58227000','http://snomed.info/sct','Secondary syphilis of viscera (disorder)','58227000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_59233003','59233003','http://snomed.info/sct','Secondary syphilis of skin (disorder)','59233003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_59307008','59307008','http://snomed.info/sct','Syphilitic alopecia (disorder)','59307008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_59530001','59530001','http://snomed.info/sct','Syphilis of kidney (disorder)','59530001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_59934002','59934002','http://snomed.info/sct','Secondary syphilitic adenopathy (disorder)','59934002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_60528006','60528006','http://snomed.info/sct','Secondary syphilis of mouth (disorder)','60528006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_61612001','61612001','http://snomed.info/sct','Syphilitic aortic incompetence (disorder)','61612001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_62207008','62207008','http://snomed.info/sct','Syphilitic ostial coronary disease (disorder)','62207008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_62861003','62861003','http://snomed.info/sct','Secondary syphilis, relapse (untreated) (disorder)','62861003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_63751007','63751007','http://snomed.info/sct','Secondary syphilis of bone (disorder)','63751007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_64102008','64102008','http://snomed.info/sct','Syphilitic gumma (disorder)','64102008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_66281009','66281009','http://snomed.info/sct','Chorioretinitis due to secondary syphilis (disorder)','66281009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_66887000','66887000','http://snomed.info/sct','Late syphilis, latent (positive serology, negative cephalospinal fluid 2 years after) (disorder)','66887000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_67125004','67125004','http://snomed.info/sct','Latent syphilis with positive serology (disorder)','67125004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_67391006','67391006','http://snomed.info/sct','Syphilitic endocarditis (disorder)','67391006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_69595007','69595007','http://snomed.info/sct','Secondary syphilitic periostitis (disorder)','69595007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_698725008','698725008','http://snomed.info/sct','Dementia associated with neurosyphilis (disorder)','698725008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_711617002','711617002','http://snomed.info/sct','Iritis caused by Treponema pallidum (disorder)','711617002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_713251003','713251003','http://snomed.info/sct','Gingival disease caused by Treponema pallidum (disorder)','713251003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_72083004','72083004','http://snomed.info/sct','Late syphilis (disorder)','72083004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_736686006','736686006','http://snomed.info/sct','Chancre caused by Treponema pallidum (disorder)','736686006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_75299005','75299005','http://snomed.info/sct','Spastic spinal syphilitic paralysis (disorder)','75299005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_76272004','76272004','http://snomed.info/sct','Syphilis (disorder)','76272004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_77028001','77028001','http://snomed.info/sct','Secondary syphilis of anus (disorder)','77028001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_77782006','77782006','http://snomed.info/sct','Syphilitic saddle nose (disorder)','77782006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_77939001','77939001','http://snomed.info/sct','Syphilitic disseminated retinochoroiditis (disorder)','77939001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_788975001','788975001','http://snomed.info/sct','Late syphilis of skin (disorder)','788975001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_788998009','788998009','http://snomed.info/sct','Ocular late syphilis (disorder)','788998009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_789121002','789121002','http://snomed.info/sct','Late syphilis of mucous membrane (disorder)','789121002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_80770009','80770009','http://snomed.info/sct','Secondary syphilis of liver (disorder)','80770009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_81339006','81339006','http://snomed.info/sct','Secondary syphilis of tonsil (disorder)','81339006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_82355002','82355002','http://snomed.info/sct','Syphilitic aortic stenosis (disorder)','82355002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_838317007','838317007','http://snomed.info/sct','Bursitis due to late syphilis (disorder)','838317007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_83883001','83883001','http://snomed.info/sct','Cardiovascular syphilis (disorder)','83883001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_8555001','8555001','http://snomed.info/sct','Syphilis of lung (disorder)','8555001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_85857008','85857008','http://snomed.info/sct','Secondary syphilis, relapse (treated) (disorder)','85857008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_86028001','86028001','http://snomed.info/sct','Syphilis of liver (disorder)','86028001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_860894002','860894002','http://snomed.info/sct','Episcleritis due to late syphilis (disorder)','860894002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_866090003','866090003','http://snomed.info/sct','Meningomyelitis caused by Treponema pallidum (disorder)','866090003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_866115006','866115006','http://snomed.info/sct','Lues maligna (disorder)','866115006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_870273007','870273007','http://snomed.info/sct','Posterior uveitis due to late syphilis (disorder)','870273007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_870293004','870293004','http://snomed.info/sct','Myelitis caused by Treponema pallidum (disorder)','870293004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_870319003','870319003','http://snomed.info/sct','Optic atrophy due to late syphilis (disorder)','870319003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_870331001','870331001','http://snomed.info/sct','Panuveitis caused by Treponema pallidum (disorder)','870331001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_870347004','870347004','http://snomed.info/sct','Retrobulbar neuritis due to late syphilis (disorder)','870347004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_88943008','88943008','http://snomed.info/sct','Syphilis of muscle (disorder)','88943008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_890114008','890114008','http://snomed.info/sct','Iris papulosa caused by Treponema pallidum (disorder)','890114008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_890115009','890115009','http://snomed.info/sct','Iris roseola caused by Treponema pallidum (disorder)','890115009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_91554004','91554004','http://snomed.info/sct','Condyloma latum (disorder)','91554004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_94851000119107','94851000119107','http://snomed.info/sct','Syphilitic valvular endocarditis (disorder)','94851000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_109436001','109436001','http://snomed.info/sct','Moon molar teeth (disorder)','109436001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_1142031005','1142031005','http://snomed.info/sct','Optic atrophy due to late congenital syphilis (disorder)','1142031005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_1142092000','1142092000','http://snomed.info/sct','Late congenital syphilitic osteochondropathy (disorder)','1142092000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_1142095003','1142095003','http://snomed.info/sct','Late congenital syphilis of cardiovascular system (disorder)','1142095003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_1142112002','1142112002','http://snomed.info/sct','Sensorineural deafness due to late congenital syphilis (disorder)','1142112002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_1177081002','1177081002','http://snomed.info/sct','Mulberry molar teeth (disorder)','1177081002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_186833000','186833000','http://snomed.info/sct','Early congenital syphilis - latent (disorder)','186833000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_186842007','186842007','http://snomed.info/sct','Late congenital syphilitic oculopathy (disorder)','186842007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_192008','192008','http://snomed.info/sct','Congenital syphilitic hepatomegaly (disorder)','192008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_19290004','19290004','http://snomed.info/sct','Clutton''s joints (disorder)','19290004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_230152000','230152000','http://snomed.info/sct','Late congenital syphilitic meningitis (disorder)','230152000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_230563005','230563005','http://snomed.info/sct','Late congenital syphilitic polyneuropathy (disorder)','230563005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_235898000','235898000','http://snomed.info/sct','Pericellular fibrosis of congenital syphilis (disorder)','235898000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_240554006','240554006','http://snomed.info/sct','Hutchinson''s triad (disorder)','240554006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_266125005','266125005','http://snomed.info/sct','Early congenital syphilis with symptoms (disorder)','266125005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_266126006','266126006','http://snomed.info/sct','Late congenital neurosyphilis (disorder)','266126006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_275376007','275376007','http://snomed.info/sct','Congenital syphilitic chronic coryza (disorder)','275376007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_27648007','27648007','http://snomed.info/sct','Congenital syphilitic periostitis (disorder)','27648007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_276700005','276700005','http://snomed.info/sct','Congenital syphilitic rhinitis (disorder)','276700005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_301086002','301086002','http://snomed.info/sct','Syphilitic meningitis (disorder)','301086002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_35742006','35742006','http://snomed.info/sct','Congenital syphilis (disorder)','35742006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_4359001','4359001','http://snomed.info/sct','Early congenital syphilis (less than 2 years) (disorder)','4359001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_46235002','46235002','http://snomed.info/sct','Early latent congenital syphilis, positive serology, negative spinal fluid (disorder)','46235002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_54069001','54069001','http://snomed.info/sct','Congenital syphilitic mucous patches (disorder)','54069001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_56118002','56118002','http://snomed.info/sct','Congenital syphilitic splenomegaly (disorder)','56118002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_58392004','58392004','http://snomed.info/sct','Congenital syphilitic osteochondritis (disorder)','58392004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_59721007','59721007','http://snomed.info/sct','Congenital syphilitic pemphigus (disorder)','59721007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_6267005','6267005','http://snomed.info/sct','Congenital syphilitic meningitis (disorder)','6267005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_68764005','68764005','http://snomed.info/sct','Juvenile taboparesis (disorder)','68764005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_68863007','68863007','http://snomed.info/sct','Acute syphilitic meningitis (disorder)','68863007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_703134008','703134008','http://snomed.info/sct','Hypoplasia of enamel due to congenital syphilis (disorder)','703134008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_721583004','721583004','http://snomed.info/sct','Mucocutaneous early congenital syphilis (disorder)','721583004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_735515000','735515000','http://snomed.info/sct','Symptomatic late congenital syphilis (disorder)','735515000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_82323002','82323002','http://snomed.info/sct','Late congenital syphilis (2 years or more) (disorder)','82323002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_827006','827006','http://snomed.info/sct','Late congenital syphilis, latent (positive serology - cerebrospinal fluid, 2 years OR more) (disorder)','827006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_82959004','82959004','http://snomed.info/sct','Dementia paralytica juvenilis (disorder)','82959004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_86443005','86443005','http://snomed.info/sct','Hutchinson''s teeth (disorder)','86443005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_866106004','866106004','http://snomed.info/sct','Interstitial keratitis due to late congenital syphilis (disorder)','866106004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_87318008','87318008','http://snomed.info/sct','Congenital syphilis with gumma (disorder)','87318008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_9941009','9941009','http://snomed.info/sct','Congenital syphilitic choroiditis (disorder)','9941009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_198175009','198175009','http://snomed.info/sct','Female syphilitic pelvic inflammatory disease (disorder)','198175009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_230182006','230182006','http://snomed.info/sct','Late syphilitic encephalitis (disorder)','230182006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_26135000','26135000','http://snomed.info/sct','Syphilitic encephalitis (disorder)','26135000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_38523005','38523005','http://snomed.info/sct','Syphilitic parkinsonism (disorder)','38523005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.395_32735002','32735002','http://snomed.info/sct','Congenital syphilitic encephalitis (disorder)','32735002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.154_120241000119100','120241000119100','http://snomed.info/sct','Glomerulonephritis due to hepatitis C (disorder)','120241000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.154_125921000119106','125921000119106','http://snomed.info/sct','Hepatic coma due to acute hepatitis C (disorder)','125921000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.154_128302006','128302006','http://snomed.info/sct','Chronic hepatitis C (disorder)','128302006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.154_128971000119101','128971000119101','http://snomed.info/sct','Cryoglobulinemia due to chronic hepatitis C (disorder)','128971000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.154_146371000119104','146371000119104','http://snomed.info/sct','Hepatic coma due to chronic hepatitis C (disorder)','146371000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.154_186628001','186628001','http://snomed.info/sct','Hepatic coma due to viral hepatitis C (disorder)','186628001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.154_235866006','235866006','http://snomed.info/sct','Acute hepatitis C (disorder)','235866006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.154_347891000119103','347891000119103','http://snomed.info/sct','Chronic hepatitis C with stage 3 fibrosis (disorder)','347891000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.154_435101000124104','435101000124104','http://snomed.info/sct','Chronic viral hepatitis C with hepatic coma (disorder)','435101000124104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.154_50711007','50711007','http://snomed.info/sct','Viral hepatitis type C (disorder)','50711007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.154_702969000','702969000','http://snomed.info/sct','Reactivation of hepatitis C viral hepatitis (disorder)','702969000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.154_703866000','703866000','http://snomed.info/sct','Chronic hepatitis C with stage 2 fibrosis (disorder)','703866000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.154_708198006','708198006','http://snomed.info/sct','Chronic active hepatitis C (disorder)','708198006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.154_767809001','767809001','http://snomed.info/sct','Chronic hepatitis C caused by hepatitis C virus genotype 6 (disorder)','767809001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.154_767810006','767810006','http://snomed.info/sct','Chronic hepatitis C caused by hepatitis C virus genotype 5 (disorder)','767810006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.154_768006009','768006009','http://snomed.info/sct','Chronic hepatitis C caused by Hepatitis C virus genotype 3 (disorder)','768006009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.154_768125005','768125005','http://snomed.info/sct','Chronic hepatitis C caused by Hepatitis C virus genotype 2 (disorder)','768125005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.154_768126006','768126006','http://snomed.info/sct','Chronic hepatitis C caused by Hepatitis C virus genotype 4 (disorder)','768126006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.154_768127002','768127002','http://snomed.info/sct','Chronic hepatitis C caused by Hepatitis C virus genotype 1 (disorder)','768127002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.154_768288001','768288001','http://snomed.info/sct','Chronic hepatitis C caused by Hepatitis C virus genotype 1b (disorder)','768288001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.154_768289009','768289009','http://snomed.info/sct','Chronic hepatitis C caused by Hepatitis C virus genotype 1a (disorder)','768289009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.154_831000119103','831000119103','http://snomed.info/sct','Cirrhosis of liver due to chronic hepatitis C (disorder)','831000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.154_442374005','442374005','http://snomed.info/sct','Hepatitis B and hepatitis C (disorder)','442374005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.154_278929008','278929008','http://snomed.info/sct','Congenital hepatitis C infection (disorder)','278929008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.154_838377003','838377003','http://snomed.info/sct','Chronic hepatitis C co-occurrent with human immunodeficiency virus infection (disorder)','838377003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.154_838380002','838380002','http://snomed.info/sct','Chronic hepatitis B co-occurrent with hepatitis C and hepatitis D (disorder)','838380002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_A51.0','A51.0','http://hl7.org/fhir/sid/icd-10-cm','Primary genital syphilis','A510','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_A51.1','A51.1','http://hl7.org/fhir/sid/icd-10-cm','Primary anal syphilis','A511','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_A51.2','A51.2','http://hl7.org/fhir/sid/icd-10-cm','Primary syphilis of other sites','A512','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_A51.31','A51.31','http://hl7.org/fhir/sid/icd-10-cm','Condyloma latum','A5131','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_A51.32','A51.32','http://hl7.org/fhir/sid/icd-10-cm','Syphilitic alopecia','A5132','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_A51.39','A51.39','http://hl7.org/fhir/sid/icd-10-cm','Other secondary syphilis of skin','A5139','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_A51.41','A51.41','http://hl7.org/fhir/sid/icd-10-cm','Secondary syphilitic meningitis','A5141','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_A51.42','A51.42','http://hl7.org/fhir/sid/icd-10-cm','Secondary syphilitic female pelvic disease','A5142','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_A51.43','A51.43','http://hl7.org/fhir/sid/icd-10-cm','Secondary syphilitic oculopathy','A5143','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_A51.44','A51.44','http://hl7.org/fhir/sid/icd-10-cm','Secondary syphilitic nephritis','A5144','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_A51.45','A51.45','http://hl7.org/fhir/sid/icd-10-cm','Secondary syphilitic hepatitis','A5145','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_A51.46','A51.46','http://hl7.org/fhir/sid/icd-10-cm','Secondary syphilitic osteopathy','A5146','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_A51.49','A51.49','http://hl7.org/fhir/sid/icd-10-cm','Other secondary syphilitic conditions','A5149','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_A51.5','A51.5','http://hl7.org/fhir/sid/icd-10-cm','Early syphilis, latent','A515','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_A51.9','A51.9','http://hl7.org/fhir/sid/icd-10-cm','Early syphilis, unspecified','A519','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_A52.00','A52.00','http://hl7.org/fhir/sid/icd-10-cm','Cardiovascular syphilis, unspecified','A5200','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_A52.01','A52.01','http://hl7.org/fhir/sid/icd-10-cm','Syphilitic aneurysm of aorta','A5201','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_A52.02','A52.02','http://hl7.org/fhir/sid/icd-10-cm','Syphilitic aortitis','A5202','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_A52.03','A52.03','http://hl7.org/fhir/sid/icd-10-cm','Syphilitic endocarditis','A5203','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_A52.04','A52.04','http://hl7.org/fhir/sid/icd-10-cm','Syphilitic cerebral arteritis','A5204','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_A52.05','A52.05','http://hl7.org/fhir/sid/icd-10-cm','Other cerebrovascular syphilis','A5205','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_A52.06','A52.06','http://hl7.org/fhir/sid/icd-10-cm','Other syphilitic heart involvement','A5206','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_A52.09','A52.09','http://hl7.org/fhir/sid/icd-10-cm','Other cardiovascular syphilis','A5209','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_A52.10','A52.10','http://hl7.org/fhir/sid/icd-10-cm','Symptomatic neurosyphilis, unspecified','A5210','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_A52.11','A52.11','http://hl7.org/fhir/sid/icd-10-cm','Tabes dorsalis','A5211','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_A52.12','A52.12','http://hl7.org/fhir/sid/icd-10-cm','Other cerebrospinal syphilis','A5212','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_A52.13','A52.13','http://hl7.org/fhir/sid/icd-10-cm','Late syphilitic meningitis','A5213','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_A52.15','A52.15','http://hl7.org/fhir/sid/icd-10-cm','Late syphilitic neuropathy','A5215','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_A52.16','A52.16','http://hl7.org/fhir/sid/icd-10-cm','Charcot''s arthropathy (tabetic)','A5216','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_A52.17','A52.17','http://hl7.org/fhir/sid/icd-10-cm','General paresis','A5217','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_A52.2','A52.2','http://hl7.org/fhir/sid/icd-10-cm','Asymptomatic neurosyphilis','A522','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_A52.3','A52.3','http://hl7.org/fhir/sid/icd-10-cm','Neurosyphilis, unspecified','A523','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_A52.71','A52.71','http://hl7.org/fhir/sid/icd-10-cm','Late syphilitic oculopathy','A5271','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_A52.72','A52.72','http://hl7.org/fhir/sid/icd-10-cm','Syphilis of lung and bronchus','A5272','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_A52.73','A52.73','http://hl7.org/fhir/sid/icd-10-cm','Symptomatic late syphilis of other respiratory organs','A5273','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_A52.74','A52.74','http://hl7.org/fhir/sid/icd-10-cm','Syphilis of liver and other viscera','A5274','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_A52.75','A52.75','http://hl7.org/fhir/sid/icd-10-cm','Syphilis of kidney and ureter','A5275','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_A52.77','A52.77','http://hl7.org/fhir/sid/icd-10-cm','Syphilis of bone and joint','A5277','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_A52.78','A52.78','http://hl7.org/fhir/sid/icd-10-cm','Syphilis of other musculoskeletal tissue','A5278','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_A52.79','A52.79','http://hl7.org/fhir/sid/icd-10-cm','Other symptomatic late syphilis','A5279','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_A52.8','A52.8','http://hl7.org/fhir/sid/icd-10-cm','Late syphilis, latent','A528','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_A52.9','A52.9','http://hl7.org/fhir/sid/icd-10-cm','Late syphilis, unspecified','A529','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_A53.0','A53.0','http://hl7.org/fhir/sid/icd-10-cm','Latent syphilis, unspecified as early or late','A530','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_A53.9','A53.9','http://hl7.org/fhir/sid/icd-10-cm','Syphilis, unspecified','A539','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_A65','A65','http://hl7.org/fhir/sid/icd-10-cm','Nonvenereal syphilis','A65','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_O98.111','O98.111','http://hl7.org/fhir/sid/icd-10-cm','Syphilis complicating pregnancy, first trimester','O98111','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_O98.112','O98.112','http://hl7.org/fhir/sid/icd-10-cm','Syphilis complicating pregnancy, second trimester','O98112','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_O98.113','O98.113','http://hl7.org/fhir/sid/icd-10-cm','Syphilis complicating pregnancy, third trimester','O98113','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_O98.119','O98.119','http://hl7.org/fhir/sid/icd-10-cm','Syphilis complicating pregnancy, unspecified trimester','O98119','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_O98.12','O98.12','http://hl7.org/fhir/sid/icd-10-cm','Syphilis complicating childbirth','O9812','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_O98.13','O98.13','http://hl7.org/fhir/sid/icd-10-cm','Syphilis complicating the puerperium','O9813','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_A50.01','A50.01','http://hl7.org/fhir/sid/icd-10-cm','Early congenital syphilitic oculopathy','A5001','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_A50.02','A50.02','http://hl7.org/fhir/sid/icd-10-cm','Early congenital syphilitic osteochondropathy','A5002','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_A50.03','A50.03','http://hl7.org/fhir/sid/icd-10-cm','Early congenital syphilitic pharyngitis','A5003','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_A50.04','A50.04','http://hl7.org/fhir/sid/icd-10-cm','Early congenital syphilitic pneumonia','A5004','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_A50.05','A50.05','http://hl7.org/fhir/sid/icd-10-cm','Early congenital syphilitic rhinitis','A5005','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_A50.06','A50.06','http://hl7.org/fhir/sid/icd-10-cm','Early cutaneous congenital syphilis','A5006','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_A50.07','A50.07','http://hl7.org/fhir/sid/icd-10-cm','Early mucocutaneous congenital syphilis','A5007','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_A50.08','A50.08','http://hl7.org/fhir/sid/icd-10-cm','Early visceral congenital syphilis','A5008','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_A50.09','A50.09','http://hl7.org/fhir/sid/icd-10-cm','Other early congenital syphilis, symptomatic','A5009','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_A50.1','A50.1','http://hl7.org/fhir/sid/icd-10-cm','Early congenital syphilis, latent','A501','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_A50.2','A50.2','http://hl7.org/fhir/sid/icd-10-cm','Early congenital syphilis, unspecified','A502','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_A50.30','A50.30','http://hl7.org/fhir/sid/icd-10-cm','Late congenital syphilitic oculopathy, unspecified','A5030','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_A50.31','A50.31','http://hl7.org/fhir/sid/icd-10-cm','Late congenital syphilitic interstitial keratitis','A5031','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_A50.32','A50.32','http://hl7.org/fhir/sid/icd-10-cm','Late congenital syphilitic chorioretinitis','A5032','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_A50.39','A50.39','http://hl7.org/fhir/sid/icd-10-cm','Other late congenital syphilitic oculopathy','A5039','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_A50.40','A50.40','http://hl7.org/fhir/sid/icd-10-cm','Late congenital neurosyphilis, unspecified','A5040','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_A50.41','A50.41','http://hl7.org/fhir/sid/icd-10-cm','Late congenital syphilitic meningitis','A5041','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_A50.43','A50.43','http://hl7.org/fhir/sid/icd-10-cm','Late congenital syphilitic polyneuropathy','A5043','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_A50.44','A50.44','http://hl7.org/fhir/sid/icd-10-cm','Late congenital syphilitic optic nerve atrophy','A5044','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_A50.45','A50.45','http://hl7.org/fhir/sid/icd-10-cm','Juvenile general paresis','A5045','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_A50.49','A50.49','http://hl7.org/fhir/sid/icd-10-cm','Other late congenital neurosyphilis','A5049','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_A50.51','A50.51','http://hl7.org/fhir/sid/icd-10-cm','Clutton''s joints','A5051','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_A50.52','A50.52','http://hl7.org/fhir/sid/icd-10-cm','Hutchinson''s teeth','A5052','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_A50.53','A50.53','http://hl7.org/fhir/sid/icd-10-cm','Hutchinson''s triad','A5053','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_A50.54','A50.54','http://hl7.org/fhir/sid/icd-10-cm','Late congenital cardiovascular syphilis','A5054','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_A50.55','A50.55','http://hl7.org/fhir/sid/icd-10-cm','Late congenital syphilitic arthropathy','A5055','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_A50.56','A50.56','http://hl7.org/fhir/sid/icd-10-cm','Late congenital syphilitic osteochondropathy','A5056','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_A50.57','A50.57','http://hl7.org/fhir/sid/icd-10-cm','Syphilitic saddle nose','A5057','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_A50.59','A50.59','http://hl7.org/fhir/sid/icd-10-cm','Other late congenital syphilis, symptomatic','A5059','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_A50.6','A50.6','http://hl7.org/fhir/sid/icd-10-cm','Late congenital syphilis, latent','A506','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_A50.7','A50.7','http://hl7.org/fhir/sid/icd-10-cm','Late congenital syphilis, unspecified','A507','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_A50.9','A50.9','http://hl7.org/fhir/sid/icd-10-cm','Congenital syphilis, unspecified','A509','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_A52.19','A52.19','http://hl7.org/fhir/sid/icd-10-cm','Other symptomatic neurosyphilis','A5219','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_A52.14','A52.14','http://hl7.org/fhir/sid/icd-10-cm','Late syphilitic encephalitis','A5214','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_A52.76','A52.76','http://hl7.org/fhir/sid/icd-10-cm','Other genitourinary symptomatic late syphilis','A5276','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.396_A50.42','A50.42','http://hl7.org/fhir/sid/icd-10-cm','Late congenital syphilitic encephalitis','A5042','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.156_A05.3','A05.3','http://hl7.org/fhir/sid/icd-10-cm','Foodborne Vibrio parahaemolyticus intoxication','A053','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.156_A05.5','A05.5','http://hl7.org/fhir/sid/icd-10-cm','Foodborne Vibrio vulnificus intoxication','A055','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.156_B96.82','B96.82','http://hl7.org/fhir/sid/icd-10-cm','Vibrio vulnificus as the cause of diseases classified elsewhere','B9682','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2126_125501000119105','125501000119105','http://snomed.info/sct','Fetus with complete trisomy 21 syndrome (disorder)','125501000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2368_1237570003','1237570003','http://snomed.info/sct','Maternal history of viral hepatitis B (situation)','1237570003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2006_B81.3','B81.3','http://hl7.org/fhir/sid/icd-10-cm','Intestinal angiostrongyliasis','B813','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2006_B83.2','B83.2','http://hl7.org/fhir/sid/icd-10-cm','Angiostrongyliasis due to Parastrongylus cantonensis','B832','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2127_O35.13','O35.13','http://hl7.org/fhir/sid/icd-10-cm','Maternal care for (suspected) chromosomal abnormality in fetus, Trisomy 21','O3513','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.279_195889001','195889001','http://snomed.info/sct','Legionella pneumonia (disorder)','195889001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.279_240445005','240445005','http://snomed.info/sct','Extrapulmonary legionella infection (disorder)','240445005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.279_240446006','240446006','http://snomed.info/sct','Disseminated legionella infection (disorder)','240446006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.279_240447002','240447002','http://snomed.info/sct','Pontiac fever (disorder)','240447002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.279_240448007','240448007','http://snomed.info/sct','Legionella encephalopathy (disorder)','240448007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.279_240449004','240449004','http://snomed.info/sct','Cutaneous involvement legionellosis (disorder)','240449004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.279_26726000','26726000','http://snomed.info/sct','Legionella infection (disorder)','26726000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.279_269574000','269574000','http://snomed.info/sct','Infection caused by Legionella pneumophilia (disorder)','269574000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.279_408681003','408681003','http://snomed.info/sct','Healthcare associated legionnaire''s disease (disorder)','408681003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.279_76090006','76090006','http://snomed.info/sct','Pittsburgh pneumonia (disorder)','76090006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1159_A83.1','A83.1','http://hl7.org/fhir/sid/icd-10-cm','Western equine encephalitis','A831','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2124_205615000','205615000','http://snomed.info/sct','Trisomy 21- meiotic nondisjunction (disorder)','205615000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2124_205616004','205616004','http://snomed.info/sct','Trisomy 21- mitotic nondisjunction mosaicism (disorder)','205616004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2124_254264002','254264002','http://snomed.info/sct','Partial trisomy 21 in Down''s syndrome (disorder)','254264002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2124_371045000','371045000','http://snomed.info/sct','Translocation Down syndrome (disorder)','371045000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2124_41040004','41040004','http://snomed.info/sct','Complete trisomy 21 syndrome (disorder)','41040004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2125_Q90.0','Q90.0','http://hl7.org/fhir/sid/icd-10-cm','Trisomy 21, nonmosaicism (meiotic nondisjunction)','Q900','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2125_Q90.1','Q90.1','http://hl7.org/fhir/sid/icd-10-cm','Trisomy 21, mosaicism (mitotic nondisjunction)','Q901','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2125_Q90.2','Q90.2','http://hl7.org/fhir/sid/icd-10-cm','Trisomy 21, translocation','Q902','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2125_Q90.9','Q90.9','http://hl7.org/fhir/sid/icd-10-cm','Down syndrome, unspecified','Q909','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1274_1163462003','1163462003','http://snomed.info/sct','Infection of stomach caused by Histoplasma (disorder)','1163462003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1274_1163481006','1163481006','http://snomed.info/sct','Dacryoadenitis caused by Histoplasma (disorder)','1163481006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1274_12962009','12962009','http://snomed.info/sct','Histoplasmosis (disorder)','12962009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1274_187039009','187039009','http://snomed.info/sct','Histoplasma capsulatum with retinitis (disorder)','187039009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1274_187040006','187040006','http://snomed.info/sct','Histoplasma capsulatum with pericarditis (disorder)','187040006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1274_187041005','187041005','http://snomed.info/sct','Histoplasma capsulatum with endocarditis (disorder)','187041005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1274_187054003','187054003','http://snomed.info/sct','Pulmonary histoplasmosis (disorder)','187054003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1274_187058000','187058000','http://snomed.info/sct','Histoplasmosis with retinitis (disorder)','187058000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1274_187059008','187059008','http://snomed.info/sct','Histoplasmosis with pericarditis (disorder)','187059008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1274_187062006','187062006','http://snomed.info/sct','Histoplasmosis liver (disorder)','187062006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1274_240730004','240730004','http://snomed.info/sct','Acute disseminated classical histoplasmosis (disorder)','240730004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1274_240731000','240731000','http://snomed.info/sct','Subacute disseminated classical histoplasmosis (disorder)','240731000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1274_240733002','240733002','http://snomed.info/sct','Classical histoplasmosis mucosal ulceration (disorder)','240733002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1274_240734008','240734008','http://snomed.info/sct','Classical histoplasmosis oral ulceration (disorder)','240734008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1274_240735009','240735009','http://snomed.info/sct','Classical histoplasmosis nasal ulceration (disorder)','240735009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1274_240736005','240736005','http://snomed.info/sct','Classical histoplasmosis intestinal ulceration (disorder)','240736005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1274_240737001','240737001','http://snomed.info/sct','Classical histoplasmosis penile ulceration (disorder)','240737001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1274_240738006','240738006','http://snomed.info/sct','Classical histoplasmosis mediastinal granuloma (disorder)','240738006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1274_240739003','240739003','http://snomed.info/sct','Classical histoplasmosis mediastinal fibrosis (disorder)','240739003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1274_240744005','240744005','http://snomed.info/sct','Cutaneous histoplasmosis (disorder)','240744005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1274_240745006','240745006','http://snomed.info/sct','Primary cutaneous histoplasmosis (disorder)','240745006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1274_240746007','240746007','http://snomed.info/sct','Disseminated cutaneous histoplasmosis (disorder)','240746007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1274_38699009','38699009','http://snomed.info/sct','Pneumonia caused by Histoplasma capsulatum (disorder)','38699009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1274_406587001','406587001','http://snomed.info/sct','Histoplasma infection of central nervous system (disorder)','406587001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1274_416770009','416770009','http://snomed.info/sct','Ocular histoplasmosis syndrome (disorder)','416770009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1274_425418002','425418002','http://snomed.info/sct','Disseminated Histoplasma capsulatum infection (disorder)','425418002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1274_430399004','430399004','http://snomed.info/sct','Infection of spinal cord caused by Histoplasma (disorder)','430399004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1274_430404002','430404002','http://snomed.info/sct','Abscess of medulla of spinal cord caused by Histoplasma (disorder)','430404002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1274_442094008','442094008','http://snomed.info/sct','Pneumonia caused by Histoplasma (disorder)','442094008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1274_58524006','58524006','http://snomed.info/sct','Acute pulmonary histoplasmosis (disorder)','58524006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1274_677201000119104','677201000119104','http://snomed.info/sct','Histoplasmosis syndrome of bilateral eyes (disorder)','677201000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1274_677211000119101','677211000119101','http://snomed.info/sct','Histoplasmosis syndrome of left eye (disorder)','677211000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1274_677221000119108','677221000119108','http://snomed.info/sct','Histoplasmosis syndrome of right eye (disorder)','677221000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1274_702577006','702577006','http://snomed.info/sct','Gingivitis caused by Histoplasma (disorder)','702577006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1274_76255006','76255006','http://snomed.info/sct','Infection caused by Histoplasma capsulatum (disorder)','76255006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1274_713624009','713624009','http://snomed.info/sct','Meningitis caused by Histoplasma capsulatum (disorder)','713624009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1274_713626006','713626006','http://snomed.info/sct','Meningitis caused by Histoplasmosis (disorder)','713626006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2122_1003445004','1003445004','http://snomed.info/sct','Lumbosacral spina bifida aperta with hydrocephalus (disorder)','1003445004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2122_1003448002','1003448002','http://snomed.info/sct','Lumbosacral spina bifida aperta (disorder)','1003448002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2122_1010643006','1010643006','http://snomed.info/sct','Thoracolumbosacral spina bifida aperta (disorder)','1010643006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2122_1010644000','1010644000','http://snomed.info/sct','Spina bifida aperta of upper thoracic spine (disorder)','1010644000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2122_1052326006','1052326006','http://snomed.info/sct','Rachischisis partialis (disorder)','1052326006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2122_1162826002','1162826002','http://snomed.info/sct','Split spinal cord malformation type I (disorder)','1162826002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2122_1197212001','1197212001','http://snomed.info/sct','Posterior meningocele (disorder)','1197212001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2122_17761000119109','17761000119109','http://snomed.info/sct','High lumbar myelomeningocele (disorder)','17761000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2122_17771000119103','17771000119103','http://snomed.info/sct','Low lumbar myelomeningocele (disorder)','17771000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2122_203934001','203934001','http://snomed.info/sct','Cervical spina bifida with hydrocephalus (disorder)','203934001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2122_203935000','203935000','http://snomed.info/sct','Thoracic spina bifida with hydrocephalus (disorder)','203935000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2122_203936004','203936004','http://snomed.info/sct','Lumbar spina bifida with hydrocephalus (disorder)','203936004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2122_203941007','203941007','http://snomed.info/sct','Cervical spina bifida with hydrocephalus - open (disorder)','203941007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2122_203942000','203942000','http://snomed.info/sct','Thoracic spina bifida with hydrocephalus - open (disorder)','203942000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2122_203943005','203943005','http://snomed.info/sct','Lumbar spina bifida with hydrocephalus - open (disorder)','203943005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2122_203944004','203944004','http://snomed.info/sct','Sacral spina bifida with hydrocephalus - open (disorder)','203944004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2122_203946002','203946002','http://snomed.info/sct','Spina bifida with hydrocephalus - closed (disorder)','203946002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2122_203948001','203948001','http://snomed.info/sct','Cervical spina bifida with hydrocephalus - closed (disorder)','203948001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2122_203949009','203949009','http://snomed.info/sct','Thoracic spina bifida with hydrocephalus - closed (disorder)','203949009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2122_203950009','203950009','http://snomed.info/sct','Lumbar spina bifida with hydrocephalus - closed (disorder)','203950009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2122_203951008','203951008','http://snomed.info/sct','Sacral spina bifida with hydrocephalus - closed (disorder)','203951008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2122_203954000','203954000','http://snomed.info/sct','Spina bifida with hydrocephalus of late onset (disorder)','203954000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2122_203955004','203955004','http://snomed.info/sct','Spina bifida with stenosis of aqueduct of Sylvius (disorder)','203955004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2122_203957007','203957007','http://snomed.info/sct','Dandy-Walker syndrome with spina bifida (disorder)','203957007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2122_203985009','203985009','http://snomed.info/sct','Cervical meningomyelocele (disorder)','203985009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2122_203986005','203986005','http://snomed.info/sct','Thoracic meningomyelocele (disorder)','203986005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2122_203987001','203987001','http://snomed.info/sct','Lumbar meningomyelocele (disorder)','203987001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2122_203990007','203990007','http://snomed.info/sct','Cervical myelocele (disorder)','203990007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2122_203991006','203991006','http://snomed.info/sct','Thoracic myelocele (disorder)','203991006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2122_203992004','203992004','http://snomed.info/sct','Lumbar myelocele (disorder)','203992004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2122_203994003','203994003','http://snomed.info/sct','Myelocystocele (disorder)','203994003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2122_203996001','203996001','http://snomed.info/sct','Cervical myelocystocele (disorder)','203996001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2122_203997005','203997005','http://snomed.info/sct','Thoracic myelocystocele (disorder)','203997005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2122_203998000','203998000','http://snomed.info/sct','Lumbar myelocystocele (disorder)','203998000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2122_204003007','204003007','http://snomed.info/sct','Cervical spina bifida without hydrocephalus - open (disorder)','204003007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2122_204004001','204004001','http://snomed.info/sct','Thoracic spina bifida without hydrocephalus - open (disorder)','204004001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2122_204005000','204005000','http://snomed.info/sct','Lumbar spina bifida without hydrocephalus - open (disorder)','204005000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2122_204006004','204006004','http://snomed.info/sct','Sacral spina bifida without hydrocephalus - open (disorder)','204006004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2122_204008003','204008003','http://snomed.info/sct','Spina bifida without hydrocephalus - closed (disorder)','204008003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2122_204010001','204010001','http://snomed.info/sct','Cervical spina bifida without hydrocephalus - closed (disorder)','204010001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2122_204011002','204011002','http://snomed.info/sct','Thoracic spina bifida without hydrocephalus - closed (disorder)','204011002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2122_204012009','204012009','http://snomed.info/sct','Lumbar spina bifida without hydrocephalus - closed (disorder)','204012009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2122_204013004','204013004','http://snomed.info/sct','Sacral spina bifida without hydrocephalus - closed (disorder)','204013004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2122_253111001','253111001','http://snomed.info/sct','Thoracolumbar spina bifida without hydrocephalus - closed (disorder)','253111001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2122_253113003','253113003','http://snomed.info/sct','Rachischisis with hydrocephalus (disorder)','253113003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2122_253114009','253114009','http://snomed.info/sct','Myelocele with hydrocephalus (disorder)','253114009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2122_253117002','253117002','http://snomed.info/sct','Closed spina bifida with Arnold-Chiari malformation (disorder)','253117002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2122_253118007','253118007','http://snomed.info/sct','Thoracolumbar spina bifida with hydrocephalus - closed (disorder)','253118007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2122_253119004','253119004','http://snomed.info/sct','Hemimyelocele (disorder)','253119004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2122_253120005','253120005','http://snomed.info/sct','Lipomeningocele (disorder)','253120005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2122_26568002','26568002','http://snomed.info/sct','Faun tail syndrome (disorder)','26568002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2122_268143001','268143001','http://snomed.info/sct','Spina bifida with hydrocephalus - open (disorder)','268143001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2122_268146009','268146009','http://snomed.info/sct','Spina bifida without hydrocephalus - open (disorder)','268146009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2122_30620003','30620003','http://snomed.info/sct','Spina bifida of dorsal region (disorder)','30620003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2122_32232003','32232003','http://snomed.info/sct','Spina bifida of cervical region (disorder)','32232003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2122_40130009','40130009','http://snomed.info/sct','Spina bifida without hydrocephalus (disorder)','40130009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2122_403561007','403561007','http://snomed.info/sct','Cutaneous lesion resulting from spina bifida (disorder)','403561007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2122_4061000119104','4061000119104','http://snomed.info/sct','Myelomeningocele without hydrocephalus (disorder)','4061000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2122_414667000','414667000','http://snomed.info/sct','Meningomyelocele (disorder)','414667000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2122_425687007','425687007','http://snomed.info/sct','Spina bifida aperta of cervical spine (disorder)','425687007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2122_427216002','427216002','http://snomed.info/sct','Spina bifida aperta of thoracic spine (disorder)','427216002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2122_428190001','428190001','http://snomed.info/sct','Neurogenic urinary bladder due to spina bifida (disorder)','428190001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2122_429466000','429466000','http://snomed.info/sct','Spina bifida aperta of lumbar spine (disorder)','429466000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2122_444860006','444860006','http://snomed.info/sct','Meningomyelocele of lumbosacral spine (disorder)','444860006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2122_445307009','445307009','http://snomed.info/sct','Spina bifida of sacral region (disorder)','445307009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2122_445308004','445308004','http://snomed.info/sct','Split spinal cord malformation (disorder)','445308004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2122_53318002','53318002','http://snomed.info/sct','Spina bifida with hydrocephalus (disorder)','53318002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2122_58557008','58557008','http://snomed.info/sct','Spina bifida aperta (disorder)','58557008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2122_61819007','61819007','http://snomed.info/sct','Rachischisis (disorder)','61819007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2122_67531005','67531005','http://snomed.info/sct','Spina bifida (disorder)','67531005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2122_70534000','70534000','http://snomed.info/sct','Occult spinal dysraphism sequence (disorder)','70534000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2122_735749005','735749005','http://snomed.info/sct','Myelomeningocele co-occurrent with hydrocephalus (disorder)','735749005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2122_763889002','763889002','http://snomed.info/sct','Spina bifida and hypospadias syndrome (disorder)','763889002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2122_76481000119102','76481000119102','http://snomed.info/sct','Pressure injury due to spina bifida (disorder)','76481000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2122_768939009','768939009','http://snomed.info/sct','Primary tethered cord syndrome (disorder)','768939009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2122_76916001','76916001','http://snomed.info/sct','Spina bifida occulta (disorder)','76916001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2122_77224008','77224008','http://snomed.info/sct','Spina bifida of lumbar region (disorder)','77224008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2122_82058009','82058009','http://snomed.info/sct','Myelocele (disorder)','82058009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2122_890422008','890422008','http://snomed.info/sct','Cervicothoracic spina bifida aperta with hydrocephalus (disorder)','890422008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2122_894125007','894125007','http://snomed.info/sct','Cervicothoracic spina bifida aperta (disorder)','894125007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2122_93557001','93557001','http://snomed.info/sct','Holorachischisis (disorder)','93557001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2122_732927000','732927000','http://snomed.info/sct','Split hand, obstructive uropathy, spina bifida, diaphragmatic defect syndrome (disorder)','732927000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2122_103771000119101','103771000119101','http://snomed.info/sct','Lipoma co-occurrent with spina bifida (disorder)','103771000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1394_Z57.2','Z57.2','http://hl7.org/fhir/sid/icd-10-cm','Occupational exposure to dust','Z572','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1394_Z57.31','Z57.31','http://hl7.org/fhir/sid/icd-10-cm','Occupational exposure to environmental tobacco smoke','Z5731','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1394_Z57.39','Z57.39','http://hl7.org/fhir/sid/icd-10-cm','Occupational exposure to other air contaminants','Z5739','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1394_Z57.4','Z57.4','http://hl7.org/fhir/sid/icd-10-cm','Occupational exposure to toxic agents in agriculture','Z574','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1394_Z57.5','Z57.5','http://hl7.org/fhir/sid/icd-10-cm','Occupational exposure to toxic agents in other industries','Z575','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1394_Z57.8','Z57.8','http://hl7.org/fhir/sid/icd-10-cm','Occupational exposure to other risk factors','Z578','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1394_Z57.9','Z57.9','http://hl7.org/fhir/sid/icd-10-cm','Occupational exposure to unspecified risk factor','Z579','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2123_Q05.0','Q05.0','http://hl7.org/fhir/sid/icd-10-cm','Cervical spina bifida with hydrocephalus','Q050','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2123_Q05.1','Q05.1','http://hl7.org/fhir/sid/icd-10-cm','Thoracic spina bifida with hydrocephalus','Q051','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2123_Q05.2','Q05.2','http://hl7.org/fhir/sid/icd-10-cm','Lumbar spina bifida with hydrocephalus','Q052','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2123_Q05.3','Q05.3','http://hl7.org/fhir/sid/icd-10-cm','Sacral spina bifida with hydrocephalus','Q053','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2123_Q05.4','Q05.4','http://hl7.org/fhir/sid/icd-10-cm','Unspecified spina bifida with hydrocephalus','Q054','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2123_Q05.5','Q05.5','http://hl7.org/fhir/sid/icd-10-cm','Cervical spina bifida without hydrocephalus','Q055','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2123_Q05.6','Q05.6','http://hl7.org/fhir/sid/icd-10-cm','Thoracic spina bifida without hydrocephalus','Q056','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2123_Q05.7','Q05.7','http://hl7.org/fhir/sid/icd-10-cm','Lumbar spina bifida without hydrocephalus','Q057','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2123_Q05.8','Q05.8','http://hl7.org/fhir/sid/icd-10-cm','Sacral spina bifida without hydrocephalus','Q058','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2123_Q05.9','Q05.9','http://hl7.org/fhir/sid/icd-10-cm','Spina bifida, unspecified','Q059','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2123_Q07.01','Q07.01','http://hl7.org/fhir/sid/icd-10-cm','Arnold-Chiari syndrome with spina bifida','Q0701','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2123_Q07.03','Q07.03','http://hl7.org/fhir/sid/icd-10-cm','Arnold-Chiari syndrome with spina bifida and hydrocephalus','Q0703','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.39_A04.3','A04.3','http://hl7.org/fhir/sid/icd-10-cm','Enterohemorrhagic Escherichia coli infection','A043','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.39_B96.21','B96.21','http://hl7.org/fhir/sid/icd-10-cm','Shiga toxin-producing Escherichia coli [E. coli] [STEC] O157 as the cause of diseases classified elsewhere','B9621','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.39_B96.22','B96.22','http://hl7.org/fhir/sid/icd-10-cm','Other specified Shiga toxin-producing Escherichia coli [E. coli] [STEC] as the cause of diseases classified elsewhere','B9622','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.39_B96.23','B96.23','http://hl7.org/fhir/sid/icd-10-cm','Unspecified Shiga toxin-producing Escherichia coli [E. coli] [STEC] as the cause of diseases classified elsewhere','B9623','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1397_6452009','6452009','http://snomed.info/sct','Colorado tick fever (disorder)','6452009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2120_Q37.0','Q37.0','http://hl7.org/fhir/sid/icd-10-cm','Cleft hard palate with bilateral cleft lip','Q370','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2120_Q37.1','Q37.1','http://hl7.org/fhir/sid/icd-10-cm','Cleft hard palate with unilateral cleft lip','Q371','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2120_Q37.2','Q37.2','http://hl7.org/fhir/sid/icd-10-cm','Cleft soft palate with bilateral cleft lip','Q372','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2120_Q37.3','Q37.3','http://hl7.org/fhir/sid/icd-10-cm','Cleft soft palate with unilateral cleft lip','Q373','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2120_Q37.4','Q37.4','http://hl7.org/fhir/sid/icd-10-cm','Cleft hard and soft palate with bilateral cleft lip','Q374','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2120_Q37.5','Q37.5','http://hl7.org/fhir/sid/icd-10-cm','Cleft hard and soft palate with unilateral cleft lip','Q375','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2120_Q37.8','Q37.8','http://hl7.org/fhir/sid/icd-10-cm','Unspecified cleft palate with bilateral cleft lip','Q378','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2120_Q37.9','Q37.9','http://hl7.org/fhir/sid/icd-10-cm','Unspecified cleft palate with unilateral cleft lip','Q379','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1275_B39.0','B39.0','http://hl7.org/fhir/sid/icd-10-cm','Acute pulmonary histoplasmosis capsulati','B390','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1275_B39.2','B39.2','http://hl7.org/fhir/sid/icd-10-cm','Pulmonary histoplasmosis capsulati, unspecified','B392','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1275_B39.3','B39.3','http://hl7.org/fhir/sid/icd-10-cm','Disseminated histoplasmosis capsulati','B393','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1275_B39.4','B39.4','http://hl7.org/fhir/sid/icd-10-cm','Histoplasmosis capsulati, unspecified','B394','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1275_B39.9','B39.9','http://hl7.org/fhir/sid/icd-10-cm','Histoplasmosis, unspecified','B399','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1396_A93.2','A93.2','http://hl7.org/fhir/sid/icd-10-cm','Colorado tick fever','A932','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2000_A87.2','A87.2','http://hl7.org/fhir/sid/icd-10-cm','Lymphocytic choriomeningitis','A872','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2121_783724009','783724009','http://snomed.info/sct','Fetal spina bifida (disorder)','783724009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1160_A83.2','A83.2','http://hl7.org/fhir/sid/icd-10-cm','Eastern equine encephalitis','A832','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.260_A78','A78','http://hl7.org/fhir/sid/icd-10-cm','Q fever','A78','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1162_A83.5','A83.5','http://hl7.org/fhir/sid/icd-10-cm','California encephalitis','A835','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1283_406596001','406596001','http://snomed.info/sct','Naegleria infection of the central nervous system (disorder)','406596001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1283_721816008','721816008','http://snomed.info/sct','Infection caused by Naegleria fowleri (disorder)','721816008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1283_428175000','428175000','http://snomed.info/sct','Primary amebic encephalitis caused by Naegleria fowleri (disorder)','428175000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1283_52281009','52281009','http://snomed.info/sct','Meningoencephalitis caused by Naegleria (disorder)','52281009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.140_A41.3','A41.3','http://hl7.org/fhir/sid/icd-10-cm','Sepsis due to Hemophilus influenzae','A413','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.140_A49.2','A49.2','http://hl7.org/fhir/sid/icd-10-cm','Hemophilus influenzae infection, unspecified site','A492','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.140_B96.3','B96.3','http://hl7.org/fhir/sid/icd-10-cm','Hemophilus influenzae [H. influenzae] as the cause of diseases classified elsewhere','B963','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.140_J14','J14','http://hl7.org/fhir/sid/icd-10-cm','Pneumonia due to Hemophilus influenzae','J14','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.140_G00.0','G00.0','http://hl7.org/fhir/sid/icd-10-cm','Hemophilus meningitis','G000','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1161_A92.0','A92.0','http://hl7.org/fhir/sid/icd-10-cm','Chikungunya virus disease','A920','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.141_B18.1','B18.1','http://hl7.org/fhir/sid/icd-10-cm','Chronic viral hepatitis B without delta-agent','B181','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.141_B17.0','B17.0','http://hl7.org/fhir/sid/icd-10-cm','Acute delta-(super) infection of hepatitis B carrier','B170','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.141_B18.0','B18.0','http://hl7.org/fhir/sid/icd-10-cm','Chronic viral hepatitis B with delta-agent','B180','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.264_19065005','19065005','http://snomed.info/sct','Lassa fever (disorder)','19065005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.264_240523007','240523007','http://snomed.info/sct','Viral hemorrhagic fever (disorder)','240523007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.264_240524001','240524001','http://snomed.info/sct','Brazilian hemorrhagic fever (disorder)','240524001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.264_240525000','240525000','http://snomed.info/sct','Filoviral hemorrhagic fever (disorder)','240525000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.264_37109004','37109004','http://snomed.info/sct','Ebola virus disease (disorder)','37109004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.264_402919000','402919000','http://snomed.info/sct','Congo hemorrhagic fever (disorder)','402919000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.264_43489008','43489008','http://snomed.info/sct','Congo-Crimean hemorrhagic fever (disorder)','43489008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.264_45901000087102','45901000087102','http://snomed.info/sct','Disease caused by Zaire Ebolavirus (disorder)','45901000087102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.264_58868000','58868000','http://snomed.info/sct','Argentinian hemorrhagic fever (disorder)','58868000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.264_67247008','67247008','http://snomed.info/sct','Bolivian hemorrhagic fever (disorder)','67247008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.264_716584007','716584007','http://snomed.info/sct','Hemorrhagic fever caused by Chapare virus (disorder)','716584007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.264_716585008','716585008','http://snomed.info/sct','Hemorrhagic fever caused by Lujo virus (disorder)','716585008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.264_721777004','721777004','http://snomed.info/sct','Infection caused by Machupo virus (disorder)','721777004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.264_721778009','721778009','http://snomed.info/sct','Infection caused by Junin virus (disorder)','721778009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.264_721779001','721779001','http://snomed.info/sct','Infection caused by Lassa virus (disorder)','721779001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.264_721780003','721780003','http://snomed.info/sct','Infection caused by Guanarito virus (disorder)','721780003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.264_721782006','721782006','http://snomed.info/sct','Infection caused by Sabia virus (disorder)','721782006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.264_721784007','721784007','http://snomed.info/sct','Infection caused by Lujo virus (disorder)','721784007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.264_73730005','73730005','http://snomed.info/sct','Arenaviral hemorrhagic fever (disorder)','73730005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.264_77503002','77503002','http://snomed.info/sct','Marburg virus disease (disorder)','77503002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.264_788870007','788870007','http://snomed.info/sct','Atypical disease caused by Ebola virus (disorder)','788870007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.264_788872004','788872004','http://snomed.info/sct','Atypical disease caused by Marburg virus (disorder)','788872004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.264_788902004','788902004','http://snomed.info/sct','Disease caused by Bundibugyo ebolavirus (disorder)','788902004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.264_788903009','788903009','http://snomed.info/sct','Disease caused by Ebola Sudan virus (disorder)','788903009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.264_1163468004','1163468004','http://snomed.info/sct','Meningitis caused by Lassa virus (disorder)','1163468004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.264_1163469007','1163469007','http://snomed.info/sct','Meningitis caused by Machupo virus (disorder)','1163469007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.264_1163471007','1163471007','http://snomed.info/sct','Meningitis caused by Junin virus (disorder)','1163471007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.264_359673001','359673001','http://snomed.info/sct','Venezuelan hemorrhagic fever (disorder)','359673001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.264_716864001','716864001','http://snomed.info/sct','Hemorrhagic fever with renal syndrome (disorder)','716864001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.264_1163055001','1163055001','http://snomed.info/sct','Encephalitis caused by Machupo virus (disorder)','1163055001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.264_1163057009','1163057009','http://snomed.info/sct','Encephalitis caused by Lassa virus (disorder)','1163057009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.264_1163059007','1163059007','http://snomed.info/sct','Encephalitis caused by Junin virus (disorder)','1163059007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.265_A90-A99','A90-A99','http://hl7.org/fhir/sid/icd-10-cm','Arthropod-borne viral fevers and viral hemorrhagic fevers (A90-A99)','A90A99','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.265_A96','A96','http://hl7.org/fhir/sid/icd-10-cm','Arenaviral hemorrhagic fever','A96','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.265_A96.0','A96.0','http://hl7.org/fhir/sid/icd-10-cm','Junin hemorrhagic fever','A960','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.265_A96.1','A96.1','http://hl7.org/fhir/sid/icd-10-cm','Machupo hemorrhagic fever','A961','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.265_A96.2','A96.2','http://hl7.org/fhir/sid/icd-10-cm','Lassa fever','A962','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.265_A96.8','A96.8','http://hl7.org/fhir/sid/icd-10-cm','Other arenaviral hemorrhagic fevers','A968','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.265_A96.9','A96.9','http://hl7.org/fhir/sid/icd-10-cm','Arenaviral hemorrhagic fever, unspecified','A969','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.265_A98','A98','http://hl7.org/fhir/sid/icd-10-cm','Other viral hemorrhagic fevers, not elsewhere classified','A98','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.265_A98.0','A98.0','http://hl7.org/fhir/sid/icd-10-cm','Crimean-Congo hemorrhagic fever','A980','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.265_A98.3','A98.3','http://hl7.org/fhir/sid/icd-10-cm','Marburg virus disease','A983','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.265_A98.4','A98.4','http://hl7.org/fhir/sid/icd-10-cm','Ebola virus disease','A984','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.265_A98.5','A98.5','http://hl7.org/fhir/sid/icd-10-cm','Hemorrhagic fever with renal syndrome','A985','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.265_A98.8','A98.8','http://hl7.org/fhir/sid/icd-10-cm','Other specified viral hemorrhagic fevers','A988','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.265_A99','A99','http://hl7.org/fhir/sid/icd-10-cm','Unspecified viral hemorrhagic fever','A99','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.145_1142085005','1142085005','http://snomed.info/sct','Disseminated perinatal varicella (disorder)','1142085005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.145_1179456002','1179456002','http://snomed.info/sct','Esophagitis caused by Human alphaherpesvirus 3 (disorder)','1179456002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.145_15678841000119100','15678841000119100','http://snomed.info/sct','Iridocyclitis of bilateral eyes caused by Human alphaherpesvirus 3 (disorder)','15678841000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.145_15680281000119103','15680281000119103','http://snomed.info/sct','Keratoconjunctivitis of bilateral eyes caused by Human alphaherpesvirus 3 (disorder)','15680281000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.145_15936581000119108','15936581000119108','http://snomed.info/sct','Otitis externa of right external auditory canal caused by human herpesvirus 3 (disorder)','15936581000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.145_15936621000119108','15936621000119108','http://snomed.info/sct','Otitis externa of left external auditory canal caused by human herpesvirus 3 (disorder)','15936621000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.145_15991751000119109','15991751000119109','http://snomed.info/sct','Iritis of bilateral eyes caused by Human alphaherpesvirus 3 (disorder)','15991751000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.145_15992351000119104','15992351000119104','http://snomed.info/sct','Keratitis of bilateral eyes caused by Human herpesvirus 3 (disorder)','15992351000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.145_195911009','195911009','http://snomed.info/sct','Chickenpox pneumonia (disorder)','195911009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.145_230198004','230198004','http://snomed.info/sct','Varicella transverse myelitis (disorder)','230198004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.145_23737006','23737006','http://snomed.info/sct','Chickenpox with complication (disorder)','23737006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.145_240468001','240468001','http://snomed.info/sct','Neurological varicella (disorder)','240468001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.145_240469009','240469009','http://snomed.info/sct','Perinatal varicella (disorder)','240469009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.145_24059009','24059009','http://snomed.info/sct','Acute cerebellar ataxia caused by varicella (disorder)','24059009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.145_277644009','277644009','http://snomed.info/sct','Congenital varicella syndrome (disorder)','277644009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.145_28721000119108','28721000119108','http://snomed.info/sct','Postvaricella myelitis (disorder)','28721000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.145_309465005','309465005','http://snomed.info/sct','Varicella-zoster virus infection (disorder)','309465005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.145_31920006','31920006','http://snomed.info/sct','Hemorrhagic varicella pneumonitis (disorder)','31920006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.145_38907003','38907003','http://snomed.info/sct','Varicella (disorder)','38907003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.145_402899000','402899000','http://snomed.info/sct','Anetoderma following varicella (disorder)','402899000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.145_423333008','423333008','http://snomed.info/sct','Exanthem due to varicella (disorder)','423333008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.145_713250002','713250002','http://snomed.info/sct','Gingival disease caused by varicella-zoster virus (disorder)','713250002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.145_715223009','715223009','http://snomed.info/sct','Fetal varicella syndrome (disorder)','715223009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.145_733167008','733167008','http://snomed.info/sct','Acute geniculate ganglionitis caused by Human herpesvirus 3 (disorder)','733167008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.145_870310004','870310004','http://snomed.info/sct','Perinatal mucocutaneous infection caused by Human herpesvirus 3 (disorder)','870310004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.145_90433002','90433002','http://snomed.info/sct','Congenital varicella infection (disorder)','90433002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.145_186509002','186509002','http://snomed.info/sct','Postvaricella encephalitis (disorder)','186509002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1047_G20','G20','http://hl7.org/fhir/sid/icd-10-cm','Parkinson''s disease','G20','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1047_G20.A1','G20.A1','http://hl7.org/fhir/sid/icd-10-cm','Parkinson''s disease without dyskinesia, without mention of fluctuations','G20A1','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1047_G20.A2','G20.A2','http://hl7.org/fhir/sid/icd-10-cm','Parkinson''s disease without dyskinesia, with fluctuations','G20A2','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1047_G20.B1','G20.B1','http://hl7.org/fhir/sid/icd-10-cm','Parkinson''s disease with dyskinesia, without mention of fluctuations','G20B1','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1047_G20.B2','G20.B2','http://hl7.org/fhir/sid/icd-10-cm','Parkinson''s disease with dyskinesia, with fluctuations','G20B2','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.146_B01','B01','http://hl7.org/fhir/sid/icd-10-cm','Varicella [chickenpox]','B01','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.146_B01.12','B01.12','http://hl7.org/fhir/sid/icd-10-cm','Varicella myelitis','B0112','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.146_B01.2','B01.2','http://hl7.org/fhir/sid/icd-10-cm','Varicella pneumonia','B012','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.146_B01.8','B01.8','http://hl7.org/fhir/sid/icd-10-cm','Varicella with other complications','B018','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.146_B01.81','B01.81','http://hl7.org/fhir/sid/icd-10-cm','Varicella keratitis','B0181','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.146_B01.89','B01.89','http://hl7.org/fhir/sid/icd-10-cm','Other varicella complications','B0189','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.146_B01.9','B01.9','http://hl7.org/fhir/sid/icd-10-cm','Varicella without complication','B019','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.146_B01.0','B01.0','http://hl7.org/fhir/sid/icd-10-cm','Varicella meningitis','B010','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.146_B01.1','B01.1','http://hl7.org/fhir/sid/icd-10-cm','Varicella encephalitis, myelitis and encephalomyelitis','B011','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.146_B01.11','B01.11','http://hl7.org/fhir/sid/icd-10-cm','Varicella encephalitis and encephalomyelitis','B0111','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2016_1290741000000106','1290741000000106','http://snomed.info/sct','At increased risk of exposure to monkeypox virus (finding)','1290741000000106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2137_1177002007','1177002007','http://snomed.info/sct','Tic disorder due to prion disease (disorder)','1177002007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2137_1259081008','1259081008','http://snomed.info/sct','Disorder of autonomic nervous system due to prion disease (disorder)','1259081008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2137_1259501004','1259501004','http://snomed.info/sct','Dementia due to kuru (disorder)','1259501004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2137_1259640001','1259640001','http://snomed.info/sct','Chorea due to prion disease (disorder)','1259640001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2137_20484008','20484008','http://snomed.info/sct','Prion disease (disorder)','20484008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2137_721165001','721165001','http://snomed.info/sct','Variably protease sensitive prionopathy (disorder)','721165001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2137_721219005','721219005','http://snomed.info/sct','Familial Alzheimer-like prion disease (disorder)','721219005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2137_721255002','721255002','http://snomed.info/sct','Acquired prion disease (disorder)','721255002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2137_733422008','733422008','http://snomed.info/sct','Prion protein systemic amyloidosis (disorder)','733422008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2137_762350007','762350007','http://snomed.info/sct','Dementia due to prion disease (disorder)','762350007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2137_86188000','86188000','http://snomed.info/sct','Kuru (disorder)','86188000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2137_1176989007','1176989007','http://snomed.info/sct','Parkinsonism due to prion disease (disorder)','1176989007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2137_1163119007','1163119007','http://snomed.info/sct','Creutzfeldt Jakob disease following graft of dura (disorder)','1163119007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2137_1259478009','1259478009','http://snomed.info/sct','Dementia due to familial Creutzfeldt-Jakob disease (disorder)','1259478009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2137_1259480003','1259480003','http://snomed.info/sct','Dementia due to fatal familial insomnia (disorder)','1259480003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2137_1259503001','1259503001','http://snomed.info/sct','Dementia due to iatrogenic Creutzfeldt-Jakob disease (disorder)','1259503001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2137_1259522005','1259522005','http://snomed.info/sct','Dementia due to variant Creutzfeldt-Jakob disease (disorder)','1259522005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2137_1259529001','1259529001','http://snomed.info/sct','Dementia due to sporadic Creutzfeldt-Jakob disease (disorder)','1259529001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2137_192818008','192818008','http://snomed.info/sct','Cerebral degeneration due to Creutzfeldt-Jakob disease (disorder)','192818008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2137_304603007','304603007','http://snomed.info/sct','Variant Creutzfeldt-Jakob disease (disorder)','304603007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2137_429458009','429458009','http://snomed.info/sct','Dementia due to Creutzfeldt Jakob disease (disorder)','429458009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2137_67155006','67155006','http://snomed.info/sct','Gerstmann-Straussler-Scheinker syndrome (disorder)','67155006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2137_713060000','713060000','http://snomed.info/sct','Sporadic Creutzfeldt-Jakob disease (disorder)','713060000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2137_715662009','715662009','http://snomed.info/sct','Iatrogenic Jakob-Creutzfeldt disease (disorder)','715662009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2137_715807002','715807002','http://snomed.info/sct','Familial Creutzfeldt-Jakob (disorder)','715807002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2137_792004','792004','http://snomed.info/sct','Jakob-Creutzfeldt disease (disorder)','792004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2137_83157008','83157008','http://snomed.info/sct','Fatal familial insomnia (disorder)','83157008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2137_840452004','840452004','http://snomed.info/sct','Classical sporadic Creutzfeldt-Jakob disease (disorder)','840452004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2137_860826006','860826006','http://snomed.info/sct','Creutzfeldt-Jakob Disease caused by human growth hormone (disorder)','860826006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1167_423592001','423592001','http://snomed.info/sct','Non-neuroinvasive Western equine encephalitis virus infection (disorder)','423592001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1167_47523006','47523006','http://snomed.info/sct','Western equine encephalitis (disorder)','47523006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1167_422498005','422498005','http://snomed.info/sct','Neuroinvasive Western equine encephalitis virus infection (disorder)','422498005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2138_A81.81','A81.81','http://hl7.org/fhir/sid/icd-10-cm','Kuru','A8181','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2138_A81.00','A81.00','http://hl7.org/fhir/sid/icd-10-cm','Creutzfeldt-Jakob disease, unspecified','A8100','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2138_A81.01','A81.01','http://hl7.org/fhir/sid/icd-10-cm','Variant Creutzfeldt-Jakob disease','A8101','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2138_A81.09','A81.09','http://hl7.org/fhir/sid/icd-10-cm','Other Creutzfeldt-Jakob disease','A8109','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2138_A81.82','A81.82','http://hl7.org/fhir/sid/icd-10-cm','Gerstmann-Straussler-Scheinker syndrome','A8182','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2138_A81.83','A81.83','http://hl7.org/fhir/sid/icd-10-cm','Fatal familial insomnia','A8183','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2259_414819007','414819007','http://snomed.info/sct','Neonatal abstinence syndrome (disorder)','414819007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1049_G20.C','G20.C','http://hl7.org/fhir/sid/icd-10-cm','Parkinsonism, unspecified','G20C','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1049_G21.11','G21.11','http://hl7.org/fhir/sid/icd-10-cm','Neuroleptic induced parkinsonism','G2111','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1049_G21.19','G21.19','http://hl7.org/fhir/sid/icd-10-cm','Other drug induced secondary parkinsonism','G2119','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1049_G21.2','G21.2','http://hl7.org/fhir/sid/icd-10-cm','Secondary parkinsonism due to other external agents','G212','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1049_G21.3','G21.3','http://hl7.org/fhir/sid/icd-10-cm','Postencephalitic parkinsonism','G213','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1049_G21.4','G21.4','http://hl7.org/fhir/sid/icd-10-cm','Vascular parkinsonism','G214','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1049_G21.8','G21.8','http://hl7.org/fhir/sid/icd-10-cm','Other secondary parkinsonism','G218','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1049_G21.9','G21.9','http://hl7.org/fhir/sid/icd-10-cm','Secondary parkinsonism, unspecified','G219','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1049_A52.19','A52.19','http://hl7.org/fhir/sid/icd-10-cm','Other symptomatic neurosyphilis','A5219','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2135_67155006','67155006','http://snomed.info/sct','Gerstmann-Straussler-Scheinker syndrome (disorder)','67155006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2256_34521000087103','34521000087103','http://snomed.info/sct','Infection caused by carbapenemase-producing Enterobacteriaceae (disorder)','34521000087103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1048_101421000119107','101421000119107','http://snomed.info/sct','Dementia due to Parkinson''s disease (disorder)','101421000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1048_103871000119109','103871000119109','http://snomed.info/sct','Restrictive lung disease due to Parkinson disease (disorder)','103871000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1048_1156822001','1156822001','http://snomed.info/sct','Autosomal recessive familial Parkinson disease (disorder)','1156822001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1048_1259080009','1259080009','http://snomed.info/sct','Disorder of autonomic nervous system due to Parkinson disease (disorder)','1259080009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1048_15755701000119105','15755701000119105','http://snomed.info/sct','Fluency disorder due to Parkinson disease (disorder)','15755701000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1048_230291001','230291001','http://snomed.info/sct','Juvenile Parkinson''s disease (disorder)','230291001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1048_425390006','425390006','http://snomed.info/sct','Dementia associated with Parkinson''s Disease (disorder)','425390006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1048_438513002','438513002','http://snomed.info/sct','Cerebral degeneration due to Parkinson''s disease (disorder)','438513002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1048_49049000','49049000','http://snomed.info/sct','Parkinson''s disease (disorder)','49049000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1048_715345007','715345007','http://snomed.info/sct','Young onset Parkinson disease (disorder)','715345007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1048_716107009','716107009','http://snomed.info/sct','Early onset parkinsonism and intellectual disability syndrome (disorder)','716107009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1048_716662004','716662004','http://snomed.info/sct','Autosomal dominant late onset Parkinson disease (disorder)','716662004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1048_718685006','718685006','http://snomed.info/sct','Orthostatic hypotension co-occurrent and due to Parkinson''s disease (disorder)','718685006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1048_719717006','719717006','http://snomed.info/sct','Psychosis co-occurrent and due to Parkinson''s disease (disorder)','719717006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1048_724761004','724761004','http://snomed.info/sct','Sporadic Parkinson disease (disorder)','724761004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1048_725146001','725146001','http://snomed.info/sct','Atypical juvenile parkinsonism (disorder)','725146001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2015_1290521000000109','1290521000000109','http://snomed.info/sct','Occupational exposure to monkeypox virus (event)','1290521000000109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2015_1290711000000105','1290711000000105','http://snomed.info/sct','Exposure to monkeypox virus (event)','1290711000000105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2136_A81.82','A81.82','http://hl7.org/fhir/sid/icd-10-cm','Gerstmann-Straussler-Scheinker syndrome','A8182','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1164_111864006','111864006','http://snomed.info/sct','Chikungunya fever (disorder)','111864006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2133_1259480003','1259480003','http://snomed.info/sct','Dementia due to fatal familial insomnia (disorder)','1259480003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2133_83157008','83157008','http://snomed.info/sct','Fatal familial insomnia (disorder)','83157008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1163_240507007','240507007','http://snomed.info/sct','Trivittatus fever (disorder)','240507007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1163_404236003','404236003','http://snomed.info/sct','Snowshoe hare virus encephalitis (disorder)','404236003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1163_41723001','41723001','http://snomed.info/sct','Jamestown Canyon virus disease (disorder)','41723001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1163_404237007','404237007','http://snomed.info/sct','Keystone virus encephalitis (disorder)','404237007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1163_416442006','416442006','http://snomed.info/sct','California encephalitis virus infection (disorder)','416442006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1163_418182000','418182000','http://snomed.info/sct','Disease caused by California serogroup virus (disorder)','418182000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1163_419226000','419226000','http://snomed.info/sct','California serogroup virus non-neuroinvasive disease (disorder)','419226000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1163_61094002','61094002','http://snomed.info/sct','La Crosse encephalitis (disorder)','61094002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1163_404238002','404238002','http://snomed.info/sct','Meningitis caused by Jamestown Canyon virus (disorder)','404238002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1163_404241006','404241006','http://snomed.info/sct','Meningitis caused by snowshoe hare virus (disorder)','404241006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1163_404239005','404239005','http://snomed.info/sct','Meningitis caused by California Orthobunyavirus (disorder)','404239005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1163_404240007','404240007','http://snomed.info/sct','Meningitis caused by La Crosse virus (disorder)','404240007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1163_404243009','404243009','http://snomed.info/sct','Meningitis caused by Keystone virus (disorder)','404243009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1163_404235004','404235004','http://snomed.info/sct','Jamestown Canyon virus encephalitis (disorder)','404235004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1163_417075004','417075004','http://snomed.info/sct','Neuroinvasive California encephalitis virus infection (disorder)','417075004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1163_418531007','418531007','http://snomed.info/sct','California serogroup virus neuroinvasive disease (disorder)','418531007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1284_B60.2','B60.2','http://hl7.org/fhir/sid/icd-10-cm','Naegleriasis','B602','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2134_A81.83','A81.83','http://hl7.org/fhir/sid/icd-10-cm','Fatal familial insomnia','A8183','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2255_34521000087103','34521000087103','http://snomed.info/sct','Infection caused by carbapenemase-producing Enterobacteriaceae (disorder)','34521000087103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1166_416707008','416707008','http://snomed.info/sct','Powassan encephalitis virus infection (disorder)','416707008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1166_417160009','417160009','http://snomed.info/sct','Non-neuroinvasive Powassan encephalitis virus infection (disorder)','417160009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1166_416543004','416543004','http://snomed.info/sct','Neuroinvasive Powassan encephalitis virus infection (disorder)','416543004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1287_186311005','186311005','http://snomed.info/sct','Acute and fulminating melioidosis (disorder)','186311005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1287_240389009','240389009','http://snomed.info/sct','Septicemic melioidosis (disorder)','240389009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1287_240390000','240390000','http://snomed.info/sct','Acute localized suppurative melioidosis (disorder)','240390000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1287_240391001','240391001','http://snomed.info/sct','Pulmonary melioidosis (disorder)','240391001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1287_428111003','428111003','http://snomed.info/sct','Melioidosis (disorder)','428111003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2131_72951007','72951007','http://snomed.info/sct','Gastroschisis (disorder)','72951007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2131_93556005','93556005','http://snomed.info/sct','Hologastroschisis (disorder)','93556005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1165_416925005','416925005','http://snomed.info/sct','Eastern equine encephalitis virus infection (disorder)','416925005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1165_417573001','417573001','http://snomed.info/sct','Non-neuroinvasive Eastern equine encephalitis virus infection (disorder)','417573001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1165_417496004','417496004','http://snomed.info/sct','Neuroinvasive Eastern equine encephalitis virus infection (disorder)','417496004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2132_Q79.3','Q79.3','http://hl7.org/fhir/sid/icd-10-cm','Gastroschisis','Q793','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.52_186946009','186946009','http://snomed.info/sct','Lymphogranuloma venereum (disorder)','186946009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.52_237084006','237084006','http://snomed.info/sct','Chlamydial cervicitis (disorder)','237084006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.52_240602008','240602008','http://snomed.info/sct','Early lymphogranuloma venereum (disorder)','240602008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.52_240603003','240603003','http://snomed.info/sct','Late lymphogranuloma venereum (disorder)','240603003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.52_240604009','240604009','http://snomed.info/sct','Latent lymphogranuloma venereum (disorder)','240604009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.52_447353001','447353001','http://snomed.info/sct','Infection of cervix caused by Chlamydia trachomatis (disorder)','447353001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.52_179101003','179101003','http://snomed.info/sct','Urethritis caused by Chlamydia trachomatis (disorder)','179101003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.52_236683007','236683007','http://snomed.info/sct','Chlamydial urethritis (disorder)','236683007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.53_A55','A55','http://hl7.org/fhir/sid/icd-10-cm','Chlamydial lymphogranuloma (venereum)','A55','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.53_A56.01','A56.01','http://hl7.org/fhir/sid/icd-10-cm','Chlamydial cystitis and urethritis','A5601','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.51_14166007','14166007','http://snomed.info/sct','Koplik spot (morphologic abnormality)','14166007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.51_268939001','268939001','http://snomed.info/sct','On examination - mouth - Koplik''s spots (finding)','268939001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.51_271667004','271667004','http://snomed.info/sct','Koplik spots (disorder)','271667004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1050_1156764005','1156764005','http://snomed.info/sct','Progressive supranuclear palsy parkinsonism syndrome (disorder)','1156764005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1050_1176991004','1176991004','http://snomed.info/sct','Parkinsonism following Mycoplasma infection (disorder)','1176991004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1050_1186798007','1186798007','http://snomed.info/sct','Parkinsonism caused by pesticide (disorder)','1186798007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1050_1186836002','1186836002','http://snomed.info/sct','Toxin-induced parkinsonism (disorder)','1186836002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1050_1260379008','1260379008','http://snomed.info/sct','Parkinsonism caused by dopamine receptor antagonist (disorder)','1260379008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1050_1260381005','1260381005','http://snomed.info/sct','Parkinsonism caused by dopamine depleting agent (disorder)','1260381005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1050_15782007','15782007','http://snomed.info/sct','1-Methyl-4-phenyl-1,2,3,6-tetrahydropyridine-induced parkinsonism (disorder)','15782007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1050_19972008','19972008','http://snomed.info/sct','Postencephalitic parkinsonism (disorder)','19972008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1050_230292008','230292008','http://snomed.info/sct','Secondary parkinsonism (disorder)','230292008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1050_230293003','230293003','http://snomed.info/sct','Carbon monoxide-induced parkinsonism (disorder)','230293003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1050_230294009','230294009','http://snomed.info/sct','Manganese-induced parkinsonism (disorder)','230294009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1050_230295005','230295005','http://snomed.info/sct','Parkinsonism with calcification of basal ganglia (disorder)','230295005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1050_230296006','230296006','http://snomed.info/sct','Vascular parkinsonism (disorder)','230296006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1050_265377002','265377002','http://snomed.info/sct','Symptomatic parkinsonism (disorder)','265377002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1050_32798002','32798002','http://snomed.info/sct','Parkinsonism (disorder)','32798002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1050_4223005','4223005','http://snomed.info/sct','Parkinsonism caused by drug (disorder)','4223005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1050_698279003','698279003','http://snomed.info/sct','X-linked dystonia parkinsonism (disorder)','698279003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1050_702323008','702323008','http://snomed.info/sct','Rapid onset dystonia parkinsonism (disorder)','702323008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1050_715737004','715737004','http://snomed.info/sct','Parkinsonism co-occurrent with dementia of Guadeloupe (disorder)','715737004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1050_720466001','720466001','http://snomed.info/sct','Adult-onset dystonia parkinsonism (disorder)','720466001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1050_722556003','722556003','http://snomed.info/sct','Parkinsonism co-occurrent and due to acute infection (disorder)','722556003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1050_722558002','722558002','http://snomed.info/sct','Parkinsonism following infection (disorder)','722558002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1050_722599008','722599008','http://snomed.info/sct','Parkinsonism due to hereditary spastic paraplegia (disorder)','722599008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1050_722763000','722763000','http://snomed.info/sct','Infantile dystonia parkinsonism (disorder)','722763000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1050_722964001','722964001','http://snomed.info/sct','Atypical Parkinsonism (disorder)','722964001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1050_722965000','722965000','http://snomed.info/sct','Parkinsonism due to heredodegenerative disorder (disorder)','722965000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1050_724546003','724546003','http://snomed.info/sct','Infection causing parkinsonism (disorder)','724546003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1050_724762006','724762006','http://snomed.info/sct','Parkinsonism due to and following injury of head (disorder)','724762006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1050_724763001','724763001','http://snomed.info/sct','Parkinsonism due to mass lesion of brain (disorder)','724763001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1050_724823008','724823008','http://snomed.info/sct','Functional parkinsonism (disorder)','724823008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1050_72585000','72585000','http://snomed.info/sct','Parkinsonian syndrome with idiopathic orthostatic hypotension (disorder)','72585000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1050_72820004','72820004','http://snomed.info/sct','Parkinsonism caused by neuroleptic drug (disorder)','72820004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1050_737582007','737582007','http://snomed.info/sct','Hemiparkinsonism hemiatrophy syndrome (disorder)','737582007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1050_766872002','766872002','http://snomed.info/sct','Parkinsonism caused by cyanide (disorder)','766872002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1050_770757004','770757004','http://snomed.info/sct','X-linked parkinsonism with spasticity syndrome (disorder)','770757004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1050_783012006','783012006','http://snomed.info/sct','Parkinsonian pyramidal syndrome (disorder)','783012006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1050_788911004','788911004','http://snomed.info/sct','Dissociative neurological symptom disorder co-occurrent with parkinsonism (disorder)','788911004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1050_870288002','870288002','http://snomed.info/sct','Parkinsonism caused by methanol (disorder)','870288002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1050_870295006','870295006','http://snomed.info/sct','Parkinsonism caused by carbon disulfide (disorder)','870295006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1050_1176989007','1176989007','http://snomed.info/sct','Parkinsonism due to prion disease (disorder)','1176989007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1050_722557007','722557007','http://snomed.info/sct','Parkinsonism due to human immunodeficiency virus infection (disorder)','722557007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1050_38523005','38523005','http://snomed.info/sct','Syphilitic parkinsonism (disorder)','38523005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2140_1003938005','1003938005','http://snomed.info/sct','Phenylketonuria due to tetrahydrobiopterin deficiency (disorder)','1003938005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2140_190687004','190687004','http://snomed.info/sct','Phenylketonuria (disorder)','190687004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2140_297225000','297225000','http://snomed.info/sct','Maternal phenylketonuria (disorder)','297225000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2140_40751003','40751003','http://snomed.info/sct','Persistent hyperphenylalaninemia AND tyrosinemia (disorder)','40751003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2140_440009','440009','http://snomed.info/sct','Persistent hyperphenylalaninemia (disorder)','440009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2140_60590005','60590005','http://snomed.info/sct','Maternal phenylketonuria fetal effect (disorder)','60590005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2140_7573000','7573000','http://snomed.info/sct','Classical phenylketonuria (disorder)','7573000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2140_890435004','890435004','http://snomed.info/sct','Classical phenylketonuria with partial deficiency of phenylalanine hydroxylase (disorder)','890435004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2140_890436003','890436003','http://snomed.info/sct','Classical phenylketonuria with total deficiency of phenylalanine hydroxylase (disorder)','890436003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1291_A24.1','A24.1','http://hl7.org/fhir/sid/icd-10-cm','Acute and fulminating melioidosis','A241','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1291_A24.3','A24.3','http://hl7.org/fhir/sid/icd-10-cm','Other melioidosis','A243','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1291_A24.9','A24.9','http://hl7.org/fhir/sid/icd-10-cm','Melioidosis, unspecified','A249','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2141_E70.0','E70.0','http://hl7.org/fhir/sid/icd-10-cm','Classical phenylketonuria','E700','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1051_G90.3','G90.3','http://hl7.org/fhir/sid/icd-10-cm','Multi-system degeneration of the autonomic nervous system','G903','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.130_10624911000119107','10624911000119107','http://snomed.info/sct','Otitis media caused by Influenza A virus subtype H1N1 (disorder)','10624911000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.130_10624951000119108','10624951000119108','http://snomed.info/sct','Otitis media caused by Influenza virus (disorder)','10624951000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.130_10628871000119101','10628871000119101','http://snomed.info/sct','Gastroenteritis caused by Influenza virus (disorder)','10628871000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.130_10628911000119103','10628911000119103','http://snomed.info/sct','Gastroenteritis caused by Influenza A virus (disorder)','10628911000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.130_10629191000119100','10629191000119100','http://snomed.info/sct','Bronchiolitis caused by influenza virus (disorder)','10629191000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.130_10629351000119108','10629351000119108','http://snomed.info/sct','Myocarditis caused by Influenza A virus (disorder)','10629351000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.130_10674911000119108','10674911000119108','http://snomed.info/sct','Otitis media caused by Influenza A virus (disorder)','10674911000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.130_10677711000119101','10677711000119101','http://snomed.info/sct','Encephalopathy caused by Influenza A virus (disorder)','10677711000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.130_10685111000119102','10685111000119102','http://snomed.info/sct','Upper respiratory tract infection caused by Influenza virus (disorder)','10685111000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.130_142921000119103','142921000119103','http://snomed.info/sct','Upper respiratory tract infection caused by avian influenza (disorder)','142921000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.130_142931000119100','142931000119100','http://snomed.info/sct','Pneumonia caused by Influenza A virus subtype H1N1 (disorder)','142931000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.130_142941000119109','142941000119109','http://snomed.info/sct','Upper respiratory tract infection caused by H1N1 influenza (disorder)','142941000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.130_142951000119106','142951000119106','http://snomed.info/sct','Myocarditis caused by Influenza A virus subtype H1N1 (disorder)','142951000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.130_142961000119108','142961000119108','http://snomed.info/sct','Gastroenteritis caused by Influenza A virus subtype H1N1 (disorder)','142961000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.130_142971000119102','142971000119102','http://snomed.info/sct','Encephalopathy caused by Influenza A virus subtype H1N1 (disorder)','142971000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.130_142981000119104','142981000119104','http://snomed.info/sct','Myocarditis caused by avian influenza (disorder)','142981000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.130_142991000119101','142991000119101','http://snomed.info/sct','Gastroenteritis caused by avian influenza (disorder)','142991000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.130_143001000119100','143001000119100','http://snomed.info/sct','Encephalopathy caused by avian influenza (disorder)','143001000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.130_143111000119103','143111000119103','http://snomed.info/sct','Pneumonia caused by avian influenza (disorder)','143111000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.130_16311000119108','16311000119108','http://snomed.info/sct','Pneumonia caused by Influenza virus (disorder)','16311000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.130_194946005','194946005','http://snomed.info/sct','Acute myocarditis - influenzal (disorder)','194946005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.130_195878008','195878008','http://snomed.info/sct','Pneumonia and influenza (disorder)','195878008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.130_195923003','195923003','http://snomed.info/sct','Influenza with laryngitis (disorder)','195923003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.130_195924009','195924009','http://snomed.info/sct','Influenza with pharyngitis (disorder)','195924009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.130_195929004','195929004','http://snomed.info/sct','Influenza with gastrointestinal tract involvement (disorder)','195929004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.130_24662006','24662006','http://snomed.info/sct','Influenza caused by Influenza B virus (disorder)','24662006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.130_328531000119104','328531000119104','http://snomed.info/sct','Upper respiratory tract infection caused by Influenza A (disorder)','328531000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.130_408687004','408687004','http://snomed.info/sct','Healthcare associated influenza disease (disorder)','408687004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.130_41269000','41269000','http://snomed.info/sct','Influenzal bronchopneumonia (disorder)','41269000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.130_421539000','421539000','http://snomed.info/sct','Influenzavirus type A, avian, H1N2 strain (organism)','421539000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.130_434921000124108','434921000124108','http://snomed.info/sct','Pneumonia due to Influenza A virus (disorder)','434921000124108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.130_434931000124106','434931000124106','http://snomed.info/sct','Pneumonia due to Influenza A virus subtype H1N1 (disorder)','434931000124106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.130_435051000124104','435051000124104','http://snomed.info/sct','Influenza due to Influenza A virus with upper respiratory signs (disorder)','435051000124104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.130_43692000','43692000','http://snomed.info/sct','Influenzal acute upper respiratory infection (disorder)','43692000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.130_442438000','442438000','http://snomed.info/sct','Influenza caused by Influenza A virus (disorder)','442438000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.130_442696006','442696006','http://snomed.info/sct','Influenza caused by Influenza A virus subtype H1N1 (disorder)','442696006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.130_55604004','55604004','http://snomed.info/sct','Avian influenza (disorder)','55604004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.130_6142004','6142004','http://snomed.info/sct','Influenza (disorder)','6142004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.130_61700007','61700007','http://snomed.info/sct','Influenza with non-respiratory manifestation (disorder)','61700007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.130_661761000124109','661761000124109','http://snomed.info/sct','Death associated with influenza (event)','661761000124109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.130_711128004','711128004','http://snomed.info/sct','Influenza caused by influenza virus type A, avian, H3N2 strain (disorder)','711128004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.130_719590007','719590007','http://snomed.info/sct','Influenza caused by seasonal influenza virus (disorder)','719590007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.130_719865001','719865001','http://snomed.info/sct','Influenza caused by pandemic influenza virus (disorder)','719865001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.130_738276008','738276008','http://snomed.info/sct','Disorder of central nervous system co-occurrent and due to infection with influenza virus (disorder)','738276008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.130_74644004','74644004','http://snomed.info/sct','Influenza with encephalopathy (disorder)','74644004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.130_772810003','772810003','http://snomed.info/sct','Influenza caused by Influenza A virus subtype H3N2 (disorder)','772810003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.130_772839003','772839003','http://snomed.info/sct','Pneumonia caused by Influenza A virus (disorder)','772839003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.130_78046005','78046005','http://snomed.info/sct','Myocarditis caused by influenza virus (disorder)','78046005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.130_81524006','81524006','http://snomed.info/sct','Influenza caused by Influenza C virus (disorder)','81524006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.130_866126000','866126000','http://snomed.info/sct','Myelitis caused by Influenza A virus (disorder)','866126000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.130_1149091008','1149091008','http://snomed.info/sct','Influenza caused by Influenza A virus subtype H2 (disorder)','1149091008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.130_427873006','427873006','http://snomed.info/sct','Influenza caused by influenza virus type A, avian, H5N1 strain (disorder)','427873006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.130_450715004','450715004','http://snomed.info/sct','Influenza caused by Influenza A virus subtype H7 (disorder)','450715004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.130_450716003','450716003','http://snomed.info/sct','Influenza caused by Influenza A virus subtype H9 (disorder)','450716003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.130_541131000124102','541131000124102','http://snomed.info/sct','Infection caused by novel Influenza A virus variant (disorder)','541131000124102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.130_707448003','707448003','http://snomed.info/sct','Influenza caused by Influenza A virus subtype H7N9 (disorder)','707448003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.130_713083002','713083002','http://snomed.info/sct','Influenza caused by Influenza A virus subtype H5 (disorder)','713083002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.130_772828001','772828001','http://snomed.info/sct','Influenza caused by Influenza A virus subtype H5N1 (disorder)','772828001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.130_309789002','309789002','http://snomed.info/sct','Encephalitis caused by Influenza virus (disorder)','309789002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2260_P96.1','P96.1','http://hl7.org/fhir/sid/icd-10-cm','Neonatal withdrawal symptoms from maternal use of drugs of addiction','P961','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.251_19265001','19265001','http://snomed.info/sct','Tularemia (disorder)','19265001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.251_21857006','21857006','http://snomed.info/sct','Glandular tularemia (disorder)','21857006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.251_37722001','37722001','http://snomed.info/sct','Ulceroglandular tularemia (disorder)','37722001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.251_398554008','398554008','http://snomed.info/sct','Typhoidal tularemia (disorder)','398554008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.251_398575000','398575000','http://snomed.info/sct','Oropharyngeal tularemia (disorder)','398575000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.251_45556008','45556008','http://snomed.info/sct','Pulmonary tularemia (disorder)','45556008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.251_73363000','73363000','http://snomed.info/sct','Oculoglandular tularemia (disorder)','73363000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.131_B16','B16','http://hl7.org/fhir/sid/icd-10-cm','Acute hepatitis B','B16','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.131_B16.2','B16.2','http://hl7.org/fhir/sid/icd-10-cm','Acute hepatitis B without delta-agent with hepatic coma','B162','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.131_B16.9','B16.9','http://hl7.org/fhir/sid/icd-10-cm','Acute hepatitis B without delta-agent and without hepatic coma','B169','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.131_B16.0','B16.0','http://hl7.org/fhir/sid/icd-10-cm','Acute hepatitis B with delta-agent with hepatic coma','B160','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.131_B16.1','B16.1','http://hl7.org/fhir/sid/icd-10-cm','Acute hepatitis B with delta-agent without hepatic coma','B161','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.252_A21.0','A21.0','http://hl7.org/fhir/sid/icd-10-cm','Ulceroglandular tularemia','A210','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.252_A21.1','A21.1','http://hl7.org/fhir/sid/icd-10-cm','Oculoglandular tularemia','A211','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.252_A21.2','A21.2','http://hl7.org/fhir/sid/icd-10-cm','Pulmonary tularemia','A212','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.252_A21.3','A21.3','http://hl7.org/fhir/sid/icd-10-cm','Gastrointestinal tularemia','A213','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.252_A21.7','A21.7','http://hl7.org/fhir/sid/icd-10-cm','Generalized tularemia','A217','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.252_A21.8','A21.8','http://hl7.org/fhir/sid/icd-10-cm','Other forms of tularemia','A218','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.252_A21.9','A21.9','http://hl7.org/fhir/sid/icd-10-cm','Tularemia, unspecified','A219','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.133_J10.00','J10.00','http://hl7.org/fhir/sid/icd-10-cm','Influenza due to other identified influenza virus with unspecified type of pneumonia','J1000','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.133_J10.01','J10.01','http://hl7.org/fhir/sid/icd-10-cm','Influenza due to other identified influenza virus with the same other identified influenza virus pneumonia','J1001','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.133_J10.08','J10.08','http://hl7.org/fhir/sid/icd-10-cm','Influenza due to other identified influenza virus with other specified pneumonia','J1008','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.133_J10.1','J10.1','http://hl7.org/fhir/sid/icd-10-cm','Influenza due to other identified influenza virus with other respiratory manifestations','J101','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.133_J10.2','J10.2','http://hl7.org/fhir/sid/icd-10-cm','Influenza due to other identified influenza virus with gastrointestinal manifestations','J102','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.133_J10.81','J10.81','http://hl7.org/fhir/sid/icd-10-cm','Influenza due to other identified influenza virus with encephalopathy','J1081','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.133_J10.82','J10.82','http://hl7.org/fhir/sid/icd-10-cm','Influenza due to other identified influenza virus with myocarditis','J1082','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.133_J10.83','J10.83','http://hl7.org/fhir/sid/icd-10-cm','Influenza due to other identified influenza virus with otitis media','J1083','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.133_J10.89','J10.89','http://hl7.org/fhir/sid/icd-10-cm','Influenza due to other identified influenza virus with other manifestations','J1089','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.133_J11.00','J11.00','http://hl7.org/fhir/sid/icd-10-cm','Influenza due to unidentified influenza virus with unspecified type of pneumonia','J1100','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.133_J11.08','J11.08','http://hl7.org/fhir/sid/icd-10-cm','Influenza due to unidentified influenza virus with specified pneumonia','J1108','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.133_J11.1','J11.1','http://hl7.org/fhir/sid/icd-10-cm','Influenza due to unidentified influenza virus with other respiratory manifestations','J111','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.133_J11.2','J11.2','http://hl7.org/fhir/sid/icd-10-cm','Influenza due to unidentified influenza virus with gastrointestinal manifestations','J112','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.133_J11.81','J11.81','http://hl7.org/fhir/sid/icd-10-cm','Influenza due to unidentified influenza virus with encephalopathy','J1181','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.133_J11.82','J11.82','http://hl7.org/fhir/sid/icd-10-cm','Influenza due to unidentified influenza virus with myocarditis','J1182','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.133_J11.83','J11.83','http://hl7.org/fhir/sid/icd-10-cm','Influenza due to unidentified influenza virus with otitis media','J1183','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.133_J11.89','J11.89','http://hl7.org/fhir/sid/icd-10-cm','Influenza due to unidentified influenza virus with other manifestations','J1189','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.133_J09.X1','J09.X1','http://hl7.org/fhir/sid/icd-10-cm','Influenza due to identified novel influenza A virus with pneumonia','J09X1','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.133_J09.X2','J09.X2','http://hl7.org/fhir/sid/icd-10-cm','Influenza due to identified novel influenza A virus with other respiratory manifestations','J09X2','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.133_J09.X3','J09.X3','http://hl7.org/fhir/sid/icd-10-cm','Influenza due to identified novel influenza A virus with gastrointestinal manifestations','J09X3','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.133_J09.X9','J09.X9','http://hl7.org/fhir/sid/icd-10-cm','Influenza due to identified novel influenza A virus with other manifestations','J09X9','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.135_103611000119102','103611000119102','http://snomed.info/sct','Cirrhosis of liver due to hepatitis B (disorder)','103611000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.135_1116000','1116000','http://snomed.info/sct','Chronic aggressive type B viral hepatitis (disorder)','1116000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.135_16859701000119109','16859701000119109','http://snomed.info/sct','Chronic hepatitis B during pregnancy (disorder)','16859701000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.135_186639003','186639003','http://snomed.info/sct','Chronic viral hepatitis B without delta-agent (disorder)','186639003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.135_235871004','235871004','http://snomed.info/sct','Hepatitis B carrier (finding)','235871004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.135_38662009','38662009','http://snomed.info/sct','Chronic persistent type B viral hepatitis (disorder)','38662009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.135_424340000','424340000','http://snomed.info/sct','Hepatic coma due to chronic hepatitis B (disorder)','424340000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.135_446698005','446698005','http://snomed.info/sct','Reactivation of hepatitis B viral hepatitis (disorder)','446698005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.135_50167007','50167007','http://snomed.info/sct','Chronic active type B viral hepatitis (disorder)','50167007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.135_61977001','61977001','http://snomed.info/sct','Chronic type B viral hepatitis (disorder)','61977001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.135_713966008','713966008','http://snomed.info/sct','Occult chronic type B viral hepatitis (disorder)','713966008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.135_153091000119109','153091000119109','http://snomed.info/sct','Hepatic coma due to chronic hepatitis B with delta agent (disorder)','153091000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.135_235865005','235865005','http://snomed.info/sct','Hepatitis D superinfection of hepatitis B carrier (disorder)','235865005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.135_235869004','235869004','http://snomed.info/sct','Chronic viral hepatitis B with hepatitis D (disorder)','235869004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.135_838380002','838380002','http://snomed.info/sct','Chronic hepatitis B co-occurrent with hepatitis C and hepatitis D (disorder)','838380002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2027_186825001','186825001','http://snomed.info/sct','Systemic bartonellosis (disorder)','186825001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2027_186826000','186826000','http://snomed.info/sct','Cutaneous and mucocutaneous bartonellosis (disorder)','186826000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2027_240452007','240452007','http://snomed.info/sct','Asymptomatic bartonellosis (disorder)','240452007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2027_240456005','240456005','http://snomed.info/sct','Miliary bartonellosis (disorder)','240456005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2027_240457001','240457001','http://snomed.info/sct','Nodular bartonellosis (disorder)','240457001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2027_240458006','240458006','http://snomed.info/sct','Neurobartonellosis (disorder)','240458006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2027_240624008','240624008','http://snomed.info/sct','Bacillary peliosis caused by Bartonella (disorder)','240624008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2027_266123003','266123003','http://snomed.info/sct','Bartonellosis (disorder)','266123003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2027_416205001','416205001','http://snomed.info/sct','Infection caused by Bartonella peromysci (disorder)','416205001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2027_715065007','715065007','http://snomed.info/sct','Infection caused by Bartonella talpae (disorder)','715065007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2027_76366001','76366001','http://snomed.info/sct','Hemolytic anemia caused by Bartonella (disorder)','76366001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2027_1141788003','1141788003','http://snomed.info/sct','Bacillary peliosis caused by Bartonella quintana (disorder)','1141788003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2027_240453002','240453002','http://snomed.info/sct','Oroya fever (disorder)','240453002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2027_240455009','240455009','http://snomed.info/sct','Verruga peruana (disorder)','240455009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2027_262461007','262461007','http://snomed.info/sct','Infection caused by Bartonella bacilliformis (disorder)','262461007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2027_82214002','82214002','http://snomed.info/sct','Trench fever (disorder)','82214002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2027_1141789006','1141789006','http://snomed.info/sct','Bacillary peliosis caused by Bartonella henselae (disorder)','1141789006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2027_410472006','410472006','http://snomed.info/sct','Bartonella henselae neuroretinitis (disorder)','410472006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2027_79974007','79974007','http://snomed.info/sct','Cat scratch disease (disorder)','79974007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2148_Q71.00','Q71.00','http://hl7.org/fhir/sid/icd-10-cm','Congenital complete absence of unspecified upper limb','Q7100','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2148_Q71.01','Q71.01','http://hl7.org/fhir/sid/icd-10-cm','Congenital complete absence of right upper limb','Q7101','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2148_Q71.02','Q71.02','http://hl7.org/fhir/sid/icd-10-cm','Congenital complete absence of left upper limb','Q7102','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2148_Q71.03','Q71.03','http://hl7.org/fhir/sid/icd-10-cm','Congenital complete absence of upper limb, bilateral','Q7103','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2148_Q71.10','Q71.10','http://hl7.org/fhir/sid/icd-10-cm','Congenital absence of unspecified upper arm and forearm with hand present','Q7110','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2148_Q71.11','Q71.11','http://hl7.org/fhir/sid/icd-10-cm','Congenital absence of right upper arm and forearm with hand present','Q7111','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2148_Q71.12','Q71.12','http://hl7.org/fhir/sid/icd-10-cm','Congenital absence of left upper arm and forearm with hand present','Q7112','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2148_Q71.13','Q71.13','http://hl7.org/fhir/sid/icd-10-cm','Congenital absence of upper arm and forearm with hand present, bilateral','Q7113','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2148_Q71.20','Q71.20','http://hl7.org/fhir/sid/icd-10-cm','Congenital absence of both forearm and hand, unspecified upper limb','Q7120','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2148_Q71.21','Q71.21','http://hl7.org/fhir/sid/icd-10-cm','Congenital absence of both forearm and hand, right upper limb','Q7121','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2148_Q71.22','Q71.22','http://hl7.org/fhir/sid/icd-10-cm','Congenital absence of both forearm and hand, left upper limb','Q7122','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2148_Q71.23','Q71.23','http://hl7.org/fhir/sid/icd-10-cm','Congenital absence of both forearm and hand, bilateral','Q7123','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2148_Q71.30','Q71.30','http://hl7.org/fhir/sid/icd-10-cm','Congenital absence of unspecified hand and finger','Q7130','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2148_Q71.31','Q71.31','http://hl7.org/fhir/sid/icd-10-cm','Congenital absence of right hand and finger','Q7131','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2148_Q71.32','Q71.32','http://hl7.org/fhir/sid/icd-10-cm','Congenital absence of left hand and finger','Q7132','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2148_Q71.33','Q71.33','http://hl7.org/fhir/sid/icd-10-cm','Congenital absence of hand and finger, bilateral','Q7133','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2148_Q71.40','Q71.40','http://hl7.org/fhir/sid/icd-10-cm','Longitudinal reduction defect of unspecified radius','Q7140','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2148_Q71.41','Q71.41','http://hl7.org/fhir/sid/icd-10-cm','Longitudinal reduction defect of right radius','Q7141','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2148_Q71.42','Q71.42','http://hl7.org/fhir/sid/icd-10-cm','Longitudinal reduction defect of left radius','Q7142','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2148_Q71.43','Q71.43','http://hl7.org/fhir/sid/icd-10-cm','Longitudinal reduction defect of radius, bilateral','Q7143','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2148_Q71.50','Q71.50','http://hl7.org/fhir/sid/icd-10-cm','Longitudinal reduction defect of unspecified ulna','Q7150','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2148_Q71.51','Q71.51','http://hl7.org/fhir/sid/icd-10-cm','Longitudinal reduction defect of right ulna','Q7151','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2148_Q71.52','Q71.52','http://hl7.org/fhir/sid/icd-10-cm','Longitudinal reduction defect of left ulna','Q7152','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2148_Q71.53','Q71.53','http://hl7.org/fhir/sid/icd-10-cm','Longitudinal reduction defect of ulna, bilateral','Q7153','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2148_Q71.60','Q71.60','http://hl7.org/fhir/sid/icd-10-cm','Lobster-claw hand, unspecified hand','Q7160','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2148_Q71.61','Q71.61','http://hl7.org/fhir/sid/icd-10-cm','Lobster-claw right hand','Q7161','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2148_Q71.62','Q71.62','http://hl7.org/fhir/sid/icd-10-cm','Lobster-claw left hand','Q7162','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2148_Q71.63','Q71.63','http://hl7.org/fhir/sid/icd-10-cm','Lobster-claw hand, bilateral','Q7163','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2148_Q71.891','Q71.891','http://hl7.org/fhir/sid/icd-10-cm','Other reduction defects of right upper limb','Q71891','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2148_Q71.892','Q71.892','http://hl7.org/fhir/sid/icd-10-cm','Other reduction defects of left upper limb','Q71892','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2148_Q71.893','Q71.893','http://hl7.org/fhir/sid/icd-10-cm','Other reduction defects of upper limb, bilateral','Q71893','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2148_Q71.899','Q71.899','http://hl7.org/fhir/sid/icd-10-cm','Other reduction defects of unspecified upper limb','Q71899','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2148_Q71.90','Q71.90','http://hl7.org/fhir/sid/icd-10-cm','Unspecified reduction defect of unspecified upper limb','Q7190','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2148_Q71.91','Q71.91','http://hl7.org/fhir/sid/icd-10-cm','Unspecified reduction defect of right upper limb','Q7191','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2148_Q71.92','Q71.92','http://hl7.org/fhir/sid/icd-10-cm','Unspecified reduction defect of left upper limb','Q7192','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2148_Q71.93','Q71.93','http://hl7.org/fhir/sid/icd-10-cm','Unspecified reduction defect of upper limb, bilateral','Q7193','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2148_Q72.00','Q72.00','http://hl7.org/fhir/sid/icd-10-cm','Congenital complete absence of unspecified lower limb','Q7200','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2148_Q72.01','Q72.01','http://hl7.org/fhir/sid/icd-10-cm','Congenital complete absence of right lower limb','Q7201','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2148_Q72.02','Q72.02','http://hl7.org/fhir/sid/icd-10-cm','Congenital complete absence of left lower limb','Q7202','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2148_Q72.03','Q72.03','http://hl7.org/fhir/sid/icd-10-cm','Congenital complete absence of lower limb, bilateral','Q7203','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2148_Q72.10','Q72.10','http://hl7.org/fhir/sid/icd-10-cm','Congenital absence of unspecified thigh and lower leg with foot present','Q7210','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2148_Q72.11','Q72.11','http://hl7.org/fhir/sid/icd-10-cm','Congenital absence of right thigh and lower leg with foot present','Q7211','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2148_Q72.12','Q72.12','http://hl7.org/fhir/sid/icd-10-cm','Congenital absence of left thigh and lower leg with foot present','Q7212','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2148_Q72.13','Q72.13','http://hl7.org/fhir/sid/icd-10-cm','Congenital absence of thigh and lower leg with foot present, bilateral','Q7213','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2148_Q72.20','Q72.20','http://hl7.org/fhir/sid/icd-10-cm','Congenital absence of both lower leg and foot, unspecified lower limb','Q7220','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2148_Q72.21','Q72.21','http://hl7.org/fhir/sid/icd-10-cm','Congenital absence of both lower leg and foot, right lower limb','Q7221','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2148_Q72.22','Q72.22','http://hl7.org/fhir/sid/icd-10-cm','Congenital absence of both lower leg and foot, left lower limb','Q7222','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2148_Q72.23','Q72.23','http://hl7.org/fhir/sid/icd-10-cm','Congenital absence of both lower leg and foot, bilateral','Q7223','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2148_Q72.30','Q72.30','http://hl7.org/fhir/sid/icd-10-cm','Congenital absence of unspecified foot and toe(s)','Q7230','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2148_Q72.31','Q72.31','http://hl7.org/fhir/sid/icd-10-cm','Congenital absence of right foot and toe(s)','Q7231','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2148_Q72.32','Q72.32','http://hl7.org/fhir/sid/icd-10-cm','Congenital absence of left foot and toe(s)','Q7232','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2148_Q72.33','Q72.33','http://hl7.org/fhir/sid/icd-10-cm','Congenital absence of foot and toe(s), bilateral','Q7233','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2148_Q72.40','Q72.40','http://hl7.org/fhir/sid/icd-10-cm','Longitudinal reduction defect of unspecified femur','Q7240','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2148_Q72.41','Q72.41','http://hl7.org/fhir/sid/icd-10-cm','Longitudinal reduction defect of right femur','Q7241','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2148_Q72.42','Q72.42','http://hl7.org/fhir/sid/icd-10-cm','Longitudinal reduction defect of left femur','Q7242','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2148_Q72.43','Q72.43','http://hl7.org/fhir/sid/icd-10-cm','Longitudinal reduction defect of femur, bilateral','Q7243','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2148_Q72.50','Q72.50','http://hl7.org/fhir/sid/icd-10-cm','Longitudinal reduction defect of unspecified tibia','Q7250','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2148_Q72.51','Q72.51','http://hl7.org/fhir/sid/icd-10-cm','Longitudinal reduction defect of right tibia','Q7251','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2148_Q72.52','Q72.52','http://hl7.org/fhir/sid/icd-10-cm','Longitudinal reduction defect of left tibia','Q7252','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2148_Q72.53','Q72.53','http://hl7.org/fhir/sid/icd-10-cm','Longitudinal reduction defect of tibia, bilateral','Q7253','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2148_Q72.60','Q72.60','http://hl7.org/fhir/sid/icd-10-cm','Longitudinal reduction defect of unspecified fibula','Q7260','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2148_Q72.61','Q72.61','http://hl7.org/fhir/sid/icd-10-cm','Longitudinal reduction defect of right fibula','Q7261','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2148_Q72.62','Q72.62','http://hl7.org/fhir/sid/icd-10-cm','Longitudinal reduction defect of left fibula','Q7262','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2148_Q72.63','Q72.63','http://hl7.org/fhir/sid/icd-10-cm','Longitudinal reduction defect of fibula, bilateral','Q7263','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2148_Q72.70','Q72.70','http://hl7.org/fhir/sid/icd-10-cm','Split foot, unspecified lower limb','Q7270','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2148_Q72.71','Q72.71','http://hl7.org/fhir/sid/icd-10-cm','Split foot, right lower limb','Q7271','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2148_Q72.72','Q72.72','http://hl7.org/fhir/sid/icd-10-cm','Split foot, left lower limb','Q7272','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2148_Q72.73','Q72.73','http://hl7.org/fhir/sid/icd-10-cm','Split foot, bilateral','Q7273','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2148_Q72.891','Q72.891','http://hl7.org/fhir/sid/icd-10-cm','Other reduction defects of right lower limb','Q72891','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2148_Q72.892','Q72.892','http://hl7.org/fhir/sid/icd-10-cm','Other reduction defects of left lower limb','Q72892','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2148_Q72.893','Q72.893','http://hl7.org/fhir/sid/icd-10-cm','Other reduction defects of lower limb, bilateral','Q72893','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2148_Q72.899','Q72.899','http://hl7.org/fhir/sid/icd-10-cm','Other reduction defects of unspecified lower limb','Q72899','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2148_Q72.90','Q72.90','http://hl7.org/fhir/sid/icd-10-cm','Unspecified reduction defect of unspecified lower limb','Q7290','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2148_Q72.91','Q72.91','http://hl7.org/fhir/sid/icd-10-cm','Unspecified reduction defect of right lower limb','Q7291','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2148_Q72.92','Q72.92','http://hl7.org/fhir/sid/icd-10-cm','Unspecified reduction defect of left lower limb','Q7292','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2148_Q72.93','Q72.93','http://hl7.org/fhir/sid/icd-10-cm','Unspecified reduction defect of lower limb, bilateral','Q7293','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2148_Q73.0','Q73.0','http://hl7.org/fhir/sid/icd-10-cm','Congenital absence of unspecified limb(s)','Q730','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2148_Q73.1','Q73.1','http://hl7.org/fhir/sid/icd-10-cm','Phocomelia, unspecified limb(s)','Q731','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2148_Q73.8','Q73.8','http://hl7.org/fhir/sid/icd-10-cm','Other reduction defects of unspecified limb(s)','Q738','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.256_1102005','1102005','http://snomed.info/sct','Intraerythrocytic parasitosis caused by Nuttallia (disorder)','1102005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.256_21061004','21061004','http://snomed.info/sct','Babesiosis (disorder)','21061004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.256_24620004','24620004','http://snomed.info/sct','Hemolytic anemia due to babesiosis (disorder)','24620004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.256_51613008','51613008','http://snomed.info/sct','Infection caused by Babesia divergens (disorder)','51613008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.256_73908004','73908004','http://snomed.info/sct','Infection caused by Babesia microti (disorder)','73908004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.256_83937008','83937008','http://snomed.info/sct','Infection caused by Babesia bovis (disorder)','83937008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.136_127121000119101','127121000119101','http://snomed.info/sct','Sepsis without acute organ dysfunction caused by Streptococcus pneumoniae (disorder)','127121000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.136_127261000119100','127261000119100','http://snomed.info/sct','Septic shock co-occurrent with acute organ dysfunction caused by Pneumococcus (disorder)','127261000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.136_1288002001','1288002001','http://snomed.info/sct','Arthritis of ankle caused by Streptococcus pneumoniae (disorder)','1288002001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.136_15689241000119101','15689241000119101','http://snomed.info/sct','Arthritis of bilateral ankles caused by Streptococcus pneumoniae (disorder)','15689241000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.136_194916007','194916007','http://snomed.info/sct','Acute pneumococcal pericarditis (disorder)','194916007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.136_194956009','194956009','http://snomed.info/sct','Septic myocarditis - pneumococcal (disorder)','194956009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.136_201467001','201467001','http://snomed.info/sct','Pneumococcal arthritis and polyarthritis (disorder)','201467001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.136_24302002','24302002','http://snomed.info/sct','Pneumococcal pleurisy with effusion (disorder)','24302002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.136_2585002','2585002','http://snomed.info/sct','Pneumococcal pleurisy (disorder)','2585002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.136_317781000119102','317781000119102','http://snomed.info/sct','Arthritis of left ankle caused by Streptococcus pneumoniae (disorder)','317781000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.136_317811000119100','317811000119100','http://snomed.info/sct','Arthritis of left hip joint caused by Streptococcus pneumoniae (disorder)','317811000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.136_317821000119107','317821000119107','http://snomed.info/sct','Arthritis of left knee caused by Streptococcus pneumoniae (disorder)','317821000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.136_317831000119105','317831000119105','http://snomed.info/sct','Arthritis of joint of left shoulder region caused by Streptococcus pneumoniae (disorder)','317831000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.136_317851000119104','317851000119104','http://snomed.info/sct','Arthritis of right ankle caused by Streptococcus pneumoniae (disorder)','317851000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.136_317881000119106','317881000119106','http://snomed.info/sct','Arthritis of right hip joint caused by Streptococcus pneumoniae (disorder)','317881000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.136_317891000119109','317891000119109','http://snomed.info/sct','Arthritis of right knee caused by Streptococcus pneumoniae (disorder)','317891000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.136_317901000119108','317901000119108','http://snomed.info/sct','Arthritis of joint of right shoulder region caused by Streptococcus pneumoniae (disorder)','317901000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.136_36309003','36309003','http://snomed.info/sct','Pneumococcal arthritis (disorder)','36309003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.136_406617004','406617004','http://snomed.info/sct','Invasive Streptococcus pneumoniae disease (disorder)','406617004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.136_406618009','406618009','http://snomed.info/sct','Invasive drug resistant Streptococcus pneumoniae disease (disorder)','406618009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.136_448421008','448421008','http://snomed.info/sct','Sepsis caused by Streptococcus pneumoniae (disorder)','448421008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.136_58710009','58710009','http://snomed.info/sct','Pneumococcal peritonitis (disorder)','58710009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.136_713614001','713614001','http://snomed.info/sct','Drug resistant Streptococcus pneumoniae disease (disorder)','713614001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.136_51169003','51169003','http://snomed.info/sct','Pneumococcal meningitis (disorder)','51169003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2028_A44.0','A44.0','http://hl7.org/fhir/sid/icd-10-cm','Systemic bartonellosis','A440','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2028_A44.1','A44.1','http://hl7.org/fhir/sid/icd-10-cm','Cutaneous and mucocutaneous bartonellosis','A441','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2028_A44.8','A44.8','http://hl7.org/fhir/sid/icd-10-cm','Other forms of bartonellosis','A448','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2028_A44.9','A44.9','http://hl7.org/fhir/sid/icd-10-cm','Bartonellosis, unspecified','A449','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2028_A28.1','A28.1','http://hl7.org/fhir/sid/icd-10-cm','Cat-scratch disease','A281','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2028_A79.0','A79.0','http://hl7.org/fhir/sid/icd-10-cm','Trench fever','A790','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.257_B60.0','B60.0','http://hl7.org/fhir/sid/icd-10-cm','Babesiosis','B600','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.257_B60.00','B60.00','http://hl7.org/fhir/sid/icd-10-cm','Babesiosis, unspecified','B6000','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.257_B60.01','B60.01','http://hl7.org/fhir/sid/icd-10-cm','Babesiosis due to Babesia microti','B6001','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.257_B60.02','B60.02','http://hl7.org/fhir/sid/icd-10-cm','Babesiosis due to Babesia duncani','B6002','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.257_B60.03','B60.03','http://hl7.org/fhir/sid/icd-10-cm','Babesiosis due to Babesia divergens','B6003','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.257_B60.09','B60.09','http://hl7.org/fhir/sid/icd-10-cm','Other babesiosis','B6009','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.137_A40.3','A40.3','http://hl7.org/fhir/sid/icd-10-cm','Sepsis due to Streptococcus pneumoniae','A403','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.137_B95.3','B95.3','http://hl7.org/fhir/sid/icd-10-cm','Streptococcus pneumoniae as the cause of diseases classified elsewhere','B953','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.137_M00.1','M00.1','http://hl7.org/fhir/sid/icd-10-cm','Pneumococcal arthritis and polyarthritis','M001','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.137_M00.10','M00.10','http://hl7.org/fhir/sid/icd-10-cm','Pneumococcal arthritis, unspecified joint','M0010','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.137_M00.11','M00.11','http://hl7.org/fhir/sid/icd-10-cm','Pneumococcal arthritis, shoulder','M0011','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.137_M00.111','M00.111','http://hl7.org/fhir/sid/icd-10-cm','Pneumococcal arthritis, right shoulder','M00111','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.137_M00.112','M00.112','http://hl7.org/fhir/sid/icd-10-cm','Pneumococcal arthritis, left shoulder','M00112','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.137_M00.119','M00.119','http://hl7.org/fhir/sid/icd-10-cm','Pneumococcal arthritis, unspecified shoulder','M00119','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.137_M00.12','M00.12','http://hl7.org/fhir/sid/icd-10-cm','Pneumococcal arthritis, elbow','M0012','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.137_M00.121','M00.121','http://hl7.org/fhir/sid/icd-10-cm','Pneumococcal arthritis, right elbow','M00121','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.137_M00.122','M00.122','http://hl7.org/fhir/sid/icd-10-cm','Pneumococcal arthritis, left elbow','M00122','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.137_M00.129','M00.129','http://hl7.org/fhir/sid/icd-10-cm','Pneumococcal arthritis, unspecified elbow','M00129','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.137_M00.13','M00.13','http://hl7.org/fhir/sid/icd-10-cm','Pneumococcal arthritis, wrist','M0013','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.137_M00.131','M00.131','http://hl7.org/fhir/sid/icd-10-cm','Pneumococcal arthritis, right wrist','M00131','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.137_M00.132','M00.132','http://hl7.org/fhir/sid/icd-10-cm','Pneumococcal arthritis, left wrist','M00132','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.137_M00.139','M00.139','http://hl7.org/fhir/sid/icd-10-cm','Pneumococcal arthritis, unspecified wrist','M00139','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.137_M00.14','M00.14','http://hl7.org/fhir/sid/icd-10-cm','Pneumococcal arthritis, hand','M0014','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.137_M00.141','M00.141','http://hl7.org/fhir/sid/icd-10-cm','Pneumococcal arthritis, right hand','M00141','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.137_M00.142','M00.142','http://hl7.org/fhir/sid/icd-10-cm','Pneumococcal arthritis, left hand','M00142','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.137_M00.149','M00.149','http://hl7.org/fhir/sid/icd-10-cm','Pneumococcal arthritis, unspecified hand','M00149','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.137_M00.15','M00.15','http://hl7.org/fhir/sid/icd-10-cm','Pneumococcal arthritis, hip','M0015','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.137_M00.151','M00.151','http://hl7.org/fhir/sid/icd-10-cm','Pneumococcal arthritis, right hip','M00151','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.137_M00.152','M00.152','http://hl7.org/fhir/sid/icd-10-cm','Pneumococcal arthritis, left hip','M00152','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.137_M00.159','M00.159','http://hl7.org/fhir/sid/icd-10-cm','Pneumococcal arthritis, unspecified hip','M00159','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.137_M00.16','M00.16','http://hl7.org/fhir/sid/icd-10-cm','Pneumococcal arthritis, knee','M0016','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.137_M00.161','M00.161','http://hl7.org/fhir/sid/icd-10-cm','Pneumococcal arthritis, right knee','M00161','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.137_M00.162','M00.162','http://hl7.org/fhir/sid/icd-10-cm','Pneumococcal arthritis, left knee','M00162','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.137_M00.169','M00.169','http://hl7.org/fhir/sid/icd-10-cm','Pneumococcal arthritis, unspecified knee','M00169','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.137_M00.17','M00.17','http://hl7.org/fhir/sid/icd-10-cm','Pneumococcal arthritis, ankle and foot','M0017','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.137_M00.171','M00.171','http://hl7.org/fhir/sid/icd-10-cm','Pneumococcal arthritis, right ankle and foot','M00171','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.137_M00.172','M00.172','http://hl7.org/fhir/sid/icd-10-cm','Pneumococcal arthritis, left ankle and foot','M00172','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.137_M00.179','M00.179','http://hl7.org/fhir/sid/icd-10-cm','Pneumococcal arthritis, unspecified ankle and foot','M00179','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.137_M00.18','M00.18','http://hl7.org/fhir/sid/icd-10-cm','Pneumococcal arthritis, vertebrae','M0018','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.137_M00.19','M00.19','http://hl7.org/fhir/sid/icd-10-cm','Pneumococcal polyarthritis','M0019','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.137_G00.1','G00.1','http://hl7.org/fhir/sid/icd-10-cm','Pneumococcal meningitis','G001','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_1003337005','1003337005','http://snomed.info/sct','Congenital split of bilateral feet (disorder)','1003337005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_1003339008','1003339008','http://snomed.info/sct','Congenital split of bilateral hands (disorder)','1003339008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_1003509004','1003509004','http://snomed.info/sct','Agenesis of foot (disorder)','1003509004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_1003510009','1003510009','http://snomed.info/sct','Agenesis of hand (disorder)','1003510009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_1003513006','1003513006','http://snomed.info/sct','Agenesis of femur (disorder)','1003513006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_1003515004','1003515004','http://snomed.info/sct','Agenesis of tibia (disorder)','1003515004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_1003519005','1003519005','http://snomed.info/sct','Agenesis of talus (disorder)','1003519005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_1003546000','1003546000','http://snomed.info/sct','Agenesis of fibula (disorder)','1003546000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_1003549007','1003549007','http://snomed.info/sct','Agenesis of radius (disorder)','1003549007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_1003554003','1003554003','http://snomed.info/sct','Agenesis of humerus (disorder)','1003554003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_1003571002','1003571002','http://snomed.info/sct','Agenesis of calcaneus (disorder)','1003571002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_1003574005','1003574005','http://snomed.info/sct','Agenesis of left hand (disorder)','1003574005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_1003579000','1003579000','http://snomed.info/sct','Agenesis of right hand (disorder)','1003579000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_1003581003','1003581003','http://snomed.info/sct','Agenesis of carpal bone (disorder)','1003581003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_1003582005','1003582005','http://snomed.info/sct','Agenesis of tarsal bone (disorder)','1003582005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_1003644007','1003644007','http://snomed.info/sct','Agenesis of bilateral feet (disorder)','1003644007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_1003704006','1003704006','http://snomed.info/sct','Agenesis of metacarpal bone (disorder)','1003704006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_1010709006','1010709006','http://snomed.info/sct','Longitudinal deficiency of bilateral fibulae (disorder)','1010709006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_1078251000119105','1078251000119105','http://snomed.info/sct','Congenital absence of right forearm and hand (disorder)','1078251000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_1078261000119107','1078261000119107','http://snomed.info/sct','Congenital absence of right hand (disorder)','1078261000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_1078271000119101','1078271000119101','http://snomed.info/sct','Congenital absence of finger of right hand (disorder)','1078271000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_1078291000119100','1078291000119100','http://snomed.info/sct','Congenital absence of finger of left hand (disorder)','1078291000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_1078301000119104','1078301000119104','http://snomed.info/sct','Congenital absence of finger of bilateral hands (disorder)','1078301000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_1078311000119101','1078311000119101','http://snomed.info/sct','Congenital absence of toe of right foot (disorder)','1078311000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_1078321000119108','1078321000119108','http://snomed.info/sct','Congenital absence of toe of left foot (disorder)','1078321000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_1078331000119106','1078331000119106','http://snomed.info/sct','Congenital absence of toe of bilateral feet (disorder)','1078331000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_111315008','111315008','http://snomed.info/sct','Longitudinal deficiency of tibia AND/OR fibula (disorder)','111315008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_1163579007','1163579007','http://snomed.info/sct','Congenital deformity of bone of forearm (disorder)','1163579007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_128061008','128061008','http://snomed.info/sct','Longitudinal deficiency of foot (disorder)','128061008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_13624003','13624003','http://snomed.info/sct','Congenital cleft hand (disorder)','13624003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_15669121000119101','15669121000119101','http://snomed.info/sct','Transverse deficiency of right upper limb (disorder)','15669121000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_15669161000119106','15669161000119106','http://snomed.info/sct','Transverse deficiency of left upper limb (disorder)','15669161000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_15669241000119104','15669241000119104','http://snomed.info/sct','Congenital absence of left lower limb (disorder)','15669241000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_15669321000119104','15669321000119104','http://snomed.info/sct','Congenital absence of right lower limb (disorder)','15669321000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_15669441000119103','15669441000119103','http://snomed.info/sct','Congenital absence of entire right hand (disorder)','15669441000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_15669521000119108','15669521000119108','http://snomed.info/sct','Congenital absence of left upper limb (disorder)','15669521000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_15669561000119103','15669561000119103','http://snomed.info/sct','Congenital absence of right upper limb (disorder)','15669561000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_16004631000119101','16004631000119101','http://snomed.info/sct','Congenital ulnar negative variant of left wrist (disorder)','16004631000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_16004751000119103','16004751000119103','http://snomed.info/sct','Congenital ulnar negative variant of bilateral wrists (disorder)','16004751000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_16004831000119102','16004831000119102','http://snomed.info/sct','Congenital ulnar negative variant of right wrist (disorder)','16004831000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_16009191000119108','16009191000119108','http://snomed.info/sct','Congenital deformity of bilateral upper limbs (disorder)','16009191000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_16090091000119100','16090091000119100','http://snomed.info/sct','Congenital absence of left hand (disorder)','16090091000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_16856000','16856000','http://snomed.info/sct','Longitudinal deficiency of humerus (disorder)','16856000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_16904009','16904009','http://snomed.info/sct','Incomplete congenital absence of thigh AND leg (disorder)','16904009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_177504007','177504007','http://snomed.info/sct','Acheiropodia (disorder)','177504007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_1967001','1967001','http://snomed.info/sct','Longitudinal absence of radius AND ulna (disorder)','1967001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_205161004','205161004','http://snomed.info/sct','Congenital amputation of upper limb (disorder)','205161004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_205163001','205163001','http://snomed.info/sct','Transverse deficiency of arm, upper arm level - short (disorder)','205163001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_205164007','205164007','http://snomed.info/sct','Transverse deficiency of arm, upper arm level - long (disorder)','205164007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_205170001','205170001','http://snomed.info/sct','Hypoplasia of radius (disorder)','205170001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_205171002','205171002','http://snomed.info/sct','Partial radial absence (disorder)','205171002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_205174005','205174005','http://snomed.info/sct','Hypoplastic thumb-Blauth 1 (disorder)','205174005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_205175006','205175006','http://snomed.info/sct','Hypoplastic thumb-Blauth 2 (disorder)','205175006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_205176007','205176007','http://snomed.info/sct','Hypoplastic thumb-Blauth 3 (disorder)','205176007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_205177003','205177003','http://snomed.info/sct','Hypoplastic thumb-Blauth 4 (disorder)','205177003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_205178008','205178008','http://snomed.info/sct','Hypoplastic thumb-Blauth 5 (disorder)','205178008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_205179000','205179000','http://snomed.info/sct','Agenesis of ulna (disorder)','205179000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_205180002','205180002','http://snomed.info/sct','Partial defect of ulna (disorder)','205180002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_205203006','205203006','http://snomed.info/sct','Transverse deficiency lower limb - hip level (disorder)','205203006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_205204000','205204000','http://snomed.info/sct','Transverse deficiency lower limb - metatarsal level (disorder)','205204000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_205206003','205206003','http://snomed.info/sct','Transverse deficiency lower limb - through femur (disorder)','205206003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_205207007','205207007','http://snomed.info/sct','Transverse deficiency lower limb - through tibia/fibula (disorder)','205207007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_205211001','205211001','http://snomed.info/sct','Proximal femoral focal deficiency (disorder)','205211001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_205212008','205212008','http://snomed.info/sct','Congenital tibial deficiency type I (disorder)','205212008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_205213003','205213003','http://snomed.info/sct','Congenital tibial deficiency type II (disorder)','205213003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_205215005','205215005','http://snomed.info/sct','Congenital tibial deficiency type III (disorder)','205215005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_205216006','205216006','http://snomed.info/sct','Congenital fibular deficiency type I (disorder)','205216006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_205217002','205217002','http://snomed.info/sct','Congenital fibular deficiency type II (disorder)','205217002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_205218007','205218007','http://snomed.info/sct','Congenital fibular deficiency type III (disorder)','205218007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_205221009','205221009','http://snomed.info/sct','Agenesis of multiple tarsal bones (disorder)','205221009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_205222002','205222002','http://snomed.info/sct','Agenesis of first metatarsal (disorder)','205222002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_205223007','205223007','http://snomed.info/sct','Agenesis of fifth metatarsal (disorder)','205223007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_205225000','205225000','http://snomed.info/sct','Agenesis of fourth and fifth metatarsals (disorder)','205225000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_205227008','205227008','http://snomed.info/sct','Congenital absence of great toe (disorder)','205227008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_205228003','205228003','http://snomed.info/sct','Congenital absence of fifth toe (disorder)','205228003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_205230001','205230001','http://snomed.info/sct','Congenital absence of fourth and fifth toes (disorder)','205230001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_205264002','205264002','http://snomed.info/sct','Cleft hand - first cleft (disorder)','205264002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_205265001','205265001','http://snomed.info/sct','Cleft hand - central (disorder)','205265001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_205266000','205266000','http://snomed.info/sct','Cleft hand with syndactyly (disorder)','205266000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_205267009','205267009','http://snomed.info/sct','Cleft hand with polydactyly (disorder)','205267009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_205269007','205269007','http://snomed.info/sct','Windblown hand (disorder)','205269007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_205281006','205281006','http://snomed.info/sct','Distal interphalangeal joint symphalangism (disorder)','205281006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_205306000','205306000','http://snomed.info/sct','Congenital complete absence of upper limb (disorder)','205306000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_205308004','205308004','http://snomed.info/sct','Triphalangeal thumb (disorder)','205308004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_205311003','205311003','http://snomed.info/sct','Brachydactyly-all 3 phalanges (disorder)','205311003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_205312005','205312005','http://snomed.info/sct','Brachydactyly-missing phalanx (disorder)','205312005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_205317004','205317004','http://snomed.info/sct','Brachymesophalangia (disorder)','205317004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_205358006','205358006','http://snomed.info/sct','Split foot (disorder)','205358006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_205386003','205386003','http://snomed.info/sct','Intrauterine amputation of lower limb (disorder)','205386003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_205835001','205835001','http://snomed.info/sct','Acephalobrachius (disorder)','205835001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_22841008','22841008','http://snomed.info/sct','Phocomelia (disorder)','22841008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_22868008','22868008','http://snomed.info/sct','Longitudinal deficiency of phalanges of hand (disorder)','22868008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_232373003','232373003','http://snomed.info/sct','Choanal atresia with radial ray hypoplasia (disorder)','232373003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_253926000','253926000','http://snomed.info/sct','Phocomelia of upper limb (disorder)','253926000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_253929007','253929007','http://snomed.info/sct','Hypoplasia of upper limb (disorder)','253929007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_253932005','253932005','http://snomed.info/sct','Brachysyndactyly of thumb (disorder)','253932005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_253936008','253936008','http://snomed.info/sct','Hypoplasia of thumb (disorder)','253936008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_253959002','253959002','http://snomed.info/sct','Hypoplasia of lower limb (disorder)','253959002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_253963009','253963009','http://snomed.info/sct','Phocomelia of the lower limb (disorder)','253963009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_253965002','253965002','http://snomed.info/sct','Agenesis of multiple metatarsal bones (disorder)','253965002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_253972001','253972001','http://snomed.info/sct','Syndactyly of thumb (disorder)','253972001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_253975004','253975004','http://snomed.info/sct','Symphalangism (disorder)','253975004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_265798000','265798000','http://snomed.info/sct','Congenital complete absence of lower limb (disorder)','265798000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_270963009','270963009','http://snomed.info/sct','Congenital absence of thumb (disorder)','270963009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_271086008','271086008','http://snomed.info/sct','Deformity of humerus (disorder)','271086008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_271087004','271087004','http://snomed.info/sct','Deformity of radius (disorder)','271087004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_271088009','271088009','http://snomed.info/sct','Deformity of ulna (disorder)','271088009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_271089001','271089001','http://snomed.info/sct','Deformity of carpal bone (disorder)','271089001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_271090005','271090005','http://snomed.info/sct','Deformity of metacarpal (disorder)','271090005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_271095000','271095000','http://snomed.info/sct','Deformity of fibula (disorder)','271095000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_275348004','275348004','http://snomed.info/sct','Adactyly (disorder)','275348004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_278532000','278532000','http://snomed.info/sct','Transverse deficiency lower limb - knee level (disorder)','278532000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_29155003','29155003','http://snomed.info/sct','Ectromelia of upper limb (disorder)','29155003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_29581008','29581008','http://snomed.info/sct','Longitudinal deficiency of tarsal bone (disorder)','29581008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_29632002','29632002','http://snomed.info/sct','Congenital atresia of pharynx (disorder)','29632002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_299034005','299034005','http://snomed.info/sct','Claw hand (disorder)','299034005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_302958006','302958006','http://snomed.info/sct','Congenital absence of multiple toes (disorder)','302958006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_304931000119109','304931000119109','http://snomed.info/sct','Congenital absence of left forearm and hand (disorder)','304931000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_305031000119109','305031000119109','http://snomed.info/sct','Congenital complete absence of right lower limb (disorder)','305031000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_310798000','310798000','http://snomed.info/sct','Brachydactyly of hand (disorder)','310798000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_313261000119109','313261000119109','http://snomed.info/sct','Longitudinal deficiency of left femur (disorder)','313261000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_313271000119103','313271000119103','http://snomed.info/sct','Longitudinal deficiency of left fibula (disorder)','313271000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_32339005','32339005','http://snomed.info/sct','Longitudinal deficiency of metacarpal bone (disorder)','32339005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_360526007','360526007','http://snomed.info/sct','Congenital absence of upper limb (disorder)','360526007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_361213004','361213004','http://snomed.info/sct','Congenital absence of pelvis and lower limb (disorder)','361213004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_36574005','36574005','http://snomed.info/sct','Transverse deficiency of lower limb (disorder)','36574005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_367468008','367468008','http://snomed.info/sct','Congenital atresia of nares (disorder)','367468008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_3699000','3699000','http://snomed.info/sct','Transverse deficiency of upper limb (disorder)','3699000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_371080001','371080001','http://snomed.info/sct','Congenital leg length discrepancy (disorder)','371080001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_371189003','371189003','http://snomed.info/sct','Bilateral acheiria (disorder)','371189003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_371191006','371191006','http://snomed.info/sct','Bilateral congenital absence of feet (disorder)','371191006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_371197005','371197005','http://snomed.info/sct','Congenital absence of foot (disorder)','371197005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_371199008','371199008','http://snomed.info/sct','Congenital absence of hand (disorder)','371199008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_37221009','37221009','http://snomed.info/sct','Congenital absence of all toes (disorder)','37221009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_389168002','389168002','http://snomed.info/sct','Brachydactyly syndrome type B (disorder)','389168002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_403562000','403562000','http://snomed.info/sct','Rudimentary digit (disorder)','403562000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_41878001','41878001','http://snomed.info/sct','Symbrachydactyly (disorder)','41878001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_41895009','41895009','http://snomed.info/sct','Longitudinal deficiency of carpal bone (disorder)','41895009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_42808000','42808000','http://snomed.info/sct','Longitudinal deficiency of tibia (disorder)','42808000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_43036001','43036001','http://snomed.info/sct','Ectromelia (disorder)','43036001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_44444001','44444001','http://snomed.info/sct','Longitudinal deficiency of ulna (disorder)','44444001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_449670008','449670008','http://snomed.info/sct','Absence of upper arm (finding)','449670008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_449682004','449682004','http://snomed.info/sct','Congenital absence of part of upper limb (disorder)','449682004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_449683009','449683009','http://snomed.info/sct','Congenital absence of part of upper arm (disorder)','449683009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_45482001','45482001','http://snomed.info/sct','Partial aphalangia of upper limb (disorder)','45482001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_45806008','45806008','http://snomed.info/sct','Reduction deformity of upper limb (disorder)','45806008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_45939007','45939007','http://snomed.info/sct','Leg length inequality (disorder)','45939007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_47276000','47276000','http://snomed.info/sct','Congenital absence of femur (disorder)','47276000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_47713000','47713000','http://snomed.info/sct','Congenital absence of humerus (disorder)','47713000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_48301005','48301005','http://snomed.info/sct','Congenital absence of finger (disorder)','48301005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_51635000','51635000','http://snomed.info/sct','Congenital absence of all fingers (disorder)','51635000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_52022007','52022007','http://snomed.info/sct','Congenital absence of ulna (disorder)','52022007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_52474000','52474000','http://snomed.info/sct','Ectromelia of lower limb (disorder)','52474000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_52837007','52837007','http://snomed.info/sct','Longitudinal deficiency of femur (disorder)','52837007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_55852007','55852007','http://snomed.info/sct','Complete phocomelia of lower limb (disorder)','55852007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_56923001','56923001','http://snomed.info/sct','Ankylosis of joint of hand (disorder)','56923001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_58010002','58010002','http://snomed.info/sct','Congenital absence of tibia AND fibula (disorder)','58010002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_59070002','59070002','http://snomed.info/sct','Partial aphalangia of lower limb (disorder)','59070002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_59352006','59352006','http://snomed.info/sct','Longitudinal deficiency of radius AND ulna (disorder)','59352006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_59423009','59423009','http://snomed.info/sct','Congenital atresia of nasopharynx (disorder)','59423009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_60220000','60220000','http://snomed.info/sct','Partial congenital absence of limb (disorder)','60220000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_61900003','61900003','http://snomed.info/sct','Longitudinal deficiency of radius (disorder)','61900003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_62588002','62588002','http://snomed.info/sct','Congenital complete absence of limb (disorder)','62588002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_63340009','63340009','http://snomed.info/sct','Acephalocheiria (disorder)','63340009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_66078008','66078008','http://snomed.info/sct','Longitudinal deficiency of lower limb (disorder)','66078008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_66345008','66345008','http://snomed.info/sct','Congenital absence of toe (disorder)','66345008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_67341007','67341007','http://snomed.info/sct','Longitudinal deficiency of limb (disorder)','67341007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_68551007','68551007','http://snomed.info/sct','Limb reduction-ichthyosis syndrome (disorder)','68551007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_702313004','702313004','http://snomed.info/sct','Tetra-amelia syndrome (disorder)','702313004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_702339001','702339001','http://snomed.info/sct','Spondyloperipheral dysplasia (disorder)','702339001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_70902004','70902004','http://snomed.info/sct','Longitudinal deficiency of upper limb (disorder)','70902004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_71084008','71084008','http://snomed.info/sct','Congenital absence of upper arm AND forearm (disorder)','71084008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_715472000','715472000','http://snomed.info/sct','Mesomelic dysplasia of hypoplastic ulna and fibula type (disorder)','715472000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_715474004','715474004','http://snomed.info/sct','Aplasia of fibula co-occurrent with complex brachydactyly (disorder)','715474004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_715522000','715522000','http://snomed.info/sct','Phocomelia Schinzel type (disorder)','715522000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_715531000','715531000','http://snomed.info/sct','Tibial aplasia and ectrodactyly syndrome (disorder)','715531000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_716006003','716006003','http://snomed.info/sct','Bifid femur co-occurrent with monodactylous ectrodactyly (disorder)','716006003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_716092007','716092007','http://snomed.info/sct','Radial hypoplasia and triphalangeal thumb with hypospadias and maxillary diastema syndrome (disorder)','716092007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_716094008','716094008','http://snomed.info/sct','Fibulo-ulnar hypoplasia and renal anomalies syndrome (disorder)','716094008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_716099003','716099003','http://snomed.info/sct','Absence deformity of leg and congenital cataract syndrome (disorder)','716099003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_716249009','716249009','http://snomed.info/sct','Tetraamelia with multiple malformation syndrome (disorder)','716249009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_716636008','716636008','http://snomed.info/sct','Longitudinal deficiency of part of upper limb (disorder)','716636008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_716638009','716638009','http://snomed.info/sct','Longitudinal deficiency of part of limb (disorder)','716638009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_716741008','716741008','http://snomed.info/sct','Bilateral hypoplasia of tibia and postaxial polydactyly syndrome (disorder)','716741008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_717785002','717785002','http://snomed.info/sct','Coloboma of macula with brachydactyly type B syndrome (disorder)','717785002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_717850006','717850006','http://snomed.info/sct','Brachymelia of lower limb (disorder)','717850006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_719021005','719021005','http://snomed.info/sct','DK phocomelia syndrome (disorder)','719021005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_719685004','719685004','http://snomed.info/sct','Absent thumb with short stature and immunodeficiency syndrome (disorder)','719685004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_719842006','719842006','http://snomed.info/sct','Congenital hypoplasia of ulna and intellectual disability syndrome (disorder)','719842006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_719910004','719910004','http://snomed.info/sct','Uncombable hair, retinal pigmentary dystrophy, dental anomaly and brachydactyly syndrome (disorder)','719910004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_720498007','720498007','http://snomed.info/sct','Aphalangy and syndactyly with microcephaly syndrome (disorder)','720498007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_720569006','720569006','http://snomed.info/sct','Brachydactyly type A2 (disorder)','720569006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_720572004','720572004','http://snomed.info/sct','Brachydactyly with syndactyly Zhao type (disorder)','720572004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_721880009','721880009','http://snomed.info/sct','Congenital microgastria with limb reduction defect syndrome (disorder)','721880009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_721972001','721972001','http://snomed.info/sct','Limb mammary syndrome (disorder)','721972001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_722429003','722429003','http://snomed.info/sct','Distal limb deficiency with micrognathia syndrome (disorder)','722429003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_723405001','723405001','http://snomed.info/sct','Microlissencephaly micromelia syndrome (disorder)','723405001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_723611008','723611008','http://snomed.info/sct','Split hand, split foot malformation with sensorineural hearing loss syndrome (disorder)','723611008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_723676007','723676007','http://snomed.info/sct','Severe intellectual disability, epilepsy, anal anomaly, distal phalangeal hypoplasia syndrome (disorder)','723676007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_724170007','724170007','http://snomed.info/sct','Mesoaxial synostotic syndactyly with phalangeal reduction syndrome (disorder)','724170007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_725098001','725098001','http://snomed.info/sct','Craniomicromelic syndrome (disorder)','725098001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_726735000','726735000','http://snomed.info/sct','Autosomal recessive amelia (disorder)','726735000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_732250002','732250002','http://snomed.info/sct','Craniosynostosis fibular aplasia syndrome (disorder)','732250002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_732956000','732956000','http://snomed.info/sct','Brachydactyly and distal symphalangism syndrome (disorder)','732956000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_733030003','733030003','http://snomed.info/sct','Congenital hypoplasia of ulna and split foot syndrome (disorder)','733030003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_733068001','733068001','http://snomed.info/sct','Absent tibia, polydactyly, arachnoid cyst syndrome (disorder)','733068001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_733095006','733095006','http://snomed.info/sct','Skeletal dysplasia brachydactyly syndrome (disorder)','733095006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_733117001','733117001','http://snomed.info/sct','Thumb stiffness, brachydactyly, intellectual disability syndrome (disorder)','733117001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_733118006','733118006','http://snomed.info/sct','Aphalangy, hemivertebra, urogenital, intestinal dysgenesis syndrome (disorder)','733118006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_733416004','733416004','http://snomed.info/sct','Exostosis, anetoderma, brachydactyly type E syndrome (disorder)','733416004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_737217005','737217005','http://snomed.info/sct','Congenital absence of forearm and hand (disorder)','737217005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_737266007','737266007','http://snomed.info/sct','Longitudinal deficiency of upper and lower limbs (disorder)','737266007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_74245009','74245009','http://snomed.info/sct','Congenital absence of fibula (disorder)','74245009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_74370006','74370006','http://snomed.info/sct','Micromelia (disorder)','74370006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_75950002','75950002','http://snomed.info/sct','Brachymetacarpia (disorder)','75950002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_764106001','764106001','http://snomed.info/sct','Symbrachydactyly of digit of hand (disorder)','764106001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_764437006','764437006','http://snomed.info/sct','Brachydactyly elbow wrist dysplasia (disorder)','764437006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_764857004','764857004','http://snomed.info/sct','Tibial hemimelia, polysyndactyly, triphalangeal thumb syndrome (disorder)','764857004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_765761009','765761009','http://snomed.info/sct','Brachydactyly, mesomelia, intellectual disability, heart defect syndrome (disorder)','765761009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_766032007','766032007','http://snomed.info/sct','Holoprosencephaly, ectrodactyly, cleft lip, cleft palate syndrome (disorder)','766032007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_766765009','766765009','http://snomed.info/sct','Radio-renal syndrome (disorder)','766765009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_766874001','766874001','http://snomed.info/sct','Cono-spondylar dysplasia (disorder)','766874001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_766999004','766999004','http://snomed.info/sct','Congenital absence of left foot (disorder)','766999004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_767000001','767000001','http://snomed.info/sct','Congenital absence of right foot (disorder)','767000001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_767001002','767001002','http://snomed.info/sct','Congenital absence of lower leg and foot (disorder)','767001002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_76744005','76744005','http://snomed.info/sct','Longitudinal deficiency of fibula (disorder)','76744005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_76842000','76842000','http://snomed.info/sct','Complete aphalangia of upper limb (disorder)','76842000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_770543003','770543003','http://snomed.info/sct','Congenital hypoplasia of part of upper limb (disorder)','770543003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_770544009','770544009','http://snomed.info/sct','Congenital hypoplasia of entire upper limb (disorder)','770544009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_770681000','770681000','http://snomed.info/sct','Robin sequence and oligodactyly syndrome (disorder)','770681000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_770945001','770945001','http://snomed.info/sct','Tetramelic monodactyly (disorder)','770945001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_770946000','770946000','http://snomed.info/sct','Postaxial tetramelic oligodactyly (disorder)','770946000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_771177009','771177009','http://snomed.info/sct','Ectrodactyly polydactyly syndrome (disorder)','771177009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_771264005','771264005','http://snomed.info/sct','Absent radius, anogenital anomalies syndrome (disorder)','771264005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_773773006','773773006','http://snomed.info/sct','Acrodysplasia scoliosis (disorder)','773773006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_77595004','77595004','http://snomed.info/sct','Reduction deformity of lower limb (disorder)','77595004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_78018008','78018008','http://snomed.info/sct','Complete phocomelia of upper limb (disorder)','78018008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_782332007','782332007','http://snomed.info/sct','Congenital negative ulnar variant of wrist (disorder)','782332007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_783137003','783137003','http://snomed.info/sct','Radial deficiency, tibial hypoplasia syndrome (disorder)','783137003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_783156008','783156008','http://snomed.info/sct','Fibular aplasia, tibial campomelia, oligo-syndactyly syndrome (disorder)','783156008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_79177001','79177001','http://snomed.info/sct','Congenital absence of tibia (disorder)','79177001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_81208006','81208006','http://snomed.info/sct','Ectrodactyly (disorder)','81208006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_840512003','840512003','http://snomed.info/sct','Congenital absence of all bilateral toes (disorder)','840512003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_84918006','84918006','http://snomed.info/sct','Congenital absence of radius (disorder)','84918006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_876847002','876847002','http://snomed.info/sct','Congenital absence of carpal bone and metacarpal bone (disorder)','876847002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_876853002','876853002','http://snomed.info/sct','Agenesis of tarsal bone and metatarsal bone (disorder)','876853002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_890221004','890221004','http://snomed.info/sct','Acrocardiofacial syndrome (disorder)','890221004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_890222006','890222006','http://snomed.info/sct','Congenital complete absence of bilateral lower limbs (disorder)','890222006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_890223001','890223001','http://snomed.info/sct','Congenital complete absence of bilateral upper limbs (disorder)','890223001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_890401002','890401002','http://snomed.info/sct','Congenital absence of bilateral lower legs and feet (disorder)','890401002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_890403004','890403004','http://snomed.info/sct','Congenital absence of bilateral forearms and hands (disorder)','890403004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_890404005','890404005','http://snomed.info/sct','Complete phocomelia of bilateral lower limbs (disorder)','890404005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_890405006','890405006','http://snomed.info/sct','Complete phocomelia of bilateral upper limbs (disorder)','890405006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_89434002','89434002','http://snomed.info/sct','Complete aphalangia of lower limb (disorder)','89434002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_897531008','897531008','http://snomed.info/sct','Congenital absence of bilateral ulnas (disorder)','897531008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_897532001','897532001','http://snomed.info/sct','Congenital absence of bilateral tibias (disorder)','897532001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_897533006','897533006','http://snomed.info/sct','Congenital absence of bilateral radiuses (disorder)','897533006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_91872004','91872004','http://snomed.info/sct','Congenital absence of calcaneus (disorder)','91872004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_91873009','91873009','http://snomed.info/sct','Congenital absence of carpal bone (disorder)','91873009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_91898005','91898005','http://snomed.info/sct','Congenital absence of metacarpal bone (disorder)','91898005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_91899002','91899002','http://snomed.info/sct','Congenital absence of metatarsal bone (disorder)','91899002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_91913001','91913001','http://snomed.info/sct','Congenital absence of talus (disorder)','91913001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_91914007','91914007','http://snomed.info/sct','Congenital absence of tarsal bone (disorder)','91914007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_92898008','92898008','http://snomed.info/sct','Congenital abnormal shape of carpal bone (disorder)','92898008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_92910001','92910001','http://snomed.info/sct','Congenital abnormal shape of fibula (disorder)','92910001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_92915006','92915006','http://snomed.info/sct','Congenital abnormal shape of humerus (disorder)','92915006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_92928004','92928004','http://snomed.info/sct','Congenital abnormal shape of metacarpal bone (disorder)','92928004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_92942007','92942007','http://snomed.info/sct','Congenital abnormal shape of radius (disorder)','92942007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_92951004','92951004','http://snomed.info/sct','Congenital abnormal shape of tarsal bone (disorder)','92951004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_92954007','92954007','http://snomed.info/sct','Congenital abnormal shape of tibia (disorder)','92954007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_92956009','92956009','http://snomed.info/sct','Congenital abnormal shape of ulna (disorder)','92956009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_93248006','93248006','http://snomed.info/sct','Congenital hypoplasia of carpal bone (disorder)','93248006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_93255008','93255008','http://snomed.info/sct','Congenital hypoplasia of femur (disorder)','93255008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_93256009','93256009','http://snomed.info/sct','Congenital hypoplasia of fibula (disorder)','93256009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_93264003','93264003','http://snomed.info/sct','Congenital hypoplasia of humerus (disorder)','93264003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_93272001','93272001','http://snomed.info/sct','Congenital hypoplasia of metacarpal bone (disorder)','93272001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_93288001','93288001','http://snomed.info/sct','Congenital hypoplasia of radius (disorder)','93288001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_93298007','93298007','http://snomed.info/sct','Congenital hypoplasia of tibia (disorder)','93298007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_93300007','93300007','http://snomed.info/sct','Congenital hypoplasia of ulna (disorder)','93300007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_732927000','732927000','http://snomed.info/sct','Split hand, obstructive uropathy, spina bifida, diaphragmatic defect syndrome (disorder)','732927000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_1172635005','1172635005','http://snomed.info/sct','Split-foot malformation, mesoaxial polydactyly syndrome (disorder)','1172635005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_1208338004','1208338004','http://snomed.info/sct','Dysraphism, cleft lip and palate, limb reduction defect syndrome (disorder)','1208338004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_715506001','715506001','http://snomed.info/sct','Phocomelia, ectrodactyly, deafness and sinus arrhythmia syndrome (disorder)','715506001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2147_777998000','777998000','http://snomed.info/sct','Temtamy preaxial brachydactyly syndrome (disorder)','777998000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.259_186788009','186788009','http://snomed.info/sct','Q fever (disorder)','186788009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.259_233867000','233867000','http://snomed.info/sct','Q fever myocarditis (disorder)','233867000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.259_233884006','233884006','http://snomed.info/sct','Q fever pericarditis (disorder)','233884006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.259_32286006','32286006','http://snomed.info/sct','Pneumonia in Q fever (disorder)','32286006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.259_409552002','409552002','http://snomed.info/sct','Chronic Q fever (disorder)','409552002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.259_409553007','409553007','http://snomed.info/sct','Acute Q fever (disorder)','409553007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.259_409554001','409554001','http://snomed.info/sct','Q fever hepatitis (disorder)','409554001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.259_409557008','409557008','http://snomed.info/sct','Q fever osteomyelitis (disorder)','409557008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.259_95890006','95890006','http://snomed.info/sct','Q fever endocarditis (disorder)','95890006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.259_409555000','409555000','http://snomed.info/sct','Meningitis caused by Coxiella burnetii (disorder)','409555000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.259_409556004','409556004','http://snomed.info/sct','Q fever encephalitis (disorder)','409556004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.259_860842004','860842004','http://snomed.info/sct','Encephalomyelitis caused by Coxiella burnetii (disorder)','860842004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1054_230297002','230297002','http://snomed.info/sct','Multiple system atrophy (disorder)','230297002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1054_444024002','444024002','http://snomed.info/sct','Multiple system atrophy, cerebellar variant (disorder)','444024002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1054_444197004','444197004','http://snomed.info/sct','Multiple system atrophy, Parkinson variant (disorder)','444197004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.139_10625231000119106','10625231000119106','http://snomed.info/sct','Bronchopneumonia caused by Haemophilus influenzae (disorder)','10625231000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.139_127171000119100','127171000119100','http://snomed.info/sct','Septic shock co-occurrent with acute organ dysfunction caused by Haemophilus influenzae (disorder)','127171000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.139_127301000119108','127301000119108','http://snomed.info/sct','Severe sepsis with acute organ dysfunction caused by Haemophilus influenzae (disorder)','127301000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.139_402928004','402928004','http://snomed.info/sct','Haemophilus cellulitis (disorder)','402928004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.139_406582007','406582007','http://snomed.info/sct','Haemophilus infection of the central nervous system (disorder)','406582007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.139_406583002','406583002','http://snomed.info/sct','Invasive Haemophilus influenzae disease (disorder)','406583002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.139_447685007','447685007','http://snomed.info/sct','Sepsis caused by Haemophilus influenzae (disorder)','447685007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.139_449546000','449546000','http://snomed.info/sct','Sepsis caused by Haemophilus influenzae type b (disorder)','449546000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.139_460439008','460439008','http://snomed.info/sct','Pericarditis caused by Haemophilus (disorder)','460439008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.139_46527004','46527004','http://snomed.info/sct','Haemophilus influenzae arthritis (disorder)','46527004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.139_58576005','58576005','http://snomed.info/sct','Haemophilus influenzae epiglottitis (disorder)','58576005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.139_70036007','70036007','http://snomed.info/sct','Haemophilus influenzae pneumonia (disorder)','70036007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.139_712521003','712521003','http://snomed.info/sct','Bacterial arthritis caused by Haemophilus influenzae type b (disorder)','712521003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.139_722722006','722722006','http://snomed.info/sct','Haemophilus influenzae type b invasive infection (disorder)','722722006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.139_445198003','445198003','http://snomed.info/sct','Meningitis caused by Haemophilus influenzae type b (disorder)','445198003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.139_5900006','5900006','http://snomed.info/sct','Haemophilus influenzae meningitis (disorder)','5900006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2023_74225001','74225001','http://snomed.info/sct','Tick paralysis (disorder)','74225001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2024_58213005','58213005','http://snomed.info/sct','Bacillary angiomatosis (disorder)','58213005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1506_B60.12','B60.12','http://hl7.org/fhir/sid/icd-10-cm','Conjunctivitis due to Acanthamoeba','B6012','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1506_B60.13','B60.13','http://hl7.org/fhir/sid/icd-10-cm','Keratoconjunctivitis due to Acanthamoeba','B6013','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1748_10625831000119107','10625831000119107','http://snomed.info/sct','Chemical pneumonitis caused by anesthesia (disorder)','10625831000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1748_196019004','196019004','http://snomed.info/sct','Bronchitis and pneumonitis caused by chemical fumes (disorder)','196019004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1748_196021009','196021009','http://snomed.info/sct','Acute pneumonitis caused by chemical fumes (disorder)','196021009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1748_233733000','233733000','http://snomed.info/sct','Toxic pneumonitis (disorder)','233733000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1748_415126001','415126001','http://snomed.info/sct','Pneumonitis caused by inhaled substance (disorder)','415126001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1748_840728005','840728005','http://snomed.info/sct','Pneumonitis caused by inhalation of oil (disorder)','840728005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1748_846629004','846629004','http://snomed.info/sct','Pneumonitis caused by fumes (disorder)','846629004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1748_846630009','846630009','http://snomed.info/sct','Pneumonitis caused by vapors (disorder)','846630009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1748_86294001','86294001','http://snomed.info/sct','Pneumonitis caused by inhalation of essence (disorder)','86294001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1748_88687001','88687001','http://snomed.info/sct','Manganese pneumonitis (disorder)','88687001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1748_37711000','37711000','http://snomed.info/sct','Cadmium pneumonitis (disorder)','37711000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1505_127631000119105','127631000119105','http://snomed.info/sct','Corneal ulcer due to acanthamoeba (disorder)','127631000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1505_15693201000119102','15693201000119102','http://snomed.info/sct','Keratitis of bilateral eyes caused by Acanthamoeba (disorder)','15693201000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1505_15693241000119100','15693241000119100','http://snomed.info/sct','Keratitis of left eye caused by Acanthamoeba (disorder)','15693241000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1505_15693281000119105','15693281000119105','http://snomed.info/sct','Keratitis of right eye caused by Acanthamoeba (disorder)','15693281000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1505_15698841000119105','15698841000119105','http://snomed.info/sct','Ulcer of right cornea caused by Acanthamoeba (disorder)','15698841000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1505_15698881000119100','15698881000119100','http://snomed.info/sct','Ulcer of left cornea caused by Acanthamoeba (disorder)','15698881000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1505_231896005','231896005','http://snomed.info/sct','Acanthamoeba keratitis (disorder)','231896005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1505_711645008','711645008','http://snomed.info/sct','Corneal ulcer caused by Acanthamoeba (disorder)','711645008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1505_840444002','840444002','http://snomed.info/sct','Dacryoadenitis due to Acanthamoeba keratitis (disorder)','840444002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1505_840484006','840484006','http://snomed.info/sct','Conjunctivitis caused by Acanthamoeba (disorder)','840484006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1508_T57.0X','T57.0X','http://hl7.org/fhir/sid/icd-10-cm','Toxic effect of arsenic and its compounds','T570X','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1508_T57.0X1','T57.0X1','http://hl7.org/fhir/sid/icd-10-cm','Toxic effect of arsenic and its compounds, accidental (unintentional)','T570X1','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1508_T57.0X1A','T57.0X1A','http://hl7.org/fhir/sid/icd-10-cm','Toxic effect of arsenic and its compounds, accidental (unintentional), initial encounter','T570X1A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1508_T57.0X1D','T57.0X1D','http://hl7.org/fhir/sid/icd-10-cm','Toxic effect of arsenic and its compounds, accidental (unintentional), subsequent encounter','T570X1D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1508_T57.0X1S','T57.0X1S','http://hl7.org/fhir/sid/icd-10-cm','Toxic effect of arsenic and its compounds, accidental (unintentional), sequela','T570X1S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1508_T57.0X4','T57.0X4','http://hl7.org/fhir/sid/icd-10-cm','Toxic effect of arsenic and its compounds, undetermined','T570X4','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1508_T57.0X4A','T57.0X4A','http://hl7.org/fhir/sid/icd-10-cm','Toxic effect of arsenic and its compounds, undetermined, initial encounter','T570X4A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1508_T57.0X4D','T57.0X4D','http://hl7.org/fhir/sid/icd-10-cm','Toxic effect of arsenic and its compounds, undetermined, subsequent encounter','T570X4D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1508_T57.0X4S','T57.0X4S','http://hl7.org/fhir/sid/icd-10-cm','Toxic effect of arsenic and its compounds, undetermined, sequela','T570X4S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1507_1186872009','1186872009','http://snomed.info/sct','Disorder of brain caused by arsenic (disorder)','1186872009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1507_212516009','212516009','http://snomed.info/sct','Arsenical anti-infective poisoning (disorder)','212516009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1507_216792005','216792005','http://snomed.info/sct','Accidental poisoning caused by arsenic and its compounds and fumes (disorder)','216792005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1507_216794006','216794006','http://snomed.info/sct','Accidental poisoning caused by arsenic compound (disorder)','216794006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1507_216795007','216795007','http://snomed.info/sct','Accidental poisoning caused by arsenic fumes (disorder)','216795007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1507_241770003','241770003','http://snomed.info/sct','Trivalent arsenic compound causing toxic effect (disorder)','241770003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1507_241771004','241771004','http://snomed.info/sct','Pentavalent arsenic compound causing toxic effect (disorder)','241771004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1507_360406006','360406006','http://snomed.info/sct','Arsenic-induced nail damage (disorder)','360406006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1507_36730005','36730005','http://snomed.info/sct','Arsenical tremor (finding)','36730005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1507_403740003','403740003','http://snomed.info/sct','Skin disease caused by arsenic (disorder)','403740003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1507_403741004','403741004','http://snomed.info/sct','Arsenical keratosis (disorder)','403741004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1507_403743001','403743001','http://snomed.info/sct','Arsenic-induced skin pigmentation (disorder)','403743001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1507_403744007','403744007','http://snomed.info/sct','Arsenic-induced rain-drop hypomelanosis (disorder)','403744007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1507_403745008','403745008','http://snomed.info/sct','Skin sign from acute arsenic toxicity (finding)','403745008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1507_418685002','418685002','http://snomed.info/sct','Poisoning caused by arsenic or its compounds of undetermined intent (disorder)','418685002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1507_62210001','62210001','http://snomed.info/sct','Inorganic arsenic poisoning (disorder)','62210001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1507_72501006','72501006','http://snomed.info/sct','Anemia caused by arsenic hydride (disorder)','72501006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1507_767146004','767146004','http://snomed.info/sct','Toxic effect of arsenic and/or arsenic compound (disorder)','767146004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1507_871783000','871783000','http://snomed.info/sct','Adverse reaction to arsenic and/or arsenic compound (disorder)','871783000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1507_89738003','89738003','http://snomed.info/sct','Organic arsenic poisoning (disorder)','89738003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1507_403742006','403742006','http://snomed.info/sct','Malignant neoplasm of skin caused by arsenic (disorder)','403742006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1749_J68.0','J68.0','http://hl7.org/fhir/sid/icd-10-cm','Bronchitis and pneumonitis due to chemicals, gases, fumes and vapors','J680','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1749_J69.1','J69.1','http://hl7.org/fhir/sid/icd-10-cm','Pneumonitis due to inhalation of oils and essences','J691','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1749_J95.4','J95.4','http://hl7.org/fhir/sid/icd-10-cm','Chemical pneumonitis due to anesthesia','J954','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1743_186150001','186150001','http://snomed.info/sct','Enteritis caused by rotavirus (disorder)','186150001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1743_18624000','18624000','http://snomed.info/sct','Disease caused by Rotavirus (disorder)','18624000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1743_415353009','415353009','http://snomed.info/sct','Rotavirus food poisoning (disorder)','415353009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1743_415822001','415822001','http://snomed.info/sct','Viral gastroenteritis caused by Rotavirus (disorder)','415822001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1864_266160004','266160004','http://snomed.info/sct','Intestinal taenia solium infection (disorder)','266160004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1864_69163003','69163003','http://snomed.info/sct','Taenia saginata infection (disorder)','69163003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1864_76172008','76172008','http://snomed.info/sct','Infection caused by Taenia (disorder)','76172008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1864_870298008','870298008','http://snomed.info/sct','Parasitic infestation of intestine caused by Taenia solium (disorder)','870298008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1864_1163537001','1163537001','http://snomed.info/sct','Myelitis caused by larva of Taenia solium (disorder)','1163537001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1864_240818004','240818004','http://snomed.info/sct','Taenia solium infection (disorder)','240818004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1864_870302000','870302000','http://snomed.info/sct','Parasitic infestation of orbit caused by Taenia solium (disorder)','870302000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1864_721824003','721824003','http://snomed.info/sct','Meningitis caused by Taenia solium (disorder)','721824003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1864_721825002','721825002','http://snomed.info/sct','Encephalitis caused by Taenia solium (disorder)','721825002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1865_B68','B68','http://hl7.org/fhir/sid/icd-10-cm','Taeniasis','B68','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1865_B68.0','B68.0','http://hl7.org/fhir/sid/icd-10-cm','Taenia solium taeniasis','B680','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1865_B68.1','B68.1','http://hl7.org/fhir/sid/icd-10-cm','Taenia saginata taeniasis','B681','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1865_B68.9','B68.9','http://hl7.org/fhir/sid/icd-10-cm','Taeniasis, unspecified','B689','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S00.00XA','S00.00XA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified superficial injury of scalp, initial encounter','S0000XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S00.01XA','S00.01XA','http://hl7.org/fhir/sid/icd-10-cm','Abrasion of scalp, initial encounter','S0001XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S00.03XA','S00.03XA','http://hl7.org/fhir/sid/icd-10-cm','Contusion of scalp, initial encounter','S0003XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S00.07XA','S00.07XA','http://hl7.org/fhir/sid/icd-10-cm','Other superficial bite of scalp, initial encounter','S0007XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S00.10XA','S00.10XA','http://hl7.org/fhir/sid/icd-10-cm','Contusion of unspecified eyelid and periocular area, initial encounter','S0010XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S00.11XA','S00.11XA','http://hl7.org/fhir/sid/icd-10-cm','Contusion of right eyelid and periocular area, initial encounter','S0011XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S00.12XA','S00.12XA','http://hl7.org/fhir/sid/icd-10-cm','Contusion of left eyelid and periocular area, initial encounter','S0012XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S00.201A','S00.201A','http://hl7.org/fhir/sid/icd-10-cm','Unspecified superficial injury of right eyelid and periocular area, initial encounter','S00201A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S00.202A','S00.202A','http://hl7.org/fhir/sid/icd-10-cm','Unspecified superficial injury of left eyelid and periocular area, initial encounter','S00202A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S00.209A','S00.209A','http://hl7.org/fhir/sid/icd-10-cm','Unspecified superficial injury of unspecified eyelid and periocular area, initial encounter','S00209A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S00.211A','S00.211A','http://hl7.org/fhir/sid/icd-10-cm','Abrasion of right eyelid and periocular area, initial encounter','S00211A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S00.212A','S00.212A','http://hl7.org/fhir/sid/icd-10-cm','Abrasion of left eyelid and periocular area, initial encounter','S00212A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S00.219A','S00.219A','http://hl7.org/fhir/sid/icd-10-cm','Abrasion of unspecified eyelid and periocular area, initial encounter','S00219A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S00.271A','S00.271A','http://hl7.org/fhir/sid/icd-10-cm','Other superficial bite of right eyelid and periocular area, initial encounter','S00271A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S00.272A','S00.272A','http://hl7.org/fhir/sid/icd-10-cm','Other superficial bite of left eyelid and periocular area, initial encounter','S00272A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S00.279A','S00.279A','http://hl7.org/fhir/sid/icd-10-cm','Other superficial bite of unspecified eyelid and periocular area, initial encounter','S00279A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S00.30XA','S00.30XA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified superficial injury of nose, initial encounter','S0030XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S00.31XA','S00.31XA','http://hl7.org/fhir/sid/icd-10-cm','Abrasion of nose, initial encounter','S0031XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S00.33XA','S00.33XA','http://hl7.org/fhir/sid/icd-10-cm','Contusion of nose, initial encounter','S0033XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S00.37XA','S00.37XA','http://hl7.org/fhir/sid/icd-10-cm','Other superficial bite of nose, initial encounter','S0037XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S00.401A','S00.401A','http://hl7.org/fhir/sid/icd-10-cm','Unspecified superficial injury of right ear, initial encounter','S00401A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S00.402A','S00.402A','http://hl7.org/fhir/sid/icd-10-cm','Unspecified superficial injury of left ear, initial encounter','S00402A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S00.409A','S00.409A','http://hl7.org/fhir/sid/icd-10-cm','Unspecified superficial injury of unspecified ear, initial encounter','S00409A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S00.411A','S00.411A','http://hl7.org/fhir/sid/icd-10-cm','Abrasion of right ear, initial encounter','S00411A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S00.412A','S00.412A','http://hl7.org/fhir/sid/icd-10-cm','Abrasion of left ear, initial encounter','S00412A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S00.419A','S00.419A','http://hl7.org/fhir/sid/icd-10-cm','Abrasion of unspecified ear, initial encounter','S00419A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S00.431A','S00.431A','http://hl7.org/fhir/sid/icd-10-cm','Contusion of right ear, initial encounter','S00431A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S00.432A','S00.432A','http://hl7.org/fhir/sid/icd-10-cm','Contusion of left ear, initial encounter','S00432A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S00.439A','S00.439A','http://hl7.org/fhir/sid/icd-10-cm','Contusion of unspecified ear, initial encounter','S00439A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S00.471A','S00.471A','http://hl7.org/fhir/sid/icd-10-cm','Other superficial bite of right ear, initial encounter','S00471A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S00.472A','S00.472A','http://hl7.org/fhir/sid/icd-10-cm','Other superficial bite of left ear, initial encounter','S00472A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S00.479A','S00.479A','http://hl7.org/fhir/sid/icd-10-cm','Other superficial bite of unspecified ear, initial encounter','S00479A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S00.501A','S00.501A','http://hl7.org/fhir/sid/icd-10-cm','Unspecified superficial injury of lip, initial encounter','S00501A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S00.502A','S00.502A','http://hl7.org/fhir/sid/icd-10-cm','Unspecified superficial injury of oral cavity, initial encounter','S00502A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S00.511A','S00.511A','http://hl7.org/fhir/sid/icd-10-cm','Abrasion of lip, initial encounter','S00511A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S00.512A','S00.512A','http://hl7.org/fhir/sid/icd-10-cm','Abrasion of oral cavity, initial encounter','S00512A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S00.531A','S00.531A','http://hl7.org/fhir/sid/icd-10-cm','Contusion of lip, initial encounter','S00531A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S00.532A','S00.532A','http://hl7.org/fhir/sid/icd-10-cm','Contusion of oral cavity, initial encounter','S00532A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S00.571A','S00.571A','http://hl7.org/fhir/sid/icd-10-cm','Other superficial bite of lip, initial encounter','S00571A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S00.572A','S00.572A','http://hl7.org/fhir/sid/icd-10-cm','Other superficial bite of oral cavity, initial encounter','S00572A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S00.80XA','S00.80XA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified superficial injury of other part of head, initial encounter','S0080XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S00.81XA','S00.81XA','http://hl7.org/fhir/sid/icd-10-cm','Abrasion of other part of head, initial encounter','S0081XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S00.83XA','S00.83XA','http://hl7.org/fhir/sid/icd-10-cm','Contusion of other part of head, initial encounter','S0083XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S00.87XA','S00.87XA','http://hl7.org/fhir/sid/icd-10-cm','Other superficial bite of other part of head, initial encounter','S0087XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S00.90XA','S00.90XA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified superficial injury of unspecified part of head, initial encounter','S0090XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S00.91XA','S00.91XA','http://hl7.org/fhir/sid/icd-10-cm','Abrasion of unspecified part of head, initial encounter','S0091XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S00.93XA','S00.93XA','http://hl7.org/fhir/sid/icd-10-cm','Contusion of unspecified part of head, initial encounter','S0093XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S00.97XA','S00.97XA','http://hl7.org/fhir/sid/icd-10-cm','Other superficial bite of unspecified part of head, initial encounter','S0097XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.00XA','S01.00XA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified open wound of scalp, initial encounter','S0100XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.01XA','S01.01XA','http://hl7.org/fhir/sid/icd-10-cm','Laceration without foreign body of scalp, initial encounter','S0101XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.02XA','S01.02XA','http://hl7.org/fhir/sid/icd-10-cm','Laceration with foreign body of scalp, initial encounter','S0102XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.03XA','S01.03XA','http://hl7.org/fhir/sid/icd-10-cm','Puncture wound without foreign body of scalp, initial encounter','S0103XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.04XA','S01.04XA','http://hl7.org/fhir/sid/icd-10-cm','Puncture wound with foreign body of scalp, initial encounter','S0104XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.05XA','S01.05XA','http://hl7.org/fhir/sid/icd-10-cm','Open bite of scalp, initial encounter','S0105XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.101A','S01.101A','http://hl7.org/fhir/sid/icd-10-cm','Unspecified open wound of right eyelid and periocular area, initial encounter','S01101A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.102A','S01.102A','http://hl7.org/fhir/sid/icd-10-cm','Unspecified open wound of left eyelid and periocular area, initial encounter','S01102A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.109A','S01.109A','http://hl7.org/fhir/sid/icd-10-cm','Unspecified open wound of unspecified eyelid and periocular area, initial encounter','S01109A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.111A','S01.111A','http://hl7.org/fhir/sid/icd-10-cm','Laceration without foreign body of right eyelid and periocular area, initial encounter','S01111A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.112A','S01.112A','http://hl7.org/fhir/sid/icd-10-cm','Laceration without foreign body of left eyelid and periocular area, initial encounter','S01112A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.119A','S01.119A','http://hl7.org/fhir/sid/icd-10-cm','Laceration without foreign body of unspecified eyelid and periocular area, initial encounter','S01119A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.121A','S01.121A','http://hl7.org/fhir/sid/icd-10-cm','Laceration with foreign body of right eyelid and periocular area, initial encounter','S01121A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.122A','S01.122A','http://hl7.org/fhir/sid/icd-10-cm','Laceration with foreign body of left eyelid and periocular area, initial encounter','S01122A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.129A','S01.129A','http://hl7.org/fhir/sid/icd-10-cm','Laceration with foreign body of unspecified eyelid and periocular area, initial encounter','S01129A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.131A','S01.131A','http://hl7.org/fhir/sid/icd-10-cm','Puncture wound without foreign body of right eyelid and periocular area, initial encounter','S01131A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.132A','S01.132A','http://hl7.org/fhir/sid/icd-10-cm','Puncture wound without foreign body of left eyelid and periocular area, initial encounter','S01132A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.139A','S01.139A','http://hl7.org/fhir/sid/icd-10-cm','Puncture wound without foreign body of unspecified eyelid and periocular area, initial encounter','S01139A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.141A','S01.141A','http://hl7.org/fhir/sid/icd-10-cm','Puncture wound with foreign body of right eyelid and periocular area, initial encounter','S01141A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.142A','S01.142A','http://hl7.org/fhir/sid/icd-10-cm','Puncture wound with foreign body of left eyelid and periocular area, initial encounter','S01142A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.149A','S01.149A','http://hl7.org/fhir/sid/icd-10-cm','Puncture wound with foreign body of unspecified eyelid and periocular area, initial encounter','S01149A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.151A','S01.151A','http://hl7.org/fhir/sid/icd-10-cm','Open bite of right eyelid and periocular area, initial encounter','S01151A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.152A','S01.152A','http://hl7.org/fhir/sid/icd-10-cm','Open bite of left eyelid and periocular area, initial encounter','S01152A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.159A','S01.159A','http://hl7.org/fhir/sid/icd-10-cm','Open bite of unspecified eyelid and periocular area, initial encounter','S01159A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.20XA','S01.20XA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified open wound of nose, initial encounter','S0120XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.21XA','S01.21XA','http://hl7.org/fhir/sid/icd-10-cm','Laceration without foreign body of nose, initial encounter','S0121XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.22XA','S01.22XA','http://hl7.org/fhir/sid/icd-10-cm','Laceration with foreign body of nose, initial encounter','S0122XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.23XA','S01.23XA','http://hl7.org/fhir/sid/icd-10-cm','Puncture wound without foreign body of nose, initial encounter','S0123XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.24XA','S01.24XA','http://hl7.org/fhir/sid/icd-10-cm','Puncture wound with foreign body of nose, initial encounter','S0124XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.25XA','S01.25XA','http://hl7.org/fhir/sid/icd-10-cm','Open bite of nose, initial encounter','S0125XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.301A','S01.301A','http://hl7.org/fhir/sid/icd-10-cm','Unspecified open wound of right ear, initial encounter','S01301A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.302A','S01.302A','http://hl7.org/fhir/sid/icd-10-cm','Unspecified open wound of left ear, initial encounter','S01302A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.309A','S01.309A','http://hl7.org/fhir/sid/icd-10-cm','Unspecified open wound of unspecified ear, initial encounter','S01309A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.311A','S01.311A','http://hl7.org/fhir/sid/icd-10-cm','Laceration without foreign body of right ear, initial encounter','S01311A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.312A','S01.312A','http://hl7.org/fhir/sid/icd-10-cm','Laceration without foreign body of left ear, initial encounter','S01312A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.319A','S01.319A','http://hl7.org/fhir/sid/icd-10-cm','Laceration without foreign body of unspecified ear, initial encounter','S01319A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.321A','S01.321A','http://hl7.org/fhir/sid/icd-10-cm','Laceration with foreign body of right ear, initial encounter','S01321A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.322A','S01.322A','http://hl7.org/fhir/sid/icd-10-cm','Laceration with foreign body of left ear, initial encounter','S01322A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.329A','S01.329A','http://hl7.org/fhir/sid/icd-10-cm','Laceration with foreign body of unspecified ear, initial encounter','S01329A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.331A','S01.331A','http://hl7.org/fhir/sid/icd-10-cm','Puncture wound without foreign body of right ear, initial encounter','S01331A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.332A','S01.332A','http://hl7.org/fhir/sid/icd-10-cm','Puncture wound without foreign body of left ear, initial encounter','S01332A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.339A','S01.339A','http://hl7.org/fhir/sid/icd-10-cm','Puncture wound without foreign body of unspecified ear, initial encounter','S01339A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.341A','S01.341A','http://hl7.org/fhir/sid/icd-10-cm','Puncture wound with foreign body of right ear, initial encounter','S01341A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.342A','S01.342A','http://hl7.org/fhir/sid/icd-10-cm','Puncture wound with foreign body of left ear, initial encounter','S01342A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.349A','S01.349A','http://hl7.org/fhir/sid/icd-10-cm','Puncture wound with foreign body of unspecified ear, initial encounter','S01349A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.351A','S01.351A','http://hl7.org/fhir/sid/icd-10-cm','Open bite of right ear, initial encounter','S01351A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.352A','S01.352A','http://hl7.org/fhir/sid/icd-10-cm','Open bite of left ear, initial encounter','S01352A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.359A','S01.359A','http://hl7.org/fhir/sid/icd-10-cm','Open bite of unspecified ear, initial encounter','S01359A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.401A','S01.401A','http://hl7.org/fhir/sid/icd-10-cm','Unspecified open wound of right cheek and temporomandibular area, initial encounter','S01401A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.402A','S01.402A','http://hl7.org/fhir/sid/icd-10-cm','Unspecified open wound of left cheek and temporomandibular area, initial encounter','S01402A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.409A','S01.409A','http://hl7.org/fhir/sid/icd-10-cm','Unspecified open wound of unspecified cheek and temporomandibular area, initial encounter','S01409A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.411A','S01.411A','http://hl7.org/fhir/sid/icd-10-cm','Laceration without foreign body of right cheek and temporomandibular area, initial encounter','S01411A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.412A','S01.412A','http://hl7.org/fhir/sid/icd-10-cm','Laceration without foreign body of left cheek and temporomandibular area, initial encounter','S01412A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.419A','S01.419A','http://hl7.org/fhir/sid/icd-10-cm','Laceration without foreign body of unspecified cheek and temporomandibular area, initial encounter','S01419A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.421A','S01.421A','http://hl7.org/fhir/sid/icd-10-cm','Laceration with foreign body of right cheek and temporomandibular area, initial encounter','S01421A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.422A','S01.422A','http://hl7.org/fhir/sid/icd-10-cm','Laceration with foreign body of left cheek and temporomandibular area, initial encounter','S01422A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.429A','S01.429A','http://hl7.org/fhir/sid/icd-10-cm','Laceration with foreign body of unspecified cheek and temporomandibular area, initial encounter','S01429A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.431A','S01.431A','http://hl7.org/fhir/sid/icd-10-cm','Puncture wound without foreign body of right cheek and temporomandibular area, initial encounter','S01431A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.432A','S01.432A','http://hl7.org/fhir/sid/icd-10-cm','Puncture wound without foreign body of left cheek and temporomandibular area, initial encounter','S01432A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.439A','S01.439A','http://hl7.org/fhir/sid/icd-10-cm','Puncture wound without foreign body of unspecified cheek and temporomandibular area, initial encounter','S01439A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.441A','S01.441A','http://hl7.org/fhir/sid/icd-10-cm','Puncture wound with foreign body of right cheek and temporomandibular area, initial encounter','S01441A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.442A','S01.442A','http://hl7.org/fhir/sid/icd-10-cm','Puncture wound with foreign body of left cheek and temporomandibular area, initial encounter','S01442A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.449A','S01.449A','http://hl7.org/fhir/sid/icd-10-cm','Puncture wound with foreign body of unspecified cheek and temporomandibular area, initial encounter','S01449A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.451A','S01.451A','http://hl7.org/fhir/sid/icd-10-cm','Open bite of right cheek and temporomandibular area, initial encounter','S01451A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.452A','S01.452A','http://hl7.org/fhir/sid/icd-10-cm','Open bite of left cheek and temporomandibular area, initial encounter','S01452A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.459A','S01.459A','http://hl7.org/fhir/sid/icd-10-cm','Open bite of unspecified cheek and temporomandibular area, initial encounter','S01459A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.501A','S01.501A','http://hl7.org/fhir/sid/icd-10-cm','Unspecified open wound of lip, initial encounter','S01501A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.502A','S01.502A','http://hl7.org/fhir/sid/icd-10-cm','Unspecified open wound of oral cavity, initial encounter','S01502A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.511A','S01.511A','http://hl7.org/fhir/sid/icd-10-cm','Laceration without foreign body of lip, initial encounter','S01511A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.512A','S01.512A','http://hl7.org/fhir/sid/icd-10-cm','Laceration without foreign body of oral cavity, initial encounter','S01512A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.521A','S01.521A','http://hl7.org/fhir/sid/icd-10-cm','Laceration with foreign body of lip, initial encounter','S01521A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.522A','S01.522A','http://hl7.org/fhir/sid/icd-10-cm','Laceration with foreign body of oral cavity, initial encounter','S01522A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.531A','S01.531A','http://hl7.org/fhir/sid/icd-10-cm','Puncture wound without foreign body of lip, initial encounter','S01531A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.532A','S01.532A','http://hl7.org/fhir/sid/icd-10-cm','Puncture wound without foreign body of oral cavity, initial encounter','S01532A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.541A','S01.541A','http://hl7.org/fhir/sid/icd-10-cm','Puncture wound with foreign body of lip, initial encounter','S01541A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.542A','S01.542A','http://hl7.org/fhir/sid/icd-10-cm','Puncture wound with foreign body of oral cavity, initial encounter','S01542A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.551A','S01.551A','http://hl7.org/fhir/sid/icd-10-cm','Open bite of lip, initial encounter','S01551A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.552A','S01.552A','http://hl7.org/fhir/sid/icd-10-cm','Open bite of oral cavity, initial encounter','S01552A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.80XA','S01.80XA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified open wound of other part of head, initial encounter','S0180XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.81XA','S01.81XA','http://hl7.org/fhir/sid/icd-10-cm','Laceration without foreign body of other part of head, initial encounter','S0181XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.82XA','S01.82XA','http://hl7.org/fhir/sid/icd-10-cm','Laceration with foreign body of other part of head, initial encounter','S0182XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.83XA','S01.83XA','http://hl7.org/fhir/sid/icd-10-cm','Puncture wound without foreign body of other part of head, initial encounter','S0183XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.84XA','S01.84XA','http://hl7.org/fhir/sid/icd-10-cm','Puncture wound with foreign body of other part of head, initial encounter','S0184XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.85XA','S01.85XA','http://hl7.org/fhir/sid/icd-10-cm','Open bite of other part of head, initial encounter','S0185XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.90XA','S01.90XA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified open wound of unspecified part of head, initial encounter','S0190XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.91XA','S01.91XA','http://hl7.org/fhir/sid/icd-10-cm','Laceration without foreign body of unspecified part of head, initial encounter','S0191XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.92XA','S01.92XA','http://hl7.org/fhir/sid/icd-10-cm','Laceration with foreign body of unspecified part of head, initial encounter','S0192XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.93XA','S01.93XA','http://hl7.org/fhir/sid/icd-10-cm','Puncture wound without foreign body of unspecified part of head, initial encounter','S0193XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.94XA','S01.94XA','http://hl7.org/fhir/sid/icd-10-cm','Puncture wound with foreign body of unspecified part of head, initial encounter','S0194XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S01.95XA','S01.95XA','http://hl7.org/fhir/sid/icd-10-cm','Open bite of unspecified part of head, initial encounter','S0195XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.2XXA','S02.2XXA','http://hl7.org/fhir/sid/icd-10-cm','Fracture of nasal bones, initial encounter for closed fracture','S022XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.2XXB','S02.2XXB','http://hl7.org/fhir/sid/icd-10-cm','Fracture of nasal bones, initial encounter for open fracture','S022XXB','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.30XA','S02.30XA','http://hl7.org/fhir/sid/icd-10-cm','Fracture of orbital floor, unspecified side, initial encounter for closed fracture','S0230XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.30XB','S02.30XB','http://hl7.org/fhir/sid/icd-10-cm','Fracture of orbital floor, unspecified side, initial encounter for open fracture','S0230XB','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.31XA','S02.31XA','http://hl7.org/fhir/sid/icd-10-cm','Fracture of orbital floor, right side, initial encounter for closed fracture','S0231XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.31XB','S02.31XB','http://hl7.org/fhir/sid/icd-10-cm','Fracture of orbital floor, right side, initial encounter for open fracture','S0231XB','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.32XA','S02.32XA','http://hl7.org/fhir/sid/icd-10-cm','Fracture of orbital floor, left side, initial encounter for closed fracture','S0232XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.32XB','S02.32XB','http://hl7.org/fhir/sid/icd-10-cm','Fracture of orbital floor, left side, initial encounter for open fracture','S0232XB','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.400A','S02.400A','http://hl7.org/fhir/sid/icd-10-cm','Malar fracture, unspecified side, initial encounter for closed fracture','S02400A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.400B','S02.400B','http://hl7.org/fhir/sid/icd-10-cm','Malar fracture, unspecified side, initial encounter for open fracture','S02400B','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.401A','S02.401A','http://hl7.org/fhir/sid/icd-10-cm','Maxillary fracture, unspecified side, initial encounter for closed fracture','S02401A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.401B','S02.401B','http://hl7.org/fhir/sid/icd-10-cm','Maxillary fracture, unspecified side, initial encounter for open fracture','S02401B','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.402A','S02.402A','http://hl7.org/fhir/sid/icd-10-cm','Zygomatic fracture, unspecified side, initial encounter for closed fracture','S02402A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.402B','S02.402B','http://hl7.org/fhir/sid/icd-10-cm','Zygomatic fracture, unspecified side, initial encounter for open fracture','S02402B','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.40AA','S02.40AA','http://hl7.org/fhir/sid/icd-10-cm','Malar fracture, right side, initial encounter for closed fracture','S0240AA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.40AB','S02.40AB','http://hl7.org/fhir/sid/icd-10-cm','Malar fracture, right side, initial encounter for open fracture','S0240AB','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.40BA','S02.40BA','http://hl7.org/fhir/sid/icd-10-cm','Malar fracture, left side, initial encounter for closed fracture','S0240BA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.40BB','S02.40BB','http://hl7.org/fhir/sid/icd-10-cm','Malar fracture, left side, initial encounter for open fracture','S0240BB','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.40CA','S02.40CA','http://hl7.org/fhir/sid/icd-10-cm','Maxillary fracture, right side, initial encounter for closed fracture','S0240CA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.40CB','S02.40CB','http://hl7.org/fhir/sid/icd-10-cm','Maxillary fracture, right side, initial encounter for open fracture','S0240CB','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.40DA','S02.40DA','http://hl7.org/fhir/sid/icd-10-cm','Maxillary fracture, left side, initial encounter for closed fracture','S0240DA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.40DB','S02.40DB','http://hl7.org/fhir/sid/icd-10-cm','Maxillary fracture, left side, initial encounter for open fracture','S0240DB','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.40EA','S02.40EA','http://hl7.org/fhir/sid/icd-10-cm','Zygomatic fracture, right side, initial encounter for closed fracture','S0240EA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.40EB','S02.40EB','http://hl7.org/fhir/sid/icd-10-cm','Zygomatic fracture, right side, initial encounter for open fracture','S0240EB','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.40FA','S02.40FA','http://hl7.org/fhir/sid/icd-10-cm','Zygomatic fracture, left side, initial encounter for closed fracture','S0240FA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.40FB','S02.40FB','http://hl7.org/fhir/sid/icd-10-cm','Zygomatic fracture, left side, initial encounter for open fracture','S0240FB','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.411A','S02.411A','http://hl7.org/fhir/sid/icd-10-cm','LeFort I fracture, initial encounter for closed fracture','S02411A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.411B','S02.411B','http://hl7.org/fhir/sid/icd-10-cm','LeFort I fracture, initial encounter for open fracture','S02411B','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.412A','S02.412A','http://hl7.org/fhir/sid/icd-10-cm','LeFort II fracture, initial encounter for closed fracture','S02412A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.412B','S02.412B','http://hl7.org/fhir/sid/icd-10-cm','LeFort II fracture, initial encounter for open fracture','S02412B','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.413A','S02.413A','http://hl7.org/fhir/sid/icd-10-cm','LeFort III fracture, initial encounter for closed fracture','S02413A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.413B','S02.413B','http://hl7.org/fhir/sid/icd-10-cm','LeFort III fracture, initial encounter for open fracture','S02413B','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.42XA','S02.42XA','http://hl7.org/fhir/sid/icd-10-cm','Fracture of alveolus of maxilla, initial encounter for closed fracture','S0242XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.42XB','S02.42XB','http://hl7.org/fhir/sid/icd-10-cm','Fracture of alveolus of maxilla, initial encounter for open fracture','S0242XB','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.5XXA','S02.5XXA','http://hl7.org/fhir/sid/icd-10-cm','Fracture of tooth (traumatic), initial encounter for closed fracture','S025XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.5XXB','S02.5XXB','http://hl7.org/fhir/sid/icd-10-cm','Fracture of tooth (traumatic), initial encounter for open fracture','S025XXB','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.600A','S02.600A','http://hl7.org/fhir/sid/icd-10-cm','Fracture of unspecified part of body of mandible, unspecified side, initial encounter for closed fracture','S02600A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.600B','S02.600B','http://hl7.org/fhir/sid/icd-10-cm','Fracture of unspecified part of body of mandible, unspecified side, initial encounter for open fracture','S02600B','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.601A','S02.601A','http://hl7.org/fhir/sid/icd-10-cm','Fracture of unspecified part of body of right mandible, initial encounter for closed fracture','S02601A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.601B','S02.601B','http://hl7.org/fhir/sid/icd-10-cm','Fracture of unspecified part of body of right mandible, initial encounter for open fracture','S02601B','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.602A','S02.602A','http://hl7.org/fhir/sid/icd-10-cm','Fracture of unspecified part of body of left mandible, initial encounter for closed fracture','S02602A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.602B','S02.602B','http://hl7.org/fhir/sid/icd-10-cm','Fracture of unspecified part of body of left mandible, initial encounter for open fracture','S02602B','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.609A','S02.609A','http://hl7.org/fhir/sid/icd-10-cm','Fracture of mandible, unspecified, initial encounter for closed fracture','S02609A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.609B','S02.609B','http://hl7.org/fhir/sid/icd-10-cm','Fracture of mandible, unspecified, initial encounter for open fracture','S02609B','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.610A','S02.610A','http://hl7.org/fhir/sid/icd-10-cm','Fracture of condylar process of mandible, unspecified side, initial encounter for closed fracture','S02610A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.610B','S02.610B','http://hl7.org/fhir/sid/icd-10-cm','Fracture of condylar process of mandible, unspecified side, initial encounter for open fracture','S02610B','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.611A','S02.611A','http://hl7.org/fhir/sid/icd-10-cm','Fracture of condylar process of right mandible, initial encounter for closed fracture','S02611A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.611B','S02.611B','http://hl7.org/fhir/sid/icd-10-cm','Fracture of condylar process of right mandible, initial encounter for open fracture','S02611B','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.612A','S02.612A','http://hl7.org/fhir/sid/icd-10-cm','Fracture of condylar process of left mandible, initial encounter for closed fracture','S02612A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.612B','S02.612B','http://hl7.org/fhir/sid/icd-10-cm','Fracture of condylar process of left mandible, initial encounter for open fracture','S02612B','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.620A','S02.620A','http://hl7.org/fhir/sid/icd-10-cm','Fracture of subcondylar process of mandible, unspecified side, initial encounter for closed fracture','S02620A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.620B','S02.620B','http://hl7.org/fhir/sid/icd-10-cm','Fracture of subcondylar process of mandible, unspecified side, initial encounter for open fracture','S02620B','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.621A','S02.621A','http://hl7.org/fhir/sid/icd-10-cm','Fracture of subcondylar process of right mandible, initial encounter for closed fracture','S02621A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.621B','S02.621B','http://hl7.org/fhir/sid/icd-10-cm','Fracture of subcondylar process of right mandible, initial encounter for open fracture','S02621B','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.622A','S02.622A','http://hl7.org/fhir/sid/icd-10-cm','Fracture of subcondylar process of left mandible, initial encounter for closed fracture','S02622A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.622B','S02.622B','http://hl7.org/fhir/sid/icd-10-cm','Fracture of subcondylar process of left mandible, initial encounter for open fracture','S02622B','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.630A','S02.630A','http://hl7.org/fhir/sid/icd-10-cm','Fracture of coronoid process of mandible, unspecified side, initial encounter for closed fracture','S02630A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.630B','S02.630B','http://hl7.org/fhir/sid/icd-10-cm','Fracture of coronoid process of mandible, unspecified side, initial encounter for open fracture','S02630B','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.631A','S02.631A','http://hl7.org/fhir/sid/icd-10-cm','Fracture of coronoid process of right mandible, initial encounter for closed fracture','S02631A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.631B','S02.631B','http://hl7.org/fhir/sid/icd-10-cm','Fracture of coronoid process of right mandible, initial encounter for open fracture','S02631B','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.632A','S02.632A','http://hl7.org/fhir/sid/icd-10-cm','Fracture of coronoid process of left mandible, initial encounter for closed fracture','S02632A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.632B','S02.632B','http://hl7.org/fhir/sid/icd-10-cm','Fracture of coronoid process of left mandible, initial encounter for open fracture','S02632B','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.640A','S02.640A','http://hl7.org/fhir/sid/icd-10-cm','Fracture of ramus of mandible, unspecified side, initial encounter for closed fracture','S02640A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.640B','S02.640B','http://hl7.org/fhir/sid/icd-10-cm','Fracture of ramus of mandible, unspecified side, initial encounter for open fracture','S02640B','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.641A','S02.641A','http://hl7.org/fhir/sid/icd-10-cm','Fracture of ramus of right mandible, initial encounter for closed fracture','S02641A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.641B','S02.641B','http://hl7.org/fhir/sid/icd-10-cm','Fracture of ramus of right mandible, initial encounter for open fracture','S02641B','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.642A','S02.642A','http://hl7.org/fhir/sid/icd-10-cm','Fracture of ramus of left mandible, initial encounter for closed fracture','S02642A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.642B','S02.642B','http://hl7.org/fhir/sid/icd-10-cm','Fracture of ramus of left mandible, initial encounter for open fracture','S02642B','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.650A','S02.650A','http://hl7.org/fhir/sid/icd-10-cm','Fracture of angle of mandible, unspecified side, initial encounter for closed fracture','S02650A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.650B','S02.650B','http://hl7.org/fhir/sid/icd-10-cm','Fracture of angle of mandible, unspecified side, initial encounter for open fracture','S02650B','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.651A','S02.651A','http://hl7.org/fhir/sid/icd-10-cm','Fracture of angle of right mandible, initial encounter for closed fracture','S02651A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.651B','S02.651B','http://hl7.org/fhir/sid/icd-10-cm','Fracture of angle of right mandible, initial encounter for open fracture','S02651B','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.652A','S02.652A','http://hl7.org/fhir/sid/icd-10-cm','Fracture of angle of left mandible, initial encounter for closed fracture','S02652A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.652B','S02.652B','http://hl7.org/fhir/sid/icd-10-cm','Fracture of angle of left mandible, initial encounter for open fracture','S02652B','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.66XA','S02.66XA','http://hl7.org/fhir/sid/icd-10-cm','Fracture of symphysis of mandible, initial encounter for closed fracture','S0266XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.66XB','S02.66XB','http://hl7.org/fhir/sid/icd-10-cm','Fracture of symphysis of mandible, initial encounter for open fracture','S0266XB','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.670A','S02.670A','http://hl7.org/fhir/sid/icd-10-cm','Fracture of alveolus of mandible, unspecified side, initial encounter for closed fracture','S02670A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.670B','S02.670B','http://hl7.org/fhir/sid/icd-10-cm','Fracture of alveolus of mandible, unspecified side, initial encounter for open fracture','S02670B','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.671A','S02.671A','http://hl7.org/fhir/sid/icd-10-cm','Fracture of alveolus of right mandible, initial encounter for closed fracture','S02671A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.671B','S02.671B','http://hl7.org/fhir/sid/icd-10-cm','Fracture of alveolus of right mandible, initial encounter for open fracture','S02671B','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.672A','S02.672A','http://hl7.org/fhir/sid/icd-10-cm','Fracture of alveolus of left mandible, initial encounter for closed fracture','S02672A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.672B','S02.672B','http://hl7.org/fhir/sid/icd-10-cm','Fracture of alveolus of left mandible, initial encounter for open fracture','S02672B','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.69XA','S02.69XA','http://hl7.org/fhir/sid/icd-10-cm','Fracture of mandible of other specified site, initial encounter for closed fracture','S0269XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.69XB','S02.69XB','http://hl7.org/fhir/sid/icd-10-cm','Fracture of mandible of other specified site, initial encounter for open fracture','S0269XB','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.831A','S02.831A','http://hl7.org/fhir/sid/icd-10-cm','Fracture of medial orbital wall, right side, initial encounter for closed fracture','S02831A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.831B','S02.831B','http://hl7.org/fhir/sid/icd-10-cm','Fracture of medial orbital wall, right side, initial encounter for open fracture','S02831B','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.832A','S02.832A','http://hl7.org/fhir/sid/icd-10-cm','Fracture of medial orbital wall, left side, initial encounter for closed fracture','S02832A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.832B','S02.832B','http://hl7.org/fhir/sid/icd-10-cm','Fracture of medial orbital wall, left side, initial encounter for open fracture','S02832B','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.839A','S02.839A','http://hl7.org/fhir/sid/icd-10-cm','Fracture of medial orbital wall, unspecified side, initial encounter for closed fracture','S02839A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.839B','S02.839B','http://hl7.org/fhir/sid/icd-10-cm','Fracture of medial orbital wall, unspecified side, initial encounter for open fracture','S02839B','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.841A','S02.841A','http://hl7.org/fhir/sid/icd-10-cm','Fracture of lateral orbital wall, right side, initial encounter for closed fracture','S02841A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.841B','S02.841B','http://hl7.org/fhir/sid/icd-10-cm','Fracture of lateral orbital wall, right side, initial encounter for open fracture','S02841B','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.842A','S02.842A','http://hl7.org/fhir/sid/icd-10-cm','Fracture of lateral orbital wall, left side, initial encounter for closed fracture','S02842A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.842B','S02.842B','http://hl7.org/fhir/sid/icd-10-cm','Fracture of lateral orbital wall, left side, initial encounter for open fracture','S02842B','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.849A','S02.849A','http://hl7.org/fhir/sid/icd-10-cm','Fracture of lateral orbital wall, unspecified side, initial encounter for closed fracture','S02849A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.849B','S02.849B','http://hl7.org/fhir/sid/icd-10-cm','Fracture of lateral orbital wall, unspecified side, initial encounter for open fracture','S02849B','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.85XA','S02.85XA','http://hl7.org/fhir/sid/icd-10-cm','Fracture of orbit, unspecified, initial encounter for closed fracture','S0285XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.85XB','S02.85XB','http://hl7.org/fhir/sid/icd-10-cm','Fracture of orbit, unspecified, initial encounter for open fracture','S0285XB','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.92XA','S02.92XA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified fracture of facial bones, initial encounter for closed fracture','S0292XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.92XB','S02.92XB','http://hl7.org/fhir/sid/icd-10-cm','Unspecified fracture of facial bones, initial encounter for open fracture','S0292XB','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S03.00XA','S03.00XA','http://hl7.org/fhir/sid/icd-10-cm','Dislocation of jaw, unspecified side, initial encounter','S0300XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S03.01XA','S03.01XA','http://hl7.org/fhir/sid/icd-10-cm','Dislocation of jaw, right side, initial encounter','S0301XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S03.02XA','S03.02XA','http://hl7.org/fhir/sid/icd-10-cm','Dislocation of jaw, left side, initial encounter','S0302XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S03.03XA','S03.03XA','http://hl7.org/fhir/sid/icd-10-cm','Dislocation of jaw, bilateral, initial encounter','S0303XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S03.1XXA','S03.1XXA','http://hl7.org/fhir/sid/icd-10-cm','Dislocation of septal cartilage of nose, initial encounter','S031XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S03.2XXA','S03.2XXA','http://hl7.org/fhir/sid/icd-10-cm','Dislocation of tooth, initial encounter','S032XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S04.011A','S04.011A','http://hl7.org/fhir/sid/icd-10-cm','Injury of optic nerve, right eye, initial encounter','S04011A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S04.012A','S04.012A','http://hl7.org/fhir/sid/icd-10-cm','Injury of optic nerve, left eye, initial encounter','S04012A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S04.019A','S04.019A','http://hl7.org/fhir/sid/icd-10-cm','Injury of optic nerve, unspecified eye, initial encounter','S04019A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S04.10XA','S04.10XA','http://hl7.org/fhir/sid/icd-10-cm','Injury of oculomotor nerve, unspecified side, initial encounter','S0410XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S04.11XA','S04.11XA','http://hl7.org/fhir/sid/icd-10-cm','Injury of oculomotor nerve, right side, initial encounter','S0411XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S04.12XA','S04.12XA','http://hl7.org/fhir/sid/icd-10-cm','Injury of oculomotor nerve, left side, initial encounter','S0412XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S04.20XA','S04.20XA','http://hl7.org/fhir/sid/icd-10-cm','Injury of trochlear nerve, unspecified side, initial encounter','S0420XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S04.21XA','S04.21XA','http://hl7.org/fhir/sid/icd-10-cm','Injury of trochlear nerve, right side, initial encounter','S0421XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S04.22XA','S04.22XA','http://hl7.org/fhir/sid/icd-10-cm','Injury of trochlear nerve, left side, initial encounter','S0422XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S04.30XA','S04.30XA','http://hl7.org/fhir/sid/icd-10-cm','Injury of trigeminal nerve, unspecified side, initial encounter','S0430XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S04.31XA','S04.31XA','http://hl7.org/fhir/sid/icd-10-cm','Injury of trigeminal nerve, right side, initial encounter','S0431XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S04.32XA','S04.32XA','http://hl7.org/fhir/sid/icd-10-cm','Injury of trigeminal nerve, left side, initial encounter','S0432XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S04.40XA','S04.40XA','http://hl7.org/fhir/sid/icd-10-cm','Injury of abducent nerve, unspecified side, initial encounter','S0440XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S04.41XA','S04.41XA','http://hl7.org/fhir/sid/icd-10-cm','Injury of abducent nerve, right side, initial encounter','S0441XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S04.42XA','S04.42XA','http://hl7.org/fhir/sid/icd-10-cm','Injury of abducent nerve, left side, initial encounter','S0442XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S04.50XA','S04.50XA','http://hl7.org/fhir/sid/icd-10-cm','Injury of facial nerve, unspecified side, initial encounter','S0450XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S04.51XA','S04.51XA','http://hl7.org/fhir/sid/icd-10-cm','Injury of facial nerve, right side, initial encounter','S0451XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S04.52XA','S04.52XA','http://hl7.org/fhir/sid/icd-10-cm','Injury of facial nerve, left side, initial encounter','S0452XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S04.60XA','S04.60XA','http://hl7.org/fhir/sid/icd-10-cm','Injury of acoustic nerve, unspecified side, initial encounter','S0460XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S04.61XA','S04.61XA','http://hl7.org/fhir/sid/icd-10-cm','Injury of acoustic nerve, right side, initial encounter','S0461XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S04.62XA','S04.62XA','http://hl7.org/fhir/sid/icd-10-cm','Injury of acoustic nerve, left side, initial encounter','S0462XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S04.70XA','S04.70XA','http://hl7.org/fhir/sid/icd-10-cm','Injury of accessory nerve, unspecified side, initial encounter','S0470XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S04.71XA','S04.71XA','http://hl7.org/fhir/sid/icd-10-cm','Injury of accessory nerve, right side, initial encounter','S0471XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S04.72XA','S04.72XA','http://hl7.org/fhir/sid/icd-10-cm','Injury of accessory nerve, left side, initial encounter','S0472XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S04.811A','S04.811A','http://hl7.org/fhir/sid/icd-10-cm','Injury of olfactory [1st ] nerve, right side, initial encounter','S04811A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S04.812A','S04.812A','http://hl7.org/fhir/sid/icd-10-cm','Injury of olfactory [1st ] nerve, left side, initial encounter','S04812A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S04.819A','S04.819A','http://hl7.org/fhir/sid/icd-10-cm','Injury of olfactory [1st ] nerve, unspecified side, initial encounter','S04819A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S04.891A','S04.891A','http://hl7.org/fhir/sid/icd-10-cm','Injury of other cranial nerves, right side, initial encounter','S04891A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S04.892A','S04.892A','http://hl7.org/fhir/sid/icd-10-cm','Injury of other cranial nerves, left side, initial encounter','S04892A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S04.899A','S04.899A','http://hl7.org/fhir/sid/icd-10-cm','Injury of other cranial nerves, unspecified side, initial encounter','S04899A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S04.9XXA','S04.9XXA','http://hl7.org/fhir/sid/icd-10-cm','Injury of unspecified cranial nerve, initial encounter','S049XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S05.00XA','S05.00XA','http://hl7.org/fhir/sid/icd-10-cm','Injury of conjunctiva and corneal abrasion without foreign body, unspecified eye, initial encounter','S0500XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S05.01XA','S05.01XA','http://hl7.org/fhir/sid/icd-10-cm','Injury of conjunctiva and corneal abrasion without foreign body, right eye, initial encounter','S0501XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S05.02XA','S05.02XA','http://hl7.org/fhir/sid/icd-10-cm','Injury of conjunctiva and corneal abrasion without foreign body, left eye, initial encounter','S0502XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S05.10XA','S05.10XA','http://hl7.org/fhir/sid/icd-10-cm','Contusion of eyeball and orbital tissues, unspecified eye, initial encounter','S0510XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S05.11XA','S05.11XA','http://hl7.org/fhir/sid/icd-10-cm','Contusion of eyeball and orbital tissues, right eye, initial encounter','S0511XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S05.12XA','S05.12XA','http://hl7.org/fhir/sid/icd-10-cm','Contusion of eyeball and orbital tissues, left eye, initial encounter','S0512XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S05.20XA','S05.20XA','http://hl7.org/fhir/sid/icd-10-cm','Ocular laceration and rupture with prolapse or loss of intraocular tissue, unspecified eye, initial encounter','S0520XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S05.21XA','S05.21XA','http://hl7.org/fhir/sid/icd-10-cm','Ocular laceration and rupture with prolapse or loss of intraocular tissue, right eye, initial encounter','S0521XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S05.22XA','S05.22XA','http://hl7.org/fhir/sid/icd-10-cm','Ocular laceration and rupture with prolapse or loss of intraocular tissue, left eye, initial encounter','S0522XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S05.30XA','S05.30XA','http://hl7.org/fhir/sid/icd-10-cm','Ocular laceration without prolapse or loss of intraocular tissue, unspecified eye, initial encounter','S0530XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S05.31XA','S05.31XA','http://hl7.org/fhir/sid/icd-10-cm','Ocular laceration without prolapse or loss of intraocular tissue, right eye, initial encounter','S0531XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S05.32XA','S05.32XA','http://hl7.org/fhir/sid/icd-10-cm','Ocular laceration without prolapse or loss of intraocular tissue, left eye, initial encounter','S0532XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S05.40XA','S05.40XA','http://hl7.org/fhir/sid/icd-10-cm','Penetrating wound of orbit with or without foreign body, unspecified eye, initial encounter','S0540XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S05.41XA','S05.41XA','http://hl7.org/fhir/sid/icd-10-cm','Penetrating wound of orbit with or without foreign body, right eye, initial encounter','S0541XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S05.42XA','S05.42XA','http://hl7.org/fhir/sid/icd-10-cm','Penetrating wound of orbit with or without foreign body, left eye, initial encounter','S0542XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S05.50XA','S05.50XA','http://hl7.org/fhir/sid/icd-10-cm','Penetrating wound with foreign body of unspecified eyeball, initial encounter','S0550XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S05.51XA','S05.51XA','http://hl7.org/fhir/sid/icd-10-cm','Penetrating wound with foreign body of right eyeball, initial encounter','S0551XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S05.52XA','S05.52XA','http://hl7.org/fhir/sid/icd-10-cm','Penetrating wound with foreign body of left eyeball, initial encounter','S0552XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S05.60XA','S05.60XA','http://hl7.org/fhir/sid/icd-10-cm','Penetrating wound without foreign body of unspecified eyeball, initial encounter','S0560XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S05.61XA','S05.61XA','http://hl7.org/fhir/sid/icd-10-cm','Penetrating wound without foreign body of right eyeball, initial encounter','S0561XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S05.62XA','S05.62XA','http://hl7.org/fhir/sid/icd-10-cm','Penetrating wound without foreign body of left eyeball, initial encounter','S0562XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S05.70XA','S05.70XA','http://hl7.org/fhir/sid/icd-10-cm','Avulsion of unspecified eye, initial encounter','S0570XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S05.71XA','S05.71XA','http://hl7.org/fhir/sid/icd-10-cm','Avulsion of right eye, initial encounter','S0571XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S05.72XA','S05.72XA','http://hl7.org/fhir/sid/icd-10-cm','Avulsion of left eye, initial encounter','S0572XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S05.8X1A','S05.8X1A','http://hl7.org/fhir/sid/icd-10-cm','Other injuries of right eye and orbit, initial encounter','S058X1A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S05.8X2A','S05.8X2A','http://hl7.org/fhir/sid/icd-10-cm','Other injuries of left eye and orbit, initial encounter','S058X2A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S05.8X9A','S05.8X9A','http://hl7.org/fhir/sid/icd-10-cm','Other injuries of unspecified eye and orbit, initial encounter','S058X9A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S05.90XA','S05.90XA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified injury of unspecified eye and orbit, initial encounter','S0590XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S05.91XA','S05.91XA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified injury of right eye and orbit, initial encounter','S0591XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S05.92XA','S05.92XA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified injury of left eye and orbit, initial encounter','S0592XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S07.0XXA','S07.0XXA','http://hl7.org/fhir/sid/icd-10-cm','Crushing injury of face, initial encounter','S070XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S07.8XXA','S07.8XXA','http://hl7.org/fhir/sid/icd-10-cm','Crushing injury of other parts of head, initial encounter','S078XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S07.9XXA','S07.9XXA','http://hl7.org/fhir/sid/icd-10-cm','Crushing injury of head, part unspecified, initial encounter','S079XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S08.0XXA','S08.0XXA','http://hl7.org/fhir/sid/icd-10-cm','Avulsion of scalp, initial encounter','S080XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S08.111A','S08.111A','http://hl7.org/fhir/sid/icd-10-cm','Complete traumatic amputation of right ear, initial encounter','S08111A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S08.112A','S08.112A','http://hl7.org/fhir/sid/icd-10-cm','Complete traumatic amputation of left ear, initial encounter','S08112A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S08.119A','S08.119A','http://hl7.org/fhir/sid/icd-10-cm','Complete traumatic amputation of unspecified ear, initial encounter','S08119A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S08.121A','S08.121A','http://hl7.org/fhir/sid/icd-10-cm','Partial traumatic amputation of right ear, initial encounter','S08121A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S08.122A','S08.122A','http://hl7.org/fhir/sid/icd-10-cm','Partial traumatic amputation of left ear, initial encounter','S08122A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S08.129A','S08.129A','http://hl7.org/fhir/sid/icd-10-cm','Partial traumatic amputation of unspecified ear, initial encounter','S08129A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S08.811A','S08.811A','http://hl7.org/fhir/sid/icd-10-cm','Complete traumatic amputation of nose, initial encounter','S08811A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S08.812A','S08.812A','http://hl7.org/fhir/sid/icd-10-cm','Partial traumatic amputation of nose, initial encounter','S08812A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S08.89XA','S08.89XA','http://hl7.org/fhir/sid/icd-10-cm','Traumatic amputation of other parts of head, initial encounter','S0889XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S09.0XXA','S09.0XXA','http://hl7.org/fhir/sid/icd-10-cm','Injury of blood vessels of head, not elsewhere classified, initial encounter','S090XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S09.10XA','S09.10XA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified injury of muscle and tendon of head, initial encounter','S0910XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S09.12XA','S09.12XA','http://hl7.org/fhir/sid/icd-10-cm','Laceration of muscle and tendon of head, initial encounter','S0912XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S09.19XA','S09.19XA','http://hl7.org/fhir/sid/icd-10-cm','Other specified injury of muscle and tendon of head, initial encounter','S0919XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S09.20XA','S09.20XA','http://hl7.org/fhir/sid/icd-10-cm','Traumatic rupture of unspecified ear drum, initial encounter','S0920XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S09.21XA','S09.21XA','http://hl7.org/fhir/sid/icd-10-cm','Traumatic rupture of right ear drum, initial encounter','S0921XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S09.22XA','S09.22XA','http://hl7.org/fhir/sid/icd-10-cm','Traumatic rupture of left ear drum, initial encounter','S0922XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S09.301A','S09.301A','http://hl7.org/fhir/sid/icd-10-cm','Unspecified injury of right middle and inner ear, initial encounter','S09301A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S09.302A','S09.302A','http://hl7.org/fhir/sid/icd-10-cm','Unspecified injury of left middle and inner ear, initial encounter','S09302A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S09.309A','S09.309A','http://hl7.org/fhir/sid/icd-10-cm','Unspecified injury of unspecified middle and inner ear, initial encounter','S09309A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S09.311A','S09.311A','http://hl7.org/fhir/sid/icd-10-cm','Primary blast injury of right ear, initial encounter','S09311A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S09.312A','S09.312A','http://hl7.org/fhir/sid/icd-10-cm','Primary blast injury of left ear, initial encounter','S09312A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S09.313A','S09.313A','http://hl7.org/fhir/sid/icd-10-cm','Primary blast injury of ear, bilateral, initial encounter','S09313A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S09.319A','S09.319A','http://hl7.org/fhir/sid/icd-10-cm','Primary blast injury of unspecified ear, initial encounter','S09319A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S09.391A','S09.391A','http://hl7.org/fhir/sid/icd-10-cm','Other specified injury of right middle and inner ear, initial encounter','S09391A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S09.392A','S09.392A','http://hl7.org/fhir/sid/icd-10-cm','Other specified injury of left middle and inner ear, initial encounter','S09392A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S09.399A','S09.399A','http://hl7.org/fhir/sid/icd-10-cm','Other specified injury of unspecified middle and inner ear, initial encounter','S09399A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S09.8XXA','S09.8XXA','http://hl7.org/fhir/sid/icd-10-cm','Other specified injuries of head, initial encounter','S098XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S09.90XA','S09.90XA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified injury of head, initial encounter','S0990XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S09.91XA','S09.91XA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified injury of ear, initial encounter','S0991XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S09.92XA','S09.92XA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified injury of nose, initial encounter','S0992XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S09.93XA','S09.93XA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified injury of face, initial encounter','S0993XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.0XXA','S02.0XXA','http://hl7.org/fhir/sid/icd-10-cm','Fracture of vault of skull, initial encounter for closed fracture','S020XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.0XXB','S02.0XXB','http://hl7.org/fhir/sid/icd-10-cm','Fracture of vault of skull, initial encounter for open fracture','S020XXB','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.101A','S02.101A','http://hl7.org/fhir/sid/icd-10-cm','Fracture of base of skull, right side, initial encounter for closed fracture','S02101A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.101B','S02.101B','http://hl7.org/fhir/sid/icd-10-cm','Fracture of base of skull, right side, initial encounter for open fracture','S02101B','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.102A','S02.102A','http://hl7.org/fhir/sid/icd-10-cm','Fracture of base of skull, left side, initial encounter for closed fracture','S02102A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.102B','S02.102B','http://hl7.org/fhir/sid/icd-10-cm','Fracture of base of skull, left side, initial encounter for open fracture','S02102B','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.109A','S02.109A','http://hl7.org/fhir/sid/icd-10-cm','Fracture of base of skull, unspecified side, initial encounter for closed fracture','S02109A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.109B','S02.109B','http://hl7.org/fhir/sid/icd-10-cm','Fracture of base of skull, unspecified side, initial encounter for open fracture','S02109B','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.110A','S02.110A','http://hl7.org/fhir/sid/icd-10-cm','Type I occipital condyle fracture, unspecified side, initial encounter for closed fracture','S02110A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.110B','S02.110B','http://hl7.org/fhir/sid/icd-10-cm','Type I occipital condyle fracture, unspecified side, initial encounter for open fracture','S02110B','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.111A','S02.111A','http://hl7.org/fhir/sid/icd-10-cm','Type II occipital condyle fracture, unspecified side, initial encounter for closed fracture','S02111A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.111B','S02.111B','http://hl7.org/fhir/sid/icd-10-cm','Type II occipital condyle fracture, unspecified side, initial encounter for open fracture','S02111B','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.112A','S02.112A','http://hl7.org/fhir/sid/icd-10-cm','Type III occipital condyle fracture, unspecified side, initial encounter for closed fracture','S02112A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.112B','S02.112B','http://hl7.org/fhir/sid/icd-10-cm','Type III occipital condyle fracture, unspecified side, initial encounter for open fracture','S02112B','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.113A','S02.113A','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occipital condyle fracture, initial encounter for closed fracture','S02113A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.113B','S02.113B','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occipital condyle fracture, initial encounter for open fracture','S02113B','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.118A','S02.118A','http://hl7.org/fhir/sid/icd-10-cm','Other fracture of occiput, unspecified side, initial encounter for closed fracture','S02118A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.118B','S02.118B','http://hl7.org/fhir/sid/icd-10-cm','Other fracture of occiput, unspecified side, initial encounter for open fracture','S02118B','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.119A','S02.119A','http://hl7.org/fhir/sid/icd-10-cm','Unspecified fracture of occiput, initial encounter for closed fracture','S02119A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.119B','S02.119B','http://hl7.org/fhir/sid/icd-10-cm','Unspecified fracture of occiput, initial encounter for open fracture','S02119B','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.11AA','S02.11AA','http://hl7.org/fhir/sid/icd-10-cm','Type I occipital condyle fracture, right side, initial encounter for closed fracture','S0211AA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.11AB','S02.11AB','http://hl7.org/fhir/sid/icd-10-cm','Type I occipital condyle fracture, right side, initial encounter for open fracture','S0211AB','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.11BA','S02.11BA','http://hl7.org/fhir/sid/icd-10-cm','Type I occipital condyle fracture, left side, initial encounter for closed fracture','S0211BA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.11BB','S02.11BB','http://hl7.org/fhir/sid/icd-10-cm','Type I occipital condyle fracture, left side, initial encounter for open fracture','S0211BB','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.11CA','S02.11CA','http://hl7.org/fhir/sid/icd-10-cm','Type II occipital condyle fracture, right side, initial encounter for closed fracture','S0211CA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.11CB','S02.11CB','http://hl7.org/fhir/sid/icd-10-cm','Type II occipital condyle fracture, right side, initial encounter for open fracture','S0211CB','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.11DA','S02.11DA','http://hl7.org/fhir/sid/icd-10-cm','Type II occipital condyle fracture, left side, initial encounter for closed fracture','S0211DA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.11DB','S02.11DB','http://hl7.org/fhir/sid/icd-10-cm','Type II occipital condyle fracture, left side, initial encounter for open fracture','S0211DB','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.11EA','S02.11EA','http://hl7.org/fhir/sid/icd-10-cm','Type III occipital condyle fracture, right side, initial encounter for closed fracture','S0211EA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.11EB','S02.11EB','http://hl7.org/fhir/sid/icd-10-cm','Type III occipital condyle fracture, right side, initial encounter for open fracture','S0211EB','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.11FA','S02.11FA','http://hl7.org/fhir/sid/icd-10-cm','Type III occipital condyle fracture, left side, initial encounter for closed fracture','S0211FA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.11FB','S02.11FB','http://hl7.org/fhir/sid/icd-10-cm','Type III occipital condyle fracture, left side, initial encounter for open fracture','S0211FB','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.11GA','S02.11GA','http://hl7.org/fhir/sid/icd-10-cm','Other fracture of occiput, right side, initial encounter for closed fracture','S0211GA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.11GB','S02.11GB','http://hl7.org/fhir/sid/icd-10-cm','Other fracture of occiput, right side, initial encounter for open fracture','S0211GB','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.11HA','S02.11HA','http://hl7.org/fhir/sid/icd-10-cm','Other fracture of occiput, left side, initial encounter for closed fracture','S0211HA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.11HB','S02.11HB','http://hl7.org/fhir/sid/icd-10-cm','Other fracture of occiput, left side, initial encounter for open fracture','S0211HB','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.121A','S02.121A','http://hl7.org/fhir/sid/icd-10-cm','Fracture of orbital roof, right side, initial encounter for closed fracture','S02121A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.121B','S02.121B','http://hl7.org/fhir/sid/icd-10-cm','Fracture of orbital roof, right side, initial encounter for open fracture','S02121B','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.122A','S02.122A','http://hl7.org/fhir/sid/icd-10-cm','Fracture of orbital roof, left side, initial encounter for closed fracture','S02122A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.122B','S02.122B','http://hl7.org/fhir/sid/icd-10-cm','Fracture of orbital roof, left side, initial encounter for open fracture','S02122B','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.129A','S02.129A','http://hl7.org/fhir/sid/icd-10-cm','Fracture of orbital roof, unspecified side, initial encounter for closed fracture','S02129A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.129B','S02.129B','http://hl7.org/fhir/sid/icd-10-cm','Fracture of orbital roof, unspecified side, initial encounter for open fracture','S02129B','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.19XA','S02.19XA','http://hl7.org/fhir/sid/icd-10-cm','Other fracture of base of skull, initial encounter for closed fracture','S0219XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.19XB','S02.19XB','http://hl7.org/fhir/sid/icd-10-cm','Other fracture of base of skull, initial encounter for open fracture','S0219XB','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.80XA','S02.80XA','http://hl7.org/fhir/sid/icd-10-cm','Fracture of other specified skull and facial bones, unspecified side, initial encounter for closed fracture','S0280XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.80XB','S02.80XB','http://hl7.org/fhir/sid/icd-10-cm','Fracture of other specified skull and facial bones, unspecified side, initial encounter for open fracture','S0280XB','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.81XA','S02.81XA','http://hl7.org/fhir/sid/icd-10-cm','Fracture of other specified skull and facial bones, right side, initial encounter for closed fracture','S0281XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.81XB','S02.81XB','http://hl7.org/fhir/sid/icd-10-cm','Fracture of other specified skull and facial bones, right side, initial encounter for open fracture','S0281XB','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.82XA','S02.82XA','http://hl7.org/fhir/sid/icd-10-cm','Fracture of other specified skull and facial bones, left side, initial encounter for closed fracture','S0282XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.82XB','S02.82XB','http://hl7.org/fhir/sid/icd-10-cm','Fracture of other specified skull and facial bones, left side, initial encounter for open fracture','S0282XB','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.91XA','S02.91XA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified fracture of skull, initial encounter for closed fracture','S0291XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S02.91XB','S02.91XB','http://hl7.org/fhir/sid/icd-10-cm','Unspecified fracture of skull, initial encounter for open fracture','S0291XB','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S04.02XA','S04.02XA','http://hl7.org/fhir/sid/icd-10-cm','Injury of optic chiasm, initial encounter','S0402XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S04.031A','S04.031A','http://hl7.org/fhir/sid/icd-10-cm','Injury of optic tract and pathways, right side, initial encounter','S04031A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S04.032A','S04.032A','http://hl7.org/fhir/sid/icd-10-cm','Injury of optic tract and pathways, left side, initial encounter','S04032A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S04.039A','S04.039A','http://hl7.org/fhir/sid/icd-10-cm','Injury of optic tract and pathways, unspecified side, initial encounter','S04039A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S04.041A','S04.041A','http://hl7.org/fhir/sid/icd-10-cm','Injury of visual cortex, right side, initial encounter','S04041A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S04.042A','S04.042A','http://hl7.org/fhir/sid/icd-10-cm','Injury of visual cortex, left side, initial encounter','S04042A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S04.049A','S04.049A','http://hl7.org/fhir/sid/icd-10-cm','Injury of visual cortex, unspecified side, initial encounter','S04049A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.0X0A','S06.0X0A','http://hl7.org/fhir/sid/icd-10-cm','Concussion without loss of consciousness, initial encounter','S060X0A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.0X1A','S06.0X1A','http://hl7.org/fhir/sid/icd-10-cm','Concussion with loss of consciousness of 30 minutes or less, initial encounter','S060X1A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.0X9A','S06.0X9A','http://hl7.org/fhir/sid/icd-10-cm','Concussion with loss of consciousness of unspecified duration, initial encounter','S060X9A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.1X0A','S06.1X0A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic cerebral edema without loss of consciousness, initial encounter','S061X0A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.1X1A','S06.1X1A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic cerebral edema with loss of consciousness of 30 minutes or less, initial encounter','S061X1A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.1X2A','S06.1X2A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic cerebral edema with loss of consciousness of 31 minutes to 59 minutes, initial encounter','S061X2A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.1X3A','S06.1X3A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic cerebral edema with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter','S061X3A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.1X4A','S06.1X4A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic cerebral edema with loss of consciousness of 6 hours to 24 hours, initial encounter','S061X4A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.1X5A','S06.1X5A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic cerebral edema with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter','S061X5A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.1X6A','S06.1X6A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic cerebral edema with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter','S061X6A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.1X7A','S06.1X7A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic cerebral edema with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter','S061X7A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.1X8A','S06.1X8A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic cerebral edema with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter','S061X8A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.1X9A','S06.1X9A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic cerebral edema with loss of consciousness of unspecified duration, initial encounter','S061X9A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.2X0A','S06.2X0A','http://hl7.org/fhir/sid/icd-10-cm','Diffuse traumatic brain injury without loss of consciousness, initial encounter','S062X0A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.2X1A','S06.2X1A','http://hl7.org/fhir/sid/icd-10-cm','Diffuse traumatic brain injury with loss of consciousness of 30 minutes or less, initial encounter','S062X1A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.2X2A','S06.2X2A','http://hl7.org/fhir/sid/icd-10-cm','Diffuse traumatic brain injury with loss of consciousness of 31 minutes to 59 minutes, initial encounter','S062X2A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.2X3A','S06.2X3A','http://hl7.org/fhir/sid/icd-10-cm','Diffuse traumatic brain injury with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter','S062X3A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.2X4A','S06.2X4A','http://hl7.org/fhir/sid/icd-10-cm','Diffuse traumatic brain injury with loss of consciousness of 6 hours to 24 hours, initial encounter','S062X4A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.2X5A','S06.2X5A','http://hl7.org/fhir/sid/icd-10-cm','Diffuse traumatic brain injury with loss of consciousness greater than 24 hours with return to pre-existing conscious levels, initial encounter','S062X5A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.2X6A','S06.2X6A','http://hl7.org/fhir/sid/icd-10-cm','Diffuse traumatic brain injury with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter','S062X6A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.2X7A','S06.2X7A','http://hl7.org/fhir/sid/icd-10-cm','Diffuse traumatic brain injury with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter','S062X7A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.2X8A','S06.2X8A','http://hl7.org/fhir/sid/icd-10-cm','Diffuse traumatic brain injury with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter','S062X8A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.2X9A','S06.2X9A','http://hl7.org/fhir/sid/icd-10-cm','Diffuse traumatic brain injury with loss of consciousness of unspecified duration, initial encounter','S062X9A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.300A','S06.300A','http://hl7.org/fhir/sid/icd-10-cm','Unspecified focal traumatic brain injury without loss of consciousness, initial encounter','S06300A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.301A','S06.301A','http://hl7.org/fhir/sid/icd-10-cm','Unspecified focal traumatic brain injury with loss of consciousness of 30 minutes or less, initial encounter','S06301A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.302A','S06.302A','http://hl7.org/fhir/sid/icd-10-cm','Unspecified focal traumatic brain injury with loss of consciousness of 31 minutes to 59 minutes, initial encounter','S06302A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.303A','S06.303A','http://hl7.org/fhir/sid/icd-10-cm','Unspecified focal traumatic brain injury with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter','S06303A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.304A','S06.304A','http://hl7.org/fhir/sid/icd-10-cm','Unspecified focal traumatic brain injury with loss of consciousness of 6 hours to 24 hours, initial encounter','S06304A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.305A','S06.305A','http://hl7.org/fhir/sid/icd-10-cm','Unspecified focal traumatic brain injury with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter','S06305A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.306A','S06.306A','http://hl7.org/fhir/sid/icd-10-cm','Unspecified focal traumatic brain injury with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter','S06306A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.307A','S06.307A','http://hl7.org/fhir/sid/icd-10-cm','Unspecified focal traumatic brain injury with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter','S06307A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.308A','S06.308A','http://hl7.org/fhir/sid/icd-10-cm','Unspecified focal traumatic brain injury with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter','S06308A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.309A','S06.309A','http://hl7.org/fhir/sid/icd-10-cm','Unspecified focal traumatic brain injury with loss of consciousness of unspecified duration, initial encounter','S06309A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.310A','S06.310A','http://hl7.org/fhir/sid/icd-10-cm','Contusion and laceration of right cerebrum without loss of consciousness, initial encounter','S06310A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.311A','S06.311A','http://hl7.org/fhir/sid/icd-10-cm','Contusion and laceration of right cerebrum with loss of consciousness of 30 minutes or less, initial encounter','S06311A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.312A','S06.312A','http://hl7.org/fhir/sid/icd-10-cm','Contusion and laceration of right cerebrum with loss of consciousness of 31 minutes to 59 minutes, initial encounter','S06312A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.313A','S06.313A','http://hl7.org/fhir/sid/icd-10-cm','Contusion and laceration of right cerebrum with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter','S06313A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.314A','S06.314A','http://hl7.org/fhir/sid/icd-10-cm','Contusion and laceration of right cerebrum with loss of consciousness of 6 hours to 24 hours, initial encounter','S06314A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.315A','S06.315A','http://hl7.org/fhir/sid/icd-10-cm','Contusion and laceration of right cerebrum with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter','S06315A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.316A','S06.316A','http://hl7.org/fhir/sid/icd-10-cm','Contusion and laceration of right cerebrum with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter','S06316A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.317A','S06.317A','http://hl7.org/fhir/sid/icd-10-cm','Contusion and laceration of right cerebrum with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter','S06317A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.318A','S06.318A','http://hl7.org/fhir/sid/icd-10-cm','Contusion and laceration of right cerebrum with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter','S06318A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.319A','S06.319A','http://hl7.org/fhir/sid/icd-10-cm','Contusion and laceration of right cerebrum with loss of consciousness of unspecified duration, initial encounter','S06319A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.320A','S06.320A','http://hl7.org/fhir/sid/icd-10-cm','Contusion and laceration of left cerebrum without loss of consciousness, initial encounter','S06320A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.321A','S06.321A','http://hl7.org/fhir/sid/icd-10-cm','Contusion and laceration of left cerebrum with loss of consciousness of 30 minutes or less, initial encounter','S06321A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.322A','S06.322A','http://hl7.org/fhir/sid/icd-10-cm','Contusion and laceration of left cerebrum with loss of consciousness of 31 minutes to 59 minutes, initial encounter','S06322A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.323A','S06.323A','http://hl7.org/fhir/sid/icd-10-cm','Contusion and laceration of left cerebrum with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter','S06323A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.324A','S06.324A','http://hl7.org/fhir/sid/icd-10-cm','Contusion and laceration of left cerebrum with loss of consciousness of 6 hours to 24 hours, initial encounter','S06324A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.325A','S06.325A','http://hl7.org/fhir/sid/icd-10-cm','Contusion and laceration of left cerebrum with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter','S06325A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.326A','S06.326A','http://hl7.org/fhir/sid/icd-10-cm','Contusion and laceration of left cerebrum with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter','S06326A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.327A','S06.327A','http://hl7.org/fhir/sid/icd-10-cm','Contusion and laceration of left cerebrum with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter','S06327A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.328A','S06.328A','http://hl7.org/fhir/sid/icd-10-cm','Contusion and laceration of left cerebrum with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter','S06328A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.329A','S06.329A','http://hl7.org/fhir/sid/icd-10-cm','Contusion and laceration of left cerebrum with loss of consciousness of unspecified duration, initial encounter','S06329A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.330A','S06.330A','http://hl7.org/fhir/sid/icd-10-cm','Contusion and laceration of cerebrum, unspecified, without loss of consciousness, initial encounter','S06330A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.331A','S06.331A','http://hl7.org/fhir/sid/icd-10-cm','Contusion and laceration of cerebrum, unspecified, with loss of consciousness of 30 minutes or less, initial encounter','S06331A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.332A','S06.332A','http://hl7.org/fhir/sid/icd-10-cm','Contusion and laceration of cerebrum, unspecified, with loss of consciousness of 31 minutes to 59 minutes, initial encounter','S06332A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.333A','S06.333A','http://hl7.org/fhir/sid/icd-10-cm','Contusion and laceration of cerebrum, unspecified, with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter','S06333A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.334A','S06.334A','http://hl7.org/fhir/sid/icd-10-cm','Contusion and laceration of cerebrum, unspecified, with loss of consciousness of 6 hours to 24 hours, initial encounter','S06334A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.335A','S06.335A','http://hl7.org/fhir/sid/icd-10-cm','Contusion and laceration of cerebrum, unspecified, with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter','S06335A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.336A','S06.336A','http://hl7.org/fhir/sid/icd-10-cm','Contusion and laceration of cerebrum, unspecified, with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter','S06336A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.337A','S06.337A','http://hl7.org/fhir/sid/icd-10-cm','Contusion and laceration of cerebrum, unspecified, with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter','S06337A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.338A','S06.338A','http://hl7.org/fhir/sid/icd-10-cm','Contusion and laceration of cerebrum, unspecified, with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter','S06338A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.339A','S06.339A','http://hl7.org/fhir/sid/icd-10-cm','Contusion and laceration of cerebrum, unspecified, with loss of consciousness of unspecified duration, initial encounter','S06339A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.340A','S06.340A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic hemorrhage of right cerebrum without loss of consciousness, initial encounter','S06340A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.341A','S06.341A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic hemorrhage of right cerebrum with loss of consciousness of 30 minutes or less, initial encounter','S06341A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.342A','S06.342A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic hemorrhage of right cerebrum with loss of consciousness of 31 minutes to 59 minutes, initial encounter','S06342A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.343A','S06.343A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic hemorrhage of right cerebrum with loss of consciousness of 1 hours to 5 hours 59 minutes, initial encounter','S06343A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.344A','S06.344A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic hemorrhage of right cerebrum with loss of consciousness of 6 hours to 24 hours, initial encounter','S06344A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.345A','S06.345A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic hemorrhage of right cerebrum with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter','S06345A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.346A','S06.346A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic hemorrhage of right cerebrum with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter','S06346A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.347A','S06.347A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic hemorrhage of right cerebrum with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter','S06347A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.348A','S06.348A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic hemorrhage of right cerebrum with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter','S06348A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.349A','S06.349A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic hemorrhage of right cerebrum with loss of consciousness of unspecified duration, initial encounter','S06349A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.350A','S06.350A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic hemorrhage of left cerebrum without loss of consciousness, initial encounter','S06350A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.351A','S06.351A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic hemorrhage of left cerebrum with loss of consciousness of 30 minutes or less, initial encounter','S06351A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.352A','S06.352A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic hemorrhage of left cerebrum with loss of consciousness of 31 minutes to 59 minutes, initial encounter','S06352A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.353A','S06.353A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic hemorrhage of left cerebrum with loss of consciousness of 1 hours to 5 hours 59 minutes, initial encounter','S06353A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.354A','S06.354A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic hemorrhage of left cerebrum with loss of consciousness of 6 hours to 24 hours, initial encounter','S06354A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.355A','S06.355A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic hemorrhage of left cerebrum with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter','S06355A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.356A','S06.356A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic hemorrhage of left cerebrum with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter','S06356A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.357A','S06.357A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic hemorrhage of left cerebrum with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter','S06357A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.358A','S06.358A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic hemorrhage of left cerebrum with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter','S06358A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.359A','S06.359A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic hemorrhage of left cerebrum with loss of consciousness of unspecified duration, initial encounter','S06359A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.360A','S06.360A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic hemorrhage of cerebrum, unspecified, without loss of consciousness, initial encounter','S06360A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.361A','S06.361A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of 30 minutes or less, initial encounter','S06361A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.362A','S06.362A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of 31 minutes to 59 minutes, initial encounter','S06362A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.363A','S06.363A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of 1 hours to 5 hours 59 minutes, initial encounter','S06363A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.364A','S06.364A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of 6 hours to 24 hours, initial encounter','S06364A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.365A','S06.365A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter','S06365A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.366A','S06.366A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter','S06366A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.367A','S06.367A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter','S06367A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.368A','S06.368A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter','S06368A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.369A','S06.369A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of unspecified duration, initial encounter','S06369A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.370A','S06.370A','http://hl7.org/fhir/sid/icd-10-cm','Contusion, laceration, and hemorrhage of cerebellum without loss of consciousness, initial encounter','S06370A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.371A','S06.371A','http://hl7.org/fhir/sid/icd-10-cm','Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of 30 minutes or less, initial encounter','S06371A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.372A','S06.372A','http://hl7.org/fhir/sid/icd-10-cm','Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of 31 minutes to 59 minutes, initial encounter','S06372A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.373A','S06.373A','http://hl7.org/fhir/sid/icd-10-cm','Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter','S06373A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.374A','S06.374A','http://hl7.org/fhir/sid/icd-10-cm','Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of 6 hours to 24 hours, initial encounter','S06374A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.375A','S06.375A','http://hl7.org/fhir/sid/icd-10-cm','Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter','S06375A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.376A','S06.376A','http://hl7.org/fhir/sid/icd-10-cm','Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter','S06376A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.377A','S06.377A','http://hl7.org/fhir/sid/icd-10-cm','Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter','S06377A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.378A','S06.378A','http://hl7.org/fhir/sid/icd-10-cm','Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter','S06378A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.379A','S06.379A','http://hl7.org/fhir/sid/icd-10-cm','Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of unspecified duration, initial encounter','S06379A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.380A','S06.380A','http://hl7.org/fhir/sid/icd-10-cm','Contusion, laceration, and hemorrhage of brainstem without loss of consciousness, initial encounter','S06380A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.381A','S06.381A','http://hl7.org/fhir/sid/icd-10-cm','Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of 30 minutes or less, initial encounter','S06381A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.382A','S06.382A','http://hl7.org/fhir/sid/icd-10-cm','Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of 31 minutes to 59 minutes, initial encounter','S06382A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.383A','S06.383A','http://hl7.org/fhir/sid/icd-10-cm','Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter','S06383A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.384A','S06.384A','http://hl7.org/fhir/sid/icd-10-cm','Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of 6 hours to 24 hours, initial encounter','S06384A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.385A','S06.385A','http://hl7.org/fhir/sid/icd-10-cm','Contusion, laceration, and hemorrhage of brainstem with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter','S06385A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.386A','S06.386A','http://hl7.org/fhir/sid/icd-10-cm','Contusion, laceration, and hemorrhage of brainstem with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter','S06386A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.387A','S06.387A','http://hl7.org/fhir/sid/icd-10-cm','Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter','S06387A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.388A','S06.388A','http://hl7.org/fhir/sid/icd-10-cm','Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter','S06388A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.389A','S06.389A','http://hl7.org/fhir/sid/icd-10-cm','Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of unspecified duration, initial encounter','S06389A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.4X0A','S06.4X0A','http://hl7.org/fhir/sid/icd-10-cm','Epidural hemorrhage without loss of consciousness, initial encounter','S064X0A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.4X1A','S06.4X1A','http://hl7.org/fhir/sid/icd-10-cm','Epidural hemorrhage with loss of consciousness of 30 minutes or less, initial encounter','S064X1A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.4X2A','S06.4X2A','http://hl7.org/fhir/sid/icd-10-cm','Epidural hemorrhage with loss of consciousness of 31 minutes to 59 minutes, initial encounter','S064X2A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.4X3A','S06.4X3A','http://hl7.org/fhir/sid/icd-10-cm','Epidural hemorrhage with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter','S064X3A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.4X4A','S06.4X4A','http://hl7.org/fhir/sid/icd-10-cm','Epidural hemorrhage with loss of consciousness of 6 hours to 24 hours, initial encounter','S064X4A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.4X5A','S06.4X5A','http://hl7.org/fhir/sid/icd-10-cm','Epidural hemorrhage with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter','S064X5A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.4X6A','S06.4X6A','http://hl7.org/fhir/sid/icd-10-cm','Epidural hemorrhage with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter','S064X6A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.4X7A','S06.4X7A','http://hl7.org/fhir/sid/icd-10-cm','Epidural hemorrhage with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter','S064X7A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.4X8A','S06.4X8A','http://hl7.org/fhir/sid/icd-10-cm','Epidural hemorrhage with loss of consciousness of any duration with death due to other causes prior to regaining consciousness, initial encounter','S064X8A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.4X9A','S06.4X9A','http://hl7.org/fhir/sid/icd-10-cm','Epidural hemorrhage with loss of consciousness of unspecified duration, initial encounter','S064X9A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.5X0A','S06.5X0A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic subdural hemorrhage without loss of consciousness, initial encounter','S065X0A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.5X1A','S06.5X1A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic subdural hemorrhage with loss of consciousness of 30 minutes or less, initial encounter','S065X1A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.5X2A','S06.5X2A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic subdural hemorrhage with loss of consciousness of 31 minutes to 59 minutes, initial encounter','S065X2A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.5X3A','S06.5X3A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic subdural hemorrhage with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter','S065X3A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.5X4A','S06.5X4A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic subdural hemorrhage with loss of consciousness of 6 hours to 24 hours, initial encounter','S065X4A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.5X5A','S06.5X5A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic subdural hemorrhage with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter','S065X5A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.5X6A','S06.5X6A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic subdural hemorrhage with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter','S065X6A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.5X7A','S06.5X7A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic subdural hemorrhage with loss of consciousness of any duration with death due to brain injury before regaining consciousness, initial encounter','S065X7A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.5X8A','S06.5X8A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic subdural hemorrhage with loss of consciousness of any duration with death due to other cause before regaining consciousness, initial encounter','S065X8A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.5X9A','S06.5X9A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic subdural hemorrhage with loss of consciousness of unspecified duration, initial encounter','S065X9A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.6X0A','S06.6X0A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic subarachnoid hemorrhage without loss of consciousness, initial encounter','S066X0A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.6X1A','S06.6X1A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic subarachnoid hemorrhage with loss of consciousness of 30 minutes or less, initial encounter','S066X1A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.6X2A','S06.6X2A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic subarachnoid hemorrhage with loss of consciousness of 31 minutes to 59 minutes, initial encounter','S066X2A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.6X3A','S06.6X3A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic subarachnoid hemorrhage with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter','S066X3A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.6X4A','S06.6X4A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic subarachnoid hemorrhage with loss of consciousness of 6 hours to 24 hours, initial encounter','S066X4A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.6X5A','S06.6X5A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic subarachnoid hemorrhage with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter','S066X5A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.6X6A','S06.6X6A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic subarachnoid hemorrhage with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter','S066X6A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.6X7A','S06.6X7A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic subarachnoid hemorrhage with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter','S066X7A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.6X8A','S06.6X8A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic subarachnoid hemorrhage with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter','S066X8A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.6X9A','S06.6X9A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic subarachnoid hemorrhage with loss of consciousness of unspecified duration, initial encounter','S066X9A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.810A','S06.810A','http://hl7.org/fhir/sid/icd-10-cm','Injury of right internal carotid artery, intracranial portion, not elsewhere classified without loss of consciousness, initial encounter','S06810A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.811A','S06.811A','http://hl7.org/fhir/sid/icd-10-cm','Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 30 minutes or less, initial encounter','S06811A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.812A','S06.812A','http://hl7.org/fhir/sid/icd-10-cm','Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 31 minutes to 59 minutes, initial encounter','S06812A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.813A','S06.813A','http://hl7.org/fhir/sid/icd-10-cm','Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter','S06813A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.814A','S06.814A','http://hl7.org/fhir/sid/icd-10-cm','Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 6 hours to 24 hours, initial encounter','S06814A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.815A','S06.815A','http://hl7.org/fhir/sid/icd-10-cm','Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter','S06815A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.816A','S06.816A','http://hl7.org/fhir/sid/icd-10-cm','Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter','S06816A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.817A','S06.817A','http://hl7.org/fhir/sid/icd-10-cm','Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter','S06817A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.818A','S06.818A','http://hl7.org/fhir/sid/icd-10-cm','Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter','S06818A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.819A','S06.819A','http://hl7.org/fhir/sid/icd-10-cm','Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of unspecified duration, initial encounter','S06819A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.820A','S06.820A','http://hl7.org/fhir/sid/icd-10-cm','Injury of left internal carotid artery, intracranial portion, not elsewhere classified without loss of consciousness, initial encounter','S06820A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.821A','S06.821A','http://hl7.org/fhir/sid/icd-10-cm','Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 30 minutes or less, initial encounter','S06821A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.822A','S06.822A','http://hl7.org/fhir/sid/icd-10-cm','Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 31 minutes to 59 minutes, initial encounter','S06822A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.823A','S06.823A','http://hl7.org/fhir/sid/icd-10-cm','Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter','S06823A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.824A','S06.824A','http://hl7.org/fhir/sid/icd-10-cm','Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 6 hours to 24 hours, initial encounter','S06824A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.825A','S06.825A','http://hl7.org/fhir/sid/icd-10-cm','Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter','S06825A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.826A','S06.826A','http://hl7.org/fhir/sid/icd-10-cm','Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter','S06826A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.827A','S06.827A','http://hl7.org/fhir/sid/icd-10-cm','Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter','S06827A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.828A','S06.828A','http://hl7.org/fhir/sid/icd-10-cm','Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter','S06828A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.829A','S06.829A','http://hl7.org/fhir/sid/icd-10-cm','Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of unspecified duration, initial encounter','S06829A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.890A','S06.890A','http://hl7.org/fhir/sid/icd-10-cm','Other specified intracranial injury without loss of consciousness, initial encounter','S06890A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.891A','S06.891A','http://hl7.org/fhir/sid/icd-10-cm','Other specified intracranial injury with loss of consciousness of 30 minutes or less, initial encounter','S06891A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.892A','S06.892A','http://hl7.org/fhir/sid/icd-10-cm','Other specified intracranial injury with loss of consciousness of 31 minutes to 59 minutes, initial encounter','S06892A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.893A','S06.893A','http://hl7.org/fhir/sid/icd-10-cm','Other specified intracranial injury with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter','S06893A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.894A','S06.894A','http://hl7.org/fhir/sid/icd-10-cm','Other specified intracranial injury with loss of consciousness of 6 hours to 24 hours, initial encounter','S06894A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.895A','S06.895A','http://hl7.org/fhir/sid/icd-10-cm','Other specified intracranial injury with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter','S06895A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.896A','S06.896A','http://hl7.org/fhir/sid/icd-10-cm','Other specified intracranial injury with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter','S06896A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.897A','S06.897A','http://hl7.org/fhir/sid/icd-10-cm','Other specified intracranial injury with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter','S06897A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.898A','S06.898A','http://hl7.org/fhir/sid/icd-10-cm','Other specified intracranial injury with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter','S06898A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.899A','S06.899A','http://hl7.org/fhir/sid/icd-10-cm','Other specified intracranial injury with loss of consciousness of unspecified duration, initial encounter','S06899A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.9X0A','S06.9X0A','http://hl7.org/fhir/sid/icd-10-cm','Unspecified intracranial injury without loss of consciousness, initial encounter','S069X0A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.9X1A','S06.9X1A','http://hl7.org/fhir/sid/icd-10-cm','Unspecified intracranial injury with loss of consciousness of 30 minutes or less, initial encounter','S069X1A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.9X2A','S06.9X2A','http://hl7.org/fhir/sid/icd-10-cm','Unspecified intracranial injury with loss of consciousness of 31 minutes to 59 minutes, initial encounter','S069X2A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.9X3A','S06.9X3A','http://hl7.org/fhir/sid/icd-10-cm','Unspecified intracranial injury with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter','S069X3A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.9X4A','S06.9X4A','http://hl7.org/fhir/sid/icd-10-cm','Unspecified intracranial injury with loss of consciousness of 6 hours to 24 hours, initial encounter','S069X4A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.9X5A','S06.9X5A','http://hl7.org/fhir/sid/icd-10-cm','Unspecified intracranial injury with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter','S069X5A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.9X6A','S06.9X6A','http://hl7.org/fhir/sid/icd-10-cm','Unspecified intracranial injury with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter','S069X6A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.9X7A','S06.9X7A','http://hl7.org/fhir/sid/icd-10-cm','Unspecified intracranial injury with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter','S069X7A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.9X8A','S06.9X8A','http://hl7.org/fhir/sid/icd-10-cm','Unspecified intracranial injury with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter','S069X8A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.9X9A','S06.9X9A','http://hl7.org/fhir/sid/icd-10-cm','Unspecified intracranial injury with loss of consciousness of unspecified duration, initial encounter','S069X9A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.A0XA','S06.A0XA','http://hl7.org/fhir/sid/icd-10-cm','Traumatic brain compression without herniation, initial encounter','S06A0XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S06.A1XA','S06.A1XA','http://hl7.org/fhir/sid/icd-10-cm','Traumatic brain compression with herniation, initial encounter','S06A1XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1740_S07.1XXA','S07.1XXA','http://hl7.org/fhir/sid/icd-10-cm','Crushing injury of skull, initial encounter','S071XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1862_371061003','371061003','http://snomed.info/sct','Infection of urinary bladder catheter (disorder)','371061003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1862_473051003','473051003','http://snomed.info/sct','Infection associated with indwelling urinary catheter (disorder)','473051003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1862_473092007','473092007','http://snomed.info/sct','Infection and inflammation associated with indwelling urinary catheter (disorder)','473092007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1862_700372006','700372006','http://snomed.info/sct','Urinary tract infection associated with catheter (disorder)','700372006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1863_T83.510A','T83.510A','http://hl7.org/fhir/sid/icd-10-cm','Infection and inflammatory reaction due to cystostomy catheter, initial encounter','T83510A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1863_T83.511A','T83.511A','http://hl7.org/fhir/sid/icd-10-cm','Infection and inflammatory reaction due to indwelling urethral catheter, initial encounter','T83511A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1863_T83.512A','T83.512A','http://hl7.org/fhir/sid/icd-10-cm','Infection and inflammatory reaction due to nephrostomy catheter, initial encounter','T83512A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1863_T83.518A','T83.518A','http://hl7.org/fhir/sid/icd-10-cm','Infection and inflammatory reaction due to other urinary catheter, initial encounter','T83518A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S02.0XXA','S02.0XXA','http://hl7.org/fhir/sid/icd-10-cm','Fracture of vault of skull, initial encounter for closed fracture','S020XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S02.0XXB','S02.0XXB','http://hl7.org/fhir/sid/icd-10-cm','Fracture of vault of skull, initial encounter for open fracture','S020XXB','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S02.101A','S02.101A','http://hl7.org/fhir/sid/icd-10-cm','Fracture of base of skull, right side, initial encounter for closed fracture','S02101A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S02.101B','S02.101B','http://hl7.org/fhir/sid/icd-10-cm','Fracture of base of skull, right side, initial encounter for open fracture','S02101B','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S02.102A','S02.102A','http://hl7.org/fhir/sid/icd-10-cm','Fracture of base of skull, left side, initial encounter for closed fracture','S02102A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S02.102B','S02.102B','http://hl7.org/fhir/sid/icd-10-cm','Fracture of base of skull, left side, initial encounter for open fracture','S02102B','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S02.109A','S02.109A','http://hl7.org/fhir/sid/icd-10-cm','Fracture of base of skull, unspecified side, initial encounter for closed fracture','S02109A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S02.109B','S02.109B','http://hl7.org/fhir/sid/icd-10-cm','Fracture of base of skull, unspecified side, initial encounter for open fracture','S02109B','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S02.110A','S02.110A','http://hl7.org/fhir/sid/icd-10-cm','Type I occipital condyle fracture, unspecified side, initial encounter for closed fracture','S02110A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S02.110B','S02.110B','http://hl7.org/fhir/sid/icd-10-cm','Type I occipital condyle fracture, unspecified side, initial encounter for open fracture','S02110B','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S02.111A','S02.111A','http://hl7.org/fhir/sid/icd-10-cm','Type II occipital condyle fracture, unspecified side, initial encounter for closed fracture','S02111A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S02.111B','S02.111B','http://hl7.org/fhir/sid/icd-10-cm','Type II occipital condyle fracture, unspecified side, initial encounter for open fracture','S02111B','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S02.112A','S02.112A','http://hl7.org/fhir/sid/icd-10-cm','Type III occipital condyle fracture, unspecified side, initial encounter for closed fracture','S02112A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S02.112B','S02.112B','http://hl7.org/fhir/sid/icd-10-cm','Type III occipital condyle fracture, unspecified side, initial encounter for open fracture','S02112B','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S02.113A','S02.113A','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occipital condyle fracture, initial encounter for closed fracture','S02113A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S02.113B','S02.113B','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occipital condyle fracture, initial encounter for open fracture','S02113B','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S02.118A','S02.118A','http://hl7.org/fhir/sid/icd-10-cm','Other fracture of occiput, unspecified side, initial encounter for closed fracture','S02118A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S02.118B','S02.118B','http://hl7.org/fhir/sid/icd-10-cm','Other fracture of occiput, unspecified side, initial encounter for open fracture','S02118B','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S02.119A','S02.119A','http://hl7.org/fhir/sid/icd-10-cm','Unspecified fracture of occiput, initial encounter for closed fracture','S02119A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S02.119B','S02.119B','http://hl7.org/fhir/sid/icd-10-cm','Unspecified fracture of occiput, initial encounter for open fracture','S02119B','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S02.11AA','S02.11AA','http://hl7.org/fhir/sid/icd-10-cm','Type I occipital condyle fracture, right side, initial encounter for closed fracture','S0211AA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S02.11AB','S02.11AB','http://hl7.org/fhir/sid/icd-10-cm','Type I occipital condyle fracture, right side, initial encounter for open fracture','S0211AB','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S02.11BA','S02.11BA','http://hl7.org/fhir/sid/icd-10-cm','Type I occipital condyle fracture, left side, initial encounter for closed fracture','S0211BA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S02.11BB','S02.11BB','http://hl7.org/fhir/sid/icd-10-cm','Type I occipital condyle fracture, left side, initial encounter for open fracture','S0211BB','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S02.11CA','S02.11CA','http://hl7.org/fhir/sid/icd-10-cm','Type II occipital condyle fracture, right side, initial encounter for closed fracture','S0211CA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S02.11CB','S02.11CB','http://hl7.org/fhir/sid/icd-10-cm','Type II occipital condyle fracture, right side, initial encounter for open fracture','S0211CB','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S02.11DA','S02.11DA','http://hl7.org/fhir/sid/icd-10-cm','Type II occipital condyle fracture, left side, initial encounter for closed fracture','S0211DA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S02.11DB','S02.11DB','http://hl7.org/fhir/sid/icd-10-cm','Type II occipital condyle fracture, left side, initial encounter for open fracture','S0211DB','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S02.11EA','S02.11EA','http://hl7.org/fhir/sid/icd-10-cm','Type III occipital condyle fracture, right side, initial encounter for closed fracture','S0211EA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S02.11EB','S02.11EB','http://hl7.org/fhir/sid/icd-10-cm','Type III occipital condyle fracture, right side, initial encounter for open fracture','S0211EB','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S02.11FA','S02.11FA','http://hl7.org/fhir/sid/icd-10-cm','Type III occipital condyle fracture, left side, initial encounter for closed fracture','S0211FA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S02.11FB','S02.11FB','http://hl7.org/fhir/sid/icd-10-cm','Type III occipital condyle fracture, left side, initial encounter for open fracture','S0211FB','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S02.11GA','S02.11GA','http://hl7.org/fhir/sid/icd-10-cm','Other fracture of occiput, right side, initial encounter for closed fracture','S0211GA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S02.11GB','S02.11GB','http://hl7.org/fhir/sid/icd-10-cm','Other fracture of occiput, right side, initial encounter for open fracture','S0211GB','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S02.11HA','S02.11HA','http://hl7.org/fhir/sid/icd-10-cm','Other fracture of occiput, left side, initial encounter for closed fracture','S0211HA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S02.11HB','S02.11HB','http://hl7.org/fhir/sid/icd-10-cm','Other fracture of occiput, left side, initial encounter for open fracture','S0211HB','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S02.121A','S02.121A','http://hl7.org/fhir/sid/icd-10-cm','Fracture of orbital roof, right side, initial encounter for closed fracture','S02121A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S02.121B','S02.121B','http://hl7.org/fhir/sid/icd-10-cm','Fracture of orbital roof, right side, initial encounter for open fracture','S02121B','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S02.122A','S02.122A','http://hl7.org/fhir/sid/icd-10-cm','Fracture of orbital roof, left side, initial encounter for closed fracture','S02122A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S02.122B','S02.122B','http://hl7.org/fhir/sid/icd-10-cm','Fracture of orbital roof, left side, initial encounter for open fracture','S02122B','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S02.129A','S02.129A','http://hl7.org/fhir/sid/icd-10-cm','Fracture of orbital roof, unspecified side, initial encounter for closed fracture','S02129A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S02.129B','S02.129B','http://hl7.org/fhir/sid/icd-10-cm','Fracture of orbital roof, unspecified side, initial encounter for open fracture','S02129B','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S02.19XA','S02.19XA','http://hl7.org/fhir/sid/icd-10-cm','Other fracture of base of skull, initial encounter for closed fracture','S0219XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S02.19XB','S02.19XB','http://hl7.org/fhir/sid/icd-10-cm','Other fracture of base of skull, initial encounter for open fracture','S0219XB','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S02.80XA','S02.80XA','http://hl7.org/fhir/sid/icd-10-cm','Fracture of other specified skull and facial bones, unspecified side, initial encounter for closed fracture','S0280XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S02.80XB','S02.80XB','http://hl7.org/fhir/sid/icd-10-cm','Fracture of other specified skull and facial bones, unspecified side, initial encounter for open fracture','S0280XB','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S02.81XA','S02.81XA','http://hl7.org/fhir/sid/icd-10-cm','Fracture of other specified skull and facial bones, right side, initial encounter for closed fracture','S0281XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S02.81XB','S02.81XB','http://hl7.org/fhir/sid/icd-10-cm','Fracture of other specified skull and facial bones, right side, initial encounter for open fracture','S0281XB','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S02.82XA','S02.82XA','http://hl7.org/fhir/sid/icd-10-cm','Fracture of other specified skull and facial bones, left side, initial encounter for closed fracture','S0282XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S02.82XB','S02.82XB','http://hl7.org/fhir/sid/icd-10-cm','Fracture of other specified skull and facial bones, left side, initial encounter for open fracture','S0282XB','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S02.91XA','S02.91XA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified fracture of skull, initial encounter for closed fracture','S0291XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S02.91XB','S02.91XB','http://hl7.org/fhir/sid/icd-10-cm','Unspecified fracture of skull, initial encounter for open fracture','S0291XB','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S04.02XA','S04.02XA','http://hl7.org/fhir/sid/icd-10-cm','Injury of optic chiasm, initial encounter','S0402XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S04.031A','S04.031A','http://hl7.org/fhir/sid/icd-10-cm','Injury of optic tract and pathways, right side, initial encounter','S04031A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S04.032A','S04.032A','http://hl7.org/fhir/sid/icd-10-cm','Injury of optic tract and pathways, left side, initial encounter','S04032A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S04.039A','S04.039A','http://hl7.org/fhir/sid/icd-10-cm','Injury of optic tract and pathways, unspecified side, initial encounter','S04039A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S04.041A','S04.041A','http://hl7.org/fhir/sid/icd-10-cm','Injury of visual cortex, right side, initial encounter','S04041A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S04.042A','S04.042A','http://hl7.org/fhir/sid/icd-10-cm','Injury of visual cortex, left side, initial encounter','S04042A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S04.049A','S04.049A','http://hl7.org/fhir/sid/icd-10-cm','Injury of visual cortex, unspecified side, initial encounter','S04049A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.0X0A','S06.0X0A','http://hl7.org/fhir/sid/icd-10-cm','Concussion without loss of consciousness, initial encounter','S060X0A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.0X1A','S06.0X1A','http://hl7.org/fhir/sid/icd-10-cm','Concussion with loss of consciousness of 30 minutes or less, initial encounter','S060X1A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.0X9A','S06.0X9A','http://hl7.org/fhir/sid/icd-10-cm','Concussion with loss of consciousness of unspecified duration, initial encounter','S060X9A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.1X0A','S06.1X0A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic cerebral edema without loss of consciousness, initial encounter','S061X0A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.1X1A','S06.1X1A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic cerebral edema with loss of consciousness of 30 minutes or less, initial encounter','S061X1A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.1X2A','S06.1X2A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic cerebral edema with loss of consciousness of 31 minutes to 59 minutes, initial encounter','S061X2A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.1X3A','S06.1X3A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic cerebral edema with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter','S061X3A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.1X4A','S06.1X4A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic cerebral edema with loss of consciousness of 6 hours to 24 hours, initial encounter','S061X4A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.1X5A','S06.1X5A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic cerebral edema with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter','S061X5A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.1X6A','S06.1X6A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic cerebral edema with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter','S061X6A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.1X7A','S06.1X7A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic cerebral edema with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter','S061X7A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.1X8A','S06.1X8A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic cerebral edema with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter','S061X8A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.1X9A','S06.1X9A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic cerebral edema with loss of consciousness of unspecified duration, initial encounter','S061X9A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.2X0A','S06.2X0A','http://hl7.org/fhir/sid/icd-10-cm','Diffuse traumatic brain injury without loss of consciousness, initial encounter','S062X0A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.2X1A','S06.2X1A','http://hl7.org/fhir/sid/icd-10-cm','Diffuse traumatic brain injury with loss of consciousness of 30 minutes or less, initial encounter','S062X1A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.2X2A','S06.2X2A','http://hl7.org/fhir/sid/icd-10-cm','Diffuse traumatic brain injury with loss of consciousness of 31 minutes to 59 minutes, initial encounter','S062X2A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.2X3A','S06.2X3A','http://hl7.org/fhir/sid/icd-10-cm','Diffuse traumatic brain injury with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter','S062X3A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.2X4A','S06.2X4A','http://hl7.org/fhir/sid/icd-10-cm','Diffuse traumatic brain injury with loss of consciousness of 6 hours to 24 hours, initial encounter','S062X4A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.2X5A','S06.2X5A','http://hl7.org/fhir/sid/icd-10-cm','Diffuse traumatic brain injury with loss of consciousness greater than 24 hours with return to pre-existing conscious levels, initial encounter','S062X5A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.2X6A','S06.2X6A','http://hl7.org/fhir/sid/icd-10-cm','Diffuse traumatic brain injury with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter','S062X6A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.2X7A','S06.2X7A','http://hl7.org/fhir/sid/icd-10-cm','Diffuse traumatic brain injury with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter','S062X7A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.2X8A','S06.2X8A','http://hl7.org/fhir/sid/icd-10-cm','Diffuse traumatic brain injury with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter','S062X8A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.2X9A','S06.2X9A','http://hl7.org/fhir/sid/icd-10-cm','Diffuse traumatic brain injury with loss of consciousness of unspecified duration, initial encounter','S062X9A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.300A','S06.300A','http://hl7.org/fhir/sid/icd-10-cm','Unspecified focal traumatic brain injury without loss of consciousness, initial encounter','S06300A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.301A','S06.301A','http://hl7.org/fhir/sid/icd-10-cm','Unspecified focal traumatic brain injury with loss of consciousness of 30 minutes or less, initial encounter','S06301A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.302A','S06.302A','http://hl7.org/fhir/sid/icd-10-cm','Unspecified focal traumatic brain injury with loss of consciousness of 31 minutes to 59 minutes, initial encounter','S06302A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.303A','S06.303A','http://hl7.org/fhir/sid/icd-10-cm','Unspecified focal traumatic brain injury with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter','S06303A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.304A','S06.304A','http://hl7.org/fhir/sid/icd-10-cm','Unspecified focal traumatic brain injury with loss of consciousness of 6 hours to 24 hours, initial encounter','S06304A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.305A','S06.305A','http://hl7.org/fhir/sid/icd-10-cm','Unspecified focal traumatic brain injury with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter','S06305A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.306A','S06.306A','http://hl7.org/fhir/sid/icd-10-cm','Unspecified focal traumatic brain injury with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter','S06306A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.307A','S06.307A','http://hl7.org/fhir/sid/icd-10-cm','Unspecified focal traumatic brain injury with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter','S06307A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.308A','S06.308A','http://hl7.org/fhir/sid/icd-10-cm','Unspecified focal traumatic brain injury with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter','S06308A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.309A','S06.309A','http://hl7.org/fhir/sid/icd-10-cm','Unspecified focal traumatic brain injury with loss of consciousness of unspecified duration, initial encounter','S06309A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.310A','S06.310A','http://hl7.org/fhir/sid/icd-10-cm','Contusion and laceration of right cerebrum without loss of consciousness, initial encounter','S06310A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.311A','S06.311A','http://hl7.org/fhir/sid/icd-10-cm','Contusion and laceration of right cerebrum with loss of consciousness of 30 minutes or less, initial encounter','S06311A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.312A','S06.312A','http://hl7.org/fhir/sid/icd-10-cm','Contusion and laceration of right cerebrum with loss of consciousness of 31 minutes to 59 minutes, initial encounter','S06312A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.313A','S06.313A','http://hl7.org/fhir/sid/icd-10-cm','Contusion and laceration of right cerebrum with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter','S06313A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.314A','S06.314A','http://hl7.org/fhir/sid/icd-10-cm','Contusion and laceration of right cerebrum with loss of consciousness of 6 hours to 24 hours, initial encounter','S06314A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.315A','S06.315A','http://hl7.org/fhir/sid/icd-10-cm','Contusion and laceration of right cerebrum with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter','S06315A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.316A','S06.316A','http://hl7.org/fhir/sid/icd-10-cm','Contusion and laceration of right cerebrum with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter','S06316A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.317A','S06.317A','http://hl7.org/fhir/sid/icd-10-cm','Contusion and laceration of right cerebrum with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter','S06317A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.318A','S06.318A','http://hl7.org/fhir/sid/icd-10-cm','Contusion and laceration of right cerebrum with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter','S06318A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.319A','S06.319A','http://hl7.org/fhir/sid/icd-10-cm','Contusion and laceration of right cerebrum with loss of consciousness of unspecified duration, initial encounter','S06319A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.320A','S06.320A','http://hl7.org/fhir/sid/icd-10-cm','Contusion and laceration of left cerebrum without loss of consciousness, initial encounter','S06320A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.321A','S06.321A','http://hl7.org/fhir/sid/icd-10-cm','Contusion and laceration of left cerebrum with loss of consciousness of 30 minutes or less, initial encounter','S06321A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.322A','S06.322A','http://hl7.org/fhir/sid/icd-10-cm','Contusion and laceration of left cerebrum with loss of consciousness of 31 minutes to 59 minutes, initial encounter','S06322A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.323A','S06.323A','http://hl7.org/fhir/sid/icd-10-cm','Contusion and laceration of left cerebrum with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter','S06323A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.324A','S06.324A','http://hl7.org/fhir/sid/icd-10-cm','Contusion and laceration of left cerebrum with loss of consciousness of 6 hours to 24 hours, initial encounter','S06324A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.325A','S06.325A','http://hl7.org/fhir/sid/icd-10-cm','Contusion and laceration of left cerebrum with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter','S06325A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.326A','S06.326A','http://hl7.org/fhir/sid/icd-10-cm','Contusion and laceration of left cerebrum with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter','S06326A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.327A','S06.327A','http://hl7.org/fhir/sid/icd-10-cm','Contusion and laceration of left cerebrum with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter','S06327A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.328A','S06.328A','http://hl7.org/fhir/sid/icd-10-cm','Contusion and laceration of left cerebrum with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter','S06328A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.329A','S06.329A','http://hl7.org/fhir/sid/icd-10-cm','Contusion and laceration of left cerebrum with loss of consciousness of unspecified duration, initial encounter','S06329A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.330A','S06.330A','http://hl7.org/fhir/sid/icd-10-cm','Contusion and laceration of cerebrum, unspecified, without loss of consciousness, initial encounter','S06330A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.331A','S06.331A','http://hl7.org/fhir/sid/icd-10-cm','Contusion and laceration of cerebrum, unspecified, with loss of consciousness of 30 minutes or less, initial encounter','S06331A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.332A','S06.332A','http://hl7.org/fhir/sid/icd-10-cm','Contusion and laceration of cerebrum, unspecified, with loss of consciousness of 31 minutes to 59 minutes, initial encounter','S06332A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.333A','S06.333A','http://hl7.org/fhir/sid/icd-10-cm','Contusion and laceration of cerebrum, unspecified, with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter','S06333A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.334A','S06.334A','http://hl7.org/fhir/sid/icd-10-cm','Contusion and laceration of cerebrum, unspecified, with loss of consciousness of 6 hours to 24 hours, initial encounter','S06334A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.335A','S06.335A','http://hl7.org/fhir/sid/icd-10-cm','Contusion and laceration of cerebrum, unspecified, with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter','S06335A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.336A','S06.336A','http://hl7.org/fhir/sid/icd-10-cm','Contusion and laceration of cerebrum, unspecified, with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter','S06336A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.337A','S06.337A','http://hl7.org/fhir/sid/icd-10-cm','Contusion and laceration of cerebrum, unspecified, with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter','S06337A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.338A','S06.338A','http://hl7.org/fhir/sid/icd-10-cm','Contusion and laceration of cerebrum, unspecified, with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter','S06338A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.339A','S06.339A','http://hl7.org/fhir/sid/icd-10-cm','Contusion and laceration of cerebrum, unspecified, with loss of consciousness of unspecified duration, initial encounter','S06339A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.340A','S06.340A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic hemorrhage of right cerebrum without loss of consciousness, initial encounter','S06340A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.341A','S06.341A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic hemorrhage of right cerebrum with loss of consciousness of 30 minutes or less, initial encounter','S06341A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.342A','S06.342A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic hemorrhage of right cerebrum with loss of consciousness of 31 minutes to 59 minutes, initial encounter','S06342A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.343A','S06.343A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic hemorrhage of right cerebrum with loss of consciousness of 1 hours to 5 hours 59 minutes, initial encounter','S06343A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.344A','S06.344A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic hemorrhage of right cerebrum with loss of consciousness of 6 hours to 24 hours, initial encounter','S06344A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.345A','S06.345A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic hemorrhage of right cerebrum with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter','S06345A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.346A','S06.346A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic hemorrhage of right cerebrum with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter','S06346A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.347A','S06.347A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic hemorrhage of right cerebrum with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter','S06347A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.348A','S06.348A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic hemorrhage of right cerebrum with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter','S06348A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.349A','S06.349A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic hemorrhage of right cerebrum with loss of consciousness of unspecified duration, initial encounter','S06349A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.350A','S06.350A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic hemorrhage of left cerebrum without loss of consciousness, initial encounter','S06350A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.351A','S06.351A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic hemorrhage of left cerebrum with loss of consciousness of 30 minutes or less, initial encounter','S06351A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.352A','S06.352A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic hemorrhage of left cerebrum with loss of consciousness of 31 minutes to 59 minutes, initial encounter','S06352A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.353A','S06.353A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic hemorrhage of left cerebrum with loss of consciousness of 1 hours to 5 hours 59 minutes, initial encounter','S06353A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.354A','S06.354A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic hemorrhage of left cerebrum with loss of consciousness of 6 hours to 24 hours, initial encounter','S06354A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.355A','S06.355A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic hemorrhage of left cerebrum with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter','S06355A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.356A','S06.356A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic hemorrhage of left cerebrum with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter','S06356A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.357A','S06.357A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic hemorrhage of left cerebrum with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter','S06357A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.358A','S06.358A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic hemorrhage of left cerebrum with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter','S06358A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.359A','S06.359A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic hemorrhage of left cerebrum with loss of consciousness of unspecified duration, initial encounter','S06359A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.360A','S06.360A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic hemorrhage of cerebrum, unspecified, without loss of consciousness, initial encounter','S06360A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.361A','S06.361A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of 30 minutes or less, initial encounter','S06361A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.362A','S06.362A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of 31 minutes to 59 minutes, initial encounter','S06362A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.363A','S06.363A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of 1 hours to 5 hours 59 minutes, initial encounter','S06363A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.364A','S06.364A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of 6 hours to 24 hours, initial encounter','S06364A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.365A','S06.365A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter','S06365A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.366A','S06.366A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter','S06366A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.367A','S06.367A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter','S06367A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.368A','S06.368A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter','S06368A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.369A','S06.369A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of unspecified duration, initial encounter','S06369A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.370A','S06.370A','http://hl7.org/fhir/sid/icd-10-cm','Contusion, laceration, and hemorrhage of cerebellum without loss of consciousness, initial encounter','S06370A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.371A','S06.371A','http://hl7.org/fhir/sid/icd-10-cm','Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of 30 minutes or less, initial encounter','S06371A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.372A','S06.372A','http://hl7.org/fhir/sid/icd-10-cm','Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of 31 minutes to 59 minutes, initial encounter','S06372A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.373A','S06.373A','http://hl7.org/fhir/sid/icd-10-cm','Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter','S06373A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.374A','S06.374A','http://hl7.org/fhir/sid/icd-10-cm','Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of 6 hours to 24 hours, initial encounter','S06374A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.375A','S06.375A','http://hl7.org/fhir/sid/icd-10-cm','Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter','S06375A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.376A','S06.376A','http://hl7.org/fhir/sid/icd-10-cm','Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter','S06376A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.377A','S06.377A','http://hl7.org/fhir/sid/icd-10-cm','Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter','S06377A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.378A','S06.378A','http://hl7.org/fhir/sid/icd-10-cm','Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter','S06378A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.379A','S06.379A','http://hl7.org/fhir/sid/icd-10-cm','Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of unspecified duration, initial encounter','S06379A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.380A','S06.380A','http://hl7.org/fhir/sid/icd-10-cm','Contusion, laceration, and hemorrhage of brainstem without loss of consciousness, initial encounter','S06380A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.381A','S06.381A','http://hl7.org/fhir/sid/icd-10-cm','Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of 30 minutes or less, initial encounter','S06381A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.382A','S06.382A','http://hl7.org/fhir/sid/icd-10-cm','Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of 31 minutes to 59 minutes, initial encounter','S06382A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.383A','S06.383A','http://hl7.org/fhir/sid/icd-10-cm','Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter','S06383A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.384A','S06.384A','http://hl7.org/fhir/sid/icd-10-cm','Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of 6 hours to 24 hours, initial encounter','S06384A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.385A','S06.385A','http://hl7.org/fhir/sid/icd-10-cm','Contusion, laceration, and hemorrhage of brainstem with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter','S06385A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.386A','S06.386A','http://hl7.org/fhir/sid/icd-10-cm','Contusion, laceration, and hemorrhage of brainstem with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter','S06386A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.387A','S06.387A','http://hl7.org/fhir/sid/icd-10-cm','Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter','S06387A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.388A','S06.388A','http://hl7.org/fhir/sid/icd-10-cm','Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter','S06388A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.389A','S06.389A','http://hl7.org/fhir/sid/icd-10-cm','Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of unspecified duration, initial encounter','S06389A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.4X0A','S06.4X0A','http://hl7.org/fhir/sid/icd-10-cm','Epidural hemorrhage without loss of consciousness, initial encounter','S064X0A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.4X1A','S06.4X1A','http://hl7.org/fhir/sid/icd-10-cm','Epidural hemorrhage with loss of consciousness of 30 minutes or less, initial encounter','S064X1A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.4X2A','S06.4X2A','http://hl7.org/fhir/sid/icd-10-cm','Epidural hemorrhage with loss of consciousness of 31 minutes to 59 minutes, initial encounter','S064X2A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.4X3A','S06.4X3A','http://hl7.org/fhir/sid/icd-10-cm','Epidural hemorrhage with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter','S064X3A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.4X4A','S06.4X4A','http://hl7.org/fhir/sid/icd-10-cm','Epidural hemorrhage with loss of consciousness of 6 hours to 24 hours, initial encounter','S064X4A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.4X5A','S06.4X5A','http://hl7.org/fhir/sid/icd-10-cm','Epidural hemorrhage with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter','S064X5A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.4X6A','S06.4X6A','http://hl7.org/fhir/sid/icd-10-cm','Epidural hemorrhage with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter','S064X6A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.4X7A','S06.4X7A','http://hl7.org/fhir/sid/icd-10-cm','Epidural hemorrhage with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter','S064X7A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.4X8A','S06.4X8A','http://hl7.org/fhir/sid/icd-10-cm','Epidural hemorrhage with loss of consciousness of any duration with death due to other causes prior to regaining consciousness, initial encounter','S064X8A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.4X9A','S06.4X9A','http://hl7.org/fhir/sid/icd-10-cm','Epidural hemorrhage with loss of consciousness of unspecified duration, initial encounter','S064X9A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.5X0A','S06.5X0A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic subdural hemorrhage without loss of consciousness, initial encounter','S065X0A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.5X1A','S06.5X1A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic subdural hemorrhage with loss of consciousness of 30 minutes or less, initial encounter','S065X1A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.5X2A','S06.5X2A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic subdural hemorrhage with loss of consciousness of 31 minutes to 59 minutes, initial encounter','S065X2A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.5X3A','S06.5X3A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic subdural hemorrhage with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter','S065X3A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.5X4A','S06.5X4A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic subdural hemorrhage with loss of consciousness of 6 hours to 24 hours, initial encounter','S065X4A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.5X5A','S06.5X5A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic subdural hemorrhage with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter','S065X5A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.5X6A','S06.5X6A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic subdural hemorrhage with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter','S065X6A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.5X7A','S06.5X7A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic subdural hemorrhage with loss of consciousness of any duration with death due to brain injury before regaining consciousness, initial encounter','S065X7A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.5X8A','S06.5X8A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic subdural hemorrhage with loss of consciousness of any duration with death due to other cause before regaining consciousness, initial encounter','S065X8A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.5X9A','S06.5X9A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic subdural hemorrhage with loss of consciousness of unspecified duration, initial encounter','S065X9A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.6X0A','S06.6X0A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic subarachnoid hemorrhage without loss of consciousness, initial encounter','S066X0A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.6X1A','S06.6X1A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic subarachnoid hemorrhage with loss of consciousness of 30 minutes or less, initial encounter','S066X1A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.6X2A','S06.6X2A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic subarachnoid hemorrhage with loss of consciousness of 31 minutes to 59 minutes, initial encounter','S066X2A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.6X3A','S06.6X3A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic subarachnoid hemorrhage with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter','S066X3A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.6X4A','S06.6X4A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic subarachnoid hemorrhage with loss of consciousness of 6 hours to 24 hours, initial encounter','S066X4A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.6X5A','S06.6X5A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic subarachnoid hemorrhage with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter','S066X5A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.6X6A','S06.6X6A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic subarachnoid hemorrhage with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter','S066X6A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.6X7A','S06.6X7A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic subarachnoid hemorrhage with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter','S066X7A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.6X8A','S06.6X8A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic subarachnoid hemorrhage with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter','S066X8A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.6X9A','S06.6X9A','http://hl7.org/fhir/sid/icd-10-cm','Traumatic subarachnoid hemorrhage with loss of consciousness of unspecified duration, initial encounter','S066X9A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.810A','S06.810A','http://hl7.org/fhir/sid/icd-10-cm','Injury of right internal carotid artery, intracranial portion, not elsewhere classified without loss of consciousness, initial encounter','S06810A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.811A','S06.811A','http://hl7.org/fhir/sid/icd-10-cm','Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 30 minutes or less, initial encounter','S06811A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.812A','S06.812A','http://hl7.org/fhir/sid/icd-10-cm','Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 31 minutes to 59 minutes, initial encounter','S06812A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.813A','S06.813A','http://hl7.org/fhir/sid/icd-10-cm','Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter','S06813A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.814A','S06.814A','http://hl7.org/fhir/sid/icd-10-cm','Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 6 hours to 24 hours, initial encounter','S06814A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.815A','S06.815A','http://hl7.org/fhir/sid/icd-10-cm','Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter','S06815A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.816A','S06.816A','http://hl7.org/fhir/sid/icd-10-cm','Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter','S06816A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.817A','S06.817A','http://hl7.org/fhir/sid/icd-10-cm','Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter','S06817A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.818A','S06.818A','http://hl7.org/fhir/sid/icd-10-cm','Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter','S06818A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.819A','S06.819A','http://hl7.org/fhir/sid/icd-10-cm','Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of unspecified duration, initial encounter','S06819A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.820A','S06.820A','http://hl7.org/fhir/sid/icd-10-cm','Injury of left internal carotid artery, intracranial portion, not elsewhere classified without loss of consciousness, initial encounter','S06820A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.821A','S06.821A','http://hl7.org/fhir/sid/icd-10-cm','Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 30 minutes or less, initial encounter','S06821A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.822A','S06.822A','http://hl7.org/fhir/sid/icd-10-cm','Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 31 minutes to 59 minutes, initial encounter','S06822A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.823A','S06.823A','http://hl7.org/fhir/sid/icd-10-cm','Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter','S06823A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.824A','S06.824A','http://hl7.org/fhir/sid/icd-10-cm','Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 6 hours to 24 hours, initial encounter','S06824A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.825A','S06.825A','http://hl7.org/fhir/sid/icd-10-cm','Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter','S06825A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.826A','S06.826A','http://hl7.org/fhir/sid/icd-10-cm','Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter','S06826A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.827A','S06.827A','http://hl7.org/fhir/sid/icd-10-cm','Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter','S06827A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.828A','S06.828A','http://hl7.org/fhir/sid/icd-10-cm','Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter','S06828A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.829A','S06.829A','http://hl7.org/fhir/sid/icd-10-cm','Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of unspecified duration, initial encounter','S06829A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.890A','S06.890A','http://hl7.org/fhir/sid/icd-10-cm','Other specified intracranial injury without loss of consciousness, initial encounter','S06890A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.891A','S06.891A','http://hl7.org/fhir/sid/icd-10-cm','Other specified intracranial injury with loss of consciousness of 30 minutes or less, initial encounter','S06891A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.892A','S06.892A','http://hl7.org/fhir/sid/icd-10-cm','Other specified intracranial injury with loss of consciousness of 31 minutes to 59 minutes, initial encounter','S06892A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.893A','S06.893A','http://hl7.org/fhir/sid/icd-10-cm','Other specified intracranial injury with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter','S06893A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.894A','S06.894A','http://hl7.org/fhir/sid/icd-10-cm','Other specified intracranial injury with loss of consciousness of 6 hours to 24 hours, initial encounter','S06894A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.895A','S06.895A','http://hl7.org/fhir/sid/icd-10-cm','Other specified intracranial injury with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter','S06895A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.896A','S06.896A','http://hl7.org/fhir/sid/icd-10-cm','Other specified intracranial injury with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter','S06896A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.897A','S06.897A','http://hl7.org/fhir/sid/icd-10-cm','Other specified intracranial injury with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter','S06897A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.898A','S06.898A','http://hl7.org/fhir/sid/icd-10-cm','Other specified intracranial injury with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter','S06898A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.899A','S06.899A','http://hl7.org/fhir/sid/icd-10-cm','Other specified intracranial injury with loss of consciousness of unspecified duration, initial encounter','S06899A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.9X0A','S06.9X0A','http://hl7.org/fhir/sid/icd-10-cm','Unspecified intracranial injury without loss of consciousness, initial encounter','S069X0A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.9X1A','S06.9X1A','http://hl7.org/fhir/sid/icd-10-cm','Unspecified intracranial injury with loss of consciousness of 30 minutes or less, initial encounter','S069X1A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.9X2A','S06.9X2A','http://hl7.org/fhir/sid/icd-10-cm','Unspecified intracranial injury with loss of consciousness of 31 minutes to 59 minutes, initial encounter','S069X2A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.9X3A','S06.9X3A','http://hl7.org/fhir/sid/icd-10-cm','Unspecified intracranial injury with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter','S069X3A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.9X4A','S06.9X4A','http://hl7.org/fhir/sid/icd-10-cm','Unspecified intracranial injury with loss of consciousness of 6 hours to 24 hours, initial encounter','S069X4A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.9X5A','S06.9X5A','http://hl7.org/fhir/sid/icd-10-cm','Unspecified intracranial injury with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter','S069X5A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.9X6A','S06.9X6A','http://hl7.org/fhir/sid/icd-10-cm','Unspecified intracranial injury with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter','S069X6A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.9X7A','S06.9X7A','http://hl7.org/fhir/sid/icd-10-cm','Unspecified intracranial injury with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter','S069X7A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.9X8A','S06.9X8A','http://hl7.org/fhir/sid/icd-10-cm','Unspecified intracranial injury with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter','S069X8A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.9X9A','S06.9X9A','http://hl7.org/fhir/sid/icd-10-cm','Unspecified intracranial injury with loss of consciousness of unspecified duration, initial encounter','S069X9A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.A0XA','S06.A0XA','http://hl7.org/fhir/sid/icd-10-cm','Traumatic brain compression without herniation, initial encounter','S06A0XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S06.A1XA','S06.A1XA','http://hl7.org/fhir/sid/icd-10-cm','Traumatic brain compression with herniation, initial encounter','S06A1XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1742_S07.1XXA','S07.1XXA','http://hl7.org/fhir/sid/icd-10-cm','Crushing injury of skull, initial encounter','S071XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1981_A83.5','A83.5','http://hl7.org/fhir/sid/icd-10-cm','California encephalitis','A835','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_1003584006','1003584006','http://snomed.info/sct','Hind brain laceration with open intracranial wound and loss of consciousness (disorder)','1003584006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_230282000','230282000','http://snomed.info/sct','Post-traumatic dementia (disorder)','230282000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_40425004','40425004','http://snomed.info/sct','Postconcussion syndrome (disorder)','40425004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_432461000124101','432461000124101','http://snomed.info/sct','Post-traumatic epilepsy, refractory (disorder)','432461000124101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_432471000124108','432471000124108','http://snomed.info/sct','Post-traumatic epilepsy, non-refractory (disorder)','432471000124108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_698687007','698687007','http://snomed.info/sct','Post-traumatic dementia with behavioral change (disorder)','698687007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_75023009','75023009','http://snomed.info/sct','Post-traumatic epilepsy (disorder)','75023009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_10943311000119108','10943311000119108','http://snomed.info/sct','Contusion of right cerebrum (disorder)','10943311000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_10943471000119107','10943471000119107','http://snomed.info/sct','Contusion of left cerebrum (disorder)','10943471000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_110030002','110030002','http://snomed.info/sct','Concussion injury of brain (disorder)','110030002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_12589008','12589008','http://snomed.info/sct','Brain stem laceration with open intracranial wound (disorder)','12589008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_127295002','127295002','http://snomed.info/sct','Traumatic brain injury (disorder)','127295002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_127298000','127298000','http://snomed.info/sct','Traumatic brain injury with loss of consciousness (disorder)','127298000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_127299008','127299008','http://snomed.info/sct','Traumatic brain injury with brief loss of consciousness (disorder)','127299008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_127300000','127300000','http://snomed.info/sct','Traumatic brain injury with moderate loss of consciousness (disorder)','127300000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_127301001','127301001','http://snomed.info/sct','Traumatic brain injury with prolonged loss of consciousness (disorder)','127301001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_127302008','127302008','http://snomed.info/sct','Traumatic brain injury with no loss of consciousness (disorder)','127302008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_127303003','127303003','http://snomed.info/sct','Cortex laceration (disorder)','127303003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_127304009','127304009','http://snomed.info/sct','Cerebellar contusion (disorder)','127304009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_127305005','127305005','http://snomed.info/sct','Brain stem contusion (disorder)','127305005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_127306006','127306006','http://snomed.info/sct','Cerebellar laceration (disorder)','127306006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_127307002','127307002','http://snomed.info/sct','Brain stem laceration (disorder)','127307002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_127309004','127309004','http://snomed.info/sct','Intracranial hemorrhage following injury with brief loss of consciousness (disorder)','127309004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_127310009','127310009','http://snomed.info/sct','Intracranial hemorrhage following injury with moderate loss of consciousness (disorder)','127310009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_13752003','13752003','http://snomed.info/sct','Brain injury with open intracranial wound AND loss of consciousness (disorder)','13752003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_14434006','14434006','http://snomed.info/sct','Cerebellar laceration with open intracranial wound AND no loss of consciousness (disorder)','14434006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_16319002','16319002','http://snomed.info/sct','Cortex contusion without open intracranial wound AND with concussion (disorder)','16319002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_17169009','17169009','http://snomed.info/sct','Cerebellar contusion without open intracranial wound AND with loss of consciousness (disorder)','17169009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_17498002','17498002','http://snomed.info/sct','Cortex contusion without open intracranial wound AND with loss of consciousness (disorder)','17498002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_19210000','19210000','http://snomed.info/sct','Brain stem laceration with open intracranial wound AND no loss of consciousness (disorder)','19210000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_19233004','19233004','http://snomed.info/sct','Cerebellar contusion with open intracranial wound AND loss of consciousness (disorder)','19233004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_20899000','20899000','http://snomed.info/sct','Brain stem laceration without open intracranial wound (disorder)','20899000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_209827006','209827006','http://snomed.info/sct','Concussion with less than 1 hour loss of consciousness (disorder)','209827006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_209845006','209845006','http://snomed.info/sct','Cortex contusion with open intracranial wound, with no loss of consciousness (disorder)','209845006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_209864000','209864000','http://snomed.info/sct','Cortex laceration with open intracranial wound, with no loss of consciousness (disorder)','209864000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_209900006','209900006','http://snomed.info/sct','Hind brain laceration with open intracranial wound (disorder)','209900006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_209902003','209902003','http://snomed.info/sct','Hind brain laceration with open intracranial wound, with no loss of consciousness (disorder)','209902003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_210038008','210038008','http://snomed.info/sct','Focal brain injury (disorder)','210038008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_212142000','212142000','http://snomed.info/sct','Visual cortex injury (disorder)','212142000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_213383004','213383004','http://snomed.info/sct','Injuries of brain and cranial nerves with injuries of nerves and spinal cord at neck level (disorder)','213383004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_22819008','22819008','http://snomed.info/sct','Laceration of brain with open intracranial wound (disorder)','22819008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_230763008','230763008','http://snomed.info/sct','Cerebral edema due to trauma (disorder)','230763008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_23713006','23713006','http://snomed.info/sct','Contusion of cerebral cortex (disorder)','23713006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_241993004','241993004','http://snomed.info/sct','Cerebral decompression injury (disorder)','241993004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_262687004','262687004','http://snomed.info/sct','Cerebellar laceration and contusion (disorder)','262687004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_262688009','262688009','http://snomed.info/sct','Cortex laceration and contusion (disorder)','262688009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_262689001','262689001','http://snomed.info/sct','Contusion of cerebrum (disorder)','262689001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_262691009','262691009','http://snomed.info/sct','Laceration of cerebrum (disorder)','262691009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_262692002','262692002','http://snomed.info/sct','Burst lobe of brain (disorder)','262692002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_262693007','262693007','http://snomed.info/sct','Diffuse brain injury (disorder)','262693007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_262694001','262694001','http://snomed.info/sct','Traumatic generalized cerebral edema (disorder)','262694001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_262695000','262695000','http://snomed.info/sct','Traumatic focal cerebral edema (disorder)','262695000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_264534009','264534009','http://snomed.info/sct','Hypothalamic injury (disorder)','264534009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_269144002','269144002','http://snomed.info/sct','Cerebral laceration and contusion (disorder)','269144002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_275362006','275362006','http://snomed.info/sct','Falx laceration (disorder)','275362006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_275382005','275382005','http://snomed.info/sct','Cerebral trauma (disorder)','275382005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_28155008','28155008','http://snomed.info/sct','Extradural hemorrhage following injury with open intracranial wound AND concussion (disorder)','28155008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_28188001','28188001','http://snomed.info/sct','Brain injury with open intracranial wound (disorder)','28188001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_29807001','29807001','http://snomed.info/sct','Brain stem contusion without open intracranial wound AND with loss of consciousness (disorder)','29807001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_30031007','30031007','http://snomed.info/sct','Cerebellar laceration without open intracranial wound (disorder)','30031007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_30371007','30371007','http://snomed.info/sct','Cerebral laceration AND contusion co-occurrent and due to open fracture of base of skull (disorder)','30371007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_30858001','30858001','http://snomed.info/sct','Cerebellar laceration with open intracranial wound (disorder)','30858001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_311826007','311826007','http://snomed.info/sct','Traumatic cerebral edema with open intracranial wound (disorder)','311826007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_3119002','3119002','http://snomed.info/sct','Brain stem laceration with open intracranial wound AND loss of consciousness (disorder)','3119002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_32106001','32106001','http://snomed.info/sct','Cortex contusion without open intracranial wound (disorder)','32106001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_32415004','32415004','http://snomed.info/sct','Cerebellar contusion without open intracranial wound AND with concussion (disorder)','32415004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_329671000119106','329671000119106','http://snomed.info/sct','Traumatic subarachnoid hemorrhage with loss of consciousness (disorder)','329671000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_33332005','33332005','http://snomed.info/sct','Brain injury without open intracranial wound AND with concussion (disorder)','33332005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_34663006','34663006','http://snomed.info/sct','Contusion of brain (disorder)','34663006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_371050006','371050006','http://snomed.info/sct','Traumatic intracranial subdural hematoma with brief loss of consciousness (disorder)','371050006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_41222005','41222005','http://snomed.info/sct','Brain stem laceration with open intracranial wound AND concussion (disorder)','41222005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_41870008','41870008','http://snomed.info/sct','Cortex laceration with open intracranial wound AND loss of consciousness (disorder)','41870008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_43262000','43262000','http://snomed.info/sct','Subdural hemorrhage following injury with open intracranial wound AND concussion (disorder)','43262000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_447396006','447396006','http://snomed.info/sct','Concussion injury of cerebrum (disorder)','447396006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_450418003','450418003','http://snomed.info/sct','Cerebral hemorrhage due to trauma (disorder)','450418003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_46966000','46966000','http://snomed.info/sct','Cerebral compression due to injury (disorder)','46966000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_48518008','48518008','http://snomed.info/sct','Subarachnoid hemorrhage following injury with open intracranial wound AND concussion (disorder)','48518008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_5202009','5202009','http://snomed.info/sct','Brain injury with open intracranial wound AND concussion (disorder)','5202009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_52888005','52888005','http://snomed.info/sct','Brain stem contusion without open intracranial wound (disorder)','52888005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_53267002','53267002','http://snomed.info/sct','Brain injury without open intracranial wound AND with loss of consciousness (disorder)','53267002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_55702009','55702009','http://snomed.info/sct','Laceration of brain without open intracranial wound (disorder)','55702009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_57739006','57739006','http://snomed.info/sct','Cerebellar contusion without open intracranial wound (disorder)','57739006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_59748008','59748008','http://snomed.info/sct','Cortex laceration with open intracranial wound (disorder)','59748008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_59918000','59918000','http://snomed.info/sct','Cerebellar laceration with open intracranial wound AND concussion (disorder)','59918000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_62106007','62106007','http://snomed.info/sct','Concussion with no loss of consciousness (disorder)','62106007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_62564004','62564004','http://snomed.info/sct','Concussion with loss of consciousness (disorder)','62564004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_66393002','66393002','http://snomed.info/sct','Brain stem contusion with open intracranial wound AND loss of consciousness (disorder)','66393002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_698618009','698618009','http://snomed.info/sct','Loss of consciousness co-occurrent and due to open fracture of vault of skull (disorder)','698618009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_698619001','698619001','http://snomed.info/sct','Concussion co-occurrent and due to open fracture of vault of skull (disorder)','698619001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_69875006','69875006','http://snomed.info/sct','Cortex laceration with open intracranial wound AND concussion (disorder)','69875006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_708728007','708728007','http://snomed.info/sct','Traumatic brain injury of unknown intent (disorder)','708728007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_721330006','721330006','http://snomed.info/sct','Diffuse injury of cerebrum (disorder)','721330006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_721331005','721331005','http://snomed.info/sct','Diffuse injury of cerebellum (disorder)','721331005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_721332003','721332003','http://snomed.info/sct','Diffuse injury of brainstem (disorder)','721332003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_721333008','721333008','http://snomed.info/sct','Crush injury of brain (disorder)','721333008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_722614006','722614006','http://snomed.info/sct','Focal non-hemorrhagic contusion of cerebrum (disorder)','722614006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_722615007','722615007','http://snomed.info/sct','Focal hemorrhagic contusion of cerebrum (disorder)','722615007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_722616008','722616008','http://snomed.info/sct','Focal laceration of cerebrum (disorder)','722616008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_722617004','722617004','http://snomed.info/sct','Multiple focal injuries of cerebrum (disorder)','722617004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_722618009','722618009','http://snomed.info/sct','Focal non-hemorrhagic contusion of cerebellum (disorder)','722618009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_722619001','722619001','http://snomed.info/sct','Focal traumatic hemorrhage of cerebellum (disorder)','722619001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_722620007','722620007','http://snomed.info/sct','Focal traumatic hematoma of cerebellum (disorder)','722620007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_722622004','722622004','http://snomed.info/sct','Focal non-hemorrhagic contusion of brainstem (disorder)','722622004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_722623009','722623009','http://snomed.info/sct','Focal traumatic hemorrhage of brainstem (disorder)','722623009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_722624003','722624003','http://snomed.info/sct','Focal traumatic hematoma of brainstem (disorder)','722624003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_722625002','722625002','http://snomed.info/sct','Focal laceration of brainstem (disorder)','722625002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_722626001','722626001','http://snomed.info/sct','Multiple focal injuries of cerebellum (disorder)','722626001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_722627005','722627005','http://snomed.info/sct','Focal injury of brainstem (disorder)','722627005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_722630003','722630003','http://snomed.info/sct','Traumatic hemorrhage of cerebral white matter (disorder)','722630003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_722631004','722631004','http://snomed.info/sct','Traumatic hemorrhage of cerebellum (disorder)','722631004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_722632006','722632006','http://snomed.info/sct','Traumatic hemorrhage of brainstem (disorder)','722632006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_722633001','722633001','http://snomed.info/sct','Multiple traumatic hemorrhages of brain tissue (disorder)','722633001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_722702007','722702007','http://snomed.info/sct','Focal laceration of cerebellum (disorder)','722702007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_722703002','722703002','http://snomed.info/sct','Traumatic intraventricular hemorrhage (disorder)','722703002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_723138000','723138000','http://snomed.info/sct','Primary traumatic hemorrhage of brainstem (disorder)','723138000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_723139008','723139008','http://snomed.info/sct','Secondary traumatic hemorrhage of brainstem (disorder)','723139008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_73413009','73413009','http://snomed.info/sct','Cortex contusion with open intracranial wound AND concussion (disorder)','73413009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_736321008','736321008','http://snomed.info/sct','Injury of both visual cortices (disorder)','736321008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_737231005','737231005','http://snomed.info/sct','Traumatic hemorrhage of thalamus (disorder)','737231005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_737232003','737232003','http://snomed.info/sct','Traumatic hemorrhage of basal ganglia (disorder)','737232003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_762353009','762353009','http://snomed.info/sct','Acute headache due to traumatic injury of head (disorder)','762353009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_762436001','762436001','http://snomed.info/sct','Injury of left visual cortex (disorder)','762436001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_762617003','762617003','http://snomed.info/sct','Injury of right visual cortex (disorder)','762617003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_76418009','76418009','http://snomed.info/sct','Concussion with mental confusion AND/OR disorientation without loss of consciousness (disorder)','76418009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_78028004','78028004','http://snomed.info/sct','Brain stem contusion with open intracranial wound AND concussion (disorder)','78028004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_78879009','78879009','http://snomed.info/sct','Intracranial hemorrhage following injury with open intracranial wound AND concussion (disorder)','78879009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_788930004','788930004','http://snomed.info/sct','Focal contusion of brain (disorder)','788930004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_788931000','788931000','http://snomed.info/sct','Focal contusion of occipital lobe (disorder)','788931000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_788932007','788932007','http://snomed.info/sct','Focal contusion of parietal lobe (disorder)','788932007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_788933002','788933002','http://snomed.info/sct','Focal contusion of temporal lobe (disorder)','788933002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_788934008','788934008','http://snomed.info/sct','Focal laceration of brain (disorder)','788934008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_78914008','78914008','http://snomed.info/sct','Laceration of brain (disorder)','78914008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_78968003','78968003','http://snomed.info/sct','Brain stem contusion with open intracranial wound (disorder)','78968003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_79220008','79220008','http://snomed.info/sct','Brain stem contusion without open intracranial wound AND with concussion (disorder)','79220008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_81412002','81412002','http://snomed.info/sct','Cortex contusion with open intracranial wound AND loss of consciousness (disorder)','81412002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_82344002','82344002','http://snomed.info/sct','Cerebellar contusion with open intracranial wound (disorder)','82344002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_84170006','84170006','http://snomed.info/sct','Contusion of brain with open intracranial wound (disorder)','84170006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_84900008','84900008','http://snomed.info/sct','Cerebellar laceration with open intracranial wound AND loss of consciousness (disorder)','84900008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_86125000','86125000','http://snomed.info/sct','Cerebellar contusion with open intracranial wound AND concussion (disorder)','86125000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_870540001','870540001','http://snomed.info/sct','Contusion of hindbrain (disorder)','870540001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_870553003','870553003','http://snomed.info/sct','Open fracture of vault of skull with cerebral laceration (disorder)','870553003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_870554009','870554009','http://snomed.info/sct','Open fracture of vault of skull with cerebral contusion (disorder)','870554009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_870555005','870555005','http://snomed.info/sct','Open fracture of skull with cerebral contusion (disorder)','870555005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_870556006','870556006','http://snomed.info/sct','Open fracture of skull with cerebral laceration (disorder)','870556006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_870563006','870563006','http://snomed.info/sct','Contusion of cerebrum with open intracranial wound (disorder)','870563006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_870565004','870565004','http://snomed.info/sct','Contusion of hindbrain with open intracranial wound (disorder)','870565004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_874937002','874937002','http://snomed.info/sct','Cerebral cortex laceration with concussion (disorder)','874937002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_874939004','874939004','http://snomed.info/sct','Cerebellar laceration with concussion (disorder)','874939004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_874940002','874940002','http://snomed.info/sct','Brain stem laceration with concussion (disorder)','874940002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_874943000','874943000','http://snomed.info/sct','Brain stem laceration with loss of consciousness (disorder)','874943000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_87888006','87888006','http://snomed.info/sct','Cortex contusion with open intracranial wound (disorder)','87888006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_9015001','9015001','http://snomed.info/sct','Brain injury without open intracranial wound (disorder)','9015001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_90429009','90429009','http://snomed.info/sct','Cerebellar laceration without open intracranial wound AND with loss of consciousness (disorder)','90429009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_90768003','90768003','http://snomed.info/sct','Contusion of brain without open intracranial wound (disorder)','90768003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1741_91012008','91012008','http://snomed.info/sct','Repeated concussion of brain (disorder)','91012008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1980_416442006','416442006','http://snomed.info/sct','California encephalitis virus infection (disorder)','416442006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1980_418182000','418182000','http://snomed.info/sct','Disease caused by California serogroup virus (disorder)','418182000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1980_419226000','419226000','http://snomed.info/sct','California serogroup virus non-neuroinvasive disease (disorder)','419226000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1980_404239005','404239005','http://snomed.info/sct','Meningitis caused by California Orthobunyavirus (disorder)','404239005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1980_417075004','417075004','http://snomed.info/sct','Neuroinvasive California encephalitis virus infection (disorder)','417075004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1980_418531007','418531007','http://snomed.info/sct','California serogroup virus neuroinvasive disease (disorder)','418531007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1759_233636000','233636000','http://snomed.info/sct','Asbestos pleurisy (disorder)','233636000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1759_233639007','233639007','http://snomed.info/sct','Benign asbestos pleural effusion (disorder)','233639007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1759_233653007','233653007','http://snomed.info/sct','Asbestos-induced pleural fibrosis (disorder)','233653007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1759_233655000','233655000','http://snomed.info/sct','Asbestos-induced bilateral diffuse pleural thickening (disorder)','233655000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1759_233659006','233659006','http://snomed.info/sct','Asbestos-induced pleural plaque (disorder)','233659006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1516_1163151008','1163151008','http://snomed.info/sct','Cryptococcoma of cerebrum (disorder)','1163151008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1516_17273001','17273001','http://snomed.info/sct','Mucocutaneous cryptococcosis (disorder)','17273001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1516_187091009','187091009','http://snomed.info/sct','Systemic cryptococcosis (disorder)','187091009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1516_187093007','187093007','http://snomed.info/sct','Hepatic cryptococcosis (disorder)','187093007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1516_20953001','20953001','http://snomed.info/sct','Pulmonary cryptococcosis (disorder)','20953001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1516_240724004','240724004','http://snomed.info/sct','Cutaneous cryptococcosis (disorder)','240724004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1516_283688006','283688006','http://snomed.info/sct','Osseous cryptococcosis (disorder)','283688006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1516_35974005','35974005','http://snomed.info/sct','Cryptococcal gastroenteritis (disorder)','35974005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1516_406569004','406569004','http://snomed.info/sct','Cryptococcus infection of the central nervous system (disorder)','406569004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1516_416296007','416296007','http://snomed.info/sct','Cryptococcal endophthalmitis (disorder)','416296007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1516_416877003','416877003','http://snomed.info/sct','Cryptococcal chorioretinitis (disorder)','416877003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1516_417254001','417254001','http://snomed.info/sct','Ocular cryptococcosis (disorder)','417254001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1516_417344003','417344003','http://snomed.info/sct','Cryptococcal choroiditis (disorder)','417344003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1516_417547006','417547006','http://snomed.info/sct','Cryptococcal retinitis (disorder)','417547006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1516_421278000','421278000','http://snomed.info/sct','Cryptococcus neoformans choroiditis (disorder)','421278000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1516_42386007','42386007','http://snomed.info/sct','Cryptococcosis (disorder)','42386007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1516_715849007','715849007','http://snomed.info/sct','Infection caused by Cryptococcus gatti (disorder)','715849007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1516_14232007','14232007','http://snomed.info/sct','Cryptococcal meningitis (disorder)','14232007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1516_187094001','187094001','http://snomed.info/sct','Cerebral cryptococcosis (disorder)','187094001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1516_421403008','421403008','http://snomed.info/sct','Cryptococcosis with acquired immunodeficiency syndrome (disorder)','421403008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1637_240613006','240613006','http://snomed.info/sct','Typhus group rickettsial disease (disorder)','240613006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1637_25668000','25668000','http://snomed.info/sct','Murine typhus (disorder)','25668000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1637_39111003','39111003','http://snomed.info/sct','Louse-borne typhus (disorder)','39111003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1637_47761007','47761007','http://snomed.info/sct','Brill-Zinsser disease (disorder)','47761007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1758_22607003','22607003','http://snomed.info/sct','Asbestosis (disorder)','22607003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1758_446354001','446354001','http://snomed.info/sct','Poisoning caused by asbestos (disorder)','446354001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1879_O86.00','O86.00','http://hl7.org/fhir/sid/icd-10-cm','Infection of obstetric surgical wound, unspecified','O8600','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1879_O86.01','O86.01','http://hl7.org/fhir/sid/icd-10-cm','Infection of obstetric surgical wound, superficial incisional site','O8601','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1879_O86.02','O86.02','http://hl7.org/fhir/sid/icd-10-cm','Infection of obstetric surgical wound, deep incisional site','O8602','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1879_O86.03','O86.03','http://hl7.org/fhir/sid/icd-10-cm','Infection of obstetric surgical wound, organ and space site','O8603','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1879_O86.09','O86.09','http://hl7.org/fhir/sid/icd-10-cm','Infection of obstetric surgical wound, other surgical site','O8609','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1879_T81.41XA','T81.41XA','http://hl7.org/fhir/sid/icd-10-cm','Infection following a procedure, superficial incisional surgical site, initial encounter','T8141XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1879_T81.41XD','T81.41XD','http://hl7.org/fhir/sid/icd-10-cm','Infection following a procedure, superficial incisional surgical site, subsequent encounter','T8141XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1879_T81.41XS','T81.41XS','http://hl7.org/fhir/sid/icd-10-cm','Infection following a procedure, superficial incisional surgical site, sequela','T8141XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1879_T81.42XA','T81.42XA','http://hl7.org/fhir/sid/icd-10-cm','Infection following a procedure, deep incisional surgical site, initial encounter','T8142XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1879_T81.42XD','T81.42XD','http://hl7.org/fhir/sid/icd-10-cm','Infection following a procedure, deep incisional surgical site, subsequent encounter','T8142XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1879_T81.42XS','T81.42XS','http://hl7.org/fhir/sid/icd-10-cm','Infection following a procedure, deep incisional surgical site, sequela','T8142XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1879_T81.43XA','T81.43XA','http://hl7.org/fhir/sid/icd-10-cm','Infection following a procedure, organ and space surgical site, initial encounter','T8143XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1879_T81.43XD','T81.43XD','http://hl7.org/fhir/sid/icd-10-cm','Infection following a procedure, organ and space surgical site, subsequent encounter','T8143XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1879_T81.43XS','T81.43XS','http://hl7.org/fhir/sid/icd-10-cm','Infection following a procedure, organ and space surgical site, sequela','T8143XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1879_T81.49XA','T81.49XA','http://hl7.org/fhir/sid/icd-10-cm','Infection following a procedure, other surgical site, initial encounter','T8149XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1879_T81.49XD','T81.49XD','http://hl7.org/fhir/sid/icd-10-cm','Infection following a procedure, other surgical site, subsequent encounter','T8149XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1879_T81.49XS','T81.49XS','http://hl7.org/fhir/sid/icd-10-cm','Infection following a procedure, other surgical site, sequela','T8149XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1998_187187002','187187002','http://snomed.info/sct','Intestinal angiostrongyliasis (disorder)','187187002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1998_35033008','35033008','http://snomed.info/sct','Infection caused by Angiostrongylus cantonensis (disorder)','35033008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1998_61750000','61750000','http://snomed.info/sct','Infection caused by Angiostrongylus (disorder)','61750000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1998_866078000','866078000','http://snomed.info/sct','Infection caused by Angiostrongylus costaricensis (disorder)','866078000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1878_1208402005','1208402005','http://snomed.info/sct','Intra-abdominal infection following surgical procedure (disorder)','1208402005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1878_1251354003','1251354003','http://snomed.info/sct','Infection of skin following cosmetic surgical procedure (disorder)','1251354003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1878_200125006','200125006','http://snomed.info/sct','Infection of obstetric surgical wound (disorder)','200125006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1878_213286009','213286009','http://snomed.info/sct','Postoperative wound infection-deep (disorder)','213286009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1878_213287000','213287000','http://snomed.info/sct','Postoperative wound infection-superficial (disorder)','213287000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1878_39341000119109','39341000119109','http://snomed.info/sct','Infection of surgical incision wound following cesarean section (disorder)','39341000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1878_433202001','433202001','http://snomed.info/sct','Surgical site infection (disorder)','433202001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1878_460631000124101','460631000124101','http://snomed.info/sct','Infection of superficial obstetric surgical wound (disorder)','460631000124101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1878_460651000124108','460651000124108','http://snomed.info/sct','Infection of deep obstetric surgical wound (disorder)','460651000124108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1878_58126003','58126003','http://snomed.info/sct','Postoperative wound infection (disorder)','58126003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1878_609339001','609339001','http://snomed.info/sct','Superficial incisional surgical site infection (disorder)','609339001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1878_609340004','609340004','http://snomed.info/sct','Deep incisional surgical site infection (disorder)','609340004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1878_609341000','609341000','http://snomed.info/sct','Organ-space surgical site infection (disorder)','609341000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1878_698365009','698365009','http://snomed.info/sct','Postoperative infection of thyroidectomy wound (disorder)','698365009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1878_734856003','734856003','http://snomed.info/sct','Surgical implant site pocket infection (disorder)','734856003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1878_762611002','762611002','http://snomed.info/sct','Infection of organ surgical site following surgical procedure (disorder)','762611002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1878_308155002','308155002','http://snomed.info/sct','Methicillin-resistant Staphylococcus aureus infection of postoperative wound (disorder)','308155002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1999_1163118004','1163118004','http://snomed.info/sct','Congenital infection caused by Lymphocytic choriomeningitis virus (disorder)','1163118004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1999_398136003','398136003','http://snomed.info/sct','Meningitis caused by lymphocytic choriomeningitis virus (disorder)','398136003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1999_721781004','721781004','http://snomed.info/sct','Infection caused by Lymphocytic choriomeningitis virus (disorder)','721781004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1999_1163058004','1163058004','http://snomed.info/sct','Encephalitis caused by Lymphocytic choriomeningitis virus (disorder)','1163058004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1999_1163541002','1163541002','http://snomed.info/sct','Meningoencephalitis caused by Lymphocytic choriomeningitis virus (disorder)','1163541002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1999_397961002','397961002','http://snomed.info/sct','Encephalomyelitis caused by lymphocytic choriomeningitis virus (disorder)','397961002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1515_B45.0','B45.0','http://hl7.org/fhir/sid/icd-10-cm','Pulmonary cryptococcosis','B450','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1515_B45.1','B45.1','http://hl7.org/fhir/sid/icd-10-cm','Cerebral cryptococcosis','B451','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1515_B45.2','B45.2','http://hl7.org/fhir/sid/icd-10-cm','Cutaneous cryptococcosis','B452','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1515_B45.3','B45.3','http://hl7.org/fhir/sid/icd-10-cm','Osseous cryptococcosis','B453','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1515_B45.7','B45.7','http://hl7.org/fhir/sid/icd-10-cm','Disseminated cryptococcosis','B457','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1515_B45.8','B45.8','http://hl7.org/fhir/sid/icd-10-cm','Other forms of cryptococcosis','B458','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1515_B45.9','B45.9','http://hl7.org/fhir/sid/icd-10-cm','Cryptococcosis, unspecified','B459','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1514_11371006','11371006','http://snomed.info/sct','Mercury pigmentation of skin (disorder)','11371006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1514_22130008','22130008','http://snomed.info/sct','Organic mercury poisoning (disorder)','22130008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1514_236457006','236457006','http://snomed.info/sct','Chronic mercury nephropathy (disorder)','236457006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1514_236518000','236518000','http://snomed.info/sct','Acute mercury nephropathy (disorder)','236518000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1514_47980004','47980004','http://snomed.info/sct','Inorganic mercury poisoning (disorder)','47980004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1514_55623006','55623006','http://snomed.info/sct','Toxic encephalopathy caused by mercury (disorder)','55623006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1514_61351004','61351004','http://snomed.info/sct','Poisoning caused by anti-infective compound of mercury (disorder)','61351004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1514_62110005','62110005','http://snomed.info/sct','Fetal methyl mercury syndrome (disorder)','62110005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1514_66695004','66695004','http://snomed.info/sct','Acrodynia due to mercury poisoning (disorder)','66695004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1514_714149002','714149002','http://snomed.info/sct','Allergic contact gingivitis caused by mercury (disorder)','714149002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1514_763740000','763740000','http://snomed.info/sct','Infantile poisoning caused by mercury (disorder)','763740000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1514_767299002','767299002','http://snomed.info/sct','Toxic effect of mercury and/or mercury compound (disorder)','767299002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1751_A05.0','A05.0','http://hl7.org/fhir/sid/icd-10-cm','Foodborne staphylococcal intoxication','A050','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1873_B69','B69','http://hl7.org/fhir/sid/icd-10-cm','Cysticercosis','B69','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1873_B69.1','B69.1','http://hl7.org/fhir/sid/icd-10-cm','Cysticercosis of eye','B691','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1873_B69.8','B69.8','http://hl7.org/fhir/sid/icd-10-cm','Cysticercosis of other sites','B698','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1873_B69.81','B69.81','http://hl7.org/fhir/sid/icd-10-cm','Myositis in cysticercosis','B6981','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1873_B69.89','B69.89','http://hl7.org/fhir/sid/icd-10-cm','Cysticercosis of other sites','B6989','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1873_B69.9','B69.9','http://hl7.org/fhir/sid/icd-10-cm','Cysticercosis, unspecified','B699','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1750_84622004','84622004','http://snomed.info/sct','Food poisoning caused by staphylococcus (disorder)','84622004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1750_398384001','398384001','http://snomed.info/sct','Staphylococcus aureus food poisoning (disorder)','398384001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1871_187148002','187148002','http://snomed.info/sct','Cysticercosis of central nervous system (disorder)','187148002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1871_230215006','230215006','http://snomed.info/sct','Cerebral cysticercosis (disorder)','230215006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1871_441460004','441460004','http://snomed.info/sct','Cysticercosis of brain (disorder)','441460004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1871_722977005','722977005','http://snomed.info/sct','Dementia co-occurrent and due to neurocysticercosis (disorder)','722977005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1871_1163537001','1163537001','http://snomed.info/sct','Myelitis caused by larva of Taenia solium (disorder)','1163537001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1871_721824003','721824003','http://snomed.info/sct','Meningitis caused by Taenia solium (disorder)','721824003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1871_721825002','721825002','http://snomed.info/sct','Encephalitis caused by Taenia solium (disorder)','721825002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1872_B69.0','B69.0','http://hl7.org/fhir/sid/icd-10-cm','Cysticercosis of central nervous system','B690','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1870_187149005','187149005','http://snomed.info/sct','Cysticercosis of eye (disorder)','187149005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1870_240114004','240114004','http://snomed.info/sct','Cysticercosis myositis (disorder)','240114004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1870_403132001','403132001','http://snomed.info/sct','Cysticercosis of skin (disorder)','403132001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1870_59051007','59051007','http://snomed.info/sct','Cysticercosis (disorder)','59051007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1870_240818004','240818004','http://snomed.info/sct','Taenia solium infection (disorder)','240818004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1870_870302000','870302000','http://snomed.info/sct','Parasitic infestation of orbit caused by Taenia solium (disorder)','870302000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_100721000119109','100721000119109','http://snomed.info/sct','High grade astrocytoma of brain (disorder)','100721000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_100731000119107','100731000119107','http://snomed.info/sct','Low grade astrocytoma of brain (disorder)','100731000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_101371000119101','101371000119101','http://snomed.info/sct','Adamantinoma of long bone of lower limb (disorder)','101371000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_101571000119107','101571000119107','http://snomed.info/sct','Ependymoma of cerebrum (disorder)','101571000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_103511000119103','103511000119103','http://snomed.info/sct','Melanoma carcinomatosis (disorder)','103511000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_104981000119104','104981000119104','http://snomed.info/sct','Oligodendroglioma of cerebrum (disorder)','104981000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_105111000119109','105111000119109','http://snomed.info/sct','Primary squamous cell carcinoma of thymus (disorder)','105111000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_105121000119102','105121000119102','http://snomed.info/sct','Squamous cell carcinoma of vagina (disorder)','105121000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_10708511000119108','10708511000119108','http://snomed.info/sct','Primary malignant neoplasm of uterus (disorder)','10708511000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_10737861000119101','10737861000119101','http://snomed.info/sct','Malignant germ cell neoplasm of right ovary (disorder)','10737861000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_10737911000119105','10737911000119105','http://snomed.info/sct','Malignant germ cell neoplasm of left ovary (disorder)','10737911000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_10749871000119100','10749871000119100','http://snomed.info/sct','Malignant neoplastic disease in pregnancy (disorder)','10749871000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_107561000119107','107561000119107','http://snomed.info/sct','Ependymoma of brain stem (disorder)','107561000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_107571000119101','107571000119101','http://snomed.info/sct','Oligodendroglioma of brain stem (disorder)','107571000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_107581000119103','107581000119103','http://snomed.info/sct','Astrocytoma of brain stem (disorder)','107581000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_107591000119100','107591000119100','http://snomed.info/sct','Primary squamous cell carcinoma of urethra (disorder)','107591000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_107601000119107','107601000119107','http://snomed.info/sct','Primary transitional cell carcinoma of urethra (disorder)','107601000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_107691000119101','107691000119101','http://snomed.info/sct','Non-seminomatous germ cell neoplasm of testis (disorder)','107691000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_107751000119102','107751000119102','http://snomed.info/sct','Primary malignant mixed Mullerian neoplasm of endometrium (disorder)','107751000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_107771000119106','107771000119106','http://snomed.info/sct','Primary malignant clear cell neoplasm of endometrium (disorder)','107771000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_107791000119107','107791000119107','http://snomed.info/sct','Primary adenosquamous carcinoma of endometrium (disorder)','107791000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1078881000119102','1078881000119102','http://snomed.info/sct','Primary adenocarcinoma of lower lobe of left lung (disorder)','1078881000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1078901000119100','1078901000119100','http://snomed.info/sct','Primary adenocarcinoma of upper lobe of left lung (disorder)','1078901000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1078931000119107','1078931000119107','http://snomed.info/sct','Primary adenocarcinoma of lower lobe of right lung (disorder)','1078931000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1078961000119104','1078961000119104','http://snomed.info/sct','Primary adenocarcinoma of upper lobe of right lung (disorder)','1078961000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1079531000119106','1079531000119106','http://snomed.info/sct','Metastatic malignant neoplasm to left kidney (disorder)','1079531000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1079541000119102','1079541000119102','http://snomed.info/sct','Metastatic malignant neoplasm to right kidney (disorder)','1079541000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1079811000119104','1079811000119104','http://snomed.info/sct','Ductal carcinoma in situ of left breast (disorder)','1079811000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1079821000119106','1079821000119106','http://snomed.info/sct','Ductal carcinoma in situ of right breast (disorder)','1079821000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1080091000119100','1080091000119100','http://snomed.info/sct','Infiltrating ductal carcinoma of axillary tail of left female breast (disorder)','1080091000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1080101000119105','1080101000119105','http://snomed.info/sct','Infiltrating duct carcinoma of left female breast (disorder)','1080101000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1080111000119108','1080111000119108','http://snomed.info/sct','Infiltrating ductal carcinoma of central portion of left female breast (disorder)','1080111000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1080121000119101','1080121000119101','http://snomed.info/sct','Infiltrating ductal carcinoma of lower inner quadrant of left female breast (disorder)','1080121000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1080131000119103','1080131000119103','http://snomed.info/sct','Infiltrating ductal carcinoma of lower outer quadrant of left female breast (disorder)','1080131000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1080151000119109','1080151000119109','http://snomed.info/sct','Infiltrating ductal carcinoma of upper inner quadrant of left female breast (disorder)','1080151000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1080161000119106','1080161000119106','http://snomed.info/sct','Infiltrating ductal carcinoma of upper outer quadrant of left female breast (disorder)','1080161000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1080171000119100','1080171000119100','http://snomed.info/sct','Infiltrating ductal carcinoma of axillary tail of right female breast (disorder)','1080171000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1080181000119102','1080181000119102','http://snomed.info/sct','Infiltrating duct carcinoma of right female breast (disorder)','1080181000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1080191000119104','1080191000119104','http://snomed.info/sct','Infiltrating ductal carcinoma of central portion of right female breast (disorder)','1080191000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1080201000119101','1080201000119101','http://snomed.info/sct','Infiltrating ductal carcinoma of lower inner quadrant of right female breast (disorder)','1080201000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1080211000119103','1080211000119103','http://snomed.info/sct','Infiltrating ductal carcinoma of lower outer quadrant of right female breast (disorder)','1080211000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1080231000119108','1080231000119108','http://snomed.info/sct','Infiltrating ductal carcinoma of upper inner quadrant of right female breast (disorder)','1080231000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1080241000119104','1080241000119104','http://snomed.info/sct','Infiltrating ductal carcinoma of upper outer quadrant of right female breast (disorder)','1080241000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1080261000119100','1080261000119100','http://snomed.info/sct','Infiltrating lobular carcinoma of left female breast (disorder)','1080261000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1080341000119105','1080341000119105','http://snomed.info/sct','Infiltrating lobular carcinoma of right female breast (disorder)','1080341000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1080911000119105','1080911000119105','http://snomed.info/sct','Melanoma in situ of left ear (disorder)','1080911000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1080941000119109','1080941000119109','http://snomed.info/sct','Malignant melanoma of left choroid (disorder)','1080941000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1080981000119104','1080981000119104','http://snomed.info/sct','Malignant melanoma of right choroid (disorder)','1080981000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_108101000119101','108101000119101','http://snomed.info/sct','Malignant melanoma metastatic to kidney (disorder)','108101000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1081021000119109','1081021000119109','http://snomed.info/sct','Malignant melanoma of skin of left lower limb (disorder)','1081021000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_108131000119108','108131000119108','http://snomed.info/sct','Small cell carcinoma metastatic to kidney (disorder)','108131000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1081551000119106','1081551000119106','http://snomed.info/sct','Recurrent primary malignant neoplasm of left female breast (disorder)','1081551000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1081561000119108','1081561000119108','http://snomed.info/sct','Recurrent primary malignant neoplasm of right female breast (disorder)','1081561000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1081571000119102','1081571000119102','http://snomed.info/sct','Clear cell carcinoma of left kidney (disorder)','1081571000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1081581000119104','1081581000119104','http://snomed.info/sct','Clear cell carcinoma of right kidney (disorder)','1081581000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1081711000119104','1081711000119104','http://snomed.info/sct','Primary sarcoma of left lower limb (disorder)','1081711000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1081751000119103','1081751000119103','http://snomed.info/sct','Primary sarcoma of right lower limb (disorder)','1081751000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1081781000119105','1081781000119105','http://snomed.info/sct','Primary seminoma of left testis (disorder)','1081781000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1081811000119107','1081811000119107','http://snomed.info/sct','Primary seminoma of right testis (disorder)','1081811000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_108201000119105','108201000119105','http://snomed.info/sct','Undifferentiated large cell carcinoma metastatic to kidney (disorder)','108201000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1082071000119102','1082071000119102','http://snomed.info/sct','Primary squamous cell carcinoma of left ear (disorder)','1082071000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1082101000119106','1082101000119106','http://snomed.info/sct','Primary squamous cell carcinoma of skin of left lower limb (disorder)','1082101000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_108211000119108','108211000119108','http://snomed.info/sct','Secondary adenocarcinoma of kidney (disorder)','108211000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1082191000119100','1082191000119100','http://snomed.info/sct','Primary squamous cell carcinoma of right ear (disorder)','1082191000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1082221000119106','1082221000119106','http://snomed.info/sct','Primary squamous cell carcinoma of skin of right lower limb (disorder)','1082221000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1082281000119105','1082281000119105','http://snomed.info/sct','Transitional cell carcinoma of left renal pelvis (disorder)','1082281000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1082291000119108','1082291000119108','http://snomed.info/sct','Transitional cell carcinoma of left ureter (disorder)','1082291000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1082301000119109','1082301000119109','http://snomed.info/sct','Transitional cell carcinoma of right renal pelvis (disorder)','1082301000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1082311000119107','1082311000119107','http://snomed.info/sct','Transitional cell carcinoma of right ureter (disorder)','1082311000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1082321000119100','1082321000119100','http://snomed.info/sct','Nephroblastoma of left kidney (disorder)','1082321000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1082331000119102','1082331000119102','http://snomed.info/sct','Nephroblastoma of right kidney (disorder)','1082331000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1082601000112109','1082601000112109','http://snomed.info/sct','Metastatic malignant neoplasm to viscera (disorder)','1082601000112109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1082701000112100','1082701000112100','http://snomed.info/sct','Locally advanced breast cancer (disorder)','1082701000112100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1082901000112103','1082901000112103','http://snomed.info/sct','Primary malignant neoplasm of breast with axillary lymph node invasion (disorder)','1082901000112103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109264009','109264009','http://snomed.info/sct','Overlapping malignant neoplasm of skin (disorder)','109264009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109266006','109266006','http://snomed.info/sct','Melanoma in situ of skin (disorder)','109266006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109267002','109267002','http://snomed.info/sct','Overlapping malignant melanoma of skin (disorder)','109267002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109268007','109268007','http://snomed.info/sct','Melanoma in situ of non-skin site (disorder)','109268007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109270003','109270003','http://snomed.info/sct','Melanoma in situ of face (disorder)','109270003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109272006','109272006','http://snomed.info/sct','Melanoma in situ of lip (disorder)','109272006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109274007','109274007','http://snomed.info/sct','Melanoma in situ of eyelid, including canthus (disorder)','109274007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109276009','109276009','http://snomed.info/sct','Melanoma in situ of scalp (disorder)','109276009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109278005','109278005','http://snomed.info/sct','Melanoma in situ of ear (disorder)','109278005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109280004','109280004','http://snomed.info/sct','Melanoma in situ of external auditory canal (disorder)','109280004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109282007','109282007','http://snomed.info/sct','Melanoma in situ of neck (disorder)','109282007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109284008','109284008','http://snomed.info/sct','Melanoma in situ of trunk (disorder)','109284008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109286005','109286005','http://snomed.info/sct','Melanoma in situ of skin of breast (disorder)','109286005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109288006','109288006','http://snomed.info/sct','Melanoma in situ of perianal skin (disorder)','109288006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109290007','109290007','http://snomed.info/sct','Melanoma in situ of upper limb (disorder)','109290007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109292004','109292004','http://snomed.info/sct','Melanoma in situ of shoulder (disorder)','109292004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109294003','109294003','http://snomed.info/sct','Melanoma in situ of lower limb (disorder)','109294003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109296001','109296001','http://snomed.info/sct','Melanoma in situ of hip (disorder)','109296001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109347009','109347009','http://snomed.info/sct','Overlapping malignant neoplasm of bone and articular cartilage (disorder)','109347009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109348004','109348004','http://snomed.info/sct','Overlapping malignant neoplasm of bone and articular cartilage of limb (disorder)','109348004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109349007','109349007','http://snomed.info/sct','Overlapping malignant neoplasm of soft tissues (disorder)','109349007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109355002','109355002','http://snomed.info/sct','Carcinoma in situ (disorder)','109355002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109356001','109356001','http://snomed.info/sct','Primary malignant neoplasm of unspecified site (disorder)','109356001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109357005','109357005','http://snomed.info/sct','Primary malignant neoplasm of ill-defined site (disorder)','109357005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109358000','109358000','http://snomed.info/sct','Overlapping malignant neoplasm of ill-defined site (disorder)','109358000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109359008','109359008','http://snomed.info/sct','Primary malignant neoplasm of independent multiple sites (disorder)','109359008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109366009','109366009','http://snomed.info/sct','Overlapping malignant neoplasm of accessory sinuses (disorder)','109366009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109367000','109367000','http://snomed.info/sct','Overlapping malignant neoplasm of nasopharynx (disorder)','109367000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109368005','109368005','http://snomed.info/sct','Overlapping malignant neoplasm of hypopharynx (disorder)','109368005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109369002','109369002','http://snomed.info/sct','Overlapping malignant neoplasm of larynx (disorder)','109369002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109370001','109370001','http://snomed.info/sct','Primary malignant neoplasm of laryngeal cartilage (disorder)','109370001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109371002','109371002','http://snomed.info/sct','Overlapping malignant neoplasm of bronchus and lung (disorder)','109371002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109374005','109374005','http://snomed.info/sct','Overlapping malignant neoplasm of mediastinum and pleura (disorder)','109374005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109378008','109378008','http://snomed.info/sct','Mesothelioma (malignant, clinical disorder) (disorder)','109378008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109383000','109383000','http://snomed.info/sct','Malignant mesothelioma of pericardium (disorder)','109383000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109384006','109384006','http://snomed.info/sct','Overlapping malignant neoplasm of heart, mediastinum and pleura (disorder)','109384006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109385007','109385007','http://snomed.info/sct','Kaposi''s sarcoma (disorder)','109385007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109386008','109386008','http://snomed.info/sct','Kaposi''s sarcoma of skin (disorder)','109386008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109388009','109388009','http://snomed.info/sct','Kaposi''s sarcoma of palate (disorder)','109388009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109389001','109389001','http://snomed.info/sct','Kaposi''s sarcoma of gastrointestinal tract (disorder)','109389001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109390005','109390005','http://snomed.info/sct','Kaposi''s sarcoma of lung (disorder)','109390005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109391009','109391009','http://snomed.info/sct','Kaposi''s sarcoma of lymph nodes (disorder)','109391009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109392002','109392002','http://snomed.info/sct','Kaposi''s sarcoma of multiple organs (disorder)','109392002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109821008','109821008','http://snomed.info/sct','Overlapping malignant neoplasm of gastrointestinal tract (disorder)','109821008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109822001','109822001','http://snomed.info/sct','Overlapping malignant neoplasm of lip (disorder)','109822001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109823006','109823006','http://snomed.info/sct','Overlapping malignant neoplasm of tongue (disorder)','109823006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109824000','109824000','http://snomed.info/sct','Overlapping malignant neoplasm of major salivary gland (disorder)','109824000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109827007','109827007','http://snomed.info/sct','Carcinoma in situ of salivary gland duct (disorder)','109827007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109828002','109828002','http://snomed.info/sct','Primary malignant neoplasm of salivary gland duct (disorder)','109828002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109830000','109830000','http://snomed.info/sct','Overlapping malignant neoplasm of floor of mouth (disorder)','109830000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109831001','109831001','http://snomed.info/sct','Overlapping malignant neoplasm of palate (disorder)','109831001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109832008','109832008','http://snomed.info/sct','Overlapping malignant neoplasm of oropharynx (disorder)','109832008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109833003','109833003','http://snomed.info/sct','Overlapping malignant neoplasm of lip, oral cavity and/or pharynx (disorder)','109833003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109834009','109834009','http://snomed.info/sct','Primary malignant neoplasm of branchial cleft (disorder)','109834009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109835005','109835005','http://snomed.info/sct','Overlapping malignant neoplasm of esophagus (disorder)','109835005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109836006','109836006','http://snomed.info/sct','Overlapping malignant neoplasm of stomach (disorder)','109836006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109837002','109837002','http://snomed.info/sct','Overlapping malignant neoplasm of small intestine (disorder)','109837002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109838007','109838007','http://snomed.info/sct','Overlapping malignant neoplasm of colon (disorder)','109838007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109839004','109839004','http://snomed.info/sct','Overlapping malignant neoplasm of rectum, anus and anal canal (disorder)','109839004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109840002','109840002','http://snomed.info/sct','Primary malignant neoplasm of cloacogenic zone (disorder)','109840002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109841003','109841003','http://snomed.info/sct','Liver cell carcinoma (disorder)','109841003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109842005','109842005','http://snomed.info/sct','Intrahepatic bile duct carcinoma (disorder)','109842005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109843000','109843000','http://snomed.info/sct','Hepatoblastoma (disorder)','109843000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109844006','109844006','http://snomed.info/sct','Angiosarcoma of liver (disorder)','109844006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109847004','109847004','http://snomed.info/sct','Overlapping malignant neoplasm of biliary tract (disorder)','109847004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109848009','109848009','http://snomed.info/sct','Overlapping malignant neoplasm of pancreas (disorder)','109848009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109850001','109850001','http://snomed.info/sct','Carcinoma in situ of digestive organ (disorder)','109850001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109851002','109851002','http://snomed.info/sct','Overlapping malignant neoplasm of retroperitoneum and peritoneum (disorder)','109851002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109853004','109853004','http://snomed.info/sct','Malignant mesothelioma of peritoneum (disorder)','109853004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109854005','109854005','http://snomed.info/sct','Malignant mesothelioma of parietal peritoneum (disorder)','109854005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109855006','109855006','http://snomed.info/sct','Malignant mesothelioma of pelvic peritoneum (disorder)','109855006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109856007','109856007','http://snomed.info/sct','Malignant mesothelioma of mesentery (disorder)','109856007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109858008','109858008','http://snomed.info/sct','Malignant mesothelioma of omentum (disorder)','109858008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109870007','109870007','http://snomed.info/sct','Overlapping malignant neoplasm of urinary system (disorder)','109870007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109874003','109874003','http://snomed.info/sct','Overlapping malignant neoplasm of male genital organs (disorder)','109874003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109875002','109875002','http://snomed.info/sct','Overlapping malignant neoplasm of penis (disorder)','109875002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109876001','109876001','http://snomed.info/sct','Primary malignant neoplasm of descended testis (disorder)','109876001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109878000','109878000','http://snomed.info/sct','Overlapping malignant neoplasm of female genital organs (disorder)','109878000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109879008','109879008','http://snomed.info/sct','Overlapping malignant neoplasm of body of uterus (disorder)','109879008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109880006','109880006','http://snomed.info/sct','Overlapping malignant neoplasm of uterine cervix (disorder)','109880006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109882003','109882003','http://snomed.info/sct','Primary malignant neoplasm of fundus uteri (disorder)','109882003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109885001','109885001','http://snomed.info/sct','Overlapping malignant neoplasm of vulva (disorder)','109885001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109886000','109886000','http://snomed.info/sct','Overlapping malignant neoplasm of female breast (disorder)','109886000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109887009','109887009','http://snomed.info/sct','Overlapping malignant neoplasm of male breast (disorder)','109887009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109888004','109888004','http://snomed.info/sct','Lobular carcinoma in situ of breast (disorder)','109888004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109889007','109889007','http://snomed.info/sct','Ductal carcinoma in situ of breast (disorder)','109889007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1098981000119101','1098981000119101','http://snomed.info/sct','Recurrent malignant neoplasm of prostate (disorder)','1098981000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109911004','109911004','http://snomed.info/sct','Overlapping malignant neoplasm of brain and other parts of the central nervous system (disorder)','109911004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109912006','109912006','http://snomed.info/sct','Overlapping malignant neoplasm of brain (disorder)','109912006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109914007','109914007','http://snomed.info/sct','Neoplasm of uncertain behavior of meninges (disorder)','109914007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109915008','109915008','http://snomed.info/sct','Primary malignant neoplasm of meninges (disorder)','109915008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109918005','109918005','http://snomed.info/sct','Primary malignant neoplasm of peripheral nerves and peripheral autonomic nervous system (disorder)','109918005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109919002','109919002','http://snomed.info/sct','Overlapping malignant neoplasm of peripheral nerves and autonomic nervous system (disorder)','109919002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109921007','109921007','http://snomed.info/sct','Primary malignant neoplasm of peripheral nerve of head, face and/or neck (disorder)','109921007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109923005','109923005','http://snomed.info/sct','Primary malignant neoplasm of peripheral nerves of head (disorder)','109923005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109925003','109925003','http://snomed.info/sct','Primary malignant neoplasm of peripheral nerves of face (disorder)','109925003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109927006','109927006','http://snomed.info/sct','Primary malignant neoplasm of peripheral nerves of neck (disorder)','109927006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109931000','109931000','http://snomed.info/sct','Primary malignant neoplasm of peripheral nerves of upper limb (disorder)','109931000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109933002','109933002','http://snomed.info/sct','Primary malignant neoplasm of peripheral nerves of shoulder (disorder)','109933002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109937001','109937001','http://snomed.info/sct','Primary malignant neoplasm of peripheral nerves of lower limb (disorder)','109937001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109939003','109939003','http://snomed.info/sct','Primary malignant neoplasm of peripheral nerves of hip (disorder)','109939003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109941002','109941002','http://snomed.info/sct','Primary malignant neoplasm of peripheral nerves of thorax (disorder)','109941002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109943004','109943004','http://snomed.info/sct','Primary malignant neoplasm of peripheral nerves of abdomen (disorder)','109943004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109945006','109945006','http://snomed.info/sct','Primary malignant neoplasm of peripheral nerves of pelvis region (disorder)','109945006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109947003','109947003','http://snomed.info/sct','Primary malignant neoplasm of peripheral nerves of trunk (disorder)','109947003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109948008','109948008','http://snomed.info/sct','Overlapping malignant neoplasm of eye and adnexa, primary (disorder)','109948008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109951001','109951001','http://snomed.info/sct','Overlapping malignant neoplasm of multiple endocrine glands (disorder)','109951001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1099571000119100','1099571000119100','http://snomed.info/sct','Primary malignant neoplasm of left lacrimal sac (disorder)','1099571000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1099581000119102','1099581000119102','http://snomed.info/sct','Primary malignant neoplasm of right lacrimal sac (disorder)','1099581000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109962001','109962001','http://snomed.info/sct','Diffuse non-Hodgkin''s lymphoma (disorder)','109962001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109964000','109964000','http://snomed.info/sct','Diffuse non-Hodgkin''s lymphoma, undifferentiated (disorder)','109964000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109965004','109965004','http://snomed.info/sct','Diffuse non-Hodgkin''s lymphoma, lymphoblastic (disorder)','109965004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109966003','109966003','http://snomed.info/sct','Diffuse non-Hodgkin''s lymphoma, immunoblastic (disorder)','109966003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109967007','109967007','http://snomed.info/sct','Diffuse non-Hodgkin''s lymphoma, small cleaved cell (disorder)','109967007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109968002','109968002','http://snomed.info/sct','Diffuse non-Hodgkin''s lymphoma, small cell (disorder)','109968002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109969005','109969005','http://snomed.info/sct','Diffuse large B-cell malignant lymphoma (disorder)','109969005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109970006','109970006','http://snomed.info/sct','Follicular non-Hodgkin''s lymphoma, small cleaved cell (disorder)','109970006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109971005','109971005','http://snomed.info/sct','Follicular non-Hodgkin''s lymphoma, mixed small cleaved cell and large cell (disorder)','109971005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109972003','109972003','http://snomed.info/sct','Follicular non-Hodgkin''s lymphoma, large cell (disorder)','109972003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109975001','109975001','http://snomed.info/sct','T-zone lymphoma (disorder)','109975001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109976000','109976000','http://snomed.info/sct','Lymphoepithelioid lymphoma (disorder)','109976000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109977009','109977009','http://snomed.info/sct','Peripheral T-cell lymphoma (disorder)','109977009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109978004','109978004','http://snomed.info/sct','T-cell lymphoma (disorder)','109978004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109980005','109980005','http://snomed.info/sct','Malignant immunoproliferative disease (disorder)','109980005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109982002','109982002','http://snomed.info/sct','Alpha heavy chain disease (disorder)','109982002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109984001','109984001','http://snomed.info/sct','Gamma heavy chain disease (disorder)','109984001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109985000','109985000','http://snomed.info/sct','Immunoproliferative small intestinal disease (disorder)','109985000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109988003','109988003','http://snomed.info/sct','Histiocytic sarcoma (disorder)','109988003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109989006','109989006','http://snomed.info/sct','Multiple myeloma (disorder)','109989006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109991003','109991003','http://snomed.info/sct','Acute myelofibrosis (disorder)','109991003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109992005','109992005','http://snomed.info/sct','Polycythemia vera (disorder)','109992005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109993000','109993000','http://snomed.info/sct','Chronic myeloproliferative disorder (clinical) (disorder)','109993000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109994006','109994006','http://snomed.info/sct','Essential thrombocythemia (disorder)','109994006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109995007','109995007','http://snomed.info/sct','Myelodysplastic syndrome (disorder)','109995007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109996008','109996008','http://snomed.info/sct','Myelodysplastic syndrome: Refractory anemia, without ringed sideroblasts, without excess blasts (disorder)','109996008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_109998009','109998009','http://snomed.info/sct','Myelodysplastic syndrome with ring sideroblasts and single lineage dysplasia (disorder)','109998009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_110000005','110000005','http://snomed.info/sct','Refractory anemia with excess blasts in transformation (disorder)','110000005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_110002002','110002002','http://snomed.info/sct','Mast cell leukemia (disorder)','110002002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_110004001','110004001','http://snomed.info/sct','Acute promyelocytic leukemia, FAB M3 (disorder)','110004001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_110005000','110005000','http://snomed.info/sct','Acute myelomonocytic leukemia, FAB M4 (disorder)','110005000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_110006004','110006004','http://snomed.info/sct','Prolymphocytic leukemia (disorder)','110006004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_110007008','110007008','http://snomed.info/sct','Adult T-cell leukemia/lymphoma (disorder)','110007008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_110013004','110013004','http://snomed.info/sct','Overlapping malignant neoplasm of tonsil (disorder)','110013004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_11010461000119101','11010461000119101','http://snomed.info/sct','Small cell carcinoma (disorder)','11010461000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_112241002','112241002','http://snomed.info/sct','Lymphoma stage III 1 (finding)','112241002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1144252005','1144252005','http://snomed.info/sct','Malignant neoplasm of lateral border of tongue (disorder)','1144252005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1144764001','1144764001','http://snomed.info/sct','Malignant neoplasm of esophagus with neuregulin 1 gene fusion (disorder)','1144764001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_11471000224106','11471000224106','http://snomed.info/sct','Diffuse intrinsic pontine glioma (disorder)','11471000224106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1148852009','1148852009','http://snomed.info/sct','Malignant cystic nephroma (disorder)','1148852009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1153354008','1153354008','http://snomed.info/sct','Malignant lymphoma of duodenum (disorder)','1153354008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1153355009','1153355009','http://snomed.info/sct','Malignant lymphoma of esophagus (disorder)','1153355009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1156809009','1156809009','http://snomed.info/sct','Malignant mesenchymal neoplasm of duodenum (disorder)','1156809009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1156810004','1156810004','http://snomed.info/sct','Malignant mesenchymal neoplasm of esophagus (disorder)','1156810004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1156811000','1156811000','http://snomed.info/sct','Malignant mesenchymal neoplasm of anus (disorder)','1156811000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1156812007','1156812007','http://snomed.info/sct','Malignant mesenchymal neoplasm of appendix (disorder)','1156812007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1157063004','1157063004','http://snomed.info/sct','Malignant neoplasm of vertebral column region (disorder)','1157063004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1157067003','1157067003','http://snomed.info/sct','Malignant neoplasm of vertebra (disorder)','1157067003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1162264008','1162264008','http://snomed.info/sct','Malignant lymphoma of uveal tract (disorder)','1162264008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1163357003','1163357003','http://snomed.info/sct','Malignant neoplasm of oral cavity and lip and salivary gland (disorder)','1163357003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1163568002','1163568002','http://snomed.info/sct','Primary malignant neoplasm of overlapping sites of colon (disorder)','1163568002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_116381000119105','116381000119105','http://snomed.info/sct','Ganglioneuroblastoma (disorder)','116381000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_116691000119101','116691000119101','http://snomed.info/sct','Marginal zone lymphoma of spleen (disorder)','116691000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_116711000119103','116711000119103','http://snomed.info/sct','Marginal zone lymphoma of inguinal lymph node (disorder)','116711000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_116741000119104','116741000119104','http://snomed.info/sct','Marginal zone lymphoma of thoracic lymph node (disorder)','116741000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_116811000119106','116811000119106','http://snomed.info/sct','Non-Hodgkin lymphoma of central nervous system metastatic to lymph node of lower limb (disorder)','116811000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_116821000119104','116821000119104','http://snomed.info/sct','Non-Hodgkin lymphoma of central nervous system metastatic to lymph node of upper limb (disorder)','116821000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_116841000119105','116841000119105','http://snomed.info/sct','Marginal zone lymphoma of lymph nodes of multiple sites (disorder)','116841000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_116871000119103','116871000119103','http://snomed.info/sct','Mantle cell lymphoma of lymph nodes of multiple sites (disorder)','116871000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_117061000119101','117061000119101','http://snomed.info/sct','Peripheral T-cell lymphoma of spleen (disorder)','117061000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_117091000119108','117091000119108','http://snomed.info/sct','Peripheral T-cell lymphoma of axillary lymph node (disorder)','117091000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_117111000119100','117111000119100','http://snomed.info/sct','Peripheral T-cell lymphoma of thoracic lymph node (disorder)','117111000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_11717361000119108','11717361000119108','http://snomed.info/sct','Metastatic malignant neoplasm to soft tissue of back (disorder)','11717361000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_117211000119105','117211000119105','http://snomed.info/sct','Peripheral T-cell lymphoma of lymph nodes of multiple sites (disorder)','117211000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1172793008','1172793008','http://snomed.info/sct','Malignant peripheral nerve sheath tumor of gingival mucosa (disorder)','1172793008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1179762006','1179762006','http://snomed.info/sct','Malignant neoplasm of middle lobe of right lung (disorder)','1179762006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_118599009','118599009','http://snomed.info/sct','Hodgkin''s disease (disorder)','118599009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_118600007','118600007','http://snomed.info/sct','Malignant lymphoma (disorder)','118600007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_118601006','118601006','http://snomed.info/sct','Non-Hodgkin''s lymphoma (disorder)','118601006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_118602004','118602004','http://snomed.info/sct','Hodgkin''s granuloma (disorder)','118602004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_118605002','118605002','http://snomed.info/sct','Hodgkin lymphoma, nodular lymphocyte predominance (disorder)','118605002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_118606001','118606001','http://snomed.info/sct','Hodgkin''s sarcoma (disorder)','118606001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_118607005','118607005','http://snomed.info/sct','Hodgkin lymphoma, lymphocyte-rich (disorder)','118607005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_118608000','118608000','http://snomed.info/sct','Hodgkin''s disease, nodular sclerosis (disorder)','118608000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_118609008','118609008','http://snomed.info/sct','Hodgkin''s disease, mixed cellularity (disorder)','118609008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_118610003','118610003','http://snomed.info/sct','Hodgkin''s disease, lymphocytic depletion (disorder)','118610003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_118611004','118611004','http://snomed.info/sct','Sezary''s disease (disorder)','118611004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_118612006','118612006','http://snomed.info/sct','Malignant histiocytosis (disorder)','118612006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_118613001','118613001','http://snomed.info/sct','Hairy cell leukemia (disorder)','118613001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_118614007','118614007','http://snomed.info/sct','Langerhans cell histiocytosis, disseminated (disorder)','118614007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_118615008','118615008','http://snomed.info/sct','Malignant mast cell tumor (disorder)','118615008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_118617000','118617000','http://snomed.info/sct','Burkitt''s lymphoma (disorder)','118617000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_118618005','118618005','http://snomed.info/sct','Mycosis fungoides (disorder)','118618005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1187519007','1187519007','http://snomed.info/sct','Malignant gastrinoma of pancreas (disorder)','1187519007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1187521002','1187521002','http://snomed.info/sct','Malignant glucagonoma of pancreas (disorder)','1187521002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1196844004','1196844004','http://snomed.info/sct','Primary malignant astrocytoma of brain (disorder)','1196844004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1196856003','1196856003','http://snomed.info/sct','Primary biphasic malignant mesothelioma of pleura (disorder)','1196856003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1196883002','1196883002','http://snomed.info/sct','Primary epithelioid malignant mesothelioma of pleura (disorder)','1196883002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1196898000','1196898000','http://snomed.info/sct','Primary malignant atypical teratoid rhabdoid neoplasm of brain (disorder)','1196898000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1196998001','1196998001','http://snomed.info/sct','Malignant perivascular epithelioid cell neoplasm (disorder)','1196998001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1197011004','1197011004','http://snomed.info/sct','Malignant neoplasm of intestine due to familial adenomatous polyposis (disorder)','1197011004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1197259008','1197259008','http://snomed.info/sct','Primary sarcomatoid malignant mesothelioma of pleura (disorder)','1197259008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1197294001','1197294001','http://snomed.info/sct','Malignant melanoma arising in melanocytic nevus (disorder)','1197294001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1197296004','1197296004','http://snomed.info/sct','Primary malignant germ cell neoplasm of pleura (disorder)','1197296004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1197298003','1197298003','http://snomed.info/sct','Primary malignant germ cell neoplasm of pineal gland (disorder)','1197298003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1197332003','1197332003','http://snomed.info/sct','Primary malignant melanoma of central nervous system (disorder)','1197332003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1197334002','1197334002','http://snomed.info/sct','Malignant melanoma of uveal tract (disorder)','1197334002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1197349005','1197349005','http://snomed.info/sct','Primary malignant paraganglioma of carotid body (disorder)','1197349005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1197354001','1197354001','http://snomed.info/sct','Primary malignant mesenchymal neoplasm of colon (disorder)','1197354001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1197355000','1197355000','http://snomed.info/sct','Primary malignant mesenchymal neoplasm of rectum (disorder)','1197355000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1217010007','1217010007','http://snomed.info/sct','Human epidermal growth factor 2 expressing colon and/or rectum malignant neoplasm (disorder)','1217010007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_12235561000119105','12235561000119105','http://snomed.info/sct','Large cell carcinoma of left lung (disorder)','12235561000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_12235601000119105','12235601000119105','http://snomed.info/sct','Large cell carcinoma of right lung (disorder)','12235601000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_12240951000119107','12240951000119107','http://snomed.info/sct','Squamous cell carcinoma of left lung (disorder)','12240951000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_12240991000119102','12240991000119102','http://snomed.info/sct','Squamous cell carcinoma of right lung (disorder)','12240991000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_12241031000119108','12241031000119108','http://snomed.info/sct','Metastatic malignant neoplasm to left breast (disorder)','12241031000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_12241071000119106','12241071000119106','http://snomed.info/sct','Metastatic malignant neoplasm to right breast (disorder)','12241071000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_12246481000119106','12246481000119106','http://snomed.info/sct','Metastatic malignant neoplasm to bilateral kidneys (disorder)','12246481000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_12246561000119101','12246561000119101','http://snomed.info/sct','Metastatic malignant neoplasm to bilateral adrenal glands (disorder)','12246561000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_12246601000119101','12246601000119101','http://snomed.info/sct','Secondary malignant neoplasm of bilateral lungs (disorder)','12246601000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_12246641000119104','12246641000119104','http://snomed.info/sct','Metastatic malignant neoplasm to bilateral breasts (disorder)','12246641000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_122491000119108','122491000119108','http://snomed.info/sct','Lymphoproliferative disorder after transplantation of bone marrow (disorder)','122491000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_122501000119101','122501000119101','http://snomed.info/sct','Lymphoproliferative disorder following lung transplant (disorder)','122501000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_122511000119103','122511000119103','http://snomed.info/sct','Lymphoproliferative disorder following heart transplantation (disorder)','122511000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_122521000119105','122521000119105','http://snomed.info/sct','Lymphoproliferative disorder following liver transplant (disorder)','122521000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_122531000119108','122531000119108','http://snomed.info/sct','Lymphoproliferative disorder following kidney transplant (disorder)','122531000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_12281000132104','12281000132104','http://snomed.info/sct','Relapsing acute myeloid leukemia (disorder)','12281000132104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_122881000119107','122881000119107','http://snomed.info/sct','Chronic monocytic leukemia in relapse (disorder)','122881000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_122901000119109','122901000119109','http://snomed.info/sct','Myeloid leukemia in relapse (disorder)','122901000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_12291000132102','12291000132102','http://snomed.info/sct','Refractory acute myeloid leukemia (disorder)','12291000132102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_122951000119108','122951000119108','http://snomed.info/sct','Lymphoid leukemia in relapse (disorder)','122951000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_122961000119105','122961000119105','http://snomed.info/sct','Chronic lymphoid leukemia in relapse (disorder)','122961000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_122981000119101','122981000119101','http://snomed.info/sct','Plasma cell leukemia in relapse (disorder)','122981000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_12301000132103','12301000132103','http://snomed.info/sct','Acute lymphoid leukemia relapse (disorder)','12301000132103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_12311000132101','12311000132101','http://snomed.info/sct','Refractory acute lymphoid leukemia (disorder)','12311000132101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1231267007','1231267007','http://snomed.info/sct','Primary malignant ependymoma of optic nerve (disorder)','1231267007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_123313007','123313007','http://snomed.info/sct','Alpha heavy chain disease, enteric form (disorder)','123313007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_123631000119103','123631000119103','http://snomed.info/sct','Malignant poorly differentiated neuroendocrine carcinoma (disorder)','123631000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_123661000119106','123661000119106','http://snomed.info/sct','Malignant carcinoid tumor of lung (disorder)','123661000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_123701000119104','123701000119104','http://snomed.info/sct','Malignant carcinoid tumor of descending colon (disorder)','123701000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_123721000119108','123721000119108','http://snomed.info/sct','Malignant carcinoid tumor of ascending colon (disorder)','123721000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_123731000119106','123731000119106','http://snomed.info/sct','Malignant carcinoid tumor of cecum (disorder)','123731000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_123741000119102','123741000119102','http://snomed.info/sct','Malignant carcinoid tumor of large intestine (disorder)','123741000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_123751000119100','123751000119100','http://snomed.info/sct','Malignant carcinoid tumor of jejunum (disorder)','123751000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_123761000119103','123761000119103','http://snomed.info/sct','Malignant carcinoid tumor of duodenum (disorder)','123761000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_123781000119107','123781000119107','http://snomed.info/sct','Chronic leukemia in relapse (disorder)','123781000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_123842006','123842006','http://snomed.info/sct','Endocervical adenocarcinoma (disorder)','123842006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_123845008','123845008','http://snomed.info/sct','Adenocarcinoma of endometrium (disorder)','123845008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_126361000119107','126361000119107','http://snomed.info/sct','Cytological evidence of malignancy on anal Papanicolaou smear (finding)','126361000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_126371000119101','126371000119101','http://snomed.info/sct','Cytological evidence of malignancy on vaginal Papanicolaou smear (finding)','126371000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_127070008','127070008','http://snomed.info/sct','Malignant histiocytic disorder (disorder)','127070008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_127071007','127071007','http://snomed.info/sct','Immunoproliferative disorder (disorder)','127071007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_127220001','127220001','http://snomed.info/sct','Malignant lymphoma of lymph nodes (disorder)','127220001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_127225006','127225006','http://snomed.info/sct','Chronic myelomonocytic leukemia (disorder)','127225006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_127330008','127330008','http://snomed.info/sct','Melanoma in situ by body site (disorder)','127330008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_127961000119108','127961000119108','http://snomed.info/sct','Aleukemic myeloid leukemia in relapse (disorder)','127961000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_128041000119107','128041000119107','http://snomed.info/sct','Primary adenocarcinoma of distal third of esophagus (disorder)','128041000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_128462008','128462008','http://snomed.info/sct','Metastatic malignant neoplasm (disorder)','128462008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_128465005','128465005','http://snomed.info/sct','Metastatic malignant neoplasm to articular cartilage (disorder)','128465005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_128466006','128466006','http://snomed.info/sct','Primary malignant neoplasm of articular cartilage (disorder)','128466006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_128875000','128875000','http://snomed.info/sct','Primary cutaneous CD30 antigen positive large T-cell lymphoma (disorder)','128875000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_129000002','129000002','http://snomed.info/sct','Eosinophilic granuloma (disorder)','129000002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_130351000119105','130351000119105','http://snomed.info/sct','Primary malignant neuroendocrine neoplasm of large intestine (disorder)','130351000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_130371000119101','130371000119101','http://snomed.info/sct','Primary malignant neuroendocrine neoplasm of cecum (disorder)','130371000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_130381000119103','130381000119103','http://snomed.info/sct','Primary malignant neuroendocrine neoplasm of ascending colon (disorder)','130381000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_13048006','13048006','http://snomed.info/sct','Orbital lymphoma (disorder)','13048006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_130891000119106','130891000119106','http://snomed.info/sct','Chordoma of coccyx (disorder)','130891000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_130911000119108','130911000119108','http://snomed.info/sct','Chordoma of pelvis (disorder)','130911000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_13351431000119102','13351431000119102','http://snomed.info/sct','Metastatic malignant neoplasm to lymph nodes of neck from primary malignant neoplasm of thyroid (disorder)','13351431000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_133531000119104','133531000119104','http://snomed.info/sct','Malignant neuroendocrine tumor (disorder)','133531000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_133751000119102','133751000119102','http://snomed.info/sct','Lymphoma of colon (disorder)','133751000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_133841000119105','133841000119105','http://snomed.info/sct','Merkel cell carcinoma of face (disorder)','133841000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_133851000119107','133851000119107','http://snomed.info/sct','Merkel cell carcinoma of neck (disorder)','133851000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_133861000119109','133861000119109','http://snomed.info/sct','Merkel cell carcinoma of scalp (disorder)','133861000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_133871000119103','133871000119103','http://snomed.info/sct','Merkel cell carcinoma of upper limb (disorder)','133871000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_133881000119100','133881000119100','http://snomed.info/sct','Merkel cell carcinoma of lower limb (disorder)','133881000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_133891000119102','133891000119102','http://snomed.info/sct','Merkel cell carcinoma of trunk (disorder)','133891000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_134209002','134209002','http://snomed.info/sct','Prolactinoma (disorder)','134209002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_134312002','134312002','http://snomed.info/sct','Odontogenic ghost cell carcinoma (disorder)','134312002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_134871000119100','134871000119100','http://snomed.info/sct','Poorly differentiated malignant carcinoid tumor (disorder)','134871000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_135091000119106','135091000119106','http://snomed.info/sct','Secondary neuroendocrine carcinoma of peritoneum (disorder)','135091000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_135931000119106','135931000119106','http://snomed.info/sct','Merkel cell carcinoma of buttock (disorder)','135931000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_143401000119106','143401000119106','http://snomed.info/sct','Malignant carcinoid tumor of pancreas (disorder)','143401000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_143411000119109','143411000119109','http://snomed.info/sct','Liposarcoma of retroperitoneum (disorder)','143411000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_145501000119108','145501000119108','http://snomed.info/sct','Metastatic malignant neoplasm to breast (disorder)','145501000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_145831000119103','145831000119103','http://snomed.info/sct','Primary malignant germ cell neoplasm (disorder)','145831000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_147101000119108','147101000119108','http://snomed.info/sct','Primary malignant astrocytoma of central nervous system (disorder)','147101000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_147121000119104','147121000119104','http://snomed.info/sct','Ependymoma of central nervous system (disorder)','147121000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_147131000119101','147131000119101','http://snomed.info/sct','Glioblastoma multiforme of central nervous system (disorder)','147131000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_148911000119107','148911000119107','http://snomed.info/sct','Primary malignant neoplasm of abdomen (disorder)','148911000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_15635721000119108','15635721000119108','http://snomed.info/sct','Primary malignant neoplasm of both ovaries (disorder)','15635721000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_15635761000119103','15635761000119103','http://snomed.info/sct','Infiltrating duct carcinoma of bilateral female breasts (disorder)','15635761000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_15635801000119106','15635801000119106','http://snomed.info/sct','Primary malignant neoplasm of bilateral female breasts (disorder)','15635801000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_15636951000119108','15636951000119108','http://snomed.info/sct','Ductal carcinoma in situ of bilateral breasts (disorder)','15636951000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_15636991000119103','15636991000119103','http://snomed.info/sct','Renal cell carcinoma of bilateral kidneys (disorder)','15636991000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_15930821000119105','15930821000119105','http://snomed.info/sct','Metastatic malignant neoplasm to bilateral ovaries (disorder)','15930821000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_15930861000119100','15930861000119100','http://snomed.info/sct','Carcinosarcoma of left ovary (disorder)','15930861000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_15930901000119106','15930901000119106','http://snomed.info/sct','Carcinosarcoma of right ovary (disorder)','15930901000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_15930941000119108','15930941000119108','http://snomed.info/sct','Carcinosarcoma of bilateral ovaries (disorder)','15930941000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_15952981000119103','15952981000119103','http://snomed.info/sct','Lobular carcinoma in situ of bilateral breasts (disorder)','15952981000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_15955101000119101','15955101000119101','http://snomed.info/sct','Primary malignant neoplasm of right greater vestibular gland (disorder)','15955101000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_15955141000119104','15955141000119104','http://snomed.info/sct','Primary malignant neoplasm of left greater vestibular gland (disorder)','15955141000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_15956181000119102','15956181000119102','http://snomed.info/sct','Metastatic adenocarcinoma to bilateral lungs (disorder)','15956181000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_15956341000119105','15956341000119105','http://snomed.info/sct','Adenocarcinoma of left lung (disorder)','15956341000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_15956381000119100','15956381000119100','http://snomed.info/sct','Adenocarcinoma of right lung (disorder)','15956381000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_15959061000119101','15959061000119101','http://snomed.info/sct','Transitional cell carcinoma of left kidney (disorder)','15959061000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_15959101000119103','15959101000119103','http://snomed.info/sct','Transitional cell carcinoma of right kidney (disorder)','15959101000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_15977551000119100','15977551000119100','http://snomed.info/sct','Metastatic malignant neoplasm to bilateral eyes (disorder)','15977551000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_15977591000119105','15977591000119105','http://snomed.info/sct','Metastatic malignant neoplasm to right eye (disorder)','15977591000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_15977631000119105','15977631000119105','http://snomed.info/sct','Metastatic malignant neoplasm to left eye (disorder)','15977631000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_16091171000119106','16091171000119106','http://snomed.info/sct','Angiosarcoma of skin of cheek (disorder)','16091171000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_16228971000119104','16228971000119104','http://snomed.info/sct','Primary malignant neoplasm of soft tissue of left hip (disorder)','16228971000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_16229011000119100','16229011000119100','http://snomed.info/sct','Primary malignant neoplasm of soft tissue of right hip (disorder)','16229011000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_16260391000119109','16260391000119109','http://snomed.info/sct','Primary malignant neoplasm of soft tissues of left shoulder (disorder)','16260391000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_16260431000119104','16260431000119104','http://snomed.info/sct','Primary malignant neoplasm of soft tissues of right shoulder (disorder)','16260431000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_16260631000119101','16260631000119101','http://snomed.info/sct','Metastatic malignant neoplasm to lymph node from primary malignant neoplasm of female breast (disorder)','16260631000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_16414611000119100','16414611000119100','http://snomed.info/sct','Primary malignant neoplasm of peripheral nerves of left upper limb (disorder)','16414611000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1651000119109','1651000119109','http://snomed.info/sct','Primary adenocarcinoma of pancreas (disorder)','1651000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1661000119106','1661000119106','http://snomed.info/sct','Metastasis to lung from adenocarcinoma (disorder)','1661000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_16636051000119105','16636051000119105','http://snomed.info/sct','Primary malignant gastrointestinal stromal neoplasm of colon (disorder)','16636051000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_16636101000119105','16636101000119105','http://snomed.info/sct','Primary malignant gastrointestinal stromal neoplasm of rectum (disorder)','16636101000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1671000119100','1671000119100','http://snomed.info/sct','Metastatic squamous cell carcinoma to lymph node (disorder)','1671000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1681000119102','1681000119102','http://snomed.info/sct','Metastatic adenocarcinoma to lymph node (disorder)','1681000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1691000119104','1691000119104','http://snomed.info/sct','Metastasis to liver from adenocarcinoma (disorder)','1691000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_1701000119104','1701000119104','http://snomed.info/sct','Primary adenocarcinoma of colon (disorder)','1701000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_18121000119104','18121000119104','http://snomed.info/sct','Primary squamous cell carcinoma of palatine tonsil (disorder)','18121000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_184741000119107','184741000119107','http://snomed.info/sct','Primary adenocarcinoma of anus (disorder)','184741000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_184781000119102','184781000119102','http://snomed.info/sct','Primary adenocarcinoma of cervix uteri (disorder)','184781000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_184801000119103','184801000119103','http://snomed.info/sct','Primary adenocarcinoma of lacrimal gland (disorder)','184801000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_184861000119102','184861000119102','http://snomed.info/sct','Primary adenocarcinoma of nasopharynx (disorder)','184861000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_184871000119108','184871000119108','http://snomed.info/sct','Primary adenocarcinoma of pelvis (disorder)','184871000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_184881000119106','184881000119106','http://snomed.info/sct','Primary adenocarcinoma of rectosigmoid junction (disorder)','184881000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_184891000119109','184891000119109','http://snomed.info/sct','Primary adenocarcinoma of small intestine (disorder)','184891000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187601000','187601000','http://snomed.info/sct','Malignant neoplasm of upper lip, lipstick area (disorder)','187601000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187604008','187604008','http://snomed.info/sct','Malignant neoplasm of lower lip, external (disorder)','187604008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187606005','187606005','http://snomed.info/sct','Malignant tumor of upper labial mucosa (disorder)','187606005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187608006','187608006','http://snomed.info/sct','Malignant tumor of frenum of upper lip (disorder)','187608006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187613005','187613005','http://snomed.info/sct','Malignant neoplasm of lower lip, buccal aspect (disorder)','187613005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187614004','187614004','http://snomed.info/sct','Malignant tumor of frenum of lower lip (disorder)','187614004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187622006','187622006','http://snomed.info/sct','Malignant tumor of labial mucosa (disorder)','187622006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187631006','187631006','http://snomed.info/sct','Malignant neoplasm of base of tongue dorsal surface (disorder)','187631006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187633009','187633009','http://snomed.info/sct','Malignant neoplasm of dorsal surface of tongue (disorder)','187633009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187634003','187634003','http://snomed.info/sct','Malignant tumor of anterior two-thirds of tongue - dorsal surface (disorder)','187634003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187635002','187635002','http://snomed.info/sct','Malignant neoplasm of midline of tongue (disorder)','187635002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187637005','187637005','http://snomed.info/sct','Malignant neoplasm of tongue, tip and lateral border (disorder)','187637005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187640005','187640005','http://snomed.info/sct','Malignant tumor of anterior two-thirds of tongue - ventral surface (disorder)','187640005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187641009','187641009','http://snomed.info/sct','Malignant tumor of frenum linguae (disorder)','187641009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187644001','187644001','http://snomed.info/sct','Malignant tumor of junctional zone of tongue (disorder)','187644001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187652003','187652003','http://snomed.info/sct','Malignant tumor of anterior floor of mouth (disorder)','187652003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187653008','187653008','http://snomed.info/sct','Malignant tumor of lateral floor of mouth (disorder)','187653008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187658004','187658004','http://snomed.info/sct','Malignant tumor of vestibule of mouth (disorder)','187658004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187659007','187659007','http://snomed.info/sct','Malignant tumor of upper buccal sulcus (disorder)','187659007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187660002','187660002','http://snomed.info/sct','Malignant tumor of lower buccal sulcus (disorder)','187660002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187661003','187661003','http://snomed.info/sct','Malignant tumor of upper labial sulcus (disorder)','187661003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187662005','187662005','http://snomed.info/sct','Malignant tumor of lower labial sulcus (disorder)','187662005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187666008','187666008','http://snomed.info/sct','Malignant neoplasm of junction of hard and soft palate (disorder)','187666008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187675005','187675005','http://snomed.info/sct','Malignant tumor of tonsillar pillar (disorder)','187675005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187681002','187681002','http://snomed.info/sct','Malignant neoplasm of anterior epiglottis (disorder)','187681002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187682009','187682009','http://snomed.info/sct','Malignant neoplasm of epiglottis, free border (disorder)','187682009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187683004','187683004','http://snomed.info/sct','Malignant neoplasm of glossoepiglottic fold (disorder)','187683004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187685006','187685006','http://snomed.info/sct','Malignant neoplasm of junctional region of epiglottis (disorder)','187685006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187688008','187688008','http://snomed.info/sct','Malignant tumor of posterior wall of oropharynx (disorder)','187688008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187692001','187692001','http://snomed.info/sct','Malignant tumor of nasopharynx (disorder)','187692001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187693006','187693006','http://snomed.info/sct','Malignant tumor of posterior wall of nasopharynx (disorder)','187693006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187694000','187694000','http://snomed.info/sct','Malignant tumor of adenoid (disorder)','187694000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187697007','187697007','http://snomed.info/sct','Malignant tumor of pharyngeal recess (disorder)','187697007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187698002','187698002','http://snomed.info/sct','Malignant tumor of opening of auditory tube (disorder)','187698002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187700006','187700006','http://snomed.info/sct','Malignant tumor of anterior wall of nasopharynx (disorder)','187700006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187701005','187701005','http://snomed.info/sct','Malignant neoplasm of floor of nasopharynx (disorder)','187701005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187708004','187708004','http://snomed.info/sct','Malignant tumor aryepiglottic fold - hypopharyngeal aspect (disorder)','187708004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187709007','187709007','http://snomed.info/sct','Malignant neoplasm of posterior pharynx (disorder)','187709007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187716008','187716008','http://snomed.info/sct','Malignant tumor of Waldeyer''s ring (disorder)','187716008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187722004','187722004','http://snomed.info/sct','Malignant tumor of cervical part of esophagus (disorder)','187722004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187723009','187723009','http://snomed.info/sct','Malignant tumor of thoracic part of esophagus (disorder)','187723009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187724003','187724003','http://snomed.info/sct','Malignant tumor of abdominal part of esophagus (disorder)','187724003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187725002','187725002','http://snomed.info/sct','Malignant tumor of upper third of esophagus (disorder)','187725002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187726001','187726001','http://snomed.info/sct','Malignant tumor of middle third of esophagus (disorder)','187726001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187727005','187727005','http://snomed.info/sct','Malignant tumor of lower third of esophagus (disorder)','187727005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187732006','187732006','http://snomed.info/sct','Malignant tumor of cardia (disorder)','187732006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187733001','187733001','http://snomed.info/sct','Malignant neoplasm of cardiac orifice of stomach (disorder)','187733001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187734007','187734007','http://snomed.info/sct','Malignant neoplasm of cardioesophageal junction of stomach (disorder)','187734007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187736009','187736009','http://snomed.info/sct','Malignant tumor of pylorus (disorder)','187736009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187738005','187738005','http://snomed.info/sct','Malignant neoplasm of pyloric canal of stomach (disorder)','187738005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187740000','187740000','http://snomed.info/sct','Malignant tumor of pyloric antrum (disorder)','187740000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187741001','187741001','http://snomed.info/sct','Malignant tumor of fundus of stomach (disorder)','187741001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187742008','187742008','http://snomed.info/sct','Malignant tumor of body of stomach (disorder)','187742008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187752007','187752007','http://snomed.info/sct','Malignant tumor of Meckel''s diverticulum (disorder)','187752007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187757001','187757001','http://snomed.info/sct','Malignant neoplasm, overlapping lesion of colon (disorder)','187757001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187760008','187760008','http://snomed.info/sct','Malignant neoplasm of rectum, rectosigmoid junction and anus (disorder)','187760008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187767006','187767006','http://snomed.info/sct','Malignant neoplasm of liver and intrahepatic bile ducts (disorder)','187767006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187769009','187769009','http://snomed.info/sct','Primary carcinoma of liver (disorder)','187769009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187773007','187773007','http://snomed.info/sct','Malignant neoplasm of interlobular bile ducts (disorder)','187773007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187776004','187776004','http://snomed.info/sct','Malignant neoplasm of intrahepatic canaliculi (disorder)','187776004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187777008','187777008','http://snomed.info/sct','Malignant neoplasm of intrahepatic gall duct (disorder)','187777008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187784000','187784000','http://snomed.info/sct','Malignant neoplasm of hepatic duct (disorder)','187784000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187786003','187786003','http://snomed.info/sct','Malignant neoplasm of sphincter of Oddi (disorder)','187786003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187791002','187791002','http://snomed.info/sct','Malignant tumor of body of pancreas (disorder)','187791002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187792009','187792009','http://snomed.info/sct','Malignant tumor of tail of pancreas (disorder)','187792009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187793004','187793004','http://snomed.info/sct','Malignant tumor of pancreatic duct (disorder)','187793004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187794005','187794005','http://snomed.info/sct','Malignant tumor of Islets of Langerhans (disorder)','187794005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187798008','187798008','http://snomed.info/sct','Malignant neoplasm of ectopic pancreatic tissue (disorder)','187798008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187801002','187801002','http://snomed.info/sct','Malignant tumor of peritoneum and retroperitoneum (disorder)','187801002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187803004','187803004','http://snomed.info/sct','Malignant neoplasm of perinephric tissue (disorder)','187803004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187804005','187804005','http://snomed.info/sct','Malignant neoplasm of retrocecal tissue (disorder)','187804005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187809000','187809000','http://snomed.info/sct','Malignant neoplasm of mesocolon (disorder)','187809000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187810005','187810005','http://snomed.info/sct','Malignant neoplasm of mesocecum (disorder)','187810005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187811009','187811009','http://snomed.info/sct','Malignant neoplasm of mesorectum (disorder)','187811009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187814001','187814001','http://snomed.info/sct','Malignant neoplasm of the pouch of Douglas (disorder)','187814001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187821001','187821001','http://snomed.info/sct','Angiosarcoma of spleen (disorder)','187821001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187822008','187822008','http://snomed.info/sct','Fibrosarcoma of spleen (disorder)','187822008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187824009','187824009','http://snomed.info/sct','Malignant neoplasm of overlapping sites of digestive system (disorder)','187824009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187828007','187828007','http://snomed.info/sct','Malignant neoplasm of nasal cavities, middle ear and accessory sinuses (disorder)','187828007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187829004','187829004','http://snomed.info/sct','Malignant neoplasm of cartilage of nose (disorder)','187829004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187830009','187830009','http://snomed.info/sct','Malignant neoplasm of nasal conchae (disorder)','187830009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187831008','187831008','http://snomed.info/sct','Malignant tumor of nasal vestibule (disorder)','187831008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187833006','187833006','http://snomed.info/sct','Malignant neoplasm of auditory tube, middle ear and mastoid air cells (disorder)','187833006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187834000','187834000','http://snomed.info/sct','Malignant tumor of Eustachian tube (disorder)','187834000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187835004','187835004','http://snomed.info/sct','Malignant tumor of tympanic cavity (disorder)','187835004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187836003','187836003','http://snomed.info/sct','Malignant tumor of tympanic antrum (disorder)','187836003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187841006','187841006','http://snomed.info/sct','Malignant tumor of glottis (disorder)','187841006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187842004','187842004','http://snomed.info/sct','Malignant tumor of supraglottis (disorder)','187842004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187843009','187843009','http://snomed.info/sct','Malignant neoplasm of arytenoid cartilage (disorder)','187843009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187844003','187844003','http://snomed.info/sct','Malignant neoplasm of cricoid cartilage (disorder)','187844003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187845002','187845002','http://snomed.info/sct','Malignant neoplasm of cuneiform cartilage (disorder)','187845002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187846001','187846001','http://snomed.info/sct','Malignant neoplasm of thyroid cartilage (disorder)','187846001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187853005','187853005','http://snomed.info/sct','Malignant neoplasm of cartilage of trachea (disorder)','187853005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187854004','187854004','http://snomed.info/sct','Malignant neoplasm of mucosa of trachea (disorder)','187854004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187857006','187857006','http://snomed.info/sct','Malignant neoplasm of carina of bronchus (disorder)','187857006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187861000','187861000','http://snomed.info/sct','Malignant neoplasm of upper lobe bronchus (disorder)','187861000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187862007','187862007','http://snomed.info/sct','Malignant neoplasm of upper lobe of lung (disorder)','187862007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187865009','187865009','http://snomed.info/sct','Malignant neoplasm of middle lobe bronchus (disorder)','187865009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187866005','187866005','http://snomed.info/sct','Malignant neoplasm of middle lobe of lung (disorder)','187866005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187869003','187869003','http://snomed.info/sct','Malignant neoplasm of lower lobe bronchus (disorder)','187869003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187870002','187870002','http://snomed.info/sct','Malignant neoplasm of lower lobe of lung (disorder)','187870002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187900002','187900002','http://snomed.info/sct','Malignant neoplasm of bones of skull and face (disorder)','187900002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187903000','187903000','http://snomed.info/sct','Malignant neoplasm of malar bone (disorder)','187903000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187906008','187906008','http://snomed.info/sct','Malignant neoplasm of orbital bone (disorder)','187906008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187916000','187916000','http://snomed.info/sct','Malignant neoplasm of cervical vertebra (disorder)','187916000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187917009','187917009','http://snomed.info/sct','Malignant neoplasm of thoracic vertebra (disorder)','187917009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187918004','187918004','http://snomed.info/sct','Malignant neoplasm of lumbar vertebra (disorder)','187918004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187920001','187920001','http://snomed.info/sct','Malignant neoplasm of ribs and/or sternum and/or clavicle (disorder)','187920001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187925006','187925006','http://snomed.info/sct','Malignant neoplasm of costal cartilage (disorder)','187925006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187926007','187926007','http://snomed.info/sct','Malignant neoplasm of costovertebral joint (disorder)','187926007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187927003','187927003','http://snomed.info/sct','Malignant neoplasm of xiphoid process (disorder)','187927003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187929000','187929000','http://snomed.info/sct','Malignant neoplasm of scapula and long bones of upper arm (disorder)','187929000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187932002','187932002','http://snomed.info/sct','Malignant neoplasm of humerus (disorder)','187932002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187937008','187937008','http://snomed.info/sct','Malignant neoplasm of carpal bone - scaphoid (disorder)','187937008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187938003','187938003','http://snomed.info/sct','Malignant neoplasm of carpal bone - lunate (disorder)','187938003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187939006','187939006','http://snomed.info/sct','Malignant neoplasm of carpal bone - triquetrum (disorder)','187939006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187940008','187940008','http://snomed.info/sct','Malignant neoplasm of carpal bone - pisiform (disorder)','187940008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187941007','187941007','http://snomed.info/sct','Malignant neoplasm of carpal bone - trapezium (disorder)','187941007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187942000','187942000','http://snomed.info/sct','Malignant neoplasm of carpal bone - trapezoid (disorder)','187942000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187943005','187943005','http://snomed.info/sct','Malignant neoplasm of carpal bone - capitate (disorder)','187943005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187944004','187944004','http://snomed.info/sct','Malignant neoplasm of carpal bone - hamate (disorder)','187944004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187945003','187945003','http://snomed.info/sct','Malignant neoplasm of first metacarpal bone (disorder)','187945003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187946002','187946002','http://snomed.info/sct','Malignant neoplasm of second metacarpal bone (disorder)','187946002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187947006','187947006','http://snomed.info/sct','Malignant neoplasm of third metacarpal bone (disorder)','187947006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187948001','187948001','http://snomed.info/sct','Malignant neoplasm of fourth metacarpal bone (disorder)','187948001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187949009','187949009','http://snomed.info/sct','Malignant neoplasm of fifth metacarpal bone (disorder)','187949009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187950009','187950009','http://snomed.info/sct','Malignant neoplasm of phalanges of hand (disorder)','187950009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187952001','187952001','http://snomed.info/sct','Malignant neoplasm of pelvic bones, sacrum and coccyx (disorder)','187952001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187956003','187956003','http://snomed.info/sct','Malignant neoplasm of sacral vertebra (disorder)','187956003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187957007','187957007','http://snomed.info/sct','Malignant neoplasm of coccygeal vertebra (disorder)','187957007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187967002','187967002','http://snomed.info/sct','Malignant neoplasm of calcaneum (disorder)','187967002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187968007','187968007','http://snomed.info/sct','Malignant neoplasm of medial cuneiform (disorder)','187968007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187969004','187969004','http://snomed.info/sct','Malignant neoplasm of intermediate cuneiform (disorder)','187969004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187970003','187970003','http://snomed.info/sct','Malignant neoplasm of lateral cuneiform (disorder)','187970003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187972006','187972006','http://snomed.info/sct','Malignant neoplasm of navicular (disorder)','187972006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187973001','187973001','http://snomed.info/sct','Malignant neoplasm of first metatarsal bone (disorder)','187973001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187974007','187974007','http://snomed.info/sct','Malignant neoplasm of second metatarsal bone (disorder)','187974007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187975008','187975008','http://snomed.info/sct','Malignant neoplasm of third metatarsal bone (disorder)','187975008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187976009','187976009','http://snomed.info/sct','Malignant neoplasm of fourth metatarsal bone (disorder)','187976009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187977000','187977000','http://snomed.info/sct','Malignant neoplasm of fifth metatarsal bone (disorder)','187977000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187978005','187978005','http://snomed.info/sct','Malignant neoplasm of phalanges of foot (disorder)','187978005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187987001','187987001','http://snomed.info/sct','Malignant neoplasm of cartilage of ear (disorder)','187987001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187988006','187988006','http://snomed.info/sct','Malignant neoplasm of tarsus of eyelid (disorder)','187988006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187989003','187989003','http://snomed.info/sct','Malignant neoplasm soft tissues of cervical spine (disorder)','187989003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187991006','187991006','http://snomed.info/sct','Malignant neoplasm of connective and soft tissue of upper limb and shoulder (disorder)','187991006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187992004','187992004','http://snomed.info/sct','Malignant neoplasm of connective and soft tissue of shoulder (disorder)','187992004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187993009','187993009','http://snomed.info/sct','Malignant neoplasm of connective and soft tissue, upper arm (disorder)','187993009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187994003','187994003','http://snomed.info/sct','Malignant neoplasm of connective and soft tissue of forearm (disorder)','187994003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187995002','187995002','http://snomed.info/sct','Malignant neoplasm of connective and soft tissue of hand (disorder)','187995002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187996001','187996001','http://snomed.info/sct','Malignant neoplasm of connective and soft tissue of finger (disorder)','187996001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187997005','187997005','http://snomed.info/sct','Malignant neoplasm of connective and soft tissue of thumb (disorder)','187997005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_187999008','187999008','http://snomed.info/sct','Malignant neoplasm of connective and soft tissue of hip and lower limb (disorder)','187999008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188000002','188000002','http://snomed.info/sct','Malignant neoplasm of connective and soft tissue of hip (disorder)','188000002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188001003','188001003','http://snomed.info/sct','Malignant neoplasm of connective and soft tissue of thigh and upper leg (disorder)','188001003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188002005','188002005','http://snomed.info/sct','Malignant neoplasm of connective and soft tissue of popliteal space (disorder)','188002005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188003000','188003000','http://snomed.info/sct','Malignant neoplasm of connective and soft tissue of lower leg (disorder)','188003000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188004006','188004006','http://snomed.info/sct','Malignant neoplasm of connective and soft tissue of foot (disorder)','188004006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188005007','188005007','http://snomed.info/sct','Malignant neoplasm of connective and soft tissue of toe (disorder)','188005007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188006008','188006008','http://snomed.info/sct','Malignant neoplasm of connective and soft tissue of great toe (disorder)','188006008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188009001','188009001','http://snomed.info/sct','Malignant neoplasm of connective and soft tissue of thorax (disorder)','188009001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188010006','188010006','http://snomed.info/sct','Malignant neoplasm of connective and soft tissue of axilla (disorder)','188010006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188013008','188013008','http://snomed.info/sct','Malignant neoplasm of connective and soft tissues of thoracic spine (disorder)','188013008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188015001','188015001','http://snomed.info/sct','Malignant neoplasm of connective and soft tissue of abdomen (disorder)','188015001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188016000','188016000','http://snomed.info/sct','Malignant neoplasm of connective and soft tissue of abdominal wall (disorder)','188016000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188017009','188017009','http://snomed.info/sct','Malignant neoplasm of connective and soft tissues of lumbar spine (disorder)','188017009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188019007','188019007','http://snomed.info/sct','Malignant neoplasm of connective and soft tissue of pelvis (disorder)','188019007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188020001','188020001','http://snomed.info/sct','Malignant neoplasm of connective and soft tissue of buttock (disorder)','188020001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188021002','188021002','http://snomed.info/sct','Malignant neoplasm of connective and soft tissue of inguinal region (disorder)','188021002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188022009','188022009','http://snomed.info/sct','Malignant neoplasm of connective and soft tissue of perineum (disorder)','188022009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188029000','188029000','http://snomed.info/sct','Kaposi''s sarcoma of soft tissue (disorder)','188029000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188030005','188030005','http://snomed.info/sct','Malignant melanoma of lip (disorder)','188030005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188032002','188032002','http://snomed.info/sct','Malignant melanoma of ear and/or external auditory canal (disorder)','188032002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188033007','188033007','http://snomed.info/sct','Malignant melanoma of auricle (ear) (disorder)','188033007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188034001','188034001','http://snomed.info/sct','Malignant melanoma of external auditory meatus (disorder)','188034001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188038003','188038003','http://snomed.info/sct','Malignant melanoma of chin (disorder)','188038003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188040008','188040008','http://snomed.info/sct','Malignant melanoma of forehead (disorder)','188040008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188042000','188042000','http://snomed.info/sct','Malignant melanoma of temple (disorder)','188042000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188044004','188044004','http://snomed.info/sct','Malignant melanoma of scalp and/or neck (disorder)','188044004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188045003','188045003','http://snomed.info/sct','Malignant melanoma of scalp (disorder)','188045003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188046002','188046002','http://snomed.info/sct','Malignant melanoma of neck (disorder)','188046002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188049009','188049009','http://snomed.info/sct','Malignant melanoma of axilla (disorder)','188049009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188050009','188050009','http://snomed.info/sct','Malignant melanoma of breast (disorder)','188050009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188051008','188051008','http://snomed.info/sct','Malignant melanoma of buttock (disorder)','188051008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188052001','188052001','http://snomed.info/sct','Malignant melanoma of groin (disorder)','188052001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188054000','188054000','http://snomed.info/sct','Malignant melanoma of perineum (disorder)','188054000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188055004','188055004','http://snomed.info/sct','Malignant melanoma of umbilicus (disorder)','188055004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188060000','188060000','http://snomed.info/sct','Malignant melanoma of shoulder (disorder)','188060000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188061001','188061001','http://snomed.info/sct','Malignant melanoma of upper arm (disorder)','188061001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188062008','188062008','http://snomed.info/sct','Malignant melanoma of forearm (disorder)','188062008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188063003','188063003','http://snomed.info/sct','Malignant melanoma of hand (disorder)','188063003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188064009','188064009','http://snomed.info/sct','Malignant melanoma of finger (disorder)','188064009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188065005','188065005','http://snomed.info/sct','Malignant melanoma of thumb (disorder)','188065005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188068007','188068007','http://snomed.info/sct','Malignant melanoma of hip (disorder)','188068007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188069004','188069004','http://snomed.info/sct','Malignant melanoma of thigh (disorder)','188069004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188070003','188070003','http://snomed.info/sct','Malignant melanoma of knee (disorder)','188070003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188071004','188071004','http://snomed.info/sct','Malignant melanoma of popliteal fossa area (disorder)','188071004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188072006','188072006','http://snomed.info/sct','Malignant melanoma of lower leg (disorder)','188072006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188073001','188073001','http://snomed.info/sct','Malignant melanoma of ankle (disorder)','188073001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188074007','188074007','http://snomed.info/sct','Malignant melanoma of heel (disorder)','188074007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188075008','188075008','http://snomed.info/sct','Malignant melanoma of foot (disorder)','188075008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188076009','188076009','http://snomed.info/sct','Malignant melanoma of toe (disorder)','188076009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188077000','188077000','http://snomed.info/sct','Malignant melanoma of great toe (disorder)','188077000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188089003','188089003','http://snomed.info/sct','Malignant neoplasm of skin of ear and external auditory canal (disorder)','188089003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188090007','188090007','http://snomed.info/sct','Malignant neoplasm of skin of auricle (ear) (disorder)','188090007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188091006','188091006','http://snomed.info/sct','Malignant neoplasm of skin of external auditory meatus (disorder)','188091006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188095002','188095002','http://snomed.info/sct','Malignant neoplasm of skin of cheek, external (disorder)','188095002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188099008','188099008','http://snomed.info/sct','Malignant neoplasm of skin of nose (external) (disorder)','188099008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188100000','188100000','http://snomed.info/sct','Malignant neoplasm of skin of temple (disorder)','188100000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188102008','188102008','http://snomed.info/sct','Malignant neoplasm of scalp and/or skin of neck (disorder)','188102008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188103003','188103003','http://snomed.info/sct','Malignant neoplasm of skin of scalp (disorder)','188103003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188107002','188107002','http://snomed.info/sct','Malignant neoplasm of skin of axillary fold (disorder)','188107002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188110009','188110009','http://snomed.info/sct','Malignant neoplasm of skin of abdominal wall (disorder)','188110009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188121000','188121000','http://snomed.info/sct','Malignant neoplasm of skin of upper arm (disorder)','188121000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188122007','188122007','http://snomed.info/sct','Malignant neoplasm of skin of forearm (disorder)','188122007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188125009','188125009','http://snomed.info/sct','Malignant neoplasm of skin of thumb (disorder)','188125009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188132000','188132000','http://snomed.info/sct','Malignant neoplasm of skin of popliteal fossa area (disorder)','188132000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188133005','188133005','http://snomed.info/sct','Malignant neoplasm of skin of lower leg (disorder)','188133005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188135003','188135003','http://snomed.info/sct','Malignant neoplasm of skin of heel (disorder)','188135003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188138001','188138001','http://snomed.info/sct','Malignant neoplasm of skin of great toe (disorder)','188138001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188147009','188147009','http://snomed.info/sct','Malignant neoplasm of nipple and areola of female breast (disorder)','188147009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188151006','188151006','http://snomed.info/sct','Malignant neoplasm of central part of female breast (disorder)','188151006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188152004','188152004','http://snomed.info/sct','Malignant neoplasm of upper-inner quadrant of female breast (disorder)','188152004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188153009','188153009','http://snomed.info/sct','Malignant neoplasm of lower-inner quadrant of female breast (disorder)','188153009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188154003','188154003','http://snomed.info/sct','Malignant neoplasm of upper-outer quadrant of female breast (disorder)','188154003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188155002','188155002','http://snomed.info/sct','Malignant neoplasm of lower-outer quadrant of female breast (disorder)','188155002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188156001','188156001','http://snomed.info/sct','Malignant neoplasm of axillary tail of female breast (disorder)','188156001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188157005','188157005','http://snomed.info/sct','Malignant neoplasm of overlapping sites of breast (disorder)','188157005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188159008','188159008','http://snomed.info/sct','Malignant neoplasm of ectopic site of female breast (disorder)','188159008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188163001','188163001','http://snomed.info/sct','Malignant neoplasm of nipple and areola of male breast (disorder)','188163001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188168005','188168005','http://snomed.info/sct','Malignant neoplasm of ectopic site of male breast (disorder)','188168005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188176007','188176007','http://snomed.info/sct','Malignant neoplasm of endocervical canal (disorder)','188176007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188177003','188177003','http://snomed.info/sct','Malignant neoplasm of endocervical gland (disorder)','188177003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188180002','188180002','http://snomed.info/sct','Primary malignant neoplasm of overlapping sites of cervix uteri (disorder)','188180002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188183000','188183000','http://snomed.info/sct','Malignant neoplasm of cervical stump (disorder)','188183000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188184006','188184006','http://snomed.info/sct','Malignant neoplasm of squamocolumnar junction of cervix (disorder)','188184006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188188009','188188009','http://snomed.info/sct','Choriocarcinoma (disorder)','188188009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188189001','188189001','http://snomed.info/sct','Malignant neoplasm of corpus uteri, excluding isthmus (disorder)','188189001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188190005','188190005','http://snomed.info/sct','Malignant neoplasm of cornu of corpus uteri (disorder)','188190005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188191009','188191009','http://snomed.info/sct','Malignant neoplasm of fundus of corpus uteri (disorder)','188191009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188192002','188192002','http://snomed.info/sct','Malignant neoplasm of endometrium of corpus uteri (disorder)','188192002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188193007','188193007','http://snomed.info/sct','Malignant neoplasm of myometrium of corpus uteri (disorder)','188193007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188195000','188195000','http://snomed.info/sct','Malignant neoplasm of isthmus of uterine body (disorder)','188195000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188204000','188204000','http://snomed.info/sct','Malignant neoplasm of round ligament (disorder)','188204000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188208002','188208002','http://snomed.info/sct','Malignant neoplasm of Gartner''s duct (disorder)','188208002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188209005','188209005','http://snomed.info/sct','Malignant neoplasm of vaginal vault (disorder)','188209005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188211001','188211001','http://snomed.info/sct','Malignant neoplasm of greater vestibular (Bartholin''s) gland (disorder)','188211001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188219004','188219004','http://snomed.info/sct','Malignant tumor of undescended testis (disorder)','188219004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188220005','188220005','http://snomed.info/sct','Malignant tumor of ectopic testis (disorder)','188220005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188230001','188230001','http://snomed.info/sct','Malignant tumor of body of penis (disorder)','188230001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188234005','188234005','http://snomed.info/sct','Malignant tumor of seminal vesicle (disorder)','188234005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188235006','188235006','http://snomed.info/sct','Malignant tumor of tunica vaginalis (disorder)','188235006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188239000','188239000','http://snomed.info/sct','Malignant tumor of trigone of urinary bladder (disorder)','188239000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188240003','188240003','http://snomed.info/sct','Malignant neoplasm of dome of urinary bladder (disorder)','188240003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188241004','188241004','http://snomed.info/sct','Malignant neoplasm of lateral wall of urinary bladder (disorder)','188241004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188242006','188242006','http://snomed.info/sct','Malignant neoplasm of anterior wall of urinary bladder (disorder)','188242006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188243001','188243001','http://snomed.info/sct','Malignant neoplasm of posterior wall of urinary bladder (disorder)','188243001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188244007','188244007','http://snomed.info/sct','Malignant neoplasm of neck of urinary bladder (disorder)','188244007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188245008','188245008','http://snomed.info/sct','Malignant tumor of ureteric orifice (disorder)','188245008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188247000','188247000','http://snomed.info/sct','Malignant neoplasm of overlapping sites of urinary bladder (disorder)','188247000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188250002','188250002','http://snomed.info/sct','Malignant tumor of kidney parenchyma (disorder)','188250002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188252005','188252005','http://snomed.info/sct','Malignant tumor of renal calyx (disorder)','188252005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188253000','188253000','http://snomed.info/sct','Malignant tumor of pelviureteric junction (disorder)','188253000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188256008','188256008','http://snomed.info/sct','Malignant neoplasm of overlapping sites of urinary organs (disorder)','188256008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188261005','188261005','http://snomed.info/sct','Malignant neoplasm of eyeball excluding conjunctiva, cornea, retina and choroid (disorder)','188261005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188263008','188263008','http://snomed.info/sct','Malignant tumor of ciliary body (disorder)','188263008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188264002','188264002','http://snomed.info/sct','Malignant tumor of iris (disorder)','188264002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188265001','188265001','http://snomed.info/sct','Malignant neoplasm of crystalline lens (disorder)','188265001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188266000','188266000','http://snomed.info/sct','Malignant neoplasm of sclera (disorder)','188266000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188268004','188268004','http://snomed.info/sct','Malignant neoplasm of connective tissue of orbit (disorder)','188268004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188269007','188269007','http://snomed.info/sct','Malignant neoplasm of extraocular muscle of orbit (disorder)','188269007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188272000','188272000','http://snomed.info/sct','Malignant tumor of lacrimal gland (disorder)','188272000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188273005','188273005','http://snomed.info/sct','Malignant neoplasm of lacrimal sac (disorder)','188273005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188274004','188274004','http://snomed.info/sct','Malignant neoplasm of nasolacrimal duct (disorder)','188274004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188280007','188280007','http://snomed.info/sct','Malignant neoplasm of cerebrum (excluding lobes and ventricles) (disorder)','188280007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188281006','188281006','http://snomed.info/sct','Malignant neoplasm of basal ganglia (disorder)','188281006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188282004','188282004','http://snomed.info/sct','Malignant neoplasm of cerebral cortex (disorder)','188282004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188283009','188283009','http://snomed.info/sct','Malignant neoplasm of corpus striatum (disorder)','188283009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188285002','188285002','http://snomed.info/sct','Malignant neoplasm of globus pallidus (disorder)','188285002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188286001','188286001','http://snomed.info/sct','Malignant tumor of hypothalamus (disorder)','188286001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188287005','188287005','http://snomed.info/sct','Malignant neoplasm of thalamus (disorder)','188287005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188289008','188289008','http://snomed.info/sct','Malignant neoplasm of hippocampus (disorder)','188289008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188290004','188290004','http://snomed.info/sct','Malignant neoplasm of uncus (disorder)','188290004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188292007','188292007','http://snomed.info/sct','Malignant tumor of choroid plexus (disorder)','188292007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188293002','188293002','http://snomed.info/sct','Malignant neoplasm of floor of cerebral ventricle (disorder)','188293002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188295009','188295009','http://snomed.info/sct','Malignant neoplasm of cerebral peduncle (disorder)','188295009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188296005','188296005','http://snomed.info/sct','Malignant neoplasm of medulla oblongata (disorder)','188296005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188297001','188297001','http://snomed.info/sct','Malignant neoplasm of midbrain (disorder)','188297001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188298006','188298006','http://snomed.info/sct','Malignant neoplasm of pons (disorder)','188298006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188301005','188301005','http://snomed.info/sct','Malignant neoplasm of corpus callosum (disorder)','188301005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188302003','188302003','http://snomed.info/sct','Malignant neoplasm of tapetum (disorder)','188302003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188307009','188307009','http://snomed.info/sct','Malignant tumor of cranial nerve (disorder)','188307009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188308004','188308004','http://snomed.info/sct','Malignant neoplasm of olfactory bulb (disorder)','188308004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188312005','188312005','http://snomed.info/sct','Malignant neoplasm of cerebral dura mater (disorder)','188312005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188313000','188313000','http://snomed.info/sct','Malignant neoplasm of cerebral arachnoid mater (disorder)','188313000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188315007','188315007','http://snomed.info/sct','Malignant neoplasm of cerebral pia mater (disorder)','188315007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188317004','188317004','http://snomed.info/sct','Malignant neoplasm of spinal dura mater (disorder)','188317004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188318009','188318009','http://snomed.info/sct','Malignant neoplasm of spinal arachnoid mater (disorder)','188318009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188319001','188319001','http://snomed.info/sct','Malignant neoplasm of spinal pia mater (disorder)','188319001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188321006','188321006','http://snomed.info/sct','Malignant neoplasm of peripheral nerves and autonomic nervous system (disorder)','188321006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188322004','188322004','http://snomed.info/sct','Malignant neoplasm of peripheral nerves of head, face and neck (disorder)','188322004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188323009','188323009','http://snomed.info/sct','Malignant neoplasm of peripheral nerves of upper limb, including shoulder (disorder)','188323009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188324003','188324003','http://snomed.info/sct','Malignant neoplasm of peripheral nerves of lower limb, including hip (disorder)','188324003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188325002','188325002','http://snomed.info/sct','Malignant neoplasm of peripheral nerve of thorax (disorder)','188325002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188326001','188326001','http://snomed.info/sct','Malignant neoplasm of peripheral nerve of abdomen (disorder)','188326001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188327005','188327005','http://snomed.info/sct','Malignant neoplasm of peripheral nerve of pelvis (disorder)','188327005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188339002','188339002','http://snomed.info/sct','Malignant neoplasm of pituitary gland and craniopharyngeal duct (disorder)','188339002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188340000','188340000','http://snomed.info/sct','Malignant tumor of craniopharyngeal duct (disorder)','188340000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188361007','188361007','http://snomed.info/sct','Malignant neoplasm of thorax (disorder)','188361007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188366002','188366002','http://snomed.info/sct','Malignant neoplasm of abdomen (disorder)','188366002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188445006','188445006','http://snomed.info/sct','Metastatic malignant neoplasm to retroperitoneum and peritoneum (disorder)','188445006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188454009','188454009','http://snomed.info/sct','Metastatic malignant neoplasm to skin of head (disorder)','188454009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188458007','188458007','http://snomed.info/sct','Metastatic malignant neoplasm to skin of shoulder and arm (disorder)','188458007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188462001','188462001','http://snomed.info/sct','Metastatic malignant neoplasm to brain and spinal cord (disorder)','188462001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188469005','188469005','http://snomed.info/sct','Metastatic malignant neoplasm to cervix uteri (disorder)','188469005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188471005','188471005','http://snomed.info/sct','Metastatic malignant neoplasm to epididymis and vas deferens (disorder)','188471005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188478004','188478004','http://snomed.info/sct','Malignant neoplasms of independent (primary) multiple sites (disorder)','188478004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188487008','188487008','http://snomed.info/sct','Lymphosarcoma and reticulosarcoma (disorder)','188487008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188489006','188489006','http://snomed.info/sct','Reticulosarcoma of lymph nodes of head, face and neck (disorder)','188489006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188492005','188492005','http://snomed.info/sct','Reticulosarcoma of lymph nodes of axilla and upper limb (disorder)','188492005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188493000','188493000','http://snomed.info/sct','Reticulosarcoma of lymph nodes of inguinal region and lower limb (disorder)','188493000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188498009','188498009','http://snomed.info/sct','Lymphosarcoma (disorder)','188498009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188500005','188500005','http://snomed.info/sct','Lymphosarcoma of lymph nodes of head, face and neck (disorder)','188500005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188501009','188501009','http://snomed.info/sct','Lymphosarcoma of intrathoracic lymph nodes (disorder)','188501009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188502002','188502002','http://snomed.info/sct','Lymphosarcoma of intra-abdominal lymph nodes (disorder)','188502002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188503007','188503007','http://snomed.info/sct','Lymphosarcoma of lymph nodes of axilla and upper limb (disorder)','188503007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188504001','188504001','http://snomed.info/sct','Lymphosarcoma of lymph nodes of inguinal region and lower limb (disorder)','188504001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188505000','188505000','http://snomed.info/sct','Lymphosarcoma of intrapelvic lymph nodes (disorder)','188505000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188506004','188506004','http://snomed.info/sct','Lymphosarcoma of spleen (disorder)','188506004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188507008','188507008','http://snomed.info/sct','Lymphosarcoma of lymph nodes of multiple sites (disorder)','188507008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188511002','188511002','http://snomed.info/sct','Burkitt''s lymphoma of intrathoracic lymph nodes (disorder)','188511002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188512009','188512009','http://snomed.info/sct','Burkitt''s lymphoma of intra-abdominal lymph nodes (disorder)','188512009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188513004','188513004','http://snomed.info/sct','Burkitt lymphoma of lymph nodes of axilla and upper limb (disorder)','188513004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188514005','188514005','http://snomed.info/sct','Burkitt lymphoma of lymph nodes of inguinal region and lower limb (disorder)','188514005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188515006','188515006','http://snomed.info/sct','Burkitt''s lymphoma of intrapelvic lymph nodes (disorder)','188515006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188516007','188516007','http://snomed.info/sct','Burkitt''s lymphoma of spleen (disorder)','188516007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188517003','188517003','http://snomed.info/sct','Burkitt''s lymphoma of lymph nodes of multiple sites (disorder)','188517003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188524002','188524002','http://snomed.info/sct','Hodgkin''s paragranuloma of intrathoracic lymph nodes (disorder)','188524002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188529007','188529007','http://snomed.info/sct','Hodgkin''s paragranuloma of intrapelvic lymph nodes (disorder)','188529007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188531003','188531003','http://snomed.info/sct','Hodgkin''s paragranuloma of lymph nodes of multiple sites (disorder)','188531003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188536008','188536008','http://snomed.info/sct','Hodgkin''s granuloma of intra-abdominal lymph nodes (disorder)','188536008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188537004','188537004','http://snomed.info/sct','Hodgkin''s granuloma of lymph nodes of axilla and upper limb (disorder)','188537004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188538009','188538009','http://snomed.info/sct','Hodgkin''s granuloma of lymph nodes of inguinal region and lower limb (disorder)','188538009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188541000','188541000','http://snomed.info/sct','Hodgkin''s granuloma of lymph nodes of multiple sites (disorder)','188541000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188547001','188547001','http://snomed.info/sct','Hodgkin''s sarcoma of lymph nodes of axilla and upper limb (disorder)','188547001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188548006','188548006','http://snomed.info/sct','Hodgkin''s sarcoma of lymph nodes of inguinal region and lower limb (disorder)','188548006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188551004','188551004','http://snomed.info/sct','Hodgkin''s sarcoma of lymph nodes of multiple sites (disorder)','188551004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188554007','188554007','http://snomed.info/sct','Hodgkin''s disease, lymphocytic-histiocytic predominance of lymph nodes of head, face and neck (disorder)','188554007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188558005','188558005','http://snomed.info/sct','Hodgkin''s disease, lymphocytic-histiocytic predominance of lymph nodes of axilla and upper limb (disorder)','188558005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188559002','188559002','http://snomed.info/sct','Hodgkin''s disease, lymphocytic-histiocytic predominance of lymph nodes of inguinal region and lower limb (disorder)','188559002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188562004','188562004','http://snomed.info/sct','Hodgkin''s disease, lymphocytic-histiocytic predominance of lymph nodes of multiple sites (disorder)','188562004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188565002','188565002','http://snomed.info/sct','Hodgkin''s disease, nodular sclerosis of lymph nodes of head, face and neck (disorder)','188565002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188566001','188566001','http://snomed.info/sct','Hodgkin''s disease, nodular sclerosis of intrathoracic lymph nodes (disorder)','188566001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188567005','188567005','http://snomed.info/sct','Hodgkin''s disease, nodular sclerosis of intra-abdominal lymph nodes (disorder)','188567005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188568000','188568000','http://snomed.info/sct','Hodgkin''s disease, nodular sclerosis of lymph nodes of axilla and upper limb (disorder)','188568000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188569008','188569008','http://snomed.info/sct','Hodgkin''s disease, nodular sclerosis of lymph nodes of inguinal region and lower limb (disorder)','188569008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188570009','188570009','http://snomed.info/sct','Hodgkin''s disease, nodular sclerosis of intrapelvic lymph nodes (disorder)','188570009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188572001','188572001','http://snomed.info/sct','Hodgkin''s disease, nodular sclerosis of lymph nodes of multiple sites (disorder)','188572001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188575004','188575004','http://snomed.info/sct','Hodgkin''s disease, mixed cellularity of lymph nodes of head, face and neck (disorder)','188575004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188576003','188576003','http://snomed.info/sct','Hodgkin''s disease, mixed cellularity of intrathoracic lymph nodes (disorder)','188576003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188577007','188577007','http://snomed.info/sct','Hodgkin''s disease, mixed cellularity of intra-abdominal lymph nodes (disorder)','188577007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188578002','188578002','http://snomed.info/sct','Hodgkin''s disease, mixed cellularity of lymph nodes of axilla and upper limb (disorder)','188578002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188579005','188579005','http://snomed.info/sct','Hodgkin''s disease, mixed cellularity of lymph nodes of inguinal region and lower limb (disorder)','188579005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188580008','188580008','http://snomed.info/sct','Hodgkin''s disease, mixed cellularity of intrapelvic lymph nodes (disorder)','188580008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188582000','188582000','http://snomed.info/sct','Hodgkin''s disease, mixed cellularity of lymph nodes of multiple sites (disorder)','188582000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188585003','188585003','http://snomed.info/sct','Hodgkin''s disease, lymphocytic depletion of lymph nodes of head, face and neck (disorder)','188585003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188586002','188586002','http://snomed.info/sct','Hodgkin''s disease, lymphocytic depletion of intrathoracic lymph nodes (disorder)','188586002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188587006','188587006','http://snomed.info/sct','Hodgkin''s disease, lymphocytic depletion of intra-abdominal lymph nodes (disorder)','188587006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188589009','188589009','http://snomed.info/sct','Hodgkin''s disease, lymphocytic depletion of lymph nodes of axilla and upper limb (disorder)','188589009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188590000','188590000','http://snomed.info/sct','Hodgkin''s disease, lymphocytic depletion of lymph nodes of inguinal region and lower limb (disorder)','188590000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188591001','188591001','http://snomed.info/sct','Hodgkin''s disease, lymphocytic depletion of intrapelvic lymph nodes (disorder)','188591001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188592008','188592008','http://snomed.info/sct','Hodgkin''s disease, lymphocytic depletion of spleen (disorder)','188592008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188593003','188593003','http://snomed.info/sct','Hodgkin''s disease, lymphocytic depletion of lymph nodes of multiple sites (disorder)','188593003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188609000','188609000','http://snomed.info/sct','Nodular lymphoma of lymph nodes of head, face and neck (disorder)','188609000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188612002','188612002','http://snomed.info/sct','Nodular lymphoma of lymph nodes of axilla and upper limb (disorder)','188612002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188613007','188613007','http://snomed.info/sct','Nodular lymphoma of lymph nodes of inguinal region and lower limb (disorder)','188613007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188627002','188627002','http://snomed.info/sct','Mycosis fungoides of lymph nodes of multiple sites (disorder)','188627002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188631008','188631008','http://snomed.info/sct','Sezary''s disease of intrathoracic lymph nodes (disorder)','188631008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188632001','188632001','http://snomed.info/sct','Sezary''s disease of intra-abdominal lymph nodes (disorder)','188632001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188633006','188633006','http://snomed.info/sct','Sezary''s disease of lymph nodes of axilla and upper limb (disorder)','188633006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188634000','188634000','http://snomed.info/sct','Sezary''s disease of lymph nodes of inguinal region and lower limb (disorder)','188634000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188635004','188635004','http://snomed.info/sct','Sezary''s disease of intrapelvic lymph nodes (disorder)','188635004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188637007','188637007','http://snomed.info/sct','Sezary''s disease of lymph nodes of multiple sites (disorder)','188637007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188641006','188641006','http://snomed.info/sct','Malignant histiocytosis of lymph nodes of axilla and upper limb (disorder)','188641006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188642004','188642004','http://snomed.info/sct','Malignant histiocytosis of lymph nodes of inguinal region and lower limb (disorder)','188642004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188645002','188645002','http://snomed.info/sct','Leukemic reticuloendotheliosis of lymph nodes of head, face and neck (disorder)','188645002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188648000','188648000','http://snomed.info/sct','Leukemic reticuloendotheliosis of lymph nodes of axilla and upper limb (disorder)','188648000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188649008','188649008','http://snomed.info/sct','Leukemic reticuloendotheliosis of lymph nodes of inguinal region and lower limb (disorder)','188649008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188662007','188662007','http://snomed.info/sct','Mast cell malignancy of lymph nodes of head and neck (disorder)','188662007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188665009','188665009','http://snomed.info/sct','Mast cell malignancy of lymph nodes of axilla and upper limb (disorder)','188665009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188666005','188666005','http://snomed.info/sct','Mast cell malignancy of lymph nodes of inguinal region and lower limb (disorder)','188666005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188668006','188668006','http://snomed.info/sct','Malignant mast cell sarcoma of spleen (disorder)','188668006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188669003','188669003','http://snomed.info/sct','Mast cell malignancy of lymph nodes of multiple sites (disorder)','188669003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188672005','188672005','http://snomed.info/sct','Follicular non-Hodgkin''s mixed small cleaved and large cell lymphoma (disorder)','188672005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188674006','188674006','http://snomed.info/sct','Diffuse malignant lymphoma - small non-cleaved cell (disorder)','188674006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188675007','188675007','http://snomed.info/sct','Malignant lymphoma - small cleaved cell (disorder)','188675007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188676008','188676008','http://snomed.info/sct','Malignant lymphoma - mixed small and large cell (disorder)','188676008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188679001','188679001','http://snomed.info/sct','Diffuse non-Hodgkin''s lymphoma undifferentiated (diffuse) (disorder)','188679001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188691005','188691005','http://snomed.info/sct','Malignant immunoproliferative small intestinal disease (disorder)','188691005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188718006','188718006','http://snomed.info/sct','Malignant plasma cell neoplasm, extramedullary plasmacytoma (disorder)','188718006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188725004','188725004','http://snomed.info/sct','Lymphoid leukemia (disorder)','188725004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188726003','188726003','http://snomed.info/sct','Subacute lymphoid leukemia (disorder)','188726003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188728002','188728002','http://snomed.info/sct','Aleukemic lymphoid leukemia (disorder)','188728002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188729005','188729005','http://snomed.info/sct','Adult T-cell leukemia (disorder)','188729005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188732008','188732008','http://snomed.info/sct','Myeloid leukemia (disorder)','188732008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188736006','188736006','http://snomed.info/sct','Subacute myeloid leukemia (disorder)','188736006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188737002','188737002','http://snomed.info/sct','Chloroma (disorder)','188737002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188741003','188741003','http://snomed.info/sct','Aleukemic myeloid leukemia (disorder)','188741003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188744006','188744006','http://snomed.info/sct','Monocytic leukemia (disorder)','188744006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188745007','188745007','http://snomed.info/sct','Chronic monocytic leukemia (disorder)','188745007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188746008','188746008','http://snomed.info/sct','Subacute monocytic leukemia (disorder)','188746008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188748009','188748009','http://snomed.info/sct','Aleukemic monocytic leukemia (disorder)','188748009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188754005','188754005','http://snomed.info/sct','Megakaryocytic leukemia (disorder)','188754005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188768003','188768003','http://snomed.info/sct','Myelomonocytic leukemia (disorder)','188768003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_188770007','188770007','http://snomed.info/sct','Subacute myelomonocytic leukemia (disorder)','188770007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_189179009','189179009','http://snomed.info/sct','Craniopharyngioma (disorder)','189179009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_189212001','189212001','http://snomed.info/sct','Carcinoma in situ of salivary gland (disorder)','189212001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_189229003','189229003','http://snomed.info/sct','Carcinoma in situ of splenic flexure (disorder)','189229003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_189231007','189231007','http://snomed.info/sct','Carcinoma in situ of rectum and rectosigmoid junction (disorder)','189231007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_189243008','189243008','http://snomed.info/sct','Carcinoma in situ of hepatic duct (disorder)','189243008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_189246000','189246000','http://snomed.info/sct','Carcinoma in situ of sphincter of Oddi (disorder)','189246000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_189251006','189251006','http://snomed.info/sct','Carcinoma in situ of respiratory system (disorder)','189251006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_189252004','189252004','http://snomed.info/sct','Carcinoma in situ of thyroid cartilage (disorder)','189252004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_189253009','189253009','http://snomed.info/sct','Carcinoma in situ of cricoid cartilage (disorder)','189253009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_189255002','189255002','http://snomed.info/sct','Carcinoma in situ of arytenoid cartilage (disorder)','189255002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_189256001','189256001','http://snomed.info/sct','Carcinoma in situ of corniculate cartilage (disorder)','189256001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_189257005','189257005','http://snomed.info/sct','Carcinoma in situ of cuneiform cartilage (disorder)','189257005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_189258000','189258000','http://snomed.info/sct','Carcinoma in situ of aryepiglottic fold (disorder)','189258000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_189259008','189259008','http://snomed.info/sct','Carcinoma in situ of vestibular fold (disorder)','189259008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_189262006','189262006','http://snomed.info/sct','Carcinoma in situ of bronchus and lung (disorder)','189262006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_189263001','189263001','http://snomed.info/sct','Carcinoma in situ of carina of bronchus (disorder)','189263001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_189265008','189265008','http://snomed.info/sct','Carcinoma in situ of upper lobe bronchus and lung (disorder)','189265008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_189266009','189266009','http://snomed.info/sct','Carcinoma in situ of middle lobe bronchus and lung (disorder)','189266009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_189267000','189267000','http://snomed.info/sct','Carcinoma in situ of lower lobe bronchus and lung (disorder)','189267000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_189271002','189271002','http://snomed.info/sct','Carcinoma in situ of tympanic cavity (disorder)','189271002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_189272009','189272009','http://snomed.info/sct','Carcinoma in situ of tympanic antrum (disorder)','189272009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_189277003','189277003','http://snomed.info/sct','Carcinoma in situ of skin of eyelid including canthus (disorder)','189277003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_189279000','189279000','http://snomed.info/sct','Carcinoma in situ of skin of auricle (disorder)','189279000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_189280002','189280002','http://snomed.info/sct','Carcinoma in situ of skin of external auditory canal (disorder)','189280002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_189288009','189288009','http://snomed.info/sct','Carcinoma in situ of skin of temple (disorder)','189288009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_189289001','189289001','http://snomed.info/sct','Carcinoma in situ of skin of jaw (disorder)','189289001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_189291009','189291009','http://snomed.info/sct','Carcinoma in situ of skin of head and neck (disorder)','189291009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_189292002','189292002','http://snomed.info/sct','Carcinoma in situ of scalp (disorder)','189292002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_189308005','189308005','http://snomed.info/sct','Carcinoma in situ of skin of upper arm (disorder)','189308005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_189317005','189317005','http://snomed.info/sct','Carcinoma in situ of skin of lower leg (disorder)','189317005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_189324006','189324006','http://snomed.info/sct','Melanoma in situ of skin structure of scalp and/or neck (disorder)','189324006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_189336000','189336000','http://snomed.info/sct','Carcinoma in situ of breast (disorder)','189336000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_189484008','189484008','http://snomed.info/sct','Neoplasm of uncertain behavior of brain and/or spinal cord (disorder)','189484008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_189487001','189487001','http://snomed.info/sct','Neoplasm of uncertain or unknown behavior of brain, supratentorial (disorder)','189487001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_189488006','189488006','http://snomed.info/sct','Neoplasm of uncertain or unknown behavior of brain, infratentorial (disorder)','189488006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_189509003','189509003','http://snomed.info/sct','Refractory anemia without sideroblasts, so stated (disorder)','189509003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_189565007','189565007','http://snomed.info/sct','Squamous cell carcinoma in situ (disorder)','189565007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_189815007','189815007','http://snomed.info/sct','Pulmonary blastoma (disorder)','189815007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_189847002','189847002','http://snomed.info/sct','Malignant teratoma (disorder)','189847002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_190030009','190030009','http://snomed.info/sct','Compound leukemias (disorder)','190030009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_190817009','190817009','http://snomed.info/sct','Macroglobulinemia (disorder)','190817009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_190818004','190818004','http://snomed.info/sct','Waldenstrom macroglobulinemia (disorder)','190818004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_19090001000004101','19090001000004101','http://snomed.info/sct','Metastatic neoplasm of left basal ganglion (disorder)','19090001000004101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_190955000','190955000','http://snomed.info/sct','Histiocytosis X syndrome (disorder)','190955000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_192681000119104','192681000119104','http://snomed.info/sct','Malignant carcinoid tumor of appendix (disorder)','192681000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_192701000119101','192701000119101','http://snomed.info/sct','Malignant carcinoid tumor of ileum (disorder)','192701000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_20224008','20224008','http://snomed.info/sct','Delta heavy chain disease (disorder)','20224008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_208041000119100','208041000119100','http://snomed.info/sct','Primary adenocarcinoma of endocervix (disorder)','208041000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_20991001','20991001','http://snomed.info/sct','Atypical lymphoproliferative disorder (disorder)','20991001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_21412009','21412009','http://snomed.info/sct','X chromosome-linked pyridoxine refractory sideroblastic anemia (disorder)','21412009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_21851000119103','21851000119103','http://snomed.info/sct','Malignant pheochromocytoma (disorder)','21851000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_226521000119108','226521000119108','http://snomed.info/sct','Primary malignant neoplasm of nasopharynx (disorder)','226521000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_231829006','231829006','http://snomed.info/sct','Malignant neoplasm of eyelid (disorder)','231829006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_231831002','231831002','http://snomed.info/sct','Squamous cell carcinoma of eyelid (disorder)','231831002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_231833004','231833004','http://snomed.info/sct','Sebaceous adenocarcinoma of eyelid (disorder)','231833004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_231834005','231834005','http://snomed.info/sct','Malignant melanoma of eyelid (disorder)','231834005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_231835006','231835006','http://snomed.info/sct','Kaposi''s sarcoma of eyelid (disorder)','231835006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_232075002','232075002','http://snomed.info/sct','Lymphoma of retina (disorder)','232075002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_233647007','233647007','http://snomed.info/sct','Malignant chylothorax (disorder)','233647007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_234941000119100','234941000119100','http://snomed.info/sct','Malignant glioma of eye (disorder)','234941000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_235966007','235966007','http://snomed.info/sct','Cystadenocarcinoma of pancreas (disorder)','235966007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_236005001','236005001','http://snomed.info/sct','Malignant ascites (disorder)','236005001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_236512004','236512004','http://snomed.info/sct','Leukemic infiltrate of kidney (disorder)','236512004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_236513009','236513009','http://snomed.info/sct','Lymphoma of kidney (disorder)','236513009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_236811000119101','236811000119101','http://snomed.info/sct','Paget disease of anal canal (disorder)','236811000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_238476000','238476000','http://snomed.info/sct','Eosinophilic granuloma of bone (disorder)','238476000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_239297008','239297008','http://snomed.info/sct','Lymphomatoid granulomatosis of lung (disorder)','239297008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_239940004','239940004','http://snomed.info/sct','Lymphomatoid granulomatosis (disorder)','239940004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_240163000','240163000','http://snomed.info/sct','Malignant neoplasm of nasopharyngeal wall (disorder)','240163000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_240531002','240531002','http://snomed.info/sct','African Burkitt''s lymphoma (disorder)','240531002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_24111000119105','24111000119105','http://snomed.info/sct','Primary squamous cell carcinoma of upper limb (disorder)','24111000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_241861008','241861008','http://snomed.info/sct','Metastatic malignant neoplasm to nasopharynx (disorder)','241861008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_242862004','242862004','http://snomed.info/sct','Metastatic malignant neoplasm to nasopharyngeal wall (disorder)','242862004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_242951000119108','242951000119108','http://snomed.info/sct','Primary squamous cell carcinoma of vermilion border of lip (disorder)','242951000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_25050002','25050002','http://snomed.info/sct','Alpha heavy chain disease, respiratory form (disorder)','25050002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_253000007','253000007','http://snomed.info/sct','Neuroendocrine carcinoma (disorder)','253000007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_253001006','253001006','http://snomed.info/sct','Merkel cell carcinoma (disorder)','253001006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_253002004','253002004','http://snomed.info/sct','Carcinoid tumor of appendix (disorder)','253002004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_253003009','253003009','http://snomed.info/sct','Carcinoid bronchial adenoma (disorder)','253003009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_253010003','253010003','http://snomed.info/sct','Microprolactinoma (disorder)','253010003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_253011004','253011004','http://snomed.info/sct','Macroprolactinoma (disorder)','253011004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_253017000','253017000','http://snomed.info/sct','Klatskin''s tumor (disorder)','253017000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_253018005','253018005','http://snomed.info/sct','Fibrolamellar hepatocellular carcinoma (disorder)','253018005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_253042009','253042009','http://snomed.info/sct','Myxoid dermatofibrosarcoma protuberans (disorder)','253042009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_253096008','253096008','http://snomed.info/sct','Peripheral neuroectodermal tumor (disorder)','253096008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254290004','254290004','http://snomed.info/sct','Lymphoproliferative disorder following transplantation (disorder)','254290004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254389005','254389005','http://snomed.info/sct','Carcinoma of vermilion border of upper lip (disorder)','254389005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254390001','254390001','http://snomed.info/sct','Carcinoma of vermilion border of lower lip (disorder)','254390001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254393004','254393004','http://snomed.info/sct','Carcinoma of frenum of lip (disorder)','254393004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254394005','254394005','http://snomed.info/sct','Carcinoma in situ of frenum of lip (disorder)','254394005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254398008','254398008','http://snomed.info/sct','Carcinoma of frenum of upper lip (disorder)','254398008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254399000','254399000','http://snomed.info/sct','Carcinoma in situ of frenum of upper lip (disorder)','254399000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254402004','254402004','http://snomed.info/sct','Carcinoma of frenum of lower lip (disorder)','254402004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254403009','254403009','http://snomed.info/sct','Carcinoma in situ of frenum of lower lip (disorder)','254403009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254404003','254404003','http://snomed.info/sct','Carcinoma of commissure of lip (disorder)','254404003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254406001','254406001','http://snomed.info/sct','Carcinoma in situ of anterior two-thirds of tongue - dorsal surface (disorder)','254406001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254408000','254408000','http://snomed.info/sct','Malignant tumor of anterior two-thirds of tongue - lateral margin (disorder)','254408000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254409008','254409008','http://snomed.info/sct','Carcinoma in situ of anterior two-thirds of tongue - lateral margin (disorder)','254409008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254412006','254412006','http://snomed.info/sct','Malignant tumor of tip of tongue (disorder)','254412006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254413001','254413001','http://snomed.info/sct','Carcinoma in situ of tip of tongue (disorder)','254413001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254417000','254417000','http://snomed.info/sct','Carcinoma of frenum linguae (disorder)','254417000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254418005','254418005','http://snomed.info/sct','Carcinoma in situ of frenum linguae (disorder)','254418005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254423005','254423005','http://snomed.info/sct','Carcinoma of lingual tonsil (disorder)','254423005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254424004','254424004','http://snomed.info/sct','Carcinoma of upper gum (disorder)','254424004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254425003','254425003','http://snomed.info/sct','Carcinoma of lower gum (disorder)','254425003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254427006','254427006','http://snomed.info/sct','Carcinoma of anterior part of floor of mouth (disorder)','254427006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254428001','254428001','http://snomed.info/sct','Carcinoma in situ anterior floor of mouth (disorder)','254428001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254431000','254431000','http://snomed.info/sct','Carcinoma of lateral part of floor of mouth (disorder)','254431000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254432007','254432007','http://snomed.info/sct','Carcinoma in situ lateral floor of mouth (disorder)','254432007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254434008','254434008','http://snomed.info/sct','Carcinoma of hard palate (disorder)','254434008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254435009','254435009','http://snomed.info/sct','Carcinoma of soft palate (disorder)','254435009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254436005','254436005','http://snomed.info/sct','Carcinoma of uvula (disorder)','254436005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254437001','254437001','http://snomed.info/sct','Squamous cell carcinoma of buccal mucosa (disorder)','254437001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254441002','254441002','http://snomed.info/sct','Carcinoma of upper buccal sulcus (disorder)','254441002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254442009','254442009','http://snomed.info/sct','Carcinoma in situ of upper buccal sulcus (disorder)','254442009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254445006','254445006','http://snomed.info/sct','Carcinoma of lower buccal sulcus (disorder)','254445006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254446007','254446007','http://snomed.info/sct','Carcinoma in situ of lower buccal sulcus (disorder)','254446007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254450000','254450000','http://snomed.info/sct','Carcinoma of upper labial sulcus (disorder)','254450000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254451001','254451001','http://snomed.info/sct','Carcinoma in situ upper labial sulcus (disorder)','254451001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254454009','254454009','http://snomed.info/sct','Carcinoma of lower labial sulcus (disorder)','254454009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254455005','254455005','http://snomed.info/sct','Carcinoma in situ of lower labial sulcus (disorder)','254455005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254457002','254457002','http://snomed.info/sct','Carcinoma of retromolar area (disorder)','254457002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254459004','254459004','http://snomed.info/sct','Malignant tumor of anterior pillar of fauces (disorder)','254459004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254460009','254460009','http://snomed.info/sct','Carcinoma in situ of anterior pillar of fauces (disorder)','254460009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254462001','254462001','http://snomed.info/sct','Carcinoma of parotid gland (disorder)','254462001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254465004','254465004','http://snomed.info/sct','Carcinoma of submandibular gland (disorder)','254465004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254466003','254466003','http://snomed.info/sct','Carcinoma of sublingual gland (disorder)','254466003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254474002','254474002','http://snomed.info/sct','Malignant tumor of nasal skeleton (disorder)','254474002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254478004','254478004','http://snomed.info/sct','Malignant tumor of inferior turbinate (disorder)','254478004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254481009','254481009','http://snomed.info/sct','Malignant tumor of middle turbinate (disorder)','254481009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254484001','254484001','http://snomed.info/sct','Malignant tumor of posterior margin of nasal septum and choanae (disorder)','254484001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254503007','254503007','http://snomed.info/sct','Malignant tumor of inferior surface of soft palate (disorder)','254503007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254509006','254509006','http://snomed.info/sct','Malignant tumor of anterior commissure (disorder)','254509006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254510001','254510001','http://snomed.info/sct','Carcinoma in situ of anterior commissure (disorder)','254510001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254513004','254513004','http://snomed.info/sct','Malignant tumor of posterior commissure (disorder)','254513004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254514005','254514005','http://snomed.info/sct','Carcinoma in situ of posterior commissure (disorder)','254514005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254517003','254517003','http://snomed.info/sct','Malignant tumor of suprahyoid epiglottis (disorder)','254517003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254520006','254520006','http://snomed.info/sct','Malignant tumor of infrahyoid epiglottis (disorder)','254520006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254526000','254526000','http://snomed.info/sct','Malignant tumor of laryngeal ventricle (disorder)','254526000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254530002','254530002','http://snomed.info/sct','Malignant tumor of parapharyngeal space (disorder)','254530002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254535007','254535007','http://snomed.info/sct','Carcinoma of cervical part of esophagus (disorder)','254535007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254539001','254539001','http://snomed.info/sct','Carcinoma of thoracic part of esophagus (disorder)','254539001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254540004','254540004','http://snomed.info/sct','Carcinoma in situ of thoracic part of esophagus (disorder)','254540004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254543002','254543002','http://snomed.info/sct','Carcinoma of abdominal part of esophagus (disorder)','254543002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254544008','254544008','http://snomed.info/sct','Carcinoma in situ of abdominal part of esophagus (disorder)','254544008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254547001','254547001','http://snomed.info/sct','Carcinoma of upper third of esophagus (disorder)','254547001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254549003','254549003','http://snomed.info/sct','Carcinoma of middle third of esophagus (disorder)','254549003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254551004','254551004','http://snomed.info/sct','Carcinoma of lower third of esophagus (disorder)','254551004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254553001','254553001','http://snomed.info/sct','Carcinoma of cardia (disorder)','254553001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254555008','254555008','http://snomed.info/sct','Carcinoma of fundus of stomach (disorder)','254555008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254557000','254557000','http://snomed.info/sct','Carcinoma of body of stomach (disorder)','254557000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254559002','254559002','http://snomed.info/sct','Carcinoma of pyloric antrum (disorder)','254559002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254561006','254561006','http://snomed.info/sct','Carcinoma of pylorus (disorder)','254561006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254563009','254563009','http://snomed.info/sct','Carcinoma of lesser curve of stomach (disorder)','254563009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254564003','254564003','http://snomed.info/sct','Carcinoma in situ of lesser curve of stomach (disorder)','254564003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254567005','254567005','http://snomed.info/sct','Carcinoma of greater curve of stomach (disorder)','254567005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254570009','254570009','http://snomed.info/sct','Carcinoma of duodenum (disorder)','254570009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254582000','254582000','http://snomed.info/sct','Adenocarcinoma of rectum (disorder)','254582000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254586002','254586002','http://snomed.info/sct','Malignant tumor of anorectal junction (disorder)','254586002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254601002','254601002','http://snomed.info/sct','Sarcoma of liver (disorder)','254601002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254609000','254609000','http://snomed.info/sct','Carcinoma of ampulla of Vater (disorder)','254609000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254611009','254611009','http://snomed.info/sct','Malignant tumor of endocrine pancreas (disorder)','254611009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254612002','254612002','http://snomed.info/sct','Carcinoma of endocrine pancreas (disorder)','254612002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254619006','254619006','http://snomed.info/sct','Adenoid cystic carcinoma of trachea (disorder)','254619006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254620000','254620000','http://snomed.info/sct','Squamous cell carcinoma of trachea (disorder)','254620000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254622008','254622008','http://snomed.info/sct','Squamous cell carcinoma of bronchus (disorder)','254622008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254625005','254625005','http://snomed.info/sct','Malignant tumor of lung parenchyma (disorder)','254625005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254626006','254626006','http://snomed.info/sct','Adenocarcinoma of lung (disorder)','254626006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254627002','254627002','http://snomed.info/sct','Carcinoid tumor of lung (disorder)','254627002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254629004','254629004','http://snomed.info/sct','Large cell carcinoma of lung (disorder)','254629004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254631008','254631008','http://snomed.info/sct','Giant cell carcinoma of lung (disorder)','254631008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254632001','254632001','http://snomed.info/sct','Small cell carcinoma of lung (disorder)','254632001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254633006','254633006','http://snomed.info/sct','Oat cell carcinoma of lung (disorder)','254633006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254634000','254634000','http://snomed.info/sct','Squamous cell carcinoma of lung (disorder)','254634000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254637007','254637007','http://snomed.info/sct','Non-small cell lung cancer (disorder)','254637007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254638002','254638002','http://snomed.info/sct','Pancoast tumor (disorder)','254638002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254639005','254639005','http://snomed.info/sct','Carcinoma in situ of lung parenchyma (disorder)','254639005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254645002','254645002','http://snomed.info/sct','Malignant mesothelioma of pleura (disorder)','254645002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254650008','254650008','http://snomed.info/sct','Malignant epithelial neoplasm of skin (disorder)','254650008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254651007','254651007','http://snomed.info/sct','Squamous cell carcinoma of skin (disorder)','254651007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254652000','254652000','http://snomed.info/sct','Clear cell squamous cell carcinoma of skin (disorder)','254652000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254653005','254653005','http://snomed.info/sct','Spindle cell squamous carcinoma of skin (disorder)','254653005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254654004','254654004','http://snomed.info/sct','Acantholytic squamous cell carcinoma of skin (disorder)','254654004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254655003','254655003','http://snomed.info/sct','Plantar verrucous carcinoma (disorder)','254655003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254656002','254656002','http://snomed.info/sct','Squamous cell carcinoma in situ of skin (disorder)','254656002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254703005','254703005','http://snomed.info/sct','Fibroepithelioma of Pinkus (disorder)','254703005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254707006','254707006','http://snomed.info/sct','Malignant skin tumor with eccrine differentiation (disorder)','254707006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254708001','254708001','http://snomed.info/sct','Eccrine porocarcinoma of skin (disorder)','254708001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254709009','254709009','http://snomed.info/sct','Digital papillary eccrine carcinoma of skin (disorder)','254709009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254711000','254711000','http://snomed.info/sct','Adenoid cystic eccrine carcinoma of skin (disorder)','254711000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254712007','254712007','http://snomed.info/sct','Microcystic adnexal carcinoma of skin (disorder)','254712007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254713002','254713002','http://snomed.info/sct','Mucoepidermoid carcinoma of skin (disorder)','254713002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254714008','254714008','http://snomed.info/sct','Mucinous eccrine carcinoma of skin (disorder)','254714008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254726003','254726003','http://snomed.info/sct','Malignant skin tumor with apocrine differentiation (disorder)','254726003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254727007','254727007','http://snomed.info/sct','Extramammary Paget''s disease of skin (disorder)','254727007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254730000','254730000','http://snomed.info/sct','Superficial spreading malignant melanoma of skin (disorder)','254730000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254731001','254731001','http://snomed.info/sct','Nodular malignant melanoma of skin (disorder)','254731001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254732008','254732008','http://snomed.info/sct','Acral lentiginous malignant melanoma of skin (disorder)','254732008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254733003','254733003','http://snomed.info/sct','Malignant melanoma arising in intradermal nevus (disorder)','254733003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254734009','254734009','http://snomed.info/sct','Malignant melanoma arising in congenital nevus (disorder)','254734009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254748009','254748009','http://snomed.info/sct','Cutaneous fibrosarcoma (disorder)','254748009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254764001','254764001','http://snomed.info/sct','Peripheral neuroepithelioma (disorder)','254764001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254771006','254771006','http://snomed.info/sct','Cutaneous leiomyosarcoma (disorder)','254771006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254792006','254792006','http://snomed.info/sct','Proliferating angioendotheliomatosis (disorder)','254792006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254794007','254794007','http://snomed.info/sct','Angiosarcoma of skin (disorder)','254794007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254797000','254797000','http://snomed.info/sct','Malignant hemangiopericytoma of skin (disorder)','254797000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254800003','254800003','http://snomed.info/sct','Epithelioid cell sarcoma of skin (disorder)','254800003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254820002','254820002','http://snomed.info/sct','Follicular atrophoderma and basal cell epitheliomata (disorder)','254820002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254824006','254824006','http://snomed.info/sct','Malignant tumor of mesothelial tissue (disorder)','254824006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254828009','254828009','http://snomed.info/sct','Malignant lipomatous tumor (disorder)','254828009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254837009','254837009','http://snomed.info/sct','Malignant neoplasm of breast (disorder)','254837009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254838004','254838004','http://snomed.info/sct','Carcinoma of breast (disorder)','254838004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254839007','254839007','http://snomed.info/sct','Scirrhous carcinoma of breast (disorder)','254839007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254840009','254840009','http://snomed.info/sct','Inflammatory carcinoma of breast (disorder)','254840009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254841008','254841008','http://snomed.info/sct','Cancer en cuirasse (disorder)','254841008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254844000','254844000','http://snomed.info/sct','Malignant phyllodes tumor of breast (disorder)','254844000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254849005','254849005','http://snomed.info/sct','Malignant epithelial tumor of ovary (disorder)','254849005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254850005','254850005','http://snomed.info/sct','Serous papillary cystadenocarcinoma ovary (disorder)','254850005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254851009','254851009','http://snomed.info/sct','Mucinous cystadenocarcinoma of ovary (disorder)','254851009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254852002','254852002','http://snomed.info/sct','Endometrioid carcinoma ovary (disorder)','254852002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254856004','254856004','http://snomed.info/sct','Undifferentiated carcinoma of ovary (disorder)','254856004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254860001','254860001','http://snomed.info/sct','Malignant sex cord tumor of ovary (disorder)','254860001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254869000','254869000','http://snomed.info/sct','Malignant germ cell tumor of ovary (disorder)','254869000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254870004','254870004','http://snomed.info/sct','Choriocarcinoma of ovary (disorder)','254870004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254872007','254872007','http://snomed.info/sct','Embryonal carcinoma of ovary (disorder)','254872007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254874008','254874008','http://snomed.info/sct','Malignant dysgerminoma of ovary (disorder)','254874008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254876005','254876005','http://snomed.info/sct','Endodermal sinus tumor of ovary (disorder)','254876005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254877001','254877001','http://snomed.info/sct','Sarcoma of uterus (disorder)','254877001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254878006','254878006','http://snomed.info/sct','Endometrial carcinoma (disorder)','254878006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254886006','254886006','http://snomed.info/sct','Squamous cell carcinoma of cervix (disorder)','254886006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254887002','254887002','http://snomed.info/sct','Adenocarcinoma of cervix (disorder)','254887002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254888007','254888007','http://snomed.info/sct','Adenosquamous carcinoma of cervix (disorder)','254888007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254893005','254893005','http://snomed.info/sct','Carcinoma of vagina (disorder)','254893005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254895003','254895003','http://snomed.info/sct','Squamous cell carcinoma of vulva (disorder)','254895003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254896002','254896002','http://snomed.info/sct','Malignant melanoma of vulva (disorder)','254896002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254897006','254897006','http://snomed.info/sct','Sarcoma of vulva (disorder)','254897006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254898001','254898001','http://snomed.info/sct','Paget''s disease of vulva (disorder)','254898001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254900004','254900004','http://snomed.info/sct','Carcinoma of prostate (disorder)','254900004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254904008','254904008','http://snomed.info/sct','Carcinoma of glans penis (disorder)','254904008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254908006','254908006','http://snomed.info/sct','Malignant tumor of skin of penis (disorder)','254908006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254909003','254909003','http://snomed.info/sct','Carcinoma of foreskin (disorder)','254909003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254912000','254912000','http://snomed.info/sct','Regressed malignant testicular tumor (disorder)','254912000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254915003','254915003','http://snomed.info/sct','Clear cell carcinoma of kidney (disorder)','254915003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254916002','254916002','http://snomed.info/sct','Cystadenocarcinoma of kidney (disorder)','254916002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254917006','254917006','http://snomed.info/sct','Papillary cystadenocarcinoma of kidney (disorder)','254917006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254918001','254918001','http://snomed.info/sct','Sarcoma of kidney (disorder)','254918001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254934003','254934003','http://snomed.info/sct','Malignant tumor of urethral stump (disorder)','254934003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254935002','254935002','http://snomed.info/sct','Intracranial tumor (disorder)','254935002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254936001','254936001','http://snomed.info/sct','Glial tumor of brain (disorder)','254936001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254938000','254938000','http://snomed.info/sct','Astrocytoma of brain (disorder)','254938000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254939008','254939008','http://snomed.info/sct','Ependymoma of brain (disorder)','254939008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254940005','254940005','http://snomed.info/sct','Oligodendroglioma of brain (disorder)','254940005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254941009','254941009','http://snomed.info/sct','Mixed glial tumor of brain (disorder)','254941009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254942002','254942002','http://snomed.info/sct','Tumor of choroid plexus (disorder)','254942002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254945000','254945000','http://snomed.info/sct','Embryonal tumor of brain (disorder)','254945000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254946004','254946004','http://snomed.info/sct','Glial tumor of spinal cord (disorder)','254946004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254947008','254947008','http://snomed.info/sct','Glioma of spinal cord (disorder)','254947008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254948003','254948003','http://snomed.info/sct','Astrocytoma of spinal cord (disorder)','254948003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254949006','254949006','http://snomed.info/sct','Ependymoma of spinal cord (disorder)','254949006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254950006','254950006','http://snomed.info/sct','Oligodendroglioma of spinal cord (disorder)','254950006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254951005','254951005','http://snomed.info/sct','Mixed glial tumor of spinal cord (disorder)','254951005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254954002','254954002','http://snomed.info/sct','Embryonal tumor of spinal cord (disorder)','254954002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254955001','254955001','http://snomed.info/sct','Pituitary carcinoma (disorder)','254955001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254969001','254969001','http://snomed.info/sct','Malignant tumor of olfactory tract (disorder)','254969001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254972008','254972008','http://snomed.info/sct','Malignant tumor of optic nerve and sheath (disorder)','254972008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254973003','254973003','http://snomed.info/sct','Malignant astrocytoma of optic nerve (disorder)','254973003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254974009','254974009','http://snomed.info/sct','Malignant tumor of optic nerve sheath (disorder)','254974009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254975005','254975005','http://snomed.info/sct','Malignant meningioma of optic nerve sheath (disorder)','254975005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254976006','254976006','http://snomed.info/sct','Optic nerve glioma (disorder)','254976006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254980001','254980001','http://snomed.info/sct','Malignant tumor of acoustic vestibular nerve (disorder)','254980001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254983004','254983004','http://snomed.info/sct','Malignant tumor of spinal nerve and sheath (disorder)','254983004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254986007','254986007','http://snomed.info/sct','Malignant tumor of peripheral nerve (disorder)','254986007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254987003','254987003','http://snomed.info/sct','Adenoid cystic carcinoma of lacrimal gland (disorder)','254987003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254988008','254988008','http://snomed.info/sct','Adenocarcinoma of lacrimal gland (disorder)','254988008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254989000','254989000','http://snomed.info/sct','Carcinoma ex pleomorphic adenoma of lacrimal gland (disorder)','254989000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254993006','254993006','http://snomed.info/sct','Liposarcoma of orbit (disorder)','254993006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254994000','254994000','http://snomed.info/sct','Rhabdomyosarcoma of orbit (disorder)','254994000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254995004','254995004','http://snomed.info/sct','Malignant hemangiopericytoma of orbit (disorder)','254995004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254996003','254996003','http://snomed.info/sct','Malignant fibrous histiocytoma of orbit (disorder)','254996003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_255003007','255003007','http://snomed.info/sct','Squamous cell carcinoma of conjunctiva (disorder)','255003007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_255004001','255004001','http://snomed.info/sct','Malignant melanoma of conjunctiva (disorder)','255004001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_255008003','255008003','http://snomed.info/sct','Squamous cell carcinoma of cornea (disorder)','255008003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_255012009','255012009','http://snomed.info/sct','Malignant melanoma of iris (disorder)','255012009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_255015006','255015006','http://snomed.info/sct','Malignant melanoma of ciliary body (disorder)','255015006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_255016007','255016007','http://snomed.info/sct','Adenocarcinoma of pigmented epithelium of ciliary body (disorder)','255016007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_255017003','255017003','http://snomed.info/sct','Adenocarcinoma of non-pigmented epithelium of ciliary body (disorder)','255017003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_255021005','255021005','http://snomed.info/sct','Malignant melanoma of choroid (disorder)','255021005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_255028004','255028004','http://snomed.info/sct','Follicular thyroid carcinoma (disorder)','255028004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_255029007','255029007','http://snomed.info/sct','Papillary thyroid carcinoma (disorder)','255029007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_255030002','255030002','http://snomed.info/sct','Mixed follicular and papillary thyroid carcinoma (disorder)','255030002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_255031003','255031003','http://snomed.info/sct','Anaplastic thyroid carcinoma (disorder)','255031003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_255032005','255032005','http://snomed.info/sct','Medullary thyroid carcinoma (disorder)','255032005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_255035007','255035007','http://snomed.info/sct','Adrenal carcinoma (disorder)','255035007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_255037004','255037004','http://snomed.info/sct','Parathyroid carcinoma (disorder)','255037004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_255052006','255052006','http://snomed.info/sct','Malignant neoplasm of unknown origin (disorder)','255052006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_255056009','255056009','http://snomed.info/sct','Malignant tumor of head and/or neck (disorder)','255056009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_255066001','255066001','http://snomed.info/sct','Carcinoma of genitourinary organ (disorder)','255066001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_255067005','255067005','http://snomed.info/sct','Sarcoma of bone and connective tissue (disorder)','255067005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_255068000','255068000','http://snomed.info/sct','Carcinoma of bone, connective tissue, skin and breast (disorder)','255068000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_255069008','255069008','http://snomed.info/sct','Carcinoma of lip, oral cavity and/or pharynx (disorder)','255069008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_255070009','255070009','http://snomed.info/sct','Overlapping malignant neoplasm of oral cavity and lip and salivary gland (disorder)','255070009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_255071008','255071008','http://snomed.info/sct','Squamous cell carcinoma of lip (disorder)','255071008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_255072001','255072001','http://snomed.info/sct','Malignant tumor of salivary gland (disorder)','255072001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_255073006','255073006','http://snomed.info/sct','Malignant tumor of ear, nose and throat (disorder)','255073006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_255074000','255074000','http://snomed.info/sct','Malignant tumor of nasal cavity and nasopharynx (disorder)','255074000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_255075004','255075004','http://snomed.info/sct','Malignant tumor of lateral nasal wall (disorder)','255075004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_255077007','255077007','http://snomed.info/sct','Malignant tumor of digestive organ (disorder)','255077007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_255078002','255078002','http://snomed.info/sct','Malignant tumor of esophagus, stomach and duodenum (disorder)','255078002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_255081007','255081007','http://snomed.info/sct','Carcinoma of cecum (disorder)','255081007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_255084004','255084004','http://snomed.info/sct','Squamous cell carcinoma of anal margin (disorder)','255084004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_255086002','255086002','http://snomed.info/sct','Carcinoma common bile duct (disorder)','255086002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_255087006','255087006','http://snomed.info/sct','Malignant polyp of biliary tract (disorder)','255087006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_255088001','255088001','http://snomed.info/sct','Malignant tumor of exocrine pancreas (disorder)','255088001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_255090000','255090000','http://snomed.info/sct','Malignant neoplasm of carpal bones (disorder)','255090000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_255091001','255091001','http://snomed.info/sct','Malignant neoplasm of metacarpal bones (disorder)','255091001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_255093003','255093003','http://snomed.info/sct','Malignant skin tumor with adnexal differentiation (disorder)','255093003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_255096006','255096006','http://snomed.info/sct','Malignant tumor of dermis (disorder)','255096006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_255102004','255102004','http://snomed.info/sct','Angioendotheliomatosis (disorder)','255102004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_255106001','255106001','http://snomed.info/sct','Teratoma of testis (disorder)','255106001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_255107005','255107005','http://snomed.info/sct','Seminoma of testis (disorder)','255107005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_255108000','255108000','http://snomed.info/sct','Carcinoma of urinary bladder (disorder)','255108000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_255109008','255109008','http://snomed.info/sct','Transitional cell carcinoma of urinary bladder (disorder)','255109008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_255110003','255110003','http://snomed.info/sct','Adenocarcinoma of urinary bladder (disorder)','255110003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_255111004','255111004','http://snomed.info/sct','Squamous cell carcinoma of urinary bladder (disorder)','255111004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_255112006','255112006','http://snomed.info/sct','Malignant tumor of pituitary and hypothalamus (disorder)','255112006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_255114007','255114007','http://snomed.info/sct','Kaposi''s sarcoma of conjunctiva (disorder)','255114007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_255115008','255115008','http://snomed.info/sct','Kaposi''s sarcoma of cornea (disorder)','255115008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_255118005','255118005','http://snomed.info/sct','Metastatic lymphangitic carcinoma (disorder)','255118005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_255119002','255119002','http://snomed.info/sct','Lymphangitis carcinomatosa (disorder)','255119002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_255121007','255121007','http://snomed.info/sct','Carcinomatosis of peritoneal cavity (disorder)','255121007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_255123005','255123005','http://snomed.info/sct','Metastasis to nervous system and eye (disorder)','255123005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_255124004','255124004','http://snomed.info/sct','Metastasis to peripheral nerve (disorder)','255124004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_255128001','255128001','http://snomed.info/sct','Malignant infiltration of peripheral nerve (disorder)','255128001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_255129009','255129009','http://snomed.info/sct','Malignant infiltration of peripheral nerve plexus (disorder)','255129009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_255131000','255131000','http://snomed.info/sct','Carcinoma in situ of oral cavity, lips, salivary glands (disorder)','255131000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_255132007','255132007','http://snomed.info/sct','Carcinoma in situ of anterior two-thirds of tongue - ventral surface (disorder)','255132007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_255136005','255136005','http://snomed.info/sct','Carcinoma in situ of upper labial mucosa (disorder)','255136005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_255137001','255137001','http://snomed.info/sct','Carcinoma in situ of lower labial mucosa (disorder)','255137001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_255138006','255138006','http://snomed.info/sct','Carcinoma in situ of ear, nose and throat (disorder)','255138006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_255139003','255139003','http://snomed.info/sct','Carcinoma in situ of middle ear and mastoid (disorder)','255139003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_255140001','255140001','http://snomed.info/sct','Carcinoma in situ of nasal cavity and nasopharynx (disorder)','255140001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_255142009','255142009','http://snomed.info/sct','Carcinoma in situ of respiratory and intrathoracic organ (disorder)','255142009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_255144005','255144005','http://snomed.info/sct','Carcinoma in situ of ear (disorder)','255144005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_255145006','255145006','http://snomed.info/sct','Carcinoma in situ of surface epithelium (disorder)','255145006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_255146007','255146007','http://snomed.info/sct','Carcinoma in situ of epidermal appendage (disorder)','255146007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_255149000','255149000','http://snomed.info/sct','Carcinoma in situ of prostatic ducts (disorder)','255149000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_255150000','255150000','http://snomed.info/sct','Carcinoma in situ of urinary tract proper (disorder)','255150000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_255191003','255191003','http://snomed.info/sct','Localized malignant reticulohistiocytoma (disorder)','255191003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_269459004','269459004','http://snomed.info/sct','Malignant tumor of lesser curve of stomach (disorder)','269459004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_269460009','269460009','http://snomed.info/sct','Malignant tumor of greater curve of stomach (disorder)','269460009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_269463006','269463006','http://snomed.info/sct','Malignant tumor of middle ear and mastoid (disorder)','269463006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_269464000','269464000','http://snomed.info/sct','Malignant neoplasm of upper lobe, bronchus or lung (disorder)','269464000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_269467007','269467007','http://snomed.info/sct','Malignant neoplasm of hand bones (disorder)','269467007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_269469005','269469005','http://snomed.info/sct','Malignant neoplasm of soft tissue (disorder)','269469005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_269473008','269473008','http://snomed.info/sct','Metastatic malignant neoplasm to respiratory and digestive systems (disorder)','269473008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_269475001','269475001','http://snomed.info/sct','Malignant tumor of lymphoid, hemopoietic AND/OR related tissue (disorder)','269475001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_269476000','269476000','http://snomed.info/sct','Nodular lymphoma (disorder)','269476000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_269515006','269515006','http://snomed.info/sct','Carcinoma of lip (disorder)','269515006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_269516007','269516007','http://snomed.info/sct','Tongue carcinoma (disorder)','269516007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_269533000','269533000','http://snomed.info/sct','Carcinoma of colon (disorder)','269533000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_269544008','269544008','http://snomed.info/sct','Carcinoma of rectosigmoid junction (disorder)','269544008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_269578002','269578002','http://snomed.info/sct','Malignant melanoma of head and neck (disorder)','269578002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_269579005','269579005','http://snomed.info/sct','Malignant melanoma of trunk (disorder)','269579005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_269580008','269580008','http://snomed.info/sct','Malignant melanoma of upper limb (disorder)','269580008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_269581007','269581007','http://snomed.info/sct','Malignant melanoma of lower limb (disorder)','269581007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_271323007','271323007','http://snomed.info/sct','Malignant neoplasm of lip, oral cavity and/or pharynx (disorder)','271323007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_271467005','271467005','http://snomed.info/sct','Malignant neoplasm of bone, connective tissue, skin and breast (disorder)','271467005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_271468000','271468000','http://snomed.info/sct','Malignant neoplasm of genitourinary organ (disorder)','271468000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_271525004','271525004','http://snomed.info/sct','Carcinoma in situ of liver and/or biliary system (disorder)','271525004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_271568003','271568003','http://snomed.info/sct','Malignant tumor of lower labial mucosa (disorder)','271568003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_271943005','271943005','http://snomed.info/sct','Carcinoma of base of tongue (disorder)','271943005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_274084007','274084007','http://snomed.info/sct','Palate carcinoma (disorder)','274084007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_274085008','274085008','http://snomed.info/sct','Tonsil carcinoma (disorder)','274085008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_274087000','274087000','http://snomed.info/sct','Malignant melanoma of eye (disorder)','274087000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_274088005','274088005','http://snomed.info/sct','Metastatic malignant neoplasm to unknown site (disorder)','274088005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_274902006','274902006','http://snomed.info/sct','Combined hepatocellular carcinoma and cholangiocarcinoma (disorder)','274902006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_274905008','274905008','http://snomed.info/sct','Malignant lymphoma - lymphocytic, intermediate differentiation (disorder)','274905008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_275266006','275266006','http://snomed.info/sct','Metastasis to digestive organs (disorder)','275266006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_275394001','275394001','http://snomed.info/sct','Carcinoma ventral surface of tongue (disorder)','275394001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_275395000','275395000','http://snomed.info/sct','Carcinoma anterior 2/3 tongue ventrum (disorder)','275395000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_275396004','275396004','http://snomed.info/sct','Carcinoma of anterior two-thirds of tongue - dorsal surface (disorder)','275396004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_275397008','275397008','http://snomed.info/sct','Carcinoma of midline of tongue (disorder)','275397008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_275399006','275399006','http://snomed.info/sct','Malignant tumor of lipstick area of lip (disorder)','275399006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_275490009','275490009','http://snomed.info/sct','Carcinoma of tongue base - dorsal surface (disorder)','275490009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_275492001','275492001','http://snomed.info/sct','Carcinoma in situ tongue base - dorsal surface (disorder)','275492001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_275524009','275524009','http://snomed.info/sct','Immunoproliferative neoplasm (disorder)','275524009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_276419004','276419004','http://snomed.info/sct','Malignant tumor of corpus spongiosum (disorder)','276419004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_276420005','276420005','http://snomed.info/sct','Malignant tumor of corpus cavernosum (disorder)','276420005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_276738009','276738009','http://snomed.info/sct','Primary signet ring cell carcinoma of skin (disorder)','276738009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_276750003','276750003','http://snomed.info/sct','Malignant tumor of skin with pilar differentiation (disorder)','276750003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_276751004','276751004','http://snomed.info/sct','Amelanotic malignant melanoma of skin (disorder)','276751004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_276797002','276797002','http://snomed.info/sct','Malignant tumor of fibrous tissue (disorder)','276797002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_276799004','276799004','http://snomed.info/sct','Dermatofibrosarcoma protuberans (disorder)','276799004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_276803003','276803003','http://snomed.info/sct','Adenocarcinoma of esophagus (disorder)','276803003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_276804009','276804009','http://snomed.info/sct','Squamous cell carcinoma of esophagus (disorder)','276804009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_276808007','276808007','http://snomed.info/sct','Carcinoid tumor of stomach (disorder)','276808007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_276809004','276809004','http://snomed.info/sct','Early gastric cancer (disorder)','276809004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_276810009','276810009','http://snomed.info/sct','Late gastric cancer (disorder)','276810009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_276811008','276811008','http://snomed.info/sct','Gastric lymphoma (disorder)','276811008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_276815004','276815004','http://snomed.info/sct','Lymphoma of intestine (disorder)','276815004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_276821000','276821000','http://snomed.info/sct','Malignant melanoma of anus (disorder)','276821000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_276822007','276822007','http://snomed.info/sct','Malignant melanoma of rectum (disorder)','276822007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_276826005','276826005','http://snomed.info/sct','Malignant glioma of brain (disorder)','276826005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_276827001','276827001','http://snomed.info/sct','Malignant glioma of spinal cord (disorder)','276827001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_276828006','276828006','http://snomed.info/sct','Glioblastoma multiforme of brain (disorder)','276828006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_276829003','276829003','http://snomed.info/sct','Glioblastoma multiforme of spinal cord (disorder)','276829003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_276836002','276836002','http://snomed.info/sct','Primary cerebral lymphoma (disorder)','276836002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_276860003','276860003','http://snomed.info/sct','Squamous cell carcinoma of scrotum (disorder)','276860003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_276870001','276870001','http://snomed.info/sct','Carcinoma of fallopian tube (disorder)','276870001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_276876007','276876007','http://snomed.info/sct','Carcinoma of Bartholin''s gland (disorder)','276876007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_276878008','276878008','http://snomed.info/sct','Squamous cell hyperplasia of vulva (disorder)','276878008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_276952000','276952000','http://snomed.info/sct','Squamous cell carcinoma of tongue (disorder)','276952000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_276953005','276953005','http://snomed.info/sct','Squamous cell carcinoma of gum (disorder)','276953005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_276954004','276954004','http://snomed.info/sct','Squamous cell carcinoma of floor of mouth (disorder)','276954004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_276962007','276962007','http://snomed.info/sct','Squamous cell carcinoma of palate (disorder)','276962007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_276975007','276975007','http://snomed.info/sct','Carcinoma of larynx (disorder)','276975007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_277156006','277156006','http://snomed.info/sct','Malignant tumor of external ear (disorder)','277156006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_277185000','277185000','http://snomed.info/sct','Trigeminal schwannoma (disorder)','277185000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_277456001','277456001','http://snomed.info/sct','Suprasellar germ cell tumor (disorder)','277456001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_277461004','277461004','http://snomed.info/sct','Anaplastic astrocytoma of brain (disorder)','277461004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_277466009','277466009','http://snomed.info/sct','Lymphoproliferative disorder (disorder)','277466009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_277505007','277505007','http://snomed.info/sct','Medulloblastoma of cerebellum (disorder)','277505007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_277507004','277507004','http://snomed.info/sct','Pilocytic astrocytoma of cerebellum (disorder)','277507004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_277508009','277508009','http://snomed.info/sct','Pineal germ cell tumor (disorder)','277508009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_277526007','277526007','http://snomed.info/sct','Diffuse melanosis of meninges (disorder)','277526007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_277530005','277530005','http://snomed.info/sct','Malignant melanoma of meninges (disorder)','277530005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_277543005','277543005','http://snomed.info/sct','Malignant white blood cell disorder (disorder)','277543005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_277545003','277545003','http://snomed.info/sct','T-cell chronic lymphocytic leukemia (disorder)','277545003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_277549009','277549009','http://snomed.info/sct','Chronic lymphocytic prolymphocytic leukemia syndrome (disorder)','277549009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_277550009','277550009','http://snomed.info/sct','Richter''s syndrome (disorder)','277550009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_277551008','277551008','http://snomed.info/sct','Splenic lymphoma with villous lymphocytes (disorder)','277551008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_277567002','277567002','http://snomed.info/sct','T-cell prolymphocytic leukemia (disorder)','277567002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_277568007','277568007','http://snomed.info/sct','Hairy cell leukemia variant (disorder)','277568007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_277569004','277569004','http://snomed.info/sct','Large granular lymphocytic leukemia (disorder)','277569004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_277570003','277570003','http://snomed.info/sct','Lymphoma with spill (disorder)','277570003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_277572006','277572006','http://snomed.info/sct','Precursor B-cell acute lymphoblastic leukemia (disorder)','277572006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_277573001','277573001','http://snomed.info/sct','Common acute lymphoblastic leukemia (disorder)','277573001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_277574007','277574007','http://snomed.info/sct','Null cell acute lymphoblastic leukemia (disorder)','277574007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_277575008','277575008','http://snomed.info/sct','T-lymphoblastic leukemia (disorder)','277575008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_277579002','277579002','http://snomed.info/sct','Light chain myeloma (disorder)','277579002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_277580004','277580004','http://snomed.info/sct','Non-secretory myeloma (disorder)','277580004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_277587001','277587001','http://snomed.info/sct','Juvenile chronic myeloid leukemia (disorder)','277587001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_277589003','277589003','http://snomed.info/sct','Myelodysplastic-myeloproliferative neoplasm with neutrophilia (disorder)','277589003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_277597005','277597005','http://snomed.info/sct','Myelodysplastic syndrome with isolated del(5q) (disorder)','277597005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_277601005','277601005','http://snomed.info/sct','Acute monoblastic leukemia (disorder)','277601005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_277602003','277602003','http://snomed.info/sct','Acute megakaryoblastic leukemia (disorder)','277602003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_277604002','277604002','http://snomed.info/sct','Malignant myeloid-lymphoid neoplasm (disorder)','277604002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_277606000','277606000','http://snomed.info/sct','Lymphoreticular tumor (disorder)','277606000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_277609007','277609007','http://snomed.info/sct','Hodgkin''s disease, lymphocytic predominance - diffuse (disorder)','277609007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_277610002','277610002','http://snomed.info/sct','Hodgkin''s disease, nodular sclerosis - lymphocytic predominance (disorder)','277610002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_277611003','277611003','http://snomed.info/sct','Hodgkin''s disease, nodular sclerosis - mixed cellularity (disorder)','277611003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_277612005','277612005','http://snomed.info/sct','Hodgkin''s disease, nodular sclerosis - lymphocytic depletion (disorder)','277612005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_277613000','277613000','http://snomed.info/sct','Cutaneous/peripheral T-cell lymphoma (disorder)','277613000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_277614006','277614006','http://snomed.info/sct','Prethymic and thymic T-cell lymphoma/leukemia (disorder)','277614006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_277615007','277615007','http://snomed.info/sct','Low grade B-cell lymphoma (disorder)','277615007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_277616008','277616008','http://snomed.info/sct','Diffuse low grade B-cell lymphoma (disorder)','277616008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_277617004','277617004','http://snomed.info/sct','High grade B-cell lymphoma (disorder)','277617004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_277618009','277618009','http://snomed.info/sct','Follicular low grade B-cell lymphoma (disorder)','277618009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_277619001','277619001','http://snomed.info/sct','B-cell prolymphocytic leukemia (disorder)','277619001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_277622004','277622004','http://snomed.info/sct','Mucosa-associated lymphoma (disorder)','277622004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_277623009','277623009','http://snomed.info/sct','Monocytoid B-cell lymphoma (disorder)','277623009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_277624003','277624003','http://snomed.info/sct','Follicular malignant lymphoma - mixed cell type (disorder)','277624003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_277625002','277625002','http://snomed.info/sct','Follicular malignant lymphoma - small cleaved cell (disorder)','277625002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_277626001','277626001','http://snomed.info/sct','Diffuse high grade B-cell lymphoma (disorder)','277626001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_277627005','277627005','http://snomed.info/sct','Nodular high grade B-cell lymphoma (disorder)','277627005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_277628000','277628000','http://snomed.info/sct','Diffuse malignant lymphoma - large cleaved cell (disorder)','277628000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_277629008','277629008','http://snomed.info/sct','Diffuse malignant lymphoma - large non-cleaved cell (disorder)','277629008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_277632006','277632006','http://snomed.info/sct','Diffuse malignant lymphoma - centroblastic polymorphic (disorder)','277632006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_277637000','277637000','http://snomed.info/sct','Large cell anaplastic lymphoma (disorder)','277637000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_277642008','277642008','http://snomed.info/sct','Low grade T-cell lymphoma (disorder)','277642008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_277643003','277643003','http://snomed.info/sct','High grade T-cell lymphoma (disorder)','277643003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_277651000','277651000','http://snomed.info/sct','Peripheral T-cell lymphoma - pleomorphic small cell (disorder)','277651000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_277653002','277653002','http://snomed.info/sct','Peripheral T-cell lymphoma - pleomorphic medium and large cell (disorder)','277653002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_277654008','277654008','http://snomed.info/sct','Enteropathy-associated T-cell lymphoma (disorder)','277654008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_277664004','277664004','http://snomed.info/sct','Malignant lymphoma of testis (disorder)','277664004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_277782009','277782009','http://snomed.info/sct','Local recurrence of malignant neoplasm of peritoneum (disorder)','277782009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_278024000','278024000','http://snomed.info/sct','Rhabdomyosarcoma of urinary bladder (disorder)','278024000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_278042005','278042005','http://snomed.info/sct','Malignant teratoma of mediastinum (disorder)','278042005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_278043000','278043000','http://snomed.info/sct','Malignant seminoma of mediastinum (disorder)','278043000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_278044006','278044006','http://snomed.info/sct','Malignant neuroma of mediastinum (disorder)','278044006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_278046008','278046008','http://snomed.info/sct','Sarcoma of urinary bladder (disorder)','278046008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_278050001','278050001','http://snomed.info/sct','Sarcoma of breast (disorder)','278050001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_278051002','278051002','http://snomed.info/sct','Malignant lymphoma of thyroid gland (disorder)','278051002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_278052009','278052009','http://snomed.info/sct','Malignant lymphoma of breast (disorder)','278052009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_278054005','278054005','http://snomed.info/sct','Lobular carcinoma of breast (disorder)','278054005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_278055006','278055006','http://snomed.info/sct','Malignant Leydig cell tumor of testis (disorder)','278055006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_278060005','278060005','http://snomed.info/sct','Endometrioid carcinoma of prostate (disorder)','278060005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_278065000','278065000','http://snomed.info/sct','Pancoast''s syndrome (disorder)','278065000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_278189009','278189009','http://snomed.info/sct','Hypergranular promyelocytic leukemia (disorder)','278189009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_278433008','278433008','http://snomed.info/sct','Malignant infiltration of soft tissue (disorder)','278433008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_278453007','278453007','http://snomed.info/sct','Acute biphenotypic leukemia (disorder)','278453007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_278491007','278491007','http://snomed.info/sct','Mixed seminoma teratoma of testis (disorder)','278491007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_280959007','280959007','http://snomed.info/sct','Malignant tumor of lacrimal drainage structure (disorder)','280959007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_28122003','28122003','http://snomed.info/sct','Pulmonary eosinophilic granuloma (disorder)','28122003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_281560004','281560004','http://snomed.info/sct','Neuroblastoma of brain (disorder)','281560004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_281561000','281561000','http://snomed.info/sct','Sacrococcygeal teratoma (disorder)','281561000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_281562007','281562007','http://snomed.info/sct','Adrenal neuroblastoma (disorder)','281562007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_281563002','281563002','http://snomed.info/sct','Thoracic neuroblastoma (disorder)','281563002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_281564008','281564008','http://snomed.info/sct','Pelvic neuroblastoma (disorder)','281564008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_281565009','281565009','http://snomed.info/sct','Paraspinal neuroblastoma (disorder)','281565009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_281566005','281566005','http://snomed.info/sct','Abdominothoracic neuroblastoma (disorder)','281566005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_281702006','281702006','http://snomed.info/sct','Tibial adamantinoma (disorder)','281702006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_285307007','285307007','http://snomed.info/sct','Squamous cell carcinoma of skin of upper lip (disorder)','285307007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_285308002','285308002','http://snomed.info/sct','Squamous cell carcinoma of skin of lower lip (disorder)','285308002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_285309005','285309005','http://snomed.info/sct','Squamous cell carcinoma of skin of cheek (disorder)','285309005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_285310000','285310000','http://snomed.info/sct','Carcinoma of anal canal (disorder)','285310000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_285312008','285312008','http://snomed.info/sct','Carcinoma of sigmoid colon (disorder)','285312008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_285420006','285420006','http://snomed.info/sct','Immunoglobulin A myeloma (disorder)','285420006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_285421005','285421005','http://snomed.info/sct','Immunoglobulin G myeloma (disorder)','285421005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_285422003','285422003','http://snomed.info/sct','Immunoglobulin D myeloma (disorder)','285422003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_285598005','285598005','http://snomed.info/sct','Metastasis to trachea of unknown primary (disorder)','285598005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_285603002','285603002','http://snomed.info/sct','Metastasis to bronchus of unknown primary (disorder)','285603002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_285604008','285604008','http://snomed.info/sct','Metastasis to lung of unknown primary (disorder)','285604008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_285605009','285605009','http://snomed.info/sct','Metastasis to pleura of unknown primary (disorder)','285605009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_285606005','285606005','http://snomed.info/sct','Metastasis to heart of unknown primary (disorder)','285606005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_285607001','285607001','http://snomed.info/sct','Metastasis to mediastinum of unknown primary (disorder)','285607001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_285608006','285608006','http://snomed.info/sct','Metastasis to thymus of unknown primary (disorder)','285608006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_285609003','285609003','http://snomed.info/sct','Metastasis to small intestine of unknown primary (disorder)','285609003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_285610008','285610008','http://snomed.info/sct','Metastasis to large intestine of unknown primary (disorder)','285610008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_285611007','285611007','http://snomed.info/sct','Metastasis to colon of unknown primary (disorder)','285611007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_285612000','285612000','http://snomed.info/sct','Metastasis to rectum of unknown primary (disorder)','285612000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_285613005','285613005','http://snomed.info/sct','Metastasis to liver of unknown primary (disorder)','285613005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_285614004','285614004','http://snomed.info/sct','Metastasis to pancreas of unknown primary (disorder)','285614004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_285615003','285615003','http://snomed.info/sct','Metastasis to spleen of unknown primary (disorder)','285615003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_285616002','285616002','http://snomed.info/sct','Metastasis to peritoneum of unknown primary (disorder)','285616002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_285617006','285617006','http://snomed.info/sct','Metastasis to retroperitoneum of unknown primary (disorder)','285617006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_285618001','285618001','http://snomed.info/sct','Metastasis to bone of unknown primary (disorder)','285618001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_285619009','285619009','http://snomed.info/sct','Metastasis to vertebral column of unknown primary (disorder)','285619009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_285631006','285631006','http://snomed.info/sct','Metastasis to skin of unknown primary (disorder)','285631006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_285633009','285633009','http://snomed.info/sct','Metastasis to soft tissue of unknown primary (disorder)','285633009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_285634003','285634003','http://snomed.info/sct','Metastasis to breast of unknown primary (disorder)','285634003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_285635002','285635002','http://snomed.info/sct','Metastasis to uterus of unknown primary (disorder)','285635002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_285637005','285637005','http://snomed.info/sct','Metastasis to ovary of unknown primary (disorder)','285637005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_285638000','285638000','http://snomed.info/sct','Metastasis to vagina of unknown primary (disorder)','285638000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_285639008','285639008','http://snomed.info/sct','Metastasis to kidney of unknown primary (disorder)','285639008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_285640005','285640005','http://snomed.info/sct','Metastasis to bladder of unknown primary (disorder)','285640005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_285641009','285641009','http://snomed.info/sct','Metastasis to brain of unknown primary (disorder)','285641009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_285642002','285642002','http://snomed.info/sct','Metastasis to eye of unknown primary (disorder)','285642002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_285643007','285643007','http://snomed.info/sct','Metastasis to adrenal gland of unknown primary (disorder)','285643007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_285644001','285644001','http://snomed.info/sct','Metastasis to lymph node of unknown primary (disorder)','285644001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_285645000','285645000','http://snomed.info/sct','Disseminated malignancy of unknown primary (disorder)','285645000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_285769009','285769009','http://snomed.info/sct','Acute promyelocytic leukemia - hypogranular variant (disorder)','285769009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_285776004','285776004','http://snomed.info/sct','Intermediate grade B-cell lymphoma (disorder)','285776004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_285839005','285839005','http://snomed.info/sct','Acute myelomonocytic leukemia - eosinophilic variant (disorder)','285839005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_286887005','286887005','http://snomed.info/sct','Carcinoma liver and/or biliary system (disorder)','286887005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_286889008','286889008','http://snomed.info/sct','Carcinoma of upper limb bones/scapula (disorder)','286889008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_286890004','286890004','http://snomed.info/sct','Carcinoma of lower limb bones (disorder)','286890004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_286891000','286891000','http://snomed.info/sct','Carcinoma of skin of head/neck (disorder)','286891000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_286893002','286893002','http://snomed.info/sct','Carcinoma of breast - upper, inner quadrant (disorder)','286893002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_286894008','286894008','http://snomed.info/sct','Carcinoma of breast - lower, inner quadrant (disorder)','286894008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_286895009','286895009','http://snomed.info/sct','Carcinoma of breast - upper, outer quadrant (disorder)','286895009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_286896005','286896005','http://snomed.info/sct','Carcinoma breast - lower, outer quadrant (disorder)','286896005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_286897001','286897001','http://snomed.info/sct','Carcinoma of breast - axillary tail (disorder)','286897001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_286899003','286899003','http://snomed.info/sct','Carcinoma of genital organ (disorder)','286899003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_286902000','286902000','http://snomed.info/sct','Secondary carcinoma of gastrointestinal tract (disorder)','286902000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_29421000119105','29421000119105','http://snomed.info/sct','Adenocarcinoma in adenomatous polyp (disorder)','29421000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_29431000119108','29431000119108','http://snomed.info/sct','Adenocarcinoma in villous adenoma (disorder)','29431000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_300988009','300988009','http://snomed.info/sct','Transitional cell carcinoma of ureter (disorder)','300988009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_301756000','301756000','http://snomed.info/sct','Adenocarcinoma of sigmoid colon (disorder)','301756000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_302815008','302815008','http://snomed.info/sct','Malignant tumor of frenum of lip (disorder)','302815008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_302816009','302816009','http://snomed.info/sct','Malignant tumor of soft tissue of head, face and neck (disorder)','302816009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_302835009','302835009','http://snomed.info/sct','Pheochromocytoma (disorder)','302835009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_302836005','302836005','http://snomed.info/sct','Lentigo maligna (disorder)','302836005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_302837001','302837001','http://snomed.info/sct','Lentigo maligna melanoma (disorder)','302837001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_302841002','302841002','http://snomed.info/sct','Malignant lymphoma - small lymphocytic (disorder)','302841002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_302842009','302842009','http://snomed.info/sct','Diffuse malignant lymphoma - centroblastic (disorder)','302842009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_302845006','302845006','http://snomed.info/sct','Nodular malignant lymphoma, lymphocytic - well differentiated (disorder)','302845006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_302847003','302847003','http://snomed.info/sct','Rhabdomyosarcoma (disorder)','302847003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_302848008','302848008','http://snomed.info/sct','Nodular malignant lymphoma, lymphocytic - intermediate differentiation (disorder)','302848008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_302849000','302849000','http://snomed.info/sct','Nephroblastoma (disorder)','302849000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_302851001','302851001','http://snomed.info/sct','Synovial sarcoma (disorder)','302851001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_302855005','302855005','http://snomed.info/sct','Subacute leukemia (disorder)','302855005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_302856006','302856006','http://snomed.info/sct','Aleukemic leukemia (disorder)','302856006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_303012000','303012000','http://snomed.info/sct','Malignant tumor of posterior wall of hypopharynx (disorder)','303012000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_303017006','303017006','http://snomed.info/sct','Malignant lymphoma, convoluted cell type (disorder)','303017006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_303055001','303055001','http://snomed.info/sct','Malignant lymphoma, follicular center cell (disorder)','303055001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_303056000','303056000','http://snomed.info/sct','Malignant lymphoma, follicular center cell, cleaved (disorder)','303056000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_303057009','303057009','http://snomed.info/sct','Malignant lymphoma, follicular center cell, non-cleaved (disorder)','303057009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_303194003','303194003','http://snomed.info/sct','Metastasis to head and neck lymph node (disorder)','303194003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_303201005','303201005','http://snomed.info/sct','Metastatic malignant neoplasm to multiple lymph nodes (disorder)','303201005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_30440004','30440004','http://snomed.info/sct','Lymphoma stage I (finding)','30440004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_304545002','304545002','http://snomed.info/sct','Adenocarcinoma of ileum (disorder)','304545002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_307216009','307216009','http://snomed.info/sct','Perforated carcinoma of esophagus (disorder)','307216009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_307219002','307219002','http://snomed.info/sct','Retroperitoneal sarcoma (disorder)','307219002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_307226002','307226002','http://snomed.info/sct','Metastatic adenocarcinoma of unknown origin (disorder)','307226002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_307340003','307340003','http://snomed.info/sct','Monosomy 7 syndrome (disorder)','307340003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_307341004','307341004','http://snomed.info/sct','Atypical hairy cell leukemia (disorder)','307341004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_307502000','307502000','http://snomed.info/sct','Squamous cell carcinoma of mouth (disorder)','307502000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_307576001','307576001','http://snomed.info/sct','Osteosarcoma of bone (disorder)','307576001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_307592006','307592006','http://snomed.info/sct','Basophilic leukemia (disorder)','307592006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_307593001','307593001','http://snomed.info/sct','Carcinomatosis (disorder)','307593001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_307599002','307599002','http://snomed.info/sct','Sebaceous adenocarcinoma (disorder)','307599002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_307601000','307601000','http://snomed.info/sct','Pseudomyxoma peritonei (disorder)','307601000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_307603002','307603002','http://snomed.info/sct','Malignant blue nevus of skin (disorder)','307603002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_307608006','307608006','http://snomed.info/sct','Ewing''s sarcoma of bone (disorder)','307608006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_307609003','307609003','http://snomed.info/sct','Adamantinoma of long bone (disorder)','307609003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_307610008','307610008','http://snomed.info/sct','Pilomatrix carcinoma of skin (disorder)','307610008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_307617006','307617006','http://snomed.info/sct','Neutrophilic leukemia (disorder)','307617006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_307622006','307622006','http://snomed.info/sct','Prolymphocytic lymphosarcoma (disorder)','307622006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_307623001','307623001','http://snomed.info/sct','Malignant lymphoma - lymphoplasmacytic (disorder)','307623001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_307624007','307624007','http://snomed.info/sct','Diffuse malignant lymphoma - centroblastic-centrocytic (disorder)','307624007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_307625008','307625008','http://snomed.info/sct','Malignant lymphoma - centrocytic (disorder)','307625008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_307633009','307633009','http://snomed.info/sct','Hodgkin''s disease, lymphocytic depletion, diffuse fibrosis (disorder)','307633009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_307634003','307634003','http://snomed.info/sct','Hodgkin''s disease, lymphocytic depletion, reticular type (disorder)','307634003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_307635002','307635002','http://snomed.info/sct','Hodgkin''s disease, nodular sclerosis - cellular phase (disorder)','307635002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_307636001','307636001','http://snomed.info/sct','Malignant lymphoma, mixed lymphocytic-histiocytic, nodular (disorder)','307636001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_307637005','307637005','http://snomed.info/sct','Malignant lymphoma, centroblastic-centrocytic, follicular (disorder)','307637005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_307646004','307646004','http://snomed.info/sct','Malignant lymphoma, lymphocytic, poorly differentiated, nodular (disorder)','307646004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_307647008','307647008','http://snomed.info/sct','Malignant lymphoma, centroblastic type, follicular (disorder)','307647008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_307649006','307649006','http://snomed.info/sct','Microglioma (disorder)','307649006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_307650006','307650006','http://snomed.info/sct','Histiocytic medullary reticulosis (disorder)','307650006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_307651005','307651005','http://snomed.info/sct','Primary myelofibrosis (disorder)','307651005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_308121000','308121000','http://snomed.info/sct','Follicular non-Hodgkin''s lymphoma (disorder)','308121000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_308860001','308860001','http://snomed.info/sct','Severe esophageal dysplasia (disorder)','308860001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_308879003','308879003','http://snomed.info/sct','Severe dysplasia of rectum (disorder)','308879003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_309245001','309245001','http://snomed.info/sct','Adenocarcinoma of uterus (disorder)','309245001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_31047003','31047003','http://snomed.info/sct','Lymphomatoid papulosis (disorder)','31047003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_310498001','310498001','http://snomed.info/sct','Malignant melanoma of back (disorder)','310498001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_310504009','310504009','http://snomed.info/sct','Primary malignant neoplasm of unknown site (disorder)','310504009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_310526005','310526005','http://snomed.info/sct','Malignant tumor of soft tissue of back (disorder)','310526005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_310599006','310599006','http://snomed.info/sct','Malignant neoplasm of canthus (disorder)','310599006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_311779007','311779007','http://snomed.info/sct','Malignant neoplasm of skin of scapular region (disorder)','311779007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_312104005','312104005','http://snomed.info/sct','Cholangiocarcinoma of biliary tract (disorder)','312104005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_312111009','312111009','http://snomed.info/sct','Carcinoma of ascending colon (disorder)','312111009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_312112002','312112002','http://snomed.info/sct','Carcinoma of transverse colon (disorder)','312112002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_312113007','312113007','http://snomed.info/sct','Carcinoma of descending colon (disorder)','312113007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_312114001','312114001','http://snomed.info/sct','Carcinoma of hepatic flexure (disorder)','312114001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_312115000','312115000','http://snomed.info/sct','Carcinoma of splenic flexure (disorder)','312115000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_312941005','312941005','http://snomed.info/sct','Melanoma-associated retinopathy (disorder)','312941005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_312949007','312949007','http://snomed.info/sct','Retinal pigment epithelial adenocarcinoma (disorder)','312949007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_313248004','313248004','http://snomed.info/sct','Malignant melanoma of chest wall (disorder)','313248004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_313249007','313249007','http://snomed.info/sct','Malignant neoplasm of upper eyelid (disorder)','313249007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_313250007','313250007','http://snomed.info/sct','Malignant neoplasm of lower eyelid (disorder)','313250007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_313351009','313351009','http://snomed.info/sct','Bowen''s disease of vulva (disorder)','313351009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_313353007','313353007','http://snomed.info/sct','Squamous cell carcinoma of bronchus in left lower lobe (disorder)','313353007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_313354001','313354001','http://snomed.info/sct','Squamous cell carcinoma of bronchus in left upper lobe (disorder)','313354001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_313355000','313355000','http://snomed.info/sct','Squamous cell carcinoma of bronchus in right lower lobe (disorder)','313355000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_313356004','313356004','http://snomed.info/sct','Squamous cell carcinoma of bronchus of middle lobe of right lung (disorder)','313356004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_313357008','313357008','http://snomed.info/sct','Squamous cell carcinoma of bronchus in right upper lobe (disorder)','313357008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_313427003','313427003','http://snomed.info/sct','Lambda light chain myeloma (disorder)','313427003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_313428008','313428008','http://snomed.info/sct','Seminoma of undescended testis (disorder)','313428008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_313429000','313429000','http://snomed.info/sct','Seminoma of descended testis (disorder)','313429000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_314191009','314191009','http://snomed.info/sct','Cystadenocarcinoma of ovary (disorder)','314191009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_314408000','314408000','http://snomed.info/sct','Leukemic infiltrate of choroid (disorder)','314408000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_314418005','314418005','http://snomed.info/sct','Leukemic infiltrate of retina (disorder)','314418005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_314951005','314951005','http://snomed.info/sct','Local recurrence of malignant tumor of tongue (disorder)','314951005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_314952003','314952003','http://snomed.info/sct','Local recurrence of malignant tumor of buccal cavity (disorder)','314952003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_314953008','314953008','http://snomed.info/sct','Local recurrence of malignant tumor of thyroid gland (disorder)','314953008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_314954002','314954002','http://snomed.info/sct','Local recurrence of malignant tumor of lung (disorder)','314954002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_314955001','314955001','http://snomed.info/sct','Local recurrence of malignant tumor of breast (disorder)','314955001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_314960002','314960002','http://snomed.info/sct','Local recurrence of malignant tumor of esophagus (disorder)','314960002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_314961003','314961003','http://snomed.info/sct','Local recurrence of malignant tumor of stomach (disorder)','314961003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_314962005','314962005','http://snomed.info/sct','Local recurrence of malignant tumor of gallbladder (disorder)','314962005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_314963000','314963000','http://snomed.info/sct','Local recurrence of malignant tumor of liver (disorder)','314963000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_314964006','314964006','http://snomed.info/sct','Local recurrence of malignant tumor of pancreas (disorder)','314964006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_314965007','314965007','http://snomed.info/sct','Local recurrence of malignant tumor of colon (disorder)','314965007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_314966008','314966008','http://snomed.info/sct','Local recurrence of malignant tumor of rectum (disorder)','314966008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_314967004','314967004','http://snomed.info/sct','Local recurrence of malignant tumor of kidney (disorder)','314967004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_314968009','314968009','http://snomed.info/sct','Local recurrence of malignant tumor of urinary bladder (disorder)','314968009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_314969001','314969001','http://snomed.info/sct','Local recurrence of malignant tumor of prostate (disorder)','314969001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_314970000','314970000','http://snomed.info/sct','Local recurrence of malignant tumor of cervix (disorder)','314970000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_314973003','314973003','http://snomed.info/sct','Local recurrence of malignant tumor of bone (disorder)','314973003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_314974009','314974009','http://snomed.info/sct','Local recurrence of malignant tumor of soft tissue (disorder)','314974009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_314975005','314975005','http://snomed.info/sct','Local recurrence of malignant tumor of skin (disorder)','314975005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_314976006','314976006','http://snomed.info/sct','Local recurrence of malignant melanoma of skin (disorder)','314976006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_314987003','314987003','http://snomed.info/sct','Metastasis from malignant melanoma of skin (disorder)','314987003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_314988008','314988008','http://snomed.info/sct','Metastasis from malignant tumor of skin (disorder)','314988008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_314989000','314989000','http://snomed.info/sct','Metastasis from malignant tumor of soft tissues (disorder)','314989000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_314990009','314990009','http://snomed.info/sct','Metastasis from malignant tumor of bone (disorder)','314990009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_314991008','314991008','http://snomed.info/sct','Metastasis from malignant tumor of adrenal gland (disorder)','314991008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_314992001','314992001','http://snomed.info/sct','Metastasis from malignant tumor of cervix (disorder)','314992001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_314993006','314993006','http://snomed.info/sct','Metastasis from malignant tumor of uterus (disorder)','314993006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_314994000','314994000','http://snomed.info/sct','Metastasis from malignant tumor of prostate (disorder)','314994000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_314995004','314995004','http://snomed.info/sct','Metastasis from malignant tumor of bladder (disorder)','314995004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_314996003','314996003','http://snomed.info/sct','Metastasis from malignant tumor of kidney (disorder)','314996003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_314997007','314997007','http://snomed.info/sct','Metastasis from malignant tumor of rectum (disorder)','314997007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_314998002','314998002','http://snomed.info/sct','Metastasis from malignant tumor of colon (disorder)','314998002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_314999005','314999005','http://snomed.info/sct','Metastasis from malignant tumor of pancreas (disorder)','314999005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_315000005','315000005','http://snomed.info/sct','Metastasis from malignant tumor of liver (disorder)','315000005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_315001009','315001009','http://snomed.info/sct','Metastasis from malignant tumor of gallbladder (disorder)','315001009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_315002002','315002002','http://snomed.info/sct','Metastasis from malignant tumor of stomach (disorder)','315002002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_315003007','315003007','http://snomed.info/sct','Metastasis from malignant tumor of esophagus (disorder)','315003007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_315004001','315004001','http://snomed.info/sct','Metastasis from malignant tumor of breast (disorder)','315004001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_315005000','315005000','http://snomed.info/sct','Metastasis from malignant tumor of bronchus (disorder)','315005000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_315006004','315006004','http://snomed.info/sct','Metastasis from malignant neoplasm of lung (disorder)','315006004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_315007008','315007008','http://snomed.info/sct','Metastasis from malignant tumor of thyroid (disorder)','315007008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_315008003','315008003','http://snomed.info/sct','Metastasis from malignant tumor of buccal cavity (disorder)','315008003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_315009006','315009006','http://snomed.info/sct','Metastasis from malignant tumor of tongue (disorder)','315009006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_315036008','315036008','http://snomed.info/sct','Melanoma in situ of back of hand (disorder)','315036008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_315058005','315058005','http://snomed.info/sct','Hereditary nonpolyposis colon cancer (disorder)','315058005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_315230006','315230006','http://snomed.info/sct','Melanoma in situ of back (disorder)','315230006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_32278006','32278006','http://snomed.info/sct','Myeloma kidney (disorder)','32278006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_326072005','326072005','http://snomed.info/sct','Carcinoma of head of pancreas (disorder)','326072005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_33581000119109','33581000119109','http://snomed.info/sct','Primary malignant neoplasm of extradural spinal cord (disorder)','33581000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_350621000119100','350621000119100','http://snomed.info/sct','Primary malignant neoplasm of right vestibulocochlear nerve (disorder)','350621000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_350631000119102','350631000119102','http://snomed.info/sct','Primary malignant neoplasm of left vestibulocochlear nerve (disorder)','350631000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_350681000119101','350681000119101','http://snomed.info/sct','Primary malignant neoplasm of adrenal medulla of right adrenal gland (disorder)','350681000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_350801000119105','350801000119105','http://snomed.info/sct','Primary malignant neoplasm of left adrenal cortex (disorder)','350801000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_350851000119109','350851000119109','http://snomed.info/sct','Primary malignant neoplasm of adrenal medulla of left adrenal gland (disorder)','350851000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_350861000119106','350861000119106','http://snomed.info/sct','Primary malignant neoplasm of right adrenal gland (disorder)','350861000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_350881000119102','350881000119102','http://snomed.info/sct','Primary malignant neoplasm of right adrenal cortex (disorder)','350881000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_350921000119109','350921000119109','http://snomed.info/sct','Primary malignant neoplasm of left adrenal gland (disorder)','350921000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_350951000119101','350951000119101','http://snomed.info/sct','B-cell lymphoma of intra-abdominal lymph nodes (disorder)','350951000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_351041000119109','351041000119109','http://snomed.info/sct','Primary malignant neoplasm of left upper limb (disorder)','351041000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_351051000119106','351051000119106','http://snomed.info/sct','Primary malignant neoplasm of right upper limb (disorder)','351051000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_351211000119104','351211000119104','http://snomed.info/sct','B-cell lymphoma of lymph nodes of multiple sites (disorder)','351211000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_351461000119100','351461000119100','http://snomed.info/sct','Merkel cell carcinoma of right lower limb (disorder)','351461000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_351961000119109','351961000119109','http://snomed.info/sct','Malignant melanoma of skin of right upper limb (disorder)','351961000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_352001000119100','352001000119100','http://snomed.info/sct','Malignant melanoma of skin of right lower limb (disorder)','352001000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_352071000119105','352071000119105','http://snomed.info/sct','Merkel cell carcinoma of left lower limb (disorder)','352071000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_352121000119105','352121000119105','http://snomed.info/sct','Melanoma in situ of right ear (disorder)','352121000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_352161000119100','352161000119100','http://snomed.info/sct','Melanoma in situ of right upper limb (disorder)','352161000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_352191000119107','352191000119107','http://snomed.info/sct','Melanoma in situ of right lower limb (disorder)','352191000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_352201000119105','352201000119105','http://snomed.info/sct','Malignant melanoma of skin of left upper limb (disorder)','352201000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_352231000119103','352231000119103','http://snomed.info/sct','Primary malignant neoplasm of soft tissue of left upper extremity (disorder)','352231000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_352251000119109','352251000119109','http://snomed.info/sct','Small lymphocytic B-cell lymphoma of lymph nodes of multiple sites (disorder)','352251000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_352301000119103','352301000119103','http://snomed.info/sct','Primary malignant neoplasm of soft tissue of right upper extremity (disorder)','352301000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_352311000119100','352311000119100','http://snomed.info/sct','Primary malignant neoplasm of soft tissue of right lower limb (disorder)','352311000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_352321000119107','352321000119107','http://snomed.info/sct','Primary malignant neoplasm of soft tissue of left lower limb (disorder)','352321000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_352331000119105','352331000119105','http://snomed.info/sct','Primary malignant neoplasm of left spermatic cord (disorder)','352331000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_352341000119101','352341000119101','http://snomed.info/sct','Primary malignant neoplasm of right spermatic cord (disorder)','352341000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_352411000119109','352411000119109','http://snomed.info/sct','Small lymphocytic B-cell lymphoma of intra-abdominal lymph nodes (disorder)','352411000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_352551000119106','352551000119106','http://snomed.info/sct','Primary malignant neoplasm of left descended testis (disorder)','352551000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_352581000119104','352581000119104','http://snomed.info/sct','Primary malignant neoplasm of right descended testis (disorder)','352581000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_352701000119102','352701000119102','http://snomed.info/sct','Primary malignant neoplasm of neck of pancreas (disorder)','352701000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_352731000119109','352731000119109','http://snomed.info/sct','Primary malignant neoplasm of peripheral nerves of left lower limb (disorder)','352731000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_352751000119103','352751000119103','http://snomed.info/sct','Primary malignant neoplasm of peripheral nerves of right upper limb (disorder)','352751000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_352771000119107','352771000119107','http://snomed.info/sct','Primary malignant neoplasm of peripheral nerves of right lower limb (disorder)','352771000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_352791000119108','352791000119108','http://snomed.info/sct','Non-Hodgkin''s lymphoma of lymph nodes of multiple sites (disorder)','352791000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_352911000119101','352911000119101','http://snomed.info/sct','Primary malignant neoplasm of left optic nerve (disorder)','352911000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_352921000119108','352921000119108','http://snomed.info/sct','Primary malignant neoplasm of right optic nerve (disorder)','352921000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_352961000119103','352961000119103','http://snomed.info/sct','Primary malignant neoplasm of right renal pelvis (disorder)','352961000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_353061000119107','353061000119107','http://snomed.info/sct','Primary malignant neoplasm of retina of right eye (disorder)','353061000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_353081000119103','353081000119103','http://snomed.info/sct','Primary malignant neoplasm of retina of left eye (disorder)','353081000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_353111000119108','353111000119108','http://snomed.info/sct','Primary malignant neoplasm of left renal pelvis (disorder)','353111000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_353421000119109','353421000119109','http://snomed.info/sct','Primary malignant neoplasm of axillary tail of left female breast (disorder)','353421000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_353431000119107','353431000119107','http://snomed.info/sct','Primary malignant neoplasm of female left breast (disorder)','353431000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_353441000119103','353441000119103','http://snomed.info/sct','Primary malignant neoplasm of central portion of female left breast (disorder)','353441000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_353501000119104','353501000119104','http://snomed.info/sct','Primary malignant neoplasm of axillary tail of right female breast (disorder)','353501000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_353511000119101','353511000119101','http://snomed.info/sct','Primary malignant neoplasm of female right breast (disorder)','353511000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_353521000119108','353521000119108','http://snomed.info/sct','Primary malignant neoplasm of central portion of female right breast (disorder)','353521000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_353561000119103','353561000119103','http://snomed.info/sct','Metastatic malignant neoplasm to right lung (disorder)','353561000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_353571000119109','353571000119109','http://snomed.info/sct','Metastatic malignant neoplasm to right adrenal gland (disorder)','353571000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_353661000119102','353661000119102','http://snomed.info/sct','Overlapping primary malignant neoplasm of bone and articular cartilage of lower limb (disorder)','353661000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_353671000119108','353671000119108','http://snomed.info/sct','Overlapping primary malignant neoplasm of bone and articular cartilage of right upper limb (disorder)','353671000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_353721000119100','353721000119100','http://snomed.info/sct','Metastatic malignant neoplasm to left adrenal gland (disorder)','353721000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_353741000119106','353741000119106','http://snomed.info/sct','Metastatic malignant neoplasm to left lung (disorder)','353741000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_353761000119105','353761000119105','http://snomed.info/sct','Primary malignant neoplasm of cornea of left eye (disorder)','353761000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_353791000119103','353791000119103','http://snomed.info/sct','Primary malignant neoplasm of conjunctiva of right eye (disorder)','353791000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_353801000119102','353801000119102','http://snomed.info/sct','Primary malignant neoplasm of choroid of right eye (disorder)','353801000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_353811000119104','353811000119104','http://snomed.info/sct','Primary malignant neoplasm of cornea of right eye (disorder)','353811000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_353841000119100','353841000119100','http://snomed.info/sct','Primary malignant neoplasm of conjunctiva of left eye (disorder)','353841000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_354331000119104','354331000119104','http://snomed.info/sct','Primary malignant neoplasm of left lower limb (disorder)','354331000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_354341000119108','354341000119108','http://snomed.info/sct','Lobular carcinoma in situ of left breast (disorder)','354341000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_354351000119105','354351000119105','http://snomed.info/sct','Primary malignant neoplasm of left kidney (disorder)','354351000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_354361000119107','354361000119107','http://snomed.info/sct','Primary malignant neoplasm of right kidney (disorder)','354361000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_354421000119107','354421000119107','http://snomed.info/sct','Primary malignant neoplasm of right lower limb (disorder)','354421000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_354471000119108','354471000119108','http://snomed.info/sct','Lobular carcinoma in situ of right breast (disorder)','354471000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_354491000119109','354491000119109','http://snomed.info/sct','Primary malignant neoplasm of left male breast (disorder)','354491000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_354591000119108','354591000119108','http://snomed.info/sct','Primary malignant neoplasm of right male breast (disorder)','354591000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_354621000119105','354621000119105','http://snomed.info/sct','Overlapping primary malignant neoplasm of bone and articular cartilage of left upper limb (disorder)','354621000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_354641000119104','354641000119104','http://snomed.info/sct','Primary malignant neoplasm of bone of left upper limb (disorder)','354641000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_354651000119102','354651000119102','http://snomed.info/sct','Primary malignant neoplasm of bone of left lower limb (disorder)','354651000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_354671000119106','354671000119106','http://snomed.info/sct','Primary malignant neoplasm of bone of right upper limb (disorder)','354671000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_354681000119109','354681000119109','http://snomed.info/sct','Primary malignant neoplasm of bone of right lower limb (disorder)','354681000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_354721000119103','354721000119103','http://snomed.info/sct','Primary malignant neoplasm of left main bronchus (disorder)','354721000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_354731000119100','354731000119100','http://snomed.info/sct','Primary malignant neoplasm of right main bronchus (disorder)','354731000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_354851000119101','354851000119101','http://snomed.info/sct','Follicular non-Hodgkin''s lymphoma of lymph nodes of multiple sites (disorder)','354851000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_359619007','359619007','http://snomed.info/sct','Pinealoma (disorder)','359619007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_359631009','359631009','http://snomed.info/sct','Acute myeloid leukemia, minimal differentiation, FAB M0 (disorder)','359631009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_359640008','359640008','http://snomed.info/sct','Acute myeloid leukemia without maturation, FAB M1 (disorder)','359640008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_359648001','359648001','http://snomed.info/sct','Acute myeloid leukemia with maturation, FAB M2 (disorder)','359648001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_359780007','359780007','http://snomed.info/sct','Metastatic malignant neoplasm to lateral axillary lymph nodes (disorder)','359780007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_359782004','359782004','http://snomed.info/sct','Metastatic malignant neoplasm to apex of urinary bladder (disorder)','359782004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_359785002','359785002','http://snomed.info/sct','Metastatic malignant neoplasm to dome of urinary bladder (disorder)','359785002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_359987004','359987004','http://snomed.info/sct','Krukenberg tumor (disorder)','359987004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363346000','363346000','http://snomed.info/sct','Malignant neoplastic disease (disorder)','363346000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363348004','363348004','http://snomed.info/sct','Malignant tumor of lip (disorder)','363348004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363349007','363349007','http://snomed.info/sct','Malignant tumor of stomach (disorder)','363349007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363350007','363350007','http://snomed.info/sct','Malignant tumor of cecum (disorder)','363350007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363351006','363351006','http://snomed.info/sct','Malignant tumor of rectum (disorder)','363351006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363352004','363352004','http://snomed.info/sct','Malignant tumor of anal canal (disorder)','363352004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363353009','363353009','http://snomed.info/sct','Malignant tumor of gallbladder (disorder)','363353009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363354003','363354003','http://snomed.info/sct','Malignant tumor of cervix (disorder)','363354003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363355002','363355002','http://snomed.info/sct','Malignant tumor of adrenal gland (disorder)','363355002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363357005','363357005','http://snomed.info/sct','Malignant neoplasm of ill-defined site (disorder)','363357005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363358000','363358000','http://snomed.info/sct','Malignant tumor of lung (disorder)','363358000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363359008','363359008','http://snomed.info/sct','Malignant tumor of middle ear (disorder)','363359008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363360003','363360003','http://snomed.info/sct','Malignant tumor of anterior two-thirds of tongue (disorder)','363360003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363363001','363363001','http://snomed.info/sct','Malignant tumor of soft tissue of shoulder (disorder)','363363001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363364007','363364007','http://snomed.info/sct','Malignant tumor of soft tissue of hip (disorder)','363364007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363365008','363365008','http://snomed.info/sct','Malignant tumor of soft tissue of thorax (disorder)','363365008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363366009','363366009','http://snomed.info/sct','Malignant tumor of soft tissue of pelvis (disorder)','363366009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363367000','363367000','http://snomed.info/sct','Malignant tumor of vulva (disorder)','363367000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363368005','363368005','http://snomed.info/sct','Carcinoma of body of pancreas (disorder)','363368005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363369002','363369002','http://snomed.info/sct','Carcinoma of tail of pancreas (disorder)','363369002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363370001','363370001','http://snomed.info/sct','Malignant neoplasm of mesentery (disorder)','363370001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363372009','363372009','http://snomed.info/sct','Malignant tumor of vermilion border of upper lip (disorder)','363372009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363373004','363373004','http://snomed.info/sct','Malignant tumor of vermilion border of lower lip (disorder)','363373004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363374005','363374005','http://snomed.info/sct','Malignant tumor of commissure of lip (disorder)','363374005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363375006','363375006','http://snomed.info/sct','Malignant tumor of tongue (disorder)','363375006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363376007','363376007','http://snomed.info/sct','Malignant tumor of base of tongue (disorder)','363376007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363377003','363377003','http://snomed.info/sct','Malignant tumor of lingual tonsil (disorder)','363377003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363378008','363378008','http://snomed.info/sct','Malignant tumor of major salivary gland (disorder)','363378008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363379000','363379000','http://snomed.info/sct','Malignant tumor of parotid gland (disorder)','363379000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363380002','363380002','http://snomed.info/sct','Malignant tumor of submandibular gland (disorder)','363380002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363381003','363381003','http://snomed.info/sct','Malignant tumor of sublingual gland (disorder)','363381003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363382005','363382005','http://snomed.info/sct','Malignant tumor of gum (disorder)','363382005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363383000','363383000','http://snomed.info/sct','Malignant tumor of upper gingiva (disorder)','363383000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363384006','363384006','http://snomed.info/sct','Malignant tumor of lower gingiva (disorder)','363384006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363385007','363385007','http://snomed.info/sct','Malignant tumor of floor of mouth (disorder)','363385007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363386008','363386008','http://snomed.info/sct','Malignant tumor of buccal mucosa (disorder)','363386008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363387004','363387004','http://snomed.info/sct','Malignant tumor of hard palate (disorder)','363387004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363388009','363388009','http://snomed.info/sct','Malignant tumor of soft palate (disorder)','363388009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363389001','363389001','http://snomed.info/sct','Malignant tumor of uvula (disorder)','363389001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363390005','363390005','http://snomed.info/sct','Malignant tumor of palate (disorder)','363390005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363391009','363391009','http://snomed.info/sct','Malignant tumor of retromolar area (disorder)','363391009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363392002','363392002','http://snomed.info/sct','Malignant tumor of oropharynx (disorder)','363392002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363393007','363393007','http://snomed.info/sct','Malignant tumor of tonsil (disorder)','363393007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363394001','363394001','http://snomed.info/sct','Malignant tumor of tonsillar fossa (disorder)','363394001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363395000','363395000','http://snomed.info/sct','Malignant tumor of vallecula (disorder)','363395000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363396004','363396004','http://snomed.info/sct','Malignant tumor of branchial cleft (disorder)','363396004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363398003','363398003','http://snomed.info/sct','Malignant tumor of lateral wall of nasopharynx (disorder)','363398003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363399006','363399006','http://snomed.info/sct','Malignant tumor of hypopharynx (disorder)','363399006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363400004','363400004','http://snomed.info/sct','Malignant tumor of postcricoid region (disorder)','363400004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363401000','363401000','http://snomed.info/sct','Malignant tumor of pyriform fossa (disorder)','363401000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363402007','363402007','http://snomed.info/sct','Malignant tumor of esophagus (disorder)','363402007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363403002','363403002','http://snomed.info/sct','Malignant tumor of duodenum (disorder)','363403002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363404008','363404008','http://snomed.info/sct','Malignant tumor of jejunum (disorder)','363404008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363405009','363405009','http://snomed.info/sct','Malignant tumor of ileum (disorder)','363405009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363406005','363406005','http://snomed.info/sct','Malignant neoplasm of colon (disorder)','363406005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363407001','363407001','http://snomed.info/sct','Malignant tumor of hepatic flexure (disorder)','363407001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363408006','363408006','http://snomed.info/sct','Malignant tumor of transverse colon (disorder)','363408006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363409003','363409003','http://snomed.info/sct','Malignant tumor of descending colon (disorder)','363409003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363410008','363410008','http://snomed.info/sct','Malignant tumor of sigmoid colon (disorder)','363410008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363411007','363411007','http://snomed.info/sct','Malignant neoplasm of appendix (disorder)','363411007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363412000','363412000','http://snomed.info/sct','Malignant tumor of ascending colon (disorder)','363412000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363413005','363413005','http://snomed.info/sct','Malignant tumor of splenic flexure (disorder)','363413005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363414004','363414004','http://snomed.info/sct','Malignant tumor of rectosigmoid junction (disorder)','363414004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363415003','363415003','http://snomed.info/sct','Malignant tumor of biliary tract (disorder)','363415003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363416002','363416002','http://snomed.info/sct','Malignant tumor of extrahepatic bile duct (disorder)','363416002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363417006','363417006','http://snomed.info/sct','Malignant tumor of ampulla of Vater (disorder)','363417006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363418001','363418001','http://snomed.info/sct','Malignant tumor of pancreas (disorder)','363418001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363419009','363419009','http://snomed.info/sct','Malignant tumor of head of pancreas (disorder)','363419009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363420003','363420003','http://snomed.info/sct','Malignant retroperitoneal tumor (disorder)','363420003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363421004','363421004','http://snomed.info/sct','Malignant neoplasm of omentum (disorder)','363421004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363422006','363422006','http://snomed.info/sct','Malignant tumor of nasal cavity (disorder)','363422006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363423001','363423001','http://snomed.info/sct','Malignant tumor of nasal septum (disorder)','363423001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363424007','363424007','http://snomed.info/sct','Malignant tumor of mastoid air cells (disorder)','363424007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363425008','363425008','http://snomed.info/sct','Malignant tumor of maxillary sinus (disorder)','363425008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363426009','363426009','http://snomed.info/sct','Malignant tumor of ethmoid sinus (disorder)','363426009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363427000','363427000','http://snomed.info/sct','Malignant tumor of frontal sinus (disorder)','363427000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363428005','363428005','http://snomed.info/sct','Malignant tumor of sphenoid sinus (disorder)','363428005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363429002','363429002','http://snomed.info/sct','Malignant tumor of larynx (disorder)','363429002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363430007','363430007','http://snomed.info/sct','Malignant tumor of subglottis (disorder)','363430007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363431006','363431006','http://snomed.info/sct','Malignant tumor of laryngeal cartilage (disorder)','363431006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363432004','363432004','http://snomed.info/sct','Malignant tumor of trachea (disorder)','363432004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363433009','363433009','http://snomed.info/sct','Malignant tumor of pleura (disorder)','363433009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363434003','363434003','http://snomed.info/sct','Malignant tumor of thymus (disorder)','363434003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363435002','363435002','http://snomed.info/sct','Malignant tumor of heart (disorder)','363435002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363436001','363436001','http://snomed.info/sct','Malignant tumor of endocardium (disorder)','363436001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363437005','363437005','http://snomed.info/sct','Malignant tumor of myocardium (disorder)','363437005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363438000','363438000','http://snomed.info/sct','Malignant neoplasm of vertebral column (disorder)','363438000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363439008','363439008','http://snomed.info/sct','Malignant tumor of soft tissue of head (disorder)','363439008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363440005','363440005','http://snomed.info/sct','Malignant tumor of soft tissue of face (disorder)','363440005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363441009','363441009','http://snomed.info/sct','Malignant tumor of soft tissue of neck (disorder)','363441009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363443007','363443007','http://snomed.info/sct','Malignant tumor of ovary (disorder)','363443007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363444001','363444001','http://snomed.info/sct','Malignant tumor of fallopian tube (disorder)','363444001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363445000','363445000','http://snomed.info/sct','Malignant tumor of vagina (disorder)','363445000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363446004','363446004','http://snomed.info/sct','Malignant neoplasm of labia majora (disorder)','363446004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363447008','363447008','http://snomed.info/sct','Malignant neoplasm of labia minora (disorder)','363447008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363449006','363449006','http://snomed.info/sct','Malignant tumor of testis (disorder)','363449006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363450006','363450006','http://snomed.info/sct','Malignant tumor of foreskin (disorder)','363450006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363451005','363451005','http://snomed.info/sct','Malignant tumor of glans penis (disorder)','363451005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363452003','363452003','http://snomed.info/sct','Malignant tumor of epididymis (disorder)','363452003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363453008','363453008','http://snomed.info/sct','Malignant tumor of spermatic cord (disorder)','363453008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363454002','363454002','http://snomed.info/sct','Malignant tumor of scrotum (disorder)','363454002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363456000','363456000','http://snomed.info/sct','Malignant tumor of urachus (disorder)','363456000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363457009','363457009','http://snomed.info/sct','Malignant tumor of renal pelvis (disorder)','363457009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363458004','363458004','http://snomed.info/sct','Malignant tumor of ureter (disorder)','363458004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363459007','363459007','http://snomed.info/sct','Malignant tumor of urethra (disorder)','363459007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363460002','363460002','http://snomed.info/sct','Malignant tumor of paraurethral gland (disorder)','363460002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363461003','363461003','http://snomed.info/sct','Malignant tumor of eye (disorder)','363461003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363462005','363462005','http://snomed.info/sct','Malignant tumor of orbit (disorder)','363462005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363463000','363463000','http://snomed.info/sct','Malignant tumor of conjunctiva (disorder)','363463000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363464006','363464006','http://snomed.info/sct','Malignant tumor of cornea (disorder)','363464006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363465007','363465007','http://snomed.info/sct','Malignant tumor of retina (disorder)','363465007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363466008','363466008','http://snomed.info/sct','Malignant tumor of choroid (disorder)','363466008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363467004','363467004','http://snomed.info/sct','Malignant neoplasm of frontal lobe (disorder)','363467004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363468009','363468009','http://snomed.info/sct','Malignant neoplasm of temporal lobe (disorder)','363468009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363469001','363469001','http://snomed.info/sct','Malignant neoplasm of parietal lobe (disorder)','363469001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363470000','363470000','http://snomed.info/sct','Malignant neoplasm of occipital lobe (disorder)','363470000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363471001','363471001','http://snomed.info/sct','Malignant neoplasm of cerebral ventricles (disorder)','363471001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363473003','363473003','http://snomed.info/sct','Malignant neoplasm of brainstem (disorder)','363473003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363474009','363474009','http://snomed.info/sct','Malignant neoplasm of cerebral meninges (disorder)','363474009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363475005','363475005','http://snomed.info/sct','Malignant tumor of spinal cord (disorder)','363475005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363476006','363476006','http://snomed.info/sct','Malignant neoplasm of spinal meninges (disorder)','363476006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363477002','363477002','http://snomed.info/sct','Malignant neoplasm of cauda equina (disorder)','363477002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363478007','363478007','http://snomed.info/sct','Malignant tumor of thyroid gland (disorder)','363478007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363481002','363481002','http://snomed.info/sct','Malignant tumor of parathyroid gland (disorder)','363481002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363482009','363482009','http://snomed.info/sct','Malignant tumor of pituitary gland (disorder)','363482009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363483004','363483004','http://snomed.info/sct','Malignant tumor of pineal gland (disorder)','363483004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363484005','363484005','http://snomed.info/sct','Malignant tumor of pelvis (disorder)','363484005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363485006','363485006','http://snomed.info/sct','Malignant tumor of minor salivary gland (disorder)','363485006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363486007','363486007','http://snomed.info/sct','Malignant tumor of vocal cord (disorder)','363486007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363487003','363487003','http://snomed.info/sct','Malignant tumor of aryepiglottic fold - laryngeal aspect (disorder)','363487003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363488008','363488008','http://snomed.info/sct','Malignant tumor of false cord (disorder)','363488008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363489000','363489000','http://snomed.info/sct','Malignant tumor of neck (disorder)','363489000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363490009','363490009','http://snomed.info/sct','Malignant tumor of anus (disorder)','363490009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363491008','363491008','http://snomed.info/sct','Malignant tumor of cloacogenic zone (disorder)','363491008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363492001','363492001','http://snomed.info/sct','Malignant tumor of peritoneum (disorder)','363492001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363493006','363493006','http://snomed.info/sct','Malignant tumor of bronchus (disorder)','363493006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363494000','363494000','http://snomed.info/sct','Malignant tumor of mediastinum (disorder)','363494000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363495004','363495004','http://snomed.info/sct','Malignant tumor of muscle (disorder)','363495004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363496003','363496003','http://snomed.info/sct','Malignant tumor of soft tissue of abdomen (disorder)','363496003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363497007','363497007','http://snomed.info/sct','Malignant tumor of meninges (disorder)','363497007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363498002','363498002','http://snomed.info/sct','Malignant tumor of optic nerve (disorder)','363498002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363499005','363499005','http://snomed.info/sct','Malignant tumor of spleen (disorder)','363499005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363500001','363500001','http://snomed.info/sct','Multiple malignancy (disorder)','363500001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363501002','363501002','http://snomed.info/sct','Malignant tumor of face (disorder)','363501002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363502009','363502009','http://snomed.info/sct','Malignant tumor of axilla (disorder)','363502009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363503004','363503004','http://snomed.info/sct','Malignant tumor of upper limb (disorder)','363503004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363504005','363504005','http://snomed.info/sct','Malignant tumor of lower limb (disorder)','363504005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363505006','363505006','http://snomed.info/sct','Malignant tumor of oral cavity (disorder)','363505006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363506007','363506007','http://snomed.info/sct','Malignant tumor of nasal sinuses (disorder)','363506007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363507003','363507003','http://snomed.info/sct','Malignant neoplasm of pharynx (disorder)','363507003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363508008','363508008','http://snomed.info/sct','Malignant tumor of intestine (disorder)','363508008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363509000','363509000','http://snomed.info/sct','Malignant tumor of small intestine (disorder)','363509000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363510005','363510005','http://snomed.info/sct','Malignant tumor of large intestine (disorder)','363510005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363514001','363514001','http://snomed.info/sct','Malignant tumor of female genital organ (disorder)','363514001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363515000','363515000','http://snomed.info/sct','Malignant tumor of male genital organ (disorder)','363515000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363516004','363516004','http://snomed.info/sct','Malignant tumor of penis (disorder)','363516004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363517008','363517008','http://snomed.info/sct','Malignant tumor of urinary tract proper (disorder)','363517008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363518003','363518003','http://snomed.info/sct','Malignant tumor of kidney (disorder)','363518003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_363745004','363745004','http://snomed.info/sct','Primary malignant neoplasm of gastrointestinal tract (disorder)','363745004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369448007','369448007','http://snomed.info/sct','Malignant tumor involving rectum by direct extension from endometrium (disorder)','369448007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369449004','369449004','http://snomed.info/sct','Malignant tumor involving rectum by direct extension from fallopian tube (disorder)','369449004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369450004','369450004','http://snomed.info/sct','Malignant tumor involving rectum by direct extension from ovary (disorder)','369450004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369451000','369451000','http://snomed.info/sct','Malignant tumor involving rectum by direct extension from prostate (disorder)','369451000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369452007','369452007','http://snomed.info/sct','Malignant tumor involving rectum by direct extension from uterine cervix (disorder)','369452007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369453002','369453002','http://snomed.info/sct','Malignant tumor involving rectum by direct extension from uterus (disorder)','369453002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369454008','369454008','http://snomed.info/sct','Malignant tumor involving rectum by direct extension from vagina (disorder)','369454008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369455009','369455009','http://snomed.info/sct','Malignant tumor involving rectum by separate metastasis from endometrium (disorder)','369455009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369456005','369456005','http://snomed.info/sct','Malignant tumor involving rectum by separate metastasis from fallopian tube (disorder)','369456005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369457001','369457001','http://snomed.info/sct','Malignant tumor involving rectum by separate metastasis from ovary (disorder)','369457001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369458006','369458006','http://snomed.info/sct','Malignant tumor involving rectum by separate metastasis from prostate (disorder)','369458006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369459003','369459003','http://snomed.info/sct','Malignant tumor involving rectum by separate metastasis from uterine cervix (disorder)','369459003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369460008','369460008','http://snomed.info/sct','Malignant tumor involving rectum by separate metastasis from uterus (disorder)','369460008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369461007','369461007','http://snomed.info/sct','Malignant tumor involving rectum by separate metastasis from vagina (disorder)','369461007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369463005','369463005','http://snomed.info/sct','Malignant tumor involving ureter by direct extension from bladder (disorder)','369463005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369464004','369464004','http://snomed.info/sct','Malignant tumor involving ureter by separate metastasis from bladder (disorder)','369464004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369465003','369465003','http://snomed.info/sct','Malignant tumor involving urethra by direct extension from bladder (disorder)','369465003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369466002','369466002','http://snomed.info/sct','Malignant tumor involving urethra by direct extension from prostate (disorder)','369466002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369467006','369467006','http://snomed.info/sct','Malignant tumor involving urethra by separate metastasis from bladder (disorder)','369467006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369468001','369468001','http://snomed.info/sct','Malignant tumor involving urethra by separate metastasis from prostate (disorder)','369468001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369469009','369469009','http://snomed.info/sct','Malignant neoplasm involving urinary bladder by direct extension from endometrium (disorder)','369469009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369470005','369470005','http://snomed.info/sct','Malignant neoplasm involving urinary bladder by direct extension from fallopian tube (disorder)','369470005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369471009','369471009','http://snomed.info/sct','Malignant neoplasm involving urinary bladder by direct extension from ovary (disorder)','369471009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369472002','369472002','http://snomed.info/sct','Malignant neoplasm involving urinary bladder by direct extension from prostate (disorder)','369472002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369473007','369473007','http://snomed.info/sct','Malignant neoplasm involving urinary bladder by direct extension from uterine cervix (disorder)','369473007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369474001','369474001','http://snomed.info/sct','Malignant neoplasm involving urinary bladder by direct extension from uterus (disorder)','369474001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369475000','369475000','http://snomed.info/sct','Malignant neoplasm involving urinary bladder by direct extension from vagina (disorder)','369475000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369476004','369476004','http://snomed.info/sct','Malignant tumor involving bladder by separate metastasis from endometrium (disorder)','369476004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369477008','369477008','http://snomed.info/sct','Malignant tumor involving bladder by separate metastasis from fallopian tube (disorder)','369477008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369478003','369478003','http://snomed.info/sct','Malignant tumor involving bladder by separate metastasis from ovary (disorder)','369478003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369479006','369479006','http://snomed.info/sct','Malignant tumor involving bladder by separate metastasis from prostate (disorder)','369479006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369480009','369480009','http://snomed.info/sct','Malignant tumor involving bladder by separate metastasis from uterine cervix (disorder)','369480009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369481008','369481008','http://snomed.info/sct','Malignant tumor involving bladder by separate metastasis from uterus (disorder)','369481008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369482001','369482001','http://snomed.info/sct','Malignant tumor involving bladder by separate metastasis from vagina (disorder)','369482001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369483006','369483006','http://snomed.info/sct','Malignant tumor involving vasa deferentia by direct extension from prostate (disorder)','369483006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369484000','369484000','http://snomed.info/sct','Malignant tumor involving vasa deferentia by separate metastasis from prostate (disorder)','369484000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369485004','369485004','http://snomed.info/sct','Malignant tumor involving prostate by direct extension from bladder (disorder)','369485004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369486003','369486003','http://snomed.info/sct','Malignant tumor involving prostate by separate metastasis from bladder (disorder)','369486003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369487007','369487007','http://snomed.info/sct','Primary malignant neoplasm of seminal vesicle (disorder)','369487007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369488002','369488002','http://snomed.info/sct','Metastatic malignant neoplasm to seminal vesicle (disorder)','369488002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369489005','369489005','http://snomed.info/sct','Malignant tumor involving seminal vesicle by direct extension from bladder (disorder)','369489005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369490001','369490001','http://snomed.info/sct','Malignant tumor involving seminal vesicle by direct extension from prostate (disorder)','369490001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369491002','369491002','http://snomed.info/sct','Malignant tumor involving seminal vesicle by separate metastasis from bladder (disorder)','369491002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369492009','369492009','http://snomed.info/sct','Malignant tumor involving seminal vesicle by separate metastasis from prostate (disorder)','369492009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369493004','369493004','http://snomed.info/sct','Malignant tumor involving uterine corpus by direct extension from bladder (disorder)','369493004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369494005','369494005','http://snomed.info/sct','Malignant tumor involving uterine corpus by direct extension from ovary (disorder)','369494005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369495006','369495006','http://snomed.info/sct','Malignant tumor involving uterine corpus by direct extension from uterine cervix (disorder)','369495006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369496007','369496007','http://snomed.info/sct','Malignant tumor involving uterine corpus by direct extension from vagina (disorder)','369496007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369497003','369497003','http://snomed.info/sct','Malignant tumor involving uterine cervix by direct extension from fallopian tube (disorder)','369497003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369498008','369498008','http://snomed.info/sct','Malignant tumor involving uterine cervix by direct extension from ovary (disorder)','369498008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369499000','369499000','http://snomed.info/sct','Malignant tumor involving uterine cervix by direct extension from vagina (disorder)','369499000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369500009','369500009','http://snomed.info/sct','Malignant tumor involving uterine cervix by separate metastasis from fallopian tube (disorder)','369500009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369501008','369501008','http://snomed.info/sct','Malignant tumor involving uterine cervix by separate metastasis from ovary (disorder)','369501008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369502001','369502001','http://snomed.info/sct','Malignant tumor involving uterine corpus by separate metastasis from bladder (disorder)','369502001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369503006','369503006','http://snomed.info/sct','Malignant tumor involving vagina by direct extension from uterus (disorder)','369503006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369504000','369504000','http://snomed.info/sct','Malignant tumor involving vagina by direct extension from bladder (disorder)','369504000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369505004','369505004','http://snomed.info/sct','Malignant tumor involving vagina by direct extension from endometrium (disorder)','369505004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369506003','369506003','http://snomed.info/sct','Malignant tumor involving vagina by direct extension from fallopian tube (disorder)','369506003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369507007','369507007','http://snomed.info/sct','Malignant tumor involving vulva by direct extension from endometrium (disorder)','369507007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369508002','369508002','http://snomed.info/sct','Malignant tumor involving vulva by direct extension from fallopian tube (disorder)','369508002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369509005','369509005','http://snomed.info/sct','Malignant tumor involving vulva by direct extension from ovary (disorder)','369509005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369510000','369510000','http://snomed.info/sct','Malignant tumor involving vulva by direct extension from uterine cervix (disorder)','369510000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369511001','369511001','http://snomed.info/sct','Malignant tumor involving vulva by direct extension from uterus (disorder)','369511001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369512008','369512008','http://snomed.info/sct','Malignant tumor involving vagina by direct extension from ovary (disorder)','369512008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369513003','369513003','http://snomed.info/sct','Primary malignant neoplasm of left fallopian tube (disorder)','369513003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369514009','369514009','http://snomed.info/sct','Metastatic malignant neoplasm to left fallopian tube (disorder)','369514009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369515005','369515005','http://snomed.info/sct','Malignant tumor involving left fallopian tube by direct extension from endometrium (disorder)','369515005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369516006','369516006','http://snomed.info/sct','Malignant tumor involving left fallopian tube by direct extension from ovary (disorder)','369516006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369517002','369517002','http://snomed.info/sct','Malignant tumor involving left fallopian tube by direct extension from right fallopian tube (disorder)','369517002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369518007','369518007','http://snomed.info/sct','Malignant tumor involving left fallopian tube by direct extension from uterine cervix (disorder)','369518007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369519004','369519004','http://snomed.info/sct','Malignant tumor involving left fallopian tube by direct extension from uterus (disorder)','369519004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369520005','369520005','http://snomed.info/sct','Primary malignant neoplasm of right fallopian tube (disorder)','369520005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369521009','369521009','http://snomed.info/sct','Metastatic malignant neoplasm to right fallopian tube (disorder)','369521009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369522002','369522002','http://snomed.info/sct','Primary malignant neoplasm of left ovary (disorder)','369522002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369523007','369523007','http://snomed.info/sct','Metastatic malignant neoplasm to left ovary (disorder)','369523007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369524001','369524001','http://snomed.info/sct','Malignant tumor involving left ovary by direct extension from endometrium (disorder)','369524001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369525000','369525000','http://snomed.info/sct','Malignant tumor involving left ovary by direct extension from fallopian tube (disorder)','369525000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369526004','369526004','http://snomed.info/sct','Malignant tumor involving left ovary by direct extension from right ovary (disorder)','369526004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369527008','369527008','http://snomed.info/sct','Malignant tumor involving left ovary by direct extension from uterine cervix (disorder)','369527008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369528003','369528003','http://snomed.info/sct','Malignant tumor involving left ovary by direct extension from uterus (disorder)','369528003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369529006','369529006','http://snomed.info/sct','Primary malignant neoplasm of right ovary (disorder)','369529006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369530001','369530001','http://snomed.info/sct','Metastatic malignant neoplasm to right ovary (disorder)','369530001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369531002','369531002','http://snomed.info/sct','Malignant tumor involving right ovary by direct extension from endometrium (disorder)','369531002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369532009','369532009','http://snomed.info/sct','Malignant tumor involving right ovary by direct extension from fallopian tube (disorder)','369532009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369533004','369533004','http://snomed.info/sct','Malignant tumor involving right ovary by direct extension from left ovary (disorder)','369533004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369534005','369534005','http://snomed.info/sct','Malignant tumor involving right ovary by direct extension from uterine cervix (disorder)','369534005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369535006','369535006','http://snomed.info/sct','Metastatic neoplasm of left broad ligament (disorder)','369535006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369536007','369536007','http://snomed.info/sct','Metastatic neoplasm of right broad ligament (disorder)','369536007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369537003','369537003','http://snomed.info/sct','Malignant tumor involving left broad ligament by direct extension from ovary (disorder)','369537003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369538008','369538008','http://snomed.info/sct','Malignant tumor involving left broad ligament by metastasis from ovary (disorder)','369538008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369539000','369539000','http://snomed.info/sct','Malignant tumor involving right broad ligament by direct extension from ovary (disorder)','369539000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369540003','369540003','http://snomed.info/sct','Malignant tumor involving right broad ligament by metastasis from ovary (disorder)','369540003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369541004','369541004','http://snomed.info/sct','Malignant tumor involving left fallopian tube by direct extension from vagina (disorder)','369541004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369542006','369542006','http://snomed.info/sct','Malignant tumor involving left fallopian tube by separate metastasis from endometrium (disorder)','369542006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369543001','369543001','http://snomed.info/sct','Malignant tumor involving left fallopian tube by separate metastasis from ovary (disorder)','369543001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369544007','369544007','http://snomed.info/sct','Malignant tumor involving left fallopian tube by separate metastasis from right fallopian tube (disorder)','369544007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369545008','369545008','http://snomed.info/sct','Malignant tumor involving left fallopian tube by separate metastasis from uterus (disorder)','369545008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369546009','369546009','http://snomed.info/sct','Malignant tumor involving left fallopian tube by separate metastasis from vagina (disorder)','369546009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369547000','369547000','http://snomed.info/sct','Malignant tumor involving right fallopian tube by direct extension from endometrium (disorder)','369547000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369548005','369548005','http://snomed.info/sct','Malignant tumor involving right fallopian tube by direct extension from left fallopian tube (disorder)','369548005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369549002','369549002','http://snomed.info/sct','Malignant tumor involving right fallopian tube by direct extension from ovary (disorder)','369549002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369550002','369550002','http://snomed.info/sct','Malignant tumor involving right fallopian tube by direct extension from uterine cervix (disorder)','369550002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369551003','369551003','http://snomed.info/sct','Malignant tumor involving right fallopian tube by direct extension from uterus (disorder)','369551003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369552005','369552005','http://snomed.info/sct','Malignant tumor involving right fallopian tube by direct extension from vagina (disorder)','369552005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369553000','369553000','http://snomed.info/sct','Malignant tumor involving right fallopian tube by separate metastasis from endometrium (disorder)','369553000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369554006','369554006','http://snomed.info/sct','Malignant tumor involving right fallopian tube by separate metastasis from left fallopian tube (disorder)','369554006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369555007','369555007','http://snomed.info/sct','Malignant tumor involving right fallopian tube by separate metastasis from ovary (disorder)','369555007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369556008','369556008','http://snomed.info/sct','Malignant tumor involving right fallopian tube by separate metastasis from uterine cervix (disorder)','369556008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369557004','369557004','http://snomed.info/sct','Malignant tumor involving right fallopian tube by separate metastasis from uterus (disorder)','369557004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369558009','369558009','http://snomed.info/sct','Malignant tumor involving right fallopian tube by separate metastasis from vagina (disorder)','369558009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369559001','369559001','http://snomed.info/sct','Malignant tumor involving left ovary by direct extension from vagina (disorder)','369559001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369560006','369560006','http://snomed.info/sct','Malignant tumor involving left ovary by separate metastasis from endometrium (disorder)','369560006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369561005','369561005','http://snomed.info/sct','Malignant tumor involving left ovary by separate metastasis from fallopian tube (disorder)','369561005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369562003','369562003','http://snomed.info/sct','Malignant tumor involving left ovary by separate metastasis from right ovary (disorder)','369562003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369563008','369563008','http://snomed.info/sct','Malignant tumor involving left ovary by separate metastasis from uterine cervix (disorder)','369563008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369564002','369564002','http://snomed.info/sct','Malignant tumor involving left ovary by separate metastasis from vagina (disorder)','369564002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369565001','369565001','http://snomed.info/sct','Malignant tumor involving left ovary by separate metastasis uterus (disorder)','369565001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369566000','369566000','http://snomed.info/sct','Malignant tumor involving right ovary by direct extension from uterus (disorder)','369566000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369567009','369567009','http://snomed.info/sct','Malignant tumor involving right ovary by direct extension from vagina (disorder)','369567009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369568004','369568004','http://snomed.info/sct','Malignant tumor involving right ovary by separate metastasis from endometrium (disorder)','369568004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369569007','369569007','http://snomed.info/sct','Malignant tumor involving right ovary by separate metastasis from fallopian tube (disorder)','369569007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369570008','369570008','http://snomed.info/sct','Malignant tumor involving right ovary by separate metastasis from left ovary (disorder)','369570008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369571007','369571007','http://snomed.info/sct','Malignant tumor involving right ovary by separate metastasis from uterine cervix (disorder)','369571007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369572000','369572000','http://snomed.info/sct','Malignant tumor involving right ovary by separate metastasis from uterus (disorder)','369572000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369573005','369573005','http://snomed.info/sct','Malignant tumor involving right ovary by separate metastasis from vagina (disorder)','369573005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369574004','369574004','http://snomed.info/sct','Malignant tumor involving uterine cervix by separate metastasis from vagina (disorder)','369574004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369575003','369575003','http://snomed.info/sct','Malignant tumor involving uterine corpus by separate metastasis from fallopian tube (disorder)','369575003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369576002','369576002','http://snomed.info/sct','Malignant tumor involving uterine corpus by separate metastasis from ovary (disorder)','369576002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369577006','369577006','http://snomed.info/sct','Malignant tumor involving uterine corpus by separate metastasis from uterine cervix (disorder)','369577006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369578001','369578001','http://snomed.info/sct','Malignant tumor involving uterine corpus by separate metastasis from vagina (disorder)','369578001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369579009','369579009','http://snomed.info/sct','Malignant tumor involving uterine corpus by direct extension from fallopian tube (disorder)','369579009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369580007','369580007','http://snomed.info/sct','Malignant tumor involving vagina by direct extension from uterine cervix (disorder)','369580007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369581006','369581006','http://snomed.info/sct','Malignant tumor involving vagina by separate metastasis from bladder (disorder)','369581006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369582004','369582004','http://snomed.info/sct','Malignant tumor involving vagina by separate metastasis from endometrium (disorder)','369582004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369583009','369583009','http://snomed.info/sct','Malignant tumor involving vagina by separate metastasis from fallopian tube (disorder)','369583009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369584003','369584003','http://snomed.info/sct','Malignant tumor involving vagina by separate metastasis from ovary (disorder)','369584003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369585002','369585002','http://snomed.info/sct','Malignant tumor involving vagina by separate metastasis from uterine cervix (disorder)','369585002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369586001','369586001','http://snomed.info/sct','Malignant tumor involving vagina by separate metastasis from uterus (disorder)','369586001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369587005','369587005','http://snomed.info/sct','Malignant tumor involving vulva by direct extension from vagina (disorder)','369587005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369588000','369588000','http://snomed.info/sct','Malignant tumor involving vulva by separate metastasis from endometrium (disorder)','369588000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369589008','369589008','http://snomed.info/sct','Malignant tumor involving vulva by separate metastasis from fallopian tube (disorder)','369589008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369590004','369590004','http://snomed.info/sct','Malignant tumor involving vulva by separate metastasis from ovary (disorder)','369590004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369591000','369591000','http://snomed.info/sct','Malignant tumor involving vulva by separate metastasis from uterine cervix (disorder)','369591000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369592007','369592007','http://snomed.info/sct','Malignant tumor involving vulva by separate metastasis from uterus (disorder)','369592007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369593002','369593002','http://snomed.info/sct','Malignant tumor involving vulva by separate metastasis from vagina (disorder)','369593002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369594008','369594008','http://snomed.info/sct','Malignant tumor involving an organ by direct extension from bladder (disorder)','369594008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369595009','369595009','http://snomed.info/sct','Malignant tumor involving an organ by direct extension from endometrium (disorder)','369595009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369596005','369596005','http://snomed.info/sct','Malignant tumor involving an organ by direct extension from fallopian tube (disorder)','369596005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369597001','369597001','http://snomed.info/sct','Malignant tumor involving an organ by direct extension from ovary (disorder)','369597001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369598006','369598006','http://snomed.info/sct','Malignant tumor involving an organ by direct extension from prostate (disorder)','369598006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369599003','369599003','http://snomed.info/sct','Malignant tumor involving an organ by direct extension from uterine cervix (disorder)','369599003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369600000','369600000','http://snomed.info/sct','Malignant tumor involving an organ by direct extension from uterus (disorder)','369600000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369601001','369601001','http://snomed.info/sct','Malignant tumor involving an organ by direct extension from vagina (disorder)','369601001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369602008','369602008','http://snomed.info/sct','Malignant tumor involving an organ by separate metastasis from bladder (disorder)','369602008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369603003','369603003','http://snomed.info/sct','Malignant tumor involving an organ by separate metastasis from endometrium (disorder)','369603003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369604009','369604009','http://snomed.info/sct','Malignant tumor involving an organ by separate metastasis from fallopian tube (disorder)','369604009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369605005','369605005','http://snomed.info/sct','Malignant tumor involving an organ by separate metastasis from ovary (disorder)','369605005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369606006','369606006','http://snomed.info/sct','Malignant tumor involving an organ by separate metastasis from prostate (disorder)','369606006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369607002','369607002','http://snomed.info/sct','Malignant tumor involving an organ by separate metastasis from uterine cervix (disorder)','369607002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369608007','369608007','http://snomed.info/sct','Malignant tumor involving an organ by separate metastasis from uterus (disorder)','369608007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369609004','369609004','http://snomed.info/sct','Malignant tumor involving an organ by separate metastasis from vagina (disorder)','369609004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369610009','369610009','http://snomed.info/sct','Malignant tumor involving left fallopian tube by separate metastasis from uterine cervix (disorder)','369610009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369702004','369702004','http://snomed.info/sct','Gastrointestinal lymphoma surgical margin, involved by tumor (finding)','369702004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369732007','369732007','http://snomed.info/sct','Venous (large vessel) invasion by tumor present (finding)','369732007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369733002','369733002','http://snomed.info/sct','Venous (large vessel) intramural invasion by tumor present (finding)','369733002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369734008','369734008','http://snomed.info/sct','Venous (large vessel) extramural invasion by tumor present (finding)','369734008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369737001','369737001','http://snomed.info/sct','Vascular invasion by tumor, grossly evident (finding)','369737001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369741002','369741002','http://snomed.info/sct','Infiltrating tumor border, microscopic (finding)','369741002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369748008','369748008','http://snomed.info/sct','Diffusely infiltrative (linitis plastica) tumor configuration (finding)','369748008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369766003','369766003','http://snomed.info/sct','Low grade (lymphoma grade) (finding)','369766003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369767007','369767007','http://snomed.info/sct','High grade (lymphoma grade) (finding)','369767007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369801003','369801003','http://snomed.info/sct','T2 (II): Tumor of uterine cervix invades beyond the uterus but not to pelvic wall or to lower third of vagina (finding)','369801003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369806008','369806008','http://snomed.info/sct','T4 (IVA): Tumor of uterine cervix/vagina invades mucosa of bladder or rectum and/or extends beyond true pelvis (finding)','369806008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369809001','369809001','http://snomed.info/sct','T1b (IB): Endometrial tumor invades up to or less than one half of the endometrium (finding)','369809001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369810006','369810006','http://snomed.info/sct','T1c (IC): Endometrial tumor invades to more than one half of the endometrium (finding)','369810006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369811005','369811005','http://snomed.info/sct','T2 (II): Endometrial tumor invades cervix, but does not extend beyond uterus (finding)','369811005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369814002','369814002','http://snomed.info/sct','T3 (III): Endometrial tumor with local and/or regional spread as specified in T3a, b, N1 and FIGO IIIA, B, and C below or adnexa (direct extension or metastasis) and/or cancer cells in ascites or peritoneal washings (finding)','369814002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369815001','369815001','http://snomed.info/sct','T3b (IIIB): Endometrial tumor with vaginal involvement (direct extension or metastasis) (finding)','369815001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369816000','369816000','http://snomed.info/sct','T4 (IVA): Endometrial tumor invades bladder mucosa and/or bowel mucosa (finding)','369816000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369818004','369818004','http://snomed.info/sct','T2 (II): Vaginal tumor invades paravaginal tissues but not to pelvic wall (finding)','369818004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369825006','369825006','http://snomed.info/sct','T2a (IIA): Fallopian tube tumor with extension and/or metastasis to the uterus and/or ovaries (finding)','369825006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369828008','369828008','http://snomed.info/sct','T3 and/or N1 (III): Fallopian tube tumor involves one or both tube(s) with peritoneal implants outside the pelvis and/or regional lymph node metastasis (finding)','369828008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369829000','369829000','http://snomed.info/sct','T3a (IIIA): Fallopian tube/ovarian tumor with microscopic peritoneal metastasis beyond pelvis (finding)','369829000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369830005','369830005','http://snomed.info/sct','T3b (IIIB): Fallopian tube/ovarian tumor with macroscopic peritoneal metastasis beyond pelvis < 2 cm in greatest dimension (finding)','369830005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369831009','369831009','http://snomed.info/sct','T3c (IIIC): Fallopian tube/ovarian tumor with peritoneal metastasis beyond pelvis > 2 cm in greatest dimension and/or regional lymph node metastasis (finding)','369831009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369839006','369839006','http://snomed.info/sct','T3b: Prostate tumor invades the seminal vesicle(s) (finding)','369839006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369857007','369857007','http://snomed.info/sct','T2: Aerodigestive tract tumor invades more than one subsite of hypopharynx or an adjacent site, or measures > 2 cm but < 4 cm in greatest dimension, without fixation of hemilarynx (finding)','369857007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369858002','369858002','http://snomed.info/sct','T2: Aerodigestive tract tumor invades mucosa of >1 adjacent subsite of supraglottis/glottis/region outside supraglottis, (mucosa of base of tongue/vallecula/medial wall of piriform sinus) without fixation of larynx (finding)','369858002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369864009','369864009','http://snomed.info/sct','T3: Aerodigestive tract tumor invades any of the following: bone of posterior wall of maxillary sinus, subcutaneous tissues, skin of cheek, floor or medial wall of orbit, infratemporal fossa, pterygoid plates, ethmoid sinuses (finding)','369864009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369865005','369865005','http://snomed.info/sct','T3: Aerodigestive tumor invades bony structures and/or paranasal sinuses (finding)','369865005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369867002','369867002','http://snomed.info/sct','T3: Aerodigestive tract tumor limited to larynx with vocal cord fixation and/or invades any of the following: postcricoid area, pre-epiglottic tissues, deep base of tongue (finding)','369867002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369869004','369869004','http://snomed.info/sct','T4: Lip: Tumor invades adjacent structures (cortical bone, inferior alveolar nerve, floor of mouth, skin of face) (finding)','369869004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369870003','369870003','http://snomed.info/sct','T4: Oral Cavity: Tumor invades adjacent structures (cortical bone, deep (extrinsic) muscle of tongue, maxillary sinus, skin) (finding)','369870003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369871004','369871004','http://snomed.info/sct','T4: Aerodigestive tract tumor invades adjacent structures (pterygoid muscles, mandible, hard palate, deep muscle of tongue, larynx) (finding)','369871004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369872006','369872006','http://snomed.info/sct','T4: Aerodigestive tract tumor invades adjacent structures (thyroid/cricoid cartilage, carotid artery, soft tissues of neck, prevertebral fascia/muscles, thyroid and/or esophagus) (finding)','369872006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369873001','369873001','http://snomed.info/sct','T4: Aerodigestive tumor invades base of skull, seventh nerve, and/or exceeds 6 cm in greatest dimension (finding)','369873001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369874007','369874007','http://snomed.info/sct','T4: Aerodigestive tract tumor invades orbital contents beyond the floor or medial wall including apex and/or any of the following: cribriform plate, base of skull, nasopharynx, sphenoid sinus, frontal sinus (finding)','369874007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369875008','369875008','http://snomed.info/sct','T4: Tumor invades through cricoid or thyroid cartilage and/or extends into other tissues beyond the larynx (trachea, soft tissues of neck, thyroid, esophagus) (finding)','369875008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369876009','369876009','http://snomed.info/sct','T4: Tumor invades through thyroid cartilage and/or extends to other tissues beyond the larynx (trachea, soft tissues of neck, pharynx) (finding)','369876009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369877000','369877000','http://snomed.info/sct','T4: Tumor invades through thyroid cartilage, and/or extends into soft tissues of the neck, thyroid, and/or esophagus (finding)','369877000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369881000','369881000','http://snomed.info/sct','T2:Lung tumor with any of these features:>3cm in greatest dimension, involves main bronchus >2cm distal to carina;invades visceral pleura;assoc with atelectasis/obstructive pneumonitis extends to hilar region, does not involve entire lung (finding)','369881000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369884008','369884008','http://snomed.info/sct','T3: Lung tumor of any size that directly invades any of the following: chest wall (including superior sulcus tumors); diaphragm; mediastinal pleura; parietal pericardium (finding)','369884008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369885009','369885009','http://snomed.info/sct','T4: Lung tumor of any size that invades any of the following: mediastinum; heart; great vessels; trachea; esophagus; vertebral body; carina (finding)','369885009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369890007','369890007','http://snomed.info/sct','T3: Renal tumor extends into major veins or invades the adrenal gland or perinephric tissues but not beyond Gerota''s fascia (finding)','369890007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369891006','369891006','http://snomed.info/sct','T3a: Renal tumor invades the adrenal gland or perinephric tissues but not beyond Gerota''s fascia (finding)','369891006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369894003','369894003','http://snomed.info/sct','T4: Renal tumor invades beyond Gerota''s fascia (finding)','369894003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369909002','369909002','http://snomed.info/sct','T1: Tumor invades lamina propria or submucosa (finding)','369909002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369910007','369910007','http://snomed.info/sct','T1a: Esophagus/stomach tumor invades lamina propria (finding)','369910007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369911006','369911006','http://snomed.info/sct','T1b: Esophagus/stomach tumor invades submucosa (finding)','369911006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369912004','369912004','http://snomed.info/sct','T2: Tumor invades muscularis propria (finding)','369912004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369913009','369913009','http://snomed.info/sct','T3: Esophageal tumor invades adventitia (finding)','369913009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369914003','369914003','http://snomed.info/sct','T4: Tumor directly invades adjacent structures (finding)','369914003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369915002','369915002','http://snomed.info/sct','T2: Stomach tumor invades muscularis propria or subserosa (finding)','369915002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369916001','369916001','http://snomed.info/sct','T2a: Stomach tumor invades muscularis propria (finding)','369916001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369917005','369917005','http://snomed.info/sct','T2b: Stomach tumor invades subserosa (finding)','369917005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369919008','369919008','http://snomed.info/sct','T4a: Colon/rectum tumor directly invades other organs or structures (finding)','369919008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369920002','369920002','http://snomed.info/sct','T1: Tumor invades submucosa (colon/rectum) (finding)','369920002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369921003','369921003','http://snomed.info/sct','T3: Colon/rectum tumor invades through the muscularis propria into the subserosa or the nonperitonealized pericolic or perirectal soft tissues (finding)','369921003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369927004','369927004','http://snomed.info/sct','T2: Ampulla tumor invades duodenal wall (finding)','369927004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369928009','369928009','http://snomed.info/sct','T3: Ampulla tumor invades 2 cm or less into pancreas (finding)','369928009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369929001','369929001','http://snomed.info/sct','T4: Ampulla tumor invades >2 cm into pancreas and/or into other adjacent organs (finding)','369929001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369935001','369935001','http://snomed.info/sct','T1: Urinary tract tumor invades subepithelial connective tissue (finding)','369935001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369936000','369936000','http://snomed.info/sct','T2: Urinary bladder tumor invades muscle (finding)','369936000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369937009','369937009','http://snomed.info/sct','T2: Renal pelvis/ureter tumor invades the muscularis (finding)','369937009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369938004','369938004','http://snomed.info/sct','T2a: Urinary bladder tumor invades superficial muscle (inner half) (finding)','369938004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369939007','369939007','http://snomed.info/sct','T2b: Urinary bladder tumor invades deep muscle (outer half) (finding)','369939007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369940009','369940009','http://snomed.info/sct','T3: Ureteral tumor invades beyond muscularis into periureteric fat (finding)','369940009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369941008','369941008','http://snomed.info/sct','T3: Renal pelvis tumor invades beyond muscularis peripelvic fat or the renal parenchyma (finding)','369941008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369942001','369942001','http://snomed.info/sct','T3: Urinary bladder tumor invades perivesical tissue (finding)','369942001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369943006','369943006','http://snomed.info/sct','T3a: Bladder tumor invades perivesical tissue microscopically (finding)','369943006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369944000','369944000','http://snomed.info/sct','T3b: Bladder tumor invades perivesical tissue macroscopically (extravesicular mass) (finding)','369944000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369945004','369945004','http://snomed.info/sct','T4: Urinary bladder tumor invades any of the following: prostate, uterus, vagina, pelvic wall abdominal wall (finding)','369945004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369946003','369946003','http://snomed.info/sct','T4: Renal pelvis/ureter tumor invades adjacent organs, or through the kidney into the perinephric fat (finding)','369946003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369947007','369947007','http://snomed.info/sct','T4a: Bladder tumor invades prostate or uterus or vagina (finding)','369947007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369948002','369948002','http://snomed.info/sct','T4b: Bladder tumor invades pelvic wall or abdominal wall (finding)','369948002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369953007','369953007','http://snomed.info/sct','T3: Testicular tumor invades spermatic cord with or without vascular/lymphatic invasion (finding)','369953007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369954001','369954001','http://snomed.info/sct','T4: Testicular tumor invades scrotum with or without vascular/lymphatic invasion (finding)','369954001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369964005','369964005','http://snomed.info/sct','T2: Pleural tumor invades any of the following: ipsilateral lung, endothoracic fascia, diaphragm, or pericardium (finding)','369964005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369965006','369965006','http://snomed.info/sct','T3: Pleural tumor invades any of the following: ipsilateral chest wall muscle, ribs, or media-stinal organs or tissues (finding)','369965006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369976005','369976005','http://snomed.info/sct','T3 and/or N1 (III): Ovarian tumor involves one or both ovaries with microscopically confirmed peritoneal metastasis outside the pelvis and/or regional lymph node metastasis (finding)','369976005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369980000','369980000','http://snomed.info/sct','Tis: Tumor invades lamina propria (gastrointestinal tumor) (finding)','369980000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369981001','369981001','http://snomed.info/sct','Tis: Tumor invades muscularis mucosae (colon/rectum) (finding)','369981001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369983003','369983003','http://snomed.info/sct','N1: Metastasis to movable ipsilateral axillary lymph node(s) (finding)','369983003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369985005','369985005','http://snomed.info/sct','N1b: Metastasis to lymph node(s), any > 0.2 cm in greatest dimension (finding)','369985005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369986006','369986006','http://snomed.info/sct','N1bi: Metastasis in 1 to 3 lymph nodes, any > 0.2 cm and all < 2 cm in greatest dimension (finding)','369986006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369987002','369987002','http://snomed.info/sct','N1bii: Metastasis in 4 or more lymph nodes, any > 0.2 cm and all < 2 cm in greatest dimension (finding)','369987002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369988007','369988007','http://snomed.info/sct','N1biii: Extension of tumor beyond the capsule of a lymph node metastasis, < 2 cm in greatest dimension (finding)','369988007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369989004','369989004','http://snomed.info/sct','N1biv: Metastasis to a lymph node > 2 cm in greatest dimension (finding)','369989004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369990008','369990008','http://snomed.info/sct','N2: Metastasis to ipsilateral axillary lymph node(s) fixed to one another or to other structures (finding)','369990008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369991007','369991007','http://snomed.info/sct','N3: Metastasis to ipsilateral internal mammary lymph node(s) (finding)','369991007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369992000','369992000','http://snomed.info/sct','N1: Metastasis in 1-3 lymph nodes (finding)','369992000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369993005','369993005','http://snomed.info/sct','N2: Metastasis in 4 or more lymph nodes (finding)','369993005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369997006','369997006','http://snomed.info/sct','N1: Metastasis in 1-6 perigastric lymph nodes (finding)','369997006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369998001','369998001','http://snomed.info/sct','N2: Metastasis in 7-15 perigastric lymph nodes (finding)','369998001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_369999009','369999009','http://snomed.info/sct','N3: Metastasis in >15 perigastric lymph nodes (finding)','369999009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_370000006','370000006','http://snomed.info/sct','N1: Metastasis in a single lymph node, < 2 cm in greatest dimension (finding)','370000006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_370001005','370001005','http://snomed.info/sct','N1: Metastasis in a single lymph node, <= 2 cm in greatest dimension (finding)','370001005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_370002003','370002003','http://snomed.info/sct','N2: Metastasis in a single lymph node, > 2 cm but <= 5 cm in greatest dimension, or multiple lymph nodes, none > 5 cm in greatest dimension (finding)','370002003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_370003008','370003008','http://snomed.info/sct','N3: Metastasis in a lymph node > 5 cm in greatest dimension (finding)','370003008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_370004002','370004002','http://snomed.info/sct','N1: Metastasis in a single ipsilateral lymph node, < 3 cm in greatest dimension (finding)','370004002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_370005001','370005001','http://snomed.info/sct','N1: Unilateral metastasis in lymph node(s) > 6 cm in greatest dimension, above supraclavicular fossa (finding)','370005001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_370006000','370006000','http://snomed.info/sct','N2: Metastasis in a single ipsilat lymph node >3cm but <6cm in greatest dimension; or in multiple ipsilat lymph nodes, none >6cm in greatest dimension; or in bilat or contralat lymph nodes, none >6cm in greatest dimension (finding)','370006000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_370007009','370007009','http://snomed.info/sct','N2: Bilateral metastasis in lymph node(s) > 6 cm in greatest dimension, above supraclavicular fossa (finding)','370007009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_370008004','370008004','http://snomed.info/sct','N2a: Metastasis in a single ipsilateral lymph node, > 3 cm but < 6 cm in greatest dimension (finding)','370008004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_370009007','370009007','http://snomed.info/sct','N2b: Metastasis in multiple ipsilateral lymph nodes, none > 6 cm in greatest dimension (finding)','370009007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_370010002','370010002','http://snomed.info/sct','N2c: Metastasis in bilateral or contralateral lymph nodes, none > 6 cm in greatest dimension (finding)','370010002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_370011003','370011003','http://snomed.info/sct','N3: Metastasis in lymph node(s) (finding)','370011003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_370014006','370014006','http://snomed.info/sct','N3: Metastasis in a lymph node > 6 cm in greatest dimension (finding)','370014006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_370015007','370015007','http://snomed.info/sct','N1: Metastasis in ipsilateral peribronchial and/or ipsilateral hilar lymph nodes, including intrapulmonary nodes involved by direct extension of the primary tumor (finding)','370015007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_370016008','370016008','http://snomed.info/sct','N2: Metastasis in ipsilateral mediastinal and/or subcarinal lymph node(s) (finding)','370016008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_370017004','370017004','http://snomed.info/sct','N3: Metastasis in contralateral mediastinal, contralateral hilar, ipsilateral or contralateral scalene or supraclavicular lymph node(s) (finding)','370017004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_370018009','370018009','http://snomed.info/sct','N1: Metastasis in a single lymph node (finding)','370018009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_370019001','370019001','http://snomed.info/sct','N2: Metastasis in more than one regional lymph node (finding)','370019001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_370020007','370020007','http://snomed.info/sct','N1: Metastasis with a lymph node mass less than 2 cm in greatest dimension and 5 or fewer positive nodes, none larger than 2 cm in greatest dimension (finding)','370020007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_370021006','370021006','http://snomed.info/sct','N2: Metastasis with a lymph node mass >2 cm but <= 5 cm in greatest dimension, or more than 5 nodes positive, none > 5 cm; or evidence of extranodal extension of tumor (finding)','370021006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_370022004','370022004','http://snomed.info/sct','N3: Metastasis with a lymph node mass > 5 cm in greatest dimension (finding)','370022004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_370023009','370023009','http://snomed.info/sct','N1: Metastasis in regional lymph node or nodes (finding)','370023009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_370024003','370024003','http://snomed.info/sct','N1: Pelvic or inguinal lymph node metastasis (finding)','370024003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_370025002','370025002','http://snomed.info/sct','N1a: Metastasis in ipsilateral cervical lymph node(s) (finding)','370025002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_370026001','370026001','http://snomed.info/sct','N1b: Metastasis in bilateral, midline, or contralateral cervical or mediastinal lymph node(s) (finding)','370026001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_370027005','370027005','http://snomed.info/sct','N1a: Metastasis in single regional lymph node (finding)','370027005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_370028000','370028000','http://snomed.info/sct','N1b: Metastasis in multiple regional lymph nodes (finding)','370028000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_370046006','370046006','http://snomed.info/sct','T3a,b: Colon/rectum tumor invades <=5 mm beyond the border of the muscularis propria (finding)','370046006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_370047002','370047002','http://snomed.info/sct','T3c,d: Colon/rectum tumor invades >5 mm beyond the border of the muscularis propria (finding)','370047002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_370053002','370053002','http://snomed.info/sct','Tumor invasion into adjacent tissues (finding)','370053002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_370054008','370054008','http://snomed.info/sct','Tumor invasion by direct extension to other structures (finding)','370054008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_370055009','370055009','http://snomed.info/sct','Tumor invasion into bronchus (finding)','370055009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_370056005','370056005','http://snomed.info/sct','Tumor invasion into bronchus, in situ (finding)','370056005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_370057001','370057001','http://snomed.info/sct','Tumor invasion into bronchus, invasive (finding)','370057001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_370058006','370058006','http://snomed.info/sct','Tumor invasion confined to mucosa and submucosa (finding)','370058006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_370059003','370059003','http://snomed.info/sct','Tumor invasion into submucosa (finding)','370059003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_370060008','370060008','http://snomed.info/sct','Tumor invasion into muscularis propria (finding)','370060008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_370061007','370061007','http://snomed.info/sct','Tumor invasion into muscle layer (finding)','370061007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_370062000','370062000','http://snomed.info/sct','Tumor invasion penetrating serosa (finding)','370062000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_370063005','370063005','http://snomed.info/sct','Tumor invasion into lung parenchyma (finding)','370063005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_370064004','370064004','http://snomed.info/sct','Tumor invasion into stroma (finding)','370064004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_370065003','370065003','http://snomed.info/sct','Tumor invasion into paratesticular structures (finding)','370065003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_370066002','370066002','http://snomed.info/sct','Tumor invasion into tunica albuginea (finding)','370066002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_370067006','370067006','http://snomed.info/sct','Tumor invasion into mediastinal lymph node without extracapsular extension (finding)','370067006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_370068001','370068001','http://snomed.info/sct','Tumor invasion into mediastinal lymph node with extracapsular extension (finding)','370068001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_370070005','370070005','http://snomed.info/sct','Tumor invasion into muscular wall AND/OR subserosa (finding)','370070005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_370071009','370071009','http://snomed.info/sct','Tumor invasion into supraglottis (finding)','370071009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_370123006','370123006','http://snomed.info/sct','N1: Regional lymph node metastasis (finding)','370123006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_370967009','370967009','http://snomed.info/sct','Retinoblastoma (disorder)','370967009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_370987005','370987005','http://snomed.info/sct','Anaplastic astrocytoma of spinal cord (disorder)','370987005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_371012000','371012000','http://snomed.info/sct','Acute lymphoblastic leukemia, transitional pre-B-cell (disorder)','371012000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_371134001','371134001','http://snomed.info/sct','Malignant lymphoma, large cell, polymorphous, immunoblastic (disorder)','371134001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_371962007','371962007','http://snomed.info/sct','Primary malignant neoplasm of abdominal esophagus (disorder)','371962007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_371963002','371963002','http://snomed.info/sct','Primary malignant neoplasm of adrenal cortex (disorder)','371963002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_371964008','371964008','http://snomed.info/sct','Malignant neoplasm of adrenal cortex (disorder)','371964008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_371965009','371965009','http://snomed.info/sct','Malignant neoplasm of adrenal medulla (disorder)','371965009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_371966005','371966005','http://snomed.info/sct','Primary malignant neoplasm of adrenal medulla (disorder)','371966005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_371967001','371967001','http://snomed.info/sct','Primary malignant neoplasm of ampulla of Vater (disorder)','371967001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_371968006','371968006','http://snomed.info/sct','Primary malignant neoplasm of anterior two-thirds of tongue (disorder)','371968006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_371969003','371969003','http://snomed.info/sct','Primary malignant neoplasm of apex of urinary bladder (disorder)','371969003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_371970002','371970002','http://snomed.info/sct','Primary malignant neoplasm of biliary tract (disorder)','371970002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_371971003','371971003','http://snomed.info/sct','Primary malignant neoplasm of body of uterus (disorder)','371971003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_371972005','371972005','http://snomed.info/sct','Malignant neoplasm of body of uterus (disorder)','371972005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_371973000','371973000','http://snomed.info/sct','Malignant neoplasm of uterus (disorder)','371973000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_371974006','371974006','http://snomed.info/sct','Malignant neoplasm of border of tongue (disorder)','371974006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_371975007','371975007','http://snomed.info/sct','Primary malignant neoplasm of border of tongue (disorder)','371975007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_371976008','371976008','http://snomed.info/sct','Primary malignant neoplasm of buccal mucosa (disorder)','371976008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_371977004','371977004','http://snomed.info/sct','Primary malignant neoplasm of cecum (disorder)','371977004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_371978009','371978009','http://snomed.info/sct','Primary malignant neoplasm of cervical esophagus (disorder)','371978009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_371979001','371979001','http://snomed.info/sct','Malignant neoplasm of clitoris (disorder)','371979001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_371980003','371980003','http://snomed.info/sct','Primary malignant neoplasm of clitoris (disorder)','371980003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_371981004','371981004','http://snomed.info/sct','Primary malignant neoplasm of commissure of lip (disorder)','371981004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_371982006','371982006','http://snomed.info/sct','Malignant neoplasm of endocrine gland (disorder)','371982006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_371983001','371983001','http://snomed.info/sct','Primary malignant neoplasm of endocrine gland (disorder)','371983001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_371984007','371984007','http://snomed.info/sct','Primary malignant neoplasm of esophagus (disorder)','371984007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_371986009','371986009','http://snomed.info/sct','Primary malignant neoplasm of eye (disorder)','371986009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_371987000','371987000','http://snomed.info/sct','Primary malignant neoplasm of fallopian tube (disorder)','371987000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_371988005','371988005','http://snomed.info/sct','Primary malignant neoplasm of false vocal cord (disorder)','371988005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_371989002','371989002','http://snomed.info/sct','Primary malignant neoplasm of glans penis (disorder)','371989002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_371990006','371990006','http://snomed.info/sct','Primary malignant neoplasm of gum (disorder)','371990006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_371991005','371991005','http://snomed.info/sct','Primary malignant neoplasm of hard palate (disorder)','371991005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_371992003','371992003','http://snomed.info/sct','Primary malignant neoplasm of intestinal tract (disorder)','371992003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_371993008','371993008','http://snomed.info/sct','Primary malignant neoplasm of lacrimal gland (disorder)','371993008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_371994002','371994002','http://snomed.info/sct','Primary malignant neoplasm of laryngeal aspect of aryepiglottic fold (disorder)','371994002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_371995001','371995001','http://snomed.info/sct','Primary malignant neoplasm of larynx (disorder)','371995001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_371996000','371996000','http://snomed.info/sct','Primary malignant neoplasm of lip (disorder)','371996000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_371997009','371997009','http://snomed.info/sct','Primary malignant neoplasm of lower gum (disorder)','371997009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_371998004','371998004','http://snomed.info/sct','Primary malignant neoplasm of lower third of esophagus (disorder)','371998004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_371999007','371999007','http://snomed.info/sct','Primary malignant neoplasm of middle third of esophagus (disorder)','371999007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_372000001','372000001','http://snomed.info/sct','Primary malignant neoplasm of minor salivary gland (disorder)','372000001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_372001002','372001002','http://snomed.info/sct','Primary malignant neoplasm of oral cavity (disorder)','372001002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_372002009','372002009','http://snomed.info/sct','Primary malignant neoplasm of palate (disorder)','372002009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_372003004','372003004','http://snomed.info/sct','Primary malignant neoplasm of pancreas (disorder)','372003004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_372004005','372004005','http://snomed.info/sct','Primary malignant neoplasm of parotid gland (disorder)','372004005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_372005006','372005006','http://snomed.info/sct','Primary malignant neoplasm of penis (disorder)','372005006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_372006007','372006007','http://snomed.info/sct','Primary malignant neoplasm of prepuce (disorder)','372006007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_372007003','372007003','http://snomed.info/sct','Primary malignant neoplasm of retrocecal tissue (disorder)','372007003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_372008008','372008008','http://snomed.info/sct','Primary malignant neoplasm of scaphoid bone (disorder)','372008008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_372009000','372009000','http://snomed.info/sct','Primary malignant neoplasm of scrotum (disorder)','372009000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_372010005','372010005','http://snomed.info/sct','Primary malignant neoplasm of soft tissues (disorder)','372010005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_372011009','372011009','http://snomed.info/sct','Malignant tumor of soft tissue of upper limb (disorder)','372011009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_372012002','372012002','http://snomed.info/sct','Primary malignant neoplasm of soft tissues of upper limb (disorder)','372012002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_372013007','372013007','http://snomed.info/sct','Primary malignant neoplasm of spermatic cord (disorder)','372013007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_372014001','372014001','http://snomed.info/sct','Primary malignant neoplasm of stomach (disorder)','372014001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_372015000','372015000','http://snomed.info/sct','Primary malignant neoplasm of the mesentery (disorder)','372015000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_372016004','372016004','http://snomed.info/sct','Primary malignant neoplasm of the peritoneum (disorder)','372016004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_372017008','372017008','http://snomed.info/sct','Primary malignant neoplasm of thoracic esophagus (disorder)','372017008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_372018003','372018003','http://snomed.info/sct','Malignant neoplasm of thoracic vertebral column (disorder)','372018003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_372019006','372019006','http://snomed.info/sct','Primary malignant neoplasm of thoracic vertebral column (disorder)','372019006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_372020000','372020000','http://snomed.info/sct','Primary malignant neoplasm of tonsil (disorder)','372020000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_372021001','372021001','http://snomed.info/sct','Primary malignant neoplasm of trapezium (disorder)','372021001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_372022008','372022008','http://snomed.info/sct','Primary malignant neoplasm of upper gum (disorder)','372022008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_372023003','372023003','http://snomed.info/sct','Primary malignant neoplasm of upper third of esophagus (disorder)','372023003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_372024009','372024009','http://snomed.info/sct','Primary malignant neoplasm of uterine cervix (disorder)','372024009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_372025005','372025005','http://snomed.info/sct','Primary malignant neoplasm of vagina (disorder)','372025005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_372026006','372026006','http://snomed.info/sct','Primary malignant neoplasm of vermilion border of lower lip (disorder)','372026006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_372027002','372027002','http://snomed.info/sct','Primary malignant neoplasm of vermilion border of upper lip (disorder)','372027002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_372028007','372028007','http://snomed.info/sct','Primary malignant neoplasm of vertebral column (disorder)','372028007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_372030009','372030009','http://snomed.info/sct','Primary malignant neoplasm of vocal cord (disorder)','372030009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_372062007','372062007','http://snomed.info/sct','Malignant neoplasm of central nervous system (disorder)','372062007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_372063002','372063002','http://snomed.info/sct','Malignant neoplasm of nervous system (disorder)','372063002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_372064008','372064008','http://snomed.info/sct','Malignant neoplasm of female breast (disorder)','372064008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_372065009','372065009','http://snomed.info/sct','Malignant neoplasm of main bronchus (disorder)','372065009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_372087000','372087000','http://snomed.info/sct','Primary malignant neoplasm (disorder)','372087000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_372092003','372092003','http://snomed.info/sct','Primary malignant neoplasm of axillary tail of breast (disorder)','372092003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_372093008','372093008','http://snomed.info/sct','Metastatic malignant neoplasm to axillary tail of breast (disorder)','372093008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_372094002','372094002','http://snomed.info/sct','Malignant neoplasm of axillary tail of breast (disorder)','372094002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_372095001','372095001','http://snomed.info/sct','Malignant neoplasm of male breast (disorder)','372095001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_372096000','372096000','http://snomed.info/sct','Carcinoma of male breast (disorder)','372096000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_372097009','372097009','http://snomed.info/sct','Malignant neoplasm of endocervix (disorder)','372097009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_372099007','372099007','http://snomed.info/sct','Malignant neoplasm of exocervix (disorder)','372099007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_372101000','372101000','http://snomed.info/sct','Carcinoma of extrahepatic bile duct (disorder)','372101000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_372103002','372103002','http://snomed.info/sct','Carcinoma of glottis (disorder)','372103002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_372104008','372104008','http://snomed.info/sct','Carcinoma of subglottis (disorder)','372104008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_372105009','372105009','http://snomed.info/sct','Carcinoma of supraglottis (disorder)','372105009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_372106005','372106005','http://snomed.info/sct','Carcinoma of penis (disorder)','372106005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_372107001','372107001','http://snomed.info/sct','Primary malignant neoplasm of ribs and/or sternum and/or clavicle (disorder)','372107001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_372108006','372108006','http://snomed.info/sct','Malignant neoplasm of bone of lower limb (disorder)','372108006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_372110008','372110008','http://snomed.info/sct','Primary malignant neoplasm of lower lobe, bronchus or lung (disorder)','372110008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_372111007','372111007','http://snomed.info/sct','Carcinoma of lower lobe of lung (disorder)','372111007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_372115003','372115003','http://snomed.info/sct','Primary malignant neoplasm of pelvic bones, sacrum and coccyx (disorder)','372115003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_372116002','372116002','http://snomed.info/sct','Carcinoma of pelvic bones, sacrum and coccyx (disorder)','372116002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_372119009','372119009','http://snomed.info/sct','Primary malignant neoplasm of head of pancreas (disorder)','372119009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_372120003','372120003','http://snomed.info/sct','Carcinoma of main bronchus (disorder)','372120003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_372121004','372121004','http://snomed.info/sct','Carcinoma of ribs and/or sternum and/or clavicle (disorder)','372121004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_372122006','372122006','http://snomed.info/sct','Malignant neoplasm of skin head and neck (disorder)','372122006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_372123001','372123001','http://snomed.info/sct','Primary malignant neoplasm of skin head and neck (disorder)','372123001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_372124007','372124007','http://snomed.info/sct','Malignant neoplasm of skin of lower limb (disorder)','372124007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_372125008','372125008','http://snomed.info/sct','Carcinoma of skin of lower limb (disorder)','372125008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_372126009','372126009','http://snomed.info/sct','Malignant neoplasm of skin of trunk (disorder)','372126009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_372127000','372127000','http://snomed.info/sct','Carcinoma of skin of trunk (disorder)','372127000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_372128005','372128005','http://snomed.info/sct','Malignant neoplasm of skin of upper limb (disorder)','372128005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_372129002','372129002','http://snomed.info/sct','Carcinoma of skin of upper limb (disorder)','372129002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_372130007','372130007','http://snomed.info/sct','Malignant neoplasm of skin (disorder)','372130007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_372131006','372131006','http://snomed.info/sct','Malignant neoplasm of upper limb bones and scapula (disorder)','372131006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_372133009','372133009','http://snomed.info/sct','Primary malignant neoplasm of upper limb bones and scapula (disorder)','372133009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_372137005','372137005','http://snomed.info/sct','Primary malignant neoplasm of breast (disorder)','372137005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_372138000','372138000','http://snomed.info/sct','Carcinoma of esophagus (disorder)','372138000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_372139008','372139008','http://snomed.info/sct','Primary malignant neoplasm of gallbladder (disorder)','372139008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_372140005','372140005','http://snomed.info/sct','Carcinoma of gallbladder (disorder)','372140005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_372141009','372141009','http://snomed.info/sct','Carcinoma of vocal cord (disorder)','372141009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_372142002','372142002','http://snomed.info/sct','Carcinoma of pancreas (disorder)','372142002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_372143007','372143007','http://snomed.info/sct','Carcinoma of stomach (disorder)','372143007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_372244006','372244006','http://snomed.info/sct','Malignant melanoma (disorder)','372244006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_372287009','372287009','http://snomed.info/sct','Vascular invasion by tumor present (finding)','372287009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_372290003','372290003','http://snomed.info/sct','Tumor invasion of periprostatic fat absent (prostate) (finding)','372290003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_372296009','372296009','http://snomed.info/sct','Tumor invasion of perineural tissue present (prostate) (finding)','372296009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_372297000','372297000','http://snomed.info/sct','Tumor invasion of perineural tissue absent (prostate) (finding)','372297000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_372436009','372436009','http://snomed.info/sct','N1: Metastasis in perirectal lymph node or nodes (finding)','372436009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_372437000','372437000','http://snomed.info/sct','N2: Metastasis to unilateral internal iliac and/or inguinal lymph node(s) (finding)','372437000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_373080008','373080008','http://snomed.info/sct','Malignant neoplasm of breast lower inner quadrant (disorder)','373080008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_373081007','373081007','http://snomed.info/sct','Malignant neoplasm of breast lower outer quadrant (disorder)','373081007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_373082000','373082000','http://snomed.info/sct','Malignant neoplasm of breast upper inner quadrant (disorder)','373082000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_373083005','373083005','http://snomed.info/sct','Malignant neoplasm of breast upper outer quadrant (disorder)','373083005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_373088001','373088001','http://snomed.info/sct','Primary malignant neoplasm of breast upper outer quadrant (disorder)','373088001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_373089009','373089009','http://snomed.info/sct','Primary malignant neoplasm of breast upper inner quadrant (disorder)','373089009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_373090000','373090000','http://snomed.info/sct','Primary malignant neoplasm of breast lower inner quadrant (disorder)','373090000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_373091001','373091001','http://snomed.info/sct','Primary malignant neoplasm of breast lower outer quadrant (disorder)','373091001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_373156006','373156006','http://snomed.info/sct','pN1: Metastasis in 1 to 3 axillary lymph nodes, and/or in internal mammary nodes with microscopic disease detected by sentinel lymph node dissection but not clinically apparent (breast) (finding)','373156006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_373159004','373159004','http://snomed.info/sct','pN1a: Metastasis in 1 to 3 axillary lymph nodes (at least one tumor deposit greater than 2.0 mm) (breast) (finding)','373159004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_373160009','373160009','http://snomed.info/sct','pN1b: Metastasis in internal mammary lymph nodes with microscopic disease detected by sentinel lymph node dissection but not clinically apparent (breast) (finding)','373160009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_373161008','373161008','http://snomed.info/sct','pN1c: Metastasis in 1 to 3 axillary lymph nodes and in internal mammary lymph nodes with microscopic disease detected by sentinel lymph node dissection but not clinically apparent (breast) (finding)','373161008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_373162001','373162001','http://snomed.info/sct','pN2: Metastasis in 4 to 9 axillary lymph nodes, or in clinically apparent internal mammary lymph nodes in the absence of axillary lymph node metastasis (breast) (finding)','373162001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_373163006','373163006','http://snomed.info/sct','pN2a: Metastasis in 4 to 9 axillary lymph nodes (at least one tumor deposit greater than 2.0 mm) (breast) (finding)','373163006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_373164000','373164000','http://snomed.info/sct','pN2b: Metastasis in clinically apparent internal mammary lymph nodes in the absence of axillary lymph node metastasis (breast) (finding)','373164000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_373165004','373165004','http://snomed.info/sct','pN3a: Metastasis in 10 or more axillary lymph nodes (at least one tumor deposit greater than 2.0 mm), or metastasis to infraclavicular lymph nodes (breast) (finding)','373165004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_373166003','373166003','http://snomed.info/sct','pN3c: Metastasis in ipsilateral supraclavicular lymph nodes (breast) (finding)','373166003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_373167007','373167007','http://snomed.info/sct','pN3b: Tumor of breast with metastasis as per American Joint Committee on Cancer 6th Edition definition (breast) (finding)','373167007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_373168002','373168002','http://snomed.info/sct','Reticulosarcoma (disorder)','373168002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_373171005','373171005','http://snomed.info/sct','pM1: Distant metastasis (breast) (finding)','373171005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_373199001','373199001','http://snomed.info/sct','pTis: Tumor invades muscularis mucosae (colon/rectum) (finding)','373199001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_373200003','373200003','http://snomed.info/sct','pT1: Tumor invades submucosa (colon/rectum) (finding)','373200003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_373604002','373604002','http://snomed.info/sct','Light chain deposition disease (disorder)','373604002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_373794000','373794000','http://snomed.info/sct','Cancer diagnosis based on death certificate (finding)','373794000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_373795004','373795004','http://snomed.info/sct','Cancer diagnosis based on clinical evidence (finding)','373795004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_373796003','373796003','http://snomed.info/sct','Cancer diagnosis based on investigations, without a tissue diagnosis (finding)','373796003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_373797007','373797007','http://snomed.info/sct','Cancer diagnosis based on specific tumor markers (finding)','373797007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_373798002','373798002','http://snomed.info/sct','Cancer diagnosis based on cytological evidence (finding)','373798002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_373799005','373799005','http://snomed.info/sct','Cancer diagnosis based on metastatic histological evidence (finding)','373799005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_373800009','373800009','http://snomed.info/sct','Cancer diagnosis based on primary site histological evidence (finding)','373800009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_373888000','373888000','http://snomed.info/sct','Extrauterine adenocarcinoma (disorder)','373888000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_384748000','384748000','http://snomed.info/sct','pM1: Distant metastasis, includes separate tumor nodule(s) in a different lobe (ipsilateral or contralateral) (lung) (finding)','384748000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_384749008','384749008','http://snomed.info/sct','pN1: Metastasis in ipsilateral peribronchial and/or ipsilateral hilar lymph nodes, including intrapulmonary nodes involved by direct extension of the primary tumor (lung) (finding)','384749008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_384750008','384750008','http://snomed.info/sct','pN2: Metastasis to ipsilateral mediastinal and/or subcarinal lymph nodes(s) (lung) (finding)','384750008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_384751007','384751007','http://snomed.info/sct','pN3: Metastasis to contralateral mediastinal, contralateral hilar, ipsilateral or contralateral scalene, or supraclavicular lymph nodes(s) (lung) (finding)','384751007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_384755003','384755003','http://snomed.info/sct','pT3:Tumor directly invades any of following:chest wall,diaphragm,mediastinal pleura,parietal pericardium;or tumor in main bronchus<2 cm distal to carina(not involving it);or assoc atelectasis or obstructive pneumonitis of whole lung (finding)','384755003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_384815007','384815007','http://snomed.info/sct','Visceral pleura invasion by tumor present (finding)','384815007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_385304004','385304004','http://snomed.info/sct','pT4: Tumor of any size invades adjacent organ(s), e.g., vagina, urethra, bladder (anal canal) (finding)','385304004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_385306002','385306002','http://snomed.info/sct','pN1: Metastasis in perirectal lymph node(s) (anal canal) (finding)','385306002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_385307006','385307006','http://snomed.info/sct','pN2: Metastasis in unilateral internal iliac AND/OR inguinal lymph node(s) (anal canal) (finding)','385307006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_385308001','385308001','http://snomed.info/sct','pN3: Metastasis in perirectal and inguinal lymph nodes AND/OR bilateral internal iliac AND/OR inguinal lymph nodes (anal canal) (finding)','385308001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_385309009','385309009','http://snomed.info/sct','Tumor invades epithelium only (finding)','385309009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_385316005','385316005','http://snomed.info/sct','pT1: Tumor invades lamina propria or submucosa (stomach) (finding)','385316005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_385317001','385317001','http://snomed.info/sct','pT1a: Tumor invades lamina propria (stomach) (finding)','385317001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_385318006','385318006','http://snomed.info/sct','pT1b: Tumor invades submucosa (stomach) (finding)','385318006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_385319003','385319003','http://snomed.info/sct','pT2: Tumor invades muscularis propria or subserosa (stomach) (finding)','385319003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_385320009','385320009','http://snomed.info/sct','pT2a: Tumor invades muscularis propria (stomach) (finding)','385320009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_385321008','385321008','http://snomed.info/sct','pT2b: Tumor invades subserosa (stomach) (finding)','385321008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_385323006','385323006','http://snomed.info/sct','pT4: Tumor invades adjacent structures (stomach) (finding)','385323006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_385324000','385324000','http://snomed.info/sct','pN1: Metastasis in 1 to 6 regional (perigastric) lymph nodes (stomach) (finding)','385324000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_385325004','385325004','http://snomed.info/sct','pN2: Metastasis in 7 to 15 regional (perigastric) lymph nodes (stomach) (finding)','385325004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_385326003','385326003','http://snomed.info/sct','pN3: Metastasis in more than 15 regional (perigastric) lymph nodes (stomach) (finding)','385326003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_385419004','385419004','http://snomed.info/sct','Venous (large vessel)/lymphatic (small vessel) tumor invasion finding (finding)','385419004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_385478001','385478001','http://snomed.info/sct','Adenoma malignum (disorder)','385478001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_389216001','389216001','http://snomed.info/sct','Diaphyseal medullary stenosis with bone malignancy (disorder)','389216001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_393563007','393563007','http://snomed.info/sct','Glioblastoma multiforme (disorder)','393563007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_393564001','393564001','http://snomed.info/sct','Glioma (disorder)','393564001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_393573009','393573009','http://snomed.info/sct','Hypereosinophilic syndrome (disorder)','393573009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_395099008','395099008','http://snomed.info/sct','Cancer confirmed (situation)','395099008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_395533000','395533000','http://snomed.info/sct','Tumor invades lamina propria (finding)','395533000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_395534006','395534006','http://snomed.info/sct','Tumor invades muscularis mucosae (finding)','395534006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_395706002','395706002','http://snomed.info/sct','pT2: Tumor invades muscularis propria (colon/rectum) (finding)','395706002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_395707006','395707006','http://snomed.info/sct','pT3: Tumor invades through the muscularis propria into the subserosa or into non-peritonealized pericolic or perirectal tissues (colon/rectum) (finding)','395707006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_395708001','395708001','http://snomed.info/sct','pT3a,b: Tumor invades through the muscularis propria into the subserosa or into non-peritonealized pericolic or perirectal tissues, invades 5 mm or less beyond the border of the muscularis propria (colon/rectum) (finding)','395708001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_395709009','395709009','http://snomed.info/sct','pT3c,d: Tumor invades through the muscularis propria into the subserosa or into non-peritonealized pericolic or perirectal tissues, invades greater than 5 mm beyond the border of the muscularis propria (colon/rectum) (finding)','395709009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_395710004','395710004','http://snomed.info/sct','pT4: Tumor directly invades other organs or structures and/or perforates visceral peritoneum (colon/rectum) (finding)','395710004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_395711000','395711000','http://snomed.info/sct','pN1: Metastasis in 1 to 3 regional lymph nodes (colon/rectum) (finding)','395711000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_395712007','395712007','http://snomed.info/sct','pN2: Metastasis in 4 or more regional lymph nodes (colon/rectum) (finding)','395712007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396087008','396087008','http://snomed.info/sct','pT3: Tumor extends into major veins or invades adrenal gland or perirenal and/or renal sinus fat but not beyond Gerota''s fascia (kidney) (finding)','396087008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396088003','396088003','http://snomed.info/sct','pT3a: Tumor directly invades adrenal gland or perirenal and/or renal sinus fat but not beyond Gerota''s fascia (kidney) (finding)','396088003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396090002','396090002','http://snomed.info/sct','pT3c: Tumor grossly extends into vena cava above diaphragm or invades the wall of the vena cava (kidney) (finding)','396090002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396091003','396091003','http://snomed.info/sct','pT4: Tumor invades beyond Gerota''s fascia (kidney) (finding)','396091003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396092005','396092005','http://snomed.info/sct','pN1: Metastasis in a single regional lymph node (kidney) (finding)','396092005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396093000','396093000','http://snomed.info/sct','pN2: Metastasis in more than one regional lymph node (kidney) (finding)','396093000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396096008','396096008','http://snomed.info/sct','pT2: Tumor invades duodenal wall (ampulla of Vater) (finding)','396096008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396097004','396097004','http://snomed.info/sct','pT3: Tumor invades pancreas (ampulla of Vater) (finding)','396097004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396098009','396098009','http://snomed.info/sct','pT4: Tumor invades peripancreatic soft tissues or other adjacent organs or structures (ampulla of Vater) (finding)','396098009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396198006','396198006','http://snomed.info/sct','Small cell carcinoma of prostate (disorder)','396198006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396302006','396302006','http://snomed.info/sct','pT4 (IVA): Tumor invades mucosa of bladder or rectum and/or extends beyond true pelvis (bullous edema is not sufficient evidence to classify a tumor as pT4) (TNM category and FIGO stage) (uterine cervix) (finding)','396302006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396314003','396314003','http://snomed.info/sct','pT1b (IB): Tumor invades less than one-half of the myometrium (TNM category and FIGO stage) (corpus uteri) (finding)','396314003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396315002','396315002','http://snomed.info/sct','pT1c (IC): Tumor invades one-half or more of the myometrium (TNM category and FIGO stage) (corpus uteri) (finding)','396315002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396320002','396320002','http://snomed.info/sct','pT3a (IIIA): Tumor involves serosa, AND/OR adnexa (direct extension or metastasis) AND/OR cancer cells in ascites or peritoneal washings (TNM category and FIGO stage) (corpus uteri) (finding)','396320002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396321003','396321003','http://snomed.info/sct','pT3b (IIIB): Involvement of vagina (direct extension or metastasis), rectal or bladder wall (without mucosal involvement), or pelvic wall(s) (frozen pelvis) (TNM category and FIGO stage) (corpus uteri) (finding)','396321003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396322005','396322005','http://snomed.info/sct','pT4 (IVA): Tumor invades bladder mucosa and/or bowel mucosa (TNM category and FIGO stage) (corpus uteri) (finding)','396322005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396323000','396323000','http://snomed.info/sct','pN1 (IIIC): Regional lymph node metastasis (TNM category and FIGO stage) (corpus uteri) (finding)','396323000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396382008','396382008','http://snomed.info/sct','pN1: Metastasis in one regional lymph node (melanoma of the skin) (finding)','396382008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396383003','396383003','http://snomed.info/sct','pN1a: Clinically occult (microscopic) metastasis (melanoma of the skin) (finding)','396383003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396384009','396384009','http://snomed.info/sct','pN1b: Clinically apparent (macroscopic) metastasis (melanoma of the skin) (finding)','396384009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396385005','396385005','http://snomed.info/sct','pN2: Metastasis in 2 to 3 regional nodes or intralymphatic regional metastasis without nodal metastasis (melanoma of the skin) (finding)','396385005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396386006','396386006','http://snomed.info/sct','pN2a: Clinically occult (microscopic) metastasis (melanoma of the skin) (finding)','396386006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396387002','396387002','http://snomed.info/sct','pN2b: Clinically apparent (macroscopic) metastasis (melanoma of the skin) (finding)','396387002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396388007','396388007','http://snomed.info/sct','pN2c: Satellite or in-transit metastasis without nodal metastasis (melanoma of the skin) (finding)','396388007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396389004','396389004','http://snomed.info/sct','pN3: Metastasis in four or more regional nodes, or matted metastatic nodes, or in-transit metastasis or satellite(s) with metastasis in regional node(s) (melanoma of the skin) (finding)','396389004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396390008','396390008','http://snomed.info/sct','pM1a: Metastasis to skin, subcutaneous tissues, or distant lymph nodes (melanoma of the skin) (finding)','396390008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396391007','396391007','http://snomed.info/sct','pM1b: Metastasis to lung (melanoma of the skin) (finding)','396391007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396392000','396392000','http://snomed.info/sct','pM1c: Metastasis to visceral site other than lung or distant metastasis at any site associated with an elevated serum lactic dehydrogenase (melanoma of the skin) (finding)','396392000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396504008','396504008','http://snomed.info/sct','pT3c: Tumor more than 5 cm in greatest dimension, invading the subcutis and/or greater than 6 mm in thickness (carcinoma of skin excluding eyelid, vulva, penis, and melanomas) (finding)','396504008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396506005','396506005','http://snomed.info/sct','pT4: Tumor invades deep extradermal structures (i.e. cartilage, skeletal muscle, or bone) (carcinoma of skin excluding eyelid, vulva, penis, and melanomas) (finding)','396506005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396507001','396507001','http://snomed.info/sct','pT4b: Tumor invades deep extradermal structures (i.e. cartilage, skeletal muscle, or bone) greater than 6mm in thickness (carcinoma of skin excluding eyelid, vulva, penis, and melanomas) (finding)','396507001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396508006','396508006','http://snomed.info/sct','pT4a: Tumor invades deep extradermal structures (i.e. cartilage, skeletal muscle, or bone) not more than 6mm in thickness (carcinoma of skin excluding eyelid, vulva, penis, and melanomas) (finding)','396508006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396535002','396535002','http://snomed.info/sct','Stage IV: Distant metastasis or extension into other organs (adrenal cortical carcinoma) (finding)','396535002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396571001','396571001','http://snomed.info/sct','pT4a: Tumor invades the larynx, deep/extrinsic muscle of tongue, medial pterygoid muscle, hard palate, or mandible (oropharynx) (finding)','396571001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396572008','396572008','http://snomed.info/sct','pT4b: Tumor invades lateral pterygoid muscle, pterygoid plates, lateral nasopharynx, or skull base or encases carotid artery (oropharynx) (finding)','396572008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396578007','396578007','http://snomed.info/sct','pT4a: Tumor invades through cortical bone, inferior alveolar nerve, floor of mouth, or skin of face, i.e., chin or nose (lip) (finding)','396578007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396579004','396579004','http://snomed.info/sct','pT4a: Tumor invades through cortical bone, into deep (extrinsic) muscle of tongue (genioglossus, hyoglossus, palatoglossus, and styloglossus), maxillary sinus, or skin of face (oral cavity) (finding)','396579004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396590009','396590009','http://snomed.info/sct','pT2: Tumor invades more than one subsite of hypopharynx or an adjacent site, or measures more than 2 cm but not more than 4 cm in greatest diameter without fixation of hemilarynx (hypopharynx) (finding)','396590009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396592001','396592001','http://snomed.info/sct','pT4a: Tumor invades thyroid/cricoid cartilage, hyoid bone, thyroid gland, esophagus or central compartment of soft tissue (hypopharynx) (finding)','396592001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396593006','396593006','http://snomed.info/sct','pT4b: Tumor invades prevertebral fascia, encases carotid artery, or involves mediastinal structures (hypopharynx) (finding)','396593006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396596003','396596003','http://snomed.info/sct','pT2: Tumor invades mucosa of more than one adjacent subsite of supraglottis or glottis or region outside the supraglottis (e.g., mucosa of base of tongue, vallecula, medial wall of pyriform sinus) without fixation of the larynx (finding)','396596003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396598002','396598002','http://snomed.info/sct','pT4a: Tumor invades through the thyroid cartilage and/or invades tissues beyond the larynx (e.g., trachea, soft tissues of the neck including deep extrinsic muscle of the tongue, strap muscles, thyroid, or esophagus) (larynx, supraglottis) (finding)','396598002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396599005','396599005','http://snomed.info/sct','pT4b: Tumor invades prevertebral space, encases carotid artery, or invades mediastinal structures (larynx, supraglottis) (finding)','396599005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396606002','396606002','http://snomed.info/sct','pT4a: Tumor invades through thyroid cartilage and/or invades tissues beyond the larynx (e.g., trachea, soft tissues of the neck including deep intrinsic muscle of the tongue, strap muscles, thyroid, or esophagus) (larynx, glottis) (finding)','396606002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396607006','396607006','http://snomed.info/sct','pT4b: Tumor invades prevertebral space, encases carotid artery, or invades mediastinal structures (larynx, glottis) (finding)','396607006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396612007','396612007','http://snomed.info/sct','pT4a: Tumor invades cricoid or thyroid cartilage and/or invades tissues beyond the larynx (e.g., trachea, soft tissues of the neck including deep extrinsic muscle of the tongue, strap muscles, thyroid, or esophagus) (larynx, subglottis) (finding)','396612007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396613002','396613002','http://snomed.info/sct','pT4b: Tumor invades prevertebral space, encases carotid artery, or invades mediastinal structures (larynx, subglottis) (finding)','396613002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396617001','396617001','http://snomed.info/sct','pT3: Tumor invades any of the following: bone of the posterior wall of maxillary sinus, subcutaneous tissues, floor or medial wall of orbit, pterygoid fossa, ethmoid sinuses (maxillary sinus) (finding)','396617001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396618006','396618006','http://snomed.info/sct','pT4a: Tumor invades anterior orbital contents, skin of cheek, pterygoid plates, infratemporal fossa, cribriform plate, sphenoid or frontal sinuses (maxillary sinus) (finding)','396618006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396619003','396619003','http://snomed.info/sct','pT4b: Tumor invades any of the following: orbital apex, dura, brain, middle cranial fossa, cranial nerves other than maxillary division of trigeminal nerve, nasopharynx, or clivus (maxillary sinus) (finding)','396619003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396623006','396623006','http://snomed.info/sct','pT2: Tumor invading two subsites in a single region or extending to involve an adjacent region within the nasoethmoidal complex, with or without bony invasion (nasal cavity and ethmoid sinus) (finding)','396623006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396624000','396624000','http://snomed.info/sct','pT3: Tumor extends to invade the medial wall or floor of the orbit, maxillary sinus, palate, or cribriform plate (nasal cavity and ethmoid sinus) (finding)','396624000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396625004','396625004','http://snomed.info/sct','pT4a: Tumor invades any of the following: anterior orbital contents, skin of nose or cheek, minimal extension to anterior cranial fossa, pterygoid plates, sphenoid or frontal sinuses (nasal cavity and ethmoid sinus) (finding)','396625004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396626003','396626003','http://snomed.info/sct','pT4b: Tumor invades any of the following: orbital apex, dura, brain, middle cranial fossa, cranial nerves other than maxillary division of trigeminal nerve, nasopharynx, or clivus (nasal cavity and ethmoid sinus) (finding)','396626003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396632008','396632008','http://snomed.info/sct','pN1: Metastasis in a single ipsilateral lymph node, 3 cm or less in greatest dimension (upper aerodigestive tract) (finding)','396632008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396633003','396633003','http://snomed.info/sct','pN2a: Metastasis in a single ipsilateral lymph node, more than 3 cm but not more than 6 cm in greatest dimension (upper aerodigestive tract) (finding)','396633003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396634009','396634009','http://snomed.info/sct','pN2c: Metastasis in bilateral or contralateral lymph nodes, none more than 6 cm in greatest dimension (upper aerodigestive tract) (finding)','396634009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396635005','396635005','http://snomed.info/sct','pN2b: Metastasis in multiple ipsilateral lymph nodes, none more than 6 cm in greatest dimension (upper aerodigestive tract) (finding)','396635005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396636006','396636006','http://snomed.info/sct','pN3: Metastasis in a lymph node, more than 6 cm in greatest dimension (upper aerodigestive tract) (finding)','396636006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396637002','396637002','http://snomed.info/sct','pN1: Unilateral metastasis in lymph node(s), 6 cm or less in greatest dimension, above the supraclavicular fossa (nasopharynx) (finding)','396637002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396638007','396638007','http://snomed.info/sct','pN2: Bilateral metastasis in lymph node(s), 6 cm or less in greatest dimension, above the supraclavicular fossa (nasopharynx) (finding)','396638007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396639004','396639004','http://snomed.info/sct','pN3: Metastasis in a lymph node(s), more than 6 cm in dimension, and/or to supraclavicular fossa (nasopharynx) (finding)','396639004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396640002','396640002','http://snomed.info/sct','pN3a: Metastasis in a lymph node(s), more than 6 cm in dimension (nasopharynx) (finding)','396640002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396641003','396641003','http://snomed.info/sct','pN3b: Metastasis in lymph node(s) residing wholly or in part in the supraclavicular fossa (nasopharynx) (finding)','396641003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396657003','396657003','http://snomed.info/sct','pT4a: Tumor invades skin, mandible, ear canal, and/or facial nerve (major salivary glands) (finding)','396657003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396658008','396658008','http://snomed.info/sct','pT4b: Tumor invades skull base and/or pterygoid plates and/or encases carotid artery (major salivary glands) (finding)','396658008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396669006','396669006','http://snomed.info/sct','pT1: Tumor invades subepithelial connective tissue (urinary bladder, ureter, renal pelvis) (finding)','396669006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396670007','396670007','http://snomed.info/sct','pT2: Tumor invades muscularis propria (urinary bladder, ureter, renal pelvis) (finding)','396670007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396671006','396671006','http://snomed.info/sct','pT2a: Tumor invades superficial muscle (inner half) (urinary bladder) (finding)','396671006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396672004','396672004','http://snomed.info/sct','pT2b: Tumor invades deep muscle (outer half) (urinary bladder) (finding)','396672004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396673009','396673009','http://snomed.info/sct','pT3: Tumor invades perivesical tissue (urinary bladder) (finding)','396673009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396674003','396674003','http://snomed.info/sct','pT3a: Tumor invades perivesical tissue microscopically (urinary bladder) (finding)','396674003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396675002','396675002','http://snomed.info/sct','pT3b: Tumor invades perivesical tissue macroscopically (extravesical mass) (urinary bladder) (finding)','396675002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396676001','396676001','http://snomed.info/sct','pT4: Tumor invades any of the following: prostate, uterus, vagina, pelvic wall, abdominal wall (urinary bladder) (finding)','396676001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396677005','396677005','http://snomed.info/sct','pT4a: Tumor invades prostate or uterus or vagina (urinary bladder) (finding)','396677005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396678000','396678000','http://snomed.info/sct','pT4b: Tumor invades pelvic wall or abdominal wall (urinary bladder) (finding)','396678000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396679008','396679008','http://snomed.info/sct','pN1: Metastasis in a single lymph node, 2 cm or less in greatest dimension (urinary bladder, ureter, renal pelvis) (finding)','396679008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396680006','396680006','http://snomed.info/sct','pN2: Metastasis in a single lymph node, more than 2 cm but not more than 5 cm in greatest dimension; or multiple lymph nodes, none more than 5 cm in greatest dimension (urinary bladder, ureter, renal pelvis) (finding)','396680006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396681005','396681005','http://snomed.info/sct','pT3: Tumor invades beyond muscularis into periureteric fat or renal parenchyma (renal pelvis) (finding)','396681005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396682003','396682003','http://snomed.info/sct','pT4: Tumor invades adjacent organs, or through the kidney into the perinephric fat (renal pelvis and ureter) (finding)','396682003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396683008','396683008','http://snomed.info/sct','pT3: Tumor invades beyond muscularis into periureteric fat (ureter) (finding)','396683008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396684002','396684002','http://snomed.info/sct','pT2: Tumor invades muscularis (renal pelvis and ureter) (finding)','396684002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396730009','396730009','http://snomed.info/sct','pT3: Tumor invades the spermatic cord with or without vascular/lymphatic invasion (testis) (finding)','396730009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396731008','396731008','http://snomed.info/sct','pT4: Tumor invades the scrotum with or without vascular/lymphatic invasion (testis) (finding)','396731008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396732001','396732001','http://snomed.info/sct','pN1: Metastasis with a lymph node mass 2 cm or less in greatest dimension and less than or equal to 5 nodes positive, none more than 2 cm in greatest dimension (testis) (finding)','396732001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396733006','396733006','http://snomed.info/sct','pN2: Metastasis with a lymph node mass more than 2 cm but not more than 5 cm in greatest dimension; or more than 5 nodes positive, none more than 5 cm; or evidence of extranodal extension of tumor (testis) (finding)','396733006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396734000','396734000','http://snomed.info/sct','pN3: Metastasis with a lymph node mass more than 5 cm in greatest dimension (testis) (finding)','396734000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396735004','396735004','http://snomed.info/sct','pM1a: Non-regional nodal or pulmonary metastasis (testis) (finding)','396735004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396736003','396736003','http://snomed.info/sct','pM1b: Distant metastasis other than to non-regional lymph nodes and lungs (testis) (finding)','396736003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396787000','396787000','http://snomed.info/sct','Tumor metastasis to non-regional lymph nodes present (finding)','396787000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396788005','396788005','http://snomed.info/sct','Tumor metastasis to non-regional lymph nodes absent (finding)','396788005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396801005','396801005','http://snomed.info/sct','pN1a: Metastasis in single regional lymph node (exocrine pancreas) (finding)','396801005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396802003','396802003','http://snomed.info/sct','pN1b: Metastasis in multiple regional lymph node(s) (exocrine pancreas) (finding)','396802003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396882001','396882001','http://snomed.info/sct','Tumor invades beyond pancreatic capsule, but does not invade adjacent structures AND/OR organs (endocrine pancreas) (finding)','396882001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396883006','396883006','http://snomed.info/sct','Tumor invades beyond pancreatic capsule to adjacent structures AND/OR organs (endocrine pancreas) (finding)','396883006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396884000','396884000','http://snomed.info/sct','Tumor invades beyond pancreatic capsule to duodenum (endocrine pancreas) (finding)','396884000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396885004','396885004','http://snomed.info/sct','Tumor invades beyond pancreatic capsule to bile duct (endocrine pancreas) (finding)','396885004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396886003','396886003','http://snomed.info/sct','Tumor invades beyond pancreatic capsule to stomach (endocrine pancreas) (finding)','396886003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396887007','396887007','http://snomed.info/sct','Tumor invades beyond pancreatic capsule to spleen (endocrine pancreas) (finding)','396887007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396888002','396888002','http://snomed.info/sct','Tumor invades beyond pancreatic capsule to colon (endocrine pancreas) (finding)','396888002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396889005','396889005','http://snomed.info/sct','Tumor invades beyond pancreatic capsule to adjacent large vessels (endocrine pancreas) (finding)','396889005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396963009','396963009','http://snomed.info/sct','pT2a: Tumor invades optic nerve up to, but not through, the level of the lamina cribrosa (retinoblastoma) (finding)','396963009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396964003','396964003','http://snomed.info/sct','pT2b: Tumor invades choroid focally (retinoblastoma) (finding)','396964003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396965002','396965002','http://snomed.info/sct','pT2c: Tumor invades optic nerve up to, but not through, the level of the lamina cribrosa and invades the choroid focally (retinoblastoma) (finding)','396965002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396967005','396967005','http://snomed.info/sct','pT3a: Tumor invades optic nerve through the level of the lamina cribrosa but not to the line of resection (retinoblastoma) (finding)','396967005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396968000','396968000','http://snomed.info/sct','pT3b: Tumor massively invades the choroid (retinoblastoma) (finding)','396968000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396969008','396969008','http://snomed.info/sct','pT3c: Tumor invades the optic nerve through the level of the lamina cribrosa but not to the line of resection and massively invades the choroid (retinoblastoma) (finding)','396969008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396971008','396971008','http://snomed.info/sct','pM1a: Distant metastasis to bone marrow (retinoblastoma) (finding)','396971008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396972001','396972001','http://snomed.info/sct','pM1b: Distant metastasis to sites other than bone marrow (retinoblastoma) (finding)','396972001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396977007','396977007','http://snomed.info/sct','Tumor invasion of optic nerve absent (finding)','396977007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396978002','396978002','http://snomed.info/sct','Tumor invades optic nerve anterior to lamina cribrosa (finding)','396978002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396979005','396979005','http://snomed.info/sct','Tumor invades optic nerve at lamina cribrosa (finding)','396979005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396980008','396980008','http://snomed.info/sct','Tumor invades optic nerve posterior to lamina cribrosa but not to end of nerve (finding)','396980008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_396981007','396981007','http://snomed.info/sct','Tumor invades optic nerve to cut end of optic nerve (finding)','396981007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_397008008','397008008','http://snomed.info/sct','Aggressive lymphadenopathic mastocytosis with eosinophilia (disorder)','397008008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_397009000','397009000','http://snomed.info/sct','Mast cell malignancy (disorder)','397009000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_397011009','397011009','http://snomed.info/sct','Mast cell malignancy of lymph nodes (disorder)','397011009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_397026006','397026006','http://snomed.info/sct','pT1: Tumor invades lamina propria or submucosa (esophagus) (finding)','397026006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_397029004','397029004','http://snomed.info/sct','pT1a: Tumor invades lamina propria (esophagus) (finding)','397029004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_397030009','397030009','http://snomed.info/sct','pT1b: Tumor invades submucosa (esophagus) (finding)','397030009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_397031008','397031008','http://snomed.info/sct','pT2: Tumor invades muscularis propria (esophagus) (finding)','397031008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_397032001','397032001','http://snomed.info/sct','pT3: Tumor invades adventitia (esophagus) (finding)','397032001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_397033006','397033006','http://snomed.info/sct','pT4: Tumor invades adjacent structures (esophagus) (finding)','397033006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_397036003','397036003','http://snomed.info/sct','pN1a: Metastasis in 1 to 3 regional lymph nodes (esophagus) (finding)','397036003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_397037007','397037007','http://snomed.info/sct','pN1b: Metastasis in 4 to 7 regional lymph nodes (esophagus) (finding)','397037007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_397038002','397038002','http://snomed.info/sct','pN1c: Metastasis in more than 7 regional lymph nodes (esophagus) (finding)','397038002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_397039005','397039005','http://snomed.info/sct','pM1a: Metastasis in celiac lymph nodes (lower thoracic esophagus) (finding)','397039005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_397040007','397040007','http://snomed.info/sct','pM1a: Distant metastasis not applicable (midthoracic esophagus) (finding)','397040007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_397041006','397041006','http://snomed.info/sct','pM1a: Metastasis in cervical nodes (upper thoracic esophagus) (finding)','397041006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_397042004','397042004','http://snomed.info/sct','pM1b: Distant metastasis to site other than celiac lymph nodes (lower thoracic esophagus) (finding)','397042004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_397043009','397043009','http://snomed.info/sct','pM1b: Nonregional lymph nodes and/or other distant metastasis (midthoracic esophagus) (finding)','397043009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_397044003','397044003','http://snomed.info/sct','pM1b: Distant metastasis to site other than cervical nodes (upper thoracic esophagus) (finding)','397044003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_397059009','397059009','http://snomed.info/sct','pT1: Tumor invades lamina propria or submucosa (small intestine) (finding)','397059009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_397088005','397088005','http://snomed.info/sct','pT2: Tumor invades muscularis propria (small intestine) (finding)','397088005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_397089002','397089002','http://snomed.info/sct','pT3: Tumor invades through the muscularis propria into the subserosa or into the nonperitonealized perimuscular tissue (mesentery or retroperitoneum) with extension 2 cm or less (small intestine) (finding)','397089002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_397090006','397090006','http://snomed.info/sct','pT4: Tumor perforates the visceral peritoneum or directly invades other organs or structures (small intestine) (finding)','397090006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_397093008','397093008','http://snomed.info/sct','pT1: Tumor invades lamina propria or muscle layer (gallbladder) (finding)','397093008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_397094002','397094002','http://snomed.info/sct','pT1a: Tumor invades lamina propria (gallbladder) (finding)','397094002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_397095001','397095001','http://snomed.info/sct','pT1b: Tumor invades muscle layer (gallbladder) (finding)','397095001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_397096000','397096000','http://snomed.info/sct','pT2: Tumor invades perimuscular connective tissue; no extension beyond serosa or into liver (gallbladder) (finding)','397096000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_397097009','397097009','http://snomed.info/sct','pT3: Tumor perforates the serosa (visceral peritoneum) and/or directly invades the liver and/or one other adjacent organ or structure, such as the stomach, duodenum, colon, pancreas, omentum, or extrahepatic bile ducts (gallbladder) (finding)','397097009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_397098004','397098004','http://snomed.info/sct','pT4: Tumor invades main portal vein or hepatic artery or invades two or more extrahepatic organs or structures (gallbladder) (finding)','397098004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_397105009','397105009','http://snomed.info/sct','pT4 (IVA): Tumor invades mucosa of the bladder or rectum and/or extends beyond the true pelvis (bullous edema is not sufficient evidence to classify a tumor as T4) (TNM category and FIGO stage) (vagina) (finding)','397105009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_397107001','397107001','http://snomed.info/sct','pN1: Pelvic or inguinal lymph node metastasis (vagina) (finding)','397107001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_397125008','397125008','http://snomed.info/sct','pT4 (IVA): Tumor invades any of the following: upper urethra, bladder mucosa, rectal mucosa, or is fixed to the pubic bone (TNM category and FIGO stage) (vulva) (finding)','397125008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_397126009','397126009','http://snomed.info/sct','pN1: Unilateral regional lymph node metastasis (vulva) (finding)','397126009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_397127000','397127000','http://snomed.info/sct','pN2: Bilateral regional lymph node metastasis (vulva) (finding)','397127000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_397148003','397148003','http://snomed.info/sct','pT2: Tumor invades beyond the wall of bile duct (extrahepatic bile ducts) (finding)','397148003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_397149006','397149006','http://snomed.info/sct','pT3: Tumor invades the liver, gallbladder, pancreas, and/or ipsilateral branches of the portal vein (right or left) or hepatic artery (right or left) (extrahepatic bile ducts) (finding)','397149006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_397150006','397150006','http://snomed.info/sct','pT4: Tumor invades any of the following: main portal vein or its branches bilaterally, common hepatic artery, or other adjacent structures, such as the colon, stomach, duodenum, or abdominal wall (extrahepatic bile ducts) (finding)','397150006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_397213002','397213002','http://snomed.info/sct','pM1a: Distant metastasis to non-regional lymph node(s) (prostate) (finding)','397213002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_397214008','397214008','http://snomed.info/sct','pM1b: Distant metastasis to bone(s) (prostate) (finding)','397214008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_397215009','397215009','http://snomed.info/sct','pM1c: Distant metastasis site other than bone or non-regional lymph node(s) (prostate) (finding)','397215009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_397360007','397360007','http://snomed.info/sct','pT3a (IIIA): Tumor involves serosa, AND/OR adnexa (direct extension or metastasis) (TNM category and FIGO stage) (corpus uteri) (finding)','397360007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_397367005','397367005','http://snomed.info/sct','pN1 (III): Pelvic or inguinal lymph node metastasis (pT1-pT3) (TNM category and FIGO stage) (vagina) (finding)','397367005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_397368000','397368000','http://snomed.info/sct','pN1 (IVA): Pelvic or inguinal lymph node metastasis (pT4) (TNM category and FIGO stage) (vagina) (finding)','397368000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_397369008','397369008','http://snomed.info/sct','pN1 (IVB): Pelvic or inguinal lymph node metastasis (pT1-pT4, pM1) (TNM category and FIGO stage) (vagina) (finding)','397369008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_397370009','397370009','http://snomed.info/sct','pN1 (III): Unilateral regional lymph node metastasis (pT1-pT3) (TNM category and FIGO stage) (vulva) (finding)','397370009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_397371008','397371008','http://snomed.info/sct','pN1 (IVA): Unilateral regional lymph node metastasis (pT4) (TNM category and FIGO stage) (vulva) (finding)','397371008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_397372001','397372001','http://snomed.info/sct','pN1 (IVB): Unilateral regional lymph node metastasis (pT1-pT4, pM1) (TNM category and FIGO stage) (vulva) (finding)','397372001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_397373006','397373006','http://snomed.info/sct','pN2 (IVA): Bilateral regional lymph node metastasis (pT1-pT4) (TNM category and FIGO stage) (vulva) (finding)','397373006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_397374000','397374000','http://snomed.info/sct','pN2 (IVB): Bilateral regional lymph node metastasis (pT1-pT4, pM1) (TNM category and FIGO stage) (vulva) (finding)','397374000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_397390000','397390000','http://snomed.info/sct','pN1: Metastasis in the ipsilateral bronchopulmonary and/or hilar lymph node(s) (thoracic mesothelioma) (finding)','397390000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_397391001','397391001','http://snomed.info/sct','pN2: Metastasis in the subcarinal lymph node(s) and/or the ipsilateral internal mammary or mediastinal lymph node(s) (thoracic mesothelioma) (finding)','397391001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_397392008','397392008','http://snomed.info/sct','pN3: Metastasis in the contralateral mediastinal, internal mammary, or hilar lymph node(s), and/or the ipsilateral or contralateral supraclavicular or scalene lymph node(s) (thoracic mesothelioma) (finding)','397392008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_397459003','397459003','http://snomed.info/sct','Tumor invades endothoracic fascia (finding)','397459003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_397460008','397460008','http://snomed.info/sct','Tumor invades soft tissue of chest wall (finding)','397460008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_397461007','397461007','http://snomed.info/sct','Tumor invades diaphragm (finding)','397461007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_397474001','397474001','http://snomed.info/sct','pM1b (IV): Distant metastasis other than lung (TNM category and FIGO stage) (gestational trophoblast) (finding)','397474001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_397497003','397497003','http://snomed.info/sct','pT3 and/or N1 (III): Tumor involves one or both ovaries with microscopically confirmed peritoneal metastasis outside the pelvis (including liver capsule metastasis) and/or regional lymph node metastasis (TNM category and FIGO stage) (ovary) (finding)','397497003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_397498008','397498008','http://snomed.info/sct','pT3a (IIIA): Microscopic peritoneal metastasis beyond pelvis (no macroscopic tumor) (TNM category and FIGO stage) (ovary) (finding)','397498008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_397499000','397499000','http://snomed.info/sct','pT3b (IIIB): Macroscopic peritoneal metastasis beyond pelvis 2 cm or less in greatest dimension (TNM category and FIGO stage) (ovary) (finding)','397499000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_397500009','397500009','http://snomed.info/sct','pT3c AND/OR N1 (IIIC): Peritoneal metastasis beyond pelvis more than 2 cm in greatest dimension AND/OR regional lymph node metastasis (TNM category and FIGO stage) (ovary) (finding)','397500009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_39795003','39795003','http://snomed.info/sct','Hand-Schuller-Christian disease (disorder)','39795003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_398623004','398623004','http://snomed.info/sct','Myelodysplastic syndrome with excess blasts (disorder)','398623004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_398670003','398670003','http://snomed.info/sct','Pigmented dermatofibrosarcoma protuberans of skin (disorder)','398670003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_398679002','398679002','http://snomed.info/sct','Bowenoid papulosis of penis (disorder)','398679002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_398768004','398768004','http://snomed.info/sct','Queyrat''s erythroplasia (disorder)','398768004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_398831006','398831006','http://snomed.info/sct','Bowen''s disease of penis (disorder)','398831006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_398903003','398903003','http://snomed.info/sct','Pleomorphic malignant fibrous histiocytoma of skin (disorder)','398903003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_399068003','399068003','http://snomed.info/sct','Malignant tumor of prostate (disorder)','399068003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_399326009','399326009','http://snomed.info/sct','Malignant neoplasm of urinary bladder (disorder)','399326009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_399374009','399374009','http://snomed.info/sct','Regional lymph node metastasis present (finding)','399374009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_399378007','399378007','http://snomed.info/sct','pT2a (IIA): Tumor involves one or both fallopian tubes with extension and/or metastasis to the uterus and/or ovaries (TNM category and FIGO stage) (fallopian tube) (finding)','399378007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_399394000','399394000','http://snomed.info/sct','Invasive ovarian tumor omental implants absent (finding)','399394000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_399395004','399395004','http://snomed.info/sct','Tumor invades retina (finding)','399395004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_399404007','399404007','http://snomed.info/sct','pT3b (IIIB): Tumor involves one or both fallopian tubes, with macroscopic peritoneal metastasis outside the pelvis 2 cm or less in greatest dimension (TNM category and FIGO stage) (fallopian tube) (finding)','399404007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_399405008','399405008','http://snomed.info/sct','Tumor invades vitreous (finding)','399405008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_399410007','399410007','http://snomed.info/sct','pT3c (IIIC): Tumor involves one or both fallopian tubes, with peritoneal metastasis outside the pelvis more than 2 cm in diameter (TNM category and FIGO stage) (fallopian tube) (finding)','399410007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_399420002','399420002','http://snomed.info/sct','Tumor invasion of sclera absent (finding)','399420002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_399444000','399444000','http://snomed.info/sct','Tumor invades lens (finding)','399444000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_399446003','399446003','http://snomed.info/sct','pT4b: Tumor invades prevertebral fascia or encases carotid artery or mediastinal vessels (thyroid) (finding)','399446003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_399452002','399452002','http://snomed.info/sct','pM1b: Distant metastasis (esophagus) (finding)','399452002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_399476005','399476005','http://snomed.info/sct','Tumor invades cornea (finding)','399476005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_399480000','399480000','http://snomed.info/sct','Tumor invades optic disc (finding)','399480000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_399481001','399481001','http://snomed.info/sct','pN1a: Metastasis to level VI (pretracheal, paratracheal, and prelaryngeal/Delphian lymph nodes) (thyroid) (finding)','399481001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_399490008','399490008','http://snomed.info/sct','Adenocarcinoma of prostate (disorder)','399490008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_399491007','399491007','http://snomed.info/sct','Tumor invades Schlemm''s canal (finding)','399491007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_399524008','399524008','http://snomed.info/sct','Tumor invades iris (finding)','399524008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_399527001','399527001','http://snomed.info/sct','Invasive ovarian tumor omental implants present (finding)','399527001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_399550007','399550007','http://snomed.info/sct','Tumor invades vortex vein (finding)','399550007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_399553009','399553009','http://snomed.info/sct','pN3: Metastasis in a lymph node, more than 5 cm in greatest dimension (urinary bladder, ureter, renal pelvis) (finding)','399553009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_399567000','399567000','http://snomed.info/sct','Tumor invades iridocorneal angle (finding)','399567000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_399573004','399573004','http://snomed.info/sct','Tumor invades optic nerve (finding)','399573004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_399576007','399576007','http://snomed.info/sct','Tumor invades sclera (finding)','399576007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_399587004','399587004','http://snomed.info/sct','Tumor invades Bruch''s membrane (finding)','399587004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_399590005','399590005','http://snomed.info/sct','Squamous cell carcinoma of prostate (disorder)','399590005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_399594001','399594001','http://snomed.info/sct','pM1a: Distant metastasis (esophagus) (finding)','399594001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_399600009','399600009','http://snomed.info/sct','Lymphoma finding (finding)','399600009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_399621009','399621009','http://snomed.info/sct','pT3a (IIIA): Tumor involves one or both fallopian tubes, with microscopic peritoneal metastasis outside the pelvis (TNM category and FIGO stage) (fallopian tube) (finding)','399621009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_399623007','399623007','http://snomed.info/sct','pT4a: Tumor of any size extending beyond the thyroid capsule to invade subcutaneous soft tissues, larynx, trachea, esophagus, or recurrent laryngeal nerve (thyroid) (finding)','399623007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_399636007','399636007','http://snomed.info/sct','pT3c and/or N1 (IIIC): Tumor involves one or both fallopian tubes, with peritoneal metastasis outside the pelvis more than 2 cm in diameter AND/OR regional lymph node metastasis (TNM category and FIGO stage) (fallopian tube) (finding)','399636007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_399646009','399646009','http://snomed.info/sct','Tumor invades choroid (finding)','399646009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_399654006','399654006','http://snomed.info/sct','Tumor minimally invades choroid (finding)','399654006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_399660006','399660006','http://snomed.info/sct','Ring melanoma of ciliary body (disorder)','399660006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_399670008','399670008','http://snomed.info/sct','Tumor massively invades choroid (finding)','399670008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_399696005','399696005','http://snomed.info/sct','pT3 and/or N1 (III): Tumor involves one or both fallopian tubes, with peritoneal implants outside the pelvis AND/OR regional lymph node metastasis (TNM category and FIGO stage) (fallopian tube) (finding)','399696005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_399704006','399704006','http://snomed.info/sct','pN1b: Metastasis to unilateral, bilateral, or contralateral cervical or superior mediastinal lymph nodes (thyroid) (finding)','399704006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_399724005','399724005','http://snomed.info/sct','Tumor invades ciliary body (finding)','399724005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_399745003','399745003','http://snomed.info/sct','Tumor invades anterior chamber of eye (finding)','399745003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_399884001','399884001','http://snomed.info/sct','Primary malignant neoplasm of blood vessel of upper arm (disorder)','399884001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_399969009','399969009','http://snomed.info/sct','Metastatic malignant neoplasm to blood vessel of upper arm (disorder)','399969009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_399990001','399990001','http://snomed.info/sct','Bowenoid papulosis of vulva (disorder)','399990001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_400001003','400001003','http://snomed.info/sct','Primary cutaneous lymphoma (disorder)','400001003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_400058002','400058002','http://snomed.info/sct','Metastatic malignant neoplasm to blood vessel of lower leg (disorder)','400058002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_400066006','400066006','http://snomed.info/sct','Intraepithelial squamous cell carcinoma (disorder)','400066006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_400074007','400074007','http://snomed.info/sct','Primary malignant neoplasm of blood vessel of lower leg (disorder)','400074007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_400092004','400092004','http://snomed.info/sct','Penile intraepithelial neoplasia grade III (disorder)','400092004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_400118002','400118002','http://snomed.info/sct','Bowenoid papulosis of penis with penile intraepithelial neoplasia grade III (disorder)','400118002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_400122007','400122007','http://snomed.info/sct','Primary cutaneous T-cell lymphoma (disorder)','400122007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_400173004','400173004','http://snomed.info/sct','Eccrine carcinoma of skin (disorder)','400173004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_400175006','400175006','http://snomed.info/sct','Myxofibrosarcoma of skin (disorder)','400175006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_402556000','402556000','http://snomed.info/sct','Malignant melanoma (radial growth phase) (disorder)','402556000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_402557009','402557009','http://snomed.info/sct','In situ acral lentiginous malignant melanoma (disorder)','402557009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_402558004','402558004','http://snomed.info/sct','Malignant melanoma (vertical growth phase) (disorder)','402558004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_402559007','402559007','http://snomed.info/sct','Congenital malignant melanoma (disorder)','402559007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_402560002','402560002','http://snomed.info/sct','Materno-fetal metastatic malignant melanoma (disorder)','402560002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_402561003','402561003','http://snomed.info/sct','Malignant melanoma of soft tissues (disorder)','402561003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_402562005','402562005','http://snomed.info/sct','Malignant melanoma animal-type (disorder)','402562005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_402563000','402563000','http://snomed.info/sct','Metastatic malignant melanoma with diffuse hypermelanosis (disorder)','402563000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_402564006','402564006','http://snomed.info/sct','Multiple primary malignant melanomata (disorder)','402564006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_402636006','402636006','http://snomed.info/sct','Malignant neoplasm of nail apparatus (disorder)','402636006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_402652009','402652009','http://snomed.info/sct','Malignant vascular tumor of skin (disorder)','402652009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_402813000','402813000','http://snomed.info/sct','Carcinoma-in-situ of oral mucosa (disorder)','402813000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_402815007','402815007','http://snomed.info/sct','Squamous cell carcinoma (disorder)','402815007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_402816008','402816008','http://snomed.info/sct','Squamous cell carcinoma of anogenital area (disorder)','402816008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_402817004','402817004','http://snomed.info/sct','Squamous cell carcinoma of nail apparatus (disorder)','402817004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_402871009','402871009','http://snomed.info/sct','Malignant neoplasm of subcutaneous fibrous tissue (disorder)','402871009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_402873007','402873007','http://snomed.info/sct','Malignant fibrohistiocytic tumor of skin (disorder)','402873007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_402876004','402876004','http://snomed.info/sct','Malignant tumor of nerve sheath origin (disorder)','402876004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_402879006','402879006','http://snomed.info/sct','T-cell leukemic infiltration of skin (disorder)','402879006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_402880009','402880009','http://snomed.info/sct','Primary cutaneous large T-cell lymphoma (disorder)','402880009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_402881008','402881008','http://snomed.info/sct','Primary cutaneous B-cell lymphoma (disorder)','402881008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_402882001','402882001','http://snomed.info/sct','Hodgkin''s disease affecting skin (disorder)','402882001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_402910001','402910001','http://snomed.info/sct','Anogenital verrucous carcinoma of Buschke-Lowenstein (disorder)','402910001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_402911002','402911002','http://snomed.info/sct','Penile verrucous carcinoma of Buschke-Lowenstein (disorder)','402911002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_402912009','402912009','http://snomed.info/sct','Vulval verrucous carcinoma of Buschke-Lowenstein (disorder)','402912009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_403274000','403274000','http://snomed.info/sct','Hypomelanosis surrounding malignant melanoma (disorder)','403274000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_403468003','403468003','http://snomed.info/sct','Squamous cell carcinoma of penis (disorder)','403468003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_403484002','403484002','http://snomed.info/sct','Bowenoid papulosis of anus (disorder)','403484002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_403873003','403873003','http://snomed.info/sct','Intraepidermal squamous carcinoma of scalp (disorder)','403873003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_403874009','403874009','http://snomed.info/sct','Intraepidermal squamous carcinoma of face (disorder)','403874009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_403875005','403875005','http://snomed.info/sct','Intraepidermal squamous carcinoma of forehead (disorder)','403875005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_403876006','403876006','http://snomed.info/sct','Intraepidermal squamous carcinoma of ear (disorder)','403876006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_403877002','403877002','http://snomed.info/sct','Intraepidermal squamous carcinoma of hand (disorder)','403877002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_403878007','403878007','http://snomed.info/sct','Intraepidermal squamous carcinoma of upper extremity (disorder)','403878007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_403879004','403879004','http://snomed.info/sct','Intraepidermal squamous carcinoma of lower extremity (disorder)','403879004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_403880001','403880001','http://snomed.info/sct','Intraepidermal squamous carcinoma of trunk (disorder)','403880001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_403888008','403888008','http://snomed.info/sct','Multiple intraepidermal squamous carcinomata (disorder)','403888008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_403889000','403889000','http://snomed.info/sct','Verrucous carcinoma of oral cavity (disorder)','403889000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_403890009','403890009','http://snomed.info/sct','Squamous cell carcinoma of vulva due to lichen sclerosus (disorder)','403890009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_403891008','403891008','http://snomed.info/sct','Squamous cell carcinoma of scalp (disorder)','403891008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_403892001','403892001','http://snomed.info/sct','Squamous cell carcinoma of skin of face (disorder)','403892001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_403893006','403893006','http://snomed.info/sct','Squamous cell carcinoma of forehead (disorder)','403893006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_403894000','403894000','http://snomed.info/sct','Squamous cell carcinoma of skin of ear (disorder)','403894000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_403895004','403895004','http://snomed.info/sct','Squamous cell carcinoma of foot (disorder)','403895004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_403896003','403896003','http://snomed.info/sct','Squamous cell carcinoma of hand (disorder)','403896003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_403897007','403897007','http://snomed.info/sct','Squamous cell carcinoma of upper extremity (disorder)','403897007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_403898002','403898002','http://snomed.info/sct','Squamous cell carcinoma of skin of lower extremity (disorder)','403898002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_403899005','403899005','http://snomed.info/sct','Squamous cell carcinoma of skin of trunk (disorder)','403899005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_403900000','403900000','http://snomed.info/sct','Spindle cell squamous cell carcinoma (disorder)','403900000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_403901001','403901001','http://snomed.info/sct','Acantholytic squamous cell carcinoma (disorder)','403901001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_403902008','403902008','http://snomed.info/sct','Adenosquamous carcinoma (disorder)','403902008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_403903003','403903003','http://snomed.info/sct','Signet ring squamous cell carcinoma (disorder)','403903003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_403904009','403904009','http://snomed.info/sct','Verrucous squamous cell carcinoma (disorder)','403904009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_403905005','403905005','http://snomed.info/sct','Multiple squamous cell carcinomata (disorder)','403905005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_403906006','403906006','http://snomed.info/sct','Metastatic squamous cell carcinoma (disorder)','403906006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_403920004','403920004','http://snomed.info/sct','Minimal deviation malignant melanoma (disorder)','403920004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_403922007','403922007','http://snomed.info/sct','Balloon cell malignant melanoma (disorder)','403922007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_403923002','403923002','http://snomed.info/sct','Spindle cell malignant melanoma (disorder)','403923002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_403924008','403924008','http://snomed.info/sct','Desmoplastic malignant melanoma (disorder)','403924008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_403925009','403925009','http://snomed.info/sct','Neurotropic malignant melanoma (disorder)','403925009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_403926005','403926005','http://snomed.info/sct','Malignant melanoma of oral cavity (disorder)','403926005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_403927001','403927001','http://snomed.info/sct','Malignant melanoma of nail apparatus (disorder)','403927001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_403929003','403929003','http://snomed.info/sct','Trichilemmal carcinoma (disorder)','403929003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_403939009','403939009','http://snomed.info/sct','Eccrine ductal carcinoma of skin (disorder)','403939009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_403940006','403940006','http://snomed.info/sct','Clear cell eccrine hidradenocarcinoma of skin (disorder)','403940006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_403941005','403941005','http://snomed.info/sct','Malignant cylindroma of skin (disorder)','403941005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_403942003','403942003','http://snomed.info/sct','Malignant eccrine spiradenoma of skin (disorder)','403942003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_403943008','403943008','http://snomed.info/sct','Malignant chondroid syringoma of skin (disorder)','403943008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_403944002','403944002','http://snomed.info/sct','Small cell eccrine carcinoma of skin (disorder)','403944002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_403946000','403946000','http://snomed.info/sct','Paget''s disease of nipple (disorder)','403946000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_403947009','403947009','http://snomed.info/sct','Perianal Paget''s disease (disorder)','403947009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_403949007','403949007','http://snomed.info/sct','Apocrine adenocarcinoma of skin (disorder)','403949007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_403950007','403950007','http://snomed.info/sct','Moll''s gland adenocarcinoma (disorder)','403950007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_403951006','403951006','http://snomed.info/sct','Ceruminous gland adenocarcinoma of skin (disorder)','403951006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_403952004','403952004','http://snomed.info/sct','Lymphoepithelial tumor of skin (disorder)','403952004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_403954003','403954003','http://snomed.info/sct','Mixed eccrine/pilar adnexal carcinoma of skin (disorder)','403954003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_403955002','403955002','http://snomed.info/sct','Undifferentiated adnexal carcinoma of skin (disorder)','403955002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_403977003','403977003','http://snomed.info/sct','Angiosarcoma (disorder)','403977003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_403978008','403978008','http://snomed.info/sct','Kaposi''s sarcoma - sporadic (disorder)','403978008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_403979000','403979000','http://snomed.info/sct','Endemic Kaposi sarcoma (disorder)','403979000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_403981003','403981003','http://snomed.info/sct','Epithelioid hemangioendothelioma (disorder)','403981003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_403985007','403985007','http://snomed.info/sct','Intravascular angiosarcoma (disorder)','403985007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_403986008','403986008','http://snomed.info/sct','Lymphangiosarcoma (disorder)','403986008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_403996004','403996004','http://snomed.info/sct','Infantile fibrosarcoma (disorder)','403996004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404008001','404008001','http://snomed.info/sct','Dermatofibrosarcoma protuberans with myoid differentiation (disorder)','404008001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404009009','404009009','http://snomed.info/sct','Dermatofibrosarcoma protuberans with granular cell change (disorder)','404009009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404010004','404010004','http://snomed.info/sct','Dermatofibrosarcoma protuberans with giant cell fibroblastoma (disorder)','404010004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404014008','404014008','http://snomed.info/sct','Malignant fibrous histiocytoma of skin (disorder)','404014008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404015009','404015009','http://snomed.info/sct','Superficial malignant fibrous histiocytoma of skin (disorder)','404015009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404016005','404016005','http://snomed.info/sct','Giant cell malignant fibrous histiocytoma of skin (disorder)','404016005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404017001','404017001','http://snomed.info/sct','Inflammatory malignant fibrous histiocytoma of skin (disorder)','404017001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404026003','404026003','http://snomed.info/sct','Cellular schwannoma (disorder)','404026003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404037002','404037002','http://snomed.info/sct','Malignant peripheral nerve sheath tumor (disorder)','404037002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404038007','404038007','http://snomed.info/sct','Epithelioid malignant nerve sheath tumor (disorder)','404038007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404039004','404039004','http://snomed.info/sct','Melanotic malignant nerve sheath tumor (disorder)','404039004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404040002','404040002','http://snomed.info/sct','Malignant Triton tumor (disorder)','404040002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404041003','404041003','http://snomed.info/sct','Malignant granular cell tumor (disorder)','404041003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404045007','404045007','http://snomed.info/sct','Epithelioid leiomyosarcoma of skin (disorder)','404045007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404046008','404046008','http://snomed.info/sct','Myxoid leiomyosarcoma of skin (disorder)','404046008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404047004','404047004','http://snomed.info/sct','Cutaneous leiomyosarcoma with granular cell change (disorder)','404047004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404051002','404051002','http://snomed.info/sct','Embryonal rhabdomyosarcoma (disorder)','404051002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404052009','404052009','http://snomed.info/sct','Botryoid rhabdomyosarcoma (disorder)','404052009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404053004','404053004','http://snomed.info/sct','Alveolar rhabdomyosarcoma (disorder)','404053004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404054005','404054005','http://snomed.info/sct','Pleomorphic rhabdomyosarcoma (disorder)','404054005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404055006','404055006','http://snomed.info/sct','Spindle cell rhabdomyosarcoma (disorder)','404055006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404056007','404056007','http://snomed.info/sct','Alveolar soft part sarcoma (disorder)','404056007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404067008','404067008','http://snomed.info/sct','Adipocytic liposarcoma (disorder)','404067008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404068003','404068003','http://snomed.info/sct','Sclerosing liposarcoma (disorder)','404068003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404069006','404069006','http://snomed.info/sct','Myxoid liposarcoma (disorder)','404069006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404070007','404070007','http://snomed.info/sct','Round cell liposarcoma (disorder)','404070007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404071006','404071006','http://snomed.info/sct','Pleomorphic liposarcoma (disorder)','404071006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404072004','404072004','http://snomed.info/sct','Dedifferentiated liposarcoma (disorder)','404072004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404073009','404073009','http://snomed.info/sct','Spindle cell liposarcoma (disorder)','404073009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404077005','404077005','http://snomed.info/sct','Extraskeletal osteosarcoma (disorder)','404077005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404079008','404079008','http://snomed.info/sct','Extraskeletal myxoid chondrosarcoma (disorder)','404079008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404080006','404080006','http://snomed.info/sct','Extraskeletal mesenchymal chondrosarcoma (disorder)','404080006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404081005','404081005','http://snomed.info/sct','Yolk sac tumor (disorder)','404081005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404087009','404087009','http://snomed.info/sct','Carcinosarcoma of skin (disorder)','404087009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404088004','404088004','http://snomed.info/sct','Low-grade fibromyxoid sarcoma (disorder)','404088004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404090003','404090003','http://snomed.info/sct','Malignant infiltration of oral cavity by underlying tumor (disorder)','404090003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404091004','404091004','http://snomed.info/sct','Malignant infiltration of skin by underlying tumor (disorder)','404091004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404092006','404092006','http://snomed.info/sct','Metastatic carcinoma to skin (disorder)','404092006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404093001','404093001','http://snomed.info/sct','Sarcomatous metastasis in skin (disorder)','404093001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404094007','404094007','http://snomed.info/sct','Metastasis involving oral cavity (disorder)','404094007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404103007','404103007','http://snomed.info/sct','Lymphomatoid papulosis type A (CD-30 positive type) (disorder)','404103007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404104001','404104001','http://snomed.info/sct','Lymphomatoid papulosis type B - mycosis fungoides-like (disorder)','404104001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404105000','404105000','http://snomed.info/sct','Lymphomatoid papulosis type C (anaplastic large-cell lymphoma-like) (disorder)','404105000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404106004','404106004','http://snomed.info/sct','Lymphomatoid papulosis with Hodgkin''s disease (disorder)','404106004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404107008','404107008','http://snomed.info/sct','Patch/plaque stage mycosis fungoides (disorder)','404107008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404108003','404108003','http://snomed.info/sct','Poikilodermatous mycosis fungoides (disorder)','404108003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404109006','404109006','http://snomed.info/sct','Follicular mucinosis type mycosis fungoides (disorder)','404109006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404110001','404110001','http://snomed.info/sct','Hypomelanotic mycosis fungoides (disorder)','404110001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404111002','404111002','http://snomed.info/sct','Lymphomatoid papulosis-associated mycosis fungoides (disorder)','404111002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404112009','404112009','http://snomed.info/sct','Granulomatous mycosis fungoides (disorder)','404112009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404114005','404114005','http://snomed.info/sct','Erythrodermic mycosis fungoides (disorder)','404114005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404115006','404115006','http://snomed.info/sct','Bullous mycosis fungoides (disorder)','404115006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404116007','404116007','http://snomed.info/sct','Mycosis fungoides with systemic infiltration (disorder)','404116007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404117003','404117003','http://snomed.info/sct','Spongiotic mycosis fungoides (disorder)','404117003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404118008','404118008','http://snomed.info/sct','Syringotropic mycosis fungoides (disorder)','404118008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404119000','404119000','http://snomed.info/sct','Pagetoid reticulosis (disorder)','404119000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404120006','404120006','http://snomed.info/sct','Localized pagetoid reticulosis (disorder)','404120006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404121005','404121005','http://snomed.info/sct','Generalized pagetoid reticulosis (disorder)','404121005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404122003','404122003','http://snomed.info/sct','Leukemic infiltration of skin (chronic T-cell lymphocytic leukemia) (disorder)','404122003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404123008','404123008','http://snomed.info/sct','Leukemic infiltration of skin (T-cell prolymphocytic leukemia) (disorder)','404123008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404124002','404124002','http://snomed.info/sct','Leukemic infiltration of skin (T-cell lymphoblastic leukemia) (disorder)','404124002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404126000','404126000','http://snomed.info/sct','CD-30 positive pleomorphic large T-cell cutaneous lymphoma (disorder)','404126000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404127009','404127009','http://snomed.info/sct','CD-30 positive T-immunoblastic cutaneous lymphoma (disorder)','404127009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404128004','404128004','http://snomed.info/sct','CD-30 negative cutaneous T-cell lymphoma (disorder)','404128004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404129007','404129007','http://snomed.info/sct','CD-30 negative anaplastic large T-cell cutaneous lymphoma (disorder)','404129007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404130002','404130002','http://snomed.info/sct','CD-30 negative pleomorphic large T-cell cutaneous lymphoma (disorder)','404130002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404131003','404131003','http://snomed.info/sct','CD-30 negative T-immunoblastic cutaneous lymphoma (disorder)','404131003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404133000','404133000','http://snomed.info/sct','Subcutaneous panniculitic cutaneous T-cell lymphoma (disorder)','404133000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404134006','404134006','http://snomed.info/sct','Anaplastic large T-cell systemic malignant lymphoma (disorder)','404134006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404135007','404135007','http://snomed.info/sct','Angiocentric natural killer/T-cell malignant lymphoma involving skin (disorder)','404135007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404136008','404136008','http://snomed.info/sct','Aggressive natural killer-cell leukemia involving skin (disorder)','404136008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404137004','404137004','http://snomed.info/sct','Precursor B-cell lymphoblastic lymphoma involving skin (disorder)','404137004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404138009','404138009','http://snomed.info/sct','Small lymphocytic B-cell lymphoma involving skin (disorder)','404138009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404139001','404139001','http://snomed.info/sct','Leukemic infiltration of skin in hairy-cell leukemia (disorder)','404139001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404140004','404140004','http://snomed.info/sct','Primary cutaneous marginal zone B-cell lymphoma (disorder)','404140004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404141000','404141000','http://snomed.info/sct','Primary cutaneous immunocytoma (disorder)','404141000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404142007','404142007','http://snomed.info/sct','Primary cutaneous plasmacytoma (disorder)','404142007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404143002','404143002','http://snomed.info/sct','Primary cutaneous follicular center B-cell lymphoma (disorder)','404143002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404144008','404144008','http://snomed.info/sct','Primary cutaneous diffuse large cell B-cell lymphoma (disorder)','404144008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404147001','404147001','http://snomed.info/sct','Follicular center B-cell lymphoma (nodal/systemic with skin involvement) (disorder)','404147001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404148006','404148006','http://snomed.info/sct','Diffuse large B-cell lymphoma (nodal/systemic with skin involvement) (disorder)','404148006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404149003','404149003','http://snomed.info/sct','Lymphoplasmacytic B-cell lymphoma, nodal/systemic with skin involvement (disorder)','404149003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404150003','404150003','http://snomed.info/sct','Mantle cell B-cell lymphoma (nodal/systemic with skin involvement) (disorder)','404150003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404151004','404151004','http://snomed.info/sct','Leukemic infiltration of skin in myeloid leukemia (disorder)','404151004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404152006','404152006','http://snomed.info/sct','Leukemic infiltration of skin in acute myeloid leukemia (disorder)','404152006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404153001','404153001','http://snomed.info/sct','Leukemic infiltration of skin in chronic myeloid leukemia (disorder)','404153001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404154007','404154007','http://snomed.info/sct','Leukemic infiltration of skin in monocytic leukemia (disorder)','404154007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404155008','404155008','http://snomed.info/sct','Granulocytic sarcoma affecting skin (disorder)','404155008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404156009','404156009','http://snomed.info/sct','Leukemic infiltration of skin (disorder)','404156009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404160007','404160007','http://snomed.info/sct','Langerhans cell histiocytosis - Hashimoto-Pritzker type (disorder)','404160007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404169008','404169008','http://snomed.info/sct','Malignant histiocytosis involving skin (disorder)','404169008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404172001','404172001','http://snomed.info/sct','Mast cell leukemia affecting skin (disorder)','404172001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404180008','404180008','http://snomed.info/sct','pT3: Tumor invades beyond muscularis into peripelvic fat or renal parenchyma (renal pelvis) (finding)','404180008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404653000','404653000','http://snomed.info/sct','Chiasmal glioma (disorder)','404653000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_404664002','404664002','http://snomed.info/sct','Malignant optic glioma (disorder)','404664002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_405546008','405546008','http://snomed.info/sct','Pericardial effusion co-occurrent and due to malignant neoplasm of pericardium (disorder)','405546008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_405822008','405822008','http://snomed.info/sct','Squamous cell carcinoma of larynx (disorder)','405822008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_405843009','405843009','http://snomed.info/sct','Widespread metastatic malignant neoplastic disease (disorder)','405843009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_405903000','405903000','http://snomed.info/sct','Tumor invades subcutaneous tissue (finding)','405903000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_405904006','405904006','http://snomed.info/sct','Tumor invades subfascial structure (finding)','405904006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_405905007','405905007','http://snomed.info/sct','Tumor invades dermis (finding)','405905007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_405906008','405906008','http://snomed.info/sct','Tumor invades retroperitoneal structure (finding)','405906008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_405907004','405907004','http://snomed.info/sct','Tumor invades abdominal cavity structure (finding)','405907004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_405945003','405945003','http://snomed.info/sct','Malignant neoplasm of metatarsal bone of foot (disorder)','405945003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_405965005','405965005','http://snomed.info/sct','Renal tumor invades renal vein macroscopically (finding)','405965005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_405987001','405987001','http://snomed.info/sct','Tumor metastasis to non-regional lymph nodes cannot be assessed (finding)','405987001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_405992004','405992004','http://snomed.info/sct','pN1 (IIIC): Regional lymph node metastasis (TNM category and FIGO stage) (ovary) (finding)','405992004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_406001009','406001009','http://snomed.info/sct','pT4b: Tumor invades lateral pterygoid muscle, pterygoid plates, lateral nasopharynx, or skull base or encases internal carotid artery (oropharynx) (finding)','406001009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_406092008','406092008','http://snomed.info/sct','pN1 (IIIC): Regional lymph node metastasis (TNM category and FIGO stage) (fallopian tube) (finding)','406092008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_408642003','408642003','http://snomed.info/sct','Transitional cell carcinoma of kidney (disorder)','408642003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_408643008','408643008','http://snomed.info/sct','Infiltrating duct carcinoma of breast (disorder)','408643008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_408644002','408644002','http://snomed.info/sct','Adenocarcinoma of duodenum (disorder)','408644002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_408645001','408645001','http://snomed.info/sct','Adenocarcinoma of large intestine (disorder)','408645001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_408646000','408646000','http://snomed.info/sct','Adenocarcinoma of liver (disorder)','408646000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_408647009','408647009','http://snomed.info/sct','Adenocarcinoma of stomach (disorder)','408647009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_408648004','408648004','http://snomed.info/sct','Squamous cell carcinoma of epiglottis (disorder)','408648004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_408649007','408649007','http://snomed.info/sct','Squamous cell carcinoma of pharynx (disorder)','408649007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_409714000','409714000','http://snomed.info/sct','Right regional lymph node metastasis present (finding)','409714000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_409758000','409758000','http://snomed.info/sct','pM1a: Distant metastasis to lung (primitive neuroectodermal tumor/Ewing''s sarcoma) (finding)','409758000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_409759008','409759008','http://snomed.info/sct','pM1b: Distant metastasis to site other than lung (primitive neuroectodermal tumor/Ewing''s sarcoma) (finding)','409759008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_409771002','409771002','http://snomed.info/sct','Tumor invasion by direct extension from organ of origin to adjacent organ (finding)','409771002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_409772009','409772009','http://snomed.info/sct','Tumor invades muscle (finding)','409772009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_409773004','409773004','http://snomed.info/sct','Tumor invades bone (finding)','409773004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_409782005','409782005','http://snomed.info/sct','Tumor invades skin (finding)','409782005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_409783000','409783000','http://snomed.info/sct','Tumor invasion limited to skin (finding)','409783000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_413389003','413389003','http://snomed.info/sct','Accelerated phase chronic myeloid leukemia (disorder)','413389003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_413441006','413441006','http://snomed.info/sct','Acute monocytic leukemia (disorder)','413441006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_413442004','413442004','http://snomed.info/sct','Acute monocytic/monoblastic leukemia (disorder)','413442004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_413445002','413445002','http://snomed.info/sct','Adenocarcinoma of appendix (disorder)','413445002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_413446001','413446001','http://snomed.info/sct','Adenocarcinoma of cecum (disorder)','413446001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_413537009','413537009','http://snomed.info/sct','Angioimmunoblastic T-cell lymphoma (disorder)','413537009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_413587002','413587002','http://snomed.info/sct','Smoldering myeloma (disorder)','413587002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_413842007','413842007','http://snomed.info/sct','Chronic myeloid leukemia in lymphoid blast crisis (disorder)','413842007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_413843002','413843002','http://snomed.info/sct','Chronic myeloid leukemia in myeloid blast crisis (disorder)','413843002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_413847001','413847001','http://snomed.info/sct','Chronic phase chronic myeloid leukemia (disorder)','413847001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_414166008','414166008','http://snomed.info/sct','Extranodal natural killer/T-cell lymphoma, nasal type (disorder)','414166008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_414553000','414553000','http://snomed.info/sct','Kappa light chain myeloma (disorder)','414553000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_414676007','414676007','http://snomed.info/sct','Metastatic neuroblastoma of orbit proper (disorder)','414676007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_414780005','414780005','http://snomed.info/sct','Mucosa-associated lymphoid tissue lymphoma of orbit (disorder)','414780005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_414785000','414785000','http://snomed.info/sct','Multiple solitary plasmacytomas (disorder)','414785000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_414950005','414950005','http://snomed.info/sct','Optic nerve glioma of orbit (disorder)','414950005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_415110002','415110002','http://snomed.info/sct','Plasma cell myeloma/plasmacytoma (disorder)','415110002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_415111003','415111003','http://snomed.info/sct','Plasma cell neoplasm (disorder)','415111003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_415112005','415112005','http://snomed.info/sct','Plasmacytoma (disorder)','415112005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_415177008','415177008','http://snomed.info/sct','Primary malignant neoplasm of ear, nose AND/OR throat (disorder)','415177008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_415283002','415283002','http://snomed.info/sct','Myelodysplastic syndrome with excess blasts-1 (disorder)','415283002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_415284008','415284008','http://snomed.info/sct','Myelodysplastic syndrome with excess blasts-2 (disorder)','415284008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_415285009','415285009','http://snomed.info/sct','Myelodysplastic syndrome with multilineage dysplasia (disorder)','415285009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_415286005','415286005','http://snomed.info/sct','Myelodysplastic syndrome with ring sideroblasts and multilineage dysplasia (disorder)','415286005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_415287001','415287001','http://snomed.info/sct','Relapsing chronic myeloid leukemia (disorder)','415287001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_416351002','416351002','http://snomed.info/sct','Intraocular optic nerve glioma (disorder)','416351002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_416769008','416769008','http://snomed.info/sct','Malignant teratoma of testis (disorder)','416769008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_416842003','416842003','http://snomed.info/sct','Malignant sacral teratoma (disorder)','416842003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_416901002','416901002','http://snomed.info/sct','Malignant medulloepithelioma of ciliary body (disorder)','416901002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_416921001','416921001','http://snomed.info/sct','Carcinoma in situ of nasolacrimal duct (disorder)','416921001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_417152008','417152008','http://snomed.info/sct','Langerhans cell histiocytosis of lung (disorder)','417152008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_417181009','417181009','http://snomed.info/sct','Hormone receptor positive malignant neoplasm of breast (disorder)','417181009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_417417007','417417007','http://snomed.info/sct','Malignant teratoma of undescended testis (disorder)','417417007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_417554000','417554000','http://snomed.info/sct','Malignant teratoma of descended testis (disorder)','417554000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_417570003','417570003','http://snomed.info/sct','Gestational choriocarcinoma (disorder)','417570003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_417619001','417619001','http://snomed.info/sct','Intracranial optic nerve glioma (disorder)','417619001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_418372008','418372008','http://snomed.info/sct','Squamous cell carcinoma of mucous membrane of lower lip (disorder)','418372008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_418529003','418529003','http://snomed.info/sct','Metastatic malignant neoplasm to lacrimal drainage structure (disorder)','418529003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_419052002','419052002','http://snomed.info/sct','Malignant tumor of urinary system (disorder)','419052002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_419240004','419240004','http://snomed.info/sct','Squamous cell carcinoma of mucous membrane of upper lip (disorder)','419240004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_419842002','419842002','http://snomed.info/sct','Squamous cell carcinoma of oral mucous membrane (disorder)','419842002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_420120006','420120006','http://snomed.info/sct','Gastrointestinal stromal tumor (disorder)','420120006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_420519005','420519005','http://snomed.info/sct','Malignant lymphoma of the eye region (disorder)','420519005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_420788006','420788006','http://snomed.info/sct','Intraocular non-Hodgkin malignant lymphoma (disorder)','420788006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_420890002','420890002','http://snomed.info/sct','T-lymphoblastic leukemia/lymphoblastic lymphoma (disorder)','420890002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_421246008','421246008','http://snomed.info/sct','T-lymphoblastic lymphoma (disorder)','421246008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_421249001','421249001','http://snomed.info/sct','Malignant tumor of vermilion border of lip (disorder)','421249001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_421418009','421418009','http://snomed.info/sct','Mature T-cell AND/OR natural killer cell neoplasm (disorder)','421418009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_421696004','421696004','http://snomed.info/sct','Precursor T-cell neoplasm (disorder)','421696004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_422172005','422172005','http://snomed.info/sct','T-cell AND/OR natural killer-cell neoplasm (disorder)','422172005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_422375001','422375001','http://snomed.info/sct','Carcinoma of colon, stage III (finding)','422375001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_422378004','422378004','http://snomed.info/sct','Squamous cell carcinoma of bridge of nose (disorder)','422378004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_422399001','422399001','http://snomed.info/sct','Infiltrating ductal carcinoma of breast, stage 1 (disorder)','422399001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_422479008','422479008','http://snomed.info/sct','Infiltrating ductal carcinoma of breast, stage 2 (disorder)','422479008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_422541001','422541001','http://snomed.info/sct','Undifferentiated carcinoma of nasopharynx (disorder)','422541001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_422572002','422572002','http://snomed.info/sct','Squamous cell carcinoma of chin (disorder)','422572002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_422581008','422581008','http://snomed.info/sct','Carcinoma of colon, stage II (finding)','422581008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_422599000','422599000','http://snomed.info/sct','Squamous cell carcinoma of back (disorder)','422599000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_422607004','422607004','http://snomed.info/sct','Carcinoma in situ of lacrimal drainage system (disorder)','422607004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_422676009','422676009','http://snomed.info/sct','Squamous cell carcinoma of ala nasi (disorder)','422676009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_422679002','422679002','http://snomed.info/sct','Seminoma of testis, stage 3 (disorder)','422679002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_422691006','422691006','http://snomed.info/sct','Squamous cell carcinoma of nasopharynx (disorder)','422691006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_422736007','422736007','http://snomed.info/sct','Primary malignant neoplasm of peripheral nerve (disorder)','422736007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_422758009','422758009','http://snomed.info/sct','Carcinoma of nasal meatus (disorder)','422758009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_422782004','422782004','http://snomed.info/sct','Primary malignant neoplasm of ovary, with widespread metastatic disease (disorder)','422782004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_422807001','422807001','http://snomed.info/sct','pT4: Tumor directly invades other organs or structures and/or perforates visceral peritoneum (appendix) (finding)','422807001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_422833009','422833009','http://snomed.info/sct','Adenoid cystic carcinoma of salivary gland (disorder)','422833009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_422853008','422853008','http://snomed.info/sct','Lymphoma of retroperitoneal space (disorder)','422853008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_422886007','422886007','http://snomed.info/sct','Olfactory neuroblastoma (disorder)','422886007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_422893006','422893006','http://snomed.info/sct','Carcinoma in situ of lacrimal gland duct (disorder)','422893006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_422968005','422968005','http://snomed.info/sct','Non-small cell carcinoma of lung, TNM stage 3 (disorder)','422968005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_422985007','422985007','http://snomed.info/sct','Carcinoma of colon, stage IV (finding)','422985007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_423003009','423003009','http://snomed.info/sct','pT3: Tumor invades through the muscularis propria into the subserosa or into mesoappendix (appendix) (finding)','423003009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_423005002','423005002','http://snomed.info/sct','Primary malignant neoplasm of lacrimal gland duct (disorder)','423005002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_423032007','423032007','http://snomed.info/sct','Leukemic infiltration of orbit (disorder)','423032007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_423038006','423038006','http://snomed.info/sct','Polymorphous low grade adenocarcinoma of salivary gland (disorder)','423038006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_423050000','423050000','http://snomed.info/sct','Large cell carcinoma of lung, TNM stage 2 (disorder)','423050000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_423106003','423106003','http://snomed.info/sct','Adenocarcinoma of nasopharynx (disorder)','423106003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_423114009','423114009','http://snomed.info/sct','Infiltrating ductal carcinoma of breast, stage 3 (disorder)','423114009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_423121009','423121009','http://snomed.info/sct','Non-small cell carcinoma of lung, TNM stage 4 (disorder)','423121009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_423158009','423158009','http://snomed.info/sct','Hurthle cell carcinoma of thyroid (disorder)','423158009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_423189008','423189008','http://snomed.info/sct','Adenoid cystic carcinoma of submandibular gland (disorder)','423189008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_423195009','423195009','http://snomed.info/sct','Primary malignant neoplasm of lacrimal drainage system (disorder)','423195009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_423274005','423274005','http://snomed.info/sct','Carcinoma of ovary, stage 4 (disorder)','423274005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_423278008','423278008','http://snomed.info/sct','Lentigo maligna of skin of eyelid (disorder)','423278008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_423280002','423280002','http://snomed.info/sct','Malignant melanoma of skin of canthus of eye (disorder)','423280002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_423284006','423284006','http://snomed.info/sct','Squamous cell carcinoma of skin of neck (disorder)','423284006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_423295000','423295000','http://snomed.info/sct','Squamous cell carcinoma of lung, TNM stage 1 (disorder)','423295000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_423318000','423318000','http://snomed.info/sct','Adenoid cystic carcinoma of oropharynx (disorder)','423318000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_423349005','423349005','http://snomed.info/sct','Carcinoma of tip of nose (disorder)','423349005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_423384009','423384009','http://snomed.info/sct','Metastatic malignant neoplasm to lacrimal gland duct (disorder)','423384009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_423424005','423424005','http://snomed.info/sct','Mucoepidermoid carcinoma of submandibular gland (disorder)','423424005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_423425006','423425006','http://snomed.info/sct','Malignant neoplasm of skin of eyelid (disorder)','423425006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_423447006','423447006','http://snomed.info/sct','Malignant melanoma of skin of lower eyelid (disorder)','423447006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_423464009','423464009','http://snomed.info/sct','Squamous cell carcinoma of oropharynx (disorder)','423464009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_423468007','423468007','http://snomed.info/sct','Squamous cell carcinoma of lung, TNM stage 2 (disorder)','423468007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_423480004','423480004','http://snomed.info/sct','Carcinoma of ovary, stage 3 (disorder)','423480004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_423494003','423494003','http://snomed.info/sct','Malignant melanoma of skin of upper eyelid (disorder)','423494003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_423506005','423506005','http://snomed.info/sct','Squamous cell carcinoma of external auditory canal (disorder)','423506005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_423595004','423595004','http://snomed.info/sct','Adenocarcinoma carcinomatosis (disorder)','423595004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_423600008','423600008','http://snomed.info/sct','Large cell carcinoma of lung, TNM stage 4 (disorder)','423600008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_423607006','423607006','http://snomed.info/sct','Adenocarcinoma of anus (disorder)','423607006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_423610004','423610004','http://snomed.info/sct','Rhabdomyosarcoma of connective or soft tissue (disorder)','423610004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_423615009','423615009','http://snomed.info/sct','Adenoid cystic carcinoma of parotid gland (disorder)','423615009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_423627007','423627007','http://snomed.info/sct','Sarcoma of ovary (disorder)','423627007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_423645007','423645007','http://snomed.info/sct','Seminoma of testis, stage 2 (disorder)','423645007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_423673009','423673009','http://snomed.info/sct','Malignant melanoma of retina (disorder)','423673009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_423691004','423691004','http://snomed.info/sct','Malignant neoplasm of gum and contiguous sites (disorder)','423691004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_423697000','423697000','http://snomed.info/sct','Seminoma of testis, stage 4 (disorder)','423697000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_423700001','423700001','http://snomed.info/sct','Squamous cell carcinoma of auricle of ear (disorder)','423700001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_423708008','423708008','http://snomed.info/sct','Mucoepidermoid carcinoma of salivary gland (disorder)','423708008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_423746001','423746001','http://snomed.info/sct','Adenocarcinoma of pelvis (disorder)','423746001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_423793008','423793008','http://snomed.info/sct','Mucoepidermoid carcinoma of parotid gland (disorder)','423793008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_423807009','423807009','http://snomed.info/sct','Primary leiomyosarcoma (disorder)','423807009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_423812005','423812005','http://snomed.info/sct','Sarcoma of head and neck (disorder)','423812005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_423816008','423816008','http://snomed.info/sct','Seminoma of testis, stage 1 (disorder)','423816008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_423829008','423829008','http://snomed.info/sct','Invasive vulval Paget''s disease (disorder)','423829008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_423896007','423896007','http://snomed.info/sct','Squamous cell carcinoma of tip of nose (disorder)','423896007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_423973006','423973006','http://snomed.info/sct','Carcinoma of uterine cervix, invasive (disorder)','423973006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_423987006','423987006','http://snomed.info/sct','Primary malignant neoplasm of vulva, with widespread metastatic disease (disorder)','423987006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_424052001','424052001','http://snomed.info/sct','Small cell carcinoma carcinomatosis (disorder)','424052001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_424078005','424078005','http://snomed.info/sct','Adenocarcinoma of lung, stage I (disorder)','424078005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_424132000','424132000','http://snomed.info/sct','Non-small cell carcinoma of lung, TNM stage 1 (disorder)','424132000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_424151006','424151006','http://snomed.info/sct','Anaplastic glioma of brain (disorder)','424151006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_424190005','424190005','http://snomed.info/sct','Malignant melanoma of unknown origin (disorder)','424190005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_424229006','424229006','http://snomed.info/sct','Infiltrating ductal carcinoma of breast, stage 4 (disorder)','424229006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_424260006','424260006','http://snomed.info/sct','Squamous cell carcinoma of nasolabial fold (disorder)','424260006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_424276002','424276002','http://snomed.info/sct','Malignant glioma of brainstem (disorder)','424276002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_424302003','424302003','http://snomed.info/sct','Malignant melanoma of skin of lower lip (disorder)','424302003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_424334007','424334007','http://snomed.info/sct','Malignant tumor of spinal cord, intramedullary (disorder)','424334007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_424413001','424413001','http://snomed.info/sct','Sarcoma (disorder)','424413001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_424440001','424440001','http://snomed.info/sct','Adenocarcinoma of small intestine (disorder)','424440001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_424454009','424454009','http://snomed.info/sct','Adenocarcinoma of lung, stage III (disorder)','424454009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_424486004','424486004','http://snomed.info/sct','Carcinoma of ovary, stage 2 (disorder)','424486004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_424487008','424487008','http://snomed.info/sct','Malignant melanoma of skin of upper lip (disorder)','424487008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_424549003','424549003','http://snomed.info/sct','Malignant tumor of spinal cord, extramedullary (disorder)','424549003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_424600001','424600001','http://snomed.info/sct','Carcinoma of ovary, stage 1 (disorder)','424600001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_424632001','424632001','http://snomed.info/sct','Adenocarcinoma of lung, stage II (disorder)','424632001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_424750001','424750001','http://snomed.info/sct','Signet-ring cells present, comprising less than 50 percent of malignant cells (finding)','424750001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_424779008','424779008','http://snomed.info/sct','Primary Kaposi''s sarcoma of oral cavity (disorder)','424779008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_424842001','424842001','http://snomed.info/sct','pT1: Tumor invades submucosa (appendix) (finding)','424842001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_424849005','424849005','http://snomed.info/sct','Primary sarcoma of tongue (disorder)','424849005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_424887002','424887002','http://snomed.info/sct','Primary malignant neoplasm of thyroid gland, metastatic to bone (disorder)','424887002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_424938000','424938000','http://snomed.info/sct','Large cell carcinoma of lung, TNM stage 1 (disorder)','424938000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_424944001','424944001','http://snomed.info/sct','Mucinous adenocarcinoma cells present, comprising less than 50 percent of malignant cells (finding)','424944001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_424952003','424952003','http://snomed.info/sct','Sarcoma of soft tissue (disorder)','424952003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_424954002','424954002','http://snomed.info/sct','Undifferentiated large cell carcinomatosis (disorder)','424954002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_424970000','424970000','http://snomed.info/sct','Large cell carcinoma of lung, TNM stage 3 (disorder)','424970000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_424993006','424993006','http://snomed.info/sct','Adenocarcinoma of lung, stage IV (disorder)','424993006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_425008003','425008003','http://snomed.info/sct','pT2: Tumor invades muscularis propria (appendix) (finding)','425008003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_425048006','425048006','http://snomed.info/sct','Non-small cell carcinoma of lung, TNM stage 2 (disorder)','425048006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_425066001','425066001','http://snomed.info/sct','Carcinoma of urinary bladder, invasive (disorder)','425066001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_425127006','425127006','http://snomed.info/sct','Carcinoma ex pleomorphic adenoma of parotid gland (disorder)','425127006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_425148008','425148008','http://snomed.info/sct','Squamous cell carcinoma of temple (disorder)','425148008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_425178004','425178004','http://snomed.info/sct','Adenocarcinoma of rectosigmoid junction (disorder)','425178004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_425213009','425213009','http://snomed.info/sct','Carcinoma of colon, stage I (finding)','425213009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_425225007','425225007','http://snomed.info/sct','Malignant mixed tumor of salivary gland (disorder)','425225007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_425230006','425230006','http://snomed.info/sct','Squamous cell carcinoma of lung, TNM stage 3 (disorder)','425230006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_425231005','425231005','http://snomed.info/sct','Carcinoma of urinary bladder, superficial (disorder)','425231005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_425303004','425303004','http://snomed.info/sct','Squamous cell carcinomatosis (disorder)','425303004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_425318003','425318003','http://snomed.info/sct','Carcinoid tumor of ileum (disorder)','425318003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_425376008','425376008','http://snomed.info/sct','Squamous cell carcinoma of lung, TNM stage 4 (disorder)','425376008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_425657001','425657001','http://snomed.info/sct','Osteosclerotic myeloma (disorder)','425657001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_425688002','425688002','http://snomed.info/sct','Philadelphia chromosome-positive acute lymphoblastic leukemia (disorder)','425688002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_426078008','426078008','http://snomed.info/sct','Tumor invades head and neck (finding)','426078008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_426288003','426288003','http://snomed.info/sct','pM1b: Distant metastasis to site other than lung (bone) (finding)','426288003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_426336007','426336007','http://snomed.info/sct','Solitary osseous myeloma (disorder)','426336007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_426510004','426510004','http://snomed.info/sct','Schwannoma of spinal cord (disorder)','426510004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_426625008','426625008','http://snomed.info/sct','Tumor invasion deeper than skin (finding)','426625008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_426885008','426885008','http://snomed.info/sct','Hodgkin''s disease, lymphocytic depletion of lymph nodes of head (disorder)','426885008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_426917009','426917009','http://snomed.info/sct','pM1a: Distant metastasis to lung (bone) (finding)','426917009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_426964009','426964009','http://snomed.info/sct','Non-small cell lung cancer, positive for epidermal growth factor receptor expression (disorder)','426964009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_427038005','427038005','http://snomed.info/sct','Non-small cell lung cancer, negative for epidermal growth factor receptor expression (disorder)','427038005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_427352001','427352001','http://snomed.info/sct','Tumor invades mediastinum (finding)','427352001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_427492003','427492003','http://snomed.info/sct','Hormone refractory prostate cancer (disorder)','427492003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_427626002','427626002','http://snomed.info/sct','Tumor invades fascia (finding)','427626002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_427685000','427685000','http://snomed.info/sct','Human epidermal growth factor 2 positive carcinoma of breast (disorder)','427685000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_428061005','428061005','http://snomed.info/sct','Malignant neoplasm of brain (disorder)','428061005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_428100006','428100006','http://snomed.info/sct','Malignant neoplasm of thoracic cavity structure (disorder)','428100006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_428281000','428281000','http://snomed.info/sct','Malignant neoplasm of bone (disorder)','428281000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_428322007','428322007','http://snomed.info/sct','Malignant neoplasm of uterine adnexa (disorder)','428322007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_428753007','428753007','http://snomed.info/sct','Low grade glioma of cerebellum (disorder)','428753007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_428905002','428905002','http://snomed.info/sct','Malignant neoplasm of gastrointestinal tract (disorder)','428905002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_428960009','428960009','http://snomed.info/sct','Low grade glioma of brainstem (disorder)','428960009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_428964000','428964000','http://snomed.info/sct','Low grade glioma of cerebrum (disorder)','428964000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_428965004','428965004','http://snomed.info/sct','Low grade glioma of thalamus (disorder)','428965004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_429033009','429033009','http://snomed.info/sct','Malignant neoplasm of cerebrum (disorder)','429033009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_429114002','429114002','http://snomed.info/sct','Malignant basal cell neoplasm of skin (disorder)','429114002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_429408002','429408002','http://snomed.info/sct','Low grade glioma of brain (disorder)','429408002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_429565004','429565004','http://snomed.info/sct','Germ cell tumor of the brain (disorder)','429565004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_430338009','430338009','http://snomed.info/sct','Smoldering chronic lymphocytic leukemia (disorder)','430338009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_430556008','430556008','http://snomed.info/sct','Malignant neoplasm of genital structure (disorder)','430556008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_430621000','430621000','http://snomed.info/sct','Malignant neoplasm of lower respiratory tract (disorder)','430621000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_431396003','431396003','http://snomed.info/sct','Human epidermal growth factor 2 negative carcinoma of breast (disorder)','431396003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_431911000124102','431911000124102','http://snomed.info/sct','Gnathic osteosarcoma (disorder)','431911000124102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_432131000124100','432131000124100','http://snomed.info/sct','Malignant mesothelioma of tunica vaginalis (disorder)','432131000124100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_432328008','432328008','http://snomed.info/sct','Neuroblastoma (disorder)','432328008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_433067002','433067002','http://snomed.info/sct','Adamantinoma of femur (disorder)','433067002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_433411000124107','433411000124107','http://snomed.info/sct','Neoplasm of breast distant metastasis staging category M0: No clinical or radiographic evidence of distant metastasis (finding)','433411000124107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_433441000124106','433441000124106','http://snomed.info/sct','Neoplasm of breast regional lymph node staging category N0: No regional lymph node metastasis (finding)','433441000124106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_433451000124108','433451000124108','http://snomed.info/sct','Neoplasm of breast regional lymph node staging category N1: Metastasis to movable ipsilateral level I, II axillary lymph node(s) (finding)','433451000124108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_433461000124105','433461000124105','http://snomed.info/sct','Neoplasm of colon primary tumor staging category T1: Tumor invades submucosa (finding)','433461000124105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_433471000124103','433471000124103','http://snomed.info/sct','Neoplasm of colon primary tumor staging category T2: Tumor invades muscularis propria (finding)','433471000124103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_433481000124100','433481000124100','http://snomed.info/sct','Neoplasm of colon primary tumor staging category T3: Tumor invades through muscularis propria into pericolorectal tissues (finding)','433481000124100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_433501000124105','433501000124105','http://snomed.info/sct','Neoplasm of colon primary tumor staging category T4b: Tumor directly invades or is adherent to other organ or structure (finding)','433501000124105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_433511000124108','433511000124108','http://snomed.info/sct','Neoplasm of colon regional lymph node staging category N1: Metastasis in 1-3 regional lymph nodes (finding)','433511000124108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_433521000124100','433521000124100','http://snomed.info/sct','Neoplasm of colon regional lymph node staging category N1a: Metastasis in 1 regional lymph node (finding)','433521000124100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_433531000124102','433531000124102','http://snomed.info/sct','Neoplasm of colon regional lymph node staging category N1b: Metastasis in 2-3 regional lymph nodes (finding)','433531000124102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_433541000124107','433541000124107','http://snomed.info/sct','Neoplasm of colon regional lymph node staging category N1c: Tumor deposit(s) in subserosa, mesentery, or nonperitonealized pericolic or perirectal tissues without regional nodal metastasis (finding)','433541000124107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_433551000124109','433551000124109','http://snomed.info/sct','Neoplasm of colon regional lymph node staging category N2: Metastasis in 4 or more regional lymph nodes (finding)','433551000124109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_433561000124106','433561000124106','http://snomed.info/sct','Neoplasm of colon regional lymph node staging category N2a: Metastasis in 4-6 regional lymph nodes (finding)','433561000124106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_433571000124104','433571000124104','http://snomed.info/sct','Neoplasm of colon regional lymph node staging category N2b: Metastasis in 7 or more regional lymph nodes (finding)','433571000124104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_433581000124101','433581000124101','http://snomed.info/sct','Neoplasm of colon distant metastasis staging category M0: No distant metastasis (finding)','433581000124101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_434801000124109','434801000124109','http://snomed.info/sct','Neoplasm of breast regional lymph node staging category N2b: Metastases only in clinically detected ipsilateral internal mammary nodes and in the absence of clinically evident level I, II axillary lymph node metastases (finding)','434801000124109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_436121000124104','436121000124104','http://snomed.info/sct','Neoplasm of breast regional lymph node staging category pN0(i-): No regional lymph node metastasis histologically, negative immunohistochemically (finding)','436121000124104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_436131000124101','436131000124101','http://snomed.info/sct','Neoplasm of breast primary tumor staging category T4a: Extension to the chest wall, not including only adherence and/or invasion to pectoralis muscle (finding)','436131000124101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_436201000124104','436201000124104','http://snomed.info/sct','Neoplasm of breast distant metastasis staging category M1: Distant detectable metastasis found by clinical and radiographic means and/or histologically proven larger than 0.2 mm (finding)','436201000124104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_436221000124109','436221000124109','http://snomed.info/sct','Neoplasm of breast distant metastasis staging category cM0(i+) as per American Joint Committee on Cancer 7th edition (finding)','436221000124109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_436241000124102','436241000124102','http://snomed.info/sct','Neoplasm of breast regional lymph node staging category N3c: Metastasis in ipsilateral supraclavicular lymph node(s) (finding)','436241000124102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_436251000124100','436251000124100','http://snomed.info/sct','Neoplasm of breast regional lymph node staging category N2a: Metastasis in ipsilateral level I, II axillary lymph nodes fixed to one another or to other structures (finding)','436251000124100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_436261000124103','436261000124103','http://snomed.info/sct','Neoplasm of breast regional lymph node staging category N3b: Metastasis in ipsilateral internal mammary lymph node(s) and axillary lymph node(s) (finding)','436261000124103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_436271000124105','436271000124105','http://snomed.info/sct','Neoplasm of breast regional lymph node staging category N3a: Metastasis in ipsilateral infraclavicular lymph node(s) (finding)','436271000124105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_436291000124106','436291000124106','http://snomed.info/sct','Neoplasm of colon primary tumor staging category Tis: Carcinoma in situ: intraepithelial or invasion of lamina propria (finding)','436291000124106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_436311000124105','436311000124105','http://snomed.info/sct','Neoplasm of colon distant metastasis staging category N0: No regional lymph node metastasis (finding)','436311000124105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_436321000124102','436321000124102','http://snomed.info/sct','Neoplasm of colon distant metastasis staging category M1b: Metastasis in more than one organ or site or peritoneum (finding)','436321000124102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_436331000124104','436331000124104','http://snomed.info/sct','Neoplasm of colon distant metastasis staging category M1: Distant metastasis (finding)','436331000124104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_436341000124109','436341000124109','http://snomed.info/sct','Neoplasm of colon distant metastasis staging category M1a: Metastasis confine to one organ or site (finding)','436341000124109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_436371000124101','436371000124101','http://snomed.info/sct','Neoplasm of prostate regional lymph node staging category N0: No regional lymph node metastasis (finding)','436371000124101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_436381000124103','436381000124103','http://snomed.info/sct','Neoplasm of prostate regional lymph node staging category pN1: Metastasis in regional node(s) (finding)','436381000124103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_436391000124100','436391000124100','http://snomed.info/sct','Neoplasm of prostate distant metastasis staging category M0: No distant metastasis (finding)','436391000124100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_436401000124103','436401000124103','http://snomed.info/sct','Neoplasm of prostate distant metastasis staging category M1: Distant metastasis (finding)','436401000124103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_436411000124100','436411000124100','http://snomed.info/sct','Neoplasm of prostate distant metastasis staging category M1a: Metastasis to nonregional lymph node(s) (finding)','436411000124100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_436421000124108','436421000124108','http://snomed.info/sct','Neoplasm of prostate distant metastasis staging category M1c: Distant metastasis with or without metastasis to bone (finding)','436421000124108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_436431000124106','436431000124106','http://snomed.info/sct','Neoplasm of prostate distant metastasis staging category M1b: Metastasis to bone (finding)','436431000124106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_436471000124109','436471000124109','http://snomed.info/sct','Neoplasm of prostate primary tumor staging category pT3a: Extraprostatic extension or microscopic invasion of bladder neck (finding)','436471000124109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_436481000124107','436481000124107','http://snomed.info/sct','Neoplasm of prostate primary tumor staging category T4: Tumor is fixed or invades adjacent structure other than seminal vesicle (finding)','436481000124107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_436491000124105','436491000124105','http://snomed.info/sct','Neoplasm of prostate primary tumor staging category pT4: Invasion of rectum, levator muscles, and/or pelvic wall (finding)','436491000124105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_438946002','438946002','http://snomed.info/sct','Siewert type I adenocarcinoma of esophagogastric junction (disorder)','438946002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_439478008','439478008','http://snomed.info/sct','Siewert type III adenocarcinoma of esophagogastric junction (disorder)','439478008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_439890004','439890004','http://snomed.info/sct','Malignant neoplasm detected by Papanicolaou smear of vagina (finding)','439890004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_439891000','439891000','http://snomed.info/sct','Malignant neoplasm detected by Papanicolaou smear of anus (finding)','439891000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_440173001','440173001','http://snomed.info/sct','Nonsquamous nonsmall cell neoplasm of lung (disorder)','440173001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_440397000','440397000','http://snomed.info/sct','Primary osteosarcoma of pelvis (disorder)','440397000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_440422002','440422002','http://snomed.info/sct','Asymptomatic multiple myeloma (disorder)','440422002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_440501006','440501006','http://snomed.info/sct','Siewert type II adenocarcinoma of esophagogastric junction (disorder)','440501006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_440525003','440525003','http://snomed.info/sct','Primary small cell neoplasm of thymus (disorder)','440525003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_440527006','440527006','http://snomed.info/sct','Primary squamous cell carcinoma of naris (disorder)','440527006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_441313008','441313008','http://snomed.info/sct','Indolent multiple myeloma (disorder)','441313008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_441535001','441535001','http://snomed.info/sct','Adenocarcinoma of head and neck (disorder)','441535001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_441559006','441559006','http://snomed.info/sct','Mantle cell lymphoma of spleen (disorder)','441559006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_441962003','441962003','http://snomed.info/sct','Large cell lymphoma of intrapelvic lymph nodes (disorder)','441962003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_44255004','44255004','http://snomed.info/sct','Lymphoma stage IIIe (finding)','44255004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_443136000','443136000','http://snomed.info/sct','Malignant neoplasm of skin of face (disorder)','443136000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_443144000','443144000','http://snomed.info/sct','Metastatic sarcoma (disorder)','443144000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_443250000','443250000','http://snomed.info/sct','Malignant fibromatous neoplasm (disorder)','443250000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_443261008','443261008','http://snomed.info/sct','Oxyphilic adenocarcinoma (disorder)','443261008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_443333004','443333004','http://snomed.info/sct','Medulloblastoma (disorder)','443333004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_443439001','443439001','http://snomed.info/sct','Malignant fibrous histiocytoma (disorder)','443439001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_443487006','443487006','http://snomed.info/sct','Mantle cell lymphoma (disorder)','443487006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_443488001','443488001','http://snomed.info/sct','Malignant neoplasm of anorectum (disorder)','443488001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_443493003','443493003','http://snomed.info/sct','Metastatic malignant melanoma (disorder)','443493003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_443520009','443520009','http://snomed.info/sct','Chondrosarcoma (disorder)','443520009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_443643007','443643007','http://snomed.info/sct','Ependymoma (disorder)','443643007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_443648003','443648003','http://snomed.info/sct','Malignant neoplasm of ear (disorder)','443648003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_443675005','443675005','http://snomed.info/sct','Seminoma (disorder)','443675005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_443679004','443679004','http://snomed.info/sct','Malignant neoplasm of skeletal system (disorder)','443679004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_443719001','443719001','http://snomed.info/sct','Leiomyosarcoma (disorder)','443719001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_443766002','443766002','http://snomed.info/sct','Invasion of neoplasm to visceral peritoneum (finding)','443766002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_443936004','443936004','http://snomed.info/sct','Oligodendroglioma (disorder)','443936004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_443937008','443937008','http://snomed.info/sct','Mixed glioma (disorder)','443937008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_443961001','443961001','http://snomed.info/sct','Malignant adenomatous neoplasm (disorder)','443961001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_444170006','444170006','http://snomed.info/sct','Invasion of skeletal muscle by carcinoma (finding)','444170006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_444231005','444231005','http://snomed.info/sct','Thymoma (disorder)','444231005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_444327002','444327002','http://snomed.info/sct','Synchronous primary carcinomas (finding)','444327002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_444374006','444374006','http://snomed.info/sct','Type C thymoma (disorder)','444374006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_444545003','444545003','http://snomed.info/sct','Glioma of brainstem (disorder)','444545003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_444596001','444596001','http://snomed.info/sct','Malignant thymoma (disorder)','444596001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_444597005','444597005','http://snomed.info/sct','Extranodal marginal zone lymphoma of mucosa-associated lymphoid tissue of stomach (disorder)','444597005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_444604002','444604002','http://snomed.info/sct','Carcinoma of breast with ductal and lobular features (disorder)','444604002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_444712000','444712000','http://snomed.info/sct','Mucinous carcinoma of breast (disorder)','444712000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_444910004','444910004','http://snomed.info/sct','Primary mediastinal (thymic) large B-cell lymphoma (disorder)','444910004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_444911000','444911000','http://snomed.info/sct','Acute myeloid leukemia with t(9:11)(p22;q23); MLLT3-MLL (disorder)','444911000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_445227008','445227008','http://snomed.info/sct','Juvenile myelomonocytic leukemia (disorder)','445227008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_445238008','445238008','http://snomed.info/sct','Malignant carcinoid tumor (disorder)','445238008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_445269007','445269007','http://snomed.info/sct','Extranodal marginal zone B-cell lymphoma of mucosa-associated lymphoid tissue (disorder)','445269007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_445406001','445406001','http://snomed.info/sct','Hepatosplenic T-cell lymphoma (disorder)','445406001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_445448008','445448008','http://snomed.info/sct','Acute myeloid leukemia with myelodysplasia-related changes (disorder)','445448008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_445736006','445736006','http://snomed.info/sct','Gastrointestinal stromal tumor of stomach (disorder)','445736006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_445737002','445737002','http://snomed.info/sct','Gastrointestinal stromal tumor of small intestine (disorder)','445737002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_445738007','445738007','http://snomed.info/sct','Myelodysplastic/myeloproliferative disease (disorder)','445738007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_445964006','445964006','http://snomed.info/sct','Monomorphic posttransplant lymphoproliferative disorder (disorder)','445964006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_446022000','446022000','http://snomed.info/sct','Malignant epithelial neoplasm of uterus (disorder)','446022000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_446124001','446124001','http://snomed.info/sct','Gastrointestinal stromal tumor of esophagus (disorder)','446124001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_446189008','446189008','http://snomed.info/sct','Primary malignant neoplasm of extrahepatic bile duct (disorder)','446189008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_446643000','446643000','http://snomed.info/sct','Sarcoma of dendritic cells (accessory cells) (disorder)','446643000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_446807009','446807009','http://snomed.info/sct','Primary malignant neoplasm of perihilar bile duct (disorder)','446807009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_446925001','446925001','http://snomed.info/sct','Gastrointestinal stromal tumor of large intestine (disorder)','446925001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_446939001','446939001','http://snomed.info/sct','Chordoma of clivus (disorder)','446939001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_446945009','446945009','http://snomed.info/sct','Invasive pituitary adenoma (disorder)','446945009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_447100004','447100004','http://snomed.info/sct','Marginal zone lymphoma (disorder)','447100004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_447109003','447109003','http://snomed.info/sct','Primary malignant neoplasm of intrahepatic bile duct (disorder)','447109003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_447266004','447266004','http://snomed.info/sct','Sarcoma of endometrium (disorder)','447266004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_447389009','447389009','http://snomed.info/sct','Leiomyosarcoma of uterus (disorder)','447389009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_447390000','447390000','http://snomed.info/sct','Adenosarcoma of uterus (disorder)','447390000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_447416008','447416008','http://snomed.info/sct','Primary malignant neoplasm of distal bile duct (disorder)','447416008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_447596005','447596005','http://snomed.info/sct','Myelodysplastic/myeloproliferative neoplasm, unclassifiable (disorder)','447596005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_447656001','447656001','http://snomed.info/sct','Lymphoma of pylorus of stomach (disorder)','447656001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_447658000','447658000','http://snomed.info/sct','Lymphoma of fundus of stomach (disorder)','447658000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_447705002','447705002','http://snomed.info/sct','Malignant germ cell neoplasm of posterior mediastinum (disorder)','447705002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_447706001','447706001','http://snomed.info/sct','Leiomyosarcoma of scalp (disorder)','447706001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_447707005','447707005','http://snomed.info/sct','Leiomyosarcoma of cardia of stomach (disorder)','447707005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_447708000','447708000','http://snomed.info/sct','Malignant germ cell neoplasm of anterior mediastinum (disorder)','447708000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_447710003','447710003','http://snomed.info/sct','Dermatofibrosarcoma protuberans of skin of shoulder (disorder)','447710003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_447711004','447711004','http://snomed.info/sct','Follicular neoplasm of thyroid (disorder)','447711004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_447712006','447712006','http://snomed.info/sct','Malignant melanoma of skin of anus (disorder)','447712006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_447730004','447730004','http://snomed.info/sct','Chordoma of sacrum (disorder)','447730004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_447738006','447738006','http://snomed.info/sct','Paget''s disease of skin of scrotum (disorder)','447738006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_447757002','447757002','http://snomed.info/sct','Angiosarcoma of cheek (disorder)','447757002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_447766003','447766003','http://snomed.info/sct','Lymphoma of pyloric antrum of stomach (disorder)','447766003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_447781009','447781009','http://snomed.info/sct','Malignant epithelial neoplasm of peritoneum (disorder)','447781009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_447782002','447782002','http://snomed.info/sct','Malignant epithelial neoplasm of female breast (disorder)','447782002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_447783007','447783007','http://snomed.info/sct','Sarcoma of peritoneum (disorder)','447783007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_447784001','447784001','http://snomed.info/sct','Sarcoma of axillary tail of female breast (disorder)','447784001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_447785000','447785000','http://snomed.info/sct','Leiomyosarcoma of stomach (disorder)','447785000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_447792005','447792005','http://snomed.info/sct','Chondrosarcoma of bone (disorder)','447792005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_447800002','447800002','http://snomed.info/sct','Adenocarcinoma of scrotum (disorder)','447800002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_447804006','447804006','http://snomed.info/sct','Leiomyosarcoma of connective tissue (disorder)','447804006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_447805007','447805007','http://snomed.info/sct','Lymphoma of greater curvature of stomach (disorder)','447805007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_447806008','447806008','http://snomed.info/sct','Lymphoma of cardia of stomach (disorder)','447806008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_447882007','447882007','http://snomed.info/sct','Malignant epithelial neoplasm of vulva (disorder)','447882007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_447883002','447883002','http://snomed.info/sct','Malignant neoplasm of carotid body (disorder)','447883002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_447885009','447885009','http://snomed.info/sct','Sarcoma of pelvis (disorder)','447885009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_447886005','447886005','http://snomed.info/sct','Adenocarcinoma of anorectum (disorder)','447886005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_447949005','447949005','http://snomed.info/sct','Malignant epithelial neoplasm of cheek (disorder)','447949005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_447951009','447951009','http://snomed.info/sct','Ewing''s sarcoma of soft tissue (disorder)','447951009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_447989004','447989004','http://snomed.info/sct','Non-Hodgkin''s lymphoma of extranodal site (disorder)','447989004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448139005','448139005','http://snomed.info/sct','Fibrosarcoma of connective tissue (disorder)','448139005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448165009','448165009','http://snomed.info/sct','Squamous cell carcinoma arising in chronic ulcer (disorder)','448165009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448212009','448212009','http://snomed.info/sct','Anaplastic lymphoma kinase negative anaplastic large cell lymphoma (disorder)','448212009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448213004','448213004','http://snomed.info/sct','Diffuse non-Hodgkin''s lymphoma of prostate (disorder)','448213004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448214005','448214005','http://snomed.info/sct','Malignant epithelial neoplasm of oropharynx (disorder)','448214005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448215006','448215006','http://snomed.info/sct','Malignant epithelial neoplasm of renal pelvis (disorder)','448215006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448216007','448216007','http://snomed.info/sct','Malignant epithelial neoplasm of thyroid (disorder)','448216007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448217003','448217003','http://snomed.info/sct','Follicular non-Hodgkin''s lymphoma of prostate (disorder)','448217003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448218008','448218008','http://snomed.info/sct','Malignant neoplasm of cerebellopontine angle (disorder)','448218008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448220006','448220006','http://snomed.info/sct','Non-Hodgkin''s lymphoma of bone (disorder)','448220006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448221005','448221005','http://snomed.info/sct','Sarcoma of fibula (disorder)','448221005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448229007','448229007','http://snomed.info/sct','Leiomyosarcoma of lower esophagus (disorder)','448229007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448231003','448231003','http://snomed.info/sct','Follicular non-Hodgkin''s lymphoma of nose (disorder)','448231003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448233000','448233000','http://snomed.info/sct','Malignant neoplasm of urinary organ (disorder)','448233000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448248006','448248006','http://snomed.info/sct','Malignant neoplasm of axial suprasellar region of brain (disorder)','448248006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448250003','448250003','http://snomed.info/sct','Malignant teratoma of pineal region (disorder)','448250003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448254007','448254007','http://snomed.info/sct','Non-Hodgkin''s lymphoma of central nervous system (disorder)','448254007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448257000','448257000','http://snomed.info/sct','Sarcoma of male breast (disorder)','448257000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448258005','448258005','http://snomed.info/sct','Sarcoma of mesentery (disorder)','448258005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448259002','448259002','http://snomed.info/sct','Sarcoma of posterior mediastinum (disorder)','448259002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448269008','448269008','http://snomed.info/sct','Lymphoma of lesser curvature of stomach (disorder)','448269008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448273006','448273006','http://snomed.info/sct','Malignant melanoma of skin of scrotum (disorder)','448273006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448274000','448274000','http://snomed.info/sct','Malignant neoplasm of connective tissue (disorder)','448274000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448296006','448296006','http://snomed.info/sct','Dermatofibrosarcoma protuberans of skin of chest (disorder)','448296006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448298007','448298007','http://snomed.info/sct','Malignant melanoma of skin of penis (disorder)','448298007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448299004','448299004','http://snomed.info/sct','Malignant neoplasm of mastoid (disorder)','448299004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448300007','448300007','http://snomed.info/sct','Malignant melanoma of skin of vulva (disorder)','448300007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448314007','448314007','http://snomed.info/sct','Malignant epithelial neoplasm of spinal cord (disorder)','448314007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448315008','448315008','http://snomed.info/sct','Malignant epithelial neoplasm of anus (disorder)','448315008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448317000','448317000','http://snomed.info/sct','Follicular non-Hodgkin''s lymphoma of soft tissue (disorder)','448317000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448319002','448319002','http://snomed.info/sct','Diffuse non-Hodgkin''s lymphoma of nasopharynx (disorder)','448319002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448354009','448354009','http://snomed.info/sct','Non-Hodgkin''s lymphoma of intestine (disorder)','448354009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448371005','448371005','http://snomed.info/sct','Non-Hodgkin''s lymphoma of nasopharynx (disorder)','448371005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448372003','448372003','http://snomed.info/sct','Non-Hodgkin''s lymphoma of lung (disorder)','448372003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448376000','448376000','http://snomed.info/sct','Non-Hodgkin''s lymphoma of ovary (disorder)','448376000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448377009','448377009','http://snomed.info/sct','Sarcoma of sacrum (disorder)','448377009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448378004','448378004','http://snomed.info/sct','Sarcoma of bone of foot (disorder)','448378004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448384001','448384001','http://snomed.info/sct','Non-Hodgkin''s lymphoma of nose (disorder)','448384001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448386004','448386004','http://snomed.info/sct','Non-Hodgkin''s lymphoma of oral cavity (disorder)','448386004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448387008','448387008','http://snomed.info/sct','Non-Hodgkin''s lymphoma of testis (disorder)','448387008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448388003','448388003','http://snomed.info/sct','Sarcoma of lower outer quadrant of female breast (disorder)','448388003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448401007','448401007','http://snomed.info/sct','Choriocarcinoma of placenta (disorder)','448401007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448408001','448408001','http://snomed.info/sct','Sarcoma of upper inner quadrant of female breast (disorder)','448408001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448435005','448435005','http://snomed.info/sct','Sarcoma lower inner quadrant of female breast (disorder)','448435005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448436006','448436006','http://snomed.info/sct','Sarcoma of central portion of female breast (disorder)','448436006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448447004','448447004','http://snomed.info/sct','Non-Hodgkin''s lymphoma of skin (disorder)','448447004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448449001','448449001','http://snomed.info/sct','Sarcoma of female breast (disorder)','448449001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448450001','448450001','http://snomed.info/sct','Sarcoma of omentum (disorder)','448450001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448451002','448451002','http://snomed.info/sct','Sarcoma upper outer quadrant of female breast (disorder)','448451002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448465000','448465000','http://snomed.info/sct','Diffuse non-Hodgkin''s lymphoma of testis (disorder)','448465000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448468003','448468003','http://snomed.info/sct','Diffuse non-Hodgkin''s lymphoma of oral cavity (disorder)','448468003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448509007','448509007','http://snomed.info/sct','Transglottic malignant neoplasm of larynx (disorder)','448509007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448553002','448553002','http://snomed.info/sct','Lymphoma of pelvis (disorder)','448553002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448554008','448554008','http://snomed.info/sct','Liposarcoma of connective tissue (disorder)','448554008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448555009','448555009','http://snomed.info/sct','Lymphoma of body of stomach (disorder)','448555009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448558006','448558006','http://snomed.info/sct','Malignant neoplasm of maxillofacial bone (disorder)','448558006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448559003','448559003','http://snomed.info/sct','Malignant teratoma of retroperitoneum (disorder)','448559003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448560008','448560008','http://snomed.info/sct','Diffuse non-Hodgkin''s lymphoma of extranodal site (disorder)','448560008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448561007','448561007','http://snomed.info/sct','Follicular non-Hodgkin''s lymphoma of extranodal site (disorder)','448561007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448607004','448607004','http://snomed.info/sct','Diffuse non-Hodgkin''s lymphoma of uterine cervix (disorder)','448607004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448609001','448609001','http://snomed.info/sct','Diffuse non-Hodgkin''s lymphoma of ovary (disorder)','448609001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448663003','448663003','http://snomed.info/sct','Diffuse non-Hodgkin''s lymphoma of stomach (disorder)','448663003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448664009','448664009','http://snomed.info/sct','Malignant epithelial neoplasm of small intestine (disorder)','448664009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448665005','448665005','http://snomed.info/sct','Malignant epithelial neoplasm of hypopharynx (disorder)','448665005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448666006','448666006','http://snomed.info/sct','Follicular non-Hodgkin''s lymphoma of bone (disorder)','448666006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448668007','448668007','http://snomed.info/sct','Malignant neoplasm of mandible (disorder)','448668007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448669004','448669004','http://snomed.info/sct','Malignant neoplasm of soft tissue of orbit (disorder)','448669004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448670003','448670003','http://snomed.info/sct','Malignant neoplasm of posterior mediastinum (disorder)','448670003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448672006','448672006','http://snomed.info/sct','Follicular non-Hodgkin''s lymphoma of lung (disorder)','448672006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448674007','448674007','http://snomed.info/sct','Malignant neoplasm of parametrium (disorder)','448674007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448675008','448675008','http://snomed.info/sct','Malignant neoplasm of digestive system (disorder)','448675008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448709005','448709005','http://snomed.info/sct','Non-Hodgkin''s lymphoma of stomach (disorder)','448709005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448710000','448710000','http://snomed.info/sct','Sarcoma of bone (disorder)','448710000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448711001','448711001','http://snomed.info/sct','Sarcoma of back (disorder)','448711001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448712008','448712008','http://snomed.info/sct','Sarcoma of femur (disorder)','448712008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448738008','448738008','http://snomed.info/sct','Non-Hodgkin''s lymphoma of soft tissue (disorder)','448738008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448774004','448774004','http://snomed.info/sct','Non-Hodgkin''s lymphoma of uterine cervix (disorder)','448774004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448775003','448775003','http://snomed.info/sct','Sarcoma of radius (disorder)','448775003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448776002','448776002','http://snomed.info/sct','Sarcoma of vertebra (disorder)','448776002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448863000','448863000','http://snomed.info/sct','Malignant epithelial neoplasm of pineal gland (disorder)','448863000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448864006','448864006','http://snomed.info/sct','Malignant epithelial neoplasm of ureter (disorder)','448864006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448865007','448865007','http://snomed.info/sct','Follicular non-Hodgkin''s lymphoma of skin (disorder)','448865007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448867004','448867004','http://snomed.info/sct','Diffuse non-Hodgkin''s lymphoma of lung (disorder)','448867004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448868009','448868009','http://snomed.info/sct','Malignant neoplasm of lateral wall of oropharynx (disorder)','448868009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448882009','448882009','http://snomed.info/sct','Malignant neoplasm of intraabdominal organ (disorder)','448882009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448930008','448930008','http://snomed.info/sct','Squamous cell carcinoma of nose (disorder)','448930008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448931007','448931007','http://snomed.info/sct','Squamous cell carcinoma of shoulder (disorder)','448931007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448952004','448952004','http://snomed.info/sct','Infiltrating duct carcinoma of female breast (disorder)','448952004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448954003','448954003','http://snomed.info/sct','Malignant epithelial neoplasm of urethra (disorder)','448954003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448988009','448988009','http://snomed.info/sct','Malignant epithelial neoplasm of nose (disorder)','448988009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448989001','448989001','http://snomed.info/sct','Malignant epithelial neoplasm of brain (disorder)','448989001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448990005','448990005','http://snomed.info/sct','Malignant epithelial neoplasm of nasal cavity (disorder)','448990005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448992002','448992002','http://snomed.info/sct','Malignant epithelial neoplasm of appendix (disorder)','448992002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448993007','448993007','http://snomed.info/sct','Malignant epithelial neoplasm of lung (disorder)','448993007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448994001','448994001','http://snomed.info/sct','Malignant epithelial neoplasm of upper rectum (disorder)','448994001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_448995000','448995000','http://snomed.info/sct','Follicular non-Hodgkin''s lymphoma of central nervous system (disorder)','448995000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_449034009','449034009','http://snomed.info/sct','Malignant neoplasm of anterior and lateral floor of mouth (disorder)','449034009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_449053004','449053004','http://snomed.info/sct','Lymphoma of lower esophagus (disorder)','449053004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_449054005','449054005','http://snomed.info/sct','Malignant epithelial neoplasm of fundus of uterus (disorder)','449054005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_449055006','449055006','http://snomed.info/sct','Leiomyosarcoma of cardioesophageal junction (disorder)','449055006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_449058008','449058008','http://snomed.info/sct','Follicular non-Hodgkin''s lymphoma of tonsil (disorder)','449058008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_449059000','449059000','http://snomed.info/sct','Follicular non-Hodgkin''s lymphoma of uterine cervix (disorder)','449059000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_449063007','449063007','http://snomed.info/sct','Follicular non-Hodgkin''s lymphoma of oral cavity (disorder)','449063007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_449065000','449065000','http://snomed.info/sct','Diffuse non-Hodgkin''s lymphoma of nose (disorder)','449065000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_449066004','449066004','http://snomed.info/sct','Malignant neoplasm of upper respiratory tract (disorder)','449066004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_449067008','449067008','http://snomed.info/sct','Malignant neoplasm of parietal pleura (disorder)','449067008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_449072004','449072004','http://snomed.info/sct','Lymphoma of gastrointestinal tract (disorder)','449072004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_449073009','449073009','http://snomed.info/sct','Malignant epithelial neoplasm of body of uterus (disorder)','449073009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_449074003','449074003','http://snomed.info/sct','Lymphoma of small intestine (disorder)','449074003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_449075002','449075002','http://snomed.info/sct','Lymphoma of cardioesophageal junction (disorder)','449075002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_449077005','449077005','http://snomed.info/sct','Malignant epithelial neoplasm of maxilla (disorder)','449077005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_449096009','449096009','http://snomed.info/sct','Malignant neoplasm of respiratory system (disorder)','449096009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_449100005','449100005','http://snomed.info/sct','Sarcoma of bone of pelvis (disorder)','449100005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_449101009','449101009','http://snomed.info/sct','Sarcoma of sternum (disorder)','449101009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_449108003','449108003','http://snomed.info/sct','Philadelphia chromosome positive chronic myelogenous leukemia (disorder)','449108003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_449153001','449153001','http://snomed.info/sct','Adenocarcinoma of lower esophagus (disorder)','449153001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_449156009','449156009','http://snomed.info/sct','Malignant epithelial neoplasm of floor of mouth (disorder)','449156009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_449173006','449173006','http://snomed.info/sct','Diffuse non-Hodgkin''s lymphoma of tonsil (disorder)','449173006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_449176003','449176003','http://snomed.info/sct','Diffuse non-Hodgkin''s lymphoma of intestine (disorder)','449176003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_449177007','449177007','http://snomed.info/sct','Diffuse non-Hodgkin''s lymphoma of bone (disorder)','449177007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_449206007','449206007','http://snomed.info/sct','Sarcoma of tibia (disorder)','449206007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_449207003','449207003','http://snomed.info/sct','Sarcoma of humerus (disorder)','449207003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_449208008','449208008','http://snomed.info/sct','Sarcoma of coccyx (disorder)','449208008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_449211009','449211009','http://snomed.info/sct','Malignant epithelial neoplasm of face (disorder)','449211009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_449216004','449216004','http://snomed.info/sct','Diffuse non-Hodgkin''s lymphoma of soft tissue (disorder)','449216004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_449217008','449217008','http://snomed.info/sct','Diffuse non-Hodgkin''s lymphoma of skin (disorder)','449217008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_449218003','449218003','http://snomed.info/sct','Lymphoma of sigmoid colon (disorder)','449218003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_449219006','449219006','http://snomed.info/sct','Follicular non-Hodgkin''s lymphoma of nasopharynx (disorder)','449219006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_449220000','449220000','http://snomed.info/sct','Diffuse follicle center lymphoma (disorder)','449220000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_449221001','449221001','http://snomed.info/sct','Diffuse non-Hodgkin''s lymphoma of central nervous system (disorder)','449221001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_449222008','449222008','http://snomed.info/sct','Follicular non-Hodgkin''s lymphoma of stomach (disorder)','449222008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_449223003','449223003','http://snomed.info/sct','Malignant neoplasm of alveolus of maxilla (disorder)','449223003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_449224009','449224009','http://snomed.info/sct','Malignant neoplasm of anterior mediastinum (disorder)','449224009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_449248000','449248000','http://snomed.info/sct','Nasopharyngeal carcinoma (disorder)','449248000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_449253005','449253005','http://snomed.info/sct','Malignant epithelial neoplasm of hypothalamus (disorder)','449253005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_449254004','449254004','http://snomed.info/sct','Malignant epithelial neoplasm of pharynx (disorder)','449254004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_449259009','449259009','http://snomed.info/sct','Malignant neoplasm of broad ligament of uterus (disorder)','449259009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_449260004','449260004','http://snomed.info/sct','Malignant neoplasm of alveolus dentalis (disorder)','449260004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_449267001','449267001','http://snomed.info/sct','Sarcoma of mandible (disorder)','449267001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_449268006','449268006','http://snomed.info/sct','Sarcoma of clavicle (disorder)','449268006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_449269003','449269003','http://snomed.info/sct','Sarcoma of rib (disorder)','449269003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_449292003','449292003','http://snomed.info/sct','Non-Hodgkin''s lymphoma of tonsil (disorder)','449292003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_449293008','449293008','http://snomed.info/sct','Sarcoma of connective tissue (disorder)','449293008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_449294002','449294002','http://snomed.info/sct','Sarcoma of scapula (disorder)','449294002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_449295001','449295001','http://snomed.info/sct','Sarcoma of skull (disorder)','449295001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_449307001','449307001','http://snomed.info/sct','Follicular non-Hodgkin''s lymphoma of ovary (disorder)','449307001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_449308006','449308006','http://snomed.info/sct','Malignant neoplasm of visceral pleura (disorder)','449308006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_449309003','449309003','http://snomed.info/sct','Malignant neoplasm of skin of scrotum (disorder)','449309003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_449318001','449318001','http://snomed.info/sct','Non-Hodgkin''s lymphoma of prostate (disorder)','449318001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_449377002','449377002','http://snomed.info/sct','Malignant neoplasm of pelvic peritoneum (disorder)','449377002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_449386007','449386007','http://snomed.info/sct','Philadelphia chromosome negative chronic myelogenous leukemia (disorder)','449386007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_449416001','449416001','http://snomed.info/sct','Malignant epithelial neoplasm of skin of anus (disorder)','449416001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_449417005','449417005','http://snomed.info/sct','Malignant epithelial neoplasm of nasal septum (disorder)','449417005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_449418000','449418000','http://snomed.info/sct','Follicular non-Hodgkin''s lymphoma of testis (disorder)','449418000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_449419008','449419008','http://snomed.info/sct','Follicular non-Hodgkin''s lymphoma of intestine (disorder)','449419008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_449420002','449420002','http://snomed.info/sct','Malignant neoplasm of cerebellum (disorder)','449420002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_449472007','449472007','http://snomed.info/sct','Malignant epithelial neoplasm of alveolus dentalis (disorder)','449472007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_449487002','449487002','http://snomed.info/sct','Malignant epithelial neoplasm of mandible (disorder)','449487002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_449497006','449497006','http://snomed.info/sct','Sarcoma of pelvic peritoneum (disorder)','449497006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_449578008','449578008','http://snomed.info/sct','Malignant neoplasm of alveolus of mandible (disorder)','449578008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_449627008','449627008','http://snomed.info/sct','Malignant neoplasm of long bone of lower limb (disorder)','449627008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_449628003','449628003','http://snomed.info/sct','Malignant neoplasm of long bone of lower leg (disorder)','449628003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_449630001','449630001','http://snomed.info/sct','Metastatic malignant neoplasm to skin of lower leg (disorder)','449630001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_449631002','449631002','http://snomed.info/sct','Metastatic malignant neoplasm to skin of upper arm (disorder)','449631002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_449632009','449632009','http://snomed.info/sct','Metastatic malignant neoplasm to lower leg (disorder)','449632009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_449633004','449633004','http://snomed.info/sct','Metastatic malignant neoplasm to upper arm (disorder)','449633004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_449634005','449634005','http://snomed.info/sct','Primary malignant neoplasm of skin of lower leg (disorder)','449634005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_449635006','449635006','http://snomed.info/sct','Primary malignant neoplasm of lower leg (disorder)','449635006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_449636007','449636007','http://snomed.info/sct','Malignant melanoma of skin of lower leg (disorder)','449636007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_449637003','449637003','http://snomed.info/sct','Malignant melanoma of skin of upper arm (disorder)','449637003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_449799008','449799008','http://snomed.info/sct','Subependymal giant cell astrocytoma (disorder)','449799008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_449802004','449802004','http://snomed.info/sct','Carcinoma in situ of dome of urinary bladder (disorder)','449802004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_449803009','449803009','http://snomed.info/sct','Primary malignant neoplasm of dome of urinary bladder (disorder)','449803009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_45019006','45019006','http://snomed.info/sct','Bard-Pic syndrome (disorder)','45019006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_450521000124109','450521000124109','http://snomed.info/sct','Marginal zone lymphoma of axillary lymph node (disorder)','450521000124109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_45221000119105','45221000119105','http://snomed.info/sct','Primary invasive malignant neoplasm of female breast (disorder)','45221000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_452241000124100','452241000124100','http://snomed.info/sct','Recurrent malignant neoplastic disease (disorder)','452241000124100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_452291000124109','452291000124109','http://snomed.info/sct','Relapse multiple myeloma (disorder)','452291000124109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_454721000124105','454721000124105','http://snomed.info/sct','Chemosensitive malignant neoplastic disease (disorder)','454721000124105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_456911000124108','456911000124108','http://snomed.info/sct','Diffuse non-Hodgkin''s lymphoma Lugano stage III (disorder)','456911000124108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_457311000124106','457311000124106','http://snomed.info/sct','Mass of central portion of left breast (finding)','457311000124106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_457721000124104','457721000124104','http://snomed.info/sct','Metastatic non-small cell lung cancer (disorder)','457721000124104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_458321000124102','458321000124102','http://snomed.info/sct','Metastatic urothelial carcinoma (disorder)','458321000124102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_458581000124106','458581000124106','http://snomed.info/sct','Metastatic HER2 positive neoplasm of gastroesophageal junction (disorder)','458581000124106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_459371000124108','459371000124108','http://snomed.info/sct','Metastasis from gastroesophageal adenocarcinoma (disorder)','459371000124108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_459381000124106','459381000124106','http://snomed.info/sct','Metastasis from hormone-refractory prostate cancer (disorder)','459381000124106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_459391000124109','459391000124109','http://snomed.info/sct','Metastasis from human epidermal growth factor 2 positive carcinoma of breast (disorder)','459391000124109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_459401000124106','459401000124106','http://snomed.info/sct','Metastasis from pancreatic endocrine carcinoma (disorder)','459401000124106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_459411000124109','459411000124109','http://snomed.info/sct','Metastasis from collecting duct carcinoma of nipple (disorder)','459411000124109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_459421000124101','459421000124101','http://snomed.info/sct','Metastasis from malignant tumor of penis (disorder)','459421000124101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_461311000124107','461311000124107','http://snomed.info/sct','Refractory Hodgkin lymphoma (disorder)','461311000124107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_461371000124103','461371000124103','http://snomed.info/sct','Recurrent ovarian cancer (disorder)','461371000124103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_461511000124101','461511000124101','http://snomed.info/sct','Biochemically recurrent prostate cancer (disorder)','461511000124101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_473419009','473419009','http://snomed.info/sct','Intraductal papillary mucinous carcinoma in situ of pancreas (disorder)','473419009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_55006001','55006001','http://snomed.info/sct','Light chain nephropathy (disorder)','55006001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_56944001','56944001','http://snomed.info/sct','Lymphoma stage III (finding)','56944001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_5701003','5701003','http://snomed.info/sct','Lymphoma stage IIe (finding)','5701003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_60620005','60620005','http://snomed.info/sct','Epsilon heavy chain disease (disorder)','60620005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_608817003','608817003','http://snomed.info/sct','Pituicytoma (disorder)','608817003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_608874000','608874000','http://snomed.info/sct','Eaton Lambert syndrome with underlying malignancy (disorder)','608874000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_609515005','609515005','http://snomed.info/sct','Epithelioid trophoblastic tumor (disorder)','609515005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_61493004','61493004','http://snomed.info/sct','Mu heavy chain disease (disorder)','61493004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_62497000','62497000','http://snomed.info/sct','Stewart-Treves syndrome (disorder)','62497000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_65399007','65399007','http://snomed.info/sct','Langerhans cell histiocytosis (disorder)','65399007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_66074005','66074005','http://snomed.info/sct','Leptomeningitis (disorder)','66074005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_66445009','66445009','http://snomed.info/sct','Lymphoma stage IV (finding)','66445009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_67771000119102','67771000119102','http://snomed.info/sct','Grade 2 astrocytoma of brain (disorder)','67771000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_67811000119102','67811000119102','http://snomed.info/sct','Primary small cell malignant neoplasm of lung, TNM stage 1 (disorder)','67811000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_67821000119109','67821000119109','http://snomed.info/sct','Primary small cell malignant neoplasm of lung, TNM stage 2 (disorder)','67821000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_67831000119107','67831000119107','http://snomed.info/sct','Primary small cell malignant neoplasm of lung, TNM stage 3 (disorder)','67831000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_67841000119103','67841000119103','http://snomed.info/sct','Primary small cell malignant neoplasm of lung, TNM stage 4 (disorder)','67841000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_681601000119101','681601000119101','http://snomed.info/sct','Primary adenocarcinoma of ascending colon (disorder)','681601000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_681621000119105','681621000119105','http://snomed.info/sct','Primary adenocarcinoma of body of pancreas (disorder)','681621000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_681631000119108','681631000119108','http://snomed.info/sct','Primary adenocarcinoma of body of stomach (disorder)','681631000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_681651000119102','681651000119102','http://snomed.info/sct','Primary adenocarcinoma of descending colon (disorder)','681651000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_681721000119103','681721000119103','http://snomed.info/sct','Primary adenocarcinoma of head of pancreas (disorder)','681721000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_68261000119102','68261000119102','http://snomed.info/sct','Diffuse non-Hodgkin''s lymphoma Lugano stage I (disorder)','68261000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_68271000119108','68271000119108','http://snomed.info/sct','Diffuse non-Hodgkin''s lymphoma Lugano stage II (disorder)','68271000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_68291000119109','68291000119109','http://snomed.info/sct','Diffuse non-Hodgkin''s lymphoma Lugano stage IV (disorder)','68291000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_683991000119103','683991000119103','http://snomed.info/sct','Extensive stage primary small cell carcinoma of lung (disorder)','683991000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_684911000119105','684911000119105','http://snomed.info/sct','Primary glioblastoma multiforme of frontal lobe (disorder)','684911000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_68571000119106','68571000119106','http://snomed.info/sct','Low grade lymphoma, stage 4 (finding)','68571000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_686431000119100','686431000119100','http://snomed.info/sct','Primary malignant glioma of frontal lobe (disorder)','686431000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_686441000119109','686441000119109','http://snomed.info/sct','Primary malignant glioma of occipital lobe (disorder)','686441000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_686451000119106','686451000119106','http://snomed.info/sct','Primary malignant glioma of parietal lobe (disorder)','686451000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_686461000119108','686461000119108','http://snomed.info/sct','Primary malignant glioma of temporal lobe (disorder)','686461000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_686591000119102','686591000119102','http://snomed.info/sct','Primary malignant pheochromocytoma of left adrenal gland (disorder)','686591000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_686601000119109','686601000119109','http://snomed.info/sct','Primary malignant pheochromocytoma of right adrenal gland (disorder)','686601000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_687981000119106','687981000119106','http://snomed.info/sct','Sarcoma of face (disorder)','687981000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_688131000119108','688131000119108','http://snomed.info/sct','Schwannoma of nerve of face (disorder)','688131000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_68979007','68979007','http://snomed.info/sct','Heavy chain disease (disorder)','68979007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_697993003','697993003','http://snomed.info/sct','Undifferentiated carcinoma of nasal sinus (disorder)','697993003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_698011002','698011002','http://snomed.info/sct','Keratinizing squamous cell carcinoma of nasopharynx (disorder)','698011002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_698040004','698040004','http://snomed.info/sct','Malignant melanoma of nasal cavity (disorder)','698040004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_698041000','698041000','http://snomed.info/sct','Malignant melanoma of vestibule of mouth (disorder)','698041000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_698042007','698042007','http://snomed.info/sct','Malignant melanoma of tongue (disorder)','698042007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_698043002','698043002','http://snomed.info/sct','Malignant melanoma of floor of mouth (disorder)','698043002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_698044008','698044008','http://snomed.info/sct','Malignant melanoma of palatine arch (disorder)','698044008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_698045009','698045009','http://snomed.info/sct','Malignant melanoma of buccal mucosa (disorder)','698045009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_698048006','698048006','http://snomed.info/sct','Undifferentiated nonkeratinizing squamous cell carcinoma of nasopharynx (disorder)','698048006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_698200003','698200003','http://snomed.info/sct','Large cell Ewing sarcoma of bone (disorder)','698200003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_698285005','698285005','http://snomed.info/sct','Malignant melanoma of ethmoid sinus (disorder)','698285005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_698286006','698286006','http://snomed.info/sct','Malignant melanoma of palate (disorder)','698286006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_698287002','698287002','http://snomed.info/sct','Malignant melanoma of gum (disorder)','698287002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_698288007','698288007','http://snomed.info/sct','Malignant melanoma of maxillary sinus (disorder)','698288007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_699028006','699028006','http://snomed.info/sct','Primitive neuroectodermal tumor (disorder)','699028006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_699317002','699317002','http://snomed.info/sct','Paratesticular malignant neoplasm (disorder)','699317002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_699318007','699318007','http://snomed.info/sct','Supratentorial primitive neuroectodermal tumor (disorder)','699318007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_699354006','699354006','http://snomed.info/sct','Sarcoma of orbit (disorder)','699354006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_699355007','699355007','http://snomed.info/sct','Leiomyosarcoma of orbit (disorder)','699355007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_699356008','699356008','http://snomed.info/sct','Endometrial stromal sarcoma (disorder)','699356008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_699357004','699357004','http://snomed.info/sct','Low grade endometrial stromal sarcoma (disorder)','699357004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_699358009','699358009','http://snomed.info/sct','High grade endometrial stromal sarcoma (disorder)','699358009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_699657009','699657009','http://snomed.info/sct','Hepatosplenic gamma-delta cell lymphoma (disorder)','699657009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_699659007','699659007','http://snomed.info/sct','Glandular malignant peripheral nerve sheath tumor (disorder)','699659007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_699704002','699704002','http://snomed.info/sct','Classic medulloblastoma (disorder)','699704002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_699818003','699818003','http://snomed.info/sct','T-cell large granular lymphocytic leukemia (disorder)','699818003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_700423003','700423003','http://snomed.info/sct','Adenocarcinoma of pancreas (disorder)','700423003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_700488005','700488005','http://snomed.info/sct','Malignant sex cord tumor of testis (disorder)','700488005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_7021009','7021009','http://snomed.info/sct','Gastrointestinal eosinophilic granuloma (disorder)','7021009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_702368000','702368000','http://snomed.info/sct','Carcinosarcoma of ovary (disorder)','702368000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_702369008','702369008','http://snomed.info/sct','Carcinosarcoma of uterus (disorder)','702369008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_702391001','702391001','http://snomed.info/sct','Renal cell carcinoma (disorder)','702391001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_702392008','702392008','http://snomed.info/sct','Metastatic renal cell carcinoma (disorder)','702392008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_702405001','702405001','http://snomed.info/sct','Malignant granulosa cell tumor of testis (disorder)','702405001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_702446006','702446006','http://snomed.info/sct','Core binding factor acute myeloid leukemia (disorder)','702446006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_702467006','702467006','http://snomed.info/sct','Malignant neoplasm of augmented urinary bladder (disorder)','702467006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_702476004','702476004','http://snomed.info/sct','Therapy-related myelodysplastic syndrome (disorder)','702476004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_702712006','702712006','http://snomed.info/sct','Carcinoma in situ of common hepatic duct (disorder)','702712006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_702785000','702785000','http://snomed.info/sct','Large cell anaplastic lymphoma T cell and Null cell type (disorder)','702785000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_702786004','702786004','http://snomed.info/sct','Follicular non-Hodgkin''s lymphoma diffuse follicle center sub-type grade 1 (disorder)','702786004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_702977001','702977001','http://snomed.info/sct','Follicular non-Hodgkin''s lymphoma diffuse follicle center cell sub-type grade 2 (disorder)','702977001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_703228009','703228009','http://snomed.info/sct','Non-small cell lung cancer with mutation in epidermal growth factor receptor (disorder)','703228009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_703230006','703230006','http://snomed.info/sct','Non-small cell lung cancer without mutation in epidermal growth factor receptor (disorder)','703230006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_703387000','703387000','http://snomed.info/sct','Acute myeloid leukemia with normal karyotype (disorder)','703387000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_703429003','703429003','http://snomed.info/sct','Malignant optic glioma of adulthood (disorder)','703429003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_703625002','703625002','http://snomed.info/sct','Kaposi sarcoma not associated with acquired immunodeficiency syndrome (disorder)','703625002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_703626001','703626001','http://snomed.info/sct','Anaplastic large cell lymphoma, T/Null cell, primary systemic type (disorder)','703626001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_704152002','704152002','http://snomed.info/sct','Metastatic neuroblastoma (disorder)','704152002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_705061009','705061009','http://snomed.info/sct','Childhood myelodysplastic syndrome (disorder)','705061009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_705176003','705176003','http://snomed.info/sct','Metastatic carcinoid tumor (disorder)','705176003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_706970001','706970001','http://snomed.info/sct','Triple negative malignant neoplasm of breast (disorder)','706970001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707337006','707337006','http://snomed.info/sct','Primary adenocarcinoma of accessory sinus (disorder)','707337006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707339009','707339009','http://snomed.info/sct','Primary adenocarcinoma of maxillary sinus (disorder)','707339009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707342003','707342003','http://snomed.info/sct','Primary adenocarcinoma of ethmoidal sinus (disorder)','707342003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707343008','707343008','http://snomed.info/sct','Primary adenocarcinoma of frontal sinus (disorder)','707343008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707344002','707344002','http://snomed.info/sct','Primary adenocarcinoma of sphenoidal sinus (disorder)','707344002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707345001','707345001','http://snomed.info/sct','Primary carcinoma of accessory sinus (disorder)','707345001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707346000','707346000','http://snomed.info/sct','Primary carcinoma of ethmoidal sinus (disorder)','707346000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707347009','707347009','http://snomed.info/sct','Primary carcinoma of maxillary sinus (disorder)','707347009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707348004','707348004','http://snomed.info/sct','Primary carcinoma of sphenoidal sinus (disorder)','707348004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707349007','707349007','http://snomed.info/sct','Primary carcinoma of frontal sinus (disorder)','707349007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707350007','707350007','http://snomed.info/sct','Malignant melanoma of accessory sinus (disorder)','707350007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707353009','707353009','http://snomed.info/sct','Primary squamous cell carcinoma of accessory sinus (disorder)','707353009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707354003','707354003','http://snomed.info/sct','Primary squamous cell carcinoma of maxillary sinus (disorder)','707354003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707355002','707355002','http://snomed.info/sct','Primary squamous cell carcinoma of sphenoidal sinus (disorder)','707355002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707356001','707356001','http://snomed.info/sct','Primary squamous cell carcinoma of frontal sinus (disorder)','707356001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707357005','707357005','http://snomed.info/sct','Primary squamous cell carcinoma of laryngeal cartilage (disorder)','707357005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707358000','707358000','http://snomed.info/sct','Primary squamous cell carcinoma of larynx (disorder)','707358000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707359008','707359008','http://snomed.info/sct','Primary squamous cell carcinoma of ethmoidal sinus (disorder)','707359008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707360003','707360003','http://snomed.info/sct','Primary lymphoepithelial carcinoma of larynx (disorder)','707360003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707361004','707361004','http://snomed.info/sct','Malignant melanoma of frontal sinus (disorder)','707361004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707362006','707362006','http://snomed.info/sct','Malignant melanoma of sphenoidal sinus (disorder)','707362006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707377003','707377003','http://snomed.info/sct','Primary signet ring cell carcinoma of trachea (disorder)','707377003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707378008','707378008','http://snomed.info/sct','Primary myoepithelial carcinoma of trachea (disorder)','707378008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707379000','707379000','http://snomed.info/sct','Primary mucoepidermoid carcinoma of trachea (disorder)','707379000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707380002','707380002','http://snomed.info/sct','Primary salivary gland type carcinoma of trachea (disorder)','707380002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707383000','707383000','http://snomed.info/sct','Primary mucinous cystadenocarcinoma of trachea (disorder)','707383000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707384006','707384006','http://snomed.info/sct','Primary solid carcinoma of trachea (disorder)','707384006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707385007','707385007','http://snomed.info/sct','Primary undifferentiated carcinoma of trachea (disorder)','707385007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707386008','707386008','http://snomed.info/sct','Primary acinar cell carcinoma of trachea (disorder)','707386008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707388009','707388009','http://snomed.info/sct','Primary squamous cell carcinoma of trachea (disorder)','707388009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707389001','707389001','http://snomed.info/sct','Primary clear cell squamous cell carcinoma of trachea (disorder)','707389001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707390005','707390005','http://snomed.info/sct','Primary basaloid squamous cell carcinoma of trachea (disorder)','707390005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707391009','707391009','http://snomed.info/sct','Primary papillary squamous cell carcinoma of trachea (disorder)','707391009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707392002','707392002','http://snomed.info/sct','Primary giant cell carcinoma of trachea (disorder)','707392002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707393007','707393007','http://snomed.info/sct','Primary adenosquamous carcinoma of trachea (disorder)','707393007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707394001','707394001','http://snomed.info/sct','Primary spindle cell carcinoma of trachea (disorder)','707394001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707395000','707395000','http://snomed.info/sct','Primary adenocarcinoma of hypopharynx (disorder)','707395000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707396004','707396004','http://snomed.info/sct','Primary oxyphilic adenocarcinoma of oropharynx (disorder)','707396004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707397008','707397008','http://snomed.info/sct','Primary basal cell adenocarcinoma of oropharynx (disorder)','707397008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707398003','707398003','http://snomed.info/sct','Primary polymorphous low grade adenocarcinoma of oropharynx (disorder)','707398003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707399006','707399006','http://snomed.info/sct','Primary papillary adenocarcinoma of oropharynx (disorder)','707399006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707400004','707400004','http://snomed.info/sct','Primary mucinous adenocarcinoma of oropharynx (disorder)','707400004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707401000','707401000','http://snomed.info/sct','Primary clear cell adenocarcinoma of oropharynx (disorder)','707401000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707402007','707402007','http://snomed.info/sct','Primary adenocarcinoma of oropharynx (disorder)','707402007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707404008','707404008','http://snomed.info/sct','Primary mixed subtype adenocarcinoma of lung (disorder)','707404008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707405009','707405009','http://snomed.info/sct','Primary adenosquamous carcinoma of lung (disorder)','707405009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707406005','707406005','http://snomed.info/sct','Primary mucoepidermoid carcinoma of hypopharynx (disorder)','707406005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707407001','707407001','http://snomed.info/sct','Primary signet ring cell carcinoma of lung (disorder)','707407001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707408006','707408006','http://snomed.info/sct','Primary small cell non-keratinizing squamous cell carcinoma of lung (disorder)','707408006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707409003','707409003','http://snomed.info/sct','Primary acinar cell carcinoma of lung (disorder)','707409003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707410008','707410008','http://snomed.info/sct','Primary solid carcinoma of lung (disorder)','707410008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707411007','707411007','http://snomed.info/sct','Primary papillary adenocarcinoma of lung (disorder)','707411007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707421004','707421004','http://snomed.info/sct','Primary undifferentiated carcinoma of larynx (disorder)','707421004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707422006','707422006','http://snomed.info/sct','Primary spindle cell squamous cell carcinoma of larynx (disorder)','707422006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707423001','707423001','http://snomed.info/sct','Primary basaloid carcinoma of larynx (disorder)','707423001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707424007','707424007','http://snomed.info/sct','Primary adenosquamous cell carcinoma of larynx (disorder)','707424007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707425008','707425008','http://snomed.info/sct','Primary adenoid squamous cell carcinoma of larynx (disorder)','707425008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707426009','707426009','http://snomed.info/sct','Primary papillary squamous cell carcinoma of larynx (disorder)','707426009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707427000','707427000','http://snomed.info/sct','Primary verrucous carcinoma of larynx (disorder)','707427000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707429002','707429002','http://snomed.info/sct','Overlapping squamous cell carcinoma of larynx (disorder)','707429002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707430007','707430007','http://snomed.info/sct','Overlapping squamous cell carcinoma of laryngeal cartilage (disorder)','707430007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707431006','707431006','http://snomed.info/sct','Langerhans cell histiocytosis of diaper area (disorder)','707431006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707432004','707432004','http://snomed.info/sct','Langerhans cell histiocytosis of skin (disorder)','707432004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707451005','707451005','http://snomed.info/sct','Primary adenocarcinoma of lung (disorder)','707451005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707452003','707452003','http://snomed.info/sct','Primary mucinous adenocarcinoma of lung (disorder)','707452003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707453008','707453008','http://snomed.info/sct','Primary clear cell squamous cell carcinoma of lung (disorder)','707453008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707454002','707454002','http://snomed.info/sct','Primary basaloid squamous cell carcinoma of lung (disorder)','707454002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707455001','707455001','http://snomed.info/sct','Primary papillary squamous cell carcinoma of lung (disorder)','707455001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707456000','707456000','http://snomed.info/sct','Primary undifferentiated carcinoma of lung (disorder)','707456000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707457009','707457009','http://snomed.info/sct','Primary spindle cell carcinoma of lung (disorder)','707457009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707458004','707458004','http://snomed.info/sct','Primary pleomorphic carcinoma of lung (disorder)','707458004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707460002','707460002','http://snomed.info/sct','Primary pseudosarcomatous carcinoma of lung (disorder)','707460002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707464006','707464006','http://snomed.info/sct','Primary myoepithelial carcinoma of lung (disorder)','707464006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707465007','707465007','http://snomed.info/sct','Primary mucoepidermoid carcinoma of lung (disorder)','707465007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707466008','707466008','http://snomed.info/sct','Primary adenoid cystic carcinoma of lung (disorder)','707466008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707467004','707467004','http://snomed.info/sct','Primary salivary gland type carcinoma of lung (disorder)','707467004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707468009','707468009','http://snomed.info/sct','Primary mixed mucinous and non-mucinous bronchiolo-alveolar carcinoma of lung (disorder)','707468009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707469001','707469001','http://snomed.info/sct','Primary non-mucinous bronchiolo-alveolar carcinoma of lung (disorder)','707469001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707470000','707470000','http://snomed.info/sct','Primary mucinous bronchiolo-alveolar carcinoma of lung (disorder)','707470000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707471001','707471001','http://snomed.info/sct','Primary clear cell adenocarcinoma of trachea (disorder)','707471001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707472008','707472008','http://snomed.info/sct','Primary papillary adenocarcinoma of trachea (disorder)','707472008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707473003','707473003','http://snomed.info/sct','Primary mucinous adenocarcinoma of trachea (disorder)','707473003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707475005','707475005','http://snomed.info/sct','Primary adenocarcinoma of trachea (disorder)','707475005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707479004','707479004','http://snomed.info/sct','Primary adenocarcinoma of subglottis (disorder)','707479004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707481002','707481002','http://snomed.info/sct','Primary basaloid squamous cell carcinoma of hypopharynx (disorder)','707481002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707482009','707482009','http://snomed.info/sct','Primary papillary squamous cell carcinoma of hypopharynx (disorder)','707482009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707483004','707483004','http://snomed.info/sct','Primary undifferentiated carcinoma of hypopharynx (disorder)','707483004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707484005','707484005','http://snomed.info/sct','Primary adenoid squamous cell carcinoma of hypopharynx (disorder)','707484005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707485006','707485006','http://snomed.info/sct','Primary adenosquamous carcinoma of hypopharynx (disorder)','707485006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707486007','707486007','http://snomed.info/sct','Primary basaloid carcinoma of hypopharynx (disorder)','707486007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707487003','707487003','http://snomed.info/sct','Primary giant cell carcinoma of hypopharynx (disorder)','707487003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707489000','707489000','http://snomed.info/sct','Primary spindle cell squamous cell carcinoma of hypopharynx (disorder)','707489000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707490009','707490009','http://snomed.info/sct','Primary verrucous carcinoma of hypopharynx (disorder)','707490009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707491008','707491008','http://snomed.info/sct','Primary lymphoepithelial carcinoma of hypopharynx (disorder)','707491008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707492001','707492001','http://snomed.info/sct','Primary squamous cell carcinoma of hypopharynx (disorder)','707492001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707493006','707493006','http://snomed.info/sct','Primary lymphoepithelial carcinoma of trachea (disorder)','707493006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707494000','707494000','http://snomed.info/sct','Primary verrucous carcinoma of trachea (disorder)','707494000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707495004','707495004','http://snomed.info/sct','Primary squamous cell adenoid carcinoma of trachea (disorder)','707495004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707528007','707528007','http://snomed.info/sct','Primary squamous cell carcinoma of nasopharynx (disorder)','707528007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707529004','707529004','http://snomed.info/sct','Overlapping squamous cell carcinoma of oropharynx (disorder)','707529004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707531008','707531008','http://snomed.info/sct','Primary squamous cell carcinoma of branchial cleft (disorder)','707531008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707532001','707532001','http://snomed.info/sct','Primary squamous cell carcinoma of posterior wall of oropharynx (disorder)','707532001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707535004','707535004','http://snomed.info/sct','Primary squamous cell carcinoma of lateral wall of oropharynx (disorder)','707535004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707537007','707537007','http://snomed.info/sct','Primary squamous cell carcinoma of anterior surface of epiglottis (disorder)','707537007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707538002','707538002','http://snomed.info/sct','Primary squamous cell carcinoma of vallecula (disorder)','707538002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707539005','707539005','http://snomed.info/sct','Primary adenoid cystic carcinoma of hypopharynx (disorder)','707539005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707575007','707575007','http://snomed.info/sct','Primary squamous cell carcinoma of supraglottis (disorder)','707575007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707576008','707576008','http://snomed.info/sct','Primary squamous cell carcinoma of subglottis (disorder)','707576008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707579001','707579001','http://snomed.info/sct','Primary basaloid squamous cell carcinoma of oropharynx (disorder)','707579001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707580003','707580003','http://snomed.info/sct','Primary basaloid carcinoma of oropharynx (disorder)','707580003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707581004','707581004','http://snomed.info/sct','Primary papillary squamous cell carcinoma of oropharynx (disorder)','707581004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707582006','707582006','http://snomed.info/sct','Primary spindle cell squamous cell carcinoma of oropharynx (disorder)','707582006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707583001','707583001','http://snomed.info/sct','Primary adenosquamous carcinoma of oropharynx (disorder)','707583001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707584007','707584007','http://snomed.info/sct','Primary lymphoepithelial carcinoma of oropharynx (disorder)','707584007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707585008','707585008','http://snomed.info/sct','Primary squamous cell carcinoma of oropharynx (disorder)','707585008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707586009','707586009','http://snomed.info/sct','Primary myoepithelial carcinoma of oropharynx (disorder)','707586009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707587000','707587000','http://snomed.info/sct','Primary carcinoma ex pleomorphic adenoma of oropharynx (disorder)','707587000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707588005','707588005','http://snomed.info/sct','Primary epithelial-myoepithelial carcinoma of oropharynx (disorder)','707588005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707589002','707589002','http://snomed.info/sct','Primary cystadenocarcinoma of oropharynx (disorder)','707589002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707590006','707590006','http://snomed.info/sct','Primary acinar cell carcinoma of oropharynx (disorder)','707590006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707591005','707591005','http://snomed.info/sct','Primary mucoepidermoid carcinoma of oropharynx (disorder)','707591005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707592003','707592003','http://snomed.info/sct','Primary infiltrating duct carcinoma of oropharynx (disorder)','707592003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707593008','707593008','http://snomed.info/sct','Primary salivary gland-type tumor of oropharynx (disorder)','707593008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707595001','707595001','http://snomed.info/sct','Primary mucinous cystadenocarcinoma of lung (disorder)','707595001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707596000','707596000','http://snomed.info/sct','Primary carcinosarcoma of lung (disorder)','707596000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707627009','707627009','http://snomed.info/sct','Primary salivary gland type carcinoma of hypopharynx (disorder)','707627009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707628004','707628004','http://snomed.info/sct','Overlapping squamous cell carcinoma of hypopharynx (disorder)','707628004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707660007','707660007','http://snomed.info/sct','Primary giant cell carcinoma of larynx (disorder)','707660007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707662004','707662004','http://snomed.info/sct','Primary basaloid squamous cell carcinoma of larynx (disorder)','707662004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707664003','707664003','http://snomed.info/sct','Primary squamous cell carcinoma of glottis (disorder)','707664003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707670009','707670009','http://snomed.info/sct','Pleuropulmonary blastoma (disorder)','707670009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707671008','707671008','http://snomed.info/sct','Pleuropulmonary blastoma type I (disorder)','707671008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707672001','707672001','http://snomed.info/sct','Pleuropulmonary blastoma type II (disorder)','707672001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707673006','707673006','http://snomed.info/sct','Pleuropulmonary blastoma type III (disorder)','707673006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707674000','707674000','http://snomed.info/sct','Primary malignant epithelial neoplasm of trachea (disorder)','707674000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707686002','707686002','http://snomed.info/sct','Primary squamous cell carcinoma of posterior wall of hypopharynx (disorder)','707686002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707697002','707697002','http://snomed.info/sct','Primary squamous cell carcinoma of hypopharyngeal aspect of aryepiglottic fold (disorder)','707697002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707703001','707703001','http://snomed.info/sct','Primary squamous cell carcinoma of postcricoid region (disorder)','707703001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707704007','707704007','http://snomed.info/sct','Primary squamous cell carcinoma of pyriform sinus (disorder)','707704007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_707705008','707705008','http://snomed.info/sct','Nonkeratinizing carcinoma of the nasopharynx (disorder)','707705008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_708504008','708504008','http://snomed.info/sct','Periosteal osteosarcoma of jaw (disorder)','708504008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_708921005','708921005','http://snomed.info/sct','Carcinoma of central portion of breast (disorder)','708921005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_708971008','708971008','http://snomed.info/sct','Diffuse sclerosing papillary thyroid carcinoma (disorder)','708971008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_709031009','709031009','http://snomed.info/sct','Malignant neoplasm of superior wall of nasopharynx (disorder)','709031009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_70910003','70910003','http://snomed.info/sct','Indolent systemic mastocytosis (disorder)','70910003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_709285002','709285002','http://snomed.info/sct','Metastatic malignant neoplasm to lumbosacral plexus (disorder)','709285002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_709517003','709517003','http://snomed.info/sct','Malignant carcinoid tumor of small intestine (disorder)','709517003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_709830006','709830006','http://snomed.info/sct','Malignant carcinoid tumor of stomach (disorder)','709830006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_710195004','710195004','http://snomed.info/sct','Malignant odontogenic neoplasm of lower jaw (disorder)','710195004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_710196003','710196003','http://snomed.info/sct','Malignant odontogenic neoplasm of upper jaw (disorder)','710196003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_71101000119106','71101000119106','http://snomed.info/sct','Recurrent primary malignant neoplasm of vagina (disorder)','71101000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_71111000119109','71111000119109','http://snomed.info/sct','Recurrent primary malignant neoplasm of vulva (disorder)','71111000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_711414003','711414003','http://snomed.info/sct','Primary clear cell adenocarcinoma of lung (disorder)','711414003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_712525007','712525007','http://snomed.info/sct','Malignant neoplasm of short bone of lower limb (disorder)','712525007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_712750007','712750007','http://snomed.info/sct','Malignant neoplasm of chest wall (disorder)','712750007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_712849003','712849003','http://snomed.info/sct','Primary malignant neoplasm of prostate metastatic to bone (disorder)','712849003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_713038003','713038003','http://snomed.info/sct','Overlapping primary malignant neoplasm of bone and articular cartilage of upper limb (disorder)','713038003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_713189001','713189001','http://snomed.info/sct','Malignant insulinoma (disorder)','713189001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_713290004','713290004','http://snomed.info/sct','Malignant ameloblastoma of mandible (disorder)','713290004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_713293002','713293002','http://snomed.info/sct','Malignant germ cell neoplasm of mediastinum (disorder)','713293002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_713306000','713306000','http://snomed.info/sct','Carcinoid tumor of rectum (disorder)','713306000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_713327005','713327005','http://snomed.info/sct','Malignant meningioma of meninges of brain (disorder)','713327005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_713425003','713425003','http://snomed.info/sct','Spinal cord compression due to metastasis to spine (disorder)','713425003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_713516007','713516007','http://snomed.info/sct','Primary effusion lymphoma (disorder)','713516007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_713573006','713573006','http://snomed.info/sct','Malignant carcinoid tumor of rectum (disorder)','713573006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_713574000','713574000','http://snomed.info/sct','Malignant carcinoid tumor of kidney (disorder)','713574000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_713609000','713609000','http://snomed.info/sct','Invasive carcinoma of breast (disorder)','713609000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_713646001','713646001','http://snomed.info/sct','Malignant germ cell tumor of testis (disorder)','713646001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_714251006','714251006','http://snomed.info/sct','Philadelphia chromosome-negative precursor B-cell acute lymphoblastic leukemia (disorder)','714251006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_714463003','714463003','http://snomed.info/sct','Primary effusion lymphoma co-occurrent with infection caused by Human herpesvirus 8 (disorder)','714463003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_715412008','715412008','http://snomed.info/sct','Familial malignant neoplasm of prostate (disorder)','715412008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_715414009','715414009','http://snomed.info/sct','Familial malignant neoplasm of pancreas (disorder)','715414009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_715561008','715561008','http://snomed.info/sct','Hereditary papillary renal cell carcinoma (disorder)','715561008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_715664005','715664005','http://snomed.info/sct','Interdigitating dendritic cell sarcoma (disorder)','715664005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_715901002','715901002','http://snomed.info/sct','Ependymoblastoma (disorder)','715901002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_715903004','715903004','http://snomed.info/sct','Medulloepithelioma (disorder)','715903004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_715904005','715904005','http://snomed.info/sct','Pineal parenchymal tumor of intermediate differentiation (disorder)','715904005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_715950008','715950008','http://snomed.info/sct','Anaplastic lymphoma kinase positive large B-cell lymphoma (disorder)','715950008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_716586009','716586009','http://snomed.info/sct','Carcinoma of stomach due to Epstein-Barr virus disease (disorder)','716586009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_716588005','716588005','http://snomed.info/sct','Primary non-gestational choriocarcinoma of ovary (disorder)','716588005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_716592003','716592003','http://snomed.info/sct','Liponeurocytoma of cerebellum (disorder)','716592003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_716593008','716593008','http://snomed.info/sct','Carcinoma of salivary gland type of breast (disorder)','716593008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_716647001','716647001','http://snomed.info/sct','Mixed oligoastrocytoma (disorder)','716647001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_716648006','716648006','http://snomed.info/sct','Embryonal sarcoma of liver (disorder)','716648006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_716649003','716649003','http://snomed.info/sct','Extraovarian primary peritoneal carcinoma (disorder)','716649003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_716651004','716651004','http://snomed.info/sct','Leiomyosarcoma of small intestine (disorder)','716651004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_716652006','716652006','http://snomed.info/sct','Primary hepatic neuroendocrine carcinoma (disorder)','716652006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_716653001','716653001','http://snomed.info/sct','Neuroendocrine carcinoma of thymus (disorder)','716653001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_716655008','716655008','http://snomed.info/sct','Aggressive systemic mastocytosis (disorder)','716655008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_716657000','716657000','http://snomed.info/sct','Familial papillary thyroid carcinoma with renal papillary neoplasia syndrome (disorder)','716657000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_716659002','716659002','http://snomed.info/sct','Squamous cell carcinoma of head and neck (disorder)','716659002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_716787002','716787002','http://snomed.info/sct','Extraventricular neurocytoma (disorder)','716787002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_716788007','716788007','http://snomed.info/sct','Epstein-Barr virus positive diffuse large B-cell lymphoma of elderly (disorder)','716788007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_716855006','716855006','http://snomed.info/sct','Theca steroid producing cell malignant neoplasm of ovary (disorder)','716855006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_716859000','716859000','http://snomed.info/sct','Hereditary diffuse carcinoma of stomach (disorder)','716859000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_717734005','717734005','http://snomed.info/sct','Papillary thyroid carcinoma with renal papillary neoplasia (disorder)','717734005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_717735006','717735006','http://snomed.info/sct','Renal cell carcinoma of kidney except renal pelvis (disorder)','717735006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_717736007','717736007','http://snomed.info/sct','Familial renal cell carcinoma (disorder)','717736007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_717916003','717916003','http://snomed.info/sct','Neuroendocrine carcinoma of appendix (disorder)','717916003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_717921000','717921000','http://snomed.info/sct','Poorly-differentiated neuroendocrine carcinoma of thymus (disorder)','717921000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_717922007','717922007','http://snomed.info/sct','Well-differentiated neuroendocrine carcinoma of thymus (disorder)','717922007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_717968005','717968005','http://snomed.info/sct','Melanoma and neural system tumor syndrome (disorder)','717968005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_718200007','718200007','http://snomed.info/sct','Primary pulmonary lymphoma (disorder)','718200007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_718220008','718220008','http://snomed.info/sct','Hereditary breast and ovarian cancer syndrome (disorder)','718220008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_718604008','718604008','http://snomed.info/sct','Small cell neuroendocrine carcinoma of urinary bladder (disorder)','718604008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_719052006','719052006','http://snomed.info/sct','Recurrent squamous cell carcinoma (disorder)','719052006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_720587009','720587009','http://snomed.info/sct','Donor derived melanoma (disorder)','720587009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_720950009','720950009','http://snomed.info/sct','Familial thrombocytosis (disorder)','720950009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721302006','721302006','http://snomed.info/sct','Myelodysplastic/myeloproliferative neoplasm with ring sideroblasts and thrombocytosis (disorder)','721302006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721305008','721305008','http://snomed.info/sct','Acute myeloid leukemia due to recurrent genetic abnormality (disorder)','721305008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721306009','721306009','http://snomed.info/sct','Therapy related acute myeloid leukemia and myelodysplastic syndrome (disorder)','721306009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721308005','721308005','http://snomed.info/sct','Acute leukemia of ambiguous lineage (disorder)','721308005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721310007','721310007','http://snomed.info/sct','Aggressive natural killer-cell leukemia (disorder)','721310007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721311006','721311006','http://snomed.info/sct','Systemic Epstein-Barr virus positive T-cell lymphoproliferative disease of childhood (disorder)','721311006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721314003','721314003','http://snomed.info/sct','Fibroblastic reticular cell neoplasm (disorder)','721314003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721535002','721535002','http://snomed.info/sct','Central neurocytoma of brain (disorder)','721535002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721540005','721540005','http://snomed.info/sct','Primary adnexal carcinoma of skin (disorder)','721540005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721541009','721541009','http://snomed.info/sct','Primary malignant sarcoma of skin (disorder)','721541009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721546004','721546004','http://snomed.info/sct','Primary adenocarcinoma of ciliary epithelium (disorder)','721546004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721547008','721547008','http://snomed.info/sct','Primary adenocarcinoma of epithelium of iris (disorder)','721547008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721548003','721548003','http://snomed.info/sct','Primary malignant neoplasm of lacrimal apparatus (disorder)','721548003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721549006','721549006','http://snomed.info/sct','Primary adenocarcinoma of lacrimal apparatus (disorder)','721549006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721555001','721555001','http://snomed.info/sct','Follicular lymphoma of small intestine (disorder)','721555001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721556000','721556000','http://snomed.info/sct','Primary adenocarcinoma of palate (disorder)','721556000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721557009','721557009','http://snomed.info/sct','Primary adenocarcinoma of parotid gland (disorder)','721557009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721558004','721558004','http://snomed.info/sct','Primary adenocarcinoma of cystic duct (disorder)','721558004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721559007','721559007','http://snomed.info/sct','Primary adenocarcinoma of common bile duct (disorder)','721559007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721560002','721560002','http://snomed.info/sct','Primary adenocarcinoma of nasal cavity (disorder)','721560002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721561003','721561003','http://snomed.info/sct','Primary adenocarcinoma of middle ear (disorder)','721561003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721562005','721562005','http://snomed.info/sct','Primary adenocarcinoma of overlapping sites of retroperitoneum, peritoneum and omentum (disorder)','721562005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721563000','721563000','http://snomed.info/sct','Primary malignant melanoma of vagina (disorder)','721563000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721567004','721567004','http://snomed.info/sct','Primary malignant neoplasm of placenta (disorder)','721567004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721568009','721568009','http://snomed.info/sct','Primary adenocarcinoma of parametrium (disorder)','721568009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721569001','721569001','http://snomed.info/sct','Primary adenocarcinoma of uterine ligament (disorder)','721569001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721574009','721574009','http://snomed.info/sct','Primary rhabdomyosarcoma of male genital organ (disorder)','721574009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721575005','721575005','http://snomed.info/sct','Primary angiosarcoma of heart (disorder)','721575005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721576006','721576006','http://snomed.info/sct','Primary angiosarcoma of breast (disorder)','721576006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721577002','721577002','http://snomed.info/sct','Primary liposarcoma of soft tissue of limb (disorder)','721577002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721578007','721578007','http://snomed.info/sct','Primary liposarcoma of male genital organ (disorder)','721578007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721579004','721579004','http://snomed.info/sct','Primary synovial sarcoma of soft tissue of limb (disorder)','721579004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721580001','721580001','http://snomed.info/sct','Primary myosarcoma of omentum (disorder)','721580001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721594000','721594000','http://snomed.info/sct','Papillary carcinoma in situ of breast (disorder)','721594000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721595004','721595004','http://snomed.info/sct','Primary intracystic papillary carcinoma of breast (disorder)','721595004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721596003','721596003','http://snomed.info/sct','Solid papillary carcinoma in situ of breast (disorder)','721596003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721602000','721602000','http://snomed.info/sct','Primary embryonal carcinoma of testis (disorder)','721602000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721603005','721603005','http://snomed.info/sct','Primary choriocarcinoma of testis (disorder)','721603005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721604004','721604004','http://snomed.info/sct','Primary squamous cell carcinoma of overlapping sites of male genital organ (disorder)','721604004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721605003','721605003','http://snomed.info/sct','Primary squamous cell carcinoma of overlapping sites of accessory sinuses (disorder)','721605003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721606002','721606002','http://snomed.info/sct','Primary adenocarcinoma of overlapping sites of accessory sinuses (disorder)','721606002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721607006','721607006','http://snomed.info/sct','Primary undifferentiated carcinoma of oropharynx (disorder)','721607006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721617001','721617001','http://snomed.info/sct','Primary adenocarcinoma of lower third of esophagus due to Barrett esophagus (disorder)','721617001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721618006','721618006','http://snomed.info/sct','Primary squamous cell carcinoma of upper third of esophagus (disorder)','721618006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721619003','721619003','http://snomed.info/sct','Primary squamous cell carcinoma of middle third of esophagus (disorder)','721619003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721620009','721620009','http://snomed.info/sct','Primary squamous cell carcinoma of lower third of esophagus (disorder)','721620009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721621008','721621008','http://snomed.info/sct','Primary squamous cell carcinoma of overlapping sites of esophagus (disorder)','721621008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721622001','721622001','http://snomed.info/sct','Primary adenocarcinoma of upper third of esophagus (disorder)','721622001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721623006','721623006','http://snomed.info/sct','Primary adenocarcinoma of middle third of esophagus (disorder)','721623006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721624000','721624000','http://snomed.info/sct','Primary adenocarcinoma of overlapping sites of esophagus (disorder)','721624000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721625004','721625004','http://snomed.info/sct','Primary neuroendocrine carcinoma of esophagus (disorder)','721625004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721626003','721626003','http://snomed.info/sct','Primary malignant neuroendocrine neoplasm of esophagus (disorder)','721626003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721627007','721627007','http://snomed.info/sct','Malignant melanoma of esophagus (disorder)','721627007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721628002','721628002','http://snomed.info/sct','Primary adenocarcinoma of esophagogastric junction (disorder)','721628002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721629005','721629005','http://snomed.info/sct','Linitis plastica of stomach (disorder)','721629005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721630000','721630000','http://snomed.info/sct','Primary adenocarcinoma of cardia of stomach (disorder)','721630000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721632008','721632008','http://snomed.info/sct','Primary adenocarcinoma of pyloric antrum of stomach (disorder)','721632008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721633003','721633003','http://snomed.info/sct','Primary adenocarcinoma of overlapping sites of stomach (disorder)','721633003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721634009','721634009','http://snomed.info/sct','Primary malignant neuroendocrine neoplasm of stomach (disorder)','721634009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721635005','721635005','http://snomed.info/sct','Primary malignant neuroendocrine neoplasm of cardia of stomach (disorder)','721635005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721636006','721636006','http://snomed.info/sct','Primary malignant neuroendocrine neoplasm of body of stomach (disorder)','721636006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721637002','721637002','http://snomed.info/sct','Primary malignant neuroendocrine neoplasm of pyloric antrum of stomach (disorder)','721637002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721638007','721638007','http://snomed.info/sct','Primary neuroendocrine carcinoma of stomach (disorder)','721638007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721639004','721639004','http://snomed.info/sct','Primary neuroendocrine carcinoma of cardia of stomach (disorder)','721639004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721640002','721640002','http://snomed.info/sct','Primary neuroendocrine carcinoma of body of stomach (disorder)','721640002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721641003','721641003','http://snomed.info/sct','Primary neuroendocrine carcinoma of pyloric antrum of stomach (disorder)','721641003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721642005','721642005','http://snomed.info/sct','Primary neuroendocrine carcinoma of overlapping sites of stomach (disorder)','721642005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721643000','721643000','http://snomed.info/sct','Primary malignant mesenchymal neoplasm of stomach (disorder)','721643000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721644006','721644006','http://snomed.info/sct','Primary malignant neuroendocrine neoplasm of duodenum (disorder)','721644006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721645007','721645007','http://snomed.info/sct','Primary neuroendocrine carcinoma of duodenum (disorder)','721645007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721669006','721669006','http://snomed.info/sct','Primary adenocarcinoma of overlapping sites of small intestine (disorder)','721669006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721670007','721670007','http://snomed.info/sct','Primary malignant neuroendocrine neoplasm of small intestine (disorder)','721670007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721671006','721671006','http://snomed.info/sct','Primary neuroendocrine carcinoma of small intestine (disorder)','721671006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721672004','721672004','http://snomed.info/sct','Primary mucinous adenocarcinoma of appendix (disorder)','721672004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721673009','721673009','http://snomed.info/sct','Primary malignant neuroendocrine neoplasm of appendix (disorder)','721673009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721695008','721695008','http://snomed.info/sct','Primary adenocarcinoma of ascending colon and right flexure (disorder)','721695008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721696009','721696009','http://snomed.info/sct','Primary adenocarcinoma of transverse colon (disorder)','721696009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721697000','721697000','http://snomed.info/sct','Primary neuroendocrine carcinoma of colon (disorder)','721697000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721698005','721698005','http://snomed.info/sct','Primary malignant neuroendocrine neoplasm of colon (disorder)','721698005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721699002','721699002','http://snomed.info/sct','Primary adenocarcinoma of descending colon and splenic flexure (disorder)','721699002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721700001','721700001','http://snomed.info/sct','Primary malignant neuroendocrine neoplasm of rectum (disorder)','721700001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721701002','721701002','http://snomed.info/sct','Primary neuroendocrine carcinoma of rectum (disorder)','721701002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721709000','721709000','http://snomed.info/sct','Primary cloacogenic carcinoma of anal canal (disorder)','721709000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721716004','721716004','http://snomed.info/sct','Primary cholangiocarcinoma of intrahepatic biliary tract (disorder)','721716004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721718003','721718003','http://snomed.info/sct','Primary adenocarcinoma of ampulla of Vater (disorder)','721718003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721725005','721725005','http://snomed.info/sct','Primary adenocarcinoma of peritoneum (disorder)','721725005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_721762007','721762007','http://snomed.info/sct','Adult T-cell leukemia/lymphoma of skin (disorder)','721762007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_722103009','722103009','http://snomed.info/sct','Hormone sensitive prostate cancer (disorder)','722103009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_722112006','722112006','http://snomed.info/sct','Primary squamous cell carcinoma of ear (disorder)','722112006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_722229001','722229001','http://snomed.info/sct','Primary sarcoma of retroperitoneum (disorder)','722229001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_722425009','722425009','http://snomed.info/sct','Reactive oxygen species 1 positive non-small cell lung cancer (disorder)','722425009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_722444002','722444002','http://snomed.info/sct','Primary giant cell sarcoma of retroperitoneum (disorder)','722444002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_722445001','722445001','http://snomed.info/sct','Primary giant cell sarcoma of peritoneum (disorder)','722445001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_722509001','722509001','http://snomed.info/sct','Primary rhabdomyosarcoma of oral cavity (disorder)','722509001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_722510006','722510006','http://snomed.info/sct','Primary rhabdomyosarcoma of pharynx (disorder)','722510006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_722511005','722511005','http://snomed.info/sct','Primary rhabdomyosarcoma of respiratory organ (disorder)','722511005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_722512003','722512003','http://snomed.info/sct','Primary rhabdomyosarcoma of intrathoracic organ (disorder)','722512003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_722513008','722513008','http://snomed.info/sct','Primary leiomyosarcoma of retroperitoneum (disorder)','722513008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_722514002','722514002','http://snomed.info/sct','Primary leiomyosarcoma of peritoneum (disorder)','722514002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_722515001','722515001','http://snomed.info/sct','Primary liposarcoma of retroperitoneum (disorder)','722515001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_722516000','722516000','http://snomed.info/sct','Primary liposarcoma of peritoneum (disorder)','722516000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_722517009','722517009','http://snomed.info/sct','Primary malignant nerve sheath neoplasm of peripheral nervous system structure (disorder)','722517009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_722518004','722518004','http://snomed.info/sct','Primary malignant nerve sheath neoplasm of autonomic nerve (disorder)','722518004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_722519007','722519007','http://snomed.info/sct','Primary sarcoma of peritoneum (disorder)','722519007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_722523004','722523004','http://snomed.info/sct','Mixed ductal and lobular carcinoma in situ of breast (disorder)','722523004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_722524005','722524005','http://snomed.info/sct','Primary invasive pleomorphic lobular carcinoma of breast (disorder)','722524005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_722527003','722527003','http://snomed.info/sct','Primary malignant neuroendocrine neoplasm of bronchus (disorder)','722527003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_722528008','722528008','http://snomed.info/sct','Primary malignant neuroendocrine neoplasm of lung (disorder)','722528008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_722529000','722529000','http://snomed.info/sct','Primary malignant epithelial neoplasm of nasopharynx (disorder)','722529000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_722530005','722530005','http://snomed.info/sct','Primary squamous cell carcinoma of pharyngeal tonsil (disorder)','722530005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_722533007','722533007','http://snomed.info/sct','Primary malignant neoplasm of esophagogastric junction (disorder)','722533007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_722542000','722542000','http://snomed.info/sct','Primary squamous cell carcinoma of anal canal (disorder)','722542000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_722543005','722543005','http://snomed.info/sct','Primary malignant melanoma of anal canal (disorder)','722543005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_722664004','722664004','http://snomed.info/sct','Carcinoma in situ of ocular adnexa (disorder)','722664004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_722665003','722665003','http://snomed.info/sct','Primary malignant melanoma of cornea (disorder)','722665003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_722666002','722666002','http://snomed.info/sct','Primary squamous cell carcinoma of lacrimal apparatus (disorder)','722666002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_722670005','722670005','http://snomed.info/sct','Primary thymic carcinoma (disorder)','722670005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_722671009','722671009','http://snomed.info/sct','Metastatic malignant neoplasm of meninges (disorder)','722671009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_722672002','722672002','http://snomed.info/sct','Primary squamous cell carcinoma of base of tongue (disorder)','722672002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_722673007','722673007','http://snomed.info/sct','Primary squamous cell carcinoma of lingual tonsil (disorder)','722673007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_722674001','722674001','http://snomed.info/sct','Primary squamous cell carcinoma of parotid gland (disorder)','722674001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_722676004','722676004','http://snomed.info/sct','Primary squamous cell carcinoma of middle ear (disorder)','722676004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_722677008','722677008','http://snomed.info/sct','Primary mesothelioma of overlapping sites of retroperitoneum, peritoneum and omentum (disorder)','722677008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_722678003','722678003','http://snomed.info/sct','Primary squamous cell carcinoma of vagina (disorder)','722678003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_722679006','722679006','http://snomed.info/sct','Primary mucinous adenocarcinoma of endometrium (disorder)','722679006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_722680009','722680009','http://snomed.info/sct','Primary serous adenocarcinoma of endometrium (disorder)','722680009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_722681008','722681008','http://snomed.info/sct','Primary mixed adenocarcinoma of endometrium (disorder)','722681008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_722682001','722682001','http://snomed.info/sct','Primary small cell carcinoma of endometrium (disorder)','722682001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_722683006','722683006','http://snomed.info/sct','Primary neuroendocrine carcinoma of cervix uteri (disorder)','722683006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_722684000','722684000','http://snomed.info/sct','Primary low grade serous adenocarcinoma of ovary (disorder)','722684000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_722685004','722685004','http://snomed.info/sct','Primary high grade serous adenocarcinoma of ovary (disorder)','722685004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_722686003','722686003','http://snomed.info/sct','Primary serous carcinoma of uterine adnexa (disorder)','722686003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_722687007','722687007','http://snomed.info/sct','Primary mucinous carcinoma of uterine adnexa (disorder)','722687007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_722688002','722688002','http://snomed.info/sct','Malignant epithelial neoplasm (disorder)','722688002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_722689005','722689005','http://snomed.info/sct','Melanoma in situ of conjunctiva (disorder)','722689005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_722707001','722707001','http://snomed.info/sct','Metastatic malignant neoplasm of peripheral nervous system (disorder)','722707001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_722712000','722712000','http://snomed.info/sct','Occupational cancer of skin (disorder)','722712000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_722713005','722713005','http://snomed.info/sct','Carcinoma in situ of anal margin (disorder)','722713005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_722714004','722714004','http://snomed.info/sct','Primary mucoepidermoid carcinoma of lacrimal apparatus (disorder)','722714004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_722718001','722718001','http://snomed.info/sct','Primary malignant meningioma (disorder)','722718001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_722795004','722795004','http://snomed.info/sct','Meningeal leukemia (disorder)','722795004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_722827008','722827008','http://snomed.info/sct','Primary synovial sarcoma of respiratory organ (disorder)','722827008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_722828003','722828003','http://snomed.info/sct','Primary synovial sarcoma of intrathoracic organ (disorder)','722828003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_722832009','722832009','http://snomed.info/sct','Primary solid papillary carcinoma with invasion of breast (disorder)','722832009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_722953004','722953004','http://snomed.info/sct','B-cell lymphoma unclassifiable with features intermediate between Burkitt lymphoma and diffuse large B-cell lymphoma (disorder)','722953004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_722954005','722954005','http://snomed.info/sct','B-cell lymphoma unclassifiable with features intermediate between classical Hodgkin lymphoma and diffuse large B-cell lymphoma (disorder)','722954005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_722955006','722955006','http://snomed.info/sct','Chronic lymphoproliferative disorder of natural killer cells (disorder)','722955006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_722956007','722956007','http://snomed.info/sct','Early post-transplant lymphoproliferative disorder (disorder)','722956007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_722957003','722957003','http://snomed.info/sct','Reactive plasmacytic hyperplasia post-transplant lymphoproliferative disorder (disorder)','722957003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_722958008','722958008','http://snomed.info/sct','Infectious mononucleosis-like post-transplant lymphoproliferative disorder (disorder)','722958008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_723076008','723076008','http://snomed.info/sct','Primary myxofibrosarcoma (disorder)','723076008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_723077004','723077004','http://snomed.info/sct','Primary myosarcoma of uterus (disorder)','723077004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_723164006','723164006','http://snomed.info/sct','Carcinoma in situ of skin of penis (disorder)','723164006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_723173003','723173003','http://snomed.info/sct','Carcinosarcoma of uterine adnexa (disorder)','723173003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_723182009','723182009','http://snomed.info/sct','Primary squamous cell carcinoma of nasal cavity (disorder)','723182009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_723187003','723187003','http://snomed.info/sct','pT4b: Tumor directly invades or is adherent to other organs or structures (colon/rectum) (finding)','723187003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_723265000','723265000','http://snomed.info/sct','Primary squamous cell carcinoma of anus (disorder)','723265000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_723281005','723281005','http://snomed.info/sct','Primary malignant melanoma of anus (disorder)','723281005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_723301009','723301009','http://snomed.info/sct','Squamous non-small cell lung cancer (disorder)','723301009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_723843005','723843005','http://snomed.info/sct','Primary chondrosarcoma of bone of limb (disorder)','723843005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_723844004','723844004','http://snomed.info/sct','Primary chondrosarcoma of articular cartilage of limb (disorder)','723844004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_723845003','723845003','http://snomed.info/sct','Primary chondrosarcoma of articular cartilage of pelvis (disorder)','723845003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_723846002','723846002','http://snomed.info/sct','Primary chondrosarcoma of bone of rib (disorder)','723846002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_723847006','723847006','http://snomed.info/sct','Primary chondrosarcoma of articular cartilage of rib (disorder)','723847006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_723848001','723848001','http://snomed.info/sct','Primary osteosarcoma of bone of jaw (disorder)','723848001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_723849009','723849009','http://snomed.info/sct','Primary osteosarcoma of articular cartilage of jaw (disorder)','723849009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_723850009','723850009','http://snomed.info/sct','Primary osteosarcoma of bone of limb (disorder)','723850009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_723851008','723851008','http://snomed.info/sct','Primary osteosarcoma of articular cartilage of limb (disorder)','723851008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_723852001','723852001','http://snomed.info/sct','Primary osteosarcoma of articular cartilage of pelvis (disorder)','723852001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_723853006','723853006','http://snomed.info/sct','Primary Ewing sarcoma of bone of limb (disorder)','723853006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_723854000','723854000','http://snomed.info/sct','Primary Ewing sarcoma of articular cartilage of limb (disorder)','723854000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_723855004','723855004','http://snomed.info/sct','Primary Ewing sarcoma of articular cartilage of pelvis (disorder)','723855004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_723856003','723856003','http://snomed.info/sct','Primary Ewing sarcoma of articular cartilage of rib (disorder)','723856003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_723879002','723879002','http://snomed.info/sct','Primary adenocarcinoma of overlapping sites of urinary organ (disorder)','723879002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_723887001','723887001','http://snomed.info/sct','Primary Ewing sarcoma of bone of rib (disorder)','723887001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_723889003','723889003','http://snomed.info/sct','B lymphoblastic leukemia lymphoma with t(9:22) (q34;q11.2); BCR-ABL 1 (disorder)','723889003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_724056005','724056005','http://snomed.info/sct','Malignant neoplasm of lower lobe of right lung (disorder)','724056005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_724058006','724058006','http://snomed.info/sct','Malignant neoplasm of upper lobe of left lung (disorder)','724058006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_724059003','724059003','http://snomed.info/sct','Malignant neoplasm of lower lobe of left lung (disorder)','724059003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_724060008','724060008','http://snomed.info/sct','Malignant neoplasm of right upper lobe of lung (disorder)','724060008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_724467001','724467001','http://snomed.info/sct','Primary squamous cell carcinoma of overlapping sites of urinary organs (disorder)','724467001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_724468006','724468006','http://snomed.info/sct','Primary urothelial carcinoma of overlapping sites of urinary organs (disorder)','724468006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_724536000','724536000','http://snomed.info/sct','Primary adenocarcinoma of ileum (disorder)','724536000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_724537009','724537009','http://snomed.info/sct','Primary adenocarcinoma of jejunum (disorder)','724537009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_724552002','724552002','http://snomed.info/sct','Primary poorly differentiated carcinoma of thyroid gland (disorder)','724552002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_724553007','724553007','http://snomed.info/sct','Primary undifferentiated carcinoma of thyroid gland (disorder)','724553007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_724554001','724554001','http://snomed.info/sct','Primary malignant epithelial neoplasm of endocrine gland (disorder)','724554001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_724642009','724642009','http://snomed.info/sct','Myeloid neoplasm associated with beta-type platelet-derived growth factor receptor gene rearrangement (disorder)','724642009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_724644005','724644005','http://snomed.info/sct','Myeloid leukemia associated with Down syndrome (disorder)','724644005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_724645006','724645006','http://snomed.info/sct','T-cell histiocyte rich large B-cell lymphoma (disorder)','724645006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_724647003','724647003','http://snomed.info/sct','Diffuse large B-cell lymphoma co-occurrent with chronic inflammation caused by Epstein-Barr virus (disorder)','724647003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_724648008','724648008','http://snomed.info/sct','Plasmablastic lymphoma (disorder)','724648008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_724649000','724649000','http://snomed.info/sct','Langerhans cell sarcoma (disorder)','724649000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_724650000','724650000','http://snomed.info/sct','Primary follicular dendritic cell sarcoma (disorder)','724650000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_724805000','724805000','http://snomed.info/sct','Primary malignant neuroepitheliomatous neoplasm of peripheral nerve (disorder)','724805000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_724806004','724806004','http://snomed.info/sct','Primary malignant neuroepitheliomatous neoplasm of autonomic nervous system (disorder)','724806004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_724807008','724807008','http://snomed.info/sct','Glioma of central nervous system (disorder)','724807008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_725390002','725390002','http://snomed.info/sct','Acute myeloid leukemia with t(8;16)(p11;p13) translocation (disorder)','725390002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_725437002','725437002','http://snomed.info/sct','Chronic lymphocytic leukemia genetic mutation variant (disorder)','725437002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_726019003','726019003','http://snomed.info/sct','Familial malignant melanoma of skin (disorder)','726019003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_726652005','726652005','http://snomed.info/sct','Malignant carcinoid tumor of thymus (disorder)','726652005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_726653000','726653000','http://snomed.info/sct','Malignant carcinoid tumor of bronchus (disorder)','726653000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_726654006','726654006','http://snomed.info/sct','Malignant carcinoid tumor of colon (disorder)','726654006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_726721002','726721002','http://snomed.info/sct','Nodal marginal zone B-cell lymphoma (disorder)','726721002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_72891000119103','72891000119103','http://snomed.info/sct','Kaposi sarcoma of viscus (disorder)','72891000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_732201008','732201008','http://snomed.info/sct','Carcinosarcoma of endometrium (disorder)','732201008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_733064004','733064004','http://snomed.info/sct','Osteosarcoma, limb anomalies, erythroid macrocytosis syndrome (disorder)','733064004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_733134009','733134009','http://snomed.info/sct','Primary squamous cell carcinoma of paraurethral gland (disorder)','733134009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_733135005','733135005','http://snomed.info/sct','Primary urothelial carcinoma of paraurethral gland (disorder)','733135005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_733136006','733136006','http://snomed.info/sct','Primary adenocarcinoma of urethra (disorder)','733136006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_733144006','733144006','http://snomed.info/sct','Malignant epithelial neoplasm of bronchus (disorder)','733144006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_733162002','733162002','http://snomed.info/sct','Primary malignant neuroendocrine neoplasm of anus (disorder)','733162002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_733163007','733163007','http://snomed.info/sct','Primary malignant neuroendocrine neoplasm of anal canal (disorder)','733163007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_733343005','733343005','http://snomed.info/sct','Primary squamous cell carcinoma of oral cavity (disorder)','733343005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_733344004','733344004','http://snomed.info/sct','Primary squamous cell carcinoma of lip (disorder)','733344004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_733345003','733345003','http://snomed.info/sct','Primary squamous cell carcinoma of pharynx (disorder)','733345003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_733346002','733346002','http://snomed.info/sct','Primary mucinous cystic neoplasm with associated invasive carcinoma of perihilar bile duct (disorder)','733346002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_733347006','733347006','http://snomed.info/sct','Primary mucinous cystic neoplasm with associated invasive carcinoma of cystic duct (disorder)','733347006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_733348001','733348001','http://snomed.info/sct','Primary malignant neuroendocrine neoplasm of cystic duct (disorder)','733348001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_733349009','733349009','http://snomed.info/sct','Primary mucinous cystic neoplasm with associated invasive carcinoma of distal bile duct (disorder)','733349009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_733350009','733350009','http://snomed.info/sct','Primary malignant neuroendocrine neoplasm of distal bile duct (disorder)','733350009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_733351008','733351008','http://snomed.info/sct','Primary malignant neuroendocrine neoplasm of ampulla of Vater (disorder)','733351008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_733352001','733352001','http://snomed.info/sct','Primary mucinous cystic neoplasm with associated invasive carcinoma of biliary tract (disorder)','733352001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_733353006','733353006','http://snomed.info/sct','Primary malignant neuroendocrine neoplasm of biliary tract (disorder)','733353006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_733354000','733354000','http://snomed.info/sct','Primary adenocarcinoma of biliary tract (disorder)','733354000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_733355004','733355004','http://snomed.info/sct','Primary adenocarcinoma of digestive organ (disorder)','733355004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_733356003','733356003','http://snomed.info/sct','Primary mucinous carcinoma of digestive organ (disorder)','733356003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_733357007','733357007','http://snomed.info/sct','Primary squamous cell carcinoma of intrathoracic organ (disorder)','733357007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_733358002','733358002','http://snomed.info/sct','Primary squamous cell carcinoma of respiratory system (disorder)','733358002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_733359005','733359005','http://snomed.info/sct','Primary squamous cell carcinoma of endometrium (disorder)','733359005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_733360000','733360000','http://snomed.info/sct','Primary undifferentiated carcinoma of endometrium (disorder)','733360000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_733361001','733361001','http://snomed.info/sct','Primary mucinous adenocarcinoma of ovary (disorder)','733361001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_733362008','733362008','http://snomed.info/sct','Primary adenocarcinoma of paraurethral gland (disorder)','733362008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_733470002','733470002','http://snomed.info/sct','Collecting duct carcinoma of kidney (disorder)','733470002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_733471003','733471003','http://snomed.info/sct','Chromophobe renal cell carcinoma (disorder)','733471003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_733598001','733598001','http://snomed.info/sct','Acute myeloid leukemia with t(6;9)(p23;q34) translocation (disorder)','733598001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_733603009','733603009','http://snomed.info/sct','Tubulocystic renal cell carcinoma (disorder)','733603009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_733608000','733608000','http://snomed.info/sct','Papillary renal cell carcinoma (disorder)','733608000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_733627006','733627006','http://snomed.info/sct','Primary cutaneous gamma-delta-positive T-cell lymphoma (disorder)','733627006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_733926004','733926004','http://snomed.info/sct','Ganglioneuroblastoma of central nervous system (disorder)','733926004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_734015000','734015000','http://snomed.info/sct','Clear cell papillary renal cell carcinoma (disorder)','734015000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_734065009','734065009','http://snomed.info/sct','Embryonal neuroepithelial neoplasm of central nervous system (disorder)','734065009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_734066005','734066005','http://snomed.info/sct','Diffuse large B-cell lymphoma of central nervous system (disorder)','734066005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_734099007','734099007','http://snomed.info/sct','Neuroblastoma of central nervous system (disorder)','734099007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_734522002','734522002','http://snomed.info/sct','Acute myeloid leukemia with FMS-like tyrosine kinase-3 mutation (disorder)','734522002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_735332000','735332000','http://snomed.info/sct','Primary cutaneous diffuse large cell B-cell lymphoma of lower extremity (disorder)','735332000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_735385007','735385007','http://snomed.info/sct','Microsatellite instability-high solid malignant tumor (disorder)','735385007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_735450006','735450006','http://snomed.info/sct','Primary malignant neuroepitheliomatous neoplasm of nasal cavity (disorder)','735450006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_735678002','735678002','http://snomed.info/sct','Primary chondrosarcoma of articular cartilage (disorder)','735678002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_735679005','735679005','http://snomed.info/sct','Primary chondrosarcoma of bone (disorder)','735679005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_735680008','735680008','http://snomed.info/sct','Primary osteosarcoma (disorder)','735680008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_735735001','735735001','http://snomed.info/sct','Primary malignant neuroendocrine neoplasm of pancreas (disorder)','735735001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_735757008','735757008','http://snomed.info/sct','Primary ganglioneuroblastoma of brain (disorder)','735757008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_735916009','735916009','http://snomed.info/sct','Primary malignant neuroepithelial neoplasm of retina (disorder)','735916009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_735917000','735917000','http://snomed.info/sct','Primary malignant neoplasm of ocular adnexa (disorder)','735917000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_735918005','735918005','http://snomed.info/sct','Primary malignant neoplasm of lacrimal caruncle (disorder)','735918005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_735919002','735919002','http://snomed.info/sct','Primary malignant neuroepithelial neoplasm of iris (disorder)','735919002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_735920008','735920008','http://snomed.info/sct','Primary malignant neuroepithelial neoplasm of ciliary body (disorder)','735920008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_735921007','735921007','http://snomed.info/sct','Primary malignant neuroepithelial neoplasm of orbit (disorder)','735921007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_736322001','736322001','http://snomed.info/sct','Pediatric follicular lymphoma (disorder)','736322001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_737058005','737058005','http://snomed.info/sct','Microsatellite instability-high colorectal cancer (disorder)','737058005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_737169005','737169005','http://snomed.info/sct','Ductal comedocarcinoma in situ of breast (disorder)','737169005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_737308008','737308008','http://snomed.info/sct','Primary adenocarcinoma of sublingual gland (disorder)','737308008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_737309000','737309000','http://snomed.info/sct','Primary adenocarcinoma of submandibular gland (disorder)','737309000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_737310005','737310005','http://snomed.info/sct','Primary squamous cell carcinoma of submandibular gland (disorder)','737310005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_737311009','737311009','http://snomed.info/sct','Primary squamous cell carcinoma of sublingual gland (disorder)','737311009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_737312002','737312002','http://snomed.info/sct','Primary malignant neuroendocrine neoplasm of jejunum (disorder)','737312002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_737313007','737313007','http://snomed.info/sct','Primary malignant neuroendocrine neoplasm of ileum (disorder)','737313007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_738527001','738527001','http://snomed.info/sct','Myeloid and/or lymphoid neoplasm associated with platelet derived growth factor receptor alpha rearrangement (disorder)','738527001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_738770003','738770003','http://snomed.info/sct','Anaplastic lymphoma kinase positive anaplastic large cell lymphoma (disorder)','738770003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_7391000119103','7391000119103','http://snomed.info/sct','Primary adenoid cystic carcinoma of nasopharynx (disorder)','7391000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_74053007','74053007','http://snomed.info/sct','Lymphoma stage IIIs (finding)','74053007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_75339006','75339006','http://snomed.info/sct','Lymphoma stage III 2 (finding)','75339006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_761958009','761958009','http://snomed.info/sct','Malignant peripheral nerve sheath neoplasm with perineurial differentiation (disorder)','761958009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_762260000','762260000','http://snomed.info/sct','Pleomorphic lobular carcinoma in situ of breast (disorder)','762260000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_762316003','762316003','http://snomed.info/sct','Polymorphic lymphoproliferative disorder following transplant (disorder)','762316003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_762457009','762457009','http://snomed.info/sct','Astroblastoma of brain (disorder)','762457009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_762458004','762458004','http://snomed.info/sct','Primary endometrioid carcinoma of endometrium (disorder)','762458004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_762665002','762665002','http://snomed.info/sct','Primary malignant neuroendocrine neoplasm of perihilar bile duct (disorder)','762665002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_762690000','762690000','http://snomed.info/sct','Classical Hodgkin lymphoma (disorder)','762690000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_763063001','763063001','http://snomed.info/sct','Adenoid basal carcinoma of cervix uteri (disorder)','763063001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_763064007','763064007','http://snomed.info/sct','Adenoid cystic carcinoma of cervix uteri (disorder)','763064007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_763131005','763131005','http://snomed.info/sct','Clear cell adenocarcinoma of ovary (disorder)','763131005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_763309005','763309005','http://snomed.info/sct','Acute myeloid leukemia with nucleophosmin 1 somatic mutation (disorder)','763309005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_763408003','763408003','http://snomed.info/sct','Rhabdomyosarcoma of cervix uteri (disorder)','763408003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_763409006','763409006','http://snomed.info/sct','Rhabdomyosarcoma of corpus uteri (disorder)','763409006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_763477007','763477007','http://snomed.info/sct','Primary lymphoma of conjunctiva (disorder)','763477007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_763479005','763479005','http://snomed.info/sct','Metaplastic carcinoma of breast (disorder)','763479005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_763666008','763666008','http://snomed.info/sct','Splenic marginal zone B-cell lymphoma (disorder)','763666008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_763719001','763719001','http://snomed.info/sct','Hydroa vacciniforme-like lymphoma (disorder)','763719001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_763771009','763771009','http://snomed.info/sct','Leiomyosarcoma of cervix uteri (disorder)','763771009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_763796007','763796007','http://snomed.info/sct','Megakaryoblastic acute myeloid leukemia with t(1;22)(p13;q13) (disorder)','763796007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_763865009','763865009','http://snomed.info/sct','Pilocytic astrocytoma (disorder)','763865009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_763884007','763884007','http://snomed.info/sct','Splenic diffuse red pulp small B-cell lymphoma (disorder)','763884007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_76422004','76422004','http://snomed.info/sct','Lymphoma stage II (finding)','76422004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_764694005','764694005','http://snomed.info/sct','MiT family translocation renal cell carcinoma (disorder)','764694005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_764735002','764735002','http://snomed.info/sct','Squamous cell carcinoma of small intestine (disorder)','764735002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_764737005','764737005','http://snomed.info/sct','Squamous cell carcinoma of corpus uteri (disorder)','764737005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_764845008','764845008','http://snomed.info/sct','Adenocarcinoma of anal canal (disorder)','764845008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_764846009','764846009','http://snomed.info/sct','Adenocarcinoma of penis (disorder)','764846009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_764847000','764847000','http://snomed.info/sct','Adenosarcoma of cervix uteri (disorder)','764847000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_764855007','764855007','http://snomed.info/sct','Acute myeloid leukemia with CCAAT/enhancer binding protein alpha somatic mutation (disorder)','764855007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_764856008','764856008','http://snomed.info/sct','Acquired cystic disease associated renal cell carcinoma (disorder)','764856008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_764938007','764938007','http://snomed.info/sct','Lymphoepithelial carcinoma (disorder)','764938007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_764940002','764940002','http://snomed.info/sct','Inherited acute myeloid leukemia (disorder)','764940002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_764951002','764951002','http://snomed.info/sct','Carcinosarcoma of cervix uteri (disorder)','764951002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_764952009','764952009','http://snomed.info/sct','Carcinosarcoma of corpus uteri (disorder)','764952009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_764961009','764961009','http://snomed.info/sct','Hereditary primary clear cell renal cell carcinoma (disorder)','764961009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_764990003','764990003','http://snomed.info/sct','Renal mucinous tubular and spindle cell carcinoma (disorder)','764990003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_765095002','765095002','http://snomed.info/sct','Renal medullary carcinoma (disorder)','765095002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_765136002','765136002','http://snomed.info/sct','Primary cutaneous CD8 positive aggressive epidermotropic cytotoxic T-cell lymphoma (disorder)','765136002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_765328000','765328000','http://snomed.info/sct','Classic mycosis fungoides (disorder)','765328000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_765740002','765740002','http://snomed.info/sct','Adenosarcoma of corpus uteri (disorder)','765740002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_765741003','765741003','http://snomed.info/sct','Adenocarcinoma of gallbladder and extrahepatic biliary tract (disorder)','765741003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_766045006','766045006','http://snomed.info/sct','Acute myeloid leukemia and myelodysplastic syndrome related to alkylating agent (disorder)','766045006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_766046007','766046007','http://snomed.info/sct','Acute myeloid leukemia and myelodysplastic syndrome related to topoisomerase type 2 inhibitor (disorder)','766046007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_766247009','766247009','http://snomed.info/sct','Primitive neuroectodermal tumor of corpus uteri (disorder)','766247009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_766248004','766248004','http://snomed.info/sct','Primitive neuroectodermal tumor of cervix uteri (disorder)','766248004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_766757006','766757006','http://snomed.info/sct','Undifferentiated carcinoma of stomach (disorder)','766757006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_766758001','766758001','http://snomed.info/sct','Undifferentiated carcinoma of corpus uteri (disorder)','766758001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_766759009','766759009','http://snomed.info/sct','Rhabdomyosarcoma of vulva and vagina (disorder)','766759009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_766930002','766930002','http://snomed.info/sct','Glassy cell carcinoma of cervix uteri (disorder)','766930002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_766935007','766935007','http://snomed.info/sct','Primary bone lymphoma (disorder)','766935007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_766978002','766978002','http://snomed.info/sct','Squamous cell carcinoma of gallbladder and extrahepatic biliary tract (disorder)','766978002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_766979005','766979005','http://snomed.info/sct','Squamous cell carcinoma of rectum (disorder)','766979005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_766980008','766980008','http://snomed.info/sct','Squamous cell carcinoma of stomach (disorder)','766980008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_766981007','766981007','http://snomed.info/sct','Squamous cell carcinoma of colon (disorder)','766981007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_767444009','767444009','http://snomed.info/sct','Germline BRCA-mutated human epidermal growth factor receptor 2 negative metastatic carcinoma of breast (disorder)','767444009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_767448007','767448007','http://snomed.info/sct','Pineoblastoma (disorder)','767448007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_768926005','768926005','http://snomed.info/sct','Extraneural perineurioma (disorder)','768926005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_768934004','768934004','http://snomed.info/sct','Intraneural perineurioma (disorder)','768934004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_770402000','770402000','http://snomed.info/sct','Aleukemic mast cell leukemia (disorder)','770402000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_770559003','770559003','http://snomed.info/sct','Leiomyosarcoma of corpus uteri (disorder)','770559003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_770601003','770601003','http://snomed.info/sct','Small cell carcinoma of ovary (disorder)','770601003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_770602005','770602005','http://snomed.info/sct','Squamous cell carcinoma of exocrine pancreas (disorder)','770602005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_770682007','770682007','http://snomed.info/sct','Rosette-forming glioneuronal neoplasm (disorder)','770682007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_770684008','770684008','http://snomed.info/sct','Squamous cell carcinoma of liver and intrahepatic biliary tract (disorder)','770684008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_770685009','770685009','http://snomed.info/sct','Undifferentiated carcinoma of liver and intrahepatic biliary tract (disorder)','770685009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_770686005','770686005','http://snomed.info/sct','Malignant germ cell neoplasm of vagina (disorder)','770686005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_771080008','771080008','http://snomed.info/sct','Hereditary site-specific ovarian cancer syndrome (disorder)','771080008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_771309000','771309000','http://snomed.info/sct','Autosomal recessive lymphoproliferative disease (disorder)','771309000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_771474005','771474005','http://snomed.info/sct','Gastric adenocarcinoma and proximal polyposis of stomach (disorder)','771474005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_771511005','771511005','http://snomed.info/sct','Thrombocythemia with distal limb defect (disorder)','771511005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_772992009','772992009','http://snomed.info/sct','Primary differentiated carcinoma of thyroid gland (disorder)','772992009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_773283006','773283006','http://snomed.info/sct','Malignant germ cell neoplasm of cervix uteri (disorder)','773283006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_773284000','773284000','http://snomed.info/sct','Malignant germ cell neoplasm of corpus uteri (disorder)','773284000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_773624006','773624006','http://snomed.info/sct','Primary ameloblastic carcinoma (disorder)','773624006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_773774000','773774000','http://snomed.info/sct','High-grade neuroendocrine carcinoma of corpus uteri (disorder)','773774000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_773775004','773775004','http://snomed.info/sct','High-grade neuroendocrine carcinoma of cervix uteri (disorder)','773775004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_773995001','773995001','http://snomed.info/sct','Primary cutaneous anaplastic large cell lymphoma (disorder)','773995001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_778046002','778046002','http://snomed.info/sct','Somatomammotropinoma (disorder)','778046002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_778066006','778066006','http://snomed.info/sct','Carcinofibroma of corpus uteri (disorder)','778066006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_780821007','780821007','http://snomed.info/sct','Invasive intraductal papillary-mucinous carcinoma of pancreas (disorder)','780821007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_780822000','780822000','http://snomed.info/sct','Desmoplastic infantile astrocytoma and ganglioglioma (disorder)','780822000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_780844005','780844005','http://snomed.info/sct','Acute myeloid leukemia with inv(3)(q21q26.2) or t(3;3)(q21;q26.2); RPN1-EVI1 (disorder)','780844005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_781076008','781076008','http://snomed.info/sct','Metastatic malignant neoplasm to colon and/or rectum (disorder)','781076008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_781382000','781382000','http://snomed.info/sct','Malignant neoplasm of colon and/or rectum (disorder)','781382000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_782672006','782672006','http://snomed.info/sct','Extragonadal germinoma (disorder)','782672006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_782680004','782680004','http://snomed.info/sct','Gangliocytoma of central nervous system (disorder)','782680004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_782697005','782697005','http://snomed.info/sct','Solid pseudopapillary carcinoma of pancreas (disorder)','782697005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_782722002','782722002','http://snomed.info/sct','Global developmental delay, lung cysts, overgrowth, Wilms tumor syndrome (disorder)','782722002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_782827000','782827000','http://snomed.info/sct','Epithelioid sarcoma (disorder)','782827000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_783056006','783056006','http://snomed.info/sct','Adenocarcinoma of paratestis (disorder)','783056006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_783143001','783143001','http://snomed.info/sct','Noonan syndrome-like disorder with juvenile myelomonocytic leukemia (disorder)','783143001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_783150002','783150002','http://snomed.info/sct','Iatrogenic immunodeficiency-associated lymphoproliferative disorder (disorder)','783150002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_783155007','783155007','http://snomed.info/sct','Malignant epithelial neoplasm of salivary gland (disorder)','783155007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_783183009','783183009','http://snomed.info/sct','Salivary gland type carcinoma of esophagus (disorder)','783183009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_783541009','783541009','http://snomed.info/sct','Breast implant-associated anaplastic large-cell lymphoma (disorder)','783541009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_783565007','783565007','http://snomed.info/sct','Indolent T-cell lymphoproliferative disorder of gastrointestinal tract (disorder)','783565007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_783704005','783704005','http://snomed.info/sct','Undifferentiated carcinoma of esophagus (disorder)','783704005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_783706007','783706007','http://snomed.info/sct','Serous cystadenocarcinoma of pancreas (disorder)','783706007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_783736003','783736003','http://snomed.info/sct','Malignant melanoma of mucous membrane (disorder)','783736003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_783737007','783737007','http://snomed.info/sct','Hirschsprung disease, ganglioneuroblastoma syndrome (disorder)','783737007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_783771003','783771003','http://snomed.info/sct','Acinar cell carcinoma of pancreas (disorder)','783771003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_78411000119107','78411000119107','http://snomed.info/sct','Ewing sarcoma of bone of pelvis (disorder)','78411000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_785798002','785798002','http://snomed.info/sct','Carcinoma in situ of oral cavity (disorder)','785798002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_785807007','785807007','http://snomed.info/sct','Transitional cell carcinoma of corpus uteri (disorder)','785807007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_785879009','785879009','http://snomed.info/sct','Mucinous cystadenocarcinoma of pancreas (disorder)','785879009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_786038001','786038001','http://snomed.info/sct','Familial nonmedullary primary thyroid carcinoma (disorder)','786038001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_786710002','786710002','http://snomed.info/sct','Solid neoplasm with neurotrophic receptor tyrosine kinase gene fusion (disorder)','786710002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_787091002','787091002','http://snomed.info/sct','Adenocarcinoma of liver and intrahepatic biliary tract (disorder)','787091002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_787125004','787125004','http://snomed.info/sct','Germinotropic lymphoproliferative disorder caused by Human herpesvirus 8 (disorder)','787125004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_788674000','788674000','http://snomed.info/sct','Primary cutaneous CD4 positive small/medium T-cell lymphoproliferative disorder (disorder)','788674000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_788756004','788756004','http://snomed.info/sct','Spindle cell oncocytoma of posterior pituitary gland (disorder)','788756004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_788757008','788757008','http://snomed.info/sct','Pituicytoma of posterior pituitary gland (disorder)','788757008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_788758003','788758003','http://snomed.info/sct','Sellar ependymoma of posterior pituitary gland (disorder)','788758003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_788876001','788876001','http://snomed.info/sct','Cachexia due to malignant neoplastic disease (finding)','788876001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_788979007','788979007','http://snomed.info/sct','Malignant pilonidal cyst (disorder)','788979007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_788982002','788982002','http://snomed.info/sct','Mesothelioma of liver (disorder)','788982002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_789004008','789004008','http://snomed.info/sct','Parafollicular cell carcinoma (disorder)','789004008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_789044001','789044001','http://snomed.info/sct','Serous cystadenoma borderline malignancy of ovary (disorder)','789044001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_789051005','789051005','http://snomed.info/sct','Squamous cell carcinoma in situ of skin caused by sunlight (disorder)','789051005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_789689004','789689004','http://snomed.info/sct','Malignant lymphomatoid granulomatosis (disorder)','789689004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_789690008','789690008','http://snomed.info/sct','Malignant lymphomatoid granulomatosis of lung (disorder)','789690008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_789694004','789694004','http://snomed.info/sct','Well-differentiated papillary mesothelioma of pleura (disorder)','789694004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_789695003','789695003','http://snomed.info/sct','Non-mucinous adenocarcinoma in situ of lung (disorder)','789695003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_789721005','789721005','http://snomed.info/sct','Malignant middle ear paraganglioma (disorder)','789721005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_79281000119106','79281000119106','http://snomed.info/sct','Primary adenocarcinoma of skin (disorder)','79281000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_792907004','792907004','http://snomed.info/sct','Adenocarcinoma of pancreatic duct (disorder)','792907004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_816204007','816204007','http://snomed.info/sct','Nodular melanoma of mucous membrane (disorder)','816204007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_816205008','816205008','http://snomed.info/sct','Malignant pituitary blastoma (disorder)','816205008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_818967003','818967003','http://snomed.info/sct','Medulloepithelioma of central nervous system (disorder)','818967003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_822969007','822969007','http://snomed.info/sct','Acinar cell cystadenocarcinoma of lung (disorder)','822969007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_822970008','822970008','http://snomed.info/sct','Acinar cell cystadenocarcinoma of prostate (disorder)','822970008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_823017009','823017009','http://snomed.info/sct','Infiltrating duct carcinoma of prostate (disorder)','823017009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_82501000119102','82501000119102','http://snomed.info/sct','Anaplastic astrocytoma of central nervous system (disorder)','82501000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_82546001','82546001','http://snomed.info/sct','Reactive immunoproliferative disease (disorder)','82546001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_826978004','826978004','http://snomed.info/sct','Solid ductal carcinoma in situ of breast (disorder)','826978004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_827162007','827162007','http://snomed.info/sct','Malignant immature teratoma of ovary (disorder)','827162007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_827186009','827186009','http://snomed.info/sct','Metastatic malignant neoplasm to skin of hip and skin of lower leg (disorder)','827186009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_82761000119108','82761000119108','http://snomed.info/sct','Osteosarcoma of bone of upper limb (disorder)','82761000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_830055006','830055006','http://snomed.info/sct','Anaplastic lymphoma kinase fusion oncogene negative non-small cell lung cancer (disorder)','830055006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_830057003','830057003','http://snomed.info/sct','Relapsing classical Hodgkin lymphoma (disorder)','830057003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_830060005','830060005','http://snomed.info/sct','Reactive oxygen species 1 negative non-small cell lung cancer (disorder)','830060005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_830150003','830150003','http://snomed.info/sct','Malignant melanoma with B-Raf proto-oncogene, serine/threonine kinase V600E mutation (disorder)','830150003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_830151004','830151004','http://snomed.info/sct','Anaplastic lymphoma kinase fusion oncogene positive non-small cell lung cancer (disorder)','830151004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_830196006','830196006','http://snomed.info/sct','Chordoma of cervical spine (disorder)','830196006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_833285007','833285007','http://snomed.info/sct','Chordoma of lumbar spine (disorder)','833285007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_833295000','833295000','http://snomed.info/sct','Chordoma of thoracic spine (disorder)','833295000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_836274002','836274002','http://snomed.info/sct','Carcinomatosis of peritoneum (disorder)','836274002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_836486002','836486002','http://snomed.info/sct','Lymphomatous infiltrate of kidney (disorder)','836486002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_838340006','838340006','http://snomed.info/sct','B lymphoblastic leukemia lymphoma with t(5;14)(q31;q32); IL3-IGH (disorder)','838340006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_838341005','838341005','http://snomed.info/sct','B lymphoblastic leukemia lymphoma with t(v;11q23); MLL rearranged (disorder)','838341005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_838342003','838342003','http://snomed.info/sct','B lymphoblastic leukemia lymphoma with t(12;21) (p13;q22); TEL/AML1 (ETV6-RUNX1) (disorder)','838342003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_838343008','838343008','http://snomed.info/sct','B lymphoblastic leukemia lymphoma with t(1;19)(Q23;P13.3); E2A-PBX1 (TCF3/PBX1) (disorder)','838343008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_838344002','838344002','http://snomed.info/sct','B lymphoblastic leukemia lymphoma with hypodiploidy (disorder)','838344002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_838346000','838346000','http://snomed.info/sct','B lymphoblastic leukemia lymphoma with hyperdiploidy (disorder)','838346000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_838349007','838349007','http://snomed.info/sct','Adenocarcinoma of Meckel diverticulum (disorder)','838349007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_838352004','838352004','http://snomed.info/sct','Adenocarcinoma in situ of esophagus (disorder)','838352004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_838355002','838355002','http://snomed.info/sct','Acute myeloid leukemia with CBFB::MYH11 fusion (disorder)','838355002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_840423002','840423002','http://snomed.info/sct','Diffuse large B-cell lymphoma of small intestine (disorder)','840423002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_840424008','840424008','http://snomed.info/sct','Diffuse large B-cell lymphoma of stomach (disorder)','840424008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_840513008','840513008','http://snomed.info/sct','Complex mixed and stromal malignant neoplasm of myometrium of corpus uteri (disorder)','840513008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_840515001','840515001','http://snomed.info/sct','Complex mixed and stromal malignant neoplasm of isthmus uteri (disorder)','840515001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_840516000','840516000','http://snomed.info/sct','Complex mixed and stromal malignant neoplasm of endometrium of corpus uteri (disorder)','840516000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_840518004','840518004','http://snomed.info/sct','Complex mixed and stromal malignant neoplasm of corpus uteri (disorder)','840518004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_840573001','840573001','http://snomed.info/sct','Carcinoma of epididymis and spermatic cord (disorder)','840573001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_84633001','84633001','http://snomed.info/sct','Lymphoma stage IIIse (finding)','84633001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_84811000119107','84811000119107','http://snomed.info/sct','Follicular dendritic sarcoma of intraabdominal lymph node (disorder)','84811000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_84831000119102','84831000119102','http://snomed.info/sct','Follicular dendritic sarcoma of lymph nodes of multiple sites (disorder)','84831000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_860828007','860828007','http://snomed.info/sct','Gastrointestinal stromal neoplasm of overlapping sites of small intestine (disorder)','860828007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_860830009','860830009','http://snomed.info/sct','Gastrointestinal stromal neoplasm of overlapping sites of stomach (disorder)','860830009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_860831008','860831008','http://snomed.info/sct','Epithelioid hemangioendothelioma of liver (disorder)','860831008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_860832001','860832001','http://snomed.info/sct','Extraskeletal myxoid chondrosarcoma of soft tissue of limb (disorder)','860832001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_860923004','860923004','http://snomed.info/sct','Primary osteosarcoma of articular cartilage of lower limb (disorder)','860923004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_860982007','860982007','http://snomed.info/sct','Complex mixed and stromal malignant neoplasm of fundus uteri (disorder)','860982007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_865951006','865951006','http://snomed.info/sct','Cholangiocarcinoma of perihilar bile duct (disorder)','865951006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_865954003','865954003','http://snomed.info/sct','Adenocarcinoma of breast (disorder)','865954003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_866048009','866048009','http://snomed.info/sct','Mucinous cystic neoplasm with invasive carcinoma of pancreas (disorder)','866048009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_866050001','866050001','http://snomed.info/sct','Mixed germ cell neoplasm of central nervous system (disorder)','866050001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_866052009','866052009','http://snomed.info/sct','Mixed ductal-neuroendocrine carcinoma of pancreas (disorder)','866052009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_866068003','866068003','http://snomed.info/sct','Malignant nerve sheath neoplasm of overlapping sites of peripheral nerves and autonomic nervous system (disorder)','866068003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_866069006','866069006','http://snomed.info/sct','Malignant nerve sheath neoplasm of peripheral nerve of abdomen (disorder)','866069006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_866070007','866070007','http://snomed.info/sct','Malignant mesenchymal neoplasm of bile duct (disorder)','866070007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_866071006','866071006','http://snomed.info/sct','Malignant mesenchymal neoplasm of gallbladder (disorder)','866071006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_866072004','866072004','http://snomed.info/sct','Malignant melanoma of orbit (disorder)','866072004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_866073009','866073009','http://snomed.info/sct','Malignant melanoma of overlapping sites of eye and adnexa (disorder)','866073009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_866079008','866079008','http://snomed.info/sct','Malignant melanoma of lacrimal gland (disorder)','866079008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_866080006','866080006','http://snomed.info/sct','Malignant germ cell neoplasm of heart (disorder)','866080006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_866082003','866082003','http://snomed.info/sct','Malignant melanoma of lacrimal drainage system (disorder)','866082003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_866093001','866093001','http://snomed.info/sct','Malignant nerve sheath neoplasm of peripheral nerve of upper limb (disorder)','866093001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_866094007','866094007','http://snomed.info/sct','Malignant nerve sheath neoplasm of peripheral nerve of pelvis (disorder)','866094007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_866095008','866095008','http://snomed.info/sct','Malignant nerve sheath neoplasm of peripheral nerve of thorax (disorder)','866095008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_866096009','866096009','http://snomed.info/sct','Malignant nerve sheath neoplasm of peripheral nerve of head and neck (disorder)','866096009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_866097000','866097000','http://snomed.info/sct','Malignant nerve sheath neoplasm of peripheral nerve of lower limb (disorder)','866097000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_866098005','866098005','http://snomed.info/sct','Large B-cell lymphoma arising in HHV8-associated multicentric Castleman disease (disorder)','866098005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_866109006','866109006','http://snomed.info/sct','Lymphocytic hypereosinophilic syndrome (disorder)','866109006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_866176003','866176003','http://snomed.info/sct','Clear cell adenocarcinoma of peritoneum (disorder)','866176003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_870318006','870318006','http://snomed.info/sct','Osteosarcoma of bone of head (disorder)','870318006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_870327007','870327007','http://snomed.info/sct','Papillary squamous cell carcinoma of nasopharynx (disorder)','870327007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_870355006','870355006','http://snomed.info/sct','Neuroendocrine carcinoma of anus (disorder)','870355006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_87091000119101','87091000119101','http://snomed.info/sct','Malignant glioma of cerebrum (disorder)','87091000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_87101000119106','87101000119106','http://snomed.info/sct','Primary malignant glioma of brain (disorder)','87101000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_87111000119109','87111000119109','http://snomed.info/sct','Malignant glioma of hypothalamus (disorder)','87111000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_87121000119102','87121000119102','http://snomed.info/sct','Malignant glioma of cerebellum (disorder)','87121000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_87131000119104','87131000119104','http://snomed.info/sct','Primary extramedullary malignant tumor of spinal cord (disorder)','87131000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_87151000119105','87151000119105','http://snomed.info/sct','Malignant glioma of central nervous system (disorder)','87151000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_871540009','871540009','http://snomed.info/sct','Myelofibrosis due to and following polycythemia vera (disorder)','871540009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_871541008','871541008','http://snomed.info/sct','Myelofibrosis due to and following essential thrombocythemia (disorder)','871541008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_871635009','871635009','http://snomed.info/sct','Squamous cell carcinoma in situ of esophagus (disorder)','871635009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_871843002','871843002','http://snomed.info/sct','Malignant neoplasm of connective and soft tissue of sacrococcygeal region (disorder)','871843002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_87211000119104','87211000119104','http://snomed.info/sct','Dysembryoplastic neuroepithelial tumor (disorder)','87211000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_890528009','890528009','http://snomed.info/sct','Primary malignant neoplasm of left lung (disorder)','890528009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_890529001','890529001','http://snomed.info/sct','Primary malignant neoplasm of right lung (disorder)','890529001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_890534002','890534002','http://snomed.info/sct','Primary malignant neoplasm of bilateral lungs (disorder)','890534002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_89487002','89487002','http://snomed.info/sct','Lymphoma stage Ie (finding)','89487002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_895345000','895345000','http://snomed.info/sct','Primary malignant neoplasm of bilateral kidneys (disorder)','895345000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_895354002','895354002','http://snomed.info/sct','Primary malignant neoplasm of left ureter (disorder)','895354002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_895355001','895355001','http://snomed.info/sct','Primary malignant neoplasm of right ureter (disorder)','895355001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_895356000','895356000','http://snomed.info/sct','Primary malignant neoplasm of bilateral ureters (disorder)','895356000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_895358004','895358004','http://snomed.info/sct','Primary malignant neoplasm of left testis (disorder)','895358004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_895359007','895359007','http://snomed.info/sct','Primary malignant neoplasm of right testis (disorder)','895359007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_895361003','895361003','http://snomed.info/sct','Primary malignant neoplasm of bilateral testes (disorder)','895361003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_90811000119100','90811000119100','http://snomed.info/sct','Low grade malignant glioma of brain (disorder)','90811000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_90831000119105','90831000119105','http://snomed.info/sct','Grade 4 malignant glioma of brain (disorder)','90831000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_91031000119108','91031000119108','http://snomed.info/sct','Primary chondrosarcoma of bone of upper limb (disorder)','91031000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_91041000119104','91041000119104','http://snomed.info/sct','Ewing sarcoma of bone structure of upper limb (disorder)','91041000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_91061000119100','91061000119100','http://snomed.info/sct','Primary chondrosarcoma of bone of pelvis (disorder)','91061000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_91081000119109','91081000119109','http://snomed.info/sct','Primary chondrosarcoma of bone of lower limb (disorder)','91081000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_91131000119109','91131000119109','http://snomed.info/sct','Primary adenocarcinoma of vulva (disorder)','91131000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_91141000119100','91141000119100','http://snomed.info/sct','Primary spindle cell carcinoma of urinary bladder (disorder)','91141000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_91151000119103','91151000119103','http://snomed.info/sct','Primary squamous cell carcinoma of chest wall (disorder)','91151000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_91161000119101','91161000119101','http://snomed.info/sct','Primary adenocarcinoma of chest wall (disorder)','91161000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_91171000119107','91171000119107','http://snomed.info/sct','Primary undifferentiated large cell malignant neoplasm of chest wall (disorder)','91171000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_91181000119105','91181000119105','http://snomed.info/sct','Squamous cell carcinoma metastatic to pleura (disorder)','91181000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_91191000119108','91191000119108','http://snomed.info/sct','Metastatic adenocarcinoma to pleura (disorder)','91191000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_91211000119109','91211000119109','http://snomed.info/sct','Metastatic small cell carcinoma to pleura (disorder)','91211000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_91221000119102','91221000119102','http://snomed.info/sct','Metastatic malignant melanoma to pleura (disorder)','91221000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_91251000119105','91251000119105','http://snomed.info/sct','Small cell carcinoma metastatic to skin (disorder)','91251000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_91281000119103','91281000119103','http://snomed.info/sct','Metastatic adenocarcinoma to bone (disorder)','91281000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_91421000119103','91421000119103','http://snomed.info/sct','Primary undifferentiated large cell carcinoma (disorder)','91421000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_91855006','91855006','http://snomed.info/sct','Acute leukemia, disease (disorder)','91855006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_91857003','91857003','http://snomed.info/sct','Acute lymphoid leukemia, disease (disorder)','91857003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_91861009','91861009','http://snomed.info/sct','Acute myeloid leukemia (disorder)','91861009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92511007','92511007','http://snomed.info/sct','Burkitt''s tumor of lymph nodes of axilla AND/OR upper limb (disorder)','92511007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92512000','92512000','http://snomed.info/sct','Burkitt''s tumor of lymph nodes of head, face AND/OR neck (disorder)','92512000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92513005','92513005','http://snomed.info/sct','Burkitt''s tumor of lymph nodes of inguinal region AND/OR lower limb (disorder)','92513005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92516002','92516002','http://snomed.info/sct','Burkitt''s tumor of extranodal AND/OR solid organ site (disorder)','92516002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92523001','92523001','http://snomed.info/sct','Carcinoma in situ of accessory sinus (disorder)','92523001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92524007','92524007','http://snomed.info/sct','Carcinoma in situ of adenoid (disorder)','92524007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92525008','92525008','http://snomed.info/sct','Carcinoma in situ of adnexa of skin (disorder)','92525008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92526009','92526009','http://snomed.info/sct','Carcinoma in situ of adrenal cortex (disorder)','92526009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92527000','92527000','http://snomed.info/sct','Carcinoma in situ of adrenal gland (disorder)','92527000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92528005','92528005','http://snomed.info/sct','Carcinoma in situ of adrenal medulla (disorder)','92528005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92529002','92529002','http://snomed.info/sct','Carcinoma in situ of alveolar ridge mucosa (disorder)','92529002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92530007','92530007','http://snomed.info/sct','Carcinoma in situ of ampulla of Vater (disorder)','92530007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92531006','92531006','http://snomed.info/sct','Carcinoma in situ of anal canal (disorder)','92531006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92532004','92532004','http://snomed.info/sct','Carcinoma in situ of anterior aspect of epiglottis (disorder)','92532004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92534003','92534003','http://snomed.info/sct','Carcinoma in situ of anterior two-thirds of tongue (disorder)','92534003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92535002','92535002','http://snomed.info/sct','Carcinoma in situ of anterior wall of nasopharynx (disorder)','92535002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92536001','92536001','http://snomed.info/sct','Carcinoma in situ of anterior wall of urinary bladder (disorder)','92536001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92537005','92537005','http://snomed.info/sct','Carcinoma in situ of anus (disorder)','92537005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92538000','92538000','http://snomed.info/sct','Carcinoma in situ of apex of urinary bladder (disorder)','92538000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92539008','92539008','http://snomed.info/sct','Carcinoma in situ of appendix (disorder)','92539008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92540005','92540005','http://snomed.info/sct','Carcinoma in situ of areola of female breast (disorder)','92540005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92541009','92541009','http://snomed.info/sct','Carcinoma in situ of areola of male breast (disorder)','92541009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92542002','92542002','http://snomed.info/sct','Carcinoma in situ of ascending colon (disorder)','92542002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92543007','92543007','http://snomed.info/sct','Carcinoma in situ of axillary tail of female breast (disorder)','92543007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92544001','92544001','http://snomed.info/sct','Carcinoma in situ of base of tongue (disorder)','92544001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92545000','92545000','http://snomed.info/sct','Carcinoma in situ of biliary tract (disorder)','92545000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92546004','92546004','http://snomed.info/sct','Carcinoma in situ of urinary bladder (disorder)','92546004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92547008','92547008','http://snomed.info/sct','Carcinoma in situ of body of pancreas (disorder)','92547008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92548003','92548003','http://snomed.info/sct','Carcinoma in situ of body of penis (disorder)','92548003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92549006','92549006','http://snomed.info/sct','Carcinoma in situ of body of stomach (disorder)','92549006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92550006','92550006','http://snomed.info/sct','Carcinoma in situ of body of uterus (disorder)','92550006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92551005','92551005','http://snomed.info/sct','Carcinoma in situ of broad ligament (disorder)','92551005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92552003','92552003','http://snomed.info/sct','Carcinoma in situ of bronchus of left lower lobe (disorder)','92552003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92553008','92553008','http://snomed.info/sct','Carcinoma in situ of bronchus of left upper lobe (disorder)','92553008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92554002','92554002','http://snomed.info/sct','Carcinoma in situ of bronchus of right lower lobe (disorder)','92554002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92555001','92555001','http://snomed.info/sct','Carcinoma in situ of bronchus of right middle lobe (disorder)','92555001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92556000','92556000','http://snomed.info/sct','Carcinoma in situ of bronchus of right upper lobe (disorder)','92556000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92557009','92557009','http://snomed.info/sct','Carcinoma in situ of bronchus (disorder)','92557009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92558004','92558004','http://snomed.info/sct','Carcinoma in situ of buccal mucosa (disorder)','92558004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92559007','92559007','http://snomed.info/sct','Carcinoma in situ of cecum (disorder)','92559007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92560002','92560002','http://snomed.info/sct','Carcinoma in situ of cardia of stomach (disorder)','92560002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92562005','92562005','http://snomed.info/sct','Carcinoma in situ of central portion of female breast (disorder)','92562005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92563000','92563000','http://snomed.info/sct','Carcinoma in situ of cervical esophagus (disorder)','92563000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92565007','92565007','http://snomed.info/sct','Carcinoma in situ of choroid (disorder)','92565007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92566008','92566008','http://snomed.info/sct','Carcinoma in situ of ciliary body (disorder)','92566008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92567004','92567004','http://snomed.info/sct','Carcinoma in situ of clitoris (disorder)','92567004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92568009','92568009','http://snomed.info/sct','Carcinoma in situ of colon (disorder)','92568009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92569001','92569001','http://snomed.info/sct','Carcinoma in situ of commissure of lip (disorder)','92569001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92570000','92570000','http://snomed.info/sct','Carcinoma in situ of common bile duct (disorder)','92570000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92571001','92571001','http://snomed.info/sct','Carcinoma in situ of conjunctiva (disorder)','92571001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92572008','92572008','http://snomed.info/sct','Carcinoma in situ of cornea (disorder)','92572008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92573003','92573003','http://snomed.info/sct','Carcinoma in situ of craniopharyngeal duct (disorder)','92573003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92574009','92574009','http://snomed.info/sct','Carcinoma in situ of cystic duct (disorder)','92574009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92575005','92575005','http://snomed.info/sct','Carcinoma in situ of descending colon (disorder)','92575005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92576006','92576006','http://snomed.info/sct','Carcinoma in situ of dorsal surface of tongue (disorder)','92576006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92577002','92577002','http://snomed.info/sct','Carcinoma in situ of duodenum (disorder)','92577002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92578007','92578007','http://snomed.info/sct','Carcinoma in situ of ectopic female breast tissue (disorder)','92578007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92579004','92579004','http://snomed.info/sct','Carcinoma in situ of ectopic male breast tissue (disorder)','92579004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92581002','92581002','http://snomed.info/sct','Carcinoma in situ of endocrine gland (disorder)','92581002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92582009','92582009','http://snomed.info/sct','Carcinoma in situ of endometrium (disorder)','92582009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92583004','92583004','http://snomed.info/sct','Carcinoma in situ of epididymis (disorder)','92583004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92584005','92584005','http://snomed.info/sct','Carcinoma in situ of epiglottis (disorder)','92584005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92585006','92585006','http://snomed.info/sct','Carcinoma in situ of esophagus (disorder)','92585006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92586007','92586007','http://snomed.info/sct','Carcinoma in situ of ethmoidal sinus (disorder)','92586007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92587003','92587003','http://snomed.info/sct','Carcinoma in situ of eustachian tube (disorder)','92587003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92589000','92589000','http://snomed.info/sct','Carcinoma in situ of extrahepatic bile ducts (disorder)','92589000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92590009','92590009','http://snomed.info/sct','Carcinoma in situ of eye (disorder)','92590009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92591008','92591008','http://snomed.info/sct','Carcinoma in situ of fallopian tube (disorder)','92591008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92593006','92593006','http://snomed.info/sct','Carcinoma in situ of female breast (disorder)','92593006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92594000','92594000','http://snomed.info/sct','Carcinoma in situ of female genital organ (disorder)','92594000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92595004','92595004','http://snomed.info/sct','Carcinoma in situ of floor of mouth (disorder)','92595004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92596003','92596003','http://snomed.info/sct','Carcinoma in situ of prepuce (disorder)','92596003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92597007','92597007','http://snomed.info/sct','Carcinoma in situ of frontal sinus (disorder)','92597007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92598002','92598002','http://snomed.info/sct','Carcinoma in situ of fundus of stomach (disorder)','92598002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92599005','92599005','http://snomed.info/sct','Carcinoma in situ of gallbladder (disorder)','92599005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92600008','92600008','http://snomed.info/sct','Carcinoma in situ of gastrointestinal tract (disorder)','92600008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92601007','92601007','http://snomed.info/sct','Carcinoma in situ of gingival mucosa (disorder)','92601007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92602000','92602000','http://snomed.info/sct','Carcinoma in situ of glans penis (disorder)','92602000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92603005','92603005','http://snomed.info/sct','Carcinoma in situ of glottis (disorder)','92603005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92604004','92604004','http://snomed.info/sct','Carcinoma in situ of greater curvature of stomach (disorder)','92604004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92605003','92605003','http://snomed.info/sct','Carcinoma in situ of gum (disorder)','92605003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92606002','92606002','http://snomed.info/sct','Carcinoma in situ of hard palate (disorder)','92606002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92607006','92607006','http://snomed.info/sct','Carcinoma in situ of head of pancreas (disorder)','92607006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92608001','92608001','http://snomed.info/sct','Carcinoma in situ of hepatic flexure of colon (disorder)','92608001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92609009','92609009','http://snomed.info/sct','Carcinoma in situ of hilus of lung (disorder)','92609009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92610004','92610004','http://snomed.info/sct','Carcinoma in situ of hypopharyngeal aspect of aryepiglottic fold (disorder)','92610004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92611000','92611000','http://snomed.info/sct','Carcinoma in situ of hypopharyngeal aspect of interarytenoid fold (disorder)','92611000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92612007','92612007','http://snomed.info/sct','Carcinoma in situ of hypopharynx (disorder)','92612007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92613002','92613002','http://snomed.info/sct','Carcinoma in situ of ileum (disorder)','92613002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92614008','92614008','http://snomed.info/sct','Carcinoma in situ of inner aspect of lip (disorder)','92614008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92617001','92617001','http://snomed.info/sct','Carcinoma in situ of intestinal tract (disorder)','92617001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92618006','92618006','http://snomed.info/sct','Carcinoma in situ of intrahepatic bile ducts (disorder)','92618006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92619003','92619003','http://snomed.info/sct','Carcinoma in situ of islets of Langerhans (disorder)','92619003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92620009','92620009','http://snomed.info/sct','Carcinoma in situ of isthmus of uterus (disorder)','92620009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92621008','92621008','http://snomed.info/sct','Carcinoma in situ of jejunum (disorder)','92621008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92622001','92622001','http://snomed.info/sct','Carcinoma in situ of junctional region of epiglottis (disorder)','92622001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92623006','92623006','http://snomed.info/sct','Carcinoma in situ of junctional zone of tongue (disorder)','92623006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92624000','92624000','http://snomed.info/sct','Carcinoma in situ of kidney (disorder)','92624000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92625004','92625004','http://snomed.info/sct','Carcinoma in situ of labia majora (disorder)','92625004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92626003','92626003','http://snomed.info/sct','Carcinoma in situ of labia minora (disorder)','92626003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92628002','92628002','http://snomed.info/sct','Carcinoma in situ of lacrimal gland (disorder)','92628002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92629005','92629005','http://snomed.info/sct','Carcinoma in situ of large intestine (disorder)','92629005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92630000','92630000','http://snomed.info/sct','Carcinoma in situ of laryngeal aspect of aryepiglottic fold (disorder)','92630000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92631001','92631001','http://snomed.info/sct','Carcinoma in situ of laryngeal aspect of interarytenoid fold (disorder)','92631001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92632008','92632008','http://snomed.info/sct','Carcinoma in situ of laryngeal commissure (disorder)','92632008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92633003','92633003','http://snomed.info/sct','Carcinoma in situ of laryngeal surface of epiglottis (disorder)','92633003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92634009','92634009','http://snomed.info/sct','Carcinoma in situ of larynx (disorder)','92634009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92636006','92636006','http://snomed.info/sct','Carcinoma in situ of lateral wall of nasopharynx (disorder)','92636006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92637002','92637002','http://snomed.info/sct','Carcinoma in situ of lateral wall of oropharynx (disorder)','92637002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92638007','92638007','http://snomed.info/sct','Carcinoma in situ of lateral wall of urinary bladder (disorder)','92638007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92639004','92639004','http://snomed.info/sct','Carcinoma in situ of left lower lobe of lung (disorder)','92639004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92640002','92640002','http://snomed.info/sct','Carcinoma in situ of left upper lobe of lung (disorder)','92640002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92642005','92642005','http://snomed.info/sct','Carcinoma in situ of lingual tonsil (disorder)','92642005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92643000','92643000','http://snomed.info/sct','Carcinoma in situ of lip (disorder)','92643000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92644006','92644006','http://snomed.info/sct','Carcinoma in situ of liver (disorder)','92644006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92645007','92645007','http://snomed.info/sct','Carcinoma in situ of lower gum (disorder)','92645007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92646008','92646008','http://snomed.info/sct','Carcinoma in situ of lower inner quadrant of female breast (disorder)','92646008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92647004','92647004','http://snomed.info/sct','Carcinoma in situ of lower outer quadrant of female breast (disorder)','92647004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92648009','92648009','http://snomed.info/sct','Carcinoma in situ of lower third of esophagus (disorder)','92648009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92649001','92649001','http://snomed.info/sct','Carcinoma in situ of lung (disorder)','92649001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92650001','92650001','http://snomed.info/sct','Carcinoma in situ of main bronchus (disorder)','92650001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92651002','92651002','http://snomed.info/sct','Carcinoma in situ of major salivary gland (disorder)','92651002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92652009','92652009','http://snomed.info/sct','Carcinoma in situ of male breast (disorder)','92652009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92653004','92653004','http://snomed.info/sct','Carcinoma in situ of male genital organ (disorder)','92653004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92654005','92654005','http://snomed.info/sct','Carcinoma in situ of mastoid air cells (disorder)','92654005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92655006','92655006','http://snomed.info/sct','Carcinoma in situ of maxillary sinus (disorder)','92655006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92656007','92656007','http://snomed.info/sct','Carcinoma in situ of Meckel''s diverticulum (disorder)','92656007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92657003','92657003','http://snomed.info/sct','Carcinoma in situ of middle ear (disorder)','92657003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92658008','92658008','http://snomed.info/sct','Carcinoma in situ of middle third of esophagus (disorder)','92658008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92659000','92659000','http://snomed.info/sct','Carcinoma in situ of minor salivary gland (disorder)','92659000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92660005','92660005','http://snomed.info/sct','Carcinoma in situ of mouth (disorder)','92660005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92661009','92661009','http://snomed.info/sct','Carcinoma in situ of multiple endocrine glands (disorder)','92661009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92662002','92662002','http://snomed.info/sct','Carcinoma in situ of myometrium (disorder)','92662002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92663007','92663007','http://snomed.info/sct','Carcinoma in situ of nasal cavity (disorder)','92663007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92664001','92664001','http://snomed.info/sct','Carcinoma in situ of nasopharynx (disorder)','92664001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92665000','92665000','http://snomed.info/sct','Carcinoma in situ of nipple of female breast (disorder)','92665000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92666004','92666004','http://snomed.info/sct','Carcinoma in situ of nipple of male breast (disorder)','92666004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92668003','92668003','http://snomed.info/sct','Carcinoma in situ of oropharynx (disorder)','92668003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92669006','92669006','http://snomed.info/sct','Carcinoma in situ of ovary (disorder)','92669006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92670007','92670007','http://snomed.info/sct','Carcinoma in situ of palate (disorder)','92670007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92671006','92671006','http://snomed.info/sct','Carcinoma in situ of tonsil (disorder)','92671006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92672004','92672004','http://snomed.info/sct','Carcinoma in situ of pancreas (disorder)','92672004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92673009','92673009','http://snomed.info/sct','Carcinoma in situ of pancreatic duct (disorder)','92673009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92674003','92674003','http://snomed.info/sct','Carcinoma in situ of parametrium (disorder)','92674003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92675002','92675002','http://snomed.info/sct','Carcinoma in situ of parathyroid gland (disorder)','92675002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92676001','92676001','http://snomed.info/sct','Carcinoma in situ of paraurethral glands (disorder)','92676001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92677005','92677005','http://snomed.info/sct','Carcinoma in situ of parietal pleura (disorder)','92677005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92678000','92678000','http://snomed.info/sct','Carcinoma in situ of parotid gland (disorder)','92678000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92679008','92679008','http://snomed.info/sct','Carcinoma in situ of penis (disorder)','92679008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92680006','92680006','http://snomed.info/sct','Carcinoma in situ of perianal skin (disorder)','92680006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92681005','92681005','http://snomed.info/sct','Carcinoma in situ of pharynx (disorder)','92681005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92682003','92682003','http://snomed.info/sct','Carcinoma in situ of pineal gland (disorder)','92682003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92683008','92683008','http://snomed.info/sct','Carcinoma in situ of pituitary gland (disorder)','92683008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92684002','92684002','http://snomed.info/sct','Carcinoma in situ of placenta (disorder)','92684002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92685001','92685001','http://snomed.info/sct','Carcinoma in situ of pleura (disorder)','92685001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92686000','92686000','http://snomed.info/sct','Carcinoma in situ of postcricoid region (disorder)','92686000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92687009','92687009','http://snomed.info/sct','Carcinoma in situ of posterior hypopharyngeal wall (disorder)','92687009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92688004','92688004','http://snomed.info/sct','Carcinoma in situ of posterior wall of nasopharynx (disorder)','92688004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92689007','92689007','http://snomed.info/sct','Carcinoma in situ of posterior wall of oropharynx (disorder)','92689007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92690003','92690003','http://snomed.info/sct','Carcinoma in situ of posterior wall of urinary bladder (disorder)','92690003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92692006','92692006','http://snomed.info/sct','Carcinoma in situ of pyloric antrum (disorder)','92692006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92693001','92693001','http://snomed.info/sct','Carcinoma in situ of pylorus (disorder)','92693001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92694007','92694007','http://snomed.info/sct','Carcinoma in situ of pyriform sinus (disorder)','92694007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92695008','92695008','http://snomed.info/sct','Carcinoma in situ of rectosigmoid junction (disorder)','92695008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92696009','92696009','http://snomed.info/sct','Carcinoma in situ of rectum (disorder)','92696009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92697000','92697000','http://snomed.info/sct','Carcinoma in situ of renal pelvis (disorder)','92697000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92698005','92698005','http://snomed.info/sct','Carcinoma in situ of respiratory tract (disorder)','92698005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92699002','92699002','http://snomed.info/sct','Carcinoma in situ of retina (disorder)','92699002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92700001','92700001','http://snomed.info/sct','Carcinoma in situ of retromolar area (disorder)','92700001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92701002','92701002','http://snomed.info/sct','Carcinoma in situ of right lower lobe of lung (disorder)','92701002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92702009','92702009','http://snomed.info/sct','Carcinoma in situ of middle lobe of right lung (disorder)','92702009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92703004','92703004','http://snomed.info/sct','Carcinoma in situ of right upper lobe of lung (disorder)','92703004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92704005','92704005','http://snomed.info/sct','Carcinoma in situ of round ligament of uterus (disorder)','92704005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92705006','92705006','http://snomed.info/sct','Carcinoma in situ of sclera (disorder)','92705006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92706007','92706007','http://snomed.info/sct','Carcinoma in situ of scrotum (disorder)','92706007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92707003','92707003','http://snomed.info/sct','Carcinoma in situ of sebaceous gland (disorder)','92707003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92708008','92708008','http://snomed.info/sct','Carcinoma in situ of sigmoid colon (disorder)','92708008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92709000','92709000','http://snomed.info/sct','Carcinoma in situ of skin of abdomen (disorder)','92709000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92710005','92710005','http://snomed.info/sct','Carcinoma in situ of skin of ankle (disorder)','92710005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92712002','92712002','http://snomed.info/sct','Carcinoma in situ of skin of axilla (disorder)','92712002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92713007','92713007','http://snomed.info/sct','Carcinoma in situ of skin of back (disorder)','92713007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92714001','92714001','http://snomed.info/sct','Carcinoma in situ of skin of breast (disorder)','92714001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92715000','92715000','http://snomed.info/sct','Carcinoma in situ of skin of buttock (disorder)','92715000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92716004','92716004','http://snomed.info/sct','Carcinoma in situ of skin of cheek (disorder)','92716004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92717008','92717008','http://snomed.info/sct','Carcinoma in situ of skin of chest (disorder)','92717008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92718003','92718003','http://snomed.info/sct','Carcinoma in situ of skin of chin (disorder)','92718003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92719006','92719006','http://snomed.info/sct','Carcinoma in situ of skin of ear (disorder)','92719006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92720000','92720000','http://snomed.info/sct','Carcinoma in situ of skin of elbow (disorder)','92720000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92722008','92722008','http://snomed.info/sct','Carcinoma in situ of skin of eyebrow (disorder)','92722008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92723003','92723003','http://snomed.info/sct','Carcinoma in situ of skin of eyelid (disorder)','92723003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92724009','92724009','http://snomed.info/sct','Carcinoma in situ of skin of face (disorder)','92724009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92725005','92725005','http://snomed.info/sct','Carcinoma in situ of skin of finger (disorder)','92725005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92726006','92726006','http://snomed.info/sct','Carcinoma in situ of skin of foot (disorder)','92726006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92727002','92727002','http://snomed.info/sct','Carcinoma in situ of skin of forearm (disorder)','92727002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92728007','92728007','http://snomed.info/sct','Carcinoma in situ of skin of forehead (disorder)','92728007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92729004','92729004','http://snomed.info/sct','Carcinoma in situ of skin of groin (disorder)','92729004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92730009','92730009','http://snomed.info/sct','Carcinoma in situ of skin of hand (disorder)','92730009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92731008','92731008','http://snomed.info/sct','Carcinoma in situ of skin of hip (disorder)','92731008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92732001','92732001','http://snomed.info/sct','Carcinoma in situ of skin of knee (disorder)','92732001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92734000','92734000','http://snomed.info/sct','Carcinoma in situ of skin of lip (disorder)','92734000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92735004','92735004','http://snomed.info/sct','Carcinoma in situ of skin of lower limb (disorder)','92735004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92736003','92736003','http://snomed.info/sct','Carcinoma in situ of skin of neck (disorder)','92736003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92737007','92737007','http://snomed.info/sct','Carcinoma in situ of skin of nose (disorder)','92737007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92738002','92738002','http://snomed.info/sct','Carcinoma in situ of skin of perineum (disorder)','92738002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92739005','92739005','http://snomed.info/sct','Carcinoma in situ of skin of popliteal area (disorder)','92739005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92740007','92740007','http://snomed.info/sct','Carcinoma in situ of skin of scalp (disorder)','92740007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92741006','92741006','http://snomed.info/sct','Carcinoma in situ of skin of shoulder (disorder)','92741006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92742004','92742004','http://snomed.info/sct','Carcinoma in situ of skin of temporal region (disorder)','92742004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92743009','92743009','http://snomed.info/sct','Carcinoma in situ of skin of thigh (disorder)','92743009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92744003','92744003','http://snomed.info/sct','Carcinoma in situ of skin of toe (disorder)','92744003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92745002','92745002','http://snomed.info/sct','Carcinoma in situ of skin of trunk (disorder)','92745002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92746001','92746001','http://snomed.info/sct','Carcinoma in situ of skin of umbilicus (disorder)','92746001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92747005','92747005','http://snomed.info/sct','Carcinoma in situ of skin of upper limb (disorder)','92747005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92748000','92748000','http://snomed.info/sct','Carcinoma in situ of skin of wrist (disorder)','92748000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92749008','92749008','http://snomed.info/sct','Carcinoma in situ of skin (disorder)','92749008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92750008','92750008','http://snomed.info/sct','Carcinoma in situ of small intestine (disorder)','92750008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92751007','92751007','http://snomed.info/sct','Carcinoma in situ of soft palate (disorder)','92751007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92752000','92752000','http://snomed.info/sct','Carcinoma in situ of spermatic cord (disorder)','92752000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92753005','92753005','http://snomed.info/sct','Carcinoma in situ of sphenoidal sinus (disorder)','92753005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92754004','92754004','http://snomed.info/sct','Carcinoma in situ of spleen (disorder)','92754004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92756002','92756002','http://snomed.info/sct','Carcinoma in situ of stomach (disorder)','92756002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92757006','92757006','http://snomed.info/sct','Carcinoma in situ of subglottis (disorder)','92757006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92758001','92758001','http://snomed.info/sct','Carcinoma in situ of sublingual gland (disorder)','92758001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92759009','92759009','http://snomed.info/sct','Carcinoma in situ of submaxillary gland (disorder)','92759009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92760004','92760004','http://snomed.info/sct','Carcinoma in situ of superior wall of nasopharynx (disorder)','92760004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92761000','92761000','http://snomed.info/sct','Carcinoma in situ of supraglottis (disorder)','92761000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92762007','92762007','http://snomed.info/sct','Carcinoma in situ of sweat gland (disorder)','92762007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92763002','92763002','http://snomed.info/sct','Carcinoma in situ of tail of pancreas (disorder)','92763002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92764008','92764008','http://snomed.info/sct','Carcinoma in situ of testis (disorder)','92764008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92766005','92766005','http://snomed.info/sct','Carcinoma in situ of thyroglossal duct (disorder)','92766005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92767001','92767001','http://snomed.info/sct','Carcinoma in situ of thyroid gland (disorder)','92767001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92768006','92768006','http://snomed.info/sct','Carcinoma in situ of border of tongue (disorder)','92768006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92769003','92769003','http://snomed.info/sct','Carcinoma in situ of tongue (disorder)','92769003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92770002','92770002','http://snomed.info/sct','Carcinoma in situ of tonsillar fossa (disorder)','92770002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92771003','92771003','http://snomed.info/sct','Carcinoma in situ of tonsillar pillar (disorder)','92771003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92772005','92772005','http://snomed.info/sct','Carcinoma in situ of trachea (disorder)','92772005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92773000','92773000','http://snomed.info/sct','Carcinoma in situ of transverse colon (disorder)','92773000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92774006','92774006','http://snomed.info/sct','Carcinoma in situ of trigone of urinary bladder (disorder)','92774006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92775007','92775007','http://snomed.info/sct','Carcinoma in situ of undescended testis (disorder)','92775007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92776008','92776008','http://snomed.info/sct','Carcinoma in situ of upper gum (disorder)','92776008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92777004','92777004','http://snomed.info/sct','Carcinoma in situ of upper inner quadrant of female breast (disorder)','92777004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92778009','92778009','http://snomed.info/sct','Carcinoma in situ of upper outer quadrant of female breast (disorder)','92778009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92779001','92779001','http://snomed.info/sct','Carcinoma in situ of upper respiratory tract (disorder)','92779001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92780003','92780003','http://snomed.info/sct','Carcinoma in situ of upper third of esophagus (disorder)','92780003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92781004','92781004','http://snomed.info/sct','Carcinoma in situ of urachus (disorder)','92781004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92782006','92782006','http://snomed.info/sct','Carcinoma in situ of ureter (disorder)','92782006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92783001','92783001','http://snomed.info/sct','Carcinoma in situ of ureteric orifice of urinary bladder (disorder)','92783001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92784007','92784007','http://snomed.info/sct','Carcinoma in situ of urethra (disorder)','92784007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92785008','92785008','http://snomed.info/sct','Carcinoma in situ of urinary bladder neck (disorder)','92785008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92786009','92786009','http://snomed.info/sct','Carcinoma in situ of urinary system (disorder)','92786009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92787000','92787000','http://snomed.info/sct','Carcinoma in situ of uterine adnexa (disorder)','92787000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92788005','92788005','http://snomed.info/sct','Carcinoma in situ of uterus (disorder)','92788005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92789002','92789002','http://snomed.info/sct','Carcinoma in situ of uveal tract (disorder)','92789002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92790006','92790006','http://snomed.info/sct','Carcinoma in situ of uvula (disorder)','92790006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92791005','92791005','http://snomed.info/sct','Carcinoma in situ of vagina (disorder)','92791005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92792003','92792003','http://snomed.info/sct','Carcinoma in situ of vallecula (disorder)','92792003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92793008','92793008','http://snomed.info/sct','Carcinoma in situ of vas deferens (disorder)','92793008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92794002','92794002','http://snomed.info/sct','Carcinoma in situ of ventral surface of tongue (disorder)','92794002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92795001','92795001','http://snomed.info/sct','Carcinoma in situ of vermilion border of lip (disorder)','92795001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92796000','92796000','http://snomed.info/sct','Carcinoma in situ of vermilion border of lower lip (disorder)','92796000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92797009','92797009','http://snomed.info/sct','Carcinoma in situ of vermilion border of upper lip (disorder)','92797009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92798004','92798004','http://snomed.info/sct','Carcinoma in situ of vestibule of mouth (disorder)','92798004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92799007','92799007','http://snomed.info/sct','Carcinoma in situ of vestibule of nose (disorder)','92799007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92800006','92800006','http://snomed.info/sct','Carcinoma in situ of visceral pleura (disorder)','92800006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92801005','92801005','http://snomed.info/sct','Carcinoma in situ of vocal cord (disorder)','92801005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92802003','92802003','http://snomed.info/sct','Carcinoma in situ of vulva (disorder)','92802003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92803008','92803008','http://snomed.info/sct','Carcinoma in situ of Waldeyer''s ring (disorder)','92803008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92812005','92812005','http://snomed.info/sct','Chronic leukemia, disease (disorder)','92812005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92814006','92814006','http://snomed.info/sct','Chronic lymphoid leukemia, disease (disorder)','92814006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_92818009','92818009','http://snomed.info/sct','Chronic myeloid leukemia (disorder)','92818009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93133006','93133006','http://snomed.info/sct','Letterer-Siwe disease of intra-abdominal lymph nodes (disorder)','93133006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93134000','93134000','http://snomed.info/sct','Letterer-Siwe disease of intrapelvic lymph nodes (disorder)','93134000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93135004','93135004','http://snomed.info/sct','Letterer-Siwe disease of intrathoracic lymph nodes (disorder)','93135004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93136003','93136003','http://snomed.info/sct','Letterer-Siwe disease of lymph nodes of axilla AND/OR upper limb (disorder)','93136003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93137007','93137007','http://snomed.info/sct','Letterer-Siwe disease of lymph nodes of head, face AND/OR neck (disorder)','93137007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93138002','93138002','http://snomed.info/sct','Letterer-Siwe disease of lymph nodes of inguinal region AND/OR lower limb (disorder)','93138002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93139005','93139005','http://snomed.info/sct','Letterer-Siwe disease of lymph nodes of multiple sites (disorder)','93139005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93140007','93140007','http://snomed.info/sct','Letterer-Siwe disease of spleen (disorder)','93140007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93141006','93141006','http://snomed.info/sct','Letterer-Siwe disease of extranodal AND/OR solid organ site (disorder)','93141006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93143009','93143009','http://snomed.info/sct','Leukemia, disease (disorder)','93143009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93144003','93144003','http://snomed.info/sct','Leukemic reticuloendotheliosis of intra-abdominal lymph nodes (disorder)','93144003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93145002','93145002','http://snomed.info/sct','Leukemic reticuloendotheliosis of intrapelvic lymph nodes (disorder)','93145002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93146001','93146001','http://snomed.info/sct','Leukemic reticuloendotheliosis of intrathoracic lymph nodes (disorder)','93146001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93150008','93150008','http://snomed.info/sct','Leukemic reticuloendotheliosis of lymph nodes of multiple sites (disorder)','93150008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93151007','93151007','http://snomed.info/sct','Hairy cell leukemia of spleen (disorder)','93151007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93152000','93152000','http://snomed.info/sct','Leukemic reticuloendotheliosis of extranodal AND/OR solid organ site (disorder)','93152000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93182006','93182006','http://snomed.info/sct','Malignant histiocytosis of intra-abdominal lymph nodes (disorder)','93182006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93183001','93183001','http://snomed.info/sct','Malignant histiocytosis of intrapelvic lymph nodes (disorder)','93183001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93184007','93184007','http://snomed.info/sct','Malignant histiocytosis of intrathoracic lymph nodes (disorder)','93184007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93185008','93185008','http://snomed.info/sct','Malignant histiocytosis of lymph nodes of axilla AND/OR upper limb (disorder)','93185008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93186009','93186009','http://snomed.info/sct','Malignant histiocytosis of lymph nodes of head, face AND/OR neck (disorder)','93186009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93187000','93187000','http://snomed.info/sct','Malignant histiocytosis of lymph nodes of inguinal region AND/OR lower limb (disorder)','93187000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93188005','93188005','http://snomed.info/sct','Malignant histiocytosis of lymph nodes of multiple sites (disorder)','93188005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93189002','93189002','http://snomed.info/sct','Malignant histiocytosis of spleen (disorder)','93189002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93190006','93190006','http://snomed.info/sct','Malignant histiocytosis of extranodal AND/OR solid organ site (disorder)','93190006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93191005','93191005','http://snomed.info/sct','Malignant lymphoma of intra-abdominal lymph nodes (disorder)','93191005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93192003','93192003','http://snomed.info/sct','Malignant lymphoma of intrapelvic lymph nodes (disorder)','93192003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93193008','93193008','http://snomed.info/sct','Malignant lymphoma of intrathoracic lymph nodes (disorder)','93193008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93194002','93194002','http://snomed.info/sct','Malignant lymphoma of lymph nodes of axilla AND/OR upper limb (disorder)','93194002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93195001','93195001','http://snomed.info/sct','Malignant lymphoma of lymph nodes of head, face AND/OR neck (disorder)','93195001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93196000','93196000','http://snomed.info/sct','Malignant lymphoma of lymph nodes of inguinal region AND/OR lower limb (disorder)','93196000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93197009','93197009','http://snomed.info/sct','Malignant lymphoma of lymph nodes of multiple sites (disorder)','93197009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93198004','93198004','http://snomed.info/sct','Malignant lymphoma of spleen (disorder)','93198004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93199007','93199007','http://snomed.info/sct','Malignant lymphoma of extranodal AND/OR solid organ site (disorder)','93199007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93200005','93200005','http://snomed.info/sct','Malignant mast cell tumor of intra-abdominal lymph nodes (disorder)','93200005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93201009','93201009','http://snomed.info/sct','Malignant mast cell tumor of intrapelvic lymph nodes (disorder)','93201009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93202002','93202002','http://snomed.info/sct','Malignant mast cell tumor of intrathoracic lymph nodes (disorder)','93202002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93203007','93203007','http://snomed.info/sct','Malignant mast cell tumor of lymph nodes of axilla AND/OR upper limb (disorder)','93203007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93204001','93204001','http://snomed.info/sct','Malignant mast cell tumor of lymph nodes of head, face AND/OR neck (disorder)','93204001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93205000','93205000','http://snomed.info/sct','Malignant mast cell tumor of lymph nodes of inguinal region AND/OR lower limb (disorder)','93205000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93209006','93209006','http://snomed.info/sct','Malignant melanoma of perianal skin (disorder)','93209006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93210001','93210001','http://snomed.info/sct','Malignant melanoma of skin of abdomen (disorder)','93210001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93211002','93211002','http://snomed.info/sct','Malignant melanoma of skin of ankle (disorder)','93211002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93213004','93213004','http://snomed.info/sct','Malignant melanoma of skin of axilla (disorder)','93213004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93214005','93214005','http://snomed.info/sct','Malignant melanoma of skin of back (disorder)','93214005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93215006','93215006','http://snomed.info/sct','Malignant melanoma of skin of breast (disorder)','93215006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93216007','93216007','http://snomed.info/sct','Malignant melanoma of skin of buttock (disorder)','93216007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93217003','93217003','http://snomed.info/sct','Malignant melanoma of skin of cheek (disorder)','93217003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93218008','93218008','http://snomed.info/sct','Malignant melanoma of skin of chest (disorder)','93218008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93219000','93219000','http://snomed.info/sct','Malignant melanoma of skin of chin (disorder)','93219000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93220006','93220006','http://snomed.info/sct','Malignant melanoma of skin of ear (disorder)','93220006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93221005','93221005','http://snomed.info/sct','Malignant melanoma of skin of elbow (disorder)','93221005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93222003','93222003','http://snomed.info/sct','Malignant melanoma of skin of external auditory canal (disorder)','93222003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93223008','93223008','http://snomed.info/sct','Malignant melanoma of skin of eyebrow (disorder)','93223008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93224002','93224002','http://snomed.info/sct','Malignant melanoma of skin of eyelid (disorder)','93224002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93225001','93225001','http://snomed.info/sct','Malignant melanoma of skin of face (disorder)','93225001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93226000','93226000','http://snomed.info/sct','Malignant melanoma of skin of finger (disorder)','93226000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93227009','93227009','http://snomed.info/sct','Malignant melanoma of skin of foot (disorder)','93227009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93228004','93228004','http://snomed.info/sct','Malignant melanoma of skin of forearm (disorder)','93228004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93229007','93229007','http://snomed.info/sct','Malignant melanoma of skin of forehead (disorder)','93229007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93230002','93230002','http://snomed.info/sct','Malignant melanoma of skin of groin (disorder)','93230002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93451002','93451002','http://snomed.info/sct','Erythroleukemia, FAB M6 (disorder)','93451002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93487009','93487009','http://snomed.info/sct','Hodgkin''s disease, lymphocytic depletion of lymph nodes of axilla AND/OR upper limb (disorder)','93487009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93488004','93488004','http://snomed.info/sct','Hodgkin''s disease, lymphocytic depletion of lymph nodes of head, face AND/OR neck (disorder)','93488004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93489007','93489007','http://snomed.info/sct','Hodgkin''s disease, lymphocytic depletion of lymph nodes of inguinal region AND/OR lower limb (disorder)','93489007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93492006','93492006','http://snomed.info/sct','Hodgkin''s disease, lymphocytic depletion of extranodal AND/OR solid organ site (disorder)','93492006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93493001','93493001','http://snomed.info/sct','Hodgkin''s disease, lymphocytic-histiocytic predominance of intra-abdominal lymph nodes (disorder)','93493001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93494007','93494007','http://snomed.info/sct','Hodgkin''s disease, lymphocytic-histiocytic predominance of intrapelvic lymph nodes (disorder)','93494007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93495008','93495008','http://snomed.info/sct','Hodgkin''s disease, lymphocytic-histiocytic predominance of intrathoracic lymph nodes (disorder)','93495008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93496009','93496009','http://snomed.info/sct','Hodgkin''s disease, lymphocytic-histiocytic predominance of lymph nodes of axilla AND/OR upper limb (disorder)','93496009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93497000','93497000','http://snomed.info/sct','Hodgkin''s disease, lymphocytic-histiocytic predominance of lymph nodes of head, face AND/OR neck (disorder)','93497000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93498005','93498005','http://snomed.info/sct','Hodgkin''s disease, lymphocytic-histiocytic predominance of lymph nodes of inguinal region AND/OR lower limb (disorder)','93498005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93500006','93500006','http://snomed.info/sct','Hodgkin''s disease, lymphocytic-histiocytic predominance of spleen (disorder)','93500006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93501005','93501005','http://snomed.info/sct','Hodgkin''s disease, lymphocytic-histiocytic predominance of extranodal AND/OR solid organ site (disorder)','93501005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93505001','93505001','http://snomed.info/sct','Hodgkin''s disease, mixed cellularity of lymph nodes of axilla AND/OR upper limb (disorder)','93505001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93506000','93506000','http://snomed.info/sct','Hodgkin''s disease, mixed cellularity of lymph nodes of head, face AND/OR neck (disorder)','93506000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93507009','93507009','http://snomed.info/sct','Hodgkin''s disease, mixed cellularity of lymph nodes of inguinal region AND/OR lower limb (disorder)','93507009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93509007','93509007','http://snomed.info/sct','Hodgkin''s disease, mixed cellularity of spleen (disorder)','93509007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93510002','93510002','http://snomed.info/sct','Hodgkin''s disease, mixed cellularity of extranodal AND/OR solid organ site (disorder)','93510002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93514006','93514006','http://snomed.info/sct','Hodgkin''s disease, nodular sclerosis of lymph nodes of axilla AND/OR upper limb (disorder)','93514006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93515007','93515007','http://snomed.info/sct','Hodgkin''s disease, nodular sclerosis of lymph nodes of head, face AND/OR neck (disorder)','93515007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93516008','93516008','http://snomed.info/sct','Hodgkin''s disease, nodular sclerosis of lymph nodes of inguinal region AND/OR lower limb (disorder)','93516008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93518009','93518009','http://snomed.info/sct','Hodgkin''s disease, nodular sclerosis of spleen (disorder)','93518009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93519001','93519001','http://snomed.info/sct','Hodgkin''s disease, nodular sclerosis of extranodal AND/OR solid organ site (disorder)','93519001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93520007','93520007','http://snomed.info/sct','Hodgkin''s disease of intra-abdominal lymph nodes (disorder)','93520007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93521006','93521006','http://snomed.info/sct','Hodgkin''s disease of intrapelvic lymph nodes (disorder)','93521006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93522004','93522004','http://snomed.info/sct','Hodgkin''s disease of intrathoracic lymph nodes (disorder)','93522004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93523009','93523009','http://snomed.info/sct','Hodgkin''s disease of lymph nodes of axilla AND/OR upper limb (disorder)','93523009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93524003','93524003','http://snomed.info/sct','Hodgkin''s disease of lymph nodes of head, face AND/OR neck (disorder)','93524003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93525002','93525002','http://snomed.info/sct','Hodgkin''s disease of lymph nodes of inguinal region AND/OR lower limb (disorder)','93525002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93526001','93526001','http://snomed.info/sct','Hodgkin''s disease of lymph nodes of multiple sites (disorder)','93526001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93527005','93527005','http://snomed.info/sct','Hodgkin''s disease of spleen (disorder)','93527005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93528000','93528000','http://snomed.info/sct','Hodgkin''s disease of extranodal AND/OR solid organ site (disorder)','93528000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93530003','93530003','http://snomed.info/sct','Hodgkin''s granuloma of intrapelvic lymph nodes (disorder)','93530003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93531004','93531004','http://snomed.info/sct','Hodgkin''s granuloma of intrathoracic lymph nodes (disorder)','93531004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93532006','93532006','http://snomed.info/sct','Hodgkin''s granuloma of lymph nodes of axilla AND/OR upper limb (disorder)','93532006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93533001','93533001','http://snomed.info/sct','Hodgkin''s granuloma of lymph nodes of head, face AND/OR neck (disorder)','93533001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93534007','93534007','http://snomed.info/sct','Hodgkin''s granuloma of lymph nodes of inguinal region AND/OR lower limb (disorder)','93534007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93536009','93536009','http://snomed.info/sct','Hodgkin''s granuloma of spleen (disorder)','93536009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93537000','93537000','http://snomed.info/sct','Hodgkin''s granuloma of extranodal AND/OR solid organ site (disorder)','93537000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93541001','93541001','http://snomed.info/sct','Hodgkin''s paragranuloma of lymph nodes of axilla AND/OR upper limb (disorder)','93541001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93542008','93542008','http://snomed.info/sct','Hodgkin''s paragranuloma of lymph nodes of head, face AND/OR neck (disorder)','93542008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93543003','93543003','http://snomed.info/sct','Hodgkin''s paragranuloma of lymph nodes of inguinal region AND/OR lower limb (disorder)','93543003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93546006','93546006','http://snomed.info/sct','Hodgkin''s paragranuloma of extranodal AND/OR solid organ site (disorder)','93546006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93547002','93547002','http://snomed.info/sct','Hodgkin''s sarcoma of intra-abdominal lymph nodes (disorder)','93547002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93548007','93548007','http://snomed.info/sct','Hodgkin''s sarcoma of intrapelvic lymph nodes (disorder)','93548007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93549004','93549004','http://snomed.info/sct','Hodgkin''s sarcoma of intrathoracic lymph nodes (disorder)','93549004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93550004','93550004','http://snomed.info/sct','Hodgkin''s sarcoma of lymph nodes of axilla AND/OR upper limb (disorder)','93550004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93551000','93551000','http://snomed.info/sct','Hodgkin''s sarcoma of lymph nodes of head, face AND/OR neck (disorder)','93551000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93552007','93552007','http://snomed.info/sct','Hodgkin''s sarcoma of lymph nodes of inguinal region AND/OR lower limb (disorder)','93552007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93554008','93554008','http://snomed.info/sct','Hodgkin''s sarcoma of spleen (disorder)','93554008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93555009','93555009','http://snomed.info/sct','Hodgkin''s sarcoma of extranodal AND/OR solid organ site (disorder)','93555009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93636004','93636004','http://snomed.info/sct','Malignant melanoma of skin of hand (disorder)','93636004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93637008','93637008','http://snomed.info/sct','Malignant melanoma of skin of hip (disorder)','93637008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93638003','93638003','http://snomed.info/sct','Malignant melanoma of skin of knee (disorder)','93638003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93640008','93640008','http://snomed.info/sct','Malignant melanoma of skin of lip (disorder)','93640008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93641007','93641007','http://snomed.info/sct','Malignant melanoma of skin of lower limb (disorder)','93641007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93642000','93642000','http://snomed.info/sct','Malignant melanoma of skin of neck (disorder)','93642000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93643005','93643005','http://snomed.info/sct','Malignant melanoma of skin of nose (disorder)','93643005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93644004','93644004','http://snomed.info/sct','Malignant melanoma of skin of perineum (disorder)','93644004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93645003','93645003','http://snomed.info/sct','Malignant melanoma of skin of popliteal area (disorder)','93645003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93646002','93646002','http://snomed.info/sct','Malignant melanoma of skin of scalp (disorder)','93646002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93647006','93647006','http://snomed.info/sct','Malignant melanoma of skin of shoulder (disorder)','93647006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93648001','93648001','http://snomed.info/sct','Malignant melanoma of skin of temporal region (disorder)','93648001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93649009','93649009','http://snomed.info/sct','Malignant melanoma of skin of thigh (disorder)','93649009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93650009','93650009','http://snomed.info/sct','Malignant melanoma of skin of toe (disorder)','93650009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93651008','93651008','http://snomed.info/sct','Malignant melanoma of skin of trunk (disorder)','93651008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93652001','93652001','http://snomed.info/sct','Malignant melanoma of skin of umbilicus (disorder)','93652001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93653006','93653006','http://snomed.info/sct','Malignant melanoma of skin of upper limb (disorder)','93653006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93654000','93654000','http://snomed.info/sct','Malignant melanoma of skin of wrist (disorder)','93654000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93655004','93655004','http://snomed.info/sct','Malignant melanoma of skin (disorder)','93655004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93657007','93657007','http://snomed.info/sct','Primary malignant neoplasm of abducens nerve (disorder)','93657007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93658002','93658002','http://snomed.info/sct','Primary malignant neoplasm of accessory nerve (disorder)','93658002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93659005','93659005','http://snomed.info/sct','Primary malignant neoplasm of accessory sinus (disorder)','93659005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93660000','93660000','http://snomed.info/sct','Primary malignant neoplasm of vestibulocochlear nerve (disorder)','93660000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93661001','93661001','http://snomed.info/sct','Primary malignant neoplasm of acromion (disorder)','93661001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93662008','93662008','http://snomed.info/sct','Primary malignant neoplasm of adenoid (disorder)','93662008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93663003','93663003','http://snomed.info/sct','Primary malignant neoplasm of skin with adnexal differentiation (disorder)','93663003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93665005','93665005','http://snomed.info/sct','Primary malignant neoplasm of adrenal gland (disorder)','93665005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93667002','93667002','http://snomed.info/sct','Primary malignant neoplasm of alveolar ridge mucosa (disorder)','93667002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93669004','93669004','http://snomed.info/sct','Primary malignant neoplasm of anal canal (disorder)','93669004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93670003','93670003','http://snomed.info/sct','Primary malignant neoplasm of anterior aspect of epiglottis (disorder)','93670003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93671004','93671004','http://snomed.info/sct','Primary malignant neoplasm of anterior mediastinum (disorder)','93671004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93672006','93672006','http://snomed.info/sct','Primary malignant neoplasm of anterior portion of floor of mouth (disorder)','93672006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93674007','93674007','http://snomed.info/sct','Primary malignant neoplasm of anterior wall of nasopharynx (disorder)','93674007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93675008','93675008','http://snomed.info/sct','Primary malignant neoplasm of anterior wall of urinary bladder (disorder)','93675008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93676009','93676009','http://snomed.info/sct','Primary malignant neoplasm of anus (disorder)','93676009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93677000','93677000','http://snomed.info/sct','Primary malignant neoplasm of aortic body (disorder)','93677000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93679002','93679002','http://snomed.info/sct','Primary malignant neoplasm of appendix (disorder)','93679002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93680004','93680004','http://snomed.info/sct','Primary malignant neoplasm of areola of female breast (disorder)','93680004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93681000','93681000','http://snomed.info/sct','Primary malignant neoplasm of areola of male breast (disorder)','93681000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93682007','93682007','http://snomed.info/sct','Primary malignant neoplasm of upper arm (disorder)','93682007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93683002','93683002','http://snomed.info/sct','Primary malignant neoplasm of ascending colon (disorder)','93683002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93684008','93684008','http://snomed.info/sct','Primary malignant neoplasm of axilla (disorder)','93684008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93686005','93686005','http://snomed.info/sct','Primary malignant neoplasm of back (disorder)','93686005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93687001','93687001','http://snomed.info/sct','Primary malignant neoplasm of base of tongue (disorder)','93687001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93689003','93689003','http://snomed.info/sct','Primary malignant neoplasm of urinary bladder (disorder)','93689003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93690007','93690007','http://snomed.info/sct','Primary malignant neoplasm of blood vessel of abdomen (disorder)','93690007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93692004','93692004','http://snomed.info/sct','Primary malignant neoplasm of blood vessel of axilla (disorder)','93692004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93693009','93693009','http://snomed.info/sct','Primary malignant neoplasm of blood vessel of buttock (disorder)','93693009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93694003','93694003','http://snomed.info/sct','Primary malignant neoplasm of blood vessel of face (disorder)','93694003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93695002','93695002','http://snomed.info/sct','Primary malignant neoplasm of blood vessel of finger (disorder)','93695002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93696001','93696001','http://snomed.info/sct','Primary malignant neoplasm of blood vessel of foot (disorder)','93696001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93697005','93697005','http://snomed.info/sct','Primary malignant neoplasm of blood vessel of forearm (disorder)','93697005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93698000','93698000','http://snomed.info/sct','Primary malignant neoplasm of blood vessel of hand (disorder)','93698000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93699008','93699008','http://snomed.info/sct','Primary malignant neoplasm of blood vessel of head (disorder)','93699008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93700009','93700009','http://snomed.info/sct','Primary malignant neoplasm of blood vessel of hip (disorder)','93700009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93701008','93701008','http://snomed.info/sct','Primary malignant neoplasm of blood vessel of inguinal region (disorder)','93701008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93703006','93703006','http://snomed.info/sct','Primary malignant neoplasm of blood vessel of lower limb (disorder)','93703006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93704000','93704000','http://snomed.info/sct','Primary malignant neoplasm of blood vessel of neck (disorder)','93704000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93705004','93705004','http://snomed.info/sct','Primary malignant neoplasm of blood vessel of pelvis (disorder)','93705004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93706003','93706003','http://snomed.info/sct','Primary malignant neoplasm of blood vessel of perineum (disorder)','93706003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93707007','93707007','http://snomed.info/sct','Primary malignant neoplasm of blood vessel of popliteal space (disorder)','93707007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93708002','93708002','http://snomed.info/sct','Primary malignant neoplasm of blood vessel of shoulder (disorder)','93708002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93709005','93709005','http://snomed.info/sct','Primary malignant neoplasm of blood vessel of thigh (disorder)','93709005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93710000','93710000','http://snomed.info/sct','Primary malignant neoplasm of blood vessel of thorax (disorder)','93710000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93711001','93711001','http://snomed.info/sct','Primary malignant neoplasm of blood vessel of toe (disorder)','93711001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93712008','93712008','http://snomed.info/sct','Primary malignant neoplasm of blood vessel of trunk (disorder)','93712008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93713003','93713003','http://snomed.info/sct','Primary malignant neoplasm of blood vessel of upper limb (disorder)','93713003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93714009','93714009','http://snomed.info/sct','Primary malignant neoplasm of blood vessel (disorder)','93714009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93715005','93715005','http://snomed.info/sct','Primary malignant neoplasm of body of pancreas (disorder)','93715005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93716006','93716006','http://snomed.info/sct','Primary malignant neoplasm of body of penis (disorder)','93716006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93717002','93717002','http://snomed.info/sct','Primary malignant neoplasm of body of stomach (disorder)','93717002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93720005','93720005','http://snomed.info/sct','Primary malignant neoplasm of bone marrow (disorder)','93720005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93721009','93721009','http://snomed.info/sct','Primary malignant neoplasm of bone of face (disorder)','93721009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93722002','93722002','http://snomed.info/sct','Primary malignant neoplasm of bone of lower limb (disorder)','93722002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93723007','93723007','http://snomed.info/sct','Primary malignant neoplasm of bone of skull (disorder)','93723007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93724001','93724001','http://snomed.info/sct','Primary malignant neoplasm of bone of upper limb (disorder)','93724001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93725000','93725000','http://snomed.info/sct','Primary malignant neoplasm of bone (disorder)','93725000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93726004','93726004','http://snomed.info/sct','Primary malignant neoplasm of brain stem (disorder)','93726004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93727008','93727008','http://snomed.info/sct','Primary malignant neoplasm of brain (disorder)','93727008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93728003','93728003','http://snomed.info/sct','Primary malignant neoplasm of broad ligament (disorder)','93728003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93729006','93729006','http://snomed.info/sct','Primary malignant neoplasm of bronchus of left lower lobe (disorder)','93729006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93730001','93730001','http://snomed.info/sct','Primary malignant neoplasm of bronchus of left upper lobe (disorder)','93730001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93731002','93731002','http://snomed.info/sct','Primary malignant neoplasm of bronchus of right lower lobe (disorder)','93731002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93732009','93732009','http://snomed.info/sct','Primary malignant neoplasm of bronchus of middle lobe of right lung (disorder)','93732009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93733004','93733004','http://snomed.info/sct','Primary malignant neoplasm of bronchus of right upper lobe (disorder)','93733004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93734005','93734005','http://snomed.info/sct','Primary malignant neoplasm of bronchus (disorder)','93734005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93737003','93737003','http://snomed.info/sct','Primary malignant neoplasm of calcaneus (disorder)','93737003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93738008','93738008','http://snomed.info/sct','Primary malignant neoplasm of cardia of stomach (disorder)','93738008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93739000','93739000','http://snomed.info/sct','Primary malignant neoplasm of carina (disorder)','93739000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93740003','93740003','http://snomed.info/sct','Primary malignant neoplasm of carotid body (disorder)','93740003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93741004','93741004','http://snomed.info/sct','Primary malignant neoplasm of carpal bone (disorder)','93741004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93742006','93742006','http://snomed.info/sct','Primary malignant neoplasm of cartilage of nose (disorder)','93742006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93743001','93743001','http://snomed.info/sct','Primary malignant neoplasm of cauda equina (disorder)','93743001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93744007','93744007','http://snomed.info/sct','Primary malignant neoplasm of central nervous system (disorder)','93744007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93745008','93745008','http://snomed.info/sct','Primary malignant neoplasm of central portion of female breast (disorder)','93745008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93746009','93746009','http://snomed.info/sct','Primary malignant neoplasm of cerebellum (disorder)','93746009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93747000','93747000','http://snomed.info/sct','Primary malignant neoplasm of cerebral meninges (disorder)','93747000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93748005','93748005','http://snomed.info/sct','Primary malignant neoplasm of cerebral ventricle (disorder)','93748005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93749002','93749002','http://snomed.info/sct','Primary malignant neoplasm of cerebrum (disorder)','93749002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93751003','93751003','http://snomed.info/sct','Primary malignant neoplasm of cervical vertebral column (disorder)','93751003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93753000','93753000','http://snomed.info/sct','Primary malignant neoplasm of cheek (disorder)','93753000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93754006','93754006','http://snomed.info/sct','Primary malignant neoplasm of chest wall (disorder)','93754006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93755007','93755007','http://snomed.info/sct','Primary malignant neoplasm of choroid (disorder)','93755007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93756008','93756008','http://snomed.info/sct','Primary malignant neoplasm of ciliary body, primary (disorder)','93756008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93757004','93757004','http://snomed.info/sct','Primary malignant neoplasm of clavicle (disorder)','93757004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93759001','93759001','http://snomed.info/sct','Primary malignant neoplasm of coccygeal body (disorder)','93759001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93760006','93760006','http://snomed.info/sct','Primary malignant neoplasm of coccyx (disorder)','93760006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93761005','93761005','http://snomed.info/sct','Primary malignant neoplasm of colon (disorder)','93761005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93763008','93763008','http://snomed.info/sct','Primary malignant neoplasm of common bile duct (disorder)','93763008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93764002','93764002','http://snomed.info/sct','Primary malignant neoplasm of conjunctiva of eye (disorder)','93764002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93766000','93766000','http://snomed.info/sct','Primary malignant neoplasm of cornea of eye (disorder)','93766000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93767009','93767009','http://snomed.info/sct','Primary malignant neoplasm of cranial nerve (disorder)','93767009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93768004','93768004','http://snomed.info/sct','Primary malignant neoplasm of craniopharyngeal duct (disorder)','93768004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93769007','93769007','http://snomed.info/sct','Primary malignant neoplasm of cuboid (disorder)','93769007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93770008','93770008','http://snomed.info/sct','Primary malignant neoplasm of cystic duct (disorder)','93770008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93771007','93771007','http://snomed.info/sct','Primary malignant neoplasm of descending colon (disorder)','93771007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93772000','93772000','http://snomed.info/sct','Primary malignant neoplasm of diaphragm (disorder)','93772000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93773005','93773005','http://snomed.info/sct','Primary malignant neoplasm of dorsal surface of tongue (disorder)','93773005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93775003','93775003','http://snomed.info/sct','Primary malignant neoplasm of duodenum (disorder)','93775003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93776002','93776002','http://snomed.info/sct','Primary malignant neoplasm of ectopic female breast tissue (disorder)','93776002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93777006','93777006','http://snomed.info/sct','Primary malignant neoplasm of ectopic male breast tissue (disorder)','93777006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93778001','93778001','http://snomed.info/sct','Primary malignant neoplasm of endocardium (disorder)','93778001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93779009','93779009','http://snomed.info/sct','Primary malignant neoplasm of endocervix (disorder)','93779009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93781006','93781006','http://snomed.info/sct','Primary malignant neoplasm of endometrium (disorder)','93781006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93782004','93782004','http://snomed.info/sct','Primary malignant neoplasm of epicardium (disorder)','93782004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93783009','93783009','http://snomed.info/sct','Primary malignant neoplasm of epididymis (disorder)','93783009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93784003','93784003','http://snomed.info/sct','Primary malignant neoplasm of epiglottis (disorder)','93784003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93786001','93786001','http://snomed.info/sct','Primary malignant neoplasm of ethmoid bone (disorder)','93786001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93787005','93787005','http://snomed.info/sct','Primary malignant neoplasm of ethmoidal sinus (disorder)','93787005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93788000','93788000','http://snomed.info/sct','Primary malignant neoplasm of eustachian tube (disorder)','93788000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93789008','93789008','http://snomed.info/sct','Primary malignant neoplasm of exocervix (disorder)','93789008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93792007','93792007','http://snomed.info/sct','Primary malignant neoplasm of face (disorder)','93792007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93793002','93793002','http://snomed.info/sct','Primary malignant neoplasm of facial nerve (disorder)','93793002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93796005','93796005','http://snomed.info/sct','Primary malignant neoplasm of female breast (disorder)','93796005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93797001','93797001','http://snomed.info/sct','Primary malignant neoplasm of female genital organ (disorder)','93797001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93798006','93798006','http://snomed.info/sct','Primary malignant neoplasm of femur (disorder)','93798006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93799003','93799003','http://snomed.info/sct','Primary malignant neoplasm of fibula (disorder)','93799003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93800004','93800004','http://snomed.info/sct','Primary malignant neoplasm of first cuneiform bone of foot (disorder)','93800004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93801000','93801000','http://snomed.info/sct','Primary malignant neoplasm of flank (disorder)','93801000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93802007','93802007','http://snomed.info/sct','Primary malignant neoplasm of floor of mouth (disorder)','93802007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93803002','93803002','http://snomed.info/sct','Primary malignant neoplasm of foot (disorder)','93803002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93804008','93804008','http://snomed.info/sct','Primary malignant neoplasm of forearm (disorder)','93804008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93806005','93806005','http://snomed.info/sct','Primary malignant neoplasm of frontal bone (disorder)','93806005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93807001','93807001','http://snomed.info/sct','Primary malignant neoplasm of frontal lobe (disorder)','93807001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93808006','93808006','http://snomed.info/sct','Primary malignant neoplasm of frontal sinus (disorder)','93808006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93809003','93809003','http://snomed.info/sct','Primary malignant neoplasm of fundus of stomach (disorder)','93809003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93812000','93812000','http://snomed.info/sct','Primary malignant neoplasm of gingival mucosa (disorder)','93812000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93814004','93814004','http://snomed.info/sct','Primary malignant neoplasm of glomus jugulare (disorder)','93814004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93815003','93815003','http://snomed.info/sct','Primary malignant neoplasm of glossopharyngeal nerve (disorder)','93815003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93816002','93816002','http://snomed.info/sct','Primary malignant neoplasm of glottis (disorder)','93816002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93817006','93817006','http://snomed.info/sct','Primary malignant neoplasm of great vessels (disorder)','93817006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93818001','93818001','http://snomed.info/sct','Primary malignant neoplasm of greater curvature of stomach (disorder)','93818001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93820003','93820003','http://snomed.info/sct','Primary malignant neoplasm of hamate bone (disorder)','93820003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93821004','93821004','http://snomed.info/sct','Primary malignant neoplasm of hand (disorder)','93821004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93824007','93824007','http://snomed.info/sct','Primary malignant neoplasm of head (disorder)','93824007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93825008','93825008','http://snomed.info/sct','Primary malignant neoplasm of heart (disorder)','93825008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93826009','93826009','http://snomed.info/sct','Primary malignant neoplasm of hepatic flexure of colon (disorder)','93826009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93827000','93827000','http://snomed.info/sct','Primary malignant neoplasm of hilus of lung (disorder)','93827000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93828005','93828005','http://snomed.info/sct','Primary malignant neoplasm of hypoglossal nerve (disorder)','93828005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93829002','93829002','http://snomed.info/sct','Primary malignant neoplasm of hypopharyngeal aspect of aryepiglottic fold (disorder)','93829002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93830007','93830007','http://snomed.info/sct','Primary malignant neoplasm of hypopharyngeal aspect of interarytenoid fold (disorder)','93830007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93831006','93831006','http://snomed.info/sct','Primary malignant neoplasm of hypopharynx (disorder)','93831006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93832004','93832004','http://snomed.info/sct','Primary malignant neoplasm of ileum (disorder)','93832004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93833009','93833009','http://snomed.info/sct','Primary malignant neoplasm of ilium (disorder)','93833009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93834003','93834003','http://snomed.info/sct','Primary malignant neoplasm of inguinal region (disorder)','93834003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93835002','93835002','http://snomed.info/sct','Primary malignant neoplasm of inner aspect of lip (disorder)','93835002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93836001','93836001','http://snomed.info/sct','Primary malignant neoplasm of inner aspect of lower lip (disorder)','93836001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93837005','93837005','http://snomed.info/sct','Primary malignant neoplasm of inner aspect of upper lip (disorder)','93837005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93839008','93839008','http://snomed.info/sct','Primary malignant neoplasm of intra-abdominal organs (disorder)','93839008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93841009','93841009','http://snomed.info/sct','Primary malignant neoplasm of intrathoracic organs (disorder)','93841009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93842002','93842002','http://snomed.info/sct','Primary malignant neoplasm of ischium (disorder)','93842002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93843007','93843007','http://snomed.info/sct','Primary malignant neoplasm of islets of Langerhans (disorder)','93843007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93844001','93844001','http://snomed.info/sct','Primary malignant neoplasm of isthmus of uterus (disorder)','93844001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93845000','93845000','http://snomed.info/sct','Primary malignant neoplasm of jaw (disorder)','93845000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93846004','93846004','http://snomed.info/sct','Primary malignant neoplasm of jejunum (disorder)','93846004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93848003','93848003','http://snomed.info/sct','Primary malignant neoplasm of junctional zone of tongue (disorder)','93848003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93849006','93849006','http://snomed.info/sct','Primary malignant neoplasm of kidney (disorder)','93849006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93850006','93850006','http://snomed.info/sct','Primary malignant neoplasm of labia majora (disorder)','93850006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93851005','93851005','http://snomed.info/sct','Primary malignant neoplasm of labia minora (disorder)','93851005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93854002','93854002','http://snomed.info/sct','Primary malignant neoplasm of large intestine (disorder)','93854002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93857009','93857009','http://snomed.info/sct','Primary malignant neoplasm of laryngeal commissure (disorder)','93857009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93858004','93858004','http://snomed.info/sct','Primary malignant neoplasm of laryngeal surface of epiglottis (disorder)','93858004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93860002','93860002','http://snomed.info/sct','Primary malignant neoplasm of lateral portion of floor of mouth (disorder)','93860002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93861003','93861003','http://snomed.info/sct','Primary malignant neoplasm of lateral wall of nasopharynx (disorder)','93861003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93862005','93862005','http://snomed.info/sct','Primary malignant neoplasm of lateral wall of oropharynx (disorder)','93862005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93863000','93863000','http://snomed.info/sct','Primary malignant neoplasm of lateral wall of urinary bladder (disorder)','93863000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93864006','93864006','http://snomed.info/sct','Primary malignant neoplasm of lower lobe of left lung (disorder)','93864006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93865007','93865007','http://snomed.info/sct','Primary malignant neoplasm of upper lobe of left lung (disorder)','93865007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93867004','93867004','http://snomed.info/sct','Primary malignant neoplasm of lesser curvature of stomach (disorder)','93867004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93868009','93868009','http://snomed.info/sct','Primary malignant neoplasm of lingual tonsil (disorder)','93868009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93870000','93870000','http://snomed.info/sct','Malignant neoplasm of liver (disorder)','93870000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93871001','93871001','http://snomed.info/sct','Primary malignant neoplasm of long bone of lower limb (disorder)','93871001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93872008','93872008','http://snomed.info/sct','Primary malignant neoplasm of long bone of upper limb (disorder)','93872008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93874009','93874009','http://snomed.info/sct','Primary malignant neoplasm of lower inner quadrant of female breast (disorder)','93874009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93875005','93875005','http://snomed.info/sct','Primary malignant neoplasm of lower limb (disorder)','93875005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93876006','93876006','http://snomed.info/sct','Primary malignant neoplasm of lower outer quadrant of female breast (disorder)','93876006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93878007','93878007','http://snomed.info/sct','Primary malignant neoplasm of lumbar vertebral column (disorder)','93878007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93879004','93879004','http://snomed.info/sct','Primary malignant neoplasm of lunate bone (disorder)','93879004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93880001','93880001','http://snomed.info/sct','Primary malignant neoplasm of lung (disorder)','93880001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93882009','93882009','http://snomed.info/sct','Primary malignant neoplasm of main bronchus (disorder)','93882009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93883004','93883004','http://snomed.info/sct','Primary malignant neoplasm of major salivary gland (disorder)','93883004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93884005','93884005','http://snomed.info/sct','Primary malignant neoplasm of male breast (disorder)','93884005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93885006','93885006','http://snomed.info/sct','Primary malignant neoplasm of male genital organ (disorder)','93885006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93886007','93886007','http://snomed.info/sct','Primary malignant neoplasm of mandible (disorder)','93886007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93887003','93887003','http://snomed.info/sct','Primary malignant neoplasm of mastoid air cells (disorder)','93887003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93888008','93888008','http://snomed.info/sct','Primary malignant neoplasm of maxilla (disorder)','93888008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93889000','93889000','http://snomed.info/sct','Primary malignant neoplasm of maxillary sinus (disorder)','93889000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93890009','93890009','http://snomed.info/sct','Primary malignant neoplasm of Meckel''s diverticulum (disorder)','93890009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93891008','93891008','http://snomed.info/sct','Primary malignant neoplasm of mediastinum (disorder)','93891008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93892001','93892001','http://snomed.info/sct','Primary malignant neoplasm of metacarpal bone (disorder)','93892001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93893006','93893006','http://snomed.info/sct','Primary malignant neoplasm of metatarsal bone (disorder)','93893006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93894000','93894000','http://snomed.info/sct','Primary malignant neoplasm of middle ear (disorder)','93894000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93898002','93898002','http://snomed.info/sct','Primary malignant neoplasm of multiple endocrine glands (disorder)','93898002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93899005','93899005','http://snomed.info/sct','Primary malignant neoplasm of muscle of abdomen (disorder)','93899005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93900000','93900000','http://snomed.info/sct','Primary malignant neoplasm of muscle of buttock (disorder)','93900000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93901001','93901001','http://snomed.info/sct','Primary malignant neoplasm of muscle of face (disorder)','93901001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93902008','93902008','http://snomed.info/sct','Primary malignant neoplasm of muscle of head (disorder)','93902008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93903003','93903003','http://snomed.info/sct','Primary malignant neoplasm of muscle of hip (disorder)','93903003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93904009','93904009','http://snomed.info/sct','Primary malignant neoplasm of muscle of inguinal region (disorder)','93904009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93905005','93905005','http://snomed.info/sct','Primary malignant neoplasm of muscle of lower limb (disorder)','93905005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93906006','93906006','http://snomed.info/sct','Primary malignant neoplasm of muscle of neck (disorder)','93906006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93907002','93907002','http://snomed.info/sct','Primary malignant neoplasm of muscle of pelvis (disorder)','93907002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93908007','93908007','http://snomed.info/sct','Primary malignant neoplasm of muscle of perineum (disorder)','93908007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93909004','93909004','http://snomed.info/sct','Primary malignant neoplasm of muscle of shoulder (disorder)','93909004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93910009','93910009','http://snomed.info/sct','Primary malignant neoplasm of muscle of thorax (disorder)','93910009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93911008','93911008','http://snomed.info/sct','Primary malignant neoplasm of muscle of trunk (disorder)','93911008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93912001','93912001','http://snomed.info/sct','Primary malignant neoplasm of muscle of upper limb (disorder)','93912001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93913006','93913006','http://snomed.info/sct','Primary malignant neoplasm of muscle (disorder)','93913006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93914000','93914000','http://snomed.info/sct','Primary malignant neoplasm of myocardium (disorder)','93914000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93915004','93915004','http://snomed.info/sct','Primary malignant neoplasm of myometrium (disorder)','93915004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93916003','93916003','http://snomed.info/sct','Primary malignant neoplasm of nasal bone (disorder)','93916003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93917007','93917007','http://snomed.info/sct','Primary malignant neoplasm of nasal cavity (disorder)','93917007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93918002','93918002','http://snomed.info/sct','Primary malignant neoplasm of nasal concha (disorder)','93918002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93920004','93920004','http://snomed.info/sct','Primary malignant neoplasm of navicular bone of foot (disorder)','93920004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93922007','93922007','http://snomed.info/sct','Primary malignant neoplasm of neck (disorder)','93922007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93923002','93923002','http://snomed.info/sct','Primary malignant neoplasm of nervous system (disorder)','93923002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93924008','93924008','http://snomed.info/sct','Primary malignant neoplasm of nipple of female breast (disorder)','93924008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93925009','93925009','http://snomed.info/sct','Primary malignant neoplasm of nipple of male breast (disorder)','93925009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93926005','93926005','http://snomed.info/sct','Primary malignant neoplasm of nose (disorder)','93926005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93927001','93927001','http://snomed.info/sct','Primary malignant neoplasm of occipital bone (disorder)','93927001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93928006','93928006','http://snomed.info/sct','Primary malignant neoplasm of occipital lobe (disorder)','93928006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93929003','93929003','http://snomed.info/sct','Primary malignant neoplasm of oculomotor nerve (disorder)','93929003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93930008','93930008','http://snomed.info/sct','Primary malignant neoplasm of olfactory nerve (disorder)','93930008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93931007','93931007','http://snomed.info/sct','Primary malignant neoplasm of optic nerve (disorder)','93931007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93932000','93932000','http://snomed.info/sct','Primary malignant neoplasm of orbit (disorder)','93932000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93933005','93933005','http://snomed.info/sct','Primary malignant neoplasm of oropharynx (disorder)','93933005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93934004','93934004','http://snomed.info/sct','Primary malignant neoplasm of ovary (disorder)','93934004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93936002','93936002','http://snomed.info/sct','Primary malignant neoplasm of palatine bone (disorder)','93936002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93939009','93939009','http://snomed.info/sct','Primary malignant neoplasm of pancreatic duct (disorder)','93939009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93940006','93940006','http://snomed.info/sct','Primary malignant neoplasm of para-aortic body (disorder)','93940006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93941005','93941005','http://snomed.info/sct','Primary malignant neoplasm of paraganglion (disorder)','93941005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93942003','93942003','http://snomed.info/sct','Primary malignant neoplasm of parametrium (disorder)','93942003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93943008','93943008','http://snomed.info/sct','Primary malignant neoplasm of parathyroid gland (disorder)','93943008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93944002','93944002','http://snomed.info/sct','Primary malignant neoplasm of paraurethral glands (disorder)','93944002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93945001','93945001','http://snomed.info/sct','Primary malignant neoplasm of parietal bone (disorder)','93945001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93946000','93946000','http://snomed.info/sct','Primary malignant neoplasm of parietal lobe (disorder)','93946000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93947009','93947009','http://snomed.info/sct','Primary malignant neoplasm of parietal peritoneum (disorder)','93947009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93948004','93948004','http://snomed.info/sct','Primary malignant neoplasm of parietal pleura (disorder)','93948004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93950007','93950007','http://snomed.info/sct','Primary malignant neoplasm of patella (disorder)','93950007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93951006','93951006','http://snomed.info/sct','Primary malignant neoplasm of pelvic bone (disorder)','93951006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93952004','93952004','http://snomed.info/sct','Primary malignant neoplasm of pelvic peritoneum (disorder)','93952004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93953009','93953009','http://snomed.info/sct','Primary malignant neoplasm of pelvis (disorder)','93953009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93955002','93955002','http://snomed.info/sct','Primary malignant neoplasm of periadrenal tissue (disorder)','93955002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93956001','93956001','http://snomed.info/sct','Primary malignant neoplasm of perianal skin (disorder)','93956001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93957005','93957005','http://snomed.info/sct','Primary malignant neoplasm of pericardium (disorder)','93957005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93958000','93958000','http://snomed.info/sct','Primary malignant neoplasm of perirenal tissue (disorder)','93958000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93959008','93959008','http://snomed.info/sct','Primary malignant neoplasm of phalanx of foot (disorder)','93959008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_939595491000119108','939595491000119108','http://snomed.info/sct','Malignant melanoma of skin of right forearm (disorder)','939595491000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93960003','93960003','http://snomed.info/sct','Primary malignant neoplasm of phalanx of hand (disorder)','93960003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93961004','93961004','http://snomed.info/sct','Primary malignant neoplasm of pharynx (disorder)','93961004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93962006','93962006','http://snomed.info/sct','Primary malignant neoplasm of pineal gland (disorder)','93962006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93963001','93963001','http://snomed.info/sct','Primary malignant neoplasm of pisiform bone of hand (disorder)','93963001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93964007','93964007','http://snomed.info/sct','Primary malignant neoplasm of pituitary gland (disorder)','93964007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93966009','93966009','http://snomed.info/sct','Primary malignant neoplasm of pleura (disorder)','93966009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93967000','93967000','http://snomed.info/sct','Primary malignant neoplasm of postcricoid region (disorder)','93967000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93968005','93968005','http://snomed.info/sct','Primary malignant neoplasm of posterior hypopharyngeal wall (disorder)','93968005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93969002','93969002','http://snomed.info/sct','Primary malignant neoplasm of posterior mediastinum (disorder)','93969002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93970001','93970001','http://snomed.info/sct','Primary malignant neoplasm of posterior wall of nasopharynx (disorder)','93970001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93971002','93971002','http://snomed.info/sct','Primary malignant neoplasm of posterior wall of oropharynx (disorder)','93971002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93972009','93972009','http://snomed.info/sct','Primary malignant neoplasm of posterior wall of urinary bladder (disorder)','93972009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93973004','93973004','http://snomed.info/sct','Primary malignant neoplasm of presacral region (disorder)','93973004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93974005','93974005','http://snomed.info/sct','Primary malignant neoplasm of prostate (disorder)','93974005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93975006','93975006','http://snomed.info/sct','Primary malignant neoplasm of pubis (disorder)','93975006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93976007','93976007','http://snomed.info/sct','Primary malignant neoplasm of pyloric antrum (disorder)','93976007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93977003','93977003','http://snomed.info/sct','Primary malignant neoplasm of pylorus (disorder)','93977003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93978008','93978008','http://snomed.info/sct','Primary malignant neoplasm of pyriform sinus (disorder)','93978008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93979000','93979000','http://snomed.info/sct','Primary malignant neoplasm of radius (disorder)','93979000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93980002','93980002','http://snomed.info/sct','Primary malignant neoplasm of rectosigmoid junction (disorder)','93980002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93981003','93981003','http://snomed.info/sct','Primary malignant neoplasm of rectouterine pouch (disorder)','93981003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93982005','93982005','http://snomed.info/sct','Primary malignant neoplasm of rectovaginal septum (disorder)','93982005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93983000','93983000','http://snomed.info/sct','Primary malignant neoplasm of rectovesical septum (disorder)','93983000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93984006','93984006','http://snomed.info/sct','Primary malignant neoplasm of rectum (disorder)','93984006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93985007','93985007','http://snomed.info/sct','Primary malignant neoplasm of renal pelvis (disorder)','93985007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93986008','93986008','http://snomed.info/sct','Primary malignant neoplasm of respiratory tract (disorder)','93986008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93987004','93987004','http://snomed.info/sct','Primary malignant neoplasm of retina of eye (disorder)','93987004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93989001','93989001','http://snomed.info/sct','Primary malignant neoplasm of retromolar area (disorder)','93989001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93990005','93990005','http://snomed.info/sct','Primary malignant neoplasm of rib (disorder)','93990005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93991009','93991009','http://snomed.info/sct','Primary malignant neoplasm of right lower lobe of lung (disorder)','93991009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93992002','93992002','http://snomed.info/sct','Primary malignant neoplasm of middle lobe of right lung (disorder)','93992002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93993007','93993007','http://snomed.info/sct','Primary malignant neoplasm of upper lobe of right lung (disorder)','93993007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93994001','93994001','http://snomed.info/sct','Primary malignant neoplasm of round ligament of uterus (disorder)','93994001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93995000','93995000','http://snomed.info/sct','Primary malignant neoplasm of sacrococcygeal region (disorder)','93995000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93996004','93996004','http://snomed.info/sct','Primary malignant neoplasm of sacrum (disorder)','93996004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93997008','93997008','http://snomed.info/sct','Primary malignant neoplasm of scapula (disorder)','93997008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_93998003','93998003','http://snomed.info/sct','Primary malignant neoplasm of sclera of eye (disorder)','93998003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94000008','94000008','http://snomed.info/sct','Primary malignant neoplasm of sebaceous gland (disorder)','94000008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94001007','94001007','http://snomed.info/sct','Primary malignant neoplasm of second cuneiform bone of foot (disorder)','94001007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94002000','94002000','http://snomed.info/sct','Primary malignant neoplasm of septum of nose (disorder)','94002000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94003005','94003005','http://snomed.info/sct','Primary malignant neoplasm of short bone of lower limb (disorder)','94003005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94004004','94004004','http://snomed.info/sct','Primary malignant neoplasm of short bone of upper limb (disorder)','94004004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94005003','94005003','http://snomed.info/sct','Primary malignant neoplasm of shoulder (disorder)','94005003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94006002','94006002','http://snomed.info/sct','Primary malignant neoplasm of sigmoid colon (disorder)','94006002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94007006','94007006','http://snomed.info/sct','Primary malignant neoplasm of skin of abdomen (disorder)','94007006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94008001','94008001','http://snomed.info/sct','Primary malignant neoplasm of skin of ankle (disorder)','94008001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94010004','94010004','http://snomed.info/sct','Primary malignant neoplasm of skin of axilla (disorder)','94010004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94011000','94011000','http://snomed.info/sct','Primary malignant neoplasm of skin of back (disorder)','94011000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94012007','94012007','http://snomed.info/sct','Primary malignant neoplasm of skin of breast (disorder)','94012007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94013002','94013002','http://snomed.info/sct','Primary malignant neoplasm of skin of buttock (disorder)','94013002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94014008','94014008','http://snomed.info/sct','Primary malignant neoplasm of skin of cheek (disorder)','94014008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94015009','94015009','http://snomed.info/sct','Primary malignant neoplasm of skin of chest (disorder)','94015009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94016005','94016005','http://snomed.info/sct','Primary malignant neoplasm of skin of chin (disorder)','94016005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94017001','94017001','http://snomed.info/sct','Primary malignant neoplasm of skin of ear (disorder)','94017001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94018006','94018006','http://snomed.info/sct','Primary malignant neoplasm of skin of elbow (disorder)','94018006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94019003','94019003','http://snomed.info/sct','Primary malignant neoplasm of skin of external auditory canal (disorder)','94019003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94020009','94020009','http://snomed.info/sct','Primary malignant neoplasm of skin of eyebrow (disorder)','94020009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94021008','94021008','http://snomed.info/sct','Primary malignant neoplasm of skin of eyelid (disorder)','94021008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94022001','94022001','http://snomed.info/sct','Primary malignant neoplasm of skin of face (disorder)','94022001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94023006','94023006','http://snomed.info/sct','Primary malignant neoplasm of skin of finger (disorder)','94023006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94024000','94024000','http://snomed.info/sct','Primary malignant neoplasm of skin of foot (disorder)','94024000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94025004','94025004','http://snomed.info/sct','Primary malignant neoplasm of skin of forearm (disorder)','94025004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94026003','94026003','http://snomed.info/sct','Primary malignant neoplasm of skin of forehead (disorder)','94026003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94027007','94027007','http://snomed.info/sct','Primary malignant neoplasm of skin of groin (disorder)','94027007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94028002','94028002','http://snomed.info/sct','Primary malignant neoplasm of skin of hand (disorder)','94028002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94029005','94029005','http://snomed.info/sct','Primary malignant neoplasm of skin of hip (disorder)','94029005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94030000','94030000','http://snomed.info/sct','Primary malignant neoplasm of skin of knee (disorder)','94030000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94032008','94032008','http://snomed.info/sct','Primary malignant neoplasm of skin of lip (disorder)','94032008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94033003','94033003','http://snomed.info/sct','Primary malignant neoplasm of skin of lower limb (disorder)','94033003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94034009','94034009','http://snomed.info/sct','Primary malignant neoplasm of skin of neck (disorder)','94034009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94035005','94035005','http://snomed.info/sct','Primary malignant neoplasm of skin of nose (disorder)','94035005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94036006','94036006','http://snomed.info/sct','Primary malignant neoplasm of skin of perineum (disorder)','94036006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94037002','94037002','http://snomed.info/sct','Primary malignant neoplasm of skin of popliteal area (disorder)','94037002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94038007','94038007','http://snomed.info/sct','Primary malignant neoplasm of skin of scalp (disorder)','94038007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94039004','94039004','http://snomed.info/sct','Primary malignant neoplasm of skin of shoulder (disorder)','94039004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94040002','94040002','http://snomed.info/sct','Primary malignant neoplasm of skin of temporal region (disorder)','94040002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94041003','94041003','http://snomed.info/sct','Primary malignant neoplasm of skin of thigh (disorder)','94041003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94042005','94042005','http://snomed.info/sct','Primary malignant neoplasm of skin of toe (disorder)','94042005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94043000','94043000','http://snomed.info/sct','Primary malignant neoplasm of skin of trunk (disorder)','94043000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94044006','94044006','http://snomed.info/sct','Primary malignant neoplasm of skin of umbilicus (disorder)','94044006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94045007','94045007','http://snomed.info/sct','Primary malignant neoplasm of skin of upper limb (disorder)','94045007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94046008','94046008','http://snomed.info/sct','Primary malignant neoplasm of skin of wrist (disorder)','94046008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94047004','94047004','http://snomed.info/sct','Primary malignant neoplasm of skin (disorder)','94047004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94048009','94048009','http://snomed.info/sct','Primary malignant neoplasm of small intestine (disorder)','94048009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94049001','94049001','http://snomed.info/sct','Primary malignant neoplasm of soft palate (disorder)','94049001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94050001','94050001','http://snomed.info/sct','Primary malignant neoplasm of soft tissues of abdomen (disorder)','94050001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94051002','94051002','http://snomed.info/sct','Primary malignant neoplasm of soft tissues of axilla (disorder)','94051002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94052009','94052009','http://snomed.info/sct','Primary malignant neoplasm of soft tissues of buttock (disorder)','94052009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94053004','94053004','http://snomed.info/sct','Primary malignant neoplasm of soft tissues of face (disorder)','94053004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94054005','94054005','http://snomed.info/sct','Primary malignant neoplasm of soft tissues of head (disorder)','94054005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94055006','94055006','http://snomed.info/sct','Primary malignant neoplasm of soft tissues of hip (disorder)','94055006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94056007','94056007','http://snomed.info/sct','Primary malignant neoplasm of soft tissues of inguinal region (disorder)','94056007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94057003','94057003','http://snomed.info/sct','Primary malignant neoplasm of soft tissues of lower limb (disorder)','94057003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94058008','94058008','http://snomed.info/sct','Primary malignant neoplasm of soft tissues of neck (disorder)','94058008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94059000','94059000','http://snomed.info/sct','Primary malignant neoplasm of soft tissues of pelvis (disorder)','94059000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94060005','94060005','http://snomed.info/sct','Primary malignant neoplasm of soft tissues of perineum (disorder)','94060005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94061009','94061009','http://snomed.info/sct','Primary malignant neoplasm of soft tissues of shoulder (disorder)','94061009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94062002','94062002','http://snomed.info/sct','Primary malignant neoplasm of soft tissues of thorax (disorder)','94062002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94063007','94063007','http://snomed.info/sct','Primary malignant neoplasm of soft tissues of trunk (disorder)','94063007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94066004','94066004','http://snomed.info/sct','Primary malignant neoplasm of sphenoid bone (disorder)','94066004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94067008','94067008','http://snomed.info/sct','Primary malignant neoplasm of sphenoidal sinus (disorder)','94067008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94068003','94068003','http://snomed.info/sct','Primary malignant neoplasm of spinal cord (disorder)','94068003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94069006','94069006','http://snomed.info/sct','Primary malignant neoplasm of spinal meninges (disorder)','94069006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94071006','94071006','http://snomed.info/sct','Primary malignant neoplasm of spleen (disorder)','94071006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94072004','94072004','http://snomed.info/sct','Primary malignant neoplasm of splenic flexure of colon (disorder)','94072004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94073009','94073009','http://snomed.info/sct','Primary malignant neoplasm of sternum (disorder)','94073009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94075002','94075002','http://snomed.info/sct','Primary malignant neoplasm of subglottis (disorder)','94075002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94076001','94076001','http://snomed.info/sct','Primary malignant neoplasm of sublingual gland (disorder)','94076001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94077005','94077005','http://snomed.info/sct','Primary malignant neoplasm of submaxillary gland (disorder)','94077005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94078000','94078000','http://snomed.info/sct','Primary malignant neoplasm of superior wall of nasopharynx (disorder)','94078000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94079008','94079008','http://snomed.info/sct','Primary malignant neoplasm of supraclavicular region (disorder)','94079008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94080006','94080006','http://snomed.info/sct','Primary malignant neoplasm of supraglottis (disorder)','94080006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94081005','94081005','http://snomed.info/sct','Primary malignant neoplasm of sweat gland (disorder)','94081005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94082003','94082003','http://snomed.info/sct','Primary malignant neoplasm of tail of pancreas (disorder)','94082003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94083008','94083008','http://snomed.info/sct','Primary malignant neoplasm of talus (disorder)','94083008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94084002','94084002','http://snomed.info/sct','Primary malignant neoplasm of tarsal bone (disorder)','94084002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94085001','94085001','http://snomed.info/sct','Primary malignant neoplasm of temporal bone (disorder)','94085001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94086000','94086000','http://snomed.info/sct','Primary malignant neoplasm of temporal lobe (disorder)','94086000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94087009','94087009','http://snomed.info/sct','Primary malignant neoplasm of testis (disorder)','94087009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94089007','94089007','http://snomed.info/sct','Primary malignant neoplasm of the mesocolon (disorder)','94089007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94090003','94090003','http://snomed.info/sct','Primary malignant neoplasm of omentum (disorder)','94090003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94092006','94092006','http://snomed.info/sct','Primary malignant neoplasm of retroperitoneum (disorder)','94092006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94093001','94093001','http://snomed.info/sct','Primary malignant neoplasm of thigh (disorder)','94093001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94094007','94094007','http://snomed.info/sct','Primary malignant neoplasm of third cuneiform bone of foot (disorder)','94094007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94096009','94096009','http://snomed.info/sct','Primary malignant neoplasm of thymus (disorder)','94096009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94097000','94097000','http://snomed.info/sct','Primary malignant neoplasm of thyroglossal duct (disorder)','94097000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94098005','94098005','http://snomed.info/sct','Primary malignant neoplasm of thyroid gland (disorder)','94098005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94099002','94099002','http://snomed.info/sct','Primary malignant neoplasm of tibia (disorder)','94099002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94101009','94101009','http://snomed.info/sct','Primary malignant neoplasm of tongue (disorder)','94101009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94102002','94102002','http://snomed.info/sct','Primary malignant neoplasm of tonsillar fossa (disorder)','94102002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94103007','94103007','http://snomed.info/sct','Primary malignant neoplasm of tonsillar pillar (disorder)','94103007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94104001','94104001','http://snomed.info/sct','Primary malignant neoplasm of trachea (disorder)','94104001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94105000','94105000','http://snomed.info/sct','Primary malignant neoplasm of transverse colon (disorder)','94105000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94107008','94107008','http://snomed.info/sct','Primary malignant neoplasm of trapezoid bone (disorder)','94107008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94108003','94108003','http://snomed.info/sct','Primary malignant neoplasm of trigeminal nerve (disorder)','94108003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94109006','94109006','http://snomed.info/sct','Primary malignant neoplasm of trigone of urinary bladder (disorder)','94109006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94110001','94110001','http://snomed.info/sct','Primary malignant neoplasm of trochlear nerve (disorder)','94110001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94111002','94111002','http://snomed.info/sct','Primary malignant neoplasm of trunk (disorder)','94111002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94112009','94112009','http://snomed.info/sct','Primary malignant neoplasm of ulna (disorder)','94112009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94113004','94113004','http://snomed.info/sct','Primary malignant neoplasm of undescended testis (disorder)','94113004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94115006','94115006','http://snomed.info/sct','Primary malignant neoplasm of upper inner quadrant of female breast (disorder)','94115006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94116007','94116007','http://snomed.info/sct','Primary malignant neoplasm of upper limb (disorder)','94116007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94117003','94117003','http://snomed.info/sct','Primary malignant neoplasm of upper outer quadrant of female breast (disorder)','94117003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94118008','94118008','http://snomed.info/sct','Primary malignant neoplasm of upper respiratory tract (disorder)','94118008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94120006','94120006','http://snomed.info/sct','Primary malignant neoplasm of urachus (disorder)','94120006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94121005','94121005','http://snomed.info/sct','Primary malignant neoplasm of ureter (disorder)','94121005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94122003','94122003','http://snomed.info/sct','Primary malignant neoplasm of ureteric orifice of urinary bladder (disorder)','94122003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94123008','94123008','http://snomed.info/sct','Primary malignant neoplasm of urethra (disorder)','94123008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94124002','94124002','http://snomed.info/sct','Primary malignant neoplasm of urinary bladder neck (disorder)','94124002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94125001','94125001','http://snomed.info/sct','Primary malignant neoplasm of urinary system (disorder)','94125001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94126000','94126000','http://snomed.info/sct','Primary malignant neoplasm of uterine adnexa (disorder)','94126000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94128004','94128004','http://snomed.info/sct','Primary malignant neoplasm of uveal tract of eye (disorder)','94128004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94129007','94129007','http://snomed.info/sct','Primary malignant neoplasm of uvula (disorder)','94129007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94131003','94131003','http://snomed.info/sct','Primary malignant neoplasm of vagus nerve (disorder)','94131003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94132005','94132005','http://snomed.info/sct','Primary malignant neoplasm of vallecula (disorder)','94132005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94133000','94133000','http://snomed.info/sct','Primary malignant neoplasm of vas deferens (disorder)','94133000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94134006','94134006','http://snomed.info/sct','Primary malignant neoplasm of ventral surface of tongue (disorder)','94134006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94135007','94135007','http://snomed.info/sct','Primary malignant neoplasm of vermilion border of lip (disorder)','94135007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94138009','94138009','http://snomed.info/sct','Primary malignant neoplasm of vestibule of mouth (disorder)','94138009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94139001','94139001','http://snomed.info/sct','Primary malignant neoplasm of vestibule of nose (disorder)','94139001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94140004','94140004','http://snomed.info/sct','Primary malignant neoplasm of visceral pleura (disorder)','94140004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94142007','94142007','http://snomed.info/sct','Primary malignant neoplasm of vomer (disorder)','94142007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94143002','94143002','http://snomed.info/sct','Primary malignant neoplasm of vulva (disorder)','94143002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94144008','94144008','http://snomed.info/sct','Primary malignant neoplasm of Waldeyer''s ring (disorder)','94144008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94145009','94145009','http://snomed.info/sct','Primary malignant neoplasm of zygomatic bone (disorder)','94145009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94152006','94152006','http://snomed.info/sct','Metastatic malignant neoplasm to abdominal esophagus (disorder)','94152006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94153001','94153001','http://snomed.info/sct','Metastatic malignant neoplasm to abducens nerve (disorder)','94153001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94154007','94154007','http://snomed.info/sct','Metastatic malignant neoplasm to accessory nerve (disorder)','94154007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94155008','94155008','http://snomed.info/sct','Metastatic malignant neoplasm to accessory sinus (disorder)','94155008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94156009','94156009','http://snomed.info/sct','Metastatic malignant neoplasm of vestibulocochlear nerve (disorder)','94156009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94157000','94157000','http://snomed.info/sct','Metastatic malignant neoplasm to acromion (disorder)','94157000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94158005','94158005','http://snomed.info/sct','Metastatic malignant neoplasm to adenoid (disorder)','94158005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94159002','94159002','http://snomed.info/sct','Metastatic malignant neoplasm to adnexa of skin (disorder)','94159002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94160007','94160007','http://snomed.info/sct','Metastatic malignant neoplasm to adrenal cortex (disorder)','94160007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94161006','94161006','http://snomed.info/sct','Metastatic malignant neoplasm to adrenal gland (disorder)','94161006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94162004','94162004','http://snomed.info/sct','Metastatic malignant neoplasm to adrenal medulla (disorder)','94162004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94163009','94163009','http://snomed.info/sct','Metastatic malignant neoplasm to alveolar ridge mucosa (disorder)','94163009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94164003','94164003','http://snomed.info/sct','Metastatic malignant neoplasm to ampulla of Vater (disorder)','94164003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94165002','94165002','http://snomed.info/sct','Metastatic malignant neoplasm to anal canal (disorder)','94165002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94166001','94166001','http://snomed.info/sct','Metastatic malignant neoplasm to anterior aspect of epiglottis (disorder)','94166001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94167005','94167005','http://snomed.info/sct','Metastatic malignant neoplasm to anterior mediastinum (disorder)','94167005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94168000','94168000','http://snomed.info/sct','Metastatic malignant neoplasm to anterior portion of floor of mouth (disorder)','94168000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94169008','94169008','http://snomed.info/sct','Metastatic malignant neoplasm to anterior two-thirds of tongue (disorder)','94169008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94170009','94170009','http://snomed.info/sct','Metastatic malignant neoplasm to anterior wall of nasopharynx (disorder)','94170009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94171008','94171008','http://snomed.info/sct','Metastatic malignant neoplasm to anterior wall of urinary bladder (disorder)','94171008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94172001','94172001','http://snomed.info/sct','Metastatic malignant neoplasm to anus (disorder)','94172001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94173006','94173006','http://snomed.info/sct','Metastatic malignant neoplasm to aortic body (disorder)','94173006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94175004','94175004','http://snomed.info/sct','Metastatic malignant neoplasm to appendix (disorder)','94175004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94176003','94176003','http://snomed.info/sct','Metastatic malignant neoplasm to areola of female breast (disorder)','94176003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94177007','94177007','http://snomed.info/sct','Metastatic malignant neoplasm to areola of male breast (disorder)','94177007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94179005','94179005','http://snomed.info/sct','Metastatic malignant neoplasm to ascending colon (disorder)','94179005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94180008','94180008','http://snomed.info/sct','Metastatic malignant neoplasm to axilla (disorder)','94180008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94181007','94181007','http://snomed.info/sct','Metastatic malignant neoplasm to axillary lymph nodes (disorder)','94181007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94182000','94182000','http://snomed.info/sct','Metastatic malignant neoplasm to axillary tail of female breast (disorder)','94182000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94183005','94183005','http://snomed.info/sct','Metastatic malignant neoplasm to back (disorder)','94183005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94184004','94184004','http://snomed.info/sct','Metastatic malignant neoplasm to base of tongue (disorder)','94184004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94185003','94185003','http://snomed.info/sct','Metastatic malignant neoplasm to biliary tract (disorder)','94185003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94186002','94186002','http://snomed.info/sct','Metastatic malignant neoplasm to urinary bladder (disorder)','94186002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94187006','94187006','http://snomed.info/sct','Metastatic malignant neoplasm to blood vessel of abdomen (disorder)','94187006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94189009','94189009','http://snomed.info/sct','Metastatic malignant neoplasm to blood vessel of axilla (disorder)','94189009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94190000','94190000','http://snomed.info/sct','Metastatic malignant neoplasm to blood vessel of buttock (disorder)','94190000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94191001','94191001','http://snomed.info/sct','Metastatic malignant neoplasm to blood vessel of face (disorder)','94191001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94192008','94192008','http://snomed.info/sct','Metastatic malignant neoplasm to blood vessel of finger (disorder)','94192008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94193003','94193003','http://snomed.info/sct','Metastatic malignant neoplasm to blood vessel of foot (disorder)','94193003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94194009','94194009','http://snomed.info/sct','Metastatic malignant neoplasm to blood vessel of forearm (disorder)','94194009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94195005','94195005','http://snomed.info/sct','Metastatic malignant neoplasm to blood vessel of hand (disorder)','94195005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94196006','94196006','http://snomed.info/sct','Metastatic malignant neoplasm to blood vessel of head (disorder)','94196006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94197002','94197002','http://snomed.info/sct','Metastatic malignant neoplasm to blood vessel of hip (disorder)','94197002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94198007','94198007','http://snomed.info/sct','Metastatic malignant neoplasm to blood vessel of inguinal region (disorder)','94198007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94200001','94200001','http://snomed.info/sct','Metastatic malignant neoplasm to blood vessel of lower limb (disorder)','94200001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94201002','94201002','http://snomed.info/sct','Metastatic malignant neoplasm to blood vessel of neck (disorder)','94201002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94202009','94202009','http://snomed.info/sct','Metastatic malignant neoplasm to blood vessel of pelvis (disorder)','94202009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94203004','94203004','http://snomed.info/sct','Metastatic malignant neoplasm to blood vessel of perineum (disorder)','94203004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94204005','94204005','http://snomed.info/sct','Metastatic malignant neoplasm to blood vessel of popliteal space (disorder)','94204005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94205006','94205006','http://snomed.info/sct','Metastatic malignant neoplasm to blood vessel of shoulder (disorder)','94205006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94206007','94206007','http://snomed.info/sct','Metastatic malignant neoplasm to blood vessel of thigh (disorder)','94206007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94207003','94207003','http://snomed.info/sct','Metastatic malignant neoplasm to blood vessel of thorax (disorder)','94207003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94208008','94208008','http://snomed.info/sct','Metastatic malignant neoplasm to blood vessel of toe (disorder)','94208008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94209000','94209000','http://snomed.info/sct','Metastatic malignant neoplasm to blood vessel of trunk (disorder)','94209000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94210005','94210005','http://snomed.info/sct','Metastatic malignant neoplasm to blood vessel of upper limb (disorder)','94210005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94211009','94211009','http://snomed.info/sct','Metastatic malignant neoplasm to blood vessel (disorder)','94211009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94212002','94212002','http://snomed.info/sct','Metastatic malignant neoplasm to body of pancreas (disorder)','94212002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94213007','94213007','http://snomed.info/sct','Metastatic malignant neoplasm to body of penis (disorder)','94213007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94214001','94214001','http://snomed.info/sct','Metastatic malignant neoplasm to body of stomach (disorder)','94214001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94215000','94215000','http://snomed.info/sct','Metastatic malignant neoplasm to body of uterus (disorder)','94215000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94217008','94217008','http://snomed.info/sct','Metastatic malignant neoplasm to bone marrow (disorder)','94217008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94218003','94218003','http://snomed.info/sct','Metastatic malignant neoplasm to bone of face (disorder)','94218003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94219006','94219006','http://snomed.info/sct','Metastatic malignant neoplasm to bone of lower limb (disorder)','94219006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94220000','94220000','http://snomed.info/sct','Metastatic malignant neoplasm to bone of skull (disorder)','94220000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94221001','94221001','http://snomed.info/sct','Metastatic malignant neoplasm to bone of upper limb (disorder)','94221001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94222008','94222008','http://snomed.info/sct','Metastatic malignant neoplasm to bone (disorder)','94222008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94224009','94224009','http://snomed.info/sct','Metastatic malignant neoplasm to brain stem (disorder)','94224009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94225005','94225005','http://snomed.info/sct','Metastatic malignant neoplasm to brain (disorder)','94225005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94226006','94226006','http://snomed.info/sct','Metastatic malignant neoplasm to broad ligament (disorder)','94226006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94227002','94227002','http://snomed.info/sct','Metastatic malignant neoplasm to bronchopulmonary lymph nodes (disorder)','94227002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94228007','94228007','http://snomed.info/sct','Metastatic malignant neoplasm to bronchus of left lower lobe (disorder)','94228007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94229004','94229004','http://snomed.info/sct','Metastatic malignant neoplasm to bronchus of left upper lobe (disorder)','94229004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94230009','94230009','http://snomed.info/sct','Metastatic malignant neoplasm to bronchus of right lower lobe (disorder)','94230009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94231008','94231008','http://snomed.info/sct','Metastatic malignant neoplasm to bronchus of middle lobe of right lung (disorder)','94231008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94232001','94232001','http://snomed.info/sct','Metastatic malignant neoplasm to bronchus of right upper lobe (disorder)','94232001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94233006','94233006','http://snomed.info/sct','Metastatic malignant neoplasm to bronchus (disorder)','94233006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94234000','94234000','http://snomed.info/sct','Metastatic malignant neoplasm to buccal mucosa (disorder)','94234000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94235004','94235004','http://snomed.info/sct','Metastatic malignant neoplasm to cecum (disorder)','94235004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94236003','94236003','http://snomed.info/sct','Metastatic malignant neoplasm to calcaneus (disorder)','94236003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94237007','94237007','http://snomed.info/sct','Metastatic malignant neoplasm to cardia of stomach (disorder)','94237007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94238002','94238002','http://snomed.info/sct','Metastatic malignant neoplasm to carina (disorder)','94238002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94239005','94239005','http://snomed.info/sct','Metastatic malignant neoplasm to carotid body (disorder)','94239005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94240007','94240007','http://snomed.info/sct','Metastatic malignant neoplasm to carpal bone (disorder)','94240007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94241006','94241006','http://snomed.info/sct','Metastatic malignant neoplasm to cartilage of nose (disorder)','94241006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94242004','94242004','http://snomed.info/sct','Metastatic malignant neoplasm to cauda equina (disorder)','94242004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94243009','94243009','http://snomed.info/sct','Metastatic malignant neoplasm to central nervous system (disorder)','94243009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94244003','94244003','http://snomed.info/sct','Metastatic malignant neoplasm to central portion of female breast (disorder)','94244003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94245002','94245002','http://snomed.info/sct','Metastatic malignant neoplasm to cerebellum (disorder)','94245002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94246001','94246001','http://snomed.info/sct','Metastatic malignant neoplasm to cerebral meninges (disorder)','94246001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94247005','94247005','http://snomed.info/sct','Metastatic malignant neoplasm to cerebral ventricle (disorder)','94247005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94248000','94248000','http://snomed.info/sct','Metastatic malignant neoplasm to cerebrum (disorder)','94248000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94249008','94249008','http://snomed.info/sct','Metastatic malignant neoplasm to cervical esophagus (disorder)','94249008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94250008','94250008','http://snomed.info/sct','Metastatic malignant neoplasm to cervical vertebral column (disorder)','94250008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94252000','94252000','http://snomed.info/sct','Metastatic malignant neoplasm to cheek (disorder)','94252000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94253005','94253005','http://snomed.info/sct','Metastatic malignant neoplasm to chest wall (disorder)','94253005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94254004','94254004','http://snomed.info/sct','Metastatic malignant neoplasm to choroid (disorder)','94254004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94255003','94255003','http://snomed.info/sct','Metastatic malignant neoplasm to ciliary body (disorder)','94255003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94256002','94256002','http://snomed.info/sct','Metastatic malignant neoplasm to clavicle (disorder)','94256002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94257006','94257006','http://snomed.info/sct','Metastatic malignant neoplasm to clitoris (disorder)','94257006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94258001','94258001','http://snomed.info/sct','Metastatic malignant neoplasm to coccygeal body (disorder)','94258001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94259009','94259009','http://snomed.info/sct','Metastatic malignant neoplasm to coccyx (disorder)','94259009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94260004','94260004','http://snomed.info/sct','Metastatic malignant neoplasm to colon (disorder)','94260004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94261000','94261000','http://snomed.info/sct','Metastatic malignant neoplasm to commissure of lip (disorder)','94261000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94262007','94262007','http://snomed.info/sct','Metastatic malignant neoplasm to common bile duct (disorder)','94262007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94263002','94263002','http://snomed.info/sct','Metastatic malignant neoplasm to conjunctiva (disorder)','94263002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94264008','94264008','http://snomed.info/sct','Metastatic malignant neoplasm to soft tissues (disorder)','94264008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94265009','94265009','http://snomed.info/sct','Metastatic malignant neoplasm to cornea (disorder)','94265009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94266005','94266005','http://snomed.info/sct','Metastatic malignant neoplasm to cranial nerve (disorder)','94266005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94267001','94267001','http://snomed.info/sct','Metastatic malignant neoplasm to craniopharyngeal duct (disorder)','94267001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94268006','94268006','http://snomed.info/sct','Metastatic malignant neoplasm to cubital lymph nodes (disorder)','94268006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94269003','94269003','http://snomed.info/sct','Metastatic malignant neoplasm to cuboid (disorder)','94269003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94270002','94270002','http://snomed.info/sct','Metastatic malignant neoplasm to cystic duct (disorder)','94270002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94271003','94271003','http://snomed.info/sct','Metastatic malignant neoplasm to descending colon (disorder)','94271003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94272005','94272005','http://snomed.info/sct','Metastatic malignant neoplasm to diaphragm (disorder)','94272005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94273000','94273000','http://snomed.info/sct','Metastatic malignant neoplasm to dorsal surface of tongue (disorder)','94273000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94274006','94274006','http://snomed.info/sct','Metastatic malignant neoplasm to thoracic vertebral column (disorder)','94274006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94275007','94275007','http://snomed.info/sct','Metastatic malignant neoplasm to duodenum (disorder)','94275007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94276008','94276008','http://snomed.info/sct','Metastatic malignant neoplasm to ectopic female breast tissue (disorder)','94276008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94277004','94277004','http://snomed.info/sct','Metastatic malignant neoplasm to ectopic male breast tissue (disorder)','94277004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94278009','94278009','http://snomed.info/sct','Metastatic malignant neoplasm to endocardium (disorder)','94278009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94279001','94279001','http://snomed.info/sct','Metastatic malignant neoplasm to endocervix (disorder)','94279001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94280003','94280003','http://snomed.info/sct','Metastatic malignant neoplasm to endocrine gland (disorder)','94280003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94281004','94281004','http://snomed.info/sct','Metastatic malignant neoplasm to endometrium (disorder)','94281004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94282006','94282006','http://snomed.info/sct','Metastatic malignant neoplasm to epicardium (disorder)','94282006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94283001','94283001','http://snomed.info/sct','Metastatic malignant neoplasm to epididymis (disorder)','94283001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94284007','94284007','http://snomed.info/sct','Metastatic malignant neoplasm to epiglottis (disorder)','94284007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94285008','94285008','http://snomed.info/sct','Metastatic malignant neoplasm to epitrochlear lymph nodes (disorder)','94285008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94286009','94286009','http://snomed.info/sct','Metastatic malignant neoplasm to esophagus (disorder)','94286009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94287000','94287000','http://snomed.info/sct','Metastatic malignant neoplasm to ethmoid bone (disorder)','94287000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94288005','94288005','http://snomed.info/sct','Metastatic malignant neoplasm to ethmoidal sinus (disorder)','94288005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94289002','94289002','http://snomed.info/sct','Metastatic malignant neoplasm to eustachian tube (disorder)','94289002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94290006','94290006','http://snomed.info/sct','Metastatic malignant neoplasm to exocervix (disorder)','94290006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94291000119103','94291000119103','http://snomed.info/sct','Mucinous adenocarcinoma of gastrointestinal tract (disorder)','94291000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94291005','94291005','http://snomed.info/sct','Metastatic malignant neoplasm to extrahepatic bile ducts (disorder)','94291005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94292003','94292003','http://snomed.info/sct','Metastatic malignant neoplasm to eye (disorder)','94292003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94293008','94293008','http://snomed.info/sct','Metastatic malignant neoplasm to face (disorder)','94293008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94294002','94294002','http://snomed.info/sct','Metastatic malignant neoplasm to facial nerve (disorder)','94294002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94295001','94295001','http://snomed.info/sct','Metastatic malignant neoplasm to fallopian tube (disorder)','94295001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94296000','94296000','http://snomed.info/sct','Metastatic malignant neoplasm to false vocal cord (disorder)','94296000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94297009','94297009','http://snomed.info/sct','Metastatic malignant neoplasm to female breast (disorder)','94297009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94298004','94298004','http://snomed.info/sct','Metastatic malignant neoplasm to female genital organ (disorder)','94298004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94299007','94299007','http://snomed.info/sct','Metastatic malignant neoplasm to femoral lymph nodes (disorder)','94299007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94300004','94300004','http://snomed.info/sct','Metastatic malignant neoplasm to femur (disorder)','94300004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94301000','94301000','http://snomed.info/sct','Metastatic malignant neoplasm to fibula (disorder)','94301000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94302007','94302007','http://snomed.info/sct','Metastatic malignant neoplasm to first cuneiform bone of foot (disorder)','94302007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94303002','94303002','http://snomed.info/sct','Metastatic malignant neoplasm to flank (disorder)','94303002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94304008','94304008','http://snomed.info/sct','Metastatic malignant neoplasm to floor of mouth (disorder)','94304008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94305009','94305009','http://snomed.info/sct','Metastatic malignant neoplasm to foot (disorder)','94305009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94306005','94306005','http://snomed.info/sct','Metastatic malignant neoplasm to forearm (disorder)','94306005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94307001','94307001','http://snomed.info/sct','Metastatic malignant neoplasm to prepuce (disorder)','94307001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94308006','94308006','http://snomed.info/sct','Metastatic malignant neoplasm to frontal bone (disorder)','94308006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94309003','94309003','http://snomed.info/sct','Metastatic malignant neoplasm to frontal lobe (disorder)','94309003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94310008','94310008','http://snomed.info/sct','Metastatic malignant neoplasm to frontal sinus (disorder)','94310008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94311007','94311007','http://snomed.info/sct','Metastatic malignant neoplasm to fundus of stomach (disorder)','94311007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94312000','94312000','http://snomed.info/sct','Metastatic malignant neoplasm to gallbladder (disorder)','94312000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94313005','94313005','http://snomed.info/sct','Metastatic malignant neoplasm to gastrointestinal tract (disorder)','94313005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94314004','94314004','http://snomed.info/sct','Metastatic malignant neoplasm to gingival mucosa (disorder)','94314004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94315003','94315003','http://snomed.info/sct','Metastatic malignant neoplasm to glans penis (disorder)','94315003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94316002','94316002','http://snomed.info/sct','Metastatic malignant neoplasm to glomus jugulare (disorder)','94316002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94317006','94317006','http://snomed.info/sct','Metastatic malignant neoplasm to glossopharyngeal nerve (disorder)','94317006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94318001','94318001','http://snomed.info/sct','Metastatic malignant neoplasm to glottis (disorder)','94318001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94319009','94319009','http://snomed.info/sct','Metastatic malignant neoplasm to great vessels (disorder)','94319009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94320003','94320003','http://snomed.info/sct','Metastatic malignant neoplasm to greater curvature of stomach (disorder)','94320003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94321004','94321004','http://snomed.info/sct','Metastatic malignant neoplasm to gum (disorder)','94321004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94322006','94322006','http://snomed.info/sct','Metastatic malignant neoplasm to hamate bone (disorder)','94322006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94323001','94323001','http://snomed.info/sct','Metastatic malignant neoplasm to hand (disorder)','94323001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94324007','94324007','http://snomed.info/sct','Metastatic malignant neoplasm to hard palate (disorder)','94324007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94325008','94325008','http://snomed.info/sct','Metastatic malignant neoplasm to head of pancreas (disorder)','94325008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94326009','94326009','http://snomed.info/sct','Metastatic malignant neoplasm to head (disorder)','94326009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94327000','94327000','http://snomed.info/sct','Metastatic malignant neoplasm to heart (disorder)','94327000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94328005','94328005','http://snomed.info/sct','Metastatic malignant neoplasm to hepatic flexure of colon (disorder)','94328005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94329002','94329002','http://snomed.info/sct','Metastatic malignant neoplasm to hilus of lung (disorder)','94329002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94330007','94330007','http://snomed.info/sct','Metastatic malignant neoplasm to hypogastric lymph nodes (disorder)','94330007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94331006','94331006','http://snomed.info/sct','Metastatic malignant neoplasm to hypoglossal nerve (disorder)','94331006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94332004','94332004','http://snomed.info/sct','Metastatic malignant neoplasm to hypopharyngeal aspect of aryepiglottic fold (disorder)','94332004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94333009','94333009','http://snomed.info/sct','Metastatic malignant neoplasm to hypopharyngeal aspect of interarytenoid fold (disorder)','94333009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94334003','94334003','http://snomed.info/sct','Metastatic malignant neoplasm to hypopharynx (disorder)','94334003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94335002','94335002','http://snomed.info/sct','Metastatic malignant neoplasm to ileum (disorder)','94335002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94336001','94336001','http://snomed.info/sct','Metastatic malignant neoplasm to iliac lymph nodes (disorder)','94336001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94337005','94337005','http://snomed.info/sct','Metastatic malignant neoplasm to ilium (disorder)','94337005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94338000','94338000','http://snomed.info/sct','Metastatic malignant neoplasm to infraclavicular lymph nodes (disorder)','94338000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94339008','94339008','http://snomed.info/sct','Metastatic malignant neoplasm to inguinal lymph nodes (disorder)','94339008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94340005','94340005','http://snomed.info/sct','Metastatic malignant neoplasm to inguinal region (disorder)','94340005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94341009','94341009','http://snomed.info/sct','Metastatic malignant neoplasm to inner aspect of lip (disorder)','94341009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94342002','94342002','http://snomed.info/sct','Metastatic malignant neoplasm to inner aspect of lower lip (disorder)','94342002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94343007','94343007','http://snomed.info/sct','Metastatic malignant neoplasm to inner aspect of upper lip (disorder)','94343007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94344001','94344001','http://snomed.info/sct','Metastatic malignant neoplasm to intercostal lymph nodes (disorder)','94344001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94345000','94345000','http://snomed.info/sct','Metastatic malignant neoplasm to intestinal lymph nodes (disorder)','94345000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94346004','94346004','http://snomed.info/sct','Metastatic malignant neoplasm to intestinal tract (disorder)','94346004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94347008','94347008','http://snomed.info/sct','Metastatic malignant neoplasm to intra-abdominal lymph nodes (disorder)','94347008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94348003','94348003','http://snomed.info/sct','Metastatic malignant neoplasm to intra-abdominal organs (disorder)','94348003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94349006','94349006','http://snomed.info/sct','Metastatic malignant neoplasm to intrahepatic bile ducts (disorder)','94349006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94350006','94350006','http://snomed.info/sct','Metastatic malignant neoplasm to intrapelvic lymph nodes (disorder)','94350006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94351005','94351005','http://snomed.info/sct','Metastatic malignant neoplasm to intrathoracic lymph nodes (disorder)','94351005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94352003','94352003','http://snomed.info/sct','Metastatic malignant neoplasm to intrathoracic organs (disorder)','94352003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94353008','94353008','http://snomed.info/sct','Metastatic malignant neoplasm to ischium (disorder)','94353008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94354002','94354002','http://snomed.info/sct','Metastatic malignant neoplasm to islets of Langerhans (disorder)','94354002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94355001','94355001','http://snomed.info/sct','Metastatic malignant neoplasm to isthmus of uterus (disorder)','94355001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94356000','94356000','http://snomed.info/sct','Metastatic malignant neoplasm to jaw (disorder)','94356000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94357009','94357009','http://snomed.info/sct','Metastatic malignant neoplasm to jejunum (disorder)','94357009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94358004','94358004','http://snomed.info/sct','Metastatic malignant neoplasm to junctional region of epiglottis (disorder)','94358004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94359007','94359007','http://snomed.info/sct','Metastatic malignant neoplasm to junctional zone of tongue (disorder)','94359007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94360002','94360002','http://snomed.info/sct','Metastatic malignant neoplasm to kidney (disorder)','94360002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94361003','94361003','http://snomed.info/sct','Metastatic malignant neoplasm to labia majora (disorder)','94361003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94362005','94362005','http://snomed.info/sct','Metastatic malignant neoplasm to labia minora (disorder)','94362005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94364006','94364006','http://snomed.info/sct','Metastatic malignant neoplasm to lacrimal gland (disorder)','94364006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94365007','94365007','http://snomed.info/sct','Metastatic malignant neoplasm to large intestine (disorder)','94365007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94366008','94366008','http://snomed.info/sct','Metastatic malignant neoplasm to laryngeal aspect of aryepiglottic fold (disorder)','94366008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94367004','94367004','http://snomed.info/sct','Metastatic malignant neoplasm to laryngeal aspect of interarytenoid fold (disorder)','94367004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94368009','94368009','http://snomed.info/sct','Metastatic malignant neoplasm to laryngeal commissure (disorder)','94368009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94369001','94369001','http://snomed.info/sct','Metastatic malignant neoplasm to laryngeal surface of epiglottis (disorder)','94369001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94370000','94370000','http://snomed.info/sct','Metastatic malignant neoplasm to larynx (disorder)','94370000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94371001','94371001','http://snomed.info/sct','Metastatic malignant neoplasm to lateral portion of floor of mouth (disorder)','94371001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94372008','94372008','http://snomed.info/sct','Metastatic malignant neoplasm to lateral wall of nasopharynx (disorder)','94372008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94373003','94373003','http://snomed.info/sct','Metastatic malignant neoplasm to lateral wall of oropharynx (disorder)','94373003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94374009','94374009','http://snomed.info/sct','Metastatic malignant neoplasm to lateral wall of urinary bladder (disorder)','94374009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94375005','94375005','http://snomed.info/sct','Metastatic malignant neoplasm to left lower lobe of lung (disorder)','94375005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94376006','94376006','http://snomed.info/sct','Metastatic malignant neoplasm to left upper lobe of lung (disorder)','94376006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94378007','94378007','http://snomed.info/sct','Metastatic malignant neoplasm to lesser curvature of stomach (disorder)','94378007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94379004','94379004','http://snomed.info/sct','Metastatic malignant neoplasm to lingual tonsil (disorder)','94379004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94380001','94380001','http://snomed.info/sct','Metastatic malignant neoplasm to lip (disorder)','94380001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94381002','94381002','http://snomed.info/sct','Metastatic malignant neoplasm to liver (disorder)','94381002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94382009','94382009','http://snomed.info/sct','Metastatic malignant neoplasm to long bone of lower limb (disorder)','94382009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94383004','94383004','http://snomed.info/sct','Metastatic malignant neoplasm to long bone of upper limb (disorder)','94383004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94384005','94384005','http://snomed.info/sct','Metastatic malignant neoplasm to lower gum (disorder)','94384005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94385006','94385006','http://snomed.info/sct','Metastatic malignant neoplasm to lower inner quadrant of female breast (disorder)','94385006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94386007','94386007','http://snomed.info/sct','Metastatic malignant neoplasm to lower limb (disorder)','94386007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94387003','94387003','http://snomed.info/sct','Metastatic malignant neoplasm to lower outer quadrant of female breast (disorder)','94387003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94388008','94388008','http://snomed.info/sct','Metastatic malignant neoplasm to lower third of esophagus (disorder)','94388008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94389000','94389000','http://snomed.info/sct','Metastatic malignant neoplasm to lumbar vertebral column (disorder)','94389000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94390009','94390009','http://snomed.info/sct','Metastatic malignant neoplasm to lunate bone (disorder)','94390009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94391008','94391008','http://snomed.info/sct','Metastatic malignant neoplasm to lung (disorder)','94391008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94392001','94392001','http://snomed.info/sct','Metastatic malignant neoplasm to lymph node (disorder)','94392001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94393006','94393006','http://snomed.info/sct','Metastatic malignant neoplasm to lymph nodes of face (disorder)','94393006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94394000','94394000','http://snomed.info/sct','Metastatic malignant neoplasm to lymph nodes of head (disorder)','94394000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94395004','94395004','http://snomed.info/sct','Metastatic malignant neoplasm to lymph nodes of lower limb (disorder)','94395004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94396003','94396003','http://snomed.info/sct','Metastatic malignant neoplasm to lymph nodes of multiple sites (disorder)','94396003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94397007','94397007','http://snomed.info/sct','Metastatic malignant neoplasm to lymph nodes of neck (disorder)','94397007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94398002','94398002','http://snomed.info/sct','Metastatic malignant neoplasm to lymph nodes of upper limb (disorder)','94398002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94399005','94399005','http://snomed.info/sct','Metastatic malignant neoplasm to main bronchus (disorder)','94399005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94400003','94400003','http://snomed.info/sct','Metastatic malignant neoplasm to major salivary gland (disorder)','94400003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94401004','94401004','http://snomed.info/sct','Metastatic malignant neoplasm to male breast (disorder)','94401004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94402006','94402006','http://snomed.info/sct','Metastatic malignant neoplasm to male genital organ (disorder)','94402006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94403001','94403001','http://snomed.info/sct','Metastatic malignant neoplasm to mandible (disorder)','94403001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94404007','94404007','http://snomed.info/sct','Metastatic malignant neoplasm to mastoid air cells (disorder)','94404007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94405008','94405008','http://snomed.info/sct','Metastatic malignant neoplasm to maxilla (disorder)','94405008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94406009','94406009','http://snomed.info/sct','Metastatic malignant neoplasm to maxillary sinus (disorder)','94406009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94407000','94407000','http://snomed.info/sct','Metastatic malignant neoplasm to Meckel''s diverticulum (disorder)','94407000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94408005','94408005','http://snomed.info/sct','Metastatic malignant neoplasm to mediastinal lymph nodes (disorder)','94408005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94409002','94409002','http://snomed.info/sct','Metastatic malignant neoplasm to mediastinum (disorder)','94409002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94410007','94410007','http://snomed.info/sct','Metastatic malignant neoplasm to mesenteric lymph nodes (disorder)','94410007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94411006','94411006','http://snomed.info/sct','Metastatic malignant neoplasm to metacarpal bone (disorder)','94411006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94412004','94412004','http://snomed.info/sct','Metastatic malignant neoplasm to metatarsal bone (disorder)','94412004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94413009','94413009','http://snomed.info/sct','Metastatic malignant neoplasm to middle ear (disorder)','94413009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94414003','94414003','http://snomed.info/sct','Metastatic malignant neoplasm to middle third of esophagus (disorder)','94414003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94415002','94415002','http://snomed.info/sct','Metastatic malignant neoplasm to minor salivary gland (disorder)','94415002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94416001','94416001','http://snomed.info/sct','Metastatic malignant neoplasm to mouth (disorder)','94416001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94417005','94417005','http://snomed.info/sct','Metastatic malignant neoplasm to multiple endocrine glands (disorder)','94417005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94418000','94418000','http://snomed.info/sct','Metastatic malignant neoplasm to muscle of abdomen (disorder)','94418000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94419008','94419008','http://snomed.info/sct','Metastatic malignant neoplasm to muscle of buttock (disorder)','94419008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94420002','94420002','http://snomed.info/sct','Metastatic malignant neoplasm to muscle of face (disorder)','94420002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94421003','94421003','http://snomed.info/sct','Metastatic malignant neoplasm to muscle of head (disorder)','94421003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94422005','94422005','http://snomed.info/sct','Metastatic malignant neoplasm to muscle of hip (disorder)','94422005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94423000','94423000','http://snomed.info/sct','Metastatic malignant neoplasm to muscle of inguinal region (disorder)','94423000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94424006','94424006','http://snomed.info/sct','Metastatic malignant neoplasm to muscle of lower limb (disorder)','94424006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94425007','94425007','http://snomed.info/sct','Metastatic malignant neoplasm to muscle of neck (disorder)','94425007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94426008','94426008','http://snomed.info/sct','Metastatic malignant neoplasm to muscle of pelvis (disorder)','94426008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94427004','94427004','http://snomed.info/sct','Metastatic malignant neoplasm to muscle of perineum (disorder)','94427004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94428009','94428009','http://snomed.info/sct','Metastatic malignant neoplasm to muscle of shoulder (disorder)','94428009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94429001','94429001','http://snomed.info/sct','Metastatic malignant neoplasm to muscle of thorax (disorder)','94429001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94430006','94430006','http://snomed.info/sct','Metastatic malignant neoplasm to muscle of trunk (disorder)','94430006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94431005','94431005','http://snomed.info/sct','Metastatic malignant neoplasm to muscle of upper limb (disorder)','94431005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94432003','94432003','http://snomed.info/sct','Metastatic malignant neoplasm to muscle (disorder)','94432003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94433008','94433008','http://snomed.info/sct','Metastatic malignant neoplasm to myocardium (disorder)','94433008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94434002','94434002','http://snomed.info/sct','Metastatic malignant neoplasm to myometrium (disorder)','94434002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94435001','94435001','http://snomed.info/sct','Metastatic malignant neoplasm to nasal bone (disorder)','94435001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94436000','94436000','http://snomed.info/sct','Metastatic malignant neoplasm to nasal cavity (disorder)','94436000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94437009','94437009','http://snomed.info/sct','Metastatic malignant neoplasm to nasal concha (disorder)','94437009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94439007','94439007','http://snomed.info/sct','Metastatic malignant neoplasm to navicular bone of foot (disorder)','94439007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94440009','94440009','http://snomed.info/sct','Metastatic malignant neoplasm to scaphoid bone (disorder)','94440009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94441008','94441008','http://snomed.info/sct','Metastatic malignant neoplasm to neck (disorder)','94441008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94442001','94442001','http://snomed.info/sct','Metastatic malignant neoplasm to nervous system (disorder)','94442001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94443006','94443006','http://snomed.info/sct','Metastatic malignant neoplasm to nipple of female breast (disorder)','94443006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94444000','94444000','http://snomed.info/sct','Metastatic malignant neoplasm to nipple of male breast (disorder)','94444000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94445004','94445004','http://snomed.info/sct','Metastatic malignant neoplasm to nose (disorder)','94445004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94446003','94446003','http://snomed.info/sct','Metastatic malignant neoplasm to obturator lymph nodes (disorder)','94446003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94447007','94447007','http://snomed.info/sct','Metastatic malignant neoplasm to occipital bone (disorder)','94447007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94448002','94448002','http://snomed.info/sct','Metastatic malignant neoplasm to occipital lobe (disorder)','94448002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94449005','94449005','http://snomed.info/sct','Metastatic malignant neoplasm to occipital lymph nodes (disorder)','94449005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94450005','94450005','http://snomed.info/sct','Metastatic malignant neoplasm to oculomotor nerve (disorder)','94450005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94451009','94451009','http://snomed.info/sct','Metastatic malignant neoplasm to olfactory nerve (disorder)','94451009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94452002','94452002','http://snomed.info/sct','Metastatic malignant neoplasm to optic nerve (disorder)','94452002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94453007','94453007','http://snomed.info/sct','Metastatic malignant neoplasm to orbit (disorder)','94453007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94454001','94454001','http://snomed.info/sct','Metastatic malignant neoplasm to oropharynx (disorder)','94454001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94455000','94455000','http://snomed.info/sct','Metastatic malignant neoplasm to ovary (disorder)','94455000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94456004','94456004','http://snomed.info/sct','Metastatic malignant neoplasm to palate (disorder)','94456004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94457008','94457008','http://snomed.info/sct','Metastatic malignant neoplasm to palatine bone (disorder)','94457008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94458003','94458003','http://snomed.info/sct','Metastatic malignant neoplasm to tonsil (disorder)','94458003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94459006','94459006','http://snomed.info/sct','Metastatic malignant neoplasm to pancreas (disorder)','94459006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94460001','94460001','http://snomed.info/sct','Metastatic malignant neoplasm to pancreatic duct (disorder)','94460001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94461002','94461002','http://snomed.info/sct','Metastatic malignant neoplasm to para-aortic body (disorder)','94461002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94462009','94462009','http://snomed.info/sct','Metastatic malignant neoplasm to paraganglion (disorder)','94462009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94463004','94463004','http://snomed.info/sct','Metastatic malignant neoplasm to paramammary lymph nodes (disorder)','94463004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94464005','94464005','http://snomed.info/sct','Metastatic malignant neoplasm to parametrial lymph nodes (disorder)','94464005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94465006','94465006','http://snomed.info/sct','Metastatic malignant neoplasm to parametrium (disorder)','94465006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94466007','94466007','http://snomed.info/sct','Metastatic malignant neoplasm to pararectal lymph nodes (disorder)','94466007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94467003','94467003','http://snomed.info/sct','Metastatic malignant neoplasm to parathyroid gland (disorder)','94467003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94468008','94468008','http://snomed.info/sct','Metastatic malignant neoplasm to paraurethral glands (disorder)','94468008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94469000','94469000','http://snomed.info/sct','Metastatic malignant neoplasm to paravaginal lymph nodes (disorder)','94469000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94470004','94470004','http://snomed.info/sct','Metastatic malignant neoplasm to parietal bone (disorder)','94470004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94471000','94471000','http://snomed.info/sct','Metastatic malignant neoplasm to parietal lobe (disorder)','94471000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94472007','94472007','http://snomed.info/sct','Metastatic malignant neoplasm to parietal peritoneum (disorder)','94472007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94473002','94473002','http://snomed.info/sct','Metastatic malignant neoplasm to parietal pleura (disorder)','94473002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94474008','94474008','http://snomed.info/sct','Metastatic malignant neoplasm to parotid gland (disorder)','94474008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94475009','94475009','http://snomed.info/sct','Metastatic malignant neoplasm to parotid lymph nodes (disorder)','94475009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94476005','94476005','http://snomed.info/sct','Metastatic malignant neoplasm to patella (disorder)','94476005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94477001','94477001','http://snomed.info/sct','Metastatic malignant neoplasm to pectoral axillary lymph nodes (disorder)','94477001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94478006','94478006','http://snomed.info/sct','Metastatic malignant neoplasm to pelvic bone (disorder)','94478006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94479003','94479003','http://snomed.info/sct','Metastatic malignant neoplasm to pelvic peritoneum (disorder)','94479003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94480000','94480000','http://snomed.info/sct','Metastatic malignant neoplasm to pelvis (disorder)','94480000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94481001','94481001','http://snomed.info/sct','Metastatic malignant neoplasm to penis (disorder)','94481001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94482008','94482008','http://snomed.info/sct','Metastatic malignant neoplasm to periadrenal tissue (disorder)','94482008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94483003','94483003','http://snomed.info/sct','Metastatic malignant neoplasm to perianal skin (disorder)','94483003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94484009','94484009','http://snomed.info/sct','Metastatic malignant neoplasm to pericardium (disorder)','94484009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94485005','94485005','http://snomed.info/sct','Metastatic malignant neoplasm to perirenal tissue (disorder)','94485005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94486006','94486006','http://snomed.info/sct','Metastatic malignant neoplasm to phalanx of foot (disorder)','94486006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94487002','94487002','http://snomed.info/sct','Metastatic malignant neoplasm to phalanx of hand (disorder)','94487002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94488007','94488007','http://snomed.info/sct','Metastatic malignant neoplasm to pharynx (disorder)','94488007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94489004','94489004','http://snomed.info/sct','Metastatic malignant neoplasm to pineal gland (disorder)','94489004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94490008','94490008','http://snomed.info/sct','Metastatic malignant neoplasm to pisiform bone of hand (disorder)','94490008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94491007','94491007','http://snomed.info/sct','Metastatic malignant neoplasm to pituitary gland (disorder)','94491007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94492000','94492000','http://snomed.info/sct','Metastatic malignant neoplasm to placenta (disorder)','94492000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94493005','94493005','http://snomed.info/sct','Metastatic malignant neoplasm to pleura (disorder)','94493005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94494004','94494004','http://snomed.info/sct','Metastatic malignant neoplasm to popliteal lymph nodes (disorder)','94494004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94495003','94495003','http://snomed.info/sct','Metastatic malignant neoplasm to postcricoid region (disorder)','94495003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94496002','94496002','http://snomed.info/sct','Metastatic malignant neoplasm to posterior hypopharyngeal wall (disorder)','94496002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94497006','94497006','http://snomed.info/sct','Metastatic malignant neoplasm to posterior mediastinum (disorder)','94497006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94498001','94498001','http://snomed.info/sct','Metastatic malignant neoplasm to posterior wall of nasopharynx (disorder)','94498001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94499009','94499009','http://snomed.info/sct','Metastatic malignant neoplasm to posterior wall of oropharynx (disorder)','94499009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94500000','94500000','http://snomed.info/sct','Metastatic malignant neoplasm to posterior wall of urinary bladder (disorder)','94500000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94501001','94501001','http://snomed.info/sct','Metastatic malignant neoplasm to preauricular lymph nodes (disorder)','94501001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94502008','94502008','http://snomed.info/sct','Metastatic malignant neoplasm to presacral region (disorder)','94502008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94503003','94503003','http://snomed.info/sct','Metastatic malignant neoplasm to prostate (disorder)','94503003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94504009','94504009','http://snomed.info/sct','Metastatic malignant neoplasm to pubis (disorder)','94504009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94505005','94505005','http://snomed.info/sct','Metastatic malignant neoplasm to pyloric antrum (disorder)','94505005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94506006','94506006','http://snomed.info/sct','Metastatic malignant neoplasm to pylorus (disorder)','94506006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94507002','94507002','http://snomed.info/sct','Metastatic malignant neoplasm to pyriform sinus (disorder)','94507002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94508007','94508007','http://snomed.info/sct','Metastatic malignant neoplasm to radius (disorder)','94508007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94509004','94509004','http://snomed.info/sct','Metastatic malignant neoplasm to rectosigmoid junction (disorder)','94509004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94510009','94510009','http://snomed.info/sct','Metastatic malignant neoplasm to rectouterine pouch (disorder)','94510009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94511008','94511008','http://snomed.info/sct','Metastatic malignant neoplasm to rectovaginal septum (disorder)','94511008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94512001','94512001','http://snomed.info/sct','Metastatic malignant neoplasm to rectovesical septum (disorder)','94512001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94513006','94513006','http://snomed.info/sct','Metastatic malignant neoplasm to rectum (disorder)','94513006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94514000','94514000','http://snomed.info/sct','Metastatic malignant neoplasm to renal pelvis (disorder)','94514000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94515004','94515004','http://snomed.info/sct','Metastatic malignant neoplasm to respiratory tract (disorder)','94515004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94516003','94516003','http://snomed.info/sct','Metastatic malignant neoplasm to retina (disorder)','94516003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94517007','94517007','http://snomed.info/sct','Metastatic malignant neoplasm to retrocecal tissue (disorder)','94517007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94518002','94518002','http://snomed.info/sct','Metastatic malignant neoplasm to retromolar area (disorder)','94518002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94519005','94519005','http://snomed.info/sct','Metastatic malignant neoplasm to retroperitoneal lymph nodes (disorder)','94519005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94520004','94520004','http://snomed.info/sct','Metastatic malignant neoplasm to retropharyngeal lymph nodes (disorder)','94520004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94521000','94521000','http://snomed.info/sct','Metastatic malignant neoplasm to rib (disorder)','94521000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94522007','94522007','http://snomed.info/sct','Metastatic malignant neoplasm to right lower lobe of lung (disorder)','94522007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94523002','94523002','http://snomed.info/sct','Metastatic malignant neoplasm to middle lobe of right lung (disorder)','94523002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94524008','94524008','http://snomed.info/sct','Metastatic malignant neoplasm to right upper lobe of lung (disorder)','94524008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94525009','94525009','http://snomed.info/sct','Metastatic malignant neoplasm to round ligament of uterus (disorder)','94525009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94526005','94526005','http://snomed.info/sct','Metastatic malignant neoplasm to sacrococcygeal region (disorder)','94526005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94527001','94527001','http://snomed.info/sct','Metastatic malignant neoplasm to sacrum (disorder)','94527001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94528006','94528006','http://snomed.info/sct','Metastatic malignant neoplasm to scalene lymph nodes (disorder)','94528006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94529003','94529003','http://snomed.info/sct','Metastatic malignant neoplasm to scapula (disorder)','94529003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94530008','94530008','http://snomed.info/sct','Metastatic malignant neoplasm to sclera (disorder)','94530008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94531007','94531007','http://snomed.info/sct','Metastatic malignant neoplasm to scrotum (disorder)','94531007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94532000','94532000','http://snomed.info/sct','Metastatic malignant neoplasm to sebaceous gland (disorder)','94532000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94533005','94533005','http://snomed.info/sct','Metastatic malignant neoplasm to second cuneiform bone of foot (disorder)','94533005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94534004','94534004','http://snomed.info/sct','Metastatic malignant neoplasm to septum of nose (disorder)','94534004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94535003','94535003','http://snomed.info/sct','Metastatic malignant neoplasm to short bone of lower limb (disorder)','94535003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94536002','94536002','http://snomed.info/sct','Metastatic malignant neoplasm to short bone of upper limb (disorder)','94536002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94537006','94537006','http://snomed.info/sct','Metastatic malignant neoplasm to shoulder (disorder)','94537006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94538001','94538001','http://snomed.info/sct','Metastatic malignant neoplasm to sigmoid colon (disorder)','94538001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94539009','94539009','http://snomed.info/sct','Metastatic malignant neoplasm to skin of abdomen (disorder)','94539009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94540006','94540006','http://snomed.info/sct','Metastatic malignant neoplasm to skin of ankle (disorder)','94540006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94542003','94542003','http://snomed.info/sct','Metastatic malignant neoplasm to skin of axilla (disorder)','94542003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94543008','94543008','http://snomed.info/sct','Metastatic malignant neoplasm to skin of back (disorder)','94543008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94544002','94544002','http://snomed.info/sct','Metastatic malignant neoplasm to skin of breast (disorder)','94544002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94545001','94545001','http://snomed.info/sct','Metastatic malignant neoplasm to skin of buttock (disorder)','94545001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94546000','94546000','http://snomed.info/sct','Metastatic malignant neoplasm to skin of cheek (disorder)','94546000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94547009','94547009','http://snomed.info/sct','Metastatic malignant neoplasm to skin of chest (disorder)','94547009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94548004','94548004','http://snomed.info/sct','Metastatic malignant neoplasm to skin of chin (disorder)','94548004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94549007','94549007','http://snomed.info/sct','Metastatic malignant neoplasm to skin of ear (disorder)','94549007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94550007','94550007','http://snomed.info/sct','Metastatic malignant neoplasm to skin of elbow (disorder)','94550007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94551006','94551006','http://snomed.info/sct','Metastatic malignant neoplasm to skin of external auditory canal (disorder)','94551006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94552004','94552004','http://snomed.info/sct','Metastatic malignant neoplasm to skin of eyebrow (disorder)','94552004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94553009','94553009','http://snomed.info/sct','Metastatic malignant neoplasm to skin of eyelid (disorder)','94553009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94554003','94554003','http://snomed.info/sct','Metastatic malignant neoplasm to skin of face (disorder)','94554003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94555002','94555002','http://snomed.info/sct','Metastatic malignant neoplasm to skin of finger (disorder)','94555002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94556001','94556001','http://snomed.info/sct','Metastatic malignant neoplasm to skin of foot (disorder)','94556001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94557005','94557005','http://snomed.info/sct','Metastatic malignant neoplasm to skin of forearm (disorder)','94557005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94558000','94558000','http://snomed.info/sct','Metastatic malignant neoplasm to skin of forehead (disorder)','94558000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94559008','94559008','http://snomed.info/sct','Metastatic malignant neoplasm to skin of groin (disorder)','94559008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94560003','94560003','http://snomed.info/sct','Metastatic malignant neoplasm to skin of hand (disorder)','94560003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94561004','94561004','http://snomed.info/sct','Metastatic malignant neoplasm to skin of hip (disorder)','94561004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94562006','94562006','http://snomed.info/sct','Metastatic malignant neoplasm to skin of knee (disorder)','94562006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94564007','94564007','http://snomed.info/sct','Metastatic malignant neoplasm to skin of lip (disorder)','94564007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94565008','94565008','http://snomed.info/sct','Metastatic malignant neoplasm to skin of lower limb (disorder)','94565008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94566009','94566009','http://snomed.info/sct','Metastatic malignant neoplasm to skin of neck (disorder)','94566009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94567000','94567000','http://snomed.info/sct','Metastatic malignant neoplasm to skin of nose (disorder)','94567000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94568005','94568005','http://snomed.info/sct','Metastatic malignant neoplasm to skin of perineum (disorder)','94568005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94569002','94569002','http://snomed.info/sct','Metastatic malignant neoplasm to skin of popliteal area (disorder)','94569002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94570001','94570001','http://snomed.info/sct','Metastatic malignant neoplasm to skin of scalp (disorder)','94570001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94571002','94571002','http://snomed.info/sct','Metastatic malignant neoplasm to skin of shoulder (disorder)','94571002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94572009','94572009','http://snomed.info/sct','Metastatic malignant neoplasm to skin of temporal region (disorder)','94572009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94573004','94573004','http://snomed.info/sct','Metastatic malignant neoplasm to skin of thigh (disorder)','94573004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94574005','94574005','http://snomed.info/sct','Metastatic malignant neoplasm to skin of toe (disorder)','94574005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94575006','94575006','http://snomed.info/sct','Metastatic malignant neoplasm to skin of trunk (disorder)','94575006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94576007','94576007','http://snomed.info/sct','Metastatic malignant neoplasm to skin of umbilicus (disorder)','94576007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94577003','94577003','http://snomed.info/sct','Metastatic malignant neoplasm to skin of upper limb (disorder)','94577003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94578008','94578008','http://snomed.info/sct','Metastatic malignant neoplasm to skin of wrist (disorder)','94578008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94579000','94579000','http://snomed.info/sct','Metastatic malignant neoplasm to skin (disorder)','94579000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94580002','94580002','http://snomed.info/sct','Metastatic malignant neoplasm to small intestine (disorder)','94580002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94581003','94581003','http://snomed.info/sct','Metastatic malignant neoplasm to soft palate (disorder)','94581003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94582005','94582005','http://snomed.info/sct','Metastatic malignant neoplasm to soft tissues of abdomen (disorder)','94582005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94583000','94583000','http://snomed.info/sct','Metastatic malignant neoplasm to soft tissues of axilla (disorder)','94583000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94584006','94584006','http://snomed.info/sct','Metastatic malignant neoplasm to soft tissues of buttock (disorder)','94584006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94585007','94585007','http://snomed.info/sct','Metastatic malignant neoplasm to soft tissues of face (disorder)','94585007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94586008','94586008','http://snomed.info/sct','Metastatic malignant neoplasm to soft tissues of head (disorder)','94586008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94587004','94587004','http://snomed.info/sct','Metastatic malignant neoplasm to soft tissues of hip (disorder)','94587004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94588009','94588009','http://snomed.info/sct','Metastatic malignant neoplasm to soft tissues of inguinal region (disorder)','94588009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94589001','94589001','http://snomed.info/sct','Metastatic malignant neoplasm to soft tissues of lower limb (disorder)','94589001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94590005','94590005','http://snomed.info/sct','Metastatic malignant neoplasm to soft tissues of neck (disorder)','94590005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94591009','94591009','http://snomed.info/sct','Metastatic malignant neoplasm to soft tissues of pelvis (disorder)','94591009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94592002','94592002','http://snomed.info/sct','Metastatic malignant neoplasm to soft tissues of perineum (disorder)','94592002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94593007','94593007','http://snomed.info/sct','Metastatic malignant neoplasm to soft tissues of shoulder (disorder)','94593007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94594001','94594001','http://snomed.info/sct','Metastatic malignant neoplasm to soft tissues of thorax (disorder)','94594001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94595000','94595000','http://snomed.info/sct','Metastatic malignant neoplasm to soft tissues of trunk (disorder)','94595000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94596004','94596004','http://snomed.info/sct','Metastatic malignant neoplasm to soft tissues of upper limb (disorder)','94596004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94597008','94597008','http://snomed.info/sct','Metastatic malignant neoplasm to spermatic cord (disorder)','94597008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94598003','94598003','http://snomed.info/sct','Metastatic malignant neoplasm to sphenoid bone (disorder)','94598003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94599006','94599006','http://snomed.info/sct','Metastatic malignant neoplasm to sphenoidal sinus (disorder)','94599006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94600009','94600009','http://snomed.info/sct','Metastatic malignant neoplasm to spinal cord (disorder)','94600009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94601008','94601008','http://snomed.info/sct','Metastatic malignant neoplasm to spinal meninges (disorder)','94601008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94602001','94602001','http://snomed.info/sct','Metastatic malignant neoplasm to vertebral column (disorder)','94602001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94603006','94603006','http://snomed.info/sct','Metastatic malignant neoplasm to spleen (disorder)','94603006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94604000','94604000','http://snomed.info/sct','Metastatic malignant neoplasm to splenic flexure of colon (disorder)','94604000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94605004','94605004','http://snomed.info/sct','Metastatic malignant neoplasm to sternum (disorder)','94605004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94606003','94606003','http://snomed.info/sct','Metastatic malignant neoplasm to stomach (disorder)','94606003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94607007','94607007','http://snomed.info/sct','Metastatic malignant neoplasm to subglottis (disorder)','94607007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94608002','94608002','http://snomed.info/sct','Metastatic malignant neoplasm to sublingual gland (disorder)','94608002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94609005','94609005','http://snomed.info/sct','Metastatic malignant neoplasm to submandibular lymph nodes (disorder)','94609005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94610000','94610000','http://snomed.info/sct','Metastatic malignant neoplasm to submaxillary gland (disorder)','94610000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94611001','94611001','http://snomed.info/sct','Metastatic malignant neoplasm to submental lymph nodes (disorder)','94611001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94612008','94612008','http://snomed.info/sct','Metastatic malignant neoplasm to superficial inguinal lymph nodes (disorder)','94612008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94613003','94613003','http://snomed.info/sct','Metastatic malignant neoplasm to superior wall of nasopharynx (disorder)','94613003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94614009','94614009','http://snomed.info/sct','Metastatic malignant neoplasm to supraclavicular lymph nodes (disorder)','94614009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94615005','94615005','http://snomed.info/sct','Metastatic malignant neoplasm to supraclavicular region (disorder)','94615005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94616006','94616006','http://snomed.info/sct','Metastatic malignant neoplasm to supraglottis (disorder)','94616006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94617002','94617002','http://snomed.info/sct','Metastatic malignant neoplasm to sweat gland (disorder)','94617002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94618007','94618007','http://snomed.info/sct','Metastatic malignant neoplasm to tail of pancreas (disorder)','94618007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94619004','94619004','http://snomed.info/sct','Metastatic malignant neoplasm to talus (disorder)','94619004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94620005','94620005','http://snomed.info/sct','Metastatic malignant neoplasm to tarsal bone (disorder)','94620005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94621009','94621009','http://snomed.info/sct','Metastatic malignant neoplasm to temporal bone (disorder)','94621009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94622002','94622002','http://snomed.info/sct','Metastatic malignant neoplasm to temporal lobe (disorder)','94622002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94623007','94623007','http://snomed.info/sct','Metastatic malignant neoplasm to testis (disorder)','94623007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94624001','94624001','http://snomed.info/sct','Metastatic malignant neoplasm to the mesentery (disorder)','94624001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94625000','94625000','http://snomed.info/sct','Metastatic malignant neoplasm to the mesocolon (disorder)','94625000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94626004','94626004','http://snomed.info/sct','Metastatic malignant neoplasm to omentum (disorder)','94626004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94627008','94627008','http://snomed.info/sct','Metastatic malignant neoplasm to peritoneum (disorder)','94627008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94628003','94628003','http://snomed.info/sct','Metastatic malignant neoplasm to retroperitoneum (disorder)','94628003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94629006','94629006','http://snomed.info/sct','Metastatic malignant neoplasm to thigh (disorder)','94629006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94630001','94630001','http://snomed.info/sct','Metastatic malignant neoplasm to third cuneiform bone of foot (disorder)','94630001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94631002','94631002','http://snomed.info/sct','Metastatic malignant neoplasm to thoracic esophagus (disorder)','94631002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94632009','94632009','http://snomed.info/sct','Metastatic malignant neoplasm to thymus (disorder)','94632009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94633004','94633004','http://snomed.info/sct','Metastatic malignant neoplasm to thyroglossal duct (disorder)','94633004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94634005','94634005','http://snomed.info/sct','Metastatic malignant neoplasm to thyroid gland (disorder)','94634005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94635006','94635006','http://snomed.info/sct','Metastatic malignant neoplasm to tibia (disorder)','94635006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94636007','94636007','http://snomed.info/sct','Metastatic malignant neoplasm to tibial lymph nodes (disorder)','94636007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94637003','94637003','http://snomed.info/sct','Metastatic malignant neoplasm to tip and lateral border of tongue (disorder)','94637003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94638008','94638008','http://snomed.info/sct','Metastatic malignant neoplasm to tongue (disorder)','94638008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94639000','94639000','http://snomed.info/sct','Metastatic malignant neoplasm to tonsillar fossa (disorder)','94639000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94640003','94640003','http://snomed.info/sct','Metastatic malignant neoplasm to tonsillar pillar (disorder)','94640003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94641004','94641004','http://snomed.info/sct','Metastatic malignant neoplasm to trachea (disorder)','94641004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94642006','94642006','http://snomed.info/sct','Metastatic malignant neoplasm to tracheobronchial lymph nodes (disorder)','94642006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94643001','94643001','http://snomed.info/sct','Metastatic malignant neoplasm to transverse colon (disorder)','94643001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94644007','94644007','http://snomed.info/sct','Metastatic malignant neoplasm to trapezium (disorder)','94644007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94645008','94645008','http://snomed.info/sct','Metastatic malignant neoplasm to trapezoid bone (disorder)','94645008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94646009','94646009','http://snomed.info/sct','Metastatic malignant neoplasm to trigeminal nerve (disorder)','94646009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94647000','94647000','http://snomed.info/sct','Metastatic malignant neoplasm to trigone of urinary bladder (disorder)','94647000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94648005','94648005','http://snomed.info/sct','Metastatic malignant neoplasm to trochlear nerve (disorder)','94648005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94649002','94649002','http://snomed.info/sct','Metastatic malignant neoplasm to trunk (disorder)','94649002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94650002','94650002','http://snomed.info/sct','Metastatic malignant neoplasm to ulna (disorder)','94650002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94651003','94651003','http://snomed.info/sct','Metastatic malignant neoplasm to undescended testis (disorder)','94651003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94652005','94652005','http://snomed.info/sct','Metastatic malignant neoplasm to upper gum (disorder)','94652005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94653000','94653000','http://snomed.info/sct','Metastatic malignant neoplasm to upper inner quadrant of female breast (disorder)','94653000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94654006','94654006','http://snomed.info/sct','Metastatic malignant neoplasm to upper limb (disorder)','94654006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94655007','94655007','http://snomed.info/sct','Metastatic malignant neoplasm to upper outer quadrant of female breast (disorder)','94655007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94656008','94656008','http://snomed.info/sct','Metastatic malignant neoplasm to upper respiratory tract (disorder)','94656008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94657004','94657004','http://snomed.info/sct','Metastatic malignant neoplasm to upper third of esophagus (disorder)','94657004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94658009','94658009','http://snomed.info/sct','Metastatic malignant neoplasm to urachus (disorder)','94658009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94659001','94659001','http://snomed.info/sct','Metastatic malignant neoplasm to ureter (disorder)','94659001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94660006','94660006','http://snomed.info/sct','Metastatic malignant neoplasm to ureteric orifice of urinary bladder (disorder)','94660006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94661005','94661005','http://snomed.info/sct','Metastatic malignant neoplasm to urethra (disorder)','94661005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94662003','94662003','http://snomed.info/sct','Metastatic malignant neoplasm to urinary bladder neck (disorder)','94662003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94663008','94663008','http://snomed.info/sct','Metastatic malignant neoplasm to urinary system (disorder)','94663008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94664002','94664002','http://snomed.info/sct','Metastatic malignant neoplasm to uterine adnexa (disorder)','94664002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94665001','94665001','http://snomed.info/sct','Metastatic malignant neoplasm to uterus (disorder)','94665001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94666000','94666000','http://snomed.info/sct','Metastatic malignant neoplasm to uveal tract (disorder)','94666000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94667009','94667009','http://snomed.info/sct','Metastatic malignant neoplasm to uvula (disorder)','94667009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94668004','94668004','http://snomed.info/sct','Metastatic malignant neoplasm to vagina (disorder)','94668004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94669007','94669007','http://snomed.info/sct','Metastatic malignant neoplasm to vagus nerve (disorder)','94669007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94670008','94670008','http://snomed.info/sct','Metastatic malignant neoplasm to vallecula (disorder)','94670008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94671007','94671007','http://snomed.info/sct','Metastatic malignant neoplasm to vas deferens (disorder)','94671007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94672000','94672000','http://snomed.info/sct','Metastatic malignant neoplasm to ventral surface of tongue (disorder)','94672000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94673005','94673005','http://snomed.info/sct','Metastatic malignant neoplasm to vermilion border of lip (disorder)','94673005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94674004','94674004','http://snomed.info/sct','Metastatic malignant neoplasm to vermilion border of lower lip (disorder)','94674004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94675003','94675003','http://snomed.info/sct','Metastatic malignant neoplasm to vermilion border of upper lip (disorder)','94675003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94676002','94676002','http://snomed.info/sct','Metastatic malignant neoplasm to vestibule of mouth (disorder)','94676002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94677006','94677006','http://snomed.info/sct','Metastatic malignant neoplasm to vestibule of nose (disorder)','94677006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94678001','94678001','http://snomed.info/sct','Metastatic malignant neoplasm to visceral pleura (disorder)','94678001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94679009','94679009','http://snomed.info/sct','Metastatic malignant neoplasm to vocal cord (disorder)','94679009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94680007','94680007','http://snomed.info/sct','Metastatic malignant neoplasm to vomer (disorder)','94680007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94681006','94681006','http://snomed.info/sct','Metastatic malignant neoplasm to vulva (disorder)','94681006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94682004','94682004','http://snomed.info/sct','Metastatic malignant neoplasm to Waldeyer''s ring (disorder)','94682004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94683009','94683009','http://snomed.info/sct','Metastatic malignant neoplasm to zygomatic bone (disorder)','94683009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94686001','94686001','http://snomed.info/sct','Mixed cell type lymphosarcoma of intra-abdominal lymph nodes (disorder)','94686001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94687005','94687005','http://snomed.info/sct','Mixed cell type lymphosarcoma of intrapelvic lymph nodes (disorder)','94687005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94688000','94688000','http://snomed.info/sct','Mixed cell type lymphosarcoma of intrathoracic lymph nodes (disorder)','94688000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94690004','94690004','http://snomed.info/sct','Mixed cell type lymphosarcoma of lymph nodes of head, face, and neck (disorder)','94690004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94707004','94707004','http://snomed.info/sct','Mycosis fungoides of intra-abdominal lymph nodes (disorder)','94707004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94708009','94708009','http://snomed.info/sct','Mycosis fungoides of intrapelvic lymph nodes (disorder)','94708009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94709001','94709001','http://snomed.info/sct','Mycosis fungoides of intrathoracic lymph nodes (disorder)','94709001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94710006','94710006','http://snomed.info/sct','Mycosis fungoides of lymph nodes of axilla AND/OR upper limb (disorder)','94710006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94711005','94711005','http://snomed.info/sct','Mycosis fungoides of lymph nodes of head, face AND/OR neck (disorder)','94711005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94712003','94712003','http://snomed.info/sct','Mycosis fungoides of lymph nodes of inguinal region AND/OR lower limb (disorder)','94712003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94714002','94714002','http://snomed.info/sct','Mycosis fungoides of spleen (disorder)','94714002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94715001','94715001','http://snomed.info/sct','Mycosis fungoides of extranodal AND/OR solid organ site (disorder)','94715001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94719007','94719007','http://snomed.info/sct','Myeloid sarcoma, disease (disorder)','94719007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94722009','94722009','http://snomed.info/sct','Neoplasm of uncertain behavior of abducens nerve (disorder)','94722009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94723004','94723004','http://snomed.info/sct','Neoplasm of uncertain behavior of accessory nerve (disorder)','94723004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94725006','94725006','http://snomed.info/sct','Neoplasm of uncertain behavior of vestibulocochlear nerve (disorder)','94725006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94766006','94766006','http://snomed.info/sct','Neoplasm of uncertain behavior of brain stem (disorder)','94766006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94767002','94767002','http://snomed.info/sct','Neoplasm of uncertain behavior of brain (disorder)','94767002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94782007','94782007','http://snomed.info/sct','Neoplasm of uncertain behavior of cauda equina (disorder)','94782007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94784008','94784008','http://snomed.info/sct','Neoplasm of uncertain behavior of central nervous system (disorder)','94784008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94786005','94786005','http://snomed.info/sct','Neoplasm of uncertain behavior of cerebellum (disorder)','94786005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94787001','94787001','http://snomed.info/sct','Neoplasm of uncertain behavior of cerebral meninges (disorder)','94787001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94788006','94788006','http://snomed.info/sct','Neoplasm of uncertain behavior of cerebral ventricle (disorder)','94788006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94789003','94789003','http://snomed.info/sct','Neoplasm of uncertain behavior of cerebrum (disorder)','94789003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94807005','94807005','http://snomed.info/sct','Neoplasm of uncertain behavior of cranial nerve (disorder)','94807005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94808000','94808000','http://snomed.info/sct','Neoplasm of uncertain behavior of craniopharyngeal duct (disorder)','94808000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94847003','94847003','http://snomed.info/sct','Neoplasm of uncertain behavior of frontal lobe (disorder)','94847003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94963005','94963005','http://snomed.info/sct','Neoplasm of uncertain behavior of nervous system (disorder)','94963005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94968001','94968001','http://snomed.info/sct','Neoplasm of uncertain behavior of occipital lobe (disorder)','94968001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94969009','94969009','http://snomed.info/sct','Neoplasm of uncertain behavior of oculomotor nerve (disorder)','94969009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94970005','94970005','http://snomed.info/sct','Neoplasm of uncertain behavior of olfactory nerve (disorder)','94970005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94971009','94971009','http://snomed.info/sct','Neoplasm of uncertain behavior of optic nerve (disorder)','94971009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_94986003','94986003','http://snomed.info/sct','Neoplasm of uncertain behavior of parietal lobe (disorder)','94986003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_95002008','95002008','http://snomed.info/sct','Neoplasm of uncertain behavior of pineal gland (disorder)','95002008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_95004009','95004009','http://snomed.info/sct','Neoplasm of uncertain behavior of pituitary gland (disorder)','95004009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_95108005','95108005','http://snomed.info/sct','Neoplasm of uncertain behavior of spinal cord (disorder)','95108005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_95109002','95109002','http://snomed.info/sct','Neoplasm of uncertain behavior of spinal meninges (disorder)','95109002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_95126008','95126008','http://snomed.info/sct','Neoplasm of uncertain behavior of temporal lobe (disorder)','95126008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_95148002','95148002','http://snomed.info/sct','Neoplasm of uncertain behavior of trigeminal nerve (disorder)','95148002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_95150005','95150005','http://snomed.info/sct','Neoplasm of uncertain behavior of trochlear nerve (disorder)','95150005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_95171000','95171000','http://snomed.info/sct','Neoplasm of uncertain behavior of vagus nerve (disorder)','95171000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_95186006','95186006','http://snomed.info/sct','Nodular lymphoma of intra-abdominal lymph nodes (disorder)','95186006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_95187002','95187002','http://snomed.info/sct','Nodular lymphoma of intrapelvic lymph nodes (disorder)','95187002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_95188007','95188007','http://snomed.info/sct','Nodular lymphoma of intrathoracic lymph nodes (disorder)','95188007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_95192000','95192000','http://snomed.info/sct','Nodular lymphoma of lymph nodes of multiple sites (disorder)','95192000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_95193005','95193005','http://snomed.info/sct','Nodular lymphoma of spleen (disorder)','95193005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_95194004','95194004','http://snomed.info/sct','Nodular lymphoma of extranodal AND/OR solid organ site (disorder)','95194004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_95210003','95210003','http://snomed.info/sct','Plasma cell leukemia, disease (disorder)','95210003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_95214007','95214007','http://snomed.info/sct','Primary malignant neoplasm of liver (disorder)','95214007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_95224004','95224004','http://snomed.info/sct','Reticulosarcoma of intra-abdominal lymph nodes (disorder)','95224004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_95225003','95225003','http://snomed.info/sct','Reticulosarcoma of intrapelvic lymph nodes (disorder)','95225003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_95226002','95226002','http://snomed.info/sct','Reticulosarcoma of intrathoracic lymph nodes (disorder)','95226002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_95230004','95230004','http://snomed.info/sct','Reticulosarcoma of lymph nodes of multiple sites (disorder)','95230004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_95231000','95231000','http://snomed.info/sct','Reticulosarcoma of spleen (disorder)','95231000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_95260009','95260009','http://snomed.info/sct','Sezary''s disease of lymph nodes of head, face AND/OR neck (disorder)','95260009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_95263006','95263006','http://snomed.info/sct','Sezary''s disease of spleen (disorder)','95263006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_95264000','95264000','http://snomed.info/sct','Sezary''s disease of extranodal AND/OR solid organ site (disorder)','95264000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_9541000119105','9541000119105','http://snomed.info/sct','Primary adenocarcinoma of gallbladder (disorder)','9541000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_96281000119107','96281000119107','http://snomed.info/sct','Overlapping malignant neoplasm of colon and rectum (disorder)','96281000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_96291000119105','96291000119105','http://snomed.info/sct','Primary malignant inflammatory neoplasm of female breast (disorder)','96291000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_96901000119105','96901000119105','http://snomed.info/sct','Prostate cancer metastatic to eye (disorder)','96901000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_96981000119102','96981000119102','http://snomed.info/sct','Primary malignant neoplasm of rectosigmoid junction metastatic to brain (disorder)','96981000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_97051000119105','97051000119105','http://snomed.info/sct','Malignant melanoma metastatic to pancreas (disorder)','97051000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_98981000119103','98981000119103','http://snomed.info/sct','Primary malignant neoplasm of ileocecal valve (disorder)','98981000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_99101000119101','99101000119101','http://snomed.info/sct','Primary adenocarcinoma of fallopian tube (disorder)','99101000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_99111000119103','99111000119103','http://snomed.info/sct','Primary adenocarcinoma of intestinal tract (disorder)','99111000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_99121000119105','99121000119105','http://snomed.info/sct','Primary adenocarcinoma of vagina (disorder)','99121000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_99131000119108','99131000119108','http://snomed.info/sct','Astrocytoma of cerebrum (disorder)','99131000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_99741000119100','99741000119100','http://snomed.info/sct','Adenocarcinoma in situ in villous adenoma (disorder)','99741000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_254613007','254613007','http://snomed.info/sct','Carcinoid tumor of pancreas (disorder)','254613007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_403711001','403711001','http://snomed.info/sct','Primary malignant neoplasm of skin due to psoralen and longwave ultraviolet radiation therapy (disorder)','403711001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_403713003','403713003','http://snomed.info/sct','Psoralen and long-wave ultraviolet radiation therapy-associated squamous cell carcinoma (disorder)','403713003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_403714009','403714009','http://snomed.info/sct','Psoralen and long-wave ultraviolet radiation therapy-associated malignant melanoma (disorder)','403714009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_403729006','403729006','http://snomed.info/sct','Radiation-induced skin malignancy (disorder)','403729006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_403742006','403742006','http://snomed.info/sct','Malignant neoplasm of skin caused by arsenic (disorder)','403742006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_420302007','420302007','http://snomed.info/sct','Reticulosarcoma with acquired immunodeficiency syndrome (disorder)','420302007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_420524008','420524008','http://snomed.info/sct','Kaposi''s sarcoma with acquired immunodeficiency syndrome (disorder)','420524008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_421283008','421283008','http://snomed.info/sct','Primary lymphoma of brain with acquired immunodeficiency syndrome (disorder)','421283008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_422282000','422282000','http://snomed.info/sct','Malignant neoplasm with acquired immunodeficiency syndrome (disorder)','422282000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_442537007','442537007','http://snomed.info/sct','Non-Hodgkin lymphoma associated with Human immunodeficiency virus infection (disorder)','442537007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_708054009','708054009','http://snomed.info/sct','Malignant neoplasm after immunosuppressive therapy (disorder)','708054009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_713325002','713325002','http://snomed.info/sct','Primary cerebral lymphoma co-occurrent with human immunodeficiency virus infection (disorder)','713325002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_713572001','713572001','http://snomed.info/sct','Malignant neoplastic disease co-occurrent with human immunodeficiency virus infection (disorder)','713572001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_713718006','713718006','http://snomed.info/sct','Diffuse non-Hodgkin immunoblastic lymphoma co-occurrent with human immunodeficiency virus infection (disorder)','713718006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_713897006','713897006','http://snomed.info/sct','Burkitt lymphoma co-occurrent with human immunodeficiency virus infection (disorder)','713897006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_724866001','724866001','http://snomed.info/sct','Primary malignant neoplasm of skin due to and following radiotherapy caused by ionizing radiation (disorder)','724866001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_733834006','733834006','http://snomed.info/sct','Invasive carcinoma of uterine cervix co-occurrent with human immunodeficiency virus infection (disorder)','733834006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_762315004','762315004','http://snomed.info/sct','Therapy related acute myeloid leukemia due to and following administration of antineoplastic agent (disorder)','762315004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_766048008','766048008','http://snomed.info/sct','Acute myeloid leukemia and myelodysplastic syndrome related to radiation (disorder)','766048008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_771073006','771073006','http://snomed.info/sct','Lymphoproliferative disorder caused by methotrexate (disorder)','771073006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_778006008','778006008','http://snomed.info/sct','Autosomal dominant aplasia and myelodysplasia (disorder)','778006008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1407_370511006','370511006','http://snomed.info/sct','Vaccine-induced fibrosarcoma (disorder)','370511006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_109913001','109913001','http://snomed.info/sct','Benign neoplasm of meninges (disorder)','109913001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_126947009','126947009','http://snomed.info/sct','Cerebellopontine angle tumor (disorder)','126947009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_126948004','126948004','http://snomed.info/sct','Cerebellopontine angle meningioma (disorder)','126948004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_126949007','126949007','http://snomed.info/sct','Acoustic neuroma (disorder)','126949007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_126950007','126950007','http://snomed.info/sct','Neoplasm of nervous system (disorder)','126950007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_126951006','126951006','http://snomed.info/sct','Neoplasm of central nervous system (disorder)','126951006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_126952004','126952004','http://snomed.info/sct','Neoplasm of brain (disorder)','126952004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_126953009','126953009','http://snomed.info/sct','Neoplasm of cerebrum (disorder)','126953009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_126954003','126954003','http://snomed.info/sct','Neoplasm of frontal lobe (disorder)','126954003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_126955002','126955002','http://snomed.info/sct','Neoplasm of temporal lobe (disorder)','126955002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_126956001','126956001','http://snomed.info/sct','Neoplasm of parietal lobe (disorder)','126956001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_126957005','126957005','http://snomed.info/sct','Neoplasm of occipital lobe (disorder)','126957005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_126958000','126958000','http://snomed.info/sct','Neoplasm of cerebral ventricle (disorder)','126958000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_126959008','126959008','http://snomed.info/sct','Neoplasm of cerebral meninges (disorder)','126959008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_126960003','126960003','http://snomed.info/sct','Neoplasm of cerebellum (disorder)','126960003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_126961004','126961004','http://snomed.info/sct','Neoplasm of brain stem (disorder)','126961004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_126962006','126962006','http://snomed.info/sct','Neoplasm of spinal cord (disorder)','126962006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_126963001','126963001','http://snomed.info/sct','Neoplasm of cauda equina (disorder)','126963001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_126964007','126964007','http://snomed.info/sct','Neoplasm of spinal meninges (disorder)','126964007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_126965008','126965008','http://snomed.info/sct','Neoplasm of meninges (disorder)','126965008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_126966009','126966009','http://snomed.info/sct','Neoplasm of cranial nerve (disorder)','126966009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_126967000','126967000','http://snomed.info/sct','Neoplasm of olfactory nerve (disorder)','126967000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_126969002','126969002','http://snomed.info/sct','Neoplasm of oculomotor nerve (disorder)','126969002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_126970001','126970001','http://snomed.info/sct','Neoplasm of trochlear nerve (disorder)','126970001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_126971002','126971002','http://snomed.info/sct','Neoplasm of trigeminal nerve (disorder)','126971002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_126972009','126972009','http://snomed.info/sct','Neoplasm of abducens nerve (disorder)','126972009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_126976007','126976007','http://snomed.info/sct','Neoplasm of vagus nerve (disorder)','126976007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_126977003','126977003','http://snomed.info/sct','Neoplasm of accessory nerve (disorder)','126977003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_126978008','126978008','http://snomed.info/sct','Neoplasm of hypoglossal nerve (disorder)','126978008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_126984006','126984006','http://snomed.info/sct','Neoplasm of peripheral nerves of neck (disorder)','126984006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_127024001','127024001','http://snomed.info/sct','Neoplasm of pituitary gland (disorder)','127024001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_127025000','127025000','http://snomed.info/sct','Neoplasm of craniopharyngeal duct (disorder)','127025000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_127026004','127026004','http://snomed.info/sct','Neoplasm of pineal gland (disorder)','127026004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_135884009','135884009','http://snomed.info/sct','Benign neoplasm of pons (disorder)','135884009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_15863451000119107','15863451000119107','http://snomed.info/sct','Lipoma of brain (disorder)','15863451000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_16594841000119106','16594841000119106','http://snomed.info/sct','Acoustic neuroma of right vestibular nerve (disorder)','16594841000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_16594881000119101','16594881000119101','http://snomed.info/sct','Acoustic neuroma of left vestibular nerve (disorder)','16594881000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_189162003','189162003','http://snomed.info/sct','Benign neoplasm of brain, supratentorial (disorder)','189162003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_189164002','189164002','http://snomed.info/sct','Cerebral meningioma (disorder)','189164002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_189167009','189167009','http://snomed.info/sct','Spinal meningioma (disorder)','189167009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_230791000','230791000','http://snomed.info/sct','Hypothalamic neuronal hamartoma (disorder)','230791000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_237714006','237714006','http://snomed.info/sct','Hamartoma of hypothalamus (disorder)','237714006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_237719001','237719001','http://snomed.info/sct','Pituitary adenoma with extrasellar extension (disorder)','237719001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_237720007','237720007','http://snomed.info/sct','Hamartoma of pituitary and hypothalamus (disorder)','237720007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_237721006','237721006','http://snomed.info/sct','Tumor of pituitary and suprasellar region (disorder)','237721006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_254943007','254943007','http://snomed.info/sct','Benign tumor of choroid plexus (disorder)','254943007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_254956000','254956000','http://snomed.info/sct','Pituitary adenoma (disorder)','254956000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_254957009','254957009','http://snomed.info/sct','Somatotroph adenoma (disorder)','254957009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_254958004','254958004','http://snomed.info/sct','Corticotroph adenoma (disorder)','254958004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_254959007','254959007','http://snomed.info/sct','Thyrotroph adenoma (disorder)','254959007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_254960002','254960002','http://snomed.info/sct','Gonadotroph adenoma (disorder)','254960002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_254961003','254961003','http://snomed.info/sct','Mixed-functioning pituitary adenoma (disorder)','254961003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_254962005','254962005','http://snomed.info/sct','Functionless pituitary adenoma (disorder)','254962005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_254963000','254963000','http://snomed.info/sct','Pituitary microadenoma (disorder)','254963000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_254964006','254964006','http://snomed.info/sct','Pituitary mesoadenoma (disorder)','254964006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_254965007','254965007','http://snomed.info/sct','Pituitary macroadenoma (disorder)','254965007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_254966008','254966008','http://snomed.info/sct','Suprasellar extension of pituitary adenoma (disorder)','254966008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_254968009','254968009','http://snomed.info/sct','Tumor of hypothalamus (disorder)','254968009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_254970000','254970000','http://snomed.info/sct','Benign tumor of olfactory tract (disorder)','254970000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_254977002','254977002','http://snomed.info/sct','Benign neoplasm of optic nerve and nerve sheath (disorder)','254977002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_254978007','254978007','http://snomed.info/sct','Meningioma of optic nerve sheath (disorder)','254978007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_254979004','254979004','http://snomed.info/sct','Melanocytoma of optic nerve head (disorder)','254979004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_254981002','254981002','http://snomed.info/sct','Benign tumor of acoustic vestibular nerve (disorder)','254981002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_254982009','254982009','http://snomed.info/sct','Tumor of spinal nerve and sheath (disorder)','254982009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_255200003','255200003','http://snomed.info/sct','Benign tumor of hypothalamus (disorder)','255200003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_264906008','264906008','http://snomed.info/sct','Pituitary macroadenoma with extrasellar extension (disorder)','264906008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_271479005','271479005','http://snomed.info/sct','Benign neoplasm of pituitary gland and craniopharyngeal duct (disorder)','271479005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_275269004','275269004','http://snomed.info/sct','Benign cerebral tumor (disorder)','275269004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_277369003','277369003','http://snomed.info/sct','Hamartoma of brain (disorder)','277369003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_277522009','277522009','http://snomed.info/sct','Solitary fibrous tumor of meninges (disorder)','277522009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_277523004','277523004','http://snomed.info/sct','Primary melanocytic lesion of meninges (disorder)','277523004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_277527003','277527003','http://snomed.info/sct','Melanocytoma of meninges (disorder)','277527003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_2961000119106','2961000119106','http://snomed.info/sct','Acoustic neuroma of bilateral vestibular nerves (disorder)','2961000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_302820008','302820008','http://snomed.info/sct','Intracranial meningioma (disorder)','302820008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_34041000119108','34041000119108','http://snomed.info/sct','Benign neoplasm of extramedullary spinal cord (disorder)','34041000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_387891008','387891008','http://snomed.info/sct','Neoplasm of vestibulocochlear nerve (disorder)','387891008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_387893006','387893006','http://snomed.info/sct','Neoplasm of acoustic vestibular nerve (disorder)','387893006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_388871003','388871003','http://snomed.info/sct','Primary optic nerve sheath meningioma (disorder)','388871003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_388872005','388872005','http://snomed.info/sct','Secondary optic nerve sheath meningioma (disorder)','388872005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_395502002','395502002','http://snomed.info/sct','Neoplasm of optic nerve and sheath (disorder)','395502002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_395505000','395505000','http://snomed.info/sct','Neoplasm of optic nerve (disorder)','395505000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_414666009','414666009','http://snomed.info/sct','Meningioma of orbit (disorder)','414666009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_425868004','425868004','http://snomed.info/sct','Benign papilloma of choroid plexus (disorder)','425868004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_427939000','427939000','http://snomed.info/sct','Benign neoplasm of spinal extradural space (disorder)','427939000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_428089008','428089008','http://snomed.info/sct','Venous hemangioma of brain (disorder)','428089008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_429306002','429306002','http://snomed.info/sct','Benign neoplasm of spinal intradural intramedullary space (disorder)','429306002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_429691007','429691007','http://snomed.info/sct','Benign neoplasm of intradural space of spine (disorder)','429691007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_429765002','429765002','http://snomed.info/sct','Benign neoplasm of medulla oblongata (disorder)','429765002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_444869007','444869007','http://snomed.info/sct','Cavernous hemangioma of brain (disorder)','444869007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_445513004','445513004','http://snomed.info/sct','Intracranial cavernous hemangioma (disorder)','445513004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_446531000124106','446531000124106','http://snomed.info/sct','Meningioma of cerebellum (disorder)','446531000124106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_447655002','447655002','http://snomed.info/sct','Benign neoplastic cyst of brain (disorder)','447655002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_448135004','448135004','http://snomed.info/sct','Benign teratoma of pineal region (disorder)','448135004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_448148000','448148000','http://snomed.info/sct','Functioning pituitary neoplasm (disorder)','448148000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_448563005','448563005','http://snomed.info/sct','Functionless pituitary neoplasm (disorder)','448563005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_702375004','702375004','http://snomed.info/sct','Familial isolated pituitary adenoma (disorder)','702375004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_712858005','712858005','http://snomed.info/sct','Neoplasm of thoracic spinal nerve (disorder)','712858005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_713739004','713739004','http://snomed.info/sct','Neoplasm of lumbar spinal nerve (disorder)','713739004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_713747004','713747004','http://snomed.info/sct','Neoplasm of sacral spinal nerve (disorder)','713747004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_717003001','717003001','http://snomed.info/sct','Hereditary cavernous hemangioma of brain (disorder)','717003001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_724171006','724171006','http://snomed.info/sct','Benign meningioma (disorder)','724171006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_765202001','765202001','http://snomed.info/sct','Familial multiple benign meningioma (disorder)','765202001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_770628008','770628008','http://snomed.info/sct','Diffuse leptomeningeal melanocytosis (disorder)','770628008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_783008000','783008000','http://snomed.info/sct','Pituitary dermoid and epidermoid cysts (disorder)','783008000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_830015009','830015009','http://snomed.info/sct','Dermoid cyst of spinal cord (disorder)','830015009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_838304009','838304009','http://snomed.info/sct','Benign ependymoma of central nervous system (disorder)','838304009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_8551000119100','8551000119100','http://snomed.info/sct','Benign neoplasm of spinal intradural extramedullary space (disorder)','8551000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_91959004','91959004','http://snomed.info/sct','Benign neoplasm of abducens nerve (disorder)','91959004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_91960009','91960009','http://snomed.info/sct','Benign neoplasm of accessory nerve (disorder)','91960009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_91962001','91962001','http://snomed.info/sct','Benign neoplasm of vestibulocochlear nerve (disorder)','91962001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_92029009','92029009','http://snomed.info/sct','Benign neoplasm of brain stem (disorder)','92029009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_92030004','92030004','http://snomed.info/sct','Benign neoplasm of brain (disorder)','92030004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_92047003','92047003','http://snomed.info/sct','Benign neoplasm of cauda equina (disorder)','92047003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_92048008','92048008','http://snomed.info/sct','Benign neoplasm of central nervous system (disorder)','92048008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_92050000','92050000','http://snomed.info/sct','Benign neoplasm of cerebellum (disorder)','92050000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_92051001','92051001','http://snomed.info/sct','Benign neoplasm of cerebral meninges (disorder)','92051001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_92052008','92052008','http://snomed.info/sct','Benign neoplasm of cerebral ventricle (disorder)','92052008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_92071005','92071005','http://snomed.info/sct','Benign neoplasm of cranial nerve (disorder)','92071005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_92072003','92072003','http://snomed.info/sct','Benign neoplasm of craniopharyngeal duct (disorder)','92072003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_92099001','92099001','http://snomed.info/sct','Benign neoplasm of facial nerve (disorder)','92099001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_92114009','92114009','http://snomed.info/sct','Benign neoplasm of frontal lobe (disorder)','92114009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_92122002','92122002','http://snomed.info/sct','Benign neoplasm of glossopharyngeal nerve (disorder)','92122002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_92136007','92136007','http://snomed.info/sct','Benign neoplasm of hypoglossal nerve (disorder)','92136007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_92247009','92247009','http://snomed.info/sct','Benign neoplasm of nervous system (disorder)','92247009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_92253009','92253009','http://snomed.info/sct','Benign neoplasm of occipital lobe (disorder)','92253009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_92255002','92255002','http://snomed.info/sct','Benign neoplasm of oculomotor nerve (disorder)','92255002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_92256001','92256001','http://snomed.info/sct','Benign neoplasm of olfactory nerve (disorder)','92256001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_92257005','92257005','http://snomed.info/sct','Benign neoplasm of optic nerve (disorder)','92257005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_92276007','92276007','http://snomed.info/sct','Benign neoplasm of parietal lobe (disorder)','92276007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_92294001','92294001','http://snomed.info/sct','Benign neoplasm of pineal gland (disorder)','92294001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_92296004','92296004','http://snomed.info/sct','Benign neoplasm of pituitary gland (disorder)','92296004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_92405007','92405007','http://snomed.info/sct','Benign neoplasm of spinal cord (disorder)','92405007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_92406008','92406008','http://snomed.info/sct','Benign neoplasm of spinal meninges (disorder)','92406008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_92427003','92427003','http://snomed.info/sct','Benign neoplasm of temporal lobe (disorder)','92427003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_92451008','92451008','http://snomed.info/sct','Benign neoplasm of trigeminal nerve (disorder)','92451008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_92453006','92453006','http://snomed.info/sct','Benign neoplasm of trochlear nerve (disorder)','92453006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_92474007','92474007','http://snomed.info/sct','Benign neoplasm of vagus nerve (disorder)','92474007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1406_93468003','93468003','http://snomed.info/sct','Hemangioma of intracranial structure (disorder)','93468003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1403_D32.0','D32.0','http://hl7.org/fhir/sid/icd-10-cm','Benign neoplasm of cerebral meninges','D320','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1403_D32.1','D32.1','http://hl7.org/fhir/sid/icd-10-cm','Benign neoplasm of spinal meninges','D321','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1403_D32.9','D32.9','http://hl7.org/fhir/sid/icd-10-cm','Benign neoplasm of meninges, unspecified','D329','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1403_D33.0','D33.0','http://hl7.org/fhir/sid/icd-10-cm','Benign neoplasm of brain, supratentorial','D330','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1403_D33.1','D33.1','http://hl7.org/fhir/sid/icd-10-cm','Benign neoplasm of brain, infratentorial','D331','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1403_D33.2','D33.2','http://hl7.org/fhir/sid/icd-10-cm','Benign neoplasm of brain, unspecified','D332','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1403_D33.3','D33.3','http://hl7.org/fhir/sid/icd-10-cm','Benign neoplasm of cranial nerves','D333','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1403_D33.4','D33.4','http://hl7.org/fhir/sid/icd-10-cm','Benign neoplasm of spinal cord','D334','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1403_D33.7','D33.7','http://hl7.org/fhir/sid/icd-10-cm','Benign neoplasm of other specified parts of central nervous system','D337','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1403_D33.9','D33.9','http://hl7.org/fhir/sid/icd-10-cm','Benign neoplasm of central nervous system, unspecified','D339','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1403_D35.2','D35.2','http://hl7.org/fhir/sid/icd-10-cm','Benign neoplasm of pituitary gland','D352','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1403_D35.3','D35.3','http://hl7.org/fhir/sid/icd-10-cm','Benign neoplasm of craniopharyngeal duct','D353','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1403_D35.4','D35.4','http://hl7.org/fhir/sid/icd-10-cm','Benign neoplasm of pineal gland','D354','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1645_A24.0','A24.0','http://hl7.org/fhir/sid/icd-10-cm','Glanders','A240','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1766_J67.0','J67.0','http://hl7.org/fhir/sid/icd-10-cm','Farmer''s lung','J670','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C00.0','C00.0','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of external upper lip','C000','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C00.1','C00.1','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of external lower lip','C001','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C00.2','C00.2','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of external lip, unspecified','C002','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C00.3','C00.3','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of upper lip, inner aspect','C003','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C00.4','C00.4','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of lower lip, inner aspect','C004','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C00.5','C00.5','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of lip, unspecified, inner aspect','C005','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C00.6','C00.6','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of commissure of lip, unspecified','C006','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C00.8','C00.8','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of overlapping sites of lip','C008','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C00.9','C00.9','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of lip, unspecified','C009','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C01','C01','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of base of tongue','C01','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C02.0','C02.0','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of dorsal surface of tongue','C020','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C02.1','C02.1','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of border of tongue','C021','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C02.2','C02.2','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of ventral surface of tongue','C022','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C02.3','C02.3','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of anterior two-thirds of tongue, part unspecified','C023','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C02.4','C02.4','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of lingual tonsil','C024','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C02.8','C02.8','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of overlapping sites of tongue','C028','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C02.9','C02.9','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of tongue, unspecified','C029','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C03.0','C03.0','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of upper gum','C030','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C03.1','C03.1','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of lower gum','C031','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C03.9','C03.9','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of gum, unspecified','C039','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C04.0','C04.0','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of anterior floor of mouth','C040','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C04.1','C04.1','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of lateral floor of mouth','C041','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C04.8','C04.8','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of overlapping sites of floor of mouth','C048','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C04.9','C04.9','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of floor of mouth, unspecified','C049','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C05.0','C05.0','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of hard palate','C050','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C05.1','C05.1','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of soft palate','C051','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C05.2','C05.2','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of uvula','C052','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C05.8','C05.8','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of overlapping sites of palate','C058','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C05.9','C05.9','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of palate, unspecified','C059','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C06.0','C06.0','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of cheek mucosa','C060','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C06.1','C06.1','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of vestibule of mouth','C061','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C06.2','C06.2','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of retromolar area','C062','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C06.80','C06.80','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of overlapping sites of unspecified parts of mouth','C0680','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C06.89','C06.89','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of overlapping sites of other parts of mouth','C0689','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C06.9','C06.9','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of mouth, unspecified','C069','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C07','C07','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of parotid gland','C07','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C08.0','C08.0','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of submandibular gland','C080','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C08.1','C08.1','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of sublingual gland','C081','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C08.9','C08.9','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of major salivary gland, unspecified','C089','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C09.0','C09.0','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of tonsillar fossa','C090','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C09.1','C09.1','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of tonsillar pillar (anterior) (posterior)','C091','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C09.8','C09.8','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of overlapping sites of tonsil','C098','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C09.9','C09.9','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of tonsil, unspecified','C099','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C10.0','C10.0','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of vallecula','C100','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C10.1','C10.1','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of anterior surface of epiglottis','C101','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C10.2','C10.2','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of lateral wall of oropharynx','C102','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C10.3','C10.3','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of posterior wall of oropharynx','C103','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C10.4','C10.4','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of branchial cleft','C104','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C10.8','C10.8','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of overlapping sites of oropharynx','C108','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C10.9','C10.9','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of oropharynx, unspecified','C109','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C11.0','C11.0','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of superior wall of nasopharynx','C110','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C11.1','C11.1','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of posterior wall of nasopharynx','C111','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C11.2','C11.2','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of lateral wall of nasopharynx','C112','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C11.3','C11.3','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of anterior wall of nasopharynx','C113','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C11.8','C11.8','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of overlapping sites of nasopharynx','C118','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C11.9','C11.9','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of nasopharynx, unspecified','C119','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C12','C12','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of pyriform sinus','C12','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C13.0','C13.0','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of postcricoid region','C130','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C13.1','C13.1','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of aryepiglottic fold, hypopharyngeal aspect','C131','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C13.2','C13.2','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of posterior wall of hypopharynx','C132','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C13.8','C13.8','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of overlapping sites of hypopharynx','C138','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C13.9','C13.9','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of hypopharynx, unspecified','C139','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C14.0','C14.0','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of pharynx, unspecified','C140','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C14.2','C14.2','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of Waldeyer''s ring','C142','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C14.8','C14.8','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of overlapping sites of lip, oral cavity and pharynx','C148','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C15.3','C15.3','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of upper third of esophagus','C153','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C15.4','C15.4','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of middle third of esophagus','C154','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C15.5','C15.5','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of lower third of esophagus','C155','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C15.8','C15.8','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of overlapping sites of esophagus','C158','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C15.9','C15.9','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of esophagus, unspecified','C159','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C16.0','C16.0','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of cardia','C160','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C16.1','C16.1','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of fundus of stomach','C161','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C16.2','C16.2','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of body of stomach','C162','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C16.3','C16.3','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of pyloric antrum','C163','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C16.4','C16.4','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of pylorus','C164','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C16.5','C16.5','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of lesser curvature of stomach, unspecified','C165','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C16.6','C16.6','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of greater curvature of stomach, unspecified','C166','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C16.8','C16.8','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of overlapping sites of stomach','C168','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C16.9','C16.9','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of stomach, unspecified','C169','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C17.0','C17.0','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of duodenum','C170','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C17.1','C17.1','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of jejunum','C171','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C17.2','C17.2','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of ileum','C172','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C17.3','C17.3','http://hl7.org/fhir/sid/icd-10-cm','Meckel''s diverticulum, malignant','C173','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C17.8','C17.8','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of overlapping sites of small intestine','C178','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C17.9','C17.9','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of small intestine, unspecified','C179','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C18.0','C18.0','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of cecum','C180','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C18.1','C18.1','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of appendix','C181','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C18.2','C18.2','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of ascending colon','C182','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C18.3','C18.3','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of hepatic flexure','C183','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C18.4','C18.4','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of transverse colon','C184','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C18.5','C18.5','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of splenic flexure','C185','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C18.6','C18.6','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of descending colon','C186','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C18.7','C18.7','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of sigmoid colon','C187','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C18.8','C18.8','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of overlapping sites of colon','C188','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C18.9','C18.9','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of colon, unspecified','C189','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C19','C19','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of rectosigmoid junction','C19','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C20','C20','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of rectum','C20','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C21.0','C21.0','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of anus, unspecified','C210','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C21.1','C21.1','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of anal canal','C211','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C21.2','C21.2','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of cloacogenic zone','C212','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C21.8','C21.8','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of overlapping sites of rectum, anus and anal canal','C218','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C22.0','C22.0','http://hl7.org/fhir/sid/icd-10-cm','Liver cell carcinoma','C220','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C22.1','C22.1','http://hl7.org/fhir/sid/icd-10-cm','Intrahepatic bile duct carcinoma','C221','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C22.2','C22.2','http://hl7.org/fhir/sid/icd-10-cm','Hepatoblastoma','C222','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C22.3','C22.3','http://hl7.org/fhir/sid/icd-10-cm','Angiosarcoma of liver','C223','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C22.4','C22.4','http://hl7.org/fhir/sid/icd-10-cm','Other sarcomas of liver','C224','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C22.7','C22.7','http://hl7.org/fhir/sid/icd-10-cm','Other specified carcinomas of liver','C227','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C22.8','C22.8','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of liver, primary, unspecified as to type','C228','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C22.9','C22.9','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of liver, not specified as primary or secondary','C229','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C23','C23','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of gallbladder','C23','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C24.0','C24.0','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of extrahepatic bile duct','C240','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C24.1','C24.1','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of ampulla of Vater','C241','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C24.8','C24.8','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of overlapping sites of biliary tract','C248','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C24.9','C24.9','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of biliary tract, unspecified','C249','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C25.0','C25.0','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of head of pancreas','C250','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C25.1','C25.1','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of body of pancreas','C251','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C25.2','C25.2','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of tail of pancreas','C252','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C25.3','C25.3','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of pancreatic duct','C253','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C25.4','C25.4','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of endocrine pancreas','C254','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C25.7','C25.7','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of other parts of pancreas','C257','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C25.8','C25.8','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of overlapping sites of pancreas','C258','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C25.9','C25.9','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of pancreas, unspecified','C259','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C26.0','C26.0','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of intestinal tract, part unspecified','C260','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C26.1','C26.1','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of spleen','C261','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C26.9','C26.9','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of ill-defined sites within the digestive system','C269','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C30.0','C30.0','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of nasal cavity','C300','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C30.1','C30.1','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of middle ear','C301','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C31.0','C31.0','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of maxillary sinus','C310','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C31.1','C31.1','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of ethmoidal sinus','C311','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C31.2','C31.2','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of frontal sinus','C312','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C31.3','C31.3','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of sphenoid sinus','C313','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C31.8','C31.8','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of overlapping sites of accessory sinuses','C318','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C31.9','C31.9','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of accessory sinus, unspecified','C319','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C32.0','C32.0','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of glottis','C320','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C32.1','C32.1','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of supraglottis','C321','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C32.2','C32.2','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of subglottis','C322','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C32.3','C32.3','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of laryngeal cartilage','C323','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C32.8','C32.8','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of overlapping sites of larynx','C328','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C32.9','C32.9','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of larynx, unspecified','C329','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C33','C33','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of trachea','C33','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C34.00','C34.00','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of unspecified main bronchus','C3400','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C34.01','C34.01','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of right main bronchus','C3401','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C34.02','C34.02','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of left main bronchus','C3402','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C34.10','C34.10','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of upper lobe, unspecified bronchus or lung','C3410','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C34.11','C34.11','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of upper lobe, right bronchus or lung','C3411','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C34.12','C34.12','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of upper lobe, left bronchus or lung','C3412','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C34.2','C34.2','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of middle lobe, bronchus or lung','C342','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C34.30','C34.30','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of lower lobe, unspecified bronchus or lung','C3430','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C34.31','C34.31','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of lower lobe, right bronchus or lung','C3431','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C34.32','C34.32','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of lower lobe, left bronchus or lung','C3432','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C34.80','C34.80','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of overlapping sites of unspecified bronchus and lung','C3480','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C34.81','C34.81','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of overlapping sites of right bronchus and lung','C3481','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C34.82','C34.82','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of overlapping sites of left bronchus and lung','C3482','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C34.90','C34.90','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of unspecified part of unspecified bronchus or lung','C3490','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C34.91','C34.91','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of unspecified part of right bronchus or lung','C3491','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C34.92','C34.92','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of unspecified part of left bronchus or lung','C3492','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C37','C37','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of thymus','C37','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C38.0','C38.0','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of heart','C380','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C38.1','C38.1','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of anterior mediastinum','C381','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C38.2','C38.2','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of posterior mediastinum','C382','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C38.3','C38.3','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of mediastinum, part unspecified','C383','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C38.4','C38.4','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of pleura','C384','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C38.8','C38.8','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of overlapping sites of heart, mediastinum and pleura','C388','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C39.0','C39.0','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of upper respiratory tract, part unspecified','C390','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C39.9','C39.9','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of lower respiratory tract, part unspecified','C399','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C40.00','C40.00','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of scapula and long bones of unspecified upper limb','C4000','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C40.01','C40.01','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of scapula and long bones of right upper limb','C4001','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C40.02','C40.02','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of scapula and long bones of left upper limb','C4002','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C40.10','C40.10','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of short bones of unspecified upper limb','C4010','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C40.11','C40.11','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of short bones of right upper limb','C4011','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C40.12','C40.12','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of short bones of left upper limb','C4012','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C40.20','C40.20','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of long bones of unspecified lower limb','C4020','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C40.21','C40.21','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of long bones of right lower limb','C4021','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C40.22','C40.22','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of long bones of left lower limb','C4022','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C40.30','C40.30','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of short bones of unspecified lower limb','C4030','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C40.31','C40.31','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of short bones of right lower limb','C4031','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C40.32','C40.32','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of short bones of left lower limb','C4032','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C40.80','C40.80','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of overlapping sites of bone and articular cartilage of unspecified limb','C4080','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C40.81','C40.81','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of overlapping sites of bone and articular cartilage of right limb','C4081','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C40.82','C40.82','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of overlapping sites of bone and articular cartilage of left limb','C4082','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C40.90','C40.90','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of unspecified bones and articular cartilage of unspecified limb','C4090','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C40.91','C40.91','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of unspecified bones and articular cartilage of right limb','C4091','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C40.92','C40.92','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of unspecified bones and articular cartilage of left limb','C4092','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C41.0','C41.0','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of bones of skull and face','C410','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C41.1','C41.1','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of mandible','C411','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C41.2','C41.2','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of vertebral column','C412','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C41.3','C41.3','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of ribs, sternum and clavicle','C413','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C41.4','C41.4','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of pelvic bones, sacrum and coccyx','C414','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C41.9','C41.9','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of bone and articular cartilage, unspecified','C419','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C43.0','C43.0','http://hl7.org/fhir/sid/icd-10-cm','Malignant melanoma of lip','C430','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C43.10','C43.10','http://hl7.org/fhir/sid/icd-10-cm','Malignant melanoma of unspecified eyelid, including canthus','C4310','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C43.111','C43.111','http://hl7.org/fhir/sid/icd-10-cm','Malignant melanoma of right upper eyelid, including canthus','C43111','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C43.112','C43.112','http://hl7.org/fhir/sid/icd-10-cm','Malignant melanoma of right lower eyelid, including canthus','C43112','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C43.121','C43.121','http://hl7.org/fhir/sid/icd-10-cm','Malignant melanoma of left upper eyelid, including canthus','C43121','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C43.122','C43.122','http://hl7.org/fhir/sid/icd-10-cm','Malignant melanoma of left lower eyelid, including canthus','C43122','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C43.20','C43.20','http://hl7.org/fhir/sid/icd-10-cm','Malignant melanoma of unspecified ear and external auricular canal','C4320','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C43.21','C43.21','http://hl7.org/fhir/sid/icd-10-cm','Malignant melanoma of right ear and external auricular canal','C4321','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C43.22','C43.22','http://hl7.org/fhir/sid/icd-10-cm','Malignant melanoma of left ear and external auricular canal','C4322','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C43.30','C43.30','http://hl7.org/fhir/sid/icd-10-cm','Malignant melanoma of unspecified part of face','C4330','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C43.31','C43.31','http://hl7.org/fhir/sid/icd-10-cm','Malignant melanoma of nose','C4331','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C43.39','C43.39','http://hl7.org/fhir/sid/icd-10-cm','Malignant melanoma of other parts of face','C4339','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C43.4','C43.4','http://hl7.org/fhir/sid/icd-10-cm','Malignant melanoma of scalp and neck','C434','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C43.51','C43.51','http://hl7.org/fhir/sid/icd-10-cm','Malignant melanoma of anal skin','C4351','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C43.52','C43.52','http://hl7.org/fhir/sid/icd-10-cm','Malignant melanoma of skin of breast','C4352','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C43.59','C43.59','http://hl7.org/fhir/sid/icd-10-cm','Malignant melanoma of other part of trunk','C4359','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C43.60','C43.60','http://hl7.org/fhir/sid/icd-10-cm','Malignant melanoma of unspecified upper limb, including shoulder','C4360','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C43.61','C43.61','http://hl7.org/fhir/sid/icd-10-cm','Malignant melanoma of right upper limb, including shoulder','C4361','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C43.62','C43.62','http://hl7.org/fhir/sid/icd-10-cm','Malignant melanoma of left upper limb, including shoulder','C4362','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C43.70','C43.70','http://hl7.org/fhir/sid/icd-10-cm','Malignant melanoma of unspecified lower limb, including hip','C4370','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C43.71','C43.71','http://hl7.org/fhir/sid/icd-10-cm','Malignant melanoma of right lower limb, including hip','C4371','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C43.72','C43.72','http://hl7.org/fhir/sid/icd-10-cm','Malignant melanoma of left lower limb, including hip','C4372','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C43.8','C43.8','http://hl7.org/fhir/sid/icd-10-cm','Malignant melanoma of overlapping sites of skin','C438','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C43.9','C43.9','http://hl7.org/fhir/sid/icd-10-cm','Malignant melanoma of skin, unspecified','C439','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C44.131','C44.131','http://hl7.org/fhir/sid/icd-10-cm','Sebaceous cell carcinoma of skin of unspecified eyelid, including canthus','C44131','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C44.1321','C44.1321','http://hl7.org/fhir/sid/icd-10-cm','Sebaceous cell carcinoma of skin of right upper eyelid, including canthus','C441321','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C44.1322','C44.1322','http://hl7.org/fhir/sid/icd-10-cm','Sebaceous cell carcinoma of skin of right lower eyelid, including canthus','C441322','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C44.1391','C44.1391','http://hl7.org/fhir/sid/icd-10-cm','Sebaceous cell carcinoma of skin of left upper eyelid, including canthus','C441391','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C44.1392','C44.1392','http://hl7.org/fhir/sid/icd-10-cm','Sebaceous cell carcinoma of skin of left lower eyelid, including canthus','C441392','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C44.90','C44.90','http://hl7.org/fhir/sid/icd-10-cm','Unspecified malignant neoplasm of skin, unspecified','C4490','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C44.99','C44.99','http://hl7.org/fhir/sid/icd-10-cm','Other specified malignant neoplasm of skin, unspecified','C4499','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C45.0','C45.0','http://hl7.org/fhir/sid/icd-10-cm','Mesothelioma of pleura','C450','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C45.1','C45.1','http://hl7.org/fhir/sid/icd-10-cm','Mesothelioma of peritoneum','C451','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C45.2','C45.2','http://hl7.org/fhir/sid/icd-10-cm','Mesothelioma of pericardium','C452','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C45.7','C45.7','http://hl7.org/fhir/sid/icd-10-cm','Mesothelioma of other sites','C457','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C45.9','C45.9','http://hl7.org/fhir/sid/icd-10-cm','Mesothelioma, unspecified','C459','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C46.0','C46.0','http://hl7.org/fhir/sid/icd-10-cm','Kaposi''s sarcoma of skin','C460','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C46.1','C46.1','http://hl7.org/fhir/sid/icd-10-cm','Kaposi''s sarcoma of soft tissue','C461','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C46.2','C46.2','http://hl7.org/fhir/sid/icd-10-cm','Kaposi''s sarcoma of palate','C462','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C46.3','C46.3','http://hl7.org/fhir/sid/icd-10-cm','Kaposi''s sarcoma of lymph nodes','C463','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C46.4','C46.4','http://hl7.org/fhir/sid/icd-10-cm','Kaposi''s sarcoma of gastrointestinal sites','C464','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C46.50','C46.50','http://hl7.org/fhir/sid/icd-10-cm','Kaposi''s sarcoma of unspecified lung','C4650','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C46.51','C46.51','http://hl7.org/fhir/sid/icd-10-cm','Kaposi''s sarcoma of right lung','C4651','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C46.52','C46.52','http://hl7.org/fhir/sid/icd-10-cm','Kaposi''s sarcoma of left lung','C4652','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C46.7','C46.7','http://hl7.org/fhir/sid/icd-10-cm','Kaposi''s sarcoma of other sites','C467','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C46.9','C46.9','http://hl7.org/fhir/sid/icd-10-cm','Kaposi''s sarcoma, unspecified','C469','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C47.0','C47.0','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of peripheral nerves of head, face and neck','C470','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C47.10','C47.10','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of peripheral nerves of unspecified upper limb, including shoulder','C4710','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C47.11','C47.11','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of peripheral nerves of right upper limb, including shoulder','C4711','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C47.12','C47.12','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of peripheral nerves of left upper limb, including shoulder','C4712','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C47.20','C47.20','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of peripheral nerves of unspecified lower limb, including hip','C4720','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C47.21','C47.21','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of peripheral nerves of right lower limb, including hip','C4721','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C47.22','C47.22','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of peripheral nerves of left lower limb, including hip','C4722','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C47.3','C47.3','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of peripheral nerves of thorax','C473','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C47.4','C47.4','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of peripheral nerves of abdomen','C474','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C47.5','C47.5','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of peripheral nerves of pelvis','C475','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C47.6','C47.6','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of peripheral nerves of trunk, unspecified','C476','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C47.8','C47.8','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of overlapping sites of peripheral nerves and autonomic nervous system','C478','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C47.9','C47.9','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of peripheral nerves and autonomic nervous system, unspecified','C479','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C48.0','C48.0','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of retroperitoneum','C480','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C48.1','C48.1','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of specified parts of peritoneum','C481','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C48.2','C48.2','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of peritoneum, unspecified','C482','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C48.8','C48.8','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of overlapping sites of retroperitoneum and peritoneum','C488','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C49.0','C49.0','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of connective and soft tissue of head, face and neck','C490','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C49.10','C49.10','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of connective and soft tissue of unspecified upper limb, including shoulder','C4910','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C49.11','C49.11','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of connective and soft tissue of right upper limb, including shoulder','C4911','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C49.12','C49.12','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of connective and soft tissue of left upper limb, including shoulder','C4912','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C49.20','C49.20','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of connective and soft tissue of unspecified lower limb, including hip','C4920','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C49.21','C49.21','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of connective and soft tissue of right lower limb, including hip','C4921','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C49.22','C49.22','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of connective and soft tissue of left lower limb, including hip','C4922','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C49.3','C49.3','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of connective and soft tissue of thorax','C493','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C49.4','C49.4','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of connective and soft tissue of abdomen','C494','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C49.5','C49.5','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of connective and soft tissue of pelvis','C495','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C49.6','C49.6','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of connective and soft tissue of trunk, unspecified','C496','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C49.8','C49.8','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of overlapping sites of connective and soft tissue','C498','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C49.9','C49.9','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of connective and soft tissue, unspecified','C499','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C49.A0','C49.A0','http://hl7.org/fhir/sid/icd-10-cm','Gastrointestinal stromal tumor, unspecified site','C49A0','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C49.A1','C49.A1','http://hl7.org/fhir/sid/icd-10-cm','Gastrointestinal stromal tumor of esophagus','C49A1','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C49.A2','C49.A2','http://hl7.org/fhir/sid/icd-10-cm','Gastrointestinal stromal tumor of stomach','C49A2','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C49.A3','C49.A3','http://hl7.org/fhir/sid/icd-10-cm','Gastrointestinal stromal tumor of small intestine','C49A3','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C49.A4','C49.A4','http://hl7.org/fhir/sid/icd-10-cm','Gastrointestinal stromal tumor of large intestine','C49A4','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C49.A5','C49.A5','http://hl7.org/fhir/sid/icd-10-cm','Gastrointestinal stromal tumor of rectum','C49A5','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C49.A9','C49.A9','http://hl7.org/fhir/sid/icd-10-cm','Gastrointestinal stromal tumor of other sites','C49A9','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C4A.0','C4A.0','http://hl7.org/fhir/sid/icd-10-cm','Merkel cell carcinoma of lip','C4A0','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C4A.10','C4A.10','http://hl7.org/fhir/sid/icd-10-cm','Merkel cell carcinoma of unspecified eyelid, including canthus','C4A10','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C4A.111','C4A.111','http://hl7.org/fhir/sid/icd-10-cm','Merkel cell carcinoma of right upper eyelid, including canthus','C4A111','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C4A.112','C4A.112','http://hl7.org/fhir/sid/icd-10-cm','Merkel cell carcinoma of right lower eyelid, including canthus','C4A112','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C4A.121','C4A.121','http://hl7.org/fhir/sid/icd-10-cm','Merkel cell carcinoma of left upper eyelid, including canthus','C4A121','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C4A.122','C4A.122','http://hl7.org/fhir/sid/icd-10-cm','Merkel cell carcinoma of left lower eyelid, including canthus','C4A122','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C4A.20','C4A.20','http://hl7.org/fhir/sid/icd-10-cm','Merkel cell carcinoma of unspecified ear and external auricular canal','C4A20','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C4A.21','C4A.21','http://hl7.org/fhir/sid/icd-10-cm','Merkel cell carcinoma of right ear and external auricular canal','C4A21','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C4A.22','C4A.22','http://hl7.org/fhir/sid/icd-10-cm','Merkel cell carcinoma of left ear and external auricular canal','C4A22','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C4A.30','C4A.30','http://hl7.org/fhir/sid/icd-10-cm','Merkel cell carcinoma of unspecified part of face','C4A30','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C4A.31','C4A.31','http://hl7.org/fhir/sid/icd-10-cm','Merkel cell carcinoma of nose','C4A31','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C4A.39','C4A.39','http://hl7.org/fhir/sid/icd-10-cm','Merkel cell carcinoma of other parts of face','C4A39','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C4A.4','C4A.4','http://hl7.org/fhir/sid/icd-10-cm','Merkel cell carcinoma of scalp and neck','C4A4','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C4A.51','C4A.51','http://hl7.org/fhir/sid/icd-10-cm','Merkel cell carcinoma of anal skin','C4A51','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C4A.52','C4A.52','http://hl7.org/fhir/sid/icd-10-cm','Merkel cell carcinoma of skin of breast','C4A52','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C4A.59','C4A.59','http://hl7.org/fhir/sid/icd-10-cm','Merkel cell carcinoma of other part of trunk','C4A59','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C4A.60','C4A.60','http://hl7.org/fhir/sid/icd-10-cm','Merkel cell carcinoma of unspecified upper limb, including shoulder','C4A60','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C4A.61','C4A.61','http://hl7.org/fhir/sid/icd-10-cm','Merkel cell carcinoma of right upper limb, including shoulder','C4A61','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C4A.62','C4A.62','http://hl7.org/fhir/sid/icd-10-cm','Merkel cell carcinoma of left upper limb, including shoulder','C4A62','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C4A.70','C4A.70','http://hl7.org/fhir/sid/icd-10-cm','Merkel cell carcinoma of unspecified lower limb, including hip','C4A70','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C4A.71','C4A.71','http://hl7.org/fhir/sid/icd-10-cm','Merkel cell carcinoma of right lower limb, including hip','C4A71','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C4A.72','C4A.72','http://hl7.org/fhir/sid/icd-10-cm','Merkel cell carcinoma of left lower limb, including hip','C4A72','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C4A.8','C4A.8','http://hl7.org/fhir/sid/icd-10-cm','Merkel cell carcinoma of overlapping sites','C4A8','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C4A.9','C4A.9','http://hl7.org/fhir/sid/icd-10-cm','Merkel cell carcinoma, unspecified','C4A9','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C50.011','C50.011','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of nipple and areola, right female breast','C50011','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C50.012','C50.012','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of nipple and areola, left female breast','C50012','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C50.019','C50.019','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of nipple and areola, unspecified female breast','C50019','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C50.021','C50.021','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of nipple and areola, right male breast','C50021','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C50.022','C50.022','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of nipple and areola, left male breast','C50022','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C50.029','C50.029','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of nipple and areola, unspecified male breast','C50029','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C50.111','C50.111','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of central portion of right female breast','C50111','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C50.112','C50.112','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of central portion of left female breast','C50112','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C50.119','C50.119','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of central portion of unspecified female breast','C50119','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C50.121','C50.121','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of central portion of right male breast','C50121','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C50.122','C50.122','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of central portion of left male breast','C50122','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C50.129','C50.129','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of central portion of unspecified male breast','C50129','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C50.211','C50.211','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of upper-inner quadrant of right female breast','C50211','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C50.212','C50.212','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of upper-inner quadrant of left female breast','C50212','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C50.219','C50.219','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of upper-inner quadrant of unspecified female breast','C50219','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C50.221','C50.221','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of upper-inner quadrant of right male breast','C50221','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C50.222','C50.222','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of upper-inner quadrant of left male breast','C50222','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C50.229','C50.229','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of upper-inner quadrant of unspecified male breast','C50229','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C50.311','C50.311','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of lower-inner quadrant of right female breast','C50311','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C50.312','C50.312','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of lower-inner quadrant of left female breast','C50312','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C50.319','C50.319','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of lower-inner quadrant of unspecified female breast','C50319','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C50.321','C50.321','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of lower-inner quadrant of right male breast','C50321','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C50.322','C50.322','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of lower-inner quadrant of left male breast','C50322','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C50.329','C50.329','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of lower-inner quadrant of unspecified male breast','C50329','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C50.411','C50.411','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of upper-outer quadrant of right female breast','C50411','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C50.412','C50.412','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of upper-outer quadrant of left female breast','C50412','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C50.419','C50.419','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of upper-outer quadrant of unspecified female breast','C50419','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C50.421','C50.421','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of upper-outer quadrant of right male breast','C50421','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C50.422','C50.422','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of upper-outer quadrant of left male breast','C50422','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C50.429','C50.429','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of upper-outer quadrant of unspecified male breast','C50429','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C50.511','C50.511','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of lower-outer quadrant of right female breast','C50511','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C50.512','C50.512','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of lower-outer quadrant of left female breast','C50512','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C50.519','C50.519','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of lower-outer quadrant of unspecified female breast','C50519','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C50.521','C50.521','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of lower-outer quadrant of right male breast','C50521','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C50.522','C50.522','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of lower-outer quadrant of left male breast','C50522','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C50.529','C50.529','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of lower-outer quadrant of unspecified male breast','C50529','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C50.611','C50.611','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of axillary tail of right female breast','C50611','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C50.612','C50.612','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of axillary tail of left female breast','C50612','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C50.619','C50.619','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of axillary tail of unspecified female breast','C50619','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C50.621','C50.621','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of axillary tail of right male breast','C50621','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C50.622','C50.622','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of axillary tail of left male breast','C50622','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C50.629','C50.629','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of axillary tail of unspecified male breast','C50629','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C50.811','C50.811','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of overlapping sites of right female breast','C50811','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C50.812','C50.812','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of overlapping sites of left female breast','C50812','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C50.819','C50.819','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of overlapping sites of unspecified female breast','C50819','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C50.821','C50.821','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of overlapping sites of right male breast','C50821','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C50.822','C50.822','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of overlapping sites of left male breast','C50822','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C50.829','C50.829','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of overlapping sites of unspecified male breast','C50829','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C50.911','C50.911','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of unspecified site of right female breast','C50911','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C50.912','C50.912','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of unspecified site of left female breast','C50912','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C50.919','C50.919','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of unspecified site of unspecified female breast','C50919','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C50.921','C50.921','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of unspecified site of right male breast','C50921','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C50.922','C50.922','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of unspecified site of left male breast','C50922','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C50.929','C50.929','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of unspecified site of unspecified male breast','C50929','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C51.0','C51.0','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of labium majus','C510','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C51.1','C51.1','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of labium minus','C511','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C51.2','C51.2','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of clitoris','C512','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C51.8','C51.8','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of overlapping sites of vulva','C518','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C51.9','C51.9','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of vulva, unspecified','C519','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C52','C52','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of vagina','C52','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C53.0','C53.0','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of endocervix','C530','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C53.1','C53.1','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of exocervix','C531','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C53.8','C53.8','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of overlapping sites of cervix uteri','C538','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C53.9','C53.9','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of cervix uteri, unspecified','C539','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C54.0','C54.0','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of isthmus uteri','C540','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C54.1','C54.1','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of endometrium','C541','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C54.2','C54.2','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of myometrium','C542','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C54.3','C54.3','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of fundus uteri','C543','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C54.8','C54.8','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of overlapping sites of corpus uteri','C548','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C54.9','C54.9','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of corpus uteri, unspecified','C549','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C55','C55','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of uterus, part unspecified','C55','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C56.1','C56.1','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of right ovary','C561','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C56.2','C56.2','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of left ovary','C562','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C56.3','C56.3','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of bilateral ovaries','C563','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C56.9','C56.9','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of unspecified ovary','C569','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C57.00','C57.00','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of unspecified fallopian tube','C5700','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C57.01','C57.01','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of right fallopian tube','C5701','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C57.02','C57.02','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of left fallopian tube','C5702','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C57.10','C57.10','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of unspecified broad ligament','C5710','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C57.11','C57.11','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of right broad ligament','C5711','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C57.12','C57.12','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of left broad ligament','C5712','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C57.20','C57.20','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of unspecified round ligament','C5720','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C57.21','C57.21','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of right round ligament','C5721','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C57.22','C57.22','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of left round ligament','C5722','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C57.3','C57.3','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of parametrium','C573','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C57.4','C57.4','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of uterine adnexa, unspecified','C574','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C57.7','C57.7','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of other specified female genital organs','C577','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C57.8','C57.8','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of overlapping sites of female genital organs','C578','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C57.9','C57.9','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of female genital organ, unspecified','C579','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C58','C58','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of placenta','C58','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C60.0','C60.0','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of prepuce','C600','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C60.1','C60.1','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of glans penis','C601','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C60.2','C60.2','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of body of penis','C602','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C60.8','C60.8','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of overlapping sites of penis','C608','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C60.9','C60.9','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of penis, unspecified','C609','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C61','C61','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of prostate','C61','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C62.00','C62.00','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of unspecified undescended testis','C6200','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C62.01','C62.01','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of undescended right testis','C6201','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C62.02','C62.02','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of undescended left testis','C6202','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C62.10','C62.10','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of unspecified descended testis','C6210','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C62.11','C62.11','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of descended right testis','C6211','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C62.12','C62.12','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of descended left testis','C6212','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C62.90','C62.90','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of unspecified testis, unspecified whether descended or undescended','C6290','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C62.91','C62.91','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of right testis, unspecified whether descended or undescended','C6291','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C62.92','C62.92','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of left testis, unspecified whether descended or undescended','C6292','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C63.00','C63.00','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of unspecified epididymis','C6300','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C63.01','C63.01','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of right epididymis','C6301','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C63.02','C63.02','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of left epididymis','C6302','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C63.10','C63.10','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of unspecified spermatic cord','C6310','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C63.11','C63.11','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of right spermatic cord','C6311','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C63.12','C63.12','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of left spermatic cord','C6312','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C63.2','C63.2','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of scrotum','C632','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C63.7','C63.7','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of other specified male genital organs','C637','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C63.8','C63.8','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of overlapping sites of male genital organs','C638','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C63.9','C63.9','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of male genital organ, unspecified','C639','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C64.1','C64.1','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of right kidney, except renal pelvis','C641','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C64.2','C64.2','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of left kidney, except renal pelvis','C642','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C64.9','C64.9','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of unspecified kidney, except renal pelvis','C649','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C65.1','C65.1','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of right renal pelvis','C651','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C65.2','C65.2','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of left renal pelvis','C652','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C65.9','C65.9','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of unspecified renal pelvis','C659','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C66.1','C66.1','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of right ureter','C661','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C66.2','C66.2','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of left ureter','C662','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C66.9','C66.9','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of unspecified ureter','C669','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C67.0','C67.0','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of trigone of bladder','C670','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C67.1','C67.1','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of dome of bladder','C671','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C67.2','C67.2','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of lateral wall of bladder','C672','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C67.3','C67.3','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of anterior wall of bladder','C673','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C67.4','C67.4','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of posterior wall of bladder','C674','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C67.5','C67.5','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of bladder neck','C675','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C67.6','C67.6','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of ureteric orifice','C676','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C67.7','C67.7','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of urachus','C677','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C67.8','C67.8','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of overlapping sites of bladder','C678','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C67.9','C67.9','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of bladder, unspecified','C679','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C68.0','C68.0','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of urethra','C680','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C68.1','C68.1','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of paraurethral glands','C681','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C68.8','C68.8','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of overlapping sites of urinary organs','C688','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C68.9','C68.9','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of urinary organ, unspecified','C689','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C69.00','C69.00','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of unspecified conjunctiva','C6900','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C69.01','C69.01','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of right conjunctiva','C6901','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C69.02','C69.02','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of left conjunctiva','C6902','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C69.10','C69.10','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of unspecified cornea','C6910','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C69.11','C69.11','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of right cornea','C6911','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C69.12','C69.12','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of left cornea','C6912','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C69.20','C69.20','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of unspecified retina','C6920','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C69.21','C69.21','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of right retina','C6921','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C69.22','C69.22','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of left retina','C6922','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C69.30','C69.30','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of unspecified choroid','C6930','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C69.31','C69.31','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of right choroid','C6931','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C69.32','C69.32','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of left choroid','C6932','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C69.40','C69.40','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of unspecified ciliary body','C6940','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C69.41','C69.41','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of right ciliary body','C6941','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C69.42','C69.42','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of left ciliary body','C6942','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C69.50','C69.50','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of unspecified lacrimal gland and duct','C6950','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C69.51','C69.51','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of right lacrimal gland and duct','C6951','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C69.52','C69.52','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of left lacrimal gland and duct','C6952','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C69.60','C69.60','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of unspecified orbit','C6960','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C69.61','C69.61','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of right orbit','C6961','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C69.62','C69.62','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of left orbit','C6962','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C69.80','C69.80','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of overlapping sites of unspecified eye and adnexa','C6980','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C69.81','C69.81','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of overlapping sites of right eye and adnexa','C6981','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C69.82','C69.82','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of overlapping sites of left eye and adnexa','C6982','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C69.90','C69.90','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of unspecified site of unspecified eye','C6990','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C69.91','C69.91','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of unspecified site of right eye','C6991','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C69.92','C69.92','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of unspecified site of left eye','C6992','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C70.0','C70.0','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of cerebral meninges','C700','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C70.1','C70.1','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of spinal meninges','C701','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C70.9','C70.9','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of meninges, unspecified','C709','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C71.0','C71.0','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of cerebrum, except lobes and ventricles','C710','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C71.1','C71.1','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of frontal lobe','C711','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C71.2','C71.2','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of temporal lobe','C712','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C71.3','C71.3','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of parietal lobe','C713','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C71.4','C71.4','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of occipital lobe','C714','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C71.5','C71.5','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of cerebral ventricle','C715','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C71.6','C71.6','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of cerebellum','C716','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C71.7','C71.7','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of brain stem','C717','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C71.8','C71.8','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of overlapping sites of brain','C718','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C71.9','C71.9','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of brain, unspecified','C719','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C72.0','C72.0','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of spinal cord','C720','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C72.1','C72.1','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of cauda equina','C721','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C72.20','C72.20','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of unspecified olfactory nerve','C7220','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C72.21','C72.21','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of right olfactory nerve','C7221','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C72.22','C72.22','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of left olfactory nerve','C7222','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C72.30','C72.30','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of unspecified optic nerve','C7230','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C72.31','C72.31','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of right optic nerve','C7231','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C72.32','C72.32','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of left optic nerve','C7232','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C72.40','C72.40','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of unspecified acoustic nerve','C7240','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C72.41','C72.41','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of right acoustic nerve','C7241','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C72.42','C72.42','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of left acoustic nerve','C7242','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C72.50','C72.50','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of unspecified cranial nerve','C7250','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C72.59','C72.59','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of other cranial nerves','C7259','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C72.9','C72.9','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of central nervous system, unspecified','C729','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C73','C73','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of thyroid gland','C73','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C74.00','C74.00','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of cortex of unspecified adrenal gland','C7400','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C74.01','C74.01','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of cortex of right adrenal gland','C7401','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C74.02','C74.02','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of cortex of left adrenal gland','C7402','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C74.10','C74.10','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of medulla of unspecified adrenal gland','C7410','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C74.11','C74.11','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of medulla of right adrenal gland','C7411','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C74.12','C74.12','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of medulla of left adrenal gland','C7412','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C74.90','C74.90','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of unspecified part of unspecified adrenal gland','C7490','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C74.91','C74.91','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of unspecified part of right adrenal gland','C7491','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C74.92','C74.92','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of unspecified part of left adrenal gland','C7492','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C75.0','C75.0','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of parathyroid gland','C750','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C75.1','C75.1','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of pituitary gland','C751','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C75.2','C75.2','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of craniopharyngeal duct','C752','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C75.3','C75.3','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of pineal gland','C753','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C75.4','C75.4','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of carotid body','C754','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C75.5','C75.5','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of aortic body and other paraganglia','C755','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C75.8','C75.8','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm with pluriglandular involvement, unspecified','C758','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C75.9','C75.9','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of endocrine gland, unspecified','C759','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C76.0','C76.0','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of head, face and neck','C760','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C76.1','C76.1','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of thorax','C761','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C76.2','C76.2','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of abdomen','C762','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C76.3','C76.3','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of pelvis','C763','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C76.40','C76.40','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of unspecified upper limb','C7640','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C76.41','C76.41','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of right upper limb','C7641','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C76.42','C76.42','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of left upper limb','C7642','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C76.50','C76.50','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of unspecified lower limb','C7650','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C76.51','C76.51','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of right lower limb','C7651','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C76.52','C76.52','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of left lower limb','C7652','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C76.8','C76.8','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of other specified ill-defined sites','C768','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C77.0','C77.0','http://hl7.org/fhir/sid/icd-10-cm','Secondary and unspecified malignant neoplasm of lymph nodes of head, face and neck','C770','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C77.1','C77.1','http://hl7.org/fhir/sid/icd-10-cm','Secondary and unspecified malignant neoplasm of intrathoracic lymph nodes','C771','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C77.2','C77.2','http://hl7.org/fhir/sid/icd-10-cm','Secondary and unspecified malignant neoplasm of intra-abdominal lymph nodes','C772','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C77.3','C77.3','http://hl7.org/fhir/sid/icd-10-cm','Secondary and unspecified malignant neoplasm of axilla and upper limb lymph nodes','C773','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C77.4','C77.4','http://hl7.org/fhir/sid/icd-10-cm','Secondary and unspecified malignant neoplasm of inguinal and lower limb lymph nodes','C774','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C77.5','C77.5','http://hl7.org/fhir/sid/icd-10-cm','Secondary and unspecified malignant neoplasm of intrapelvic lymph nodes','C775','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C77.8','C77.8','http://hl7.org/fhir/sid/icd-10-cm','Secondary and unspecified malignant neoplasm of lymph nodes of multiple regions','C778','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C77.9','C77.9','http://hl7.org/fhir/sid/icd-10-cm','Secondary and unspecified malignant neoplasm of lymph node, unspecified','C779','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C78.00','C78.00','http://hl7.org/fhir/sid/icd-10-cm','Secondary malignant neoplasm of unspecified lung','C7800','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C78.01','C78.01','http://hl7.org/fhir/sid/icd-10-cm','Secondary malignant neoplasm of right lung','C7801','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C78.02','C78.02','http://hl7.org/fhir/sid/icd-10-cm','Secondary malignant neoplasm of left lung','C7802','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C78.1','C78.1','http://hl7.org/fhir/sid/icd-10-cm','Secondary malignant neoplasm of mediastinum','C781','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C78.2','C78.2','http://hl7.org/fhir/sid/icd-10-cm','Secondary malignant neoplasm of pleura','C782','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C78.30','C78.30','http://hl7.org/fhir/sid/icd-10-cm','Secondary malignant neoplasm of unspecified respiratory organ','C7830','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C78.39','C78.39','http://hl7.org/fhir/sid/icd-10-cm','Secondary malignant neoplasm of other respiratory organs','C7839','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C78.4','C78.4','http://hl7.org/fhir/sid/icd-10-cm','Secondary malignant neoplasm of small intestine','C784','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C78.5','C78.5','http://hl7.org/fhir/sid/icd-10-cm','Secondary malignant neoplasm of large intestine and rectum','C785','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C78.6','C78.6','http://hl7.org/fhir/sid/icd-10-cm','Secondary malignant neoplasm of retroperitoneum and peritoneum','C786','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C78.7','C78.7','http://hl7.org/fhir/sid/icd-10-cm','Secondary malignant neoplasm of liver and intrahepatic bile duct','C787','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C78.80','C78.80','http://hl7.org/fhir/sid/icd-10-cm','Secondary malignant neoplasm of unspecified digestive organ','C7880','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C78.89','C78.89','http://hl7.org/fhir/sid/icd-10-cm','Secondary malignant neoplasm of other digestive organs','C7889','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C79.00','C79.00','http://hl7.org/fhir/sid/icd-10-cm','Secondary malignant neoplasm of unspecified kidney and renal pelvis','C7900','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C79.01','C79.01','http://hl7.org/fhir/sid/icd-10-cm','Secondary malignant neoplasm of right kidney and renal pelvis','C7901','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C79.02','C79.02','http://hl7.org/fhir/sid/icd-10-cm','Secondary malignant neoplasm of left kidney and renal pelvis','C7902','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C79.10','C79.10','http://hl7.org/fhir/sid/icd-10-cm','Secondary malignant neoplasm of unspecified urinary organs','C7910','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C79.11','C79.11','http://hl7.org/fhir/sid/icd-10-cm','Secondary malignant neoplasm of bladder','C7911','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C79.19','C79.19','http://hl7.org/fhir/sid/icd-10-cm','Secondary malignant neoplasm of other urinary organs','C7919','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C79.2','C79.2','http://hl7.org/fhir/sid/icd-10-cm','Secondary malignant neoplasm of skin','C792','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C79.31','C79.31','http://hl7.org/fhir/sid/icd-10-cm','Secondary malignant neoplasm of brain','C7931','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C79.32','C79.32','http://hl7.org/fhir/sid/icd-10-cm','Secondary malignant neoplasm of cerebral meninges','C7932','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C79.40','C79.40','http://hl7.org/fhir/sid/icd-10-cm','Secondary malignant neoplasm of unspecified part of nervous system','C7940','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C79.49','C79.49','http://hl7.org/fhir/sid/icd-10-cm','Secondary malignant neoplasm of other parts of nervous system','C7949','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C79.51','C79.51','http://hl7.org/fhir/sid/icd-10-cm','Secondary malignant neoplasm of bone','C7951','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C79.52','C79.52','http://hl7.org/fhir/sid/icd-10-cm','Secondary malignant neoplasm of bone marrow','C7952','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C79.60','C79.60','http://hl7.org/fhir/sid/icd-10-cm','Secondary malignant neoplasm of unspecified ovary','C7960','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C79.61','C79.61','http://hl7.org/fhir/sid/icd-10-cm','Secondary malignant neoplasm of right ovary','C7961','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C79.62','C79.62','http://hl7.org/fhir/sid/icd-10-cm','Secondary malignant neoplasm of left ovary','C7962','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C79.63','C79.63','http://hl7.org/fhir/sid/icd-10-cm','Secondary malignant neoplasm of bilateral ovaries','C7963','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C79.70','C79.70','http://hl7.org/fhir/sid/icd-10-cm','Secondary malignant neoplasm of unspecified adrenal gland','C7970','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C79.71','C79.71','http://hl7.org/fhir/sid/icd-10-cm','Secondary malignant neoplasm of right adrenal gland','C7971','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C79.72','C79.72','http://hl7.org/fhir/sid/icd-10-cm','Secondary malignant neoplasm of left adrenal gland','C7972','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C79.81','C79.81','http://hl7.org/fhir/sid/icd-10-cm','Secondary malignant neoplasm of breast','C7981','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C79.82','C79.82','http://hl7.org/fhir/sid/icd-10-cm','Secondary malignant neoplasm of genital organs','C7982','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C79.89','C79.89','http://hl7.org/fhir/sid/icd-10-cm','Secondary malignant neoplasm of other specified sites','C7989','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C79.9','C79.9','http://hl7.org/fhir/sid/icd-10-cm','Secondary malignant neoplasm of unspecified site','C799','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C7A.00','C7A.00','http://hl7.org/fhir/sid/icd-10-cm','Malignant carcinoid tumor of unspecified site','C7A00','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C7A.010','C7A.010','http://hl7.org/fhir/sid/icd-10-cm','Malignant carcinoid tumor of the duodenum','C7A010','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C7A.011','C7A.011','http://hl7.org/fhir/sid/icd-10-cm','Malignant carcinoid tumor of the jejunum','C7A011','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C7A.012','C7A.012','http://hl7.org/fhir/sid/icd-10-cm','Malignant carcinoid tumor of the ileum','C7A012','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C7A.019','C7A.019','http://hl7.org/fhir/sid/icd-10-cm','Malignant carcinoid tumor of the small intestine, unspecified portion','C7A019','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C7A.020','C7A.020','http://hl7.org/fhir/sid/icd-10-cm','Malignant carcinoid tumor of the appendix','C7A020','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C7A.021','C7A.021','http://hl7.org/fhir/sid/icd-10-cm','Malignant carcinoid tumor of the cecum','C7A021','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C7A.022','C7A.022','http://hl7.org/fhir/sid/icd-10-cm','Malignant carcinoid tumor of the ascending colon','C7A022','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C7A.023','C7A.023','http://hl7.org/fhir/sid/icd-10-cm','Malignant carcinoid tumor of the transverse colon','C7A023','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C7A.024','C7A.024','http://hl7.org/fhir/sid/icd-10-cm','Malignant carcinoid tumor of the descending colon','C7A024','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C7A.025','C7A.025','http://hl7.org/fhir/sid/icd-10-cm','Malignant carcinoid tumor of the sigmoid colon','C7A025','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C7A.026','C7A.026','http://hl7.org/fhir/sid/icd-10-cm','Malignant carcinoid tumor of the rectum','C7A026','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C7A.029','C7A.029','http://hl7.org/fhir/sid/icd-10-cm','Malignant carcinoid tumor of the large intestine, unspecified portion','C7A029','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C7A.090','C7A.090','http://hl7.org/fhir/sid/icd-10-cm','Malignant carcinoid tumor of the bronchus and lung','C7A090','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C7A.091','C7A.091','http://hl7.org/fhir/sid/icd-10-cm','Malignant carcinoid tumor of the thymus','C7A091','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C7A.092','C7A.092','http://hl7.org/fhir/sid/icd-10-cm','Malignant carcinoid tumor of the stomach','C7A092','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C7A.093','C7A.093','http://hl7.org/fhir/sid/icd-10-cm','Malignant carcinoid tumor of the kidney','C7A093','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C7A.094','C7A.094','http://hl7.org/fhir/sid/icd-10-cm','Malignant carcinoid tumor of the foregut, unspecified','C7A094','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C7A.095','C7A.095','http://hl7.org/fhir/sid/icd-10-cm','Malignant carcinoid tumor of the midgut, unspecified','C7A095','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C7A.096','C7A.096','http://hl7.org/fhir/sid/icd-10-cm','Malignant carcinoid tumor of the hindgut, unspecified','C7A096','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C7A.098','C7A.098','http://hl7.org/fhir/sid/icd-10-cm','Malignant carcinoid tumors of other sites','C7A098','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C7A.1','C7A.1','http://hl7.org/fhir/sid/icd-10-cm','Malignant poorly differentiated neuroendocrine tumors','C7A1','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C7A.8','C7A.8','http://hl7.org/fhir/sid/icd-10-cm','Other malignant neuroendocrine tumors','C7A8','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C7B.00','C7B.00','http://hl7.org/fhir/sid/icd-10-cm','Secondary carcinoid tumors, unspecified site','C7B00','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C7B.01','C7B.01','http://hl7.org/fhir/sid/icd-10-cm','Secondary carcinoid tumors of distant lymph nodes','C7B01','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C7B.02','C7B.02','http://hl7.org/fhir/sid/icd-10-cm','Secondary carcinoid tumors of liver','C7B02','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C7B.03','C7B.03','http://hl7.org/fhir/sid/icd-10-cm','Secondary carcinoid tumors of bone','C7B03','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C7B.04','C7B.04','http://hl7.org/fhir/sid/icd-10-cm','Secondary carcinoid tumors of peritoneum','C7B04','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C7B.09','C7B.09','http://hl7.org/fhir/sid/icd-10-cm','Secondary carcinoid tumors of other sites','C7B09','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C7B.1','C7B.1','http://hl7.org/fhir/sid/icd-10-cm','Secondary Merkel cell carcinoma','C7B1','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C7B.8','C7B.8','http://hl7.org/fhir/sid/icd-10-cm','Other secondary neuroendocrine tumors','C7B8','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C80.0','C80.0','http://hl7.org/fhir/sid/icd-10-cm','Disseminated malignant neoplasm, unspecified','C800','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C80.1','C80.1','http://hl7.org/fhir/sid/icd-10-cm','Malignant (primary) neoplasm, unspecified','C801','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C80.2','C80.2','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm associated with transplanted organ','C802','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C81.00','C81.00','http://hl7.org/fhir/sid/icd-10-cm','Nodular lymphocyte predominant Hodgkin lymphoma, unspecified site','C8100','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C81.01','C81.01','http://hl7.org/fhir/sid/icd-10-cm','Nodular lymphocyte predominant Hodgkin lymphoma, lymph nodes of head, face, and neck','C8101','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C81.02','C81.02','http://hl7.org/fhir/sid/icd-10-cm','Nodular lymphocyte predominant Hodgkin lymphoma, intrathoracic lymph nodes','C8102','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C81.03','C81.03','http://hl7.org/fhir/sid/icd-10-cm','Nodular lymphocyte predominant Hodgkin lymphoma, intra-abdominal lymph nodes','C8103','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C81.04','C81.04','http://hl7.org/fhir/sid/icd-10-cm','Nodular lymphocyte predominant Hodgkin lymphoma, lymph nodes of axilla and upper limb','C8104','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C81.05','C81.05','http://hl7.org/fhir/sid/icd-10-cm','Nodular lymphocyte predominant Hodgkin lymphoma, lymph nodes of inguinal region and lower limb','C8105','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C81.06','C81.06','http://hl7.org/fhir/sid/icd-10-cm','Nodular lymphocyte predominant Hodgkin lymphoma, intrapelvic lymph nodes','C8106','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C81.07','C81.07','http://hl7.org/fhir/sid/icd-10-cm','Nodular lymphocyte predominant Hodgkin lymphoma, spleen','C8107','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C81.08','C81.08','http://hl7.org/fhir/sid/icd-10-cm','Nodular lymphocyte predominant Hodgkin lymphoma, lymph nodes of multiple sites','C8108','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C81.09','C81.09','http://hl7.org/fhir/sid/icd-10-cm','Nodular lymphocyte predominant Hodgkin lymphoma, extranodal and solid organ sites','C8109','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C81.10','C81.10','http://hl7.org/fhir/sid/icd-10-cm','Nodular sclerosis Hodgkin lymphoma, unspecified site','C8110','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C81.11','C81.11','http://hl7.org/fhir/sid/icd-10-cm','Nodular sclerosis Hodgkin lymphoma, lymph nodes of head, face, and neck','C8111','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C81.12','C81.12','http://hl7.org/fhir/sid/icd-10-cm','Nodular sclerosis Hodgkin lymphoma, intrathoracic lymph nodes','C8112','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C81.13','C81.13','http://hl7.org/fhir/sid/icd-10-cm','Nodular sclerosis Hodgkin lymphoma, intra-abdominal lymph nodes','C8113','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C81.14','C81.14','http://hl7.org/fhir/sid/icd-10-cm','Nodular sclerosis Hodgkin lymphoma, lymph nodes of axilla and upper limb','C8114','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C81.15','C81.15','http://hl7.org/fhir/sid/icd-10-cm','Nodular sclerosis Hodgkin lymphoma, lymph nodes of inguinal region and lower limb','C8115','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C81.16','C81.16','http://hl7.org/fhir/sid/icd-10-cm','Nodular sclerosis Hodgkin lymphoma, intrapelvic lymph nodes','C8116','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C81.17','C81.17','http://hl7.org/fhir/sid/icd-10-cm','Nodular sclerosis Hodgkin lymphoma, spleen','C8117','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C81.18','C81.18','http://hl7.org/fhir/sid/icd-10-cm','Nodular sclerosis Hodgkin lymphoma, lymph nodes of multiple sites','C8118','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C81.19','C81.19','http://hl7.org/fhir/sid/icd-10-cm','Nodular sclerosis Hodgkin lymphoma, extranodal and solid organ sites','C8119','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C81.20','C81.20','http://hl7.org/fhir/sid/icd-10-cm','Mixed cellularity Hodgkin lymphoma, unspecified site','C8120','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C81.21','C81.21','http://hl7.org/fhir/sid/icd-10-cm','Mixed cellularity Hodgkin lymphoma, lymph nodes of head, face, and neck','C8121','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C81.22','C81.22','http://hl7.org/fhir/sid/icd-10-cm','Mixed cellularity Hodgkin lymphoma, intrathoracic lymph nodes','C8122','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C81.23','C81.23','http://hl7.org/fhir/sid/icd-10-cm','Mixed cellularity Hodgkin lymphoma, intra-abdominal lymph nodes','C8123','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C81.24','C81.24','http://hl7.org/fhir/sid/icd-10-cm','Mixed cellularity Hodgkin lymphoma, lymph nodes of axilla and upper limb','C8124','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C81.25','C81.25','http://hl7.org/fhir/sid/icd-10-cm','Mixed cellularity Hodgkin lymphoma, lymph nodes of inguinal region and lower limb','C8125','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C81.26','C81.26','http://hl7.org/fhir/sid/icd-10-cm','Mixed cellularity Hodgkin lymphoma, intrapelvic lymph nodes','C8126','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C81.27','C81.27','http://hl7.org/fhir/sid/icd-10-cm','Mixed cellularity Hodgkin lymphoma, spleen','C8127','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C81.28','C81.28','http://hl7.org/fhir/sid/icd-10-cm','Mixed cellularity Hodgkin lymphoma, lymph nodes of multiple sites','C8128','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C81.29','C81.29','http://hl7.org/fhir/sid/icd-10-cm','Mixed cellularity Hodgkin lymphoma, extranodal and solid organ sites','C8129','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C81.30','C81.30','http://hl7.org/fhir/sid/icd-10-cm','Lymphocyte depleted Hodgkin lymphoma, unspecified site','C8130','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C81.31','C81.31','http://hl7.org/fhir/sid/icd-10-cm','Lymphocyte depleted Hodgkin lymphoma, lymph nodes of head, face, and neck','C8131','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C81.32','C81.32','http://hl7.org/fhir/sid/icd-10-cm','Lymphocyte depleted Hodgkin lymphoma, intrathoracic lymph nodes','C8132','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C81.33','C81.33','http://hl7.org/fhir/sid/icd-10-cm','Lymphocyte depleted Hodgkin lymphoma, intra-abdominal lymph nodes','C8133','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C81.34','C81.34','http://hl7.org/fhir/sid/icd-10-cm','Lymphocyte depleted Hodgkin lymphoma, lymph nodes of axilla and upper limb','C8134','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C81.35','C81.35','http://hl7.org/fhir/sid/icd-10-cm','Lymphocyte depleted Hodgkin lymphoma, lymph nodes of inguinal region and lower limb','C8135','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C81.36','C81.36','http://hl7.org/fhir/sid/icd-10-cm','Lymphocyte depleted Hodgkin lymphoma, intrapelvic lymph nodes','C8136','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C81.37','C81.37','http://hl7.org/fhir/sid/icd-10-cm','Lymphocyte depleted Hodgkin lymphoma, spleen','C8137','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C81.38','C81.38','http://hl7.org/fhir/sid/icd-10-cm','Lymphocyte depleted Hodgkin lymphoma, lymph nodes of multiple sites','C8138','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C81.39','C81.39','http://hl7.org/fhir/sid/icd-10-cm','Lymphocyte depleted Hodgkin lymphoma, extranodal and solid organ sites','C8139','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C81.40','C81.40','http://hl7.org/fhir/sid/icd-10-cm','Lymphocyte-rich Hodgkin lymphoma, unspecified site','C8140','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C81.41','C81.41','http://hl7.org/fhir/sid/icd-10-cm','Lymphocyte-rich Hodgkin lymphoma, lymph nodes of head, face, and neck','C8141','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C81.42','C81.42','http://hl7.org/fhir/sid/icd-10-cm','Lymphocyte-rich Hodgkin lymphoma, intrathoracic lymph nodes','C8142','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C81.43','C81.43','http://hl7.org/fhir/sid/icd-10-cm','Lymphocyte-rich Hodgkin lymphoma, intra-abdominal lymph nodes','C8143','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C81.44','C81.44','http://hl7.org/fhir/sid/icd-10-cm','Lymphocyte-rich Hodgkin lymphoma, lymph nodes of axilla and upper limb','C8144','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C81.45','C81.45','http://hl7.org/fhir/sid/icd-10-cm','Lymphocyte-rich Hodgkin lymphoma, lymph nodes of inguinal region and lower limb','C8145','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C81.46','C81.46','http://hl7.org/fhir/sid/icd-10-cm','Lymphocyte-rich Hodgkin lymphoma, intrapelvic lymph nodes','C8146','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C81.47','C81.47','http://hl7.org/fhir/sid/icd-10-cm','Lymphocyte-rich Hodgkin lymphoma, spleen','C8147','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C81.48','C81.48','http://hl7.org/fhir/sid/icd-10-cm','Lymphocyte-rich Hodgkin lymphoma, lymph nodes of multiple sites','C8148','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C81.49','C81.49','http://hl7.org/fhir/sid/icd-10-cm','Lymphocyte-rich Hodgkin lymphoma, extranodal and solid organ sites','C8149','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C81.70','C81.70','http://hl7.org/fhir/sid/icd-10-cm','Other Hodgkin lymphoma, unspecified site','C8170','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C81.71','C81.71','http://hl7.org/fhir/sid/icd-10-cm','Other Hodgkin lymphoma, lymph nodes of head, face, and neck','C8171','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C81.72','C81.72','http://hl7.org/fhir/sid/icd-10-cm','Other Hodgkin lymphoma, intrathoracic lymph nodes','C8172','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C81.73','C81.73','http://hl7.org/fhir/sid/icd-10-cm','Other Hodgkin lymphoma, intra-abdominal lymph nodes','C8173','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C81.74','C81.74','http://hl7.org/fhir/sid/icd-10-cm','Other Hodgkin lymphoma, lymph nodes of axilla and upper limb','C8174','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C81.75','C81.75','http://hl7.org/fhir/sid/icd-10-cm','Other Hodgkin lymphoma, lymph nodes of inguinal region and lower limb','C8175','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C81.76','C81.76','http://hl7.org/fhir/sid/icd-10-cm','Other Hodgkin lymphoma, intrapelvic lymph nodes','C8176','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C81.77','C81.77','http://hl7.org/fhir/sid/icd-10-cm','Other Hodgkin lymphoma, spleen','C8177','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C81.78','C81.78','http://hl7.org/fhir/sid/icd-10-cm','Other Hodgkin lymphoma, lymph nodes of multiple sites','C8178','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C81.79','C81.79','http://hl7.org/fhir/sid/icd-10-cm','Other Hodgkin lymphoma, extranodal and solid organ sites','C8179','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C81.90','C81.90','http://hl7.org/fhir/sid/icd-10-cm','Hodgkin lymphoma, unspecified, unspecified site','C8190','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C81.91','C81.91','http://hl7.org/fhir/sid/icd-10-cm','Hodgkin lymphoma, unspecified, lymph nodes of head, face, and neck','C8191','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C81.92','C81.92','http://hl7.org/fhir/sid/icd-10-cm','Hodgkin lymphoma, unspecified, intrathoracic lymph nodes','C8192','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C81.93','C81.93','http://hl7.org/fhir/sid/icd-10-cm','Hodgkin lymphoma, unspecified, intra-abdominal lymph nodes','C8193','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C81.94','C81.94','http://hl7.org/fhir/sid/icd-10-cm','Hodgkin lymphoma, unspecified, lymph nodes of axilla and upper limb','C8194','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C81.95','C81.95','http://hl7.org/fhir/sid/icd-10-cm','Hodgkin lymphoma, unspecified, lymph nodes of inguinal region and lower limb','C8195','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C81.96','C81.96','http://hl7.org/fhir/sid/icd-10-cm','Hodgkin lymphoma, unspecified, intrapelvic lymph nodes','C8196','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C81.97','C81.97','http://hl7.org/fhir/sid/icd-10-cm','Hodgkin lymphoma, unspecified, spleen','C8197','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C81.98','C81.98','http://hl7.org/fhir/sid/icd-10-cm','Hodgkin lymphoma, unspecified, lymph nodes of multiple sites','C8198','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C81.99','C81.99','http://hl7.org/fhir/sid/icd-10-cm','Hodgkin lymphoma, unspecified, extranodal and solid organ sites','C8199','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.00','C82.00','http://hl7.org/fhir/sid/icd-10-cm','Follicular lymphoma grade I, unspecified site','C8200','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.01','C82.01','http://hl7.org/fhir/sid/icd-10-cm','Follicular lymphoma grade I, lymph nodes of head, face, and neck','C8201','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.02','C82.02','http://hl7.org/fhir/sid/icd-10-cm','Follicular lymphoma grade I, intrathoracic lymph nodes','C8202','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.03','C82.03','http://hl7.org/fhir/sid/icd-10-cm','Follicular lymphoma grade I, intra-abdominal lymph nodes','C8203','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.04','C82.04','http://hl7.org/fhir/sid/icd-10-cm','Follicular lymphoma grade I, lymph nodes of axilla and upper limb','C8204','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.05','C82.05','http://hl7.org/fhir/sid/icd-10-cm','Follicular lymphoma grade I, lymph nodes of inguinal region and lower limb','C8205','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.06','C82.06','http://hl7.org/fhir/sid/icd-10-cm','Follicular lymphoma grade I, intrapelvic lymph nodes','C8206','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.07','C82.07','http://hl7.org/fhir/sid/icd-10-cm','Follicular lymphoma grade I, spleen','C8207','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.08','C82.08','http://hl7.org/fhir/sid/icd-10-cm','Follicular lymphoma grade I, lymph nodes of multiple sites','C8208','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.09','C82.09','http://hl7.org/fhir/sid/icd-10-cm','Follicular lymphoma grade I, extranodal and solid organ sites','C8209','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.10','C82.10','http://hl7.org/fhir/sid/icd-10-cm','Follicular lymphoma grade II, unspecified site','C8210','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.11','C82.11','http://hl7.org/fhir/sid/icd-10-cm','Follicular lymphoma grade II, lymph nodes of head, face, and neck','C8211','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.12','C82.12','http://hl7.org/fhir/sid/icd-10-cm','Follicular lymphoma grade II, intrathoracic lymph nodes','C8212','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.13','C82.13','http://hl7.org/fhir/sid/icd-10-cm','Follicular lymphoma grade II, intra-abdominal lymph nodes','C8213','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.14','C82.14','http://hl7.org/fhir/sid/icd-10-cm','Follicular lymphoma grade II, lymph nodes of axilla and upper limb','C8214','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.15','C82.15','http://hl7.org/fhir/sid/icd-10-cm','Follicular lymphoma grade II, lymph nodes of inguinal region and lower limb','C8215','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.16','C82.16','http://hl7.org/fhir/sid/icd-10-cm','Follicular lymphoma grade II, intrapelvic lymph nodes','C8216','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.17','C82.17','http://hl7.org/fhir/sid/icd-10-cm','Follicular lymphoma grade II, spleen','C8217','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.18','C82.18','http://hl7.org/fhir/sid/icd-10-cm','Follicular lymphoma grade II, lymph nodes of multiple sites','C8218','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.19','C82.19','http://hl7.org/fhir/sid/icd-10-cm','Follicular lymphoma grade II, extranodal and solid organ sites','C8219','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.20','C82.20','http://hl7.org/fhir/sid/icd-10-cm','Follicular lymphoma grade III, unspecified, unspecified site','C8220','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.21','C82.21','http://hl7.org/fhir/sid/icd-10-cm','Follicular lymphoma grade III, unspecified, lymph nodes of head, face, and neck','C8221','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.22','C82.22','http://hl7.org/fhir/sid/icd-10-cm','Follicular lymphoma grade III, unspecified, intrathoracic lymph nodes','C8222','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.23','C82.23','http://hl7.org/fhir/sid/icd-10-cm','Follicular lymphoma grade III, unspecified, intra-abdominal lymph nodes','C8223','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.24','C82.24','http://hl7.org/fhir/sid/icd-10-cm','Follicular lymphoma grade III, unspecified, lymph nodes of axilla and upper limb','C8224','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.25','C82.25','http://hl7.org/fhir/sid/icd-10-cm','Follicular lymphoma grade III, unspecified, lymph nodes of inguinal region and lower limb','C8225','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.26','C82.26','http://hl7.org/fhir/sid/icd-10-cm','Follicular lymphoma grade III, unspecified, intrapelvic lymph nodes','C8226','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.27','C82.27','http://hl7.org/fhir/sid/icd-10-cm','Follicular lymphoma grade III, unspecified, spleen','C8227','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.28','C82.28','http://hl7.org/fhir/sid/icd-10-cm','Follicular lymphoma grade III, unspecified, lymph nodes of multiple sites','C8228','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.29','C82.29','http://hl7.org/fhir/sid/icd-10-cm','Follicular lymphoma grade III, unspecified, extranodal and solid organ sites','C8229','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.30','C82.30','http://hl7.org/fhir/sid/icd-10-cm','Follicular lymphoma grade IIIa, unspecified site','C8230','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.31','C82.31','http://hl7.org/fhir/sid/icd-10-cm','Follicular lymphoma grade IIIa, lymph nodes of head, face, and neck','C8231','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.32','C82.32','http://hl7.org/fhir/sid/icd-10-cm','Follicular lymphoma grade IIIa, intrathoracic lymph nodes','C8232','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.33','C82.33','http://hl7.org/fhir/sid/icd-10-cm','Follicular lymphoma grade IIIa, intra-abdominal lymph nodes','C8233','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.34','C82.34','http://hl7.org/fhir/sid/icd-10-cm','Follicular lymphoma grade IIIa, lymph nodes of axilla and upper limb','C8234','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.35','C82.35','http://hl7.org/fhir/sid/icd-10-cm','Follicular lymphoma grade IIIa, lymph nodes of inguinal region and lower limb','C8235','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.36','C82.36','http://hl7.org/fhir/sid/icd-10-cm','Follicular lymphoma grade IIIa, intrapelvic lymph nodes','C8236','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.37','C82.37','http://hl7.org/fhir/sid/icd-10-cm','Follicular lymphoma grade IIIa, spleen','C8237','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.38','C82.38','http://hl7.org/fhir/sid/icd-10-cm','Follicular lymphoma grade IIIa, lymph nodes of multiple sites','C8238','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.39','C82.39','http://hl7.org/fhir/sid/icd-10-cm','Follicular lymphoma grade IIIa, extranodal and solid organ sites','C8239','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.40','C82.40','http://hl7.org/fhir/sid/icd-10-cm','Follicular lymphoma grade IIIb, unspecified site','C8240','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.41','C82.41','http://hl7.org/fhir/sid/icd-10-cm','Follicular lymphoma grade IIIb, lymph nodes of head, face, and neck','C8241','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.42','C82.42','http://hl7.org/fhir/sid/icd-10-cm','Follicular lymphoma grade IIIb, intrathoracic lymph nodes','C8242','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.43','C82.43','http://hl7.org/fhir/sid/icd-10-cm','Follicular lymphoma grade IIIb, intra-abdominal lymph nodes','C8243','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.44','C82.44','http://hl7.org/fhir/sid/icd-10-cm','Follicular lymphoma grade IIIb, lymph nodes of axilla and upper limb','C8244','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.45','C82.45','http://hl7.org/fhir/sid/icd-10-cm','Follicular lymphoma grade IIIb, lymph nodes of inguinal region and lower limb','C8245','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.46','C82.46','http://hl7.org/fhir/sid/icd-10-cm','Follicular lymphoma grade IIIb, intrapelvic lymph nodes','C8246','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.47','C82.47','http://hl7.org/fhir/sid/icd-10-cm','Follicular lymphoma grade IIIb, spleen','C8247','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.48','C82.48','http://hl7.org/fhir/sid/icd-10-cm','Follicular lymphoma grade IIIb, lymph nodes of multiple sites','C8248','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.49','C82.49','http://hl7.org/fhir/sid/icd-10-cm','Follicular lymphoma grade IIIb, extranodal and solid organ sites','C8249','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.50','C82.50','http://hl7.org/fhir/sid/icd-10-cm','Diffuse follicle center lymphoma, unspecified site','C8250','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.51','C82.51','http://hl7.org/fhir/sid/icd-10-cm','Diffuse follicle center lymphoma, lymph nodes of head, face, and neck','C8251','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.52','C82.52','http://hl7.org/fhir/sid/icd-10-cm','Diffuse follicle center lymphoma, intrathoracic lymph nodes','C8252','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.53','C82.53','http://hl7.org/fhir/sid/icd-10-cm','Diffuse follicle center lymphoma, intra-abdominal lymph nodes','C8253','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.54','C82.54','http://hl7.org/fhir/sid/icd-10-cm','Diffuse follicle center lymphoma, lymph nodes of axilla and upper limb','C8254','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.55','C82.55','http://hl7.org/fhir/sid/icd-10-cm','Diffuse follicle center lymphoma, lymph nodes of inguinal region and lower limb','C8255','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.56','C82.56','http://hl7.org/fhir/sid/icd-10-cm','Diffuse follicle center lymphoma, intrapelvic lymph nodes','C8256','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.57','C82.57','http://hl7.org/fhir/sid/icd-10-cm','Diffuse follicle center lymphoma, spleen','C8257','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.58','C82.58','http://hl7.org/fhir/sid/icd-10-cm','Diffuse follicle center lymphoma, lymph nodes of multiple sites','C8258','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.59','C82.59','http://hl7.org/fhir/sid/icd-10-cm','Diffuse follicle center lymphoma, extranodal and solid organ sites','C8259','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.60','C82.60','http://hl7.org/fhir/sid/icd-10-cm','Cutaneous follicle center lymphoma, unspecified site','C8260','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.61','C82.61','http://hl7.org/fhir/sid/icd-10-cm','Cutaneous follicle center lymphoma, lymph nodes of head, face, and neck','C8261','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.62','C82.62','http://hl7.org/fhir/sid/icd-10-cm','Cutaneous follicle center lymphoma, intrathoracic lymph nodes','C8262','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.63','C82.63','http://hl7.org/fhir/sid/icd-10-cm','Cutaneous follicle center lymphoma, intra-abdominal lymph nodes','C8263','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.64','C82.64','http://hl7.org/fhir/sid/icd-10-cm','Cutaneous follicle center lymphoma, lymph nodes of axilla and upper limb','C8264','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.65','C82.65','http://hl7.org/fhir/sid/icd-10-cm','Cutaneous follicle center lymphoma, lymph nodes of inguinal region and lower limb','C8265','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.66','C82.66','http://hl7.org/fhir/sid/icd-10-cm','Cutaneous follicle center lymphoma, intrapelvic lymph nodes','C8266','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.67','C82.67','http://hl7.org/fhir/sid/icd-10-cm','Cutaneous follicle center lymphoma, spleen','C8267','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.68','C82.68','http://hl7.org/fhir/sid/icd-10-cm','Cutaneous follicle center lymphoma, lymph nodes of multiple sites','C8268','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.69','C82.69','http://hl7.org/fhir/sid/icd-10-cm','Cutaneous follicle center lymphoma, extranodal and solid organ sites','C8269','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.80','C82.80','http://hl7.org/fhir/sid/icd-10-cm','Other types of follicular lymphoma, unspecified site','C8280','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.81','C82.81','http://hl7.org/fhir/sid/icd-10-cm','Other types of follicular lymphoma, lymph nodes of head, face, and neck','C8281','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.82','C82.82','http://hl7.org/fhir/sid/icd-10-cm','Other types of follicular lymphoma, intrathoracic lymph nodes','C8282','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.83','C82.83','http://hl7.org/fhir/sid/icd-10-cm','Other types of follicular lymphoma, intra-abdominal lymph nodes','C8283','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.84','C82.84','http://hl7.org/fhir/sid/icd-10-cm','Other types of follicular lymphoma, lymph nodes of axilla and upper limb','C8284','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.85','C82.85','http://hl7.org/fhir/sid/icd-10-cm','Other types of follicular lymphoma, lymph nodes of inguinal region and lower limb','C8285','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.86','C82.86','http://hl7.org/fhir/sid/icd-10-cm','Other types of follicular lymphoma, intrapelvic lymph nodes','C8286','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.87','C82.87','http://hl7.org/fhir/sid/icd-10-cm','Other types of follicular lymphoma, spleen','C8287','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.88','C82.88','http://hl7.org/fhir/sid/icd-10-cm','Other types of follicular lymphoma, lymph nodes of multiple sites','C8288','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.89','C82.89','http://hl7.org/fhir/sid/icd-10-cm','Other types of follicular lymphoma, extranodal and solid organ sites','C8289','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.90','C82.90','http://hl7.org/fhir/sid/icd-10-cm','Follicular lymphoma, unspecified, unspecified site','C8290','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.91','C82.91','http://hl7.org/fhir/sid/icd-10-cm','Follicular lymphoma, unspecified, lymph nodes of head, face, and neck','C8291','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.92','C82.92','http://hl7.org/fhir/sid/icd-10-cm','Follicular lymphoma, unspecified, intrathoracic lymph nodes','C8292','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.93','C82.93','http://hl7.org/fhir/sid/icd-10-cm','Follicular lymphoma, unspecified, intra-abdominal lymph nodes','C8293','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.94','C82.94','http://hl7.org/fhir/sid/icd-10-cm','Follicular lymphoma, unspecified, lymph nodes of axilla and upper limb','C8294','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.95','C82.95','http://hl7.org/fhir/sid/icd-10-cm','Follicular lymphoma, unspecified, lymph nodes of inguinal region and lower limb','C8295','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.96','C82.96','http://hl7.org/fhir/sid/icd-10-cm','Follicular lymphoma, unspecified, intrapelvic lymph nodes','C8296','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.97','C82.97','http://hl7.org/fhir/sid/icd-10-cm','Follicular lymphoma, unspecified, spleen','C8297','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.98','C82.98','http://hl7.org/fhir/sid/icd-10-cm','Follicular lymphoma, unspecified, lymph nodes of multiple sites','C8298','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C82.99','C82.99','http://hl7.org/fhir/sid/icd-10-cm','Follicular lymphoma, unspecified, extranodal and solid organ sites','C8299','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C83.00','C83.00','http://hl7.org/fhir/sid/icd-10-cm','Small cell B-cell lymphoma, unspecified site','C8300','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C83.01','C83.01','http://hl7.org/fhir/sid/icd-10-cm','Small cell B-cell lymphoma, lymph nodes of head, face, and neck','C8301','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C83.02','C83.02','http://hl7.org/fhir/sid/icd-10-cm','Small cell B-cell lymphoma, intrathoracic lymph nodes','C8302','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C83.03','C83.03','http://hl7.org/fhir/sid/icd-10-cm','Small cell B-cell lymphoma, intra-abdominal lymph nodes','C8303','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C83.04','C83.04','http://hl7.org/fhir/sid/icd-10-cm','Small cell B-cell lymphoma, lymph nodes of axilla and upper limb','C8304','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C83.05','C83.05','http://hl7.org/fhir/sid/icd-10-cm','Small cell B-cell lymphoma, lymph nodes of inguinal region and lower limb','C8305','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C83.06','C83.06','http://hl7.org/fhir/sid/icd-10-cm','Small cell B-cell lymphoma, intrapelvic lymph nodes','C8306','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C83.07','C83.07','http://hl7.org/fhir/sid/icd-10-cm','Small cell B-cell lymphoma, spleen','C8307','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C83.08','C83.08','http://hl7.org/fhir/sid/icd-10-cm','Small cell B-cell lymphoma, lymph nodes of multiple sites','C8308','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C83.09','C83.09','http://hl7.org/fhir/sid/icd-10-cm','Small cell B-cell lymphoma, extranodal and solid organ sites','C8309','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C83.10','C83.10','http://hl7.org/fhir/sid/icd-10-cm','Mantle cell lymphoma, unspecified site','C8310','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C83.11','C83.11','http://hl7.org/fhir/sid/icd-10-cm','Mantle cell lymphoma, lymph nodes of head, face, and neck','C8311','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C83.12','C83.12','http://hl7.org/fhir/sid/icd-10-cm','Mantle cell lymphoma, intrathoracic lymph nodes','C8312','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C83.13','C83.13','http://hl7.org/fhir/sid/icd-10-cm','Mantle cell lymphoma, intra-abdominal lymph nodes','C8313','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C83.14','C83.14','http://hl7.org/fhir/sid/icd-10-cm','Mantle cell lymphoma, lymph nodes of axilla and upper limb','C8314','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C83.15','C83.15','http://hl7.org/fhir/sid/icd-10-cm','Mantle cell lymphoma, lymph nodes of inguinal region and lower limb','C8315','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C83.16','C83.16','http://hl7.org/fhir/sid/icd-10-cm','Mantle cell lymphoma, intrapelvic lymph nodes','C8316','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C83.17','C83.17','http://hl7.org/fhir/sid/icd-10-cm','Mantle cell lymphoma, spleen','C8317','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C83.18','C83.18','http://hl7.org/fhir/sid/icd-10-cm','Mantle cell lymphoma, lymph nodes of multiple sites','C8318','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C83.19','C83.19','http://hl7.org/fhir/sid/icd-10-cm','Mantle cell lymphoma, extranodal and solid organ sites','C8319','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C83.30','C83.30','http://hl7.org/fhir/sid/icd-10-cm','Diffuse large B-cell lymphoma, unspecified site','C8330','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C83.31','C83.31','http://hl7.org/fhir/sid/icd-10-cm','Diffuse large B-cell lymphoma, lymph nodes of head, face, and neck','C8331','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C83.32','C83.32','http://hl7.org/fhir/sid/icd-10-cm','Diffuse large B-cell lymphoma, intrathoracic lymph nodes','C8332','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C83.33','C83.33','http://hl7.org/fhir/sid/icd-10-cm','Diffuse large B-cell lymphoma, intra-abdominal lymph nodes','C8333','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C83.34','C83.34','http://hl7.org/fhir/sid/icd-10-cm','Diffuse large B-cell lymphoma, lymph nodes of axilla and upper limb','C8334','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C83.35','C83.35','http://hl7.org/fhir/sid/icd-10-cm','Diffuse large B-cell lymphoma, lymph nodes of inguinal region and lower limb','C8335','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C83.36','C83.36','http://hl7.org/fhir/sid/icd-10-cm','Diffuse large B-cell lymphoma, intrapelvic lymph nodes','C8336','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C83.37','C83.37','http://hl7.org/fhir/sid/icd-10-cm','Diffuse large B-cell lymphoma, spleen','C8337','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C83.38','C83.38','http://hl7.org/fhir/sid/icd-10-cm','Diffuse large B-cell lymphoma, lymph nodes of multiple sites','C8338','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C83.39','C83.39','http://hl7.org/fhir/sid/icd-10-cm','Diffuse large B-cell lymphoma, extranodal and solid organ sites','C8339','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C83.50','C83.50','http://hl7.org/fhir/sid/icd-10-cm','Lymphoblastic (diffuse) lymphoma, unspecified site','C8350','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C83.51','C83.51','http://hl7.org/fhir/sid/icd-10-cm','Lymphoblastic (diffuse) lymphoma, lymph nodes of head, face, and neck','C8351','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C83.52','C83.52','http://hl7.org/fhir/sid/icd-10-cm','Lymphoblastic (diffuse) lymphoma, intrathoracic lymph nodes','C8352','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C83.53','C83.53','http://hl7.org/fhir/sid/icd-10-cm','Lymphoblastic (diffuse) lymphoma, intra-abdominal lymph nodes','C8353','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C83.54','C83.54','http://hl7.org/fhir/sid/icd-10-cm','Lymphoblastic (diffuse) lymphoma, lymph nodes of axilla and upper limb','C8354','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C83.55','C83.55','http://hl7.org/fhir/sid/icd-10-cm','Lymphoblastic (diffuse) lymphoma, lymph nodes of inguinal region and lower limb','C8355','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C83.56','C83.56','http://hl7.org/fhir/sid/icd-10-cm','Lymphoblastic (diffuse) lymphoma, intrapelvic lymph nodes','C8356','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C83.57','C83.57','http://hl7.org/fhir/sid/icd-10-cm','Lymphoblastic (diffuse) lymphoma, spleen','C8357','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C83.58','C83.58','http://hl7.org/fhir/sid/icd-10-cm','Lymphoblastic (diffuse) lymphoma, lymph nodes of multiple sites','C8358','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C83.59','C83.59','http://hl7.org/fhir/sid/icd-10-cm','Lymphoblastic (diffuse) lymphoma, extranodal and solid organ sites','C8359','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C83.70','C83.70','http://hl7.org/fhir/sid/icd-10-cm','Burkitt lymphoma, unspecified site','C8370','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C83.71','C83.71','http://hl7.org/fhir/sid/icd-10-cm','Burkitt lymphoma, lymph nodes of head, face, and neck','C8371','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C83.72','C83.72','http://hl7.org/fhir/sid/icd-10-cm','Burkitt lymphoma, intrathoracic lymph nodes','C8372','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C83.73','C83.73','http://hl7.org/fhir/sid/icd-10-cm','Burkitt lymphoma, intra-abdominal lymph nodes','C8373','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C83.74','C83.74','http://hl7.org/fhir/sid/icd-10-cm','Burkitt lymphoma, lymph nodes of axilla and upper limb','C8374','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C83.75','C83.75','http://hl7.org/fhir/sid/icd-10-cm','Burkitt lymphoma, lymph nodes of inguinal region and lower limb','C8375','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C83.76','C83.76','http://hl7.org/fhir/sid/icd-10-cm','Burkitt lymphoma, intrapelvic lymph nodes','C8376','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C83.77','C83.77','http://hl7.org/fhir/sid/icd-10-cm','Burkitt lymphoma, spleen','C8377','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C83.78','C83.78','http://hl7.org/fhir/sid/icd-10-cm','Burkitt lymphoma, lymph nodes of multiple sites','C8378','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C83.79','C83.79','http://hl7.org/fhir/sid/icd-10-cm','Burkitt lymphoma, extranodal and solid organ sites','C8379','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C83.80','C83.80','http://hl7.org/fhir/sid/icd-10-cm','Other non-follicular lymphoma, unspecified site','C8380','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C83.81','C83.81','http://hl7.org/fhir/sid/icd-10-cm','Other non-follicular lymphoma, lymph nodes of head, face, and neck','C8381','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C83.82','C83.82','http://hl7.org/fhir/sid/icd-10-cm','Other non-follicular lymphoma, intrathoracic lymph nodes','C8382','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C83.83','C83.83','http://hl7.org/fhir/sid/icd-10-cm','Other non-follicular lymphoma, intra-abdominal lymph nodes','C8383','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C83.84','C83.84','http://hl7.org/fhir/sid/icd-10-cm','Other non-follicular lymphoma, lymph nodes of axilla and upper limb','C8384','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C83.85','C83.85','http://hl7.org/fhir/sid/icd-10-cm','Other non-follicular lymphoma, lymph nodes of inguinal region and lower limb','C8385','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C83.86','C83.86','http://hl7.org/fhir/sid/icd-10-cm','Other non-follicular lymphoma, intrapelvic lymph nodes','C8386','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C83.87','C83.87','http://hl7.org/fhir/sid/icd-10-cm','Other non-follicular lymphoma, spleen','C8387','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C83.88','C83.88','http://hl7.org/fhir/sid/icd-10-cm','Other non-follicular lymphoma, lymph nodes of multiple sites','C8388','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C83.89','C83.89','http://hl7.org/fhir/sid/icd-10-cm','Other non-follicular lymphoma, extranodal and solid organ sites','C8389','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C83.90','C83.90','http://hl7.org/fhir/sid/icd-10-cm','Non-follicular (diffuse) lymphoma, unspecified, unspecified site','C8390','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C83.91','C83.91','http://hl7.org/fhir/sid/icd-10-cm','Non-follicular (diffuse) lymphoma, unspecified, lymph nodes of head, face, and neck','C8391','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C83.92','C83.92','http://hl7.org/fhir/sid/icd-10-cm','Non-follicular (diffuse) lymphoma, unspecified, intrathoracic lymph nodes','C8392','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C83.93','C83.93','http://hl7.org/fhir/sid/icd-10-cm','Non-follicular (diffuse) lymphoma, unspecified, intra-abdominal lymph nodes','C8393','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C83.94','C83.94','http://hl7.org/fhir/sid/icd-10-cm','Non-follicular (diffuse) lymphoma, unspecified, lymph nodes of axilla and upper limb','C8394','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C83.95','C83.95','http://hl7.org/fhir/sid/icd-10-cm','Non-follicular (diffuse) lymphoma, unspecified, lymph nodes of inguinal region and lower limb','C8395','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C83.96','C83.96','http://hl7.org/fhir/sid/icd-10-cm','Non-follicular (diffuse) lymphoma, unspecified, intrapelvic lymph nodes','C8396','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C83.97','C83.97','http://hl7.org/fhir/sid/icd-10-cm','Non-follicular (diffuse) lymphoma, unspecified, spleen','C8397','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C83.98','C83.98','http://hl7.org/fhir/sid/icd-10-cm','Non-follicular (diffuse) lymphoma, unspecified, lymph nodes of multiple sites','C8398','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C83.99','C83.99','http://hl7.org/fhir/sid/icd-10-cm','Non-follicular (diffuse) lymphoma, unspecified, extranodal and solid organ sites','C8399','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C84.00','C84.00','http://hl7.org/fhir/sid/icd-10-cm','Mycosis fungoides, unspecified site','C8400','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C84.01','C84.01','http://hl7.org/fhir/sid/icd-10-cm','Mycosis fungoides, lymph nodes of head, face, and neck','C8401','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C84.02','C84.02','http://hl7.org/fhir/sid/icd-10-cm','Mycosis fungoides, intrathoracic lymph nodes','C8402','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C84.03','C84.03','http://hl7.org/fhir/sid/icd-10-cm','Mycosis fungoides, intra-abdominal lymph nodes','C8403','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C84.04','C84.04','http://hl7.org/fhir/sid/icd-10-cm','Mycosis fungoides, lymph nodes of axilla and upper limb','C8404','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C84.05','C84.05','http://hl7.org/fhir/sid/icd-10-cm','Mycosis fungoides, lymph nodes of inguinal region and lower limb','C8405','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C84.06','C84.06','http://hl7.org/fhir/sid/icd-10-cm','Mycosis fungoides, intrapelvic lymph nodes','C8406','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C84.07','C84.07','http://hl7.org/fhir/sid/icd-10-cm','Mycosis fungoides, spleen','C8407','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C84.08','C84.08','http://hl7.org/fhir/sid/icd-10-cm','Mycosis fungoides, lymph nodes of multiple sites','C8408','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C84.09','C84.09','http://hl7.org/fhir/sid/icd-10-cm','Mycosis fungoides, extranodal and solid organ sites','C8409','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C84.10','C84.10','http://hl7.org/fhir/sid/icd-10-cm','Sezary disease, unspecified site','C8410','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C84.11','C84.11','http://hl7.org/fhir/sid/icd-10-cm','Sezary disease, lymph nodes of head, face, and neck','C8411','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C84.12','C84.12','http://hl7.org/fhir/sid/icd-10-cm','Sezary disease, intrathoracic lymph nodes','C8412','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C84.13','C84.13','http://hl7.org/fhir/sid/icd-10-cm','Sezary disease, intra-abdominal lymph nodes','C8413','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C84.14','C84.14','http://hl7.org/fhir/sid/icd-10-cm','Sezary disease, lymph nodes of axilla and upper limb','C8414','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C84.15','C84.15','http://hl7.org/fhir/sid/icd-10-cm','Sezary disease, lymph nodes of inguinal region and lower limb','C8415','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C84.16','C84.16','http://hl7.org/fhir/sid/icd-10-cm','Sezary disease, intrapelvic lymph nodes','C8416','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C84.17','C84.17','http://hl7.org/fhir/sid/icd-10-cm','Sezary disease, spleen','C8417','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C84.18','C84.18','http://hl7.org/fhir/sid/icd-10-cm','Sezary disease, lymph nodes of multiple sites','C8418','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C84.19','C84.19','http://hl7.org/fhir/sid/icd-10-cm','Sezary disease, extranodal and solid organ sites','C8419','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C84.40','C84.40','http://hl7.org/fhir/sid/icd-10-cm','Peripheral T-cell lymphoma, not elsewhere classified, unspecified site','C8440','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C84.41','C84.41','http://hl7.org/fhir/sid/icd-10-cm','Peripheral T-cell lymphoma, not elsewhere classified, lymph nodes of head, face, and neck','C8441','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C84.42','C84.42','http://hl7.org/fhir/sid/icd-10-cm','Peripheral T-cell lymphoma, not elsewhere classified, intrathoracic lymph nodes','C8442','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C84.43','C84.43','http://hl7.org/fhir/sid/icd-10-cm','Peripheral T-cell lymphoma, not elsewhere classified, intra-abdominal lymph nodes','C8443','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C84.44','C84.44','http://hl7.org/fhir/sid/icd-10-cm','Peripheral T-cell lymphoma, not elsewhere classified, lymph nodes of axilla and upper limb','C8444','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C84.45','C84.45','http://hl7.org/fhir/sid/icd-10-cm','Peripheral T-cell lymphoma, not elsewhere classified, lymph nodes of inguinal region and lower limb','C8445','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C84.46','C84.46','http://hl7.org/fhir/sid/icd-10-cm','Peripheral T-cell lymphoma, not elsewhere classified, intrapelvic lymph nodes','C8446','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C84.47','C84.47','http://hl7.org/fhir/sid/icd-10-cm','Peripheral T-cell lymphoma, not elsewhere classified, spleen','C8447','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C84.48','C84.48','http://hl7.org/fhir/sid/icd-10-cm','Peripheral T-cell lymphoma, not elsewhere classified, lymph nodes of multiple sites','C8448','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C84.49','C84.49','http://hl7.org/fhir/sid/icd-10-cm','Peripheral T-cell lymphoma, not elsewhere classified, extranodal and solid organ sites','C8449','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C84.60','C84.60','http://hl7.org/fhir/sid/icd-10-cm','Anaplastic large cell lymphoma, ALK-positive, unspecified site','C8460','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C84.61','C84.61','http://hl7.org/fhir/sid/icd-10-cm','Anaplastic large cell lymphoma, ALK-positive, lymph nodes of head, face, and neck','C8461','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C84.62','C84.62','http://hl7.org/fhir/sid/icd-10-cm','Anaplastic large cell lymphoma, ALK-positive, intrathoracic lymph nodes','C8462','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C84.63','C84.63','http://hl7.org/fhir/sid/icd-10-cm','Anaplastic large cell lymphoma, ALK-positive, intra-abdominal lymph nodes','C8463','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C84.64','C84.64','http://hl7.org/fhir/sid/icd-10-cm','Anaplastic large cell lymphoma, ALK-positive, lymph nodes of axilla and upper limb','C8464','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C84.65','C84.65','http://hl7.org/fhir/sid/icd-10-cm','Anaplastic large cell lymphoma, ALK-positive, lymph nodes of inguinal region and lower limb','C8465','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C84.66','C84.66','http://hl7.org/fhir/sid/icd-10-cm','Anaplastic large cell lymphoma, ALK-positive, intrapelvic lymph nodes','C8466','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C84.67','C84.67','http://hl7.org/fhir/sid/icd-10-cm','Anaplastic large cell lymphoma, ALK-positive, spleen','C8467','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C84.68','C84.68','http://hl7.org/fhir/sid/icd-10-cm','Anaplastic large cell lymphoma, ALK-positive, lymph nodes of multiple sites','C8468','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C84.69','C84.69','http://hl7.org/fhir/sid/icd-10-cm','Anaplastic large cell lymphoma, ALK-positive, extranodal and solid organ sites','C8469','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C84.70','C84.70','http://hl7.org/fhir/sid/icd-10-cm','Anaplastic large cell lymphoma, ALK-negative, unspecified site','C8470','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C84.71','C84.71','http://hl7.org/fhir/sid/icd-10-cm','Anaplastic large cell lymphoma, ALK-negative, lymph nodes of head, face, and neck','C8471','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C84.72','C84.72','http://hl7.org/fhir/sid/icd-10-cm','Anaplastic large cell lymphoma, ALK-negative, intrathoracic lymph nodes','C8472','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C84.73','C84.73','http://hl7.org/fhir/sid/icd-10-cm','Anaplastic large cell lymphoma, ALK-negative, intra-abdominal lymph nodes','C8473','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C84.74','C84.74','http://hl7.org/fhir/sid/icd-10-cm','Anaplastic large cell lymphoma, ALK-negative, lymph nodes of axilla and upper limb','C8474','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C84.75','C84.75','http://hl7.org/fhir/sid/icd-10-cm','Anaplastic large cell lymphoma, ALK-negative, lymph nodes of inguinal region and lower limb','C8475','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C84.76','C84.76','http://hl7.org/fhir/sid/icd-10-cm','Anaplastic large cell lymphoma, ALK-negative, intrapelvic lymph nodes','C8476','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C84.77','C84.77','http://hl7.org/fhir/sid/icd-10-cm','Anaplastic large cell lymphoma, ALK-negative, spleen','C8477','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C84.78','C84.78','http://hl7.org/fhir/sid/icd-10-cm','Anaplastic large cell lymphoma, ALK-negative, lymph nodes of multiple sites','C8478','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C84.79','C84.79','http://hl7.org/fhir/sid/icd-10-cm','Anaplastic large cell lymphoma, ALK-negative, extranodal and solid organ sites','C8479','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C84.7A','C84.7A','http://hl7.org/fhir/sid/icd-10-cm','Anaplastic large cell lymphoma, ALK-negative, breast','C847A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C84.90','C84.90','http://hl7.org/fhir/sid/icd-10-cm','Mature T/NK-cell lymphomas, unspecified, unspecified site','C8490','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C84.91','C84.91','http://hl7.org/fhir/sid/icd-10-cm','Mature T/NK-cell lymphomas, unspecified, lymph nodes of head, face, and neck','C8491','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C84.92','C84.92','http://hl7.org/fhir/sid/icd-10-cm','Mature T/NK-cell lymphomas, unspecified, intrathoracic lymph nodes','C8492','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C84.93','C84.93','http://hl7.org/fhir/sid/icd-10-cm','Mature T/NK-cell lymphomas, unspecified, intra-abdominal lymph nodes','C8493','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C84.94','C84.94','http://hl7.org/fhir/sid/icd-10-cm','Mature T/NK-cell lymphomas, unspecified, lymph nodes of axilla and upper limb','C8494','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C84.95','C84.95','http://hl7.org/fhir/sid/icd-10-cm','Mature T/NK-cell lymphomas, unspecified, lymph nodes of inguinal region and lower limb','C8495','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C84.96','C84.96','http://hl7.org/fhir/sid/icd-10-cm','Mature T/NK-cell lymphomas, unspecified, intrapelvic lymph nodes','C8496','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C84.97','C84.97','http://hl7.org/fhir/sid/icd-10-cm','Mature T/NK-cell lymphomas, unspecified, spleen','C8497','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C84.98','C84.98','http://hl7.org/fhir/sid/icd-10-cm','Mature T/NK-cell lymphomas, unspecified, lymph nodes of multiple sites','C8498','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C84.99','C84.99','http://hl7.org/fhir/sid/icd-10-cm','Mature T/NK-cell lymphomas, unspecified, extranodal and solid organ sites','C8499','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C84.A0','C84.A0','http://hl7.org/fhir/sid/icd-10-cm','Cutaneous T-cell lymphoma, unspecified, unspecified site','C84A0','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C84.A1','C84.A1','http://hl7.org/fhir/sid/icd-10-cm','Cutaneous T-cell lymphoma, unspecified lymph nodes of head, face, and neck','C84A1','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C84.A2','C84.A2','http://hl7.org/fhir/sid/icd-10-cm','Cutaneous T-cell lymphoma, unspecified, intrathoracic lymph nodes','C84A2','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C84.A3','C84.A3','http://hl7.org/fhir/sid/icd-10-cm','Cutaneous T-cell lymphoma, unspecified, intra-abdominal lymph nodes','C84A3','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C84.A4','C84.A4','http://hl7.org/fhir/sid/icd-10-cm','Cutaneous T-cell lymphoma, unspecified, lymph nodes of axilla and upper limb','C84A4','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C84.A5','C84.A5','http://hl7.org/fhir/sid/icd-10-cm','Cutaneous T-cell lymphoma, unspecified, lymph nodes of inguinal region and lower limb','C84A5','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C84.A6','C84.A6','http://hl7.org/fhir/sid/icd-10-cm','Cutaneous T-cell lymphoma, unspecified, intrapelvic lymph nodes','C84A6','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C84.A7','C84.A7','http://hl7.org/fhir/sid/icd-10-cm','Cutaneous T-cell lymphoma, unspecified, spleen','C84A7','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C84.A8','C84.A8','http://hl7.org/fhir/sid/icd-10-cm','Cutaneous T-cell lymphoma, unspecified, lymph nodes of multiple sites','C84A8','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C84.A9','C84.A9','http://hl7.org/fhir/sid/icd-10-cm','Cutaneous T-cell lymphoma, unspecified, extranodal and solid organ sites','C84A9','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C84.Z0','C84.Z0','http://hl7.org/fhir/sid/icd-10-cm','Other mature T/NK-cell lymphomas, unspecified site','C84Z0','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C84.Z1','C84.Z1','http://hl7.org/fhir/sid/icd-10-cm','Other mature T/NK-cell lymphomas, lymph nodes of head, face, and neck','C84Z1','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C84.Z2','C84.Z2','http://hl7.org/fhir/sid/icd-10-cm','Other mature T/NK-cell lymphomas, intrathoracic lymph nodes','C84Z2','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C84.Z3','C84.Z3','http://hl7.org/fhir/sid/icd-10-cm','Other mature T/NK-cell lymphomas, intra-abdominal lymph nodes','C84Z3','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C84.Z4','C84.Z4','http://hl7.org/fhir/sid/icd-10-cm','Other mature T/NK-cell lymphomas, lymph nodes of axilla and upper limb','C84Z4','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C84.Z5','C84.Z5','http://hl7.org/fhir/sid/icd-10-cm','Other mature T/NK-cell lymphomas, lymph nodes of inguinal region and lower limb','C84Z5','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C84.Z6','C84.Z6','http://hl7.org/fhir/sid/icd-10-cm','Other mature T/NK-cell lymphomas, intrapelvic lymph nodes','C84Z6','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C84.Z7','C84.Z7','http://hl7.org/fhir/sid/icd-10-cm','Other mature T/NK-cell lymphomas, spleen','C84Z7','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C84.Z8','C84.Z8','http://hl7.org/fhir/sid/icd-10-cm','Other mature T/NK-cell lymphomas, lymph nodes of multiple sites','C84Z8','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C84.Z9','C84.Z9','http://hl7.org/fhir/sid/icd-10-cm','Other mature T/NK-cell lymphomas, extranodal and solid organ sites','C84Z9','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C85.10','C85.10','http://hl7.org/fhir/sid/icd-10-cm','Unspecified B-cell lymphoma, unspecified site','C8510','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C85.11','C85.11','http://hl7.org/fhir/sid/icd-10-cm','Unspecified B-cell lymphoma, lymph nodes of head, face, and neck','C8511','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C85.12','C85.12','http://hl7.org/fhir/sid/icd-10-cm','Unspecified B-cell lymphoma, intrathoracic lymph nodes','C8512','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C85.13','C85.13','http://hl7.org/fhir/sid/icd-10-cm','Unspecified B-cell lymphoma, intra-abdominal lymph nodes','C8513','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C85.14','C85.14','http://hl7.org/fhir/sid/icd-10-cm','Unspecified B-cell lymphoma, lymph nodes of axilla and upper limb','C8514','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C85.15','C85.15','http://hl7.org/fhir/sid/icd-10-cm','Unspecified B-cell lymphoma, lymph nodes of inguinal region and lower limb','C8515','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C85.16','C85.16','http://hl7.org/fhir/sid/icd-10-cm','Unspecified B-cell lymphoma, intrapelvic lymph nodes','C8516','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C85.17','C85.17','http://hl7.org/fhir/sid/icd-10-cm','Unspecified B-cell lymphoma, spleen','C8517','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C85.18','C85.18','http://hl7.org/fhir/sid/icd-10-cm','Unspecified B-cell lymphoma, lymph nodes of multiple sites','C8518','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C85.19','C85.19','http://hl7.org/fhir/sid/icd-10-cm','Unspecified B-cell lymphoma, extranodal and solid organ sites','C8519','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C85.20','C85.20','http://hl7.org/fhir/sid/icd-10-cm','Mediastinal (thymic) large B-cell lymphoma, unspecified site','C8520','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C85.21','C85.21','http://hl7.org/fhir/sid/icd-10-cm','Mediastinal (thymic) large B-cell lymphoma, lymph nodes of head, face, and neck','C8521','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C85.22','C85.22','http://hl7.org/fhir/sid/icd-10-cm','Mediastinal (thymic) large B-cell lymphoma, intrathoracic lymph nodes','C8522','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C85.23','C85.23','http://hl7.org/fhir/sid/icd-10-cm','Mediastinal (thymic) large B-cell lymphoma, intra-abdominal lymph nodes','C8523','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C85.24','C85.24','http://hl7.org/fhir/sid/icd-10-cm','Mediastinal (thymic) large B-cell lymphoma, lymph nodes of axilla and upper limb','C8524','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C85.25','C85.25','http://hl7.org/fhir/sid/icd-10-cm','Mediastinal (thymic) large B-cell lymphoma, lymph nodes of inguinal region and lower limb','C8525','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C85.26','C85.26','http://hl7.org/fhir/sid/icd-10-cm','Mediastinal (thymic) large B-cell lymphoma, intrapelvic lymph nodes','C8526','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C85.27','C85.27','http://hl7.org/fhir/sid/icd-10-cm','Mediastinal (thymic) large B-cell lymphoma, spleen','C8527','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C85.28','C85.28','http://hl7.org/fhir/sid/icd-10-cm','Mediastinal (thymic) large B-cell lymphoma, lymph nodes of multiple sites','C8528','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C85.29','C85.29','http://hl7.org/fhir/sid/icd-10-cm','Mediastinal (thymic) large B-cell lymphoma, extranodal and solid organ sites','C8529','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C85.80','C85.80','http://hl7.org/fhir/sid/icd-10-cm','Other specified types of non-Hodgkin lymphoma, unspecified site','C8580','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C85.81','C85.81','http://hl7.org/fhir/sid/icd-10-cm','Other specified types of non-Hodgkin lymphoma, lymph nodes of head, face, and neck','C8581','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C85.82','C85.82','http://hl7.org/fhir/sid/icd-10-cm','Other specified types of non-Hodgkin lymphoma, intrathoracic lymph nodes','C8582','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C85.83','C85.83','http://hl7.org/fhir/sid/icd-10-cm','Other specified types of non-Hodgkin lymphoma, intra-abdominal lymph nodes','C8583','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C85.84','C85.84','http://hl7.org/fhir/sid/icd-10-cm','Other specified types of non-Hodgkin lymphoma, lymph nodes of axilla and upper limb','C8584','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C85.85','C85.85','http://hl7.org/fhir/sid/icd-10-cm','Other specified types of non-Hodgkin lymphoma, lymph nodes of inguinal region and lower limb','C8585','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C85.86','C85.86','http://hl7.org/fhir/sid/icd-10-cm','Other specified types of non-Hodgkin lymphoma, intrapelvic lymph nodes','C8586','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C85.87','C85.87','http://hl7.org/fhir/sid/icd-10-cm','Other specified types of non-Hodgkin lymphoma, spleen','C8587','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C85.88','C85.88','http://hl7.org/fhir/sid/icd-10-cm','Other specified types of non-Hodgkin lymphoma, lymph nodes of multiple sites','C8588','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C85.89','C85.89','http://hl7.org/fhir/sid/icd-10-cm','Other specified types of non-Hodgkin lymphoma, extranodal and solid organ sites','C8589','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C85.90','C85.90','http://hl7.org/fhir/sid/icd-10-cm','Non-Hodgkin lymphoma, unspecified, unspecified site','C8590','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C85.91','C85.91','http://hl7.org/fhir/sid/icd-10-cm','Non-Hodgkin lymphoma, unspecified, lymph nodes of head, face, and neck','C8591','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C85.92','C85.92','http://hl7.org/fhir/sid/icd-10-cm','Non-Hodgkin lymphoma, unspecified, intrathoracic lymph nodes','C8592','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C85.93','C85.93','http://hl7.org/fhir/sid/icd-10-cm','Non-Hodgkin lymphoma, unspecified, intra-abdominal lymph nodes','C8593','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C85.94','C85.94','http://hl7.org/fhir/sid/icd-10-cm','Non-Hodgkin lymphoma, unspecified, lymph nodes of axilla and upper limb','C8594','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C85.95','C85.95','http://hl7.org/fhir/sid/icd-10-cm','Non-Hodgkin lymphoma, unspecified, lymph nodes of inguinal region and lower limb','C8595','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C85.96','C85.96','http://hl7.org/fhir/sid/icd-10-cm','Non-Hodgkin lymphoma, unspecified, intrapelvic lymph nodes','C8596','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C85.97','C85.97','http://hl7.org/fhir/sid/icd-10-cm','Non-Hodgkin lymphoma, unspecified, spleen','C8597','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C85.98','C85.98','http://hl7.org/fhir/sid/icd-10-cm','Non-Hodgkin lymphoma, unspecified, lymph nodes of multiple sites','C8598','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C85.99','C85.99','http://hl7.org/fhir/sid/icd-10-cm','Non-Hodgkin lymphoma, unspecified, extranodal and solid organ sites','C8599','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C86.0','C86.0','http://hl7.org/fhir/sid/icd-10-cm','Extranodal NK/T-cell lymphoma, nasal type','C860','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C86.1','C86.1','http://hl7.org/fhir/sid/icd-10-cm','Hepatosplenic T-cell lymphoma','C861','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C86.2','C86.2','http://hl7.org/fhir/sid/icd-10-cm','Enteropathy-type (intestinal) T-cell lymphoma','C862','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C86.3','C86.3','http://hl7.org/fhir/sid/icd-10-cm','Subcutaneous panniculitis-like T-cell lymphoma','C863','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C86.4','C86.4','http://hl7.org/fhir/sid/icd-10-cm','Blastic NK-cell lymphoma','C864','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C86.5','C86.5','http://hl7.org/fhir/sid/icd-10-cm','Angioimmunoblastic T-cell lymphoma','C865','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C86.6','C86.6','http://hl7.org/fhir/sid/icd-10-cm','Primary cutaneous CD30-positive T-cell proliferations','C866','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C88.0','C88.0','http://hl7.org/fhir/sid/icd-10-cm','Waldenstrom macroglobulinemia','C880','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C88.2','C88.2','http://hl7.org/fhir/sid/icd-10-cm','Heavy chain disease','C882','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C88.3','C88.3','http://hl7.org/fhir/sid/icd-10-cm','Immunoproliferative small intestinal disease','C883','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C88.4','C88.4','http://hl7.org/fhir/sid/icd-10-cm','Extranodal marginal zone B-cell lymphoma of mucosa-associated lymphoid tissue [MALT-lymphoma]','C884','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C88.8','C88.8','http://hl7.org/fhir/sid/icd-10-cm','Other malignant immunoproliferative diseases','C888','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C88.9','C88.9','http://hl7.org/fhir/sid/icd-10-cm','Malignant immunoproliferative disease, unspecified','C889','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C90.00','C90.00','http://hl7.org/fhir/sid/icd-10-cm','Multiple myeloma not having achieved remission','C9000','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C90.02','C90.02','http://hl7.org/fhir/sid/icd-10-cm','Multiple myeloma in relapse','C9002','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C90.10','C90.10','http://hl7.org/fhir/sid/icd-10-cm','Plasma cell leukemia not having achieved remission','C9010','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C90.12','C90.12','http://hl7.org/fhir/sid/icd-10-cm','Plasma cell leukemia in relapse','C9012','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C90.20','C90.20','http://hl7.org/fhir/sid/icd-10-cm','Extramedullary plasmacytoma not having achieved remission','C9020','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C90.22','C90.22','http://hl7.org/fhir/sid/icd-10-cm','Extramedullary plasmacytoma in relapse','C9022','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C90.30','C90.30','http://hl7.org/fhir/sid/icd-10-cm','Solitary plasmacytoma not having achieved remission','C9030','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C90.32','C90.32','http://hl7.org/fhir/sid/icd-10-cm','Solitary plasmacytoma in relapse','C9032','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C91.00','C91.00','http://hl7.org/fhir/sid/icd-10-cm','Acute lymphoblastic leukemia not having achieved remission','C9100','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C91.02','C91.02','http://hl7.org/fhir/sid/icd-10-cm','Acute lymphoblastic leukemia, in relapse','C9102','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C91.10','C91.10','http://hl7.org/fhir/sid/icd-10-cm','Chronic lymphocytic leukemia of B-cell type not having achieved remission','C9110','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C91.12','C91.12','http://hl7.org/fhir/sid/icd-10-cm','Chronic lymphocytic leukemia of B-cell type in relapse','C9112','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C91.30','C91.30','http://hl7.org/fhir/sid/icd-10-cm','Prolymphocytic leukemia of B-cell type not having achieved remission','C9130','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C91.32','C91.32','http://hl7.org/fhir/sid/icd-10-cm','Prolymphocytic leukemia of B-cell type, in relapse','C9132','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C91.40','C91.40','http://hl7.org/fhir/sid/icd-10-cm','Hairy cell leukemia not having achieved remission','C9140','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C91.42','C91.42','http://hl7.org/fhir/sid/icd-10-cm','Hairy cell leukemia, in relapse','C9142','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C91.50','C91.50','http://hl7.org/fhir/sid/icd-10-cm','Adult T-cell lymphoma/leukemia (HTLV-1-associated) not having achieved remission','C9150','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C91.52','C91.52','http://hl7.org/fhir/sid/icd-10-cm','Adult T-cell lymphoma/leukemia (HTLV-1-associated), in relapse','C9152','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C91.60','C91.60','http://hl7.org/fhir/sid/icd-10-cm','Prolymphocytic leukemia of T-cell type not having achieved remission','C9160','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C91.62','C91.62','http://hl7.org/fhir/sid/icd-10-cm','Prolymphocytic leukemia of T-cell type, in relapse','C9162','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C91.90','C91.90','http://hl7.org/fhir/sid/icd-10-cm','Lymphoid leukemia, unspecified not having achieved remission','C9190','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C91.92','C91.92','http://hl7.org/fhir/sid/icd-10-cm','Lymphoid leukemia, unspecified, in relapse','C9192','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C91.A0','C91.A0','http://hl7.org/fhir/sid/icd-10-cm','Mature B-cell leukemia Burkitt-type not having achieved remission','C91A0','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C91.A2','C91.A2','http://hl7.org/fhir/sid/icd-10-cm','Mature B-cell leukemia Burkitt-type, in relapse','C91A2','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C91.Z0','C91.Z0','http://hl7.org/fhir/sid/icd-10-cm','Other lymphoid leukemia not having achieved remission','C91Z0','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C91.Z2','C91.Z2','http://hl7.org/fhir/sid/icd-10-cm','Other lymphoid leukemia, in relapse','C91Z2','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C92.00','C92.00','http://hl7.org/fhir/sid/icd-10-cm','Acute myeloblastic leukemia, not having achieved remission','C9200','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C92.02','C92.02','http://hl7.org/fhir/sid/icd-10-cm','Acute myeloblastic leukemia, in relapse','C9202','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C92.10','C92.10','http://hl7.org/fhir/sid/icd-10-cm','Chronic myeloid leukemia, BCR/ABL-positive, not having achieved remission','C9210','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C92.12','C92.12','http://hl7.org/fhir/sid/icd-10-cm','Chronic myeloid leukemia, BCR/ABL-positive, in relapse','C9212','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C92.20','C92.20','http://hl7.org/fhir/sid/icd-10-cm','Atypical chronic myeloid leukemia, BCR/ABL-negative, not having achieved remission','C9220','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C92.22','C92.22','http://hl7.org/fhir/sid/icd-10-cm','Atypical chronic myeloid leukemia, BCR/ABL-negative, in relapse','C9222','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C92.30','C92.30','http://hl7.org/fhir/sid/icd-10-cm','Myeloid sarcoma, not having achieved remission','C9230','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C92.32','C92.32','http://hl7.org/fhir/sid/icd-10-cm','Myeloid sarcoma, in relapse','C9232','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C92.40','C92.40','http://hl7.org/fhir/sid/icd-10-cm','Acute promyelocytic leukemia, not having achieved remission','C9240','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C92.42','C92.42','http://hl7.org/fhir/sid/icd-10-cm','Acute promyelocytic leukemia, in relapse','C9242','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C92.50','C92.50','http://hl7.org/fhir/sid/icd-10-cm','Acute myelomonocytic leukemia, not having achieved remission','C9250','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C92.52','C92.52','http://hl7.org/fhir/sid/icd-10-cm','Acute myelomonocytic leukemia, in relapse','C9252','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C92.60','C92.60','http://hl7.org/fhir/sid/icd-10-cm','Acute myeloid leukemia with 11q23-abnormality not having achieved remission','C9260','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C92.62','C92.62','http://hl7.org/fhir/sid/icd-10-cm','Acute myeloid leukemia with 11q23-abnormality in relapse','C9262','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C92.90','C92.90','http://hl7.org/fhir/sid/icd-10-cm','Myeloid leukemia, unspecified, not having achieved remission','C9290','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C92.92','C92.92','http://hl7.org/fhir/sid/icd-10-cm','Myeloid leukemia, unspecified in relapse','C9292','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C92.A0','C92.A0','http://hl7.org/fhir/sid/icd-10-cm','Acute myeloid leukemia with multilineage dysplasia, not having achieved remission','C92A0','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C92.A2','C92.A2','http://hl7.org/fhir/sid/icd-10-cm','Acute myeloid leukemia with multilineage dysplasia, in relapse','C92A2','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C92.Z0','C92.Z0','http://hl7.org/fhir/sid/icd-10-cm','Other myeloid leukemia not having achieved remission','C92Z0','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C92.Z2','C92.Z2','http://hl7.org/fhir/sid/icd-10-cm','Other myeloid leukemia, in relapse','C92Z2','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C93.00','C93.00','http://hl7.org/fhir/sid/icd-10-cm','Acute monoblastic/monocytic leukemia, not having achieved remission','C9300','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C93.02','C93.02','http://hl7.org/fhir/sid/icd-10-cm','Acute monoblastic/monocytic leukemia, in relapse','C9302','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C93.10','C93.10','http://hl7.org/fhir/sid/icd-10-cm','Chronic myelomonocytic leukemia not having achieved remission','C9310','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C93.12','C93.12','http://hl7.org/fhir/sid/icd-10-cm','Chronic myelomonocytic leukemia, in relapse','C9312','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C93.30','C93.30','http://hl7.org/fhir/sid/icd-10-cm','Juvenile myelomonocytic leukemia, not having achieved remission','C9330','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C93.32','C93.32','http://hl7.org/fhir/sid/icd-10-cm','Juvenile myelomonocytic leukemia, in relapse','C9332','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C93.90','C93.90','http://hl7.org/fhir/sid/icd-10-cm','Monocytic leukemia, unspecified, not having achieved remission','C9390','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C93.92','C93.92','http://hl7.org/fhir/sid/icd-10-cm','Monocytic leukemia, unspecified in relapse','C9392','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C93.Z0','C93.Z0','http://hl7.org/fhir/sid/icd-10-cm','Other monocytic leukemia, not having achieved remission','C93Z0','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C93.Z2','C93.Z2','http://hl7.org/fhir/sid/icd-10-cm','Other monocytic leukemia, in relapse','C93Z2','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C94.00','C94.00','http://hl7.org/fhir/sid/icd-10-cm','Acute erythroid leukemia, not having achieved remission','C9400','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C94.02','C94.02','http://hl7.org/fhir/sid/icd-10-cm','Acute erythroid leukemia, in relapse','C9402','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C94.20','C94.20','http://hl7.org/fhir/sid/icd-10-cm','Acute megakaryoblastic leukemia not having achieved remission','C9420','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C94.22','C94.22','http://hl7.org/fhir/sid/icd-10-cm','Acute megakaryoblastic leukemia, in relapse','C9422','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C94.30','C94.30','http://hl7.org/fhir/sid/icd-10-cm','Mast cell leukemia not having achieved remission','C9430','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C94.32','C94.32','http://hl7.org/fhir/sid/icd-10-cm','Mast cell leukemia, in relapse','C9432','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C94.40','C94.40','http://hl7.org/fhir/sid/icd-10-cm','Acute panmyelosis with myelofibrosis not having achieved remission','C9440','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C94.42','C94.42','http://hl7.org/fhir/sid/icd-10-cm','Acute panmyelosis with myelofibrosis, in relapse','C9442','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C94.6','C94.6','http://hl7.org/fhir/sid/icd-10-cm','Myelodysplastic disease, not elsewhere classified','C946','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C94.80','C94.80','http://hl7.org/fhir/sid/icd-10-cm','Other specified leukemias not having achieved remission','C9480','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C94.82','C94.82','http://hl7.org/fhir/sid/icd-10-cm','Other specified leukemias, in relapse','C9482','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C95.00','C95.00','http://hl7.org/fhir/sid/icd-10-cm','Acute leukemia of unspecified cell type not having achieved remission','C9500','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C95.02','C95.02','http://hl7.org/fhir/sid/icd-10-cm','Acute leukemia of unspecified cell type, in relapse','C9502','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C95.10','C95.10','http://hl7.org/fhir/sid/icd-10-cm','Chronic leukemia of unspecified cell type not having achieved remission','C9510','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C95.12','C95.12','http://hl7.org/fhir/sid/icd-10-cm','Chronic leukemia of unspecified cell type, in relapse','C9512','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C95.90','C95.90','http://hl7.org/fhir/sid/icd-10-cm','Leukemia, unspecified not having achieved remission','C9590','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C95.92','C95.92','http://hl7.org/fhir/sid/icd-10-cm','Leukemia, unspecified, in relapse','C9592','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C96.0','C96.0','http://hl7.org/fhir/sid/icd-10-cm','Multifocal and multisystemic (disseminated) Langerhans-cell histiocytosis','C960','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C96.20','C96.20','http://hl7.org/fhir/sid/icd-10-cm','Malignant mast cell neoplasm, unspecified','C9620','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C96.21','C96.21','http://hl7.org/fhir/sid/icd-10-cm','Aggressive systemic mastocytosis','C9621','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C96.22','C96.22','http://hl7.org/fhir/sid/icd-10-cm','Mast cell sarcoma','C9622','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C96.29','C96.29','http://hl7.org/fhir/sid/icd-10-cm','Other malignant mast cell neoplasm','C9629','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C96.4','C96.4','http://hl7.org/fhir/sid/icd-10-cm','Sarcoma of dendritic cells (accessory cells)','C964','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C96.5','C96.5','http://hl7.org/fhir/sid/icd-10-cm','Multifocal and unisystemic Langerhans-cell histiocytosis','C965','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C96.6','C96.6','http://hl7.org/fhir/sid/icd-10-cm','Unifocal Langerhans-cell histiocytosis','C966','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C96.9','C96.9','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm of lymphoid, hematopoietic and related tissue, unspecified','C969','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C96.A','C96.A','http://hl7.org/fhir/sid/icd-10-cm','Histiocytic sarcoma','C96A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_C96.Z','C96.Z','http://hl7.org/fhir/sid/icd-10-cm','Other specified malignant neoplasms of lymphoid, hematopoietic and related tissue','C96Z','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D00.00','D00.00','http://hl7.org/fhir/sid/icd-10-cm','Carcinoma in situ of oral cavity, unspecified site','D0000','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D00.01','D00.01','http://hl7.org/fhir/sid/icd-10-cm','Carcinoma in situ of labial mucosa and vermilion border','D0001','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D00.02','D00.02','http://hl7.org/fhir/sid/icd-10-cm','Carcinoma in situ of buccal mucosa','D0002','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D00.03','D00.03','http://hl7.org/fhir/sid/icd-10-cm','Carcinoma in situ of gingiva and edentulous alveolar ridge','D0003','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D00.04','D00.04','http://hl7.org/fhir/sid/icd-10-cm','Carcinoma in situ of soft palate','D0004','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D00.05','D00.05','http://hl7.org/fhir/sid/icd-10-cm','Carcinoma in situ of hard palate','D0005','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D00.06','D00.06','http://hl7.org/fhir/sid/icd-10-cm','Carcinoma in situ of floor of mouth','D0006','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D00.07','D00.07','http://hl7.org/fhir/sid/icd-10-cm','Carcinoma in situ of tongue','D0007','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D00.08','D00.08','http://hl7.org/fhir/sid/icd-10-cm','Carcinoma in situ of pharynx','D0008','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D00.1','D00.1','http://hl7.org/fhir/sid/icd-10-cm','Carcinoma in situ of esophagus','D001','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D00.2','D00.2','http://hl7.org/fhir/sid/icd-10-cm','Carcinoma in situ of stomach','D002','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D01.0','D01.0','http://hl7.org/fhir/sid/icd-10-cm','Carcinoma in situ of colon','D010','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D01.1','D01.1','http://hl7.org/fhir/sid/icd-10-cm','Carcinoma in situ of rectosigmoid junction','D011','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D01.2','D01.2','http://hl7.org/fhir/sid/icd-10-cm','Carcinoma in situ of rectum','D012','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D01.3','D01.3','http://hl7.org/fhir/sid/icd-10-cm','Carcinoma in situ of anus and anal canal','D013','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D01.40','D01.40','http://hl7.org/fhir/sid/icd-10-cm','Carcinoma in situ of unspecified part of intestine','D0140','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D01.49','D01.49','http://hl7.org/fhir/sid/icd-10-cm','Carcinoma in situ of other parts of intestine','D0149','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D01.5','D01.5','http://hl7.org/fhir/sid/icd-10-cm','Carcinoma in situ of liver, gallbladder and bile ducts','D015','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D01.7','D01.7','http://hl7.org/fhir/sid/icd-10-cm','Carcinoma in situ of other specified digestive organs','D017','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D01.9','D01.9','http://hl7.org/fhir/sid/icd-10-cm','Carcinoma in situ of digestive organ, unspecified','D019','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D02.0','D02.0','http://hl7.org/fhir/sid/icd-10-cm','Carcinoma in situ of larynx','D020','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D02.1','D02.1','http://hl7.org/fhir/sid/icd-10-cm','Carcinoma in situ of trachea','D021','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D02.20','D02.20','http://hl7.org/fhir/sid/icd-10-cm','Carcinoma in situ of unspecified bronchus and lung','D0220','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D02.21','D02.21','http://hl7.org/fhir/sid/icd-10-cm','Carcinoma in situ of right bronchus and lung','D0221','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D02.22','D02.22','http://hl7.org/fhir/sid/icd-10-cm','Carcinoma in situ of left bronchus and lung','D0222','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D02.3','D02.3','http://hl7.org/fhir/sid/icd-10-cm','Carcinoma in situ of other parts of respiratory system','D023','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D02.4','D02.4','http://hl7.org/fhir/sid/icd-10-cm','Carcinoma in situ of respiratory system, unspecified','D024','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D03.0','D03.0','http://hl7.org/fhir/sid/icd-10-cm','Melanoma in situ of lip','D030','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D03.10','D03.10','http://hl7.org/fhir/sid/icd-10-cm','Melanoma in situ of unspecified eyelid, including canthus','D0310','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D03.111','D03.111','http://hl7.org/fhir/sid/icd-10-cm','Melanoma in situ of right upper eyelid, including canthus','D03111','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D03.112','D03.112','http://hl7.org/fhir/sid/icd-10-cm','Melanoma in situ of right lower eyelid, including canthus','D03112','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D03.121','D03.121','http://hl7.org/fhir/sid/icd-10-cm','Melanoma in situ of left upper eyelid, including canthus','D03121','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D03.122','D03.122','http://hl7.org/fhir/sid/icd-10-cm','Melanoma in situ of left lower eyelid, including canthus','D03122','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D03.20','D03.20','http://hl7.org/fhir/sid/icd-10-cm','Melanoma in situ of unspecified ear and external auricular canal','D0320','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D03.21','D03.21','http://hl7.org/fhir/sid/icd-10-cm','Melanoma in situ of right ear and external auricular canal','D0321','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D03.22','D03.22','http://hl7.org/fhir/sid/icd-10-cm','Melanoma in situ of left ear and external auricular canal','D0322','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D03.30','D03.30','http://hl7.org/fhir/sid/icd-10-cm','Melanoma in situ of unspecified part of face','D0330','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D03.39','D03.39','http://hl7.org/fhir/sid/icd-10-cm','Melanoma in situ of other parts of face','D0339','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D03.4','D03.4','http://hl7.org/fhir/sid/icd-10-cm','Melanoma in situ of scalp and neck','D034','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D03.51','D03.51','http://hl7.org/fhir/sid/icd-10-cm','Melanoma in situ of anal skin','D0351','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D03.52','D03.52','http://hl7.org/fhir/sid/icd-10-cm','Melanoma in situ of breast (skin) (soft tissue)','D0352','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D03.59','D03.59','http://hl7.org/fhir/sid/icd-10-cm','Melanoma in situ of other part of trunk','D0359','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D03.60','D03.60','http://hl7.org/fhir/sid/icd-10-cm','Melanoma in situ of unspecified upper limb, including shoulder','D0360','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D03.61','D03.61','http://hl7.org/fhir/sid/icd-10-cm','Melanoma in situ of right upper limb, including shoulder','D0361','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D03.62','D03.62','http://hl7.org/fhir/sid/icd-10-cm','Melanoma in situ of left upper limb, including shoulder','D0362','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D03.70','D03.70','http://hl7.org/fhir/sid/icd-10-cm','Melanoma in situ of unspecified lower limb, including hip','D0370','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D03.71','D03.71','http://hl7.org/fhir/sid/icd-10-cm','Melanoma in situ of right lower limb, including hip','D0371','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D03.72','D03.72','http://hl7.org/fhir/sid/icd-10-cm','Melanoma in situ of left lower limb, including hip','D0372','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D03.8','D03.8','http://hl7.org/fhir/sid/icd-10-cm','Melanoma in situ of other sites','D038','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D03.9','D03.9','http://hl7.org/fhir/sid/icd-10-cm','Melanoma in situ, unspecified','D039','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D05.00','D05.00','http://hl7.org/fhir/sid/icd-10-cm','Lobular carcinoma in situ of unspecified breast','D0500','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D05.01','D05.01','http://hl7.org/fhir/sid/icd-10-cm','Lobular carcinoma in situ of right breast','D0501','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D05.02','D05.02','http://hl7.org/fhir/sid/icd-10-cm','Lobular carcinoma in situ of left breast','D0502','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D05.10','D05.10','http://hl7.org/fhir/sid/icd-10-cm','Intraductal carcinoma in situ of unspecified breast','D0510','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D05.11','D05.11','http://hl7.org/fhir/sid/icd-10-cm','Intraductal carcinoma in situ of right breast','D0511','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D05.12','D05.12','http://hl7.org/fhir/sid/icd-10-cm','Intraductal carcinoma in situ of left breast','D0512','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D05.80','D05.80','http://hl7.org/fhir/sid/icd-10-cm','Other specified type of carcinoma in situ of unspecified breast','D0580','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D05.81','D05.81','http://hl7.org/fhir/sid/icd-10-cm','Other specified type of carcinoma in situ of right breast','D0581','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D05.82','D05.82','http://hl7.org/fhir/sid/icd-10-cm','Other specified type of carcinoma in situ of left breast','D0582','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D05.90','D05.90','http://hl7.org/fhir/sid/icd-10-cm','Unspecified type of carcinoma in situ of unspecified breast','D0590','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D05.91','D05.91','http://hl7.org/fhir/sid/icd-10-cm','Unspecified type of carcinoma in situ of right breast','D0591','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D05.92','D05.92','http://hl7.org/fhir/sid/icd-10-cm','Unspecified type of carcinoma in situ of left breast','D0592','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D07.0','D07.0','http://hl7.org/fhir/sid/icd-10-cm','Carcinoma in situ of endometrium','D070','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D07.1','D07.1','http://hl7.org/fhir/sid/icd-10-cm','Carcinoma in situ of vulva','D071','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D07.2','D07.2','http://hl7.org/fhir/sid/icd-10-cm','Carcinoma in situ of vagina','D072','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D07.30','D07.30','http://hl7.org/fhir/sid/icd-10-cm','Carcinoma in situ of unspecified female genital organs','D0730','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D07.39','D07.39','http://hl7.org/fhir/sid/icd-10-cm','Carcinoma in situ of other female genital organs','D0739','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D07.4','D07.4','http://hl7.org/fhir/sid/icd-10-cm','Carcinoma in situ of penis','D074','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D07.60','D07.60','http://hl7.org/fhir/sid/icd-10-cm','Carcinoma in situ of unspecified male genital organs','D0760','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D07.61','D07.61','http://hl7.org/fhir/sid/icd-10-cm','Carcinoma in situ of scrotum','D0761','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D07.69','D07.69','http://hl7.org/fhir/sid/icd-10-cm','Carcinoma in situ of other male genital organs','D0769','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D09.0','D09.0','http://hl7.org/fhir/sid/icd-10-cm','Carcinoma in situ of bladder','D090','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D09.10','D09.10','http://hl7.org/fhir/sid/icd-10-cm','Carcinoma in situ of unspecified urinary organ','D0910','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D09.19','D09.19','http://hl7.org/fhir/sid/icd-10-cm','Carcinoma in situ of other urinary organs','D0919','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D09.20','D09.20','http://hl7.org/fhir/sid/icd-10-cm','Carcinoma in situ of unspecified eye','D0920','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D09.21','D09.21','http://hl7.org/fhir/sid/icd-10-cm','Carcinoma in situ of right eye','D0921','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D09.22','D09.22','http://hl7.org/fhir/sid/icd-10-cm','Carcinoma in situ of left eye','D0922','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D09.3','D09.3','http://hl7.org/fhir/sid/icd-10-cm','Carcinoma in situ of thyroid and other endocrine glands','D093','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D09.8','D09.8','http://hl7.org/fhir/sid/icd-10-cm','Carcinoma in situ of other specified sites','D098','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D09.9','D09.9','http://hl7.org/fhir/sid/icd-10-cm','Carcinoma in situ, unspecified','D099','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D18.02','D18.02','http://hl7.org/fhir/sid/icd-10-cm','Hemangioma of intracranial structures','D1802','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D42.0','D42.0','http://hl7.org/fhir/sid/icd-10-cm','Neoplasm of uncertain behavior of cerebral meninges','D420','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D42.1','D42.1','http://hl7.org/fhir/sid/icd-10-cm','Neoplasm of uncertain behavior of spinal meninges','D421','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D42.9','D42.9','http://hl7.org/fhir/sid/icd-10-cm','Neoplasm of uncertain behavior of meninges, unspecified','D429','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D43.0','D43.0','http://hl7.org/fhir/sid/icd-10-cm','Neoplasm of uncertain behavior of brain, supratentorial','D430','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D43.1','D43.1','http://hl7.org/fhir/sid/icd-10-cm','Neoplasm of uncertain behavior of brain, infratentorial','D431','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D43.2','D43.2','http://hl7.org/fhir/sid/icd-10-cm','Neoplasm of uncertain behavior of brain, unspecified','D432','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D43.3','D43.3','http://hl7.org/fhir/sid/icd-10-cm','Neoplasm of uncertain behavior of cranial nerves','D433','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D43.4','D43.4','http://hl7.org/fhir/sid/icd-10-cm','Neoplasm of uncertain behavior of spinal cord','D434','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D43.8','D43.8','http://hl7.org/fhir/sid/icd-10-cm','Neoplasm of uncertain behavior of other specified parts of central nervous system','D438','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D43.9','D43.9','http://hl7.org/fhir/sid/icd-10-cm','Neoplasm of uncertain behavior of central nervous system, unspecified','D439','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D44.3','D44.3','http://hl7.org/fhir/sid/icd-10-cm','Neoplasm of uncertain behavior of pituitary gland','D443','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D44.4','D44.4','http://hl7.org/fhir/sid/icd-10-cm','Neoplasm of uncertain behavior of craniopharyngeal duct','D444','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D44.5','D44.5','http://hl7.org/fhir/sid/icd-10-cm','Neoplasm of uncertain behavior of pineal gland','D445','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D45','D45','http://hl7.org/fhir/sid/icd-10-cm','Polycythemia vera','D45','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D46.0','D46.0','http://hl7.org/fhir/sid/icd-10-cm','Refractory anemia without ring sideroblasts, so stated','D460','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D46.1','D46.1','http://hl7.org/fhir/sid/icd-10-cm','Refractory anemia with ring sideroblasts','D461','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D46.20','D46.20','http://hl7.org/fhir/sid/icd-10-cm','Refractory anemia with excess of blasts, unspecified','D4620','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D46.21','D46.21','http://hl7.org/fhir/sid/icd-10-cm','Refractory anemia with excess of blasts 1','D4621','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D46.22','D46.22','http://hl7.org/fhir/sid/icd-10-cm','Refractory anemia with excess of blasts 2','D4622','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D46.4','D46.4','http://hl7.org/fhir/sid/icd-10-cm','Refractory anemia, unspecified','D464','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D46.9','D46.9','http://hl7.org/fhir/sid/icd-10-cm','Myelodysplastic syndrome, unspecified','D469','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D46.A','D46.A','http://hl7.org/fhir/sid/icd-10-cm','Refractory cytopenia with multilineage dysplasia','D46A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D46.B','D46.B','http://hl7.org/fhir/sid/icd-10-cm','Refractory cytopenia with multilineage dysplasia and ring sideroblasts','D46B','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D46.C','D46.C','http://hl7.org/fhir/sid/icd-10-cm','Myelodysplastic syndrome with isolated del(5q) chromosomal abnormality','D46C','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D46.Z','D46.Z','http://hl7.org/fhir/sid/icd-10-cm','Other myelodysplastic syndromes','D46Z','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D47.02','D47.02','http://hl7.org/fhir/sid/icd-10-cm','Systemic mastocytosis','D4702','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D47.1','D47.1','http://hl7.org/fhir/sid/icd-10-cm','Chronic myeloproliferative disease','D471','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D47.3','D47.3','http://hl7.org/fhir/sid/icd-10-cm','Essential (hemorrhagic) thrombocythemia','D473','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D47.4','D47.4','http://hl7.org/fhir/sid/icd-10-cm','Osteomyelofibrosis','D474','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D47.9','D47.9','http://hl7.org/fhir/sid/icd-10-cm','Neoplasm of uncertain behavior of lymphoid, hematopoietic and related tissue, unspecified','D479','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D47.Z1','D47.Z1','http://hl7.org/fhir/sid/icd-10-cm','Post-transplant lymphoproliferative disorder (PTLD)','D47Z1','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D47.Z9','D47.Z9','http://hl7.org/fhir/sid/icd-10-cm','Other specified neoplasms of uncertain behavior of lymphoid, hematopoietic and related tissue','D47Z9','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D49.6','D49.6','http://hl7.org/fhir/sid/icd-10-cm','Neoplasm of unspecified behavior of brain','D496','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D49.7','D49.7','http://hl7.org/fhir/sid/icd-10-cm','Neoplasm of unspecified behavior of endocrine glands and other parts of nervous system','D497','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D72.110','D72.110','http://hl7.org/fhir/sid/icd-10-cm','Idiopathic hypereosinophilic syndrome [IHES]','D72110','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D72.111','D72.111','http://hl7.org/fhir/sid/icd-10-cm','Lymphocytic Variant Hypereosinophilic Syndrome [LHES]','D72111','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D72.118','D72.118','http://hl7.org/fhir/sid/icd-10-cm','Other hypereosinophilic syndrome','D72118','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_D72.119','D72.119','http://hl7.org/fhir/sid/icd-10-cm','Hypereosinophilic syndrome [HES], unspecified','D72119','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_N85.02','N85.02','http://hl7.org/fhir/sid/icd-10-cm','Endometrial intraepithelial neoplasia [EIN]','N8502','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_R85.614','R85.614','http://hl7.org/fhir/sid/icd-10-cm','Cytologic evidence of malignancy on smear of anus','R85614','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1402_R87.624','R87.624','http://hl7.org/fhir/sid/icd-10-cm','Cytologic evidence of malignancy on smear of vagina','R87624','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1644_240385003','240385003','http://snomed.info/sct','Septicemic glanders (disorder)','240385003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1644_240386002','240386002','http://snomed.info/sct','Acute localized suppurative glanders (disorder)','240386002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1644_240387006','240387006','http://snomed.info/sct','Pulmonary glanders (disorder)','240387006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1644_240388001','240388001','http://snomed.info/sct','Chronic suppurative glanders (disorder)','240388001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1644_254899009','254899009','http://snomed.info/sct','Cutaneous glanders (disorder)','254899009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1644_4639008','4639008','http://snomed.info/sct','Glanders (disorder)','4639008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1765_18690003','18690003','http://snomed.info/sct','Farmers'' lung (disorder)','18690003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_103080003','103080003','http://snomed.info/sct','Immunodeficiency secondary to radiation therapy (disorder)','103080003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_103081004','103081004','http://snomed.info/sct','Immunodeficiency secondary to chemotherapy (disorder)','103081004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_103821000119108','103821000119108','http://snomed.info/sct','Pain following radiation therapy (finding)','103821000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_10745291000119103','10745291000119103','http://snomed.info/sct','Malignant neoplastic disease in mother complicating childbirth (disorder)','10745291000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_1089991000119109','1089991000119109','http://snomed.info/sct','Oral ulcerative mucositis due to antineoplastic therapy (disorder)','1089991000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_109255004','109255004','http://snomed.info/sct','Mucositis following therapy (disorder)','109255004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_109256003','109256003','http://snomed.info/sct','Mucositis following chemotherapy (disorder)','109256003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_109257007','109257007','http://snomed.info/sct','Mucositis following radiation therapy (disorder)','109257007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_109482009','109482009','http://snomed.info/sct','Generalized enamel hypoplasia associated with radiation therapy (disorder)','109482009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_112421000119102','112421000119102','http://snomed.info/sct','Dehydration due to radiation (disorder)','112421000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_11304841000119108','11304841000119108','http://snomed.info/sct','Pathological fracture of right tibia due to neoplasm (disorder)','11304841000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_11304881000119103','11304881000119103','http://snomed.info/sct','Pathological fracture of left tibia due to neoplastic disease (disorder)','11304881000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_11304921000119105','11304921000119105','http://snomed.info/sct','Pathological fracture of right tibia (disorder)','11304921000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_11304961000119100','11304961000119100','http://snomed.info/sct','Pathological fracture of left tibia (disorder)','11304961000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_11305561000119109','11305561000119109','http://snomed.info/sct','Pathological fracture of right humerus due to neoplasm (disorder)','11305561000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_11305601000119109','11305601000119109','http://snomed.info/sct','Pathological fracture of left humerus due to neoplasm (disorder)','11305601000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_11305641000119106','11305641000119106','http://snomed.info/sct','Pathological fracture of right humerus (disorder)','11305641000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_11305681000119101','11305681000119101','http://snomed.info/sct','Pathological fracture of left humerus (disorder)','11305681000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_11305881000119102','11305881000119102','http://snomed.info/sct','Pathological fracture of right clavicle due to neoplastic disease (disorder)','11305881000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_11305921000119109','11305921000119109','http://snomed.info/sct','Pathological fracture of left clavicle due to neoplastic disease (disorder)','11305921000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_11305961000119104','11305961000119104','http://snomed.info/sct','Pathological fracture of right clavicle (disorder)','11305961000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_11306001000119107','11306001000119107','http://snomed.info/sct','Pathological fracture of left clavicle (disorder)','11306001000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_11307961000119106','11307961000119106','http://snomed.info/sct','Pathologic fracture of pelvis at site of neoplasm (disorder)','11307961000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_11309401000119109','11309401000119109','http://snomed.info/sct','Pathological fracture of right foot due to neoplastic disease (disorder)','11309401000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_11309441000119106','11309441000119106','http://snomed.info/sct','Pathological fracture of left foot due to neoplastic disease (disorder)','11309441000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_11309481000119101','11309481000119101','http://snomed.info/sct','Pathological fracture of right foot (disorder)','11309481000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_11309521000119101','11309521000119101','http://snomed.info/sct','Pathological fracture of left foot (disorder)','11309521000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_11309881000119104','11309881000119104','http://snomed.info/sct','Pathological fracture of right femur due to neoplastic disease (disorder)','11309881000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_11309921000119106','11309921000119106','http://snomed.info/sct','Pathological fracture of left femur due to neoplastic disease (disorder)','11309921000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_11309961000119101','11309961000119101','http://snomed.info/sct','Pathological fracture of right femur (disorder)','11309961000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_11310001000119107','11310001000119107','http://snomed.info/sct','Pathological fracture of left femur (disorder)','11310001000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_11311401000119107','11311401000119107','http://snomed.info/sct','Pathological fracture of thoracic vertebra due to neoplastic disease (disorder)','11311401000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_11311481000119104','11311481000119104','http://snomed.info/sct','Pathologic fracture of lumbar vertebra at site of neoplasm (disorder)','11311481000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_11311561000119109','11311561000119109','http://snomed.info/sct','Pathologic fracture of cervical vertebra at site of neoplasm (disorder)','11311561000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_11311681000119101','11311681000119101','http://snomed.info/sct','Pathologic fracture of vertebra at site of neoplasm (disorder)','11311681000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_11311721000119107','11311721000119107','http://snomed.info/sct','Pathologic fracture of sacral vertebra at site of neoplasm (disorder)','11311721000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_11311761000119102','11311761000119102','http://snomed.info/sct','Pathological fracture of sacral vertebra (disorder)','11311761000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_11312321000119101','11312321000119101','http://snomed.info/sct','Pathological fracture of bone of right hand due to neoplastic disease (disorder)','11312321000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_11312361000119106','11312361000119106','http://snomed.info/sct','Pathological fracture of left hand due to neoplastic disease (disorder)','11312361000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_11312401000119102','11312401000119102','http://snomed.info/sct','Pathological fracture of right hand (disorder)','11312401000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_11312441000119100','11312441000119100','http://snomed.info/sct','Pathological fracture of left hand (disorder)','11312441000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_11312801000119104','11312801000119104','http://snomed.info/sct','Pathological fracture of right ulna due to neoplastic disease (disorder)','11312801000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_11312841000119102','11312841000119102','http://snomed.info/sct','Pathological fracture of left ulna due to neoplasm (disorder)','11312841000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_11312881000119107','11312881000119107','http://snomed.info/sct','Pathological fracture of right radius due to neoplasm (disorder)','11312881000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_11312921000119100','11312921000119100','http://snomed.info/sct','Pathological fracture of left radius due to neoplastic disease (disorder)','11312921000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_11312961000119105','11312961000119105','http://snomed.info/sct','Pathological fracture of right ulna (disorder)','11312961000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_11313001000119102','11313001000119102','http://snomed.info/sct','Pathological fracture of left ulna (disorder)','11313001000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_11313041000119100','11313041000119100','http://snomed.info/sct','Pathological fracture of right radius (disorder)','11313041000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_11313081000119105','11313081000119105','http://snomed.info/sct','Pathological fracture of left radius (disorder)','11313081000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_11313361000119104','11313361000119104','http://snomed.info/sct','Pathological fracture of right scapula co-occurrent and due to neoplastic disease (disorder)','11313361000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_11313401000119108','11313401000119108','http://snomed.info/sct','Pathological fracture of left scapula co-occurrent and due to neoplastic disease (disorder)','11313401000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_11313441000119105','11313441000119105','http://snomed.info/sct','Pathological fracture of right scapula (disorder)','11313441000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_11313481000119100','11313481000119100','http://snomed.info/sct','Pathological fracture of left scapula (disorder)','11313481000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_11314961000119102','11314961000119102','http://snomed.info/sct','Pathological fracture of proximal right femur due to neoplastic disease (disorder)','11314961000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_11315001000119103','11315001000119103','http://snomed.info/sct','Pathological fracture of proximal left femur due to neoplastic disease (disorder)','11315001000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_118791000119106','118791000119106','http://snomed.info/sct','Aplastic anemia caused by antineoplastic agent (disorder)','118791000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_126291000119105','126291000119105','http://snomed.info/sct','High grade squamous intraepithelial lesion on anal Papanicolaou smear (finding)','126291000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_126341000119108','126341000119108','http://snomed.info/sct','High grade squamous intraepithelial lesion on vaginal Papanicolaou smear (finding)','126341000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_126494007','126494007','http://snomed.info/sct','Neoplasm of skin of eyebrow (disorder)','126494007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_126497000','126497000','http://snomed.info/sct','Neoplasm of skin of chin (disorder)','126497000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_126502003','126502003','http://snomed.info/sct','Neoplasm of skin of external auditory canal (disorder)','126502003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_126506000','126506000','http://snomed.info/sct','Neoplasm of skin of axilla (disorder)','126506000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_126511003','126511003','http://snomed.info/sct','Neoplasm of skin of buttock (disorder)','126511003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_126512005','126512005','http://snomed.info/sct','Neoplasm of skin of groin (disorder)','126512005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_126515007','126515007','http://snomed.info/sct','Neoplasm of skin of umbilicus (disorder)','126515007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_126519001','126519001','http://snomed.info/sct','Neoplasm of skin of elbow (disorder)','126519001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_126520007','126520007','http://snomed.info/sct','Neoplasm of skin of forearm (disorder)','126520007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_126521006','126521006','http://snomed.info/sct','Neoplasm of skin of wrist (disorder)','126521006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_126523009','126523009','http://snomed.info/sct','Neoplasm of skin of finger (disorder)','126523009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_126526001','126526001','http://snomed.info/sct','Neoplasm of skin of thigh (disorder)','126526001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_126527005','126527005','http://snomed.info/sct','Neoplasm of skin of popliteal area (disorder)','126527005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_126530003','126530003','http://snomed.info/sct','Neoplasm of skin of ankle (disorder)','126530003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_126532006','126532006','http://snomed.info/sct','Neoplasm of skin of toe (disorder)','126532006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_128467002','128467002','http://snomed.info/sct','Neoplasm of uncertain behavior of articular cartilage (disorder)','128467002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_129662007','129662007','http://snomed.info/sct','Neurotoxicity caused by procarbazine (disorder)','129662007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_129663002','129663002','http://snomed.info/sct','Neurotoxicity caused by vincristine (disorder)','129663002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_129664008','129664008','http://snomed.info/sct','Neurotoxicity caused by vinblastine (disorder)','129664008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_129665009','129665009','http://snomed.info/sct','Neurotoxicity caused by L-asparaginase (disorder)','129665009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_129666005','129666005','http://snomed.info/sct','Neurotoxicity caused by methotrexate (disorder)','129666005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_134421000','134421000','http://snomed.info/sct','Pathologic fracture of bone at site of metastatic neoplasm (disorder)','134421000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_16623961000119100','16623961000119100','http://snomed.info/sct','Pancytopenia caused by immunosuppressant (disorder)','16623961000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_189406008','189406008','http://snomed.info/sct','Neoplasm of uncertain behavior of anal canal and sphincter (disorder)','189406008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_189473001','189473001','http://snomed.info/sct','Neoplasm of uncertain behavior of paraganglia (disorder)','189473001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_191265009','191265009','http://snomed.info/sct','Anemia in neoplastic disease (disorder)','191265009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_192877007','192877007','http://snomed.info/sct','Paraneoplastic cerebellar degeneration (disorder)','192877007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_194058007','194058007','http://snomed.info/sct','Disorder of optic chiasm due to non-pituitary neoplasm (disorder)','194058007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_194063006','194063006','http://snomed.info/sct','Visual pathway disorder due to neoplasm (disorder)','194063006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_194068002','194068002','http://snomed.info/sct','Visual cortex disorder due to neoplasm (disorder)','194068002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_202046009','202046009','http://snomed.info/sct','Arthritis secondary to malignancy (disorder)','202046009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_203356008','203356008','http://snomed.info/sct','Osteitis deformans in neoplastic disease (disorder)','203356008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_203449003','203449003','http://snomed.info/sct','Pathologic fracture of bone at site of neoplasm (disorder)','203449003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_20447006','20447006','http://snomed.info/sct','Plasma cell dyscrasia with polyneuropathy (disorder)','20447006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_230514006','230514006','http://snomed.info/sct','Radiation damage to optic nerve (disorder)','230514006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_232438004','232438004','http://snomed.info/sct','Post-radiotherapy laryngeal edema (disorder)','232438004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_235707005','235707005','http://snomed.info/sct','Acute inflammation of intestine caused by radiation (disorder)','235707005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_235760009','235760009','http://snomed.info/sct','Radiation proctitis (disorder)','235760009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_235761008','235761008','http://snomed.info/sct','Acute radiation proctitis (disorder)','235761008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_235762001','235762001','http://snomed.info/sct','Chronic radiation proctitis (disorder)','235762001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_237098003','237098003','http://snomed.info/sct','Post-irradiation vaginal ulcer (disorder)','237098003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_239822004','239822004','http://snomed.info/sct','Arthritis secondary to non-hematological malignancy (disorder)','239822004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_239901009','239901009','http://snomed.info/sct','Dermatomyositis with malignant disease (disorder)','239901009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_254723006','254723006','http://snomed.info/sct','Tumor of skin with apocrine differentiation (disorder)','254723006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_254736006','254736006','http://snomed.info/sct','Fibrous tissue neoplasm of skin (disorder)','254736006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_254749001','254749001','http://snomed.info/sct','Fibrohistiocytic tumor of skin (disorder)','254749001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_254758008','254758008','http://snomed.info/sct','Skin tumor of neural origin (disorder)','254758008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_254765000','254765000','http://snomed.info/sct','Skin tumor of smooth muscle origin (disorder)','254765000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_254889004','254889004','http://snomed.info/sct','Carcinoma of cervix stage 0 (disorder)','254889004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_254890008','254890008','http://snomed.info/sct','Adenocarcinoma in situ of cervix (disorder)','254890008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_254894004','254894004','http://snomed.info/sct','Vaginal intraepithelial neoplasia (disorder)','254894004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_254901000','254901000','http://snomed.info/sct','Prostatic intraepithelial neoplasia (disorder)','254901000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_276739001','276739001','http://snomed.info/sct','Tumor of skin with pilar differentiation (disorder)','276739001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_276816003','276816003','http://snomed.info/sct','Carcinoid tumor of intestine (disorder)','276816003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_276875006','276875006','http://snomed.info/sct','Vulval intraepithelial neoplasia grade 3 (disorder)','276875006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_277436002','277436002','http://snomed.info/sct','Post-radiotherapy telangiectasis of vocal cord (disorder)','277436002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_281350007','281350007','http://snomed.info/sct','Arthritis secondary to hematological malignancy (disorder)','281350007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_285432005','285432005','http://snomed.info/sct','Carcinoma of cervix (disorder)','285432005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_307591004','307591004','http://snomed.info/sct','Malignant mastocytosis (disorder)','307591004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_307598005','307598005','http://snomed.info/sct','Sebaceous adenoma of skin (disorder)','307598005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_307726001','307726001','http://snomed.info/sct','Anemia in ovarian carcinoma (disorder)','307726001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_315241008','315241008','http://snomed.info/sct','Pain from metastases (finding)','315241008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_328301000119102','328301000119102','http://snomed.info/sct','Pancytopenia due to antineoplastic chemotherapy (disorder)','328301000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_369793000','369793000','http://snomed.info/sct','Tis: Carcinoma in situ (endometrium/uterine cervix) (finding)','369793000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_369794006','369794006','http://snomed.info/sct','T1 (I): Cervical carcinoma confined to uterus (finding)','369794006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_369886005','369886005','http://snomed.info/sct','T4: Lung tumor of any size with a malignant pleural effusion (finding)','369886005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_372098004','372098004','http://snomed.info/sct','Carcinoma of endocervix (disorder)','372098004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_372100004','372100004','http://snomed.info/sct','Carcinoma of exocervix (disorder)','372100004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_395705003','395705003','http://snomed.info/sct','pTis: Carcinoma in situ, intraepithelial (colon/rectum) (finding)','395705003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_397015000','397015000','http://snomed.info/sct','Systemic mastocytosis with associated clonal hematological non-mast cell lineage disease (disorder)','397015000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_397016004','397016004','http://snomed.info/sct','Systemic mast cell disease (disorder)','397016004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_399911003','399911003','http://snomed.info/sct','Bowenoid papulosis of vulva with vulval intraepithelial neoplasia grade III (disorder)','399911003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_399929008','399929008','http://snomed.info/sct','Bowenoid papulosis of anus with anal intraepithelial neoplasia grade III (disorder)','399929008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_399933001','399933001','http://snomed.info/sct','Vulval intraepithelial neoplasia (disorder)','399933001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_400132000','400132000','http://snomed.info/sct','Vascular neoplasm of skin (disorder)','400132000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_402751007','402751007','http://snomed.info/sct','Dermatosis resulting from immunosuppressive therapy (disorder)','402751007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_402752000','402752000','http://snomed.info/sct','Dermatosis due to cytotoxic therapy (disorder)','402752000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_402761000','402761000','http://snomed.info/sct','Dermatosis caused by therapeutic ionizing irradiation (disorder)','402761000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_403475002','403475002','http://snomed.info/sct','Vulval intraepithelial neoplasia with lichen sclerosus (disorder)','403475002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_403476001','403476001','http://snomed.info/sct','Vulval intraepithelial neoplasia with squamous epithelial hyperplasia (disorder)','403476001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_403485001','403485001','http://snomed.info/sct','Anal intraepithelial neoplasia (AIN III) (disorder)','403485001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_403636004','403636004','http://snomed.info/sct','Stomatitis due to cytotoxic therapy (disorder)','403636004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_403638003','403638003','http://snomed.info/sct','Acral erythema due to cytotoxic therapy (disorder)','403638003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_403712008','403712008','http://snomed.info/sct','Psoralen and long-wave ultraviolet radiation therapy-associated basal cell carcinoma (disorder)','403712008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_403722002','403722002','http://snomed.info/sct','Ulceration of skin caused by therapeutic ionizing radiation (disorder)','403722002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_403725000','403725000','http://snomed.info/sct','Radiation-induced mucositis of oral mucous membranes (disorder)','403725000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_403824007','403824007','http://snomed.info/sct','Torre-Muir syndrome (disorder)','403824007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_403956001','403956001','http://snomed.info/sct','Mixed adnexal neoplasm of skin, unclassifiable (disorder)','403956001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_405569006','405569006','http://snomed.info/sct','Post-radiotherapy pneumonitis (disorder)','405569006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_406103009','406103009','http://snomed.info/sct','Squamous cell carcinoma in situ of uterine cervix (disorder)','406103009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_416033009','416033009','http://snomed.info/sct','Cervicovaginal cytology: High grade squamous intraepithelial lesion or carcinoma (finding)','416033009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_418424006','418424006','http://snomed.info/sct','Post-radiotherapy somnolence syndrome (disorder)','418424006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_418856006','418856006','http://snomed.info/sct','Paraneoplastic optic neuropathy (disorder)','418856006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_419469006','419469006','http://snomed.info/sct','Laryngeal mobility limited following radiotherapy (finding)','419469006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_423661009','423661009','http://snomed.info/sct','Complication of chemotherapy (disorder)','423661009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_430328004','430328004','http://snomed.info/sct','Inflammation of esophagus due to chemotherapy (disorder)','430328004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_431010004','431010004','http://snomed.info/sct','Late effect of radiation therapy (disorder)','431010004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_431038007','431038007','http://snomed.info/sct','Short stature due to radiation therapy (disorder)','431038007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_431769004','431769004','http://snomed.info/sct','Disorder of optic chiasm due to neoplasm (disorder)','431769004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_434191000124107','434191000124107','http://snomed.info/sct','Post-radiotherapy cerebral vasculopathy (disorder)','434191000124107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_43858000','43858000','http://snomed.info/sct','Secondary aplastic anemia (disorder)','43858000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_439128001','439128001','http://snomed.info/sct','Lymphedema caused by radiation (disorder)','439128001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_439776006','439776006','http://snomed.info/sct','Malignant neoplasm detected by Papanicolaou smear of cervix (finding)','439776006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_442760001','442760001','http://snomed.info/sct','Thrombophilia due to antineoplastic agent therapy (disorder)','442760001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_443042003','443042003','http://snomed.info/sct','Neoplasm of uncertain behavior of skeletal system (disorder)','443042003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_445339002','445339002','http://snomed.info/sct','Neuropathy caused by ionizing radiation (disorder)','445339002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_446468007','446468007','http://snomed.info/sct','Cellular atypia caused by antineoplastic agent (disorder)','446468007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_446711009','446711009','http://snomed.info/sct','High grade prostatic intraepithelial neoplasia (disorder)','446711009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_447760009','447760009','http://snomed.info/sct','Endocervical adenocarcinoma in situ (disorder)','447760009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_449648005','449648005','http://snomed.info/sct','Neoplasm of skin of lower leg (disorder)','449648005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_449649002','449649002','http://snomed.info/sct','Neoplasm of skin of upper arm (disorder)','449649002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_4939006','4939006','http://snomed.info/sct','Hemolytic anemia due to nonlymphoid neoplasm (disorder)','4939006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_64246009','64246009','http://snomed.info/sct','Disorder of optic chiasm associated with non-pituitary neoplasm (disorder)','64246009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_699656000','699656000','http://snomed.info/sct','Radiation induced taste impairment (disorder)','699656000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_703135009','703135009','http://snomed.info/sct','Anemia in malignant neoplastic disease (disorder)','703135009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_703306007','703306007','http://snomed.info/sct','Primary hyperaldosteronism due to aldosterone-secreting malignant neoplasm of adrenal gland (disorder)','703306007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_704203009','704203009','http://snomed.info/sct','Nephropathy caused by ciclosporin (disorder)','704203009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_704205002','704205002','http://snomed.info/sct','Nephropathy caused by tacrolimus (disorder)','704205002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_704244005','704244005','http://snomed.info/sct','Pathologic fracture of ulna at site of neoplasm (disorder)','704244005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_704245006','704245006','http://snomed.info/sct','Pathologic fracture of tibia at site of neoplasm (disorder)','704245006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_704246007','704246007','http://snomed.info/sct','Pathologic fracture of scapula at site of neoplasm (disorder)','704246007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_704247003','704247003','http://snomed.info/sct','Pathologic fracture of radius at site of neoplasm (disorder)','704247003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_704248008','704248008','http://snomed.info/sct','Pathologic fracture of humerus at site of neoplasm (disorder)','704248008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_704249000','704249000','http://snomed.info/sct','Pathologic fracture of proximal femur at site of neoplasm (disorder)','704249000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_704250000','704250000','http://snomed.info/sct','Pathologic fracture of bone of hand at site of neoplasm (disorder)','704250000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_704251001','704251001','http://snomed.info/sct','Pathologic fracture of bone of foot at site of neoplasm (disorder)','704251001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_704252008','704252008','http://snomed.info/sct','Pathologic fracture of fibula at site of neoplasm (disorder)','704252008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_704253003','704253003','http://snomed.info/sct','Pathologic fracture of femur at site of neoplasm (disorder)','704253003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_704254009','704254009','http://snomed.info/sct','Pathologic fracture of clavicle at site of neoplasm (disorder)','704254009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_704255005','704255005','http://snomed.info/sct','Pathologic fracture of ankle at site of neoplasm (disorder)','704255005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_705127009','705127009','http://snomed.info/sct','Gingivitis due to leukemia (disorder)','705127009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_709141005','709141005','http://snomed.info/sct','Neck pain due to malignant neoplastic disease (finding)','709141005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_710298005','710298005','http://snomed.info/sct','Xerostomia following radiotherapy (disorder)','710298005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_71193007','71193007','http://snomed.info/sct','Fibrosis of lung caused by radiation (disorder)','71193007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_716749005','716749005','http://snomed.info/sct','Fatigue associated with malignant neoplastic disease (finding)','716749005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_716857003','716857003','http://snomed.info/sct','Hereditary pheochromocytoma and paraganglioma (disorder)','716857003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_717900000','717900000','http://snomed.info/sct','Hypoparathyroidism after external beam radiotherapy (disorder)','717900000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_720469008','720469008','http://snomed.info/sct','Azoospermia caused by chemotherapy (disorder)','720469008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_722377004','722377004','http://snomed.info/sct','Paraganglioma and gastric stromal sarcoma syndrome (disorder)','722377004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_722606000','722606000','http://snomed.info/sct','Optic neuropathy caused by ionizing radiation following radiotherapy procedure (disorder)','722606000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_722659003','722659003','http://snomed.info/sct','Radiation injury of nervous system following radiotherapy procedure (disorder)','722659003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_722660008','722660008','http://snomed.info/sct','Radiation injury of brain caused by ionizing radiation following radiotherapy procedure (disorder)','722660008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_722694005','722694005','http://snomed.info/sct','Neoplasm of uncertain behavior of bone and articular cartilage (disorder)','722694005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_723155001','723155001','http://snomed.info/sct','Injury of spinal cord caused by ionizing radiation following radiotherapy procedure (disorder)','723155001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_724859002','724859002','http://snomed.info/sct','Lymphedema due to and following radiotherapy caused by ionizing radiation (disorder)','724859002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_725938001','725938001','http://snomed.info/sct','Cirrhosis of liver caused by methotrexate (disorder)','725938001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_74411000119100','74411000119100','http://snomed.info/sct','Prostatic intraepithelial neoplasia and adjacent atypia (disorder)','74411000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_762595001','762595001','http://snomed.info/sct','Chronic painful polyneuropathy following chemotherapy (disorder)','762595001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_762596000','762596000','http://snomed.info/sct','Chronic pain following radiotherapy (disorder)','762596000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_764999002','764999002','http://snomed.info/sct','Non-functioning paraganglioma (disorder)','764999002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_765143008','765143008','http://snomed.info/sct','Sporadic pheochromocytoma and secreting paraganglioma (disorder)','765143008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_767544007','767544007','http://snomed.info/sct','Intraepithelial squamous cell carcinoma of anogenital region (disorder)','767544007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_767657005','767657005','http://snomed.info/sct','Anemia due to and following chemotherapy (disorder)','767657005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_767658000','767658000','http://snomed.info/sct','Neutropenia due to and following chemotherapy (disorder)','767658000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_767659008','767659008','http://snomed.info/sct','Peripheral neuropathy due to and following antineoplastic therapy (disorder)','767659008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_770652001','770652001','http://snomed.info/sct','Stenosis of external auditory canal due to and after radiation therapy (disorder)','770652001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_770653006','770653006','http://snomed.info/sct','Stenosis of external auditory canal caused by ionizing radiation (disorder)','770653006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_773537001','773537001','http://snomed.info/sct','Differentiation syndrome due to and following chemotherapy co-occurrent with acute promyelocytic leukemia (disorder)','773537001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_77575005','77575005','http://snomed.info/sct','Secondary hyperprolactinemia due to prolactin-secreting tumor (disorder)','77575005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_784317004','784317004','http://snomed.info/sct','Fatigue due to chemotherapy (finding)','784317004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_784318009','784318009','http://snomed.info/sct','Fatigue due to radiation therapy (finding)','784318009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_816979008','816979008','http://snomed.info/sct','Differentiated vulvar intraepithelial neoplasia (disorder)','816979008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_84004001','84004001','http://snomed.info/sct','Radiation pneumonitis (disorder)','84004001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_866087009','866087009','http://snomed.info/sct','Pathologic fracture of vertebra at site of metastatic neoplasm (disorder)','866087009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_92564006','92564006','http://snomed.info/sct','Carcinoma in situ of uterine cervix (disorder)','92564006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_92580001','92580001','http://snomed.info/sct','Carcinoma in situ of endocervix (disorder)','92580001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_92588008','92588008','http://snomed.info/sct','Carcinoma in situ of exocervix (disorder)','92588008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_92691004','92691004','http://snomed.info/sct','Carcinoma in situ of prostate (disorder)','92691004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_94721002','94721002','http://snomed.info/sct','Neoplasm of uncertain behavior of abdominal esophagus (disorder)','94721002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_94726007','94726007','http://snomed.info/sct','Neoplasm of uncertain behavior of acromion (disorder)','94726007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_94734001','94734001','http://snomed.info/sct','Neoplasm of uncertain behavior of anal canal (disorder)','94734001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_94741007','94741007','http://snomed.info/sct','Neoplasm of uncertain behavior of anus (disorder)','94741007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_94742000','94742000','http://snomed.info/sct','Neoplasm of uncertain behavior of aortic body (disorder)','94742000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_94756003','94756003','http://snomed.info/sct','Neoplasm of uncertain behavior of body of pancreas (disorder)','94756003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_94761001','94761001','http://snomed.info/sct','Neoplasm of uncertain behavior of bone of face (disorder)','94761001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_94762008','94762008','http://snomed.info/sct','Neoplasm of uncertain behavior of bone of lower limb (disorder)','94762008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_94763003','94763003','http://snomed.info/sct','Neoplasm of uncertain behavior of bone of skull (disorder)','94763003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_94764009','94764009','http://snomed.info/sct','Neoplasm of uncertain behavior of bone of upper limb (disorder)','94764009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_94765005','94765005','http://snomed.info/sct','Neoplasm of uncertain behavior of bone (disorder)','94765005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_94776009','94776009','http://snomed.info/sct','Neoplasm of uncertain behavior of calcaneus (disorder)','94776009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_94779002','94779002','http://snomed.info/sct','Neoplasm of uncertain behavior of carotid body (disorder)','94779002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_94780004','94780004','http://snomed.info/sct','Neoplasm of uncertain behavior of carpal bone (disorder)','94780004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_94790007','94790007','http://snomed.info/sct','Neoplasm of uncertain behavior of cervical esophagus (disorder)','94790007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_94791006','94791006','http://snomed.info/sct','Neoplasm of uncertain behavior of cervical vertebral column (disorder)','94791006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_94793009','94793009','http://snomed.info/sct','Neoplasm of uncertain behavior of cheek (disorder)','94793009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_94794003','94794003','http://snomed.info/sct','Neoplasm of uncertain behavior of chest wall (disorder)','94794003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_94797005','94797005','http://snomed.info/sct','Neoplasm of uncertain behavior of clavicle (disorder)','94797005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_94800007','94800007','http://snomed.info/sct','Neoplasm of uncertain behavior of coccyx (disorder)','94800007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_94809008','94809008','http://snomed.info/sct','Neoplasm of uncertain behavior of cuboid (disorder)','94809008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_94814007','94814007','http://snomed.info/sct','Neoplasm of uncertain behavior of thoracic vertebral column (disorder)','94814007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_94825003','94825003','http://snomed.info/sct','Neoplasm of uncertain behavior of esophagus (disorder)','94825003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_94826002','94826002','http://snomed.info/sct','Neoplasm of uncertain behavior of ethmoid bone (disorder)','94826002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_94838006','94838006','http://snomed.info/sct','Neoplasm of uncertain behavior of femur (disorder)','94838006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_94840001','94840001','http://snomed.info/sct','Neoplasm of uncertain behavior of first cuneiform bone of foot (disorder)','94840001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_94844005','94844005','http://snomed.info/sct','Neoplasm of uncertain behavior of forearm (disorder)','94844005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_94846007','94846007','http://snomed.info/sct','Neoplasm of uncertain behavior of frontal bone (disorder)','94846007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_94854009','94854009','http://snomed.info/sct','Neoplasm of uncertain behavior of glomus jugulare (disorder)','94854009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_94860009','94860009','http://snomed.info/sct','Neoplasm of uncertain behavior of hamate bone (disorder)','94860009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_94862001','94862001','http://snomed.info/sct','Neoplasm of uncertain behavior of hard palate (disorder)','94862001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_94863006','94863006','http://snomed.info/sct','Neoplasm of uncertain behavior of head of pancreas (disorder)','94863006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_94873008','94873008','http://snomed.info/sct','Neoplasm of uncertain behavior of ilium (disorder)','94873008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_94878004','94878004','http://snomed.info/sct','Neoplasm of uncertain behavior of intestinal tract (disorder)','94878004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_94882002','94882002','http://snomed.info/sct','Neoplasm of uncertain behavior of ischium (disorder)','94882002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_94883007','94883007','http://snomed.info/sct','Neoplasm of uncertain behavior of islets of Langerhans (disorder)','94883007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_94885000','94885000','http://snomed.info/sct','Neoplasm of uncertain behavior of jaw (disorder)','94885000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_94911003','94911003','http://snomed.info/sct','Neoplasm of uncertain behavior of long bone of lower limb (disorder)','94911003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_94912005','94912005','http://snomed.info/sct','Neoplasm of uncertain behavior of long bone of upper limb (disorder)','94912005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_94917004','94917004','http://snomed.info/sct','Neoplasm of uncertain behavior of lower third of esophagus (disorder)','94917004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_94918009','94918009','http://snomed.info/sct','Neoplasm of uncertain behavior of lumbar vertebral column (disorder)','94918009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_94919001','94919001','http://snomed.info/sct','Neoplasm of uncertain behavior of lunate bone (disorder)','94919001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_94926001','94926001','http://snomed.info/sct','Neoplasm of uncertain behavior of mandible (disorder)','94926001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_94928000','94928000','http://snomed.info/sct','Neoplasm of uncertain behavior of maxilla (disorder)','94928000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_94932006','94932006','http://snomed.info/sct','Neoplasm of uncertain behavior of metacarpal bone (disorder)','94932006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_94933001','94933001','http://snomed.info/sct','Neoplasm of uncertain behavior of metatarsal bone (disorder)','94933001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_94935008','94935008','http://snomed.info/sct','Neoplasm of uncertain behavior of middle third of esophagus (disorder)','94935008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_94948007','94948007','http://snomed.info/sct','Neoplasm of uncertain behavior of muscle of perineum (disorder)','94948007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_94951000','94951000','http://snomed.info/sct','Neoplasm of uncertain behavior of muscle of trunk (disorder)','94951000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_94956005','94956005','http://snomed.info/sct','Neoplasm of uncertain behavior of nasal bone (disorder)','94956005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_94960008','94960008','http://snomed.info/sct','Neoplasm of uncertain behavior of navicular bone of foot (disorder)','94960008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_94961007','94961007','http://snomed.info/sct','Neoplasm of uncertain behavior of scaphoid bone (disorder)','94961007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_94966002','94966002','http://snomed.info/sct','Neoplasm of uncertain behavior of nose (disorder)','94966002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_94967006','94967006','http://snomed.info/sct','Neoplasm of uncertain behavior of occipital bone (disorder)','94967006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_94975000','94975000','http://snomed.info/sct','Neoplasm of uncertain behavior of palate (disorder)','94975000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_94976004','94976004','http://snomed.info/sct','Neoplasm of uncertain behavior of palatine bone (disorder)','94976004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_94978003','94978003','http://snomed.info/sct','Neoplasm of uncertain behavior of pancreas (disorder)','94978003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_94979006','94979006','http://snomed.info/sct','Neoplasm of uncertain behavior of pancreatic duct (disorder)','94979006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_94980009','94980009','http://snomed.info/sct','Neoplasm of uncertain behavior of para-aortic body (disorder)','94980009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_94985004','94985004','http://snomed.info/sct','Neoplasm of uncertain behavior of parietal bone (disorder)','94985004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_94990001','94990001','http://snomed.info/sct','Neoplasm of uncertain behavior of patella (disorder)','94990001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_94991002','94991002','http://snomed.info/sct','Neoplasm of uncertain behavior of pelvic bone (disorder)','94991002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_94999000','94999000','http://snomed.info/sct','Neoplasm of uncertain behavior of phalanx of foot (disorder)','94999000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_95000000','95000000','http://snomed.info/sct','Neoplasm of uncertain behavior of phalanx of hand (disorder)','95000000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_95003003','95003003','http://snomed.info/sct','Neoplasm of uncertain behavior of pisiform bone of hand (disorder)','95003003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_95015004','95015004','http://snomed.info/sct','Neoplasm of uncertain behavior of pubis (disorder)','95015004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_95019005','95019005','http://snomed.info/sct','Neoplasm of uncertain behavior of radius (disorder)','95019005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_95030008','95030008','http://snomed.info/sct','Neoplasm of uncertain behavior of rib (disorder)','95030008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_95036002','95036002','http://snomed.info/sct','Neoplasm of uncertain behavior of sacrum (disorder)','95036002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_95037006','95037006','http://snomed.info/sct','Neoplasm of uncertain behavior of scapula (disorder)','95037006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_95041005','95041005','http://snomed.info/sct','Neoplasm of uncertain behavior of second cuneiform bone of foot (disorder)','95041005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_95042003','95042003','http://snomed.info/sct','Neoplasm of uncertain behavior of septum of nose (disorder)','95042003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_95043008','95043008','http://snomed.info/sct','Neoplasm of uncertain behavior of short bone of lower limb (disorder)','95043008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_95044002','95044002','http://snomed.info/sct','Neoplasm of uncertain behavior of short bone of upper limb (disorder)','95044002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_95106009','95106009','http://snomed.info/sct','Neoplasm of uncertain behavior of sphenoid bone (disorder)','95106009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_95110007','95110007','http://snomed.info/sct','Neoplasm of uncertain behavior of vertebral column (disorder)','95110007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_95111006','95111006','http://snomed.info/sct','Neoplasm of uncertain behavior of spleen (disorder)','95111006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_95113009','95113009','http://snomed.info/sct','Neoplasm of uncertain behavior of sternum (disorder)','95113009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_95122005','95122005','http://snomed.info/sct','Neoplasm of uncertain behavior of tail of pancreas (disorder)','95122005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_95123000','95123000','http://snomed.info/sct','Neoplasm of uncertain behavior of talus (disorder)','95123000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_95124006','95124006','http://snomed.info/sct','Neoplasm of uncertain behavior of tarsal bone (disorder)','95124006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_95125007','95125007','http://snomed.info/sct','Neoplasm of uncertain behavior of temporal bone (disorder)','95125007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_95133008','95133008','http://snomed.info/sct','Neoplasm of uncertain behavior of thigh (disorder)','95133008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_95134002','95134002','http://snomed.info/sct','Neoplasm of uncertain behavior of third cuneiform bone of foot (disorder)','95134002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_95135001','95135001','http://snomed.info/sct','Neoplasm of uncertain behavior of thoracic esophagus (disorder)','95135001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_95146003','95146003','http://snomed.info/sct','Neoplasm of uncertain behavior of trapezium (disorder)','95146003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_95147007','95147007','http://snomed.info/sct','Neoplasm of uncertain behavior of trapezoid bone (disorder)','95147007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_95152002','95152002','http://snomed.info/sct','Neoplasm of uncertain behavior of ulna (disorder)','95152002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_95159006','95159006','http://snomed.info/sct','Neoplasm of uncertain behavior of upper third of esophagus (disorder)','95159006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_95182008','95182008','http://snomed.info/sct','Neoplasm of uncertain behavior of vomer (disorder)','95182008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_95185005','95185005','http://snomed.info/sct','Neoplasm of uncertain behavior of zygomatic bone (disorder)','95185005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_95248008','95248008','http://snomed.info/sct','Salivary dysfunction caries secondary to radiation therapy (disorder)','95248008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_98791000119102','98791000119102','http://snomed.info/sct','Cytological evidence of malignancy on cervical Papanicolaou smear (finding)','98791000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_98901000119106','98901000119106','http://snomed.info/sct','Ulcerative mucositis due to non-antineoplastic therapy (disorder)','98901000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_98921000119102','98921000119102','http://snomed.info/sct','Pain due to neoplastic disease (finding)','98921000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_254613007','254613007','http://snomed.info/sct','Carcinoid tumor of pancreas (disorder)','254613007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_403711001','403711001','http://snomed.info/sct','Primary malignant neoplasm of skin due to psoralen and longwave ultraviolet radiation therapy (disorder)','403711001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_403713003','403713003','http://snomed.info/sct','Psoralen and long-wave ultraviolet radiation therapy-associated squamous cell carcinoma (disorder)','403713003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_403714009','403714009','http://snomed.info/sct','Psoralen and long-wave ultraviolet radiation therapy-associated malignant melanoma (disorder)','403714009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_403729006','403729006','http://snomed.info/sct','Radiation-induced skin malignancy (disorder)','403729006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_708054009','708054009','http://snomed.info/sct','Malignant neoplasm after immunosuppressive therapy (disorder)','708054009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_724866001','724866001','http://snomed.info/sct','Primary malignant neoplasm of skin due to and following radiotherapy caused by ionizing radiation (disorder)','724866001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_762315004','762315004','http://snomed.info/sct','Therapy related acute myeloid leukemia due to and following administration of antineoplastic agent (disorder)','762315004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_766048008','766048008','http://snomed.info/sct','Acute myeloid leukemia and myelodysplastic syndrome related to radiation (disorder)','766048008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1405_771073006','771073006','http://snomed.info/sct','Lymphoproliferative disorder caused by methotrexate (disorder)','771073006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_C44.00','C44.00','http://hl7.org/fhir/sid/icd-10-cm','Unspecified malignant neoplasm of skin of lip','C4400','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_C44.09','C44.09','http://hl7.org/fhir/sid/icd-10-cm','Other specified malignant neoplasm of skin of lip','C4409','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_C44.101','C44.101','http://hl7.org/fhir/sid/icd-10-cm','Unspecified malignant neoplasm of skin of unspecified eyelid, including canthus','C44101','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_C44.1021','C44.1021','http://hl7.org/fhir/sid/icd-10-cm','Unspecified malignant neoplasm of skin of right upper eyelid, including canthus','C441021','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_C44.1022','C44.1022','http://hl7.org/fhir/sid/icd-10-cm','Unspecified malignant neoplasm of skin of right lower eyelid, including canthus','C441022','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_C44.1091','C44.1091','http://hl7.org/fhir/sid/icd-10-cm','Unspecified malignant neoplasm of skin of left upper eyelid, including canthus','C441091','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_C44.1092','C44.1092','http://hl7.org/fhir/sid/icd-10-cm','Unspecified malignant neoplasm of skin of left lower eyelid, including canthus','C441092','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_C44.191','C44.191','http://hl7.org/fhir/sid/icd-10-cm','Other specified malignant neoplasm of skin of unspecified eyelid, including canthus','C44191','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_C44.1921','C44.1921','http://hl7.org/fhir/sid/icd-10-cm','Other specified malignant neoplasm of skin of right upper eyelid, including canthus','C441921','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_C44.1922','C44.1922','http://hl7.org/fhir/sid/icd-10-cm','Other specified malignant neoplasm of skin of right lower eyelid, including canthus','C441922','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_C44.1991','C44.1991','http://hl7.org/fhir/sid/icd-10-cm','Other specified malignant neoplasm of skin of left upper eyelid, including canthus','C441991','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_C44.1992','C44.1992','http://hl7.org/fhir/sid/icd-10-cm','Other specified malignant neoplasm of skin of left lower eyelid, including canthus','C441992','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_C44.201','C44.201','http://hl7.org/fhir/sid/icd-10-cm','Unspecified malignant neoplasm of skin of unspecified ear and external auricular canal','C44201','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_C44.202','C44.202','http://hl7.org/fhir/sid/icd-10-cm','Unspecified malignant neoplasm of skin of right ear and external auricular canal','C44202','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_C44.209','C44.209','http://hl7.org/fhir/sid/icd-10-cm','Unspecified malignant neoplasm of skin of left ear and external auricular canal','C44209','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_C44.291','C44.291','http://hl7.org/fhir/sid/icd-10-cm','Other specified malignant neoplasm of skin of unspecified ear and external auricular canal','C44291','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_C44.292','C44.292','http://hl7.org/fhir/sid/icd-10-cm','Other specified malignant neoplasm of skin of right ear and external auricular canal','C44292','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_C44.299','C44.299','http://hl7.org/fhir/sid/icd-10-cm','Other specified malignant neoplasm of skin of left ear and external auricular canal','C44299','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_C44.300','C44.300','http://hl7.org/fhir/sid/icd-10-cm','Unspecified malignant neoplasm of skin of unspecified part of face','C44300','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_C44.301','C44.301','http://hl7.org/fhir/sid/icd-10-cm','Unspecified malignant neoplasm of skin of nose','C44301','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_C44.309','C44.309','http://hl7.org/fhir/sid/icd-10-cm','Unspecified malignant neoplasm of skin of other parts of face','C44309','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_C44.390','C44.390','http://hl7.org/fhir/sid/icd-10-cm','Other specified malignant neoplasm of skin of unspecified parts of face','C44390','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_C44.391','C44.391','http://hl7.org/fhir/sid/icd-10-cm','Other specified malignant neoplasm of skin of nose','C44391','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_C44.399','C44.399','http://hl7.org/fhir/sid/icd-10-cm','Other specified malignant neoplasm of skin of other parts of face','C44399','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_C44.40','C44.40','http://hl7.org/fhir/sid/icd-10-cm','Unspecified malignant neoplasm of skin of scalp and neck','C4440','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_C44.49','C44.49','http://hl7.org/fhir/sid/icd-10-cm','Other specified malignant neoplasm of skin of scalp and neck','C4449','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_C44.500','C44.500','http://hl7.org/fhir/sid/icd-10-cm','Unspecified malignant neoplasm of anal skin','C44500','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_C44.501','C44.501','http://hl7.org/fhir/sid/icd-10-cm','Unspecified malignant neoplasm of skin of breast','C44501','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_C44.509','C44.509','http://hl7.org/fhir/sid/icd-10-cm','Unspecified malignant neoplasm of skin of other part of trunk','C44509','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_C44.590','C44.590','http://hl7.org/fhir/sid/icd-10-cm','Other specified malignant neoplasm of anal skin','C44590','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_C44.591','C44.591','http://hl7.org/fhir/sid/icd-10-cm','Other specified malignant neoplasm of skin of breast','C44591','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_C44.599','C44.599','http://hl7.org/fhir/sid/icd-10-cm','Other specified malignant neoplasm of skin of other part of trunk','C44599','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_C44.601','C44.601','http://hl7.org/fhir/sid/icd-10-cm','Unspecified malignant neoplasm of skin of unspecified upper limb, including shoulder','C44601','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_C44.602','C44.602','http://hl7.org/fhir/sid/icd-10-cm','Unspecified malignant neoplasm of skin of right upper limb, including shoulder','C44602','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_C44.609','C44.609','http://hl7.org/fhir/sid/icd-10-cm','Unspecified malignant neoplasm of skin of left upper limb, including shoulder','C44609','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_C44.691','C44.691','http://hl7.org/fhir/sid/icd-10-cm','Other specified malignant neoplasm of skin of unspecified upper limb, including shoulder','C44691','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_C44.692','C44.692','http://hl7.org/fhir/sid/icd-10-cm','Other specified malignant neoplasm of skin of right upper limb, including shoulder','C44692','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_C44.699','C44.699','http://hl7.org/fhir/sid/icd-10-cm','Other specified malignant neoplasm of skin of left upper limb, including shoulder','C44699','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_C44.701','C44.701','http://hl7.org/fhir/sid/icd-10-cm','Unspecified malignant neoplasm of skin of unspecified lower limb, including hip','C44701','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_C44.702','C44.702','http://hl7.org/fhir/sid/icd-10-cm','Unspecified malignant neoplasm of skin of right lower limb, including hip','C44702','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_C44.709','C44.709','http://hl7.org/fhir/sid/icd-10-cm','Unspecified malignant neoplasm of skin of left lower limb, including hip','C44709','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_C44.791','C44.791','http://hl7.org/fhir/sid/icd-10-cm','Other specified malignant neoplasm of skin of unspecified lower limb, including hip','C44791','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_C44.792','C44.792','http://hl7.org/fhir/sid/icd-10-cm','Other specified malignant neoplasm of skin of right lower limb, including hip','C44792','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_C44.799','C44.799','http://hl7.org/fhir/sid/icd-10-cm','Other specified malignant neoplasm of skin of left lower limb, including hip','C44799','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_C44.80','C44.80','http://hl7.org/fhir/sid/icd-10-cm','Unspecified malignant neoplasm of overlapping sites of skin','C4480','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_C44.89','C44.89','http://hl7.org/fhir/sid/icd-10-cm','Other specified malignant neoplasm of overlapping sites of skin','C4489','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_D04.0','D04.0','http://hl7.org/fhir/sid/icd-10-cm','Carcinoma in situ of skin of lip','D040','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_D04.10','D04.10','http://hl7.org/fhir/sid/icd-10-cm','Carcinoma in situ of skin of unspecified eyelid, including canthus','D0410','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_D04.111','D04.111','http://hl7.org/fhir/sid/icd-10-cm','Carcinoma in situ of skin of right upper eyelid, including canthus','D04111','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_D04.112','D04.112','http://hl7.org/fhir/sid/icd-10-cm','Carcinoma in situ of skin of right lower eyelid, including canthus','D04112','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_D04.121','D04.121','http://hl7.org/fhir/sid/icd-10-cm','Carcinoma in situ of skin of left upper eyelid, including canthus','D04121','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_D04.122','D04.122','http://hl7.org/fhir/sid/icd-10-cm','Carcinoma in situ of skin of left lower eyelid, including canthus','D04122','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_D04.20','D04.20','http://hl7.org/fhir/sid/icd-10-cm','Carcinoma in situ of skin of unspecified ear and external auricular canal','D0420','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_D04.21','D04.21','http://hl7.org/fhir/sid/icd-10-cm','Carcinoma in situ of skin of right ear and external auricular canal','D0421','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_D04.22','D04.22','http://hl7.org/fhir/sid/icd-10-cm','Carcinoma in situ of skin of left ear and external auricular canal','D0422','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_D04.30','D04.30','http://hl7.org/fhir/sid/icd-10-cm','Carcinoma in situ of skin of unspecified part of face','D0430','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_D04.39','D04.39','http://hl7.org/fhir/sid/icd-10-cm','Carcinoma in situ of skin of other parts of face','D0439','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_D04.4','D04.4','http://hl7.org/fhir/sid/icd-10-cm','Carcinoma in situ of skin of scalp and neck','D044','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_D04.5','D04.5','http://hl7.org/fhir/sid/icd-10-cm','Carcinoma in situ of skin of trunk','D045','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_D04.60','D04.60','http://hl7.org/fhir/sid/icd-10-cm','Carcinoma in situ of skin of unspecified upper limb, including shoulder','D0460','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_D04.61','D04.61','http://hl7.org/fhir/sid/icd-10-cm','Carcinoma in situ of skin of right upper limb, including shoulder','D0461','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_D04.62','D04.62','http://hl7.org/fhir/sid/icd-10-cm','Carcinoma in situ of skin of left upper limb, including shoulder','D0462','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_D04.70','D04.70','http://hl7.org/fhir/sid/icd-10-cm','Carcinoma in situ of skin of unspecified lower limb, including hip','D0470','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_D04.71','D04.71','http://hl7.org/fhir/sid/icd-10-cm','Carcinoma in situ of skin of right lower limb, including hip','D0471','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_D04.72','D04.72','http://hl7.org/fhir/sid/icd-10-cm','Carcinoma in situ of skin of left lower limb, including hip','D0472','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_D04.8','D04.8','http://hl7.org/fhir/sid/icd-10-cm','Carcinoma in situ of skin of other sites','D048','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_D04.9','D04.9','http://hl7.org/fhir/sid/icd-10-cm','Carcinoma in situ of skin, unspecified','D049','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_D06.0','D06.0','http://hl7.org/fhir/sid/icd-10-cm','Carcinoma in situ of endocervix','D060','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_D06.1','D06.1','http://hl7.org/fhir/sid/icd-10-cm','Carcinoma in situ of exocervix','D061','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_D06.7','D06.7','http://hl7.org/fhir/sid/icd-10-cm','Carcinoma in situ of other parts of cervix','D067','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_D06.9','D06.9','http://hl7.org/fhir/sid/icd-10-cm','Carcinoma in situ of cervix, unspecified','D069','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_D07.5','D07.5','http://hl7.org/fhir/sid/icd-10-cm','Carcinoma in situ of prostate','D075','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_D13.7','D13.7','http://hl7.org/fhir/sid/icd-10-cm','Benign neoplasm of endocrine pancreas','D137','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_D21.4','D21.4','http://hl7.org/fhir/sid/icd-10-cm','Benign neoplasm of connective and other soft tissue of abdomen','D214','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_D37.8','D37.8','http://hl7.org/fhir/sid/icd-10-cm','Neoplasm of uncertain behavior of other specified digestive organs','D378','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_D3A.00','D3A.00','http://hl7.org/fhir/sid/icd-10-cm','Benign carcinoid tumor of unspecified site','D3A00','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_D3A.010','D3A.010','http://hl7.org/fhir/sid/icd-10-cm','Benign carcinoid tumor of the duodenum','D3A010','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_D3A.011','D3A.011','http://hl7.org/fhir/sid/icd-10-cm','Benign carcinoid tumor of the jejunum','D3A011','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_D3A.012','D3A.012','http://hl7.org/fhir/sid/icd-10-cm','Benign carcinoid tumor of the ileum','D3A012','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_D3A.019','D3A.019','http://hl7.org/fhir/sid/icd-10-cm','Benign carcinoid tumor of the small intestine, unspecified portion','D3A019','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_D3A.020','D3A.020','http://hl7.org/fhir/sid/icd-10-cm','Benign carcinoid tumor of the appendix','D3A020','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_D3A.021','D3A.021','http://hl7.org/fhir/sid/icd-10-cm','Benign carcinoid tumor of the cecum','D3A021','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_D3A.022','D3A.022','http://hl7.org/fhir/sid/icd-10-cm','Benign carcinoid tumor of the ascending colon','D3A022','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_D3A.023','D3A.023','http://hl7.org/fhir/sid/icd-10-cm','Benign carcinoid tumor of the transverse colon','D3A023','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_D3A.024','D3A.024','http://hl7.org/fhir/sid/icd-10-cm','Benign carcinoid tumor of the descending colon','D3A024','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_D3A.025','D3A.025','http://hl7.org/fhir/sid/icd-10-cm','Benign carcinoid tumor of the sigmoid colon','D3A025','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_D3A.026','D3A.026','http://hl7.org/fhir/sid/icd-10-cm','Benign carcinoid tumor of the rectum','D3A026','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_D3A.029','D3A.029','http://hl7.org/fhir/sid/icd-10-cm','Benign carcinoid tumor of the large intestine, unspecified portion','D3A029','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_D3A.090','D3A.090','http://hl7.org/fhir/sid/icd-10-cm','Benign carcinoid tumor of the bronchus and lung','D3A090','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_D3A.091','D3A.091','http://hl7.org/fhir/sid/icd-10-cm','Benign carcinoid tumor of the thymus','D3A091','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_D3A.092','D3A.092','http://hl7.org/fhir/sid/icd-10-cm','Benign carcinoid tumor of the stomach','D3A092','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_D3A.093','D3A.093','http://hl7.org/fhir/sid/icd-10-cm','Benign carcinoid tumor of the kidney','D3A093','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_D3A.094','D3A.094','http://hl7.org/fhir/sid/icd-10-cm','Benign carcinoid tumor of the foregut, unspecified','D3A094','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_D3A.095','D3A.095','http://hl7.org/fhir/sid/icd-10-cm','Benign carcinoid tumor of the midgut, unspecified','D3A095','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_D3A.096','D3A.096','http://hl7.org/fhir/sid/icd-10-cm','Benign carcinoid tumor of the hindgut, unspecified','D3A096','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_D3A.098','D3A.098','http://hl7.org/fhir/sid/icd-10-cm','Benign carcinoid tumors of other sites','D3A098','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_D3A.8','D3A.8','http://hl7.org/fhir/sid/icd-10-cm','Other benign neuroendocrine tumors','D3A8','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_D44.6','D44.6','http://hl7.org/fhir/sid/icd-10-cm','Neoplasm of uncertain behavior of carotid body','D446','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_D44.7','D44.7','http://hl7.org/fhir/sid/icd-10-cm','Neoplasm of uncertain behavior of aortic body and other paraganglia','D447','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_D48.0','D48.0','http://hl7.org/fhir/sid/icd-10-cm','Neoplasm of uncertain behavior of bone and articular cartilage','D480','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_D49.2','D49.2','http://hl7.org/fhir/sid/icd-10-cm','Neoplasm of unspecified behavior of bone, soft tissue, and skin','D492','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_D61.810','D61.810','http://hl7.org/fhir/sid/icd-10-cm','Antineoplastic chemotherapy induced pancytopenia','D61810','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_D63.0','D63.0','http://hl7.org/fhir/sid/icd-10-cm','Anemia in neoplastic disease','D630','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_D64.81','D64.81','http://hl7.org/fhir/sid/icd-10-cm','Anemia due to antineoplastic chemotherapy','D6481','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_D70.1','D70.1','http://hl7.org/fhir/sid/icd-10-cm','Agranulocytosis secondary to cancer chemotherapy','D701','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_D89.40','D89.40','http://hl7.org/fhir/sid/icd-10-cm','Mast cell activation, unspecified','D8940','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_D89.41','D89.41','http://hl7.org/fhir/sid/icd-10-cm','Monoclonal mast cell activation syndrome','D8941','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_D89.42','D89.42','http://hl7.org/fhir/sid/icd-10-cm','Idiopathic mast cell activation syndrome','D8942','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_D89.43','D89.43','http://hl7.org/fhir/sid/icd-10-cm','Secondary mast cell activation','D8943','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_D89.49','D89.49','http://hl7.org/fhir/sid/icd-10-cm','Other mast cell activation disorder','D8949','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_E88.3','E88.3','http://hl7.org/fhir/sid/icd-10-cm','Tumor lysis syndrome','E883','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_G13.0','G13.0','http://hl7.org/fhir/sid/icd-10-cm','Paraneoplastic neuromyopathy and neuropathy','G130','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_G13.1','G13.1','http://hl7.org/fhir/sid/icd-10-cm','Other systemic atrophy primarily affecting central nervous system in neoplastic disease','G131','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_G73.1','G73.1','http://hl7.org/fhir/sid/icd-10-cm','Lambert-Eaton syndrome in neoplastic disease','G731','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_G89.3','G89.3','http://hl7.org/fhir/sid/icd-10-cm','Neoplasm related pain (acute) (chronic)','G893','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_H47.42','H47.42','http://hl7.org/fhir/sid/icd-10-cm','Disorders of optic chiasm in (due to) neoplasm','H4742','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_H47.521','H47.521','http://hl7.org/fhir/sid/icd-10-cm','Disorders of visual pathways in (due to) neoplasm, right side','H47521','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_H47.522','H47.522','http://hl7.org/fhir/sid/icd-10-cm','Disorders of visual pathways in (due to) neoplasm, left side','H47522','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_H47.529','H47.529','http://hl7.org/fhir/sid/icd-10-cm','Disorders of visual pathways in (due to) neoplasm, unspecified side','H47529','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_H47.631','H47.631','http://hl7.org/fhir/sid/icd-10-cm','Disorders of visual cortex in (due to) neoplasm, right side of brain','H47631','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_H47.632','H47.632','http://hl7.org/fhir/sid/icd-10-cm','Disorders of visual cortex in (due to) neoplasm, left side of brain','H47632','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_H47.639','H47.639','http://hl7.org/fhir/sid/icd-10-cm','Disorders of visual cortex in (due to) neoplasm, unspecified side of brain','H47639','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_I31.31','I31.31','http://hl7.org/fhir/sid/icd-10-cm','Malignant pericardial effusion in diseases classified elsewhere','I3131','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_J91.0','J91.0','http://hl7.org/fhir/sid/icd-10-cm','Malignant pleural effusion','J910','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_K12.31','K12.31','http://hl7.org/fhir/sid/icd-10-cm','Oral mucositis (ulcerative) due to antineoplastic therapy','K1231','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_K12.33','K12.33','http://hl7.org/fhir/sid/icd-10-cm','Oral mucositis (ulcerative) due to radiation','K1233','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_K62.7','K62.7','http://hl7.org/fhir/sid/icd-10-cm','Radiation proctitis','K627','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_L10.81','L10.81','http://hl7.org/fhir/sid/icd-10-cm','Paraneoplastic pemphigus','L1081','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M36.0','M36.0','http://hl7.org/fhir/sid/icd-10-cm','Dermato(poly)myositis in neoplastic disease','M360','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M36.1','M36.1','http://hl7.org/fhir/sid/icd-10-cm','Arthropathy in neoplastic disease','M361','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.50XA','M84.50XA','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, unspecified site, initial encounter for fracture','M8450XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.50XD','M84.50XD','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, unspecified site, subsequent encounter for fracture with routine healing','M8450XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.50XG','M84.50XG','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, unspecified site, subsequent encounter for fracture with delayed healing','M8450XG','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.50XK','M84.50XK','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, unspecified site, subsequent encounter for fracture with nonunion','M8450XK','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.50XP','M84.50XP','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, unspecified site, subsequent encounter for fracture with malunion','M8450XP','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.50XS','M84.50XS','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, unspecified site, sequela','M8450XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.511A','M84.511A','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, right shoulder, initial encounter for fracture','M84511A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.511D','M84.511D','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, right shoulder, subsequent encounter for fracture with routine healing','M84511D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.511G','M84.511G','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, right shoulder, subsequent encounter for fracture with delayed healing','M84511G','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.511K','M84.511K','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, right shoulder, subsequent encounter for fracture with nonunion','M84511K','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.511P','M84.511P','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, right shoulder, subsequent encounter for fracture with malunion','M84511P','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.511S','M84.511S','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, right shoulder, sequela','M84511S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.512A','M84.512A','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, left shoulder, initial encounter for fracture','M84512A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.512D','M84.512D','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, left shoulder, subsequent encounter for fracture with routine healing','M84512D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.512G','M84.512G','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, left shoulder, subsequent encounter for fracture with delayed healing','M84512G','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.512K','M84.512K','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, left shoulder, subsequent encounter for fracture with nonunion','M84512K','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.512P','M84.512P','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, left shoulder, subsequent encounter for fracture with malunion','M84512P','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.512S','M84.512S','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, left shoulder, sequela','M84512S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.519A','M84.519A','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, unspecified shoulder, initial encounter for fracture','M84519A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.519D','M84.519D','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, unspecified shoulder, subsequent encounter for fracture with routine healing','M84519D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.519G','M84.519G','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, unspecified shoulder, subsequent encounter for fracture with delayed healing','M84519G','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.519K','M84.519K','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, unspecified shoulder, subsequent encounter for fracture with nonunion','M84519K','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.519P','M84.519P','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, unspecified shoulder, subsequent encounter for fracture with malunion','M84519P','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.519S','M84.519S','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, unspecified shoulder, sequela','M84519S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.521A','M84.521A','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, right humerus, initial encounter for fracture','M84521A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.521D','M84.521D','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, right humerus, subsequent encounter for fracture with routine healing','M84521D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.521G','M84.521G','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, right humerus, subsequent encounter for fracture with delayed healing','M84521G','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.521K','M84.521K','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, right humerus, subsequent encounter for fracture with nonunion','M84521K','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.521P','M84.521P','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, right humerus, subsequent encounter for fracture with malunion','M84521P','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.521S','M84.521S','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, right humerus, sequela','M84521S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.522A','M84.522A','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, left humerus, initial encounter for fracture','M84522A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.522D','M84.522D','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, left humerus, subsequent encounter for fracture with routine healing','M84522D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.522G','M84.522G','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, left humerus, subsequent encounter for fracture with delayed healing','M84522G','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.522K','M84.522K','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, left humerus, subsequent encounter for fracture with nonunion','M84522K','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.522P','M84.522P','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, left humerus, subsequent encounter for fracture with malunion','M84522P','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.522S','M84.522S','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, left humerus, sequela','M84522S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.529A','M84.529A','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, unspecified humerus, initial encounter for fracture','M84529A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.529D','M84.529D','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, unspecified humerus, subsequent encounter for fracture with routine healing','M84529D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.529G','M84.529G','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, unspecified humerus, subsequent encounter for fracture with delayed healing','M84529G','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.529K','M84.529K','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, unspecified humerus, subsequent encounter for fracture with nonunion','M84529K','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.529P','M84.529P','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, unspecified humerus, subsequent encounter for fracture with malunion','M84529P','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.529S','M84.529S','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, unspecified humerus, sequela','M84529S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.531A','M84.531A','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, right ulna, initial encounter for fracture','M84531A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.531D','M84.531D','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, right ulna, subsequent encounter for fracture with routine healing','M84531D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.531G','M84.531G','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, right ulna, subsequent encounter for fracture with delayed healing','M84531G','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.531K','M84.531K','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, right ulna, subsequent encounter for fracture with nonunion','M84531K','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.531P','M84.531P','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, right ulna, subsequent encounter for fracture with malunion','M84531P','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.531S','M84.531S','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, right ulna, sequela','M84531S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.532A','M84.532A','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, left ulna, initial encounter for fracture','M84532A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.532D','M84.532D','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, left ulna, subsequent encounter for fracture with routine healing','M84532D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.532G','M84.532G','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, left ulna, subsequent encounter for fracture with delayed healing','M84532G','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.532K','M84.532K','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, left ulna, subsequent encounter for fracture with nonunion','M84532K','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.532P','M84.532P','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, left ulna, subsequent encounter for fracture with malunion','M84532P','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.532S','M84.532S','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, left ulna, sequela','M84532S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.533A','M84.533A','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, right radius, initial encounter for fracture','M84533A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.533D','M84.533D','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, right radius, subsequent encounter for fracture with routine healing','M84533D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.533G','M84.533G','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, right radius, subsequent encounter for fracture with delayed healing','M84533G','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.533K','M84.533K','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, right radius, subsequent encounter for fracture with nonunion','M84533K','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.533P','M84.533P','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, right radius, subsequent encounter for fracture with malunion','M84533P','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.533S','M84.533S','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, right radius, sequela','M84533S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.534A','M84.534A','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, left radius, initial encounter for fracture','M84534A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.534D','M84.534D','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, left radius, subsequent encounter for fracture with routine healing','M84534D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.534G','M84.534G','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, left radius, subsequent encounter for fracture with delayed healing','M84534G','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.534K','M84.534K','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, left radius, subsequent encounter for fracture with nonunion','M84534K','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.534P','M84.534P','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, left radius, subsequent encounter for fracture with malunion','M84534P','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.534S','M84.534S','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, left radius, sequela','M84534S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.539A','M84.539A','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, unspecified ulna and radius, initial encounter for fracture','M84539A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.539D','M84.539D','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, unspecified ulna and radius, subsequent encounter for fracture with routine healing','M84539D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.539G','M84.539G','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, unspecified ulna and radius, subsequent encounter for fracture with delayed healing','M84539G','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.539K','M84.539K','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, unspecified ulna and radius, subsequent encounter for fracture with nonunion','M84539K','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.539P','M84.539P','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, unspecified ulna and radius, subsequent encounter for fracture with malunion','M84539P','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.539S','M84.539S','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, unspecified ulna and radius, sequela','M84539S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.541A','M84.541A','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, right hand, initial encounter for fracture','M84541A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.541D','M84.541D','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, right hand, subsequent encounter for fracture with routine healing','M84541D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.541G','M84.541G','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, right hand, subsequent encounter for fracture with delayed healing','M84541G','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.541K','M84.541K','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, right hand, subsequent encounter for fracture with nonunion','M84541K','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.541P','M84.541P','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, right hand, subsequent encounter for fracture with malunion','M84541P','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.541S','M84.541S','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, right hand, sequela','M84541S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.542A','M84.542A','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, left hand, initial encounter for fracture','M84542A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.542D','M84.542D','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, left hand, subsequent encounter for fracture with routine healing','M84542D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.542G','M84.542G','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, left hand, subsequent encounter for fracture with delayed healing','M84542G','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.542K','M84.542K','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, left hand, subsequent encounter for fracture with nonunion','M84542K','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.542P','M84.542P','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, left hand, subsequent encounter for fracture with malunion','M84542P','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.542S','M84.542S','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, left hand, sequela','M84542S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.549A','M84.549A','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, unspecified hand, initial encounter for fracture','M84549A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.549D','M84.549D','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, unspecified hand, subsequent encounter for fracture with routine healing','M84549D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.549G','M84.549G','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, unspecified hand, subsequent encounter for fracture with delayed healing','M84549G','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.549K','M84.549K','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, unspecified hand, subsequent encounter for fracture with nonunion','M84549K','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.549P','M84.549P','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, unspecified hand, subsequent encounter for fracture with malunion','M84549P','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.549S','M84.549S','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, unspecified hand, sequela','M84549S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.550A','M84.550A','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, pelvis, initial encounter for fracture','M84550A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.550D','M84.550D','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, pelvis, subsequent encounter for fracture with routine healing','M84550D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.550G','M84.550G','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, pelvis, subsequent encounter for fracture with delayed healing','M84550G','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.550K','M84.550K','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, pelvis, subsequent encounter for fracture with nonunion','M84550K','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.550P','M84.550P','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, pelvis, subsequent encounter for fracture with malunion','M84550P','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.550S','M84.550S','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, pelvis, sequela','M84550S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.551A','M84.551A','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, right femur, initial encounter for fracture','M84551A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.551D','M84.551D','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, right femur, subsequent encounter for fracture with routine healing','M84551D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.551G','M84.551G','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, right femur, subsequent encounter for fracture with delayed healing','M84551G','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.551K','M84.551K','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, right femur, subsequent encounter for fracture with nonunion','M84551K','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.551P','M84.551P','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, right femur, subsequent encounter for fracture with malunion','M84551P','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.551S','M84.551S','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, right femur, sequela','M84551S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.552A','M84.552A','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, left femur, initial encounter for fracture','M84552A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.552D','M84.552D','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, left femur, subsequent encounter for fracture with routine healing','M84552D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.552G','M84.552G','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, left femur, subsequent encounter for fracture with delayed healing','M84552G','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.552K','M84.552K','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, left femur, subsequent encounter for fracture with nonunion','M84552K','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.552P','M84.552P','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, left femur, subsequent encounter for fracture with malunion','M84552P','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.552S','M84.552S','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, left femur, sequela','M84552S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.553A','M84.553A','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, unspecified femur, initial encounter for fracture','M84553A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.553D','M84.553D','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, unspecified femur, subsequent encounter for fracture with routine healing','M84553D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.553G','M84.553G','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, unspecified femur, subsequent encounter for fracture with delayed healing','M84553G','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.553K','M84.553K','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, unspecified femur, subsequent encounter for fracture with nonunion','M84553K','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.553P','M84.553P','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, unspecified femur, subsequent encounter for fracture with malunion','M84553P','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.553S','M84.553S','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, unspecified femur, sequela','M84553S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.559A','M84.559A','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, hip, unspecified, initial encounter for fracture','M84559A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.559D','M84.559D','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, hip, unspecified, subsequent encounter for fracture with routine healing','M84559D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.559G','M84.559G','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, hip, unspecified, subsequent encounter for fracture with delayed healing','M84559G','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.559K','M84.559K','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, hip, unspecified, subsequent encounter for fracture with nonunion','M84559K','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.559P','M84.559P','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, hip, unspecified, subsequent encounter for fracture with malunion','M84559P','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.559S','M84.559S','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, hip, unspecified, sequela','M84559S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.561A','M84.561A','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, right tibia, initial encounter for fracture','M84561A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.561D','M84.561D','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, right tibia, subsequent encounter for fracture with routine healing','M84561D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.561G','M84.561G','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, right tibia, subsequent encounter for fracture with delayed healing','M84561G','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.561K','M84.561K','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, right tibia, subsequent encounter for fracture with nonunion','M84561K','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.561P','M84.561P','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, right tibia, subsequent encounter for fracture with malunion','M84561P','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.561S','M84.561S','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, right tibia, sequela','M84561S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.562A','M84.562A','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, left tibia, initial encounter for fracture','M84562A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.562D','M84.562D','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, left tibia, subsequent encounter for fracture with routine healing','M84562D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.562G','M84.562G','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, left tibia, subsequent encounter for fracture with delayed healing','M84562G','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.562K','M84.562K','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, left tibia, subsequent encounter for fracture with nonunion','M84562K','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.562P','M84.562P','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, left tibia, subsequent encounter for fracture with malunion','M84562P','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.562S','M84.562S','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, left tibia, sequela','M84562S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.563A','M84.563A','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, right fibula, initial encounter for fracture','M84563A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.563D','M84.563D','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, right fibula, subsequent encounter for fracture with routine healing','M84563D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.563G','M84.563G','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, right fibula, subsequent encounter for fracture with delayed healing','M84563G','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.563K','M84.563K','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, right fibula, subsequent encounter for fracture with nonunion','M84563K','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.563P','M84.563P','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, right fibula, subsequent encounter for fracture with malunion','M84563P','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.563S','M84.563S','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, right fibula, sequela','M84563S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.564A','M84.564A','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, left fibula, initial encounter for fracture','M84564A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.564D','M84.564D','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, left fibula, subsequent encounter for fracture with routine healing','M84564D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.564G','M84.564G','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, left fibula, subsequent encounter for fracture with delayed healing','M84564G','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.564K','M84.564K','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, left fibula, subsequent encounter for fracture with nonunion','M84564K','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.564P','M84.564P','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, left fibula, subsequent encounter for fracture with malunion','M84564P','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.564S','M84.564S','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, left fibula, sequela','M84564S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.569A','M84.569A','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, unspecified tibia and fibula, initial encounter for fracture','M84569A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.569D','M84.569D','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, unspecified tibia and fibula, subsequent encounter for fracture with routine healing','M84569D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.569G','M84.569G','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, unspecified tibia and fibula, subsequent encounter for fracture with delayed healing','M84569G','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.569K','M84.569K','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, unspecified tibia and fibula, subsequent encounter for fracture with nonunion','M84569K','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.569P','M84.569P','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, unspecified tibia and fibula, subsequent encounter for fracture with malunion','M84569P','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.569S','M84.569S','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, unspecified tibia and fibula, sequela','M84569S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.571A','M84.571A','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, right ankle, initial encounter for fracture','M84571A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.571D','M84.571D','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, right ankle, subsequent encounter for fracture with routine healing','M84571D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.571G','M84.571G','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, right ankle, subsequent encounter for fracture with delayed healing','M84571G','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.571K','M84.571K','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, right ankle, subsequent encounter for fracture with nonunion','M84571K','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.571P','M84.571P','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, right ankle, subsequent encounter for fracture with malunion','M84571P','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.571S','M84.571S','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, right ankle, sequela','M84571S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.572A','M84.572A','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, left ankle, initial encounter for fracture','M84572A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.572D','M84.572D','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, left ankle, subsequent encounter for fracture with routine healing','M84572D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.572G','M84.572G','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, left ankle, subsequent encounter for fracture with delayed healing','M84572G','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.572K','M84.572K','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, left ankle, subsequent encounter for fracture with nonunion','M84572K','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.572P','M84.572P','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, left ankle, subsequent encounter for fracture with malunion','M84572P','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.572S','M84.572S','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, left ankle, sequela','M84572S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.573A','M84.573A','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, unspecified ankle, initial encounter for fracture','M84573A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.573D','M84.573D','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, unspecified ankle, subsequent encounter for fracture with routine healing','M84573D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.573G','M84.573G','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, unspecified ankle, subsequent encounter for fracture with delayed healing','M84573G','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.573K','M84.573K','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, unspecified ankle, subsequent encounter for fracture with nonunion','M84573K','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.573P','M84.573P','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, unspecified ankle, subsequent encounter for fracture with malunion','M84573P','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.573S','M84.573S','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, unspecified ankle, sequela','M84573S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.574A','M84.574A','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, right foot, initial encounter for fracture','M84574A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.574D','M84.574D','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, right foot, subsequent encounter for fracture with routine healing','M84574D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.574G','M84.574G','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, right foot, subsequent encounter for fracture with delayed healing','M84574G','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.574K','M84.574K','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, right foot, subsequent encounter for fracture with nonunion','M84574K','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.574P','M84.574P','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, right foot, subsequent encounter for fracture with malunion','M84574P','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.574S','M84.574S','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, right foot, sequela','M84574S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.575A','M84.575A','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, left foot, initial encounter for fracture','M84575A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.575D','M84.575D','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, left foot, subsequent encounter for fracture with routine healing','M84575D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.575G','M84.575G','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, left foot, subsequent encounter for fracture with delayed healing','M84575G','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.575K','M84.575K','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, left foot, subsequent encounter for fracture with nonunion','M84575K','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.575P','M84.575P','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, left foot, subsequent encounter for fracture with malunion','M84575P','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.575S','M84.575S','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, left foot, sequela','M84575S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.576A','M84.576A','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, unspecified foot, initial encounter for fracture','M84576A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.576D','M84.576D','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, unspecified foot, subsequent encounter for fracture with routine healing','M84576D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.576G','M84.576G','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, unspecified foot, subsequent encounter for fracture with delayed healing','M84576G','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.576K','M84.576K','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, unspecified foot, subsequent encounter for fracture with nonunion','M84576K','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.576P','M84.576P','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, unspecified foot, subsequent encounter for fracture with malunion','M84576P','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.576S','M84.576S','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, unspecified foot, sequela','M84576S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.58XA','M84.58XA','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, other specified site, initial encounter for fracture','M8458XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.58XD','M84.58XD','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, other specified site, subsequent encounter for fracture with routine healing','M8458XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.58XG','M84.58XG','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, other specified site, subsequent encounter for fracture with delayed healing','M8458XG','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.58XK','M84.58XK','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, other specified site, subsequent encounter for fracture with nonunion','M8458XK','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.58XP','M84.58XP','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, other specified site, subsequent encounter for fracture with malunion','M8458XP','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M84.58XS','M84.58XS','http://hl7.org/fhir/sid/icd-10-cm','Pathological fracture in neoplastic disease, other specified site, sequela','M8458XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M90.60','M90.60','http://hl7.org/fhir/sid/icd-10-cm','Osteitis deformans in neoplastic diseases, unspecified site','M9060','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M90.611','M90.611','http://hl7.org/fhir/sid/icd-10-cm','Osteitis deformans in neoplastic diseases, right shoulder','M90611','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M90.612','M90.612','http://hl7.org/fhir/sid/icd-10-cm','Osteitis deformans in neoplastic diseases, left shoulder','M90612','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M90.619','M90.619','http://hl7.org/fhir/sid/icd-10-cm','Osteitis deformans in neoplastic diseases, unspecified shoulder','M90619','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M90.621','M90.621','http://hl7.org/fhir/sid/icd-10-cm','Osteitis deformans in neoplastic diseases, right upper arm','M90621','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M90.622','M90.622','http://hl7.org/fhir/sid/icd-10-cm','Osteitis deformans in neoplastic diseases, left upper arm','M90622','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M90.629','M90.629','http://hl7.org/fhir/sid/icd-10-cm','Osteitis deformans in neoplastic diseases, unspecified upper arm','M90629','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M90.631','M90.631','http://hl7.org/fhir/sid/icd-10-cm','Osteitis deformans in neoplastic diseases, right forearm','M90631','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M90.632','M90.632','http://hl7.org/fhir/sid/icd-10-cm','Osteitis deformans in neoplastic diseases, left forearm','M90632','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M90.639','M90.639','http://hl7.org/fhir/sid/icd-10-cm','Osteitis deformans in neoplastic diseases, unspecified forearm','M90639','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M90.641','M90.641','http://hl7.org/fhir/sid/icd-10-cm','Osteitis deformans in neoplastic diseases, right hand','M90641','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M90.642','M90.642','http://hl7.org/fhir/sid/icd-10-cm','Osteitis deformans in neoplastic diseases, left hand','M90642','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M90.649','M90.649','http://hl7.org/fhir/sid/icd-10-cm','Osteitis deformans in neoplastic diseases, unspecified hand','M90649','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M90.651','M90.651','http://hl7.org/fhir/sid/icd-10-cm','Osteitis deformans in neoplastic diseases, right thigh','M90651','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M90.652','M90.652','http://hl7.org/fhir/sid/icd-10-cm','Osteitis deformans in neoplastic diseases, left thigh','M90652','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M90.659','M90.659','http://hl7.org/fhir/sid/icd-10-cm','Osteitis deformans in neoplastic diseases, unspecified thigh','M90659','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M90.661','M90.661','http://hl7.org/fhir/sid/icd-10-cm','Osteitis deformans in neoplastic diseases, right lower leg','M90661','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M90.662','M90.662','http://hl7.org/fhir/sid/icd-10-cm','Osteitis deformans in neoplastic diseases, left lower leg','M90662','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M90.669','M90.669','http://hl7.org/fhir/sid/icd-10-cm','Osteitis deformans in neoplastic diseases, unspecified lower leg','M90669','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M90.671','M90.671','http://hl7.org/fhir/sid/icd-10-cm','Osteitis deformans in neoplastic diseases, right ankle and foot','M90671','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M90.672','M90.672','http://hl7.org/fhir/sid/icd-10-cm','Osteitis deformans in neoplastic diseases, left ankle and foot','M90672','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M90.679','M90.679','http://hl7.org/fhir/sid/icd-10-cm','Osteitis deformans in neoplastic diseases, unspecified ankle and foot','M90679','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M90.68','M90.68','http://hl7.org/fhir/sid/icd-10-cm','Osteitis deformans in neoplastic diseases, other site','M9068','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_M90.69','M90.69','http://hl7.org/fhir/sid/icd-10-cm','Osteitis deformans in neoplastic diseases, multiple sites','M9069','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_O9A.111','O9A.111','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm complicating pregnancy, first trimester','O9A111','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_O9A.112','O9A.112','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm complicating pregnancy, second trimester','O9A112','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_O9A.113','O9A.113','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm complicating pregnancy, third trimester','O9A113','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_O9A.119','O9A.119','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm complicating pregnancy, unspecified trimester','O9A119','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_O9A.12','O9A.12','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm complicating childbirth','O9A12','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_O9A.13','O9A.13','http://hl7.org/fhir/sid/icd-10-cm','Malignant neoplasm complicating the puerperium','O9A13','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_R18.0','R18.0','http://hl7.org/fhir/sid/icd-10-cm','Malignant ascites','R180','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_R53.0','R53.0','http://hl7.org/fhir/sid/icd-10-cm','Neoplastic (malignant) related fatigue','R530','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_R85.613','R85.613','http://hl7.org/fhir/sid/icd-10-cm','High grade squamous intraepithelial lesion on cytologic smear of anus (HGSIL)','R85613','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_R87.614','R87.614','http://hl7.org/fhir/sid/icd-10-cm','Cytologic evidence of malignancy on smear of cervix','R87614','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_R87.623','R87.623','http://hl7.org/fhir/sid/icd-10-cm','High grade squamous intraepithelial lesion on cytologic smear of vagina (HGSIL)','R87623','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_R90.0','R90.0','http://hl7.org/fhir/sid/icd-10-cm','Intracranial space-occupying lesion found on diagnostic imaging of central nervous system','R900','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_R97.21','R97.21','http://hl7.org/fhir/sid/icd-10-cm','Rising PSA following treatment for malignant neoplasm of prostate','R9721','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_T45.1X2A','T45.1X2A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by antineoplastic and immunosuppressive drugs, intentional self-harm, initial encounter','T451X2A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_T45.1X2D','T45.1X2D','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by antineoplastic and immunosuppressive drugs, intentional self-harm, subsequent encounter','T451X2D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_T45.1X6A','T45.1X6A','http://hl7.org/fhir/sid/icd-10-cm','Underdosing of antineoplastic and immunosuppressive drugs, initial encounter','T451X6A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_T45.1X6D','T45.1X6D','http://hl7.org/fhir/sid/icd-10-cm','Underdosing of antineoplastic and immunosuppressive drugs, subsequent encounter','T451X6D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_T45.1X6S','T45.1X6S','http://hl7.org/fhir/sid/icd-10-cm','Underdosing of antineoplastic and immunosuppressive drugs, sequela','T451X6S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_Z48.3','Z48.3','http://hl7.org/fhir/sid/icd-10-cm','Aftercare following surgery for neoplasm','Z483','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_Z51.0','Z51.0','http://hl7.org/fhir/sid/icd-10-cm','Encounter for antineoplastic radiation therapy','Z510','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_Z51.11','Z51.11','http://hl7.org/fhir/sid/icd-10-cm','Encounter for antineoplastic chemotherapy','Z5111','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1404_Z51.12','Z51.12','http://hl7.org/fhir/sid/icd-10-cm','Encounter for antineoplastic immunotherapy','Z5112','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1525_T56.1X1A','T56.1X1A','http://hl7.org/fhir/sid/icd-10-cm','Toxic effect of mercury and its compounds, accidental (unintentional), initial encounter','T561X1A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1525_T56.1X2A','T56.1X2A','http://hl7.org/fhir/sid/icd-10-cm','Toxic effect of mercury and its compounds, intentional self-harm, initial encounter','T561X2A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1525_T56.1X3A','T56.1X3A','http://hl7.org/fhir/sid/icd-10-cm','Toxic effect of mercury and its compounds, assault, initial encounter','T561X3A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1525_T56.1X4A','T56.1X4A','http://hl7.org/fhir/sid/icd-10-cm','Toxic effect of mercury and its compounds, undetermined, initial encounter','T561X4A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1762_13151001','13151001','http://snomed.info/sct','Flax-dressers'' disease (disorder)','13151001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1762_233672007','233672007','http://snomed.info/sct','Byssinosis grade 3 (disorder)','233672007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1762_85761009','85761009','http://snomed.info/sct','Byssinosis (disorder)','85761009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1884_P35.2','P35.2','http://hl7.org/fhir/sid/icd-10-cm','Congenital herpesviral [herpes simplex] infection','P352','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1640_A75.0','A75.0','http://hl7.org/fhir/sid/icd-10-cm','Epidemic louse-borne typhus fever due to Rickettsia prowazekii','A750','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1640_A75.1','A75.1','http://hl7.org/fhir/sid/icd-10-cm','Recrudescent typhus [Brill''s disease]','A751','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1640_A75.2','A75.2','http://hl7.org/fhir/sid/icd-10-cm','Typhus fever due to Rickettsia typhi','A752','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1640_A75.9','A75.9','http://hl7.org/fhir/sid/icd-10-cm','Typhus fever, unspecified','A759','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1761_J92.0','J92.0','http://hl7.org/fhir/sid/icd-10-cm','Pleural plaque with presence of asbestos','J920','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1764_U09.9','U09.9','http://hl7.org/fhir/sid/icd-10-cm','Post COVID-19 condition, unspecified','U099','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1763_J66.0','J66.0','http://hl7.org/fhir/sid/icd-10-cm','Byssinosis','J660','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1763_J66.1','J66.1','http://hl7.org/fhir/sid/icd-10-cm','Flax-dressers'' disease','J661','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1883_91576008','91576008','http://snomed.info/sct','Congenital herpes simplex (disorder)','91576008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1883_410507001','410507001','http://snomed.info/sct','Neonatal herpes simplex virus conjunctivitis (disorder)','410507001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1760_J61','J61','http://hl7.org/fhir/sid/icd-10-cm','Pneumoconiosis due to asbestos and other mineral fibers','J61','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1418_418815008','418815008','http://snomed.info/sct','Allergy to red meat (finding)','418815008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1418_703930000','703930000','http://snomed.info/sct','Allergy to beef (finding)','703930000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1418_788779003','788779003','http://snomed.info/sct','Allergy to galactose-alpha-1,3 galactose (finding)','788779003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1418_788781001','788781001','http://snomed.info/sct','Delayed allergy to red meat (finding)','788781001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1418_788801007','788801007','http://snomed.info/sct','Delayed allergy to beef (finding)','788801007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1418_788802000','788802000','http://snomed.info/sct','Allergy to cetuximab (finding)','788802000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1418_788803005','788803005','http://snomed.info/sct','Allergic reaction to galactose-alpha 1,3 galactose (disorder)','788803005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_111765001','111765001','http://snomed.info/sct','Poisoning caused by prochlorperazine (disorder)','111765001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_111766000','111766000','http://snomed.info/sct','Poisoning caused by tranquilizer (disorder)','111766000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_1144834002','1144834002','http://snomed.info/sct','Intentional poisoning caused by valproate (disorder)','1144834002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_1144835001','1144835001','http://snomed.info/sct','Accidental poisoning caused by valproate (disorder)','1144835001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_1144836000','1144836000','http://snomed.info/sct','Poisoning caused by valproate (disorder)','1144836000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_1157257000','1157257000','http://snomed.info/sct','Poisoning by hypnotic agent (disorder)','1157257000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_16248006','16248006','http://snomed.info/sct','Poisoning caused by butyrophenone-based tranquilizer (disorder)','16248006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_20260003','20260003','http://snomed.info/sct','Poisoning caused by psychostimulant (disorder)','20260003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_2121004','2121004','http://snomed.info/sct','Poisoning caused by ethopropazine (disorder)','2121004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_212658003','212658003','http://snomed.info/sct','Spiperone poisoning (disorder)','212658003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_212664005','212664005','http://snomed.info/sct','Hydroxyzine poisoning (disorder)','212664005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_216519004','216519004','http://snomed.info/sct','Accidental poisoning caused by phenothiazine-based tranquilizer (disorder)','216519004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_216520005','216520005','http://snomed.info/sct','Accidental poisoning caused by chlorpromazine (disorder)','216520005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_216521009','216521009','http://snomed.info/sct','Accidental poisoning caused by fluphenazine (disorder)','216521009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_216522002','216522002','http://snomed.info/sct','Accidental poisoning caused by prochlorperazine (disorder)','216522002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_216523007','216523007','http://snomed.info/sct','Accidental poisoning caused by promazine (disorder)','216523007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_216525000','216525000','http://snomed.info/sct','Accidental poisoning caused by butyrophenone-based tranquilizer (disorder)','216525000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_216526004','216526004','http://snomed.info/sct','Accidental poisoning caused by haloperidol (disorder)','216526004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_216527008','216527008','http://snomed.info/sct','Accidental poisoning caused by spiperone (disorder)','216527008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_216528003','216528003','http://snomed.info/sct','Accidental poisoning caused by trifluperidol (disorder)','216528003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_216530001','216530001','http://snomed.info/sct','Accidental poisoning caused by benzodiazepine-based tranquilizer (disorder)','216530001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_216539000','216539000','http://snomed.info/sct','Accidental poisoning caused by hydroxyzine (disorder)','216539000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_216545008','216545008','http://snomed.info/sct','Accidental poisoning caused by antidepressants (disorder)','216545008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_216546009','216546009','http://snomed.info/sct','Accidental poisoning caused by amitriptyline (disorder)','216546009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_216547000','216547000','http://snomed.info/sct','Accidental poisoning caused by imipramine (disorder)','216547000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_216558009','216558009','http://snomed.info/sct','Accidental poisoning caused by psychostimulants (disorder)','216558009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_216560006','216560006','http://snomed.info/sct','Accidental poisoning caused by caffeine (disorder)','216560006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_216583009','216583009','http://snomed.info/sct','Accidental poisoning caused by cocaine (disorder)','216583009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_241761001','241761001','http://snomed.info/sct','Poisoning caused by crack cocaine (disorder)','241761001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_242256000','242256000','http://snomed.info/sct','Accidental overdose of tricyclic antidepressant (disorder)','242256000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_27331008','27331008','http://snomed.info/sct','Phenothiazine poisoning (disorder)','27331008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_27956007','27956007','http://snomed.info/sct','Cocaine intoxication (disorder)','27956007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290544006','290544006','http://snomed.info/sct','Intentional cocaine poisoning (disorder)','290544006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290799000','290799000','http://snomed.info/sct','Accidental ethopropazine poisoning (disorder)','290799000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290800001','290800001','http://snomed.info/sct','Intentional ethopropazine poisoning (disorder)','290800001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290802009','290802009','http://snomed.info/sct','Lithium poisoning (disorder)','290802009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290803004','290803004','http://snomed.info/sct','Accidental lithium poisoning (disorder)','290803004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290804005','290804005','http://snomed.info/sct','Intentional lithium poisoning (disorder)','290804005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290808008','290808008','http://snomed.info/sct','Intentional amitriptyline poisoning (disorder)','290808008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290810005','290810005','http://snomed.info/sct','Amoxapine poisoning (disorder)','290810005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290811009','290811009','http://snomed.info/sct','Accidental amoxapine poisoning (disorder)','290811009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290812002','290812002','http://snomed.info/sct','Intentional amoxapine poisoning (disorder)','290812002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290814001','290814001','http://snomed.info/sct','Butriptyline poisoning (disorder)','290814001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290815000','290815000','http://snomed.info/sct','Accidental butriptyline poisoning (disorder)','290815000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290816004','290816004','http://snomed.info/sct','Intentional butriptyline poisoning (disorder)','290816004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290818003','290818003','http://snomed.info/sct','Clomipramine poisoning (disorder)','290818003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290819006','290819006','http://snomed.info/sct','Accidental clomipramine poisoning (disorder)','290819006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290820000','290820000','http://snomed.info/sct','Intentional clomipramine poisoning (disorder)','290820000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290822008','290822008','http://snomed.info/sct','Desipramine poisoning (disorder)','290822008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290823003','290823003','http://snomed.info/sct','Accidental desipramine poisoning (disorder)','290823003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290824009','290824009','http://snomed.info/sct','Intentional desipramine poisoning (disorder)','290824009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290826006','290826006','http://snomed.info/sct','Dothiepin poisoning (disorder)','290826006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290827002','290827002','http://snomed.info/sct','Accidental dothiepin poisoning (disorder)','290827002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290828007','290828007','http://snomed.info/sct','Intentional dothiepin poisoning (disorder)','290828007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290830009','290830009','http://snomed.info/sct','Doxepin poisoning (disorder)','290830009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290831008','290831008','http://snomed.info/sct','Accidental doxepin poisoning (disorder)','290831008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290832001','290832001','http://snomed.info/sct','Intentional doxepin poisoning (disorder)','290832001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290835004','290835004','http://snomed.info/sct','Intentional imipramine poisoning (disorder)','290835004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290837007','290837007','http://snomed.info/sct','Iprindole poisoning (disorder)','290837007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290838002','290838002','http://snomed.info/sct','Accidental iprindole poisoning (disorder)','290838002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290839005','290839005','http://snomed.info/sct','Intentional iprindole poisoning (disorder)','290839005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290841006','290841006','http://snomed.info/sct','Lofepramine poisoning (disorder)','290841006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290842004','290842004','http://snomed.info/sct','Accidental lofepramine poisoning (disorder)','290842004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290843009','290843009','http://snomed.info/sct','Intentional lofepramine poisoning (disorder)','290843009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290845002','290845002','http://snomed.info/sct','Nortriptyline poisoning (disorder)','290845002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290846001','290846001','http://snomed.info/sct','Accidental nortriptyline poisoning (disorder)','290846001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290847005','290847005','http://snomed.info/sct','Intentional nortriptyline poisoning (disorder)','290847005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290849008','290849008','http://snomed.info/sct','Protriptyline poisoning (disorder)','290849008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290850008','290850008','http://snomed.info/sct','Accidental protriptyline poisoning (disorder)','290850008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290851007','290851007','http://snomed.info/sct','Intentional protriptyline poisoning (disorder)','290851007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290853005','290853005','http://snomed.info/sct','Trimipramine poisoning (disorder)','290853005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290854004','290854004','http://snomed.info/sct','Accidental trimipramine poisoning (disorder)','290854004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290855003','290855003','http://snomed.info/sct','Intentional trimipramine poisoning (disorder)','290855003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290857006','290857006','http://snomed.info/sct','Accidental tricyclic antidepressant poisoning (disorder)','290857006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290858001','290858001','http://snomed.info/sct','Intentional tricyclic antidepressant poisoning (disorder)','290858001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290860004','290860004','http://snomed.info/sct','Phenelzine poisoning (disorder)','290860004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290861000','290861000','http://snomed.info/sct','Accidental phenelzine poisoning (disorder)','290861000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290862007','290862007','http://snomed.info/sct','Intentional phenelzine poisoning (disorder)','290862007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290864008','290864008','http://snomed.info/sct','Iproniazid poisoning (disorder)','290864008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290865009','290865009','http://snomed.info/sct','Accidental iproniazid poisoning (disorder)','290865009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290866005','290866005','http://snomed.info/sct','Intentional iproniazid poisoning (disorder)','290866005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290868006','290868006','http://snomed.info/sct','Isocarboxazid poisoning (disorder)','290868006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290869003','290869003','http://snomed.info/sct','Accidental isocarboxazid poisoning (disorder)','290869003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290870002','290870002','http://snomed.info/sct','Intentional isocarboxazid poisoning (disorder)','290870002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290872005','290872005','http://snomed.info/sct','Tranylcypromine poisoning (disorder)','290872005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290873000','290873000','http://snomed.info/sct','Accidental tranylcypromine poisoning (disorder)','290873000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290874006','290874006','http://snomed.info/sct','Intentional tranylcypromine poisoning (disorder)','290874006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290876008','290876008','http://snomed.info/sct','Moclobemide poisoning (disorder)','290876008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290877004','290877004','http://snomed.info/sct','Accidental moclobemide poisoning (disorder)','290877004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290878009','290878009','http://snomed.info/sct','Intentional moclobemide poisoning (disorder)','290878009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290884007','290884007','http://snomed.info/sct','Venlafaxine poisoning (disorder)','290884007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290885008','290885008','http://snomed.info/sct','Accidental venlafaxine poisoning (disorder)','290885008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290886009','290886009','http://snomed.info/sct','Intentional venlafaxine poisoning (disorder)','290886009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290888005','290888005','http://snomed.info/sct','Selective serotonin re-uptake inhibitor poisoning (disorder)','290888005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290889002','290889002','http://snomed.info/sct','Sertraline poisoning (disorder)','290889002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290890006','290890006','http://snomed.info/sct','Accidental sertraline poisoning (disorder)','290890006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290891005','290891005','http://snomed.info/sct','Intentional sertraline poisoning (disorder)','290891005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290893008','290893008','http://snomed.info/sct','Paroxetine poisoning (disorder)','290893008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290894002','290894002','http://snomed.info/sct','Accidental paroxetine poisoning (disorder)','290894002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290895001','290895001','http://snomed.info/sct','Intentional paroxetine poisoning (disorder)','290895001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290897009','290897009','http://snomed.info/sct','Nefazodone poisoning (disorder)','290897009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290898004','290898004','http://snomed.info/sct','Accidental nefazodone poisoning (disorder)','290898004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290899007','290899007','http://snomed.info/sct','Intentional nefazodone poisoning (disorder)','290899007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290901003','290901003','http://snomed.info/sct','Citalopram poisoning (disorder)','290901003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290902005','290902005','http://snomed.info/sct','Accidental citalopram poisoning (disorder)','290902005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290903000','290903000','http://snomed.info/sct','Intentional citalopram poisoning (disorder)','290903000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290905007','290905007','http://snomed.info/sct','Fluoxetine poisoning (disorder)','290905007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290906008','290906008','http://snomed.info/sct','Accidental fluoxetine poisoning (disorder)','290906008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290908009','290908009','http://snomed.info/sct','Intentional fluoxetine poisoning (disorder)','290908009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290910006','290910006','http://snomed.info/sct','Fluvoxamine poisoning (disorder)','290910006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290911005','290911005','http://snomed.info/sct','Accidental fluvoxamine poisoning (disorder)','290911005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290912003','290912003','http://snomed.info/sct','Intentional fluvoxamine poisoning (disorder)','290912003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290914002','290914002','http://snomed.info/sct','Tetracyclic antidepressant drug poisoning (disorder)','290914002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290915001','290915001','http://snomed.info/sct','Maprotiline poisoning (disorder)','290915001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290916000','290916000','http://snomed.info/sct','Accidental maprotiline poisoning (disorder)','290916000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290917009','290917009','http://snomed.info/sct','Intentional maprotiline poisoning (disorder)','290917009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290919007','290919007','http://snomed.info/sct','Mianserin poisoning (disorder)','290919007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290920001','290920001','http://snomed.info/sct','Accidental mianserin poisoning (disorder)','290920001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290921002','290921002','http://snomed.info/sct','Intentional mianserin poisoning (disorder)','290921002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290923004','290923004','http://snomed.info/sct','Trazodone poisoning (disorder)','290923004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290924005','290924005','http://snomed.info/sct','Accidental trazodone poisoning (disorder)','290924005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290925006','290925006','http://snomed.info/sct','Intentional trazodone poisoning (disorder)','290925006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290927003','290927003','http://snomed.info/sct','Viloxazine poisoning (disorder)','290927003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290928008','290928008','http://snomed.info/sct','Accidental viloxazine poisoning (disorder)','290928008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_290929000','290929000','http://snomed.info/sct','Intentional viloxazine poisoning (disorder)','290929000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_291121009','291121009','http://snomed.info/sct','Neuroleptic poisoning (disorder)','291121009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_291122002','291122002','http://snomed.info/sct','Sulpiride poisoning (disorder)','291122002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_291123007','291123007','http://snomed.info/sct','Accidental sulpiride poisoning (disorder)','291123007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_291124001','291124001','http://snomed.info/sct','Intentional sulpiride poisoning (disorder)','291124001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_291126004','291126004','http://snomed.info/sct','Loxapine poisoning (disorder)','291126004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_291127008','291127008','http://snomed.info/sct','Accidental loxapine poisoning (disorder)','291127008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_291128003','291128003','http://snomed.info/sct','Intentional loxapine poisoning (disorder)','291128003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_291130001','291130001','http://snomed.info/sct','Clozapine poisoning (disorder)','291130001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_291131002','291131002','http://snomed.info/sct','Accidental clozapine poisoning (disorder)','291131002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_291132009','291132009','http://snomed.info/sct','Intentional clozapine poisoning (disorder)','291132009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_291134005','291134005','http://snomed.info/sct','Risperidone poisoning (disorder)','291134005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_291135006','291135006','http://snomed.info/sct','Accidental risperidone poisoning (disorder)','291135006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_291136007','291136007','http://snomed.info/sct','Intentional risperidone poisoning (disorder)','291136007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_291142006','291142006','http://snomed.info/sct','Benperidol poisoning (disorder)','291142006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_291143001','291143001','http://snomed.info/sct','Accidental benperidol poisoning (disorder)','291143001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_291144007','291144007','http://snomed.info/sct','Intentional benperidol poisoning (disorder)','291144007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_291147000','291147000','http://snomed.info/sct','Intentional trifluperidol poisoning (disorder)','291147000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_291150002','291150002','http://snomed.info/sct','Intentional haloperidol poisoning (disorder)','291150002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_291152005','291152005','http://snomed.info/sct','Droperidol poisoning (disorder)','291152005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_291153000','291153000','http://snomed.info/sct','Accidental droperidol poisoning (disorder)','291153000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_291154006','291154006','http://snomed.info/sct','Intentional droperidol poisoning (disorder)','291154006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_291156008','291156008','http://snomed.info/sct','Diphenylbutylpiperidine poisoning (disorder)','291156008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_291157004','291157004','http://snomed.info/sct','Pimozide poisoning (disorder)','291157004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_291158009','291158009','http://snomed.info/sct','Accidental pimozide poisoning (disorder)','291158009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_291159001','291159001','http://snomed.info/sct','Intentional pimozide poisoning (disorder)','291159001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_291161005','291161005','http://snomed.info/sct','Fluspirilene poisoning (disorder)','291161005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_291162003','291162003','http://snomed.info/sct','Accidental fluspirilene poisoning (disorder)','291162003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_291163008','291163008','http://snomed.info/sct','Intentional fluspirilene poisoning (disorder)','291163008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_291169007','291169007','http://snomed.info/sct','Pericyazine poisoning (disorder)','291169007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_291170008','291170008','http://snomed.info/sct','Accidental pericyazine poisoning (disorder)','291170008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_291171007','291171007','http://snomed.info/sct','Intentional pericyazine poisoning (disorder)','291171007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_291174004','291174004','http://snomed.info/sct','Intentional fluphenazine poisoning (disorder)','291174004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_291181006','291181006','http://snomed.info/sct','Intentional chlorpromazine poisoning (disorder)','291181006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_291183009','291183009','http://snomed.info/sct','Pipothiazine poisoning (disorder)','291183009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_291184003','291184003','http://snomed.info/sct','Accidental pipothiazine poisoning (disorder)','291184003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_291185002','291185002','http://snomed.info/sct','Intentional pipothiazine poisoning (disorder)','291185002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_291188000','291188000','http://snomed.info/sct','Intentional promazine poisoning (disorder)','291188000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_291190004','291190004','http://snomed.info/sct','Thioridazine poisoning (disorder)','291190004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_291191000','291191000','http://snomed.info/sct','Accidental thioridazine poisoning (disorder)','291191000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_291192007','291192007','http://snomed.info/sct','Intentional thioridazine poisoning (disorder)','291192007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_291194008','291194008','http://snomed.info/sct','Perphenazine poisoning (disorder)','291194008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_291195009','291195009','http://snomed.info/sct','Accidental perphenazine poisoning (disorder)','291195009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_291196005','291196005','http://snomed.info/sct','Intentional perphenazine poisoning (disorder)','291196005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_291199003','291199003','http://snomed.info/sct','Intentional prochlorperazine poisoning (disorder)','291199003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_291201001','291201001','http://snomed.info/sct','Trifluoperazine poisoning (disorder)','291201001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_291202008','291202008','http://snomed.info/sct','Accidental trifluoperazine poisoning (disorder)','291202008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_291203003','291203003','http://snomed.info/sct','Intentional trifluoperazine poisoning (disorder)','291203003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_291205005','291205005','http://snomed.info/sct','Thioxanthene poisoning (disorder)','291205005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_291206006','291206006','http://snomed.info/sct','Chlorprothixene poisoning (disorder)','291206006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_291207002','291207002','http://snomed.info/sct','Accidental chlorprothixene poisoning (disorder)','291207002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_291208007','291208007','http://snomed.info/sct','Intentional chlorprothixene poisoning (disorder)','291208007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_291211008','291211008','http://snomed.info/sct','Flupenthixol decanoate poisoning (disorder)','291211008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_291212001','291212001','http://snomed.info/sct','Accidental flupenthixol decanoate poisoning (disorder)','291212001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_291213006','291213006','http://snomed.info/sct','Intentional flupenthixol decanoate poisoning (disorder)','291213006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_291215004','291215004','http://snomed.info/sct','Zuclopenthixol decanoate poisoning (disorder)','291215004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_291216003','291216003','http://snomed.info/sct','Accidental zuclopenthixol decanoate poisoning (disorder)','291216003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_291217007','291217007','http://snomed.info/sct','Intentional zuclopenthixol decanoate poisoning (disorder)','291217007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_291219005','291219005','http://snomed.info/sct','Zuclopenthixol poisoning (disorder)','291219005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_291220004','291220004','http://snomed.info/sct','Accidental zuclopenthixol poisoning (disorder)','291220004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_291221000','291221000','http://snomed.info/sct','Intentional zuclopenthixol poisoning (disorder)','291221000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_291223002','291223002','http://snomed.info/sct','Flupenthixol poisoning (disorder)','291223002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_291224008','291224008','http://snomed.info/sct','Accidental flupenthixol poisoning (disorder)','291224008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_291225009','291225009','http://snomed.info/sct','Intentional flupenthixol poisoning (disorder)','291225009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_291227001','291227001','http://snomed.info/sct','Oxypertine poisoning (disorder)','291227001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_291228006','291228006','http://snomed.info/sct','Accidental oxypertine poisoning (disorder)','291228006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_291229003','291229003','http://snomed.info/sct','Intentional oxypertine poisoning (disorder)','291229003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_291231007','291231007','http://snomed.info/sct','Remoxipride poisoning (disorder)','291231007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_291232000','291232000','http://snomed.info/sct','Accidental remoxipride poisoning (disorder)','291232000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_291233005','291233005','http://snomed.info/sct','Intentional remoxipride poisoning (disorder)','291233005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_291261004','291261004','http://snomed.info/sct','Accidental poisoning caused by crack cocaine (disorder)','291261004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_291263001','291263001','http://snomed.info/sct','Intentional poisoning caused by crack cocaine (disorder)','291263001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_291266009','291266009','http://snomed.info/sct','Intentional caffeine poisoning (disorder)','291266009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295566002','295566002','http://snomed.info/sct','Local cocaine overdose (disorder)','295566002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295567006','295567006','http://snomed.info/sct','Accidental local cocaine overdose (disorder)','295567006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295568001','295568001','http://snomed.info/sct','Intentional local cocaine overdose (disorder)','295568001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295830007','295830007','http://snomed.info/sct','Overdose of antidepressant drug (disorder)','295830007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295831006','295831006','http://snomed.info/sct','Lithium overdose (disorder)','295831006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295832004','295832004','http://snomed.info/sct','Accidental lithium overdose (disorder)','295832004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295833009','295833009','http://snomed.info/sct','Intentional lithium overdose (disorder)','295833009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295835002','295835002','http://snomed.info/sct','Amitriptyline overdose (disorder)','295835002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295836001','295836001','http://snomed.info/sct','Accidental amitriptyline overdose (disorder)','295836001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295837005','295837005','http://snomed.info/sct','Intentional amitriptyline overdose (disorder)','295837005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295839008','295839008','http://snomed.info/sct','Amoxapine overdose (disorder)','295839008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295840005','295840005','http://snomed.info/sct','Accidental amoxapine overdose (disorder)','295840005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295841009','295841009','http://snomed.info/sct','Intentional amoxapine overdose (disorder)','295841009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295843007','295843007','http://snomed.info/sct','Butriptyline overdose (disorder)','295843007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295844001','295844001','http://snomed.info/sct','Accidental butriptyline overdose (disorder)','295844001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295845000','295845000','http://snomed.info/sct','Intentional butriptyline overdose (disorder)','295845000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295847008','295847008','http://snomed.info/sct','Clomipramine overdose (disorder)','295847008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295848003','295848003','http://snomed.info/sct','Accidental clomipramine overdose (disorder)','295848003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295849006','295849006','http://snomed.info/sct','Intentional clomipramine overdose (disorder)','295849006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295852003','295852003','http://snomed.info/sct','Desipramine overdose (disorder)','295852003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295853008','295853008','http://snomed.info/sct','Accidental desipramine overdose (disorder)','295853008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295854002','295854002','http://snomed.info/sct','Intentional desipramine overdose (disorder)','295854002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295856000','295856000','http://snomed.info/sct','Dothiepin overdose (disorder)','295856000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295857009','295857009','http://snomed.info/sct','Accidental dothiepin overdose (disorder)','295857009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295858004','295858004','http://snomed.info/sct','Intentional dothiepin overdose (disorder)','295858004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295860002','295860002','http://snomed.info/sct','Doxepin overdose (disorder)','295860002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295861003','295861003','http://snomed.info/sct','Accidental doxepin overdose (disorder)','295861003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295862005','295862005','http://snomed.info/sct','Intentional doxepin overdose (disorder)','295862005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295864006','295864006','http://snomed.info/sct','Imipramine overdose (disorder)','295864006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295865007','295865007','http://snomed.info/sct','Accidental imipramine overdose (disorder)','295865007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295866008','295866008','http://snomed.info/sct','Intentional imipramine overdose (disorder)','295866008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295868009','295868009','http://snomed.info/sct','Iprindole overdose (disorder)','295868009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295869001','295869001','http://snomed.info/sct','Accidental iprindole overdose (disorder)','295869001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295870000','295870000','http://snomed.info/sct','Intentional iprindole overdose (disorder)','295870000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295872008','295872008','http://snomed.info/sct','Lofepramine overdose (disorder)','295872008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295873003','295873003','http://snomed.info/sct','Accidental lofepramine overdose (disorder)','295873003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295874009','295874009','http://snomed.info/sct','Intentional lofepramine overdose (disorder)','295874009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295877002','295877002','http://snomed.info/sct','Nortriptyline overdose (disorder)','295877002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295878007','295878007','http://snomed.info/sct','Accidental nortriptyline overdose (disorder)','295878007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295879004','295879004','http://snomed.info/sct','Intentional nortriptyline overdose (disorder)','295879004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295881002','295881002','http://snomed.info/sct','Protriptyline overdose (disorder)','295881002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295882009','295882009','http://snomed.info/sct','Accidental protriptyline overdose (disorder)','295882009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295883004','295883004','http://snomed.info/sct','Intentional protriptyline overdose (disorder)','295883004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295885006','295885006','http://snomed.info/sct','Trimipramine overdose (disorder)','295885006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295886007','295886007','http://snomed.info/sct','Accidental trimipramine overdose (disorder)','295886007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295887003','295887003','http://snomed.info/sct','Intentional trimipramine overdose (disorder)','295887003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295890009','295890009','http://snomed.info/sct','Phenelzine overdose (disorder)','295890009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295891008','295891008','http://snomed.info/sct','Accidental phenelzine overdose (disorder)','295891008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295892001','295892001','http://snomed.info/sct','Intentional phenelzine overdose (disorder)','295892001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295894000','295894000','http://snomed.info/sct','Iproniazid overdose (disorder)','295894000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295895004','295895004','http://snomed.info/sct','Accidental iproniazid overdose (disorder)','295895004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295896003','295896003','http://snomed.info/sct','Intentional iproniazid overdose (disorder)','295896003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295898002','295898002','http://snomed.info/sct','Isocarboxazid overdose (disorder)','295898002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295899005','295899005','http://snomed.info/sct','Accidental isocarboxazid overdose (disorder)','295899005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295900000','295900000','http://snomed.info/sct','Intentional isocarboxazid overdose (disorder)','295900000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295902008','295902008','http://snomed.info/sct','Tranylcypromine overdose (disorder)','295902008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295903003','295903003','http://snomed.info/sct','Accidental tranylcypromine overdose (disorder)','295903003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295904009','295904009','http://snomed.info/sct','Intentional tranylcypromine overdose (disorder)','295904009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295906006','295906006','http://snomed.info/sct','Moclobemide overdose (disorder)','295906006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295907002','295907002','http://snomed.info/sct','Accidental moclobemide overdose (disorder)','295907002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295908007','295908007','http://snomed.info/sct','Intentional moclobemide overdose (disorder)','295908007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295914000','295914000','http://snomed.info/sct','Venlafaxine overdose (disorder)','295914000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295915004','295915004','http://snomed.info/sct','Accidental venlafaxine overdose (disorder)','295915004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295916003','295916003','http://snomed.info/sct','Intentional venlafaxine overdose (disorder)','295916003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295918002','295918002','http://snomed.info/sct','Selective serotonin re-uptake inhibitor overdose (disorder)','295918002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295919005','295919005','http://snomed.info/sct','Sertraline overdose (disorder)','295919005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295920004','295920004','http://snomed.info/sct','Accidental sertraline overdose (disorder)','295920004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295921000','295921000','http://snomed.info/sct','Intentional sertraline overdose (disorder)','295921000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295923002','295923002','http://snomed.info/sct','Paroxetine overdose (disorder)','295923002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295924008','295924008','http://snomed.info/sct','Accidental paroxetine overdose (disorder)','295924008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295925009','295925009','http://snomed.info/sct','Intentional paroxetine overdose (disorder)','295925009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295927001','295927001','http://snomed.info/sct','Nefazodone overdose (disorder)','295927001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295928006','295928006','http://snomed.info/sct','Accidental nefazodone overdose (disorder)','295928006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295929003','295929003','http://snomed.info/sct','Intentional nefazodone overdose (disorder)','295929003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295931007','295931007','http://snomed.info/sct','Citalopram overdose (disorder)','295931007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295932000','295932000','http://snomed.info/sct','Accidental citalopram overdose (disorder)','295932000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295933005','295933005','http://snomed.info/sct','Intentional citalopram overdose (disorder)','295933005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295935003','295935003','http://snomed.info/sct','Fluoxetine overdose (disorder)','295935003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295936002','295936002','http://snomed.info/sct','Accidental fluoxetine overdose (disorder)','295936002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295937006','295937006','http://snomed.info/sct','Intentional fluoxetine overdose (disorder)','295937006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295939009','295939009','http://snomed.info/sct','Fluvoxamine overdose (disorder)','295939009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295940006','295940006','http://snomed.info/sct','Accidental fluvoxamine overdose (disorder)','295940006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295941005','295941005','http://snomed.info/sct','Intentional fluvoxamine overdose (disorder)','295941005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295943008','295943008','http://snomed.info/sct','Tetracyclic antidepressant drug overdose (disorder)','295943008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295944002','295944002','http://snomed.info/sct','Maprotiline overdose (disorder)','295944002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295945001','295945001','http://snomed.info/sct','Accidental maprotiline overdose (disorder)','295945001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295946000','295946000','http://snomed.info/sct','Intentional maprotiline overdose (disorder)','295946000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295948004','295948004','http://snomed.info/sct','Mianserin overdose (disorder)','295948004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295949007','295949007','http://snomed.info/sct','Accidental mianserin overdose (disorder)','295949007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295950007','295950007','http://snomed.info/sct','Intentional mianserin overdose (disorder)','295950007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295952004','295952004','http://snomed.info/sct','Trazodone overdose (disorder)','295952004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295953009','295953009','http://snomed.info/sct','Accidental trazodone overdose (disorder)','295953009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295954003','295954003','http://snomed.info/sct','Intentional trazodone overdose (disorder)','295954003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295956001','295956001','http://snomed.info/sct','Viloxazine overdose (disorder)','295956001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295957005','295957005','http://snomed.info/sct','Accidental viloxazine overdose (disorder)','295957005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295958000','295958000','http://snomed.info/sct','Intentional viloxazine overdose (disorder)','295958000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295978008','295978008','http://snomed.info/sct','Overdose of sodium valproate (disorder)','295978008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295979000','295979000','http://snomed.info/sct','Accidental overdose by sodium valproate (disorder)','295979000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_295980002','295980002','http://snomed.info/sct','Intentional overdose by sodium valproate (disorder)','295980002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296156009','296156009','http://snomed.info/sct','Neuroleptic overdose (disorder)','296156009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296157000','296157000','http://snomed.info/sct','Sulpiride overdose (disorder)','296157000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296158005','296158005','http://snomed.info/sct','Accidental sulpiride overdose (disorder)','296158005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296159002','296159002','http://snomed.info/sct','Intentional sulpiride overdose (disorder)','296159002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296161006','296161006','http://snomed.info/sct','Loxapine overdose (disorder)','296161006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296162004','296162004','http://snomed.info/sct','Accidental loxapine overdose (disorder)','296162004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296163009','296163009','http://snomed.info/sct','Intentional loxapine overdose (disorder)','296163009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296165002','296165002','http://snomed.info/sct','Clozapine overdose (disorder)','296165002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296166001','296166001','http://snomed.info/sct','Accidental clozapine overdose (disorder)','296166001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296167005','296167005','http://snomed.info/sct','Intentional clozapine overdose (disorder)','296167005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296169008','296169008','http://snomed.info/sct','Risperidone overdose (disorder)','296169008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296170009','296170009','http://snomed.info/sct','Accidental risperidone overdose (disorder)','296170009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296171008','296171008','http://snomed.info/sct','Intentional risperidone overdose (disorder)','296171008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296178002','296178002','http://snomed.info/sct','Benperidol overdose (disorder)','296178002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296180008','296180008','http://snomed.info/sct','Accidental benperidol overdose (disorder)','296180008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296181007','296181007','http://snomed.info/sct','Intentional benperidol overdose (disorder)','296181007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296183005','296183005','http://snomed.info/sct','Trifluperidol overdose (disorder)','296183005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296184004','296184004','http://snomed.info/sct','Accidental trifluperidol overdose (disorder)','296184004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296185003','296185003','http://snomed.info/sct','Intentional trifluperidol overdose (disorder)','296185003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296187006','296187006','http://snomed.info/sct','Haloperidol overdose (disorder)','296187006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296188001','296188001','http://snomed.info/sct','Accidental haloperidol overdose (disorder)','296188001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296189009','296189009','http://snomed.info/sct','Intentional haloperidol overdose (disorder)','296189009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296191001','296191001','http://snomed.info/sct','Droperidol overdose (disorder)','296191001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296192008','296192008','http://snomed.info/sct','Accidental droperidol overdose (disorder)','296192008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296193003','296193003','http://snomed.info/sct','Intentional droperidol overdose (disorder)','296193003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296195005','296195005','http://snomed.info/sct','Diphenylbutylpiperidine overdose (disorder)','296195005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296196006','296196006','http://snomed.info/sct','Pimozide overdose (disorder)','296196006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296197002','296197002','http://snomed.info/sct','Accidental pimozide overdose (disorder)','296197002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296198007','296198007','http://snomed.info/sct','Intentional pimozide overdose (disorder)','296198007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296200001','296200001','http://snomed.info/sct','Fluspirilene overdose (disorder)','296200001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296201002','296201002','http://snomed.info/sct','Accidental fluspirilene overdose (disorder)','296201002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296202009','296202009','http://snomed.info/sct','Intentional fluspirilene overdose (disorder)','296202009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296209000','296209000','http://snomed.info/sct','Pericyazine overdose (disorder)','296209000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296210005','296210005','http://snomed.info/sct','Accidental pericyazine overdose (disorder)','296210005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296211009','296211009','http://snomed.info/sct','Intentional pericyazine overdose (disorder)','296211009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296213007','296213007','http://snomed.info/sct','Fluphenazine decanoate overdose (disorder)','296213007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296214001','296214001','http://snomed.info/sct','Accidental fluphenazine decanoate overdose (disorder)','296214001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296215000','296215000','http://snomed.info/sct','Intentional fluphenazine decanoate overdose (disorder)','296215000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296217008','296217008','http://snomed.info/sct','Fluphenazine enanthate overdose (disorder)','296217008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296218003','296218003','http://snomed.info/sct','Accidental fluphenazine enanthate overdose (disorder)','296218003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296219006','296219006','http://snomed.info/sct','Intentional fluphenazine enanthate overdose (disorder)','296219006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296225005','296225005','http://snomed.info/sct','Chlorpromazine overdose (disorder)','296225005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296226006','296226006','http://snomed.info/sct','Accidental chlorpromazine overdose (disorder)','296226006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296227002','296227002','http://snomed.info/sct','Intentional chlorpromazine overdose (disorder)','296227002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296229004','296229004','http://snomed.info/sct','Pipothiazine overdose (disorder)','296229004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296230009','296230009','http://snomed.info/sct','Accidental pipothiazine overdose (disorder)','296230009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296231008','296231008','http://snomed.info/sct','Intentional pipothiazine overdose (disorder)','296231008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296233006','296233006','http://snomed.info/sct','Promazine overdose (disorder)','296233006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296234000','296234000','http://snomed.info/sct','Accidental promazine overdose (disorder)','296234000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296235004','296235004','http://snomed.info/sct','Intentional promazine overdose (disorder)','296235004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296237007','296237007','http://snomed.info/sct','Thioridazine overdose (disorder)','296237007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296238002','296238002','http://snomed.info/sct','Accidental thioridazine overdose (disorder)','296238002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296239005','296239005','http://snomed.info/sct','Intentional thioridazine overdose (disorder)','296239005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296241006','296241006','http://snomed.info/sct','Perphenazine overdose (disorder)','296241006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296242004','296242004','http://snomed.info/sct','Accidental perphenazine overdose (disorder)','296242004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296243009','296243009','http://snomed.info/sct','Intentional perphenazine overdose (disorder)','296243009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296245002','296245002','http://snomed.info/sct','Prochlorperazine overdose (disorder)','296245002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296246001','296246001','http://snomed.info/sct','Accidental prochlorperazine overdose (disorder)','296246001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296247005','296247005','http://snomed.info/sct','Intentional prochlorperazine overdose (disorder)','296247005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296249008','296249008','http://snomed.info/sct','Trifluoperazine overdose (disorder)','296249008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296250008','296250008','http://snomed.info/sct','Accidental trifluoperazine overdose (disorder)','296250008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296251007','296251007','http://snomed.info/sct','Intentional trifluoperazine overdose (disorder)','296251007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296253005','296253005','http://snomed.info/sct','Thioxanthene overdose (disorder)','296253005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296258001','296258001','http://snomed.info/sct','Flupenthixol decanoate overdose (disorder)','296258001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296259009','296259009','http://snomed.info/sct','Accidental flupenthixol decanoate overdose (disorder)','296259009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296260004','296260004','http://snomed.info/sct','Intentional flupenthixol decanoate overdose (disorder)','296260004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296262007','296262007','http://snomed.info/sct','Zuclopenthixol decanoate overdose (disorder)','296262007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296263002','296263002','http://snomed.info/sct','Accidental zuclopenthixol decanoate overdose (disorder)','296263002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296264008','296264008','http://snomed.info/sct','Intentional zuclopenthixol decanoate overdose (disorder)','296264008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296270002','296270002','http://snomed.info/sct','Flupenthixol overdose (disorder)','296270002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296271003','296271003','http://snomed.info/sct','Accidental flupenthixol overdose (disorder)','296271003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296272005','296272005','http://snomed.info/sct','Intentional flupenthixol overdose (disorder)','296272005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296274006','296274006','http://snomed.info/sct','Oxypertine overdose (disorder)','296274006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296275007','296275007','http://snomed.info/sct','Accidental oxypertine overdose (disorder)','296275007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296276008','296276008','http://snomed.info/sct','Intentional oxypertine overdose (disorder)','296276008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296278009','296278009','http://snomed.info/sct','Remoxipride overdose (disorder)','296278009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296279001','296279001','http://snomed.info/sct','Accidental remoxipride overdose (disorder)','296279001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296281004','296281004','http://snomed.info/sct','Intentional remoxipride overdose (disorder)','296281004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296317006','296317006','http://snomed.info/sct','Psychostimulant overdose (disorder)','296317006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296321004','296321004','http://snomed.info/sct','Overdose of cocaine (disorder)','296321004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296322006','296322006','http://snomed.info/sct','Accidental overdose by cocaine (disorder)','296322006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296323001','296323001','http://snomed.info/sct','Intentional overdose by cocaine (disorder)','296323001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296325008','296325008','http://snomed.info/sct','Overdose of crack cocaine (disorder)','296325008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296326009','296326009','http://snomed.info/sct','Accidental overdose by crack cocaine (disorder)','296326009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296327000','296327000','http://snomed.info/sct','Intentional overdose by crack cocaine (disorder)','296327000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296329002','296329002','http://snomed.info/sct','Caffeine overdose (disorder)','296329002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296330007','296330007','http://snomed.info/sct','Accidental caffeine overdose (disorder)','296330007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296331006','296331006','http://snomed.info/sct','Intentional caffeine overdose (disorder)','296331006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296433008','296433008','http://snomed.info/sct','Hydroxyzine overdose (disorder)','296433008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296434002','296434002','http://snomed.info/sct','Accidental hydroxyzine overdose (disorder)','296434002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_296435001','296435001','http://snomed.info/sct','Intentional hydroxyzine overdose (disorder)','296435001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_297200009','297200009','http://snomed.info/sct','Overdose of tricyclic antidepressant (disorder)','297200009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_297201008','297201008','http://snomed.info/sct','Intentional overdose of tricyclic antidepressant (disorder)','297201008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_361148000','361148000','http://snomed.info/sct','Anxiolytic intoxication (disorder)','361148000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_361149008','361149008','http://snomed.info/sct','Hypnotic intoxication (disorder)','361149008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_426450003','426450003','http://snomed.info/sct','Intentional chlorprothixene overdose (disorder)','426450003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_427131001','427131001','http://snomed.info/sct','Accidental chlorprothixene overdose (disorder)','427131001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_427590008','427590008','http://snomed.info/sct','Chlorprothixene overdose (disorder)','427590008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_461061000124108','461061000124108','http://snomed.info/sct','Intentional psychostimulant overdose (disorder)','461061000124108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_48534006','48534006','http://snomed.info/sct','Poisoning caused by phenothiazine-based tranquilizer (disorder)','48534006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_57005003','57005003','http://snomed.info/sct','Poisoning caused by caffeine (disorder)','57005003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_5851000119107','5851000119107','http://snomed.info/sct','Overdose of psychotropic agent (disorder)','5851000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_61438005','61438005','http://snomed.info/sct','Poisoning caused by psychotropic agent (disorder)','61438005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_65425009','65425009','http://snomed.info/sct','Poisoning caused by imipramine (disorder)','65425009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_69434005','69434005','http://snomed.info/sct','Tricyclic antidepressant poisoning (disorder)','69434005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_699011008','699011008','http://snomed.info/sct','Accidental poisoning caused by psychotropic agent (disorder)','699011008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_70328006','70328006','http://snomed.info/sct','Cocaine intoxication delirium (disorder)','70328006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_73108003','73108003','http://snomed.info/sct','Poisoning caused by trifluperidol (disorder)','73108003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_78695006','78695006','http://snomed.info/sct','Poisoning caused by amitriptyline (disorder)','78695006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_82276009','82276009','http://snomed.info/sct','Poisoning caused by antidepressant (disorder)','82276009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_87363009','87363009','http://snomed.info/sct','Poisoning caused by promazine (disorder)','87363009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_87396006','87396006','http://snomed.info/sct','Poisoning caused by chlorpromazine (disorder)','87396006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_88993007','88993007','http://snomed.info/sct','Poisoning caused by haloperidol (disorder)','88993007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_91267002','91267002','http://snomed.info/sct','Poisoning caused by fluphenazine (disorder)','91267002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_9982009','9982009','http://snomed.info/sct','Poisoning caused by cocaine (disorder)','9982009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1538_216518007','216518007','http://snomed.info/sct','Accidental poisoning caused by tranquilizers (disorder)','216518007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1659_M30.3','M30.3','http://hl7.org/fhir/sid/icd-10-cm','Mucocutaneous lymph node syndrome [Kawasaki]','M303','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1419_Z91.014','Z91.014','http://hl7.org/fhir/sid/icd-10-cm','Allergy to mammalian meats','Z91014','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_10650000','10650000','http://snomed.info/sct','Poisoning caused by ketamine (disorder)','10650000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_18768006','18768006','http://snomed.info/sct','Phenanthrene derivative poisoning (disorder)','18768006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_212596008','212596008','http://snomed.info/sct','Acetanilide poisoning (disorder)','212596008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_212600003','212600003','http://snomed.info/sct','Aminophenazone poisoning (disorder)','212600003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_212602006','212602006','http://snomed.info/sct','Ibuprofen poisoning (disorder)','212602006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_212603001','212603001','http://snomed.info/sct','Naproxen poisoning (disorder)','212603001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_212607000','212607000','http://snomed.info/sct','Pyrabital poisoning (disorder)','212607000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_216471009','216471009','http://snomed.info/sct','Accidental poisoning caused by salicylates (disorder)','216471009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_216472002','216472002','http://snomed.info/sct','Accidental poisoning caused by aspirin (disorder)','216472002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_216475000','216475000','http://snomed.info/sct','Accidental poisoning caused by acetanilide (disorder)','216475000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_216480009','216480009','http://snomed.info/sct','Accidental poisoning caused by aminophenazone (disorder)','216480009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_216481008','216481008','http://snomed.info/sct','Accidental poisoning caused by phenylbutazone (disorder)','216481008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_216485004','216485004','http://snomed.info/sct','Accidental poisoning caused by indomethacin (disorder)','216485004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_216486003','216486003','http://snomed.info/sct','Accidental poisoning caused by naproxen (disorder)','216486003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_216487007','216487007','http://snomed.info/sct','Accidental poisoning caused by ibuprofen (disorder)','216487007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_216488002','216488002','http://snomed.info/sct','Accidental poisoning caused by ketoprofen (disorder)','216488002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_216491002','216491002','http://snomed.info/sct','Accidental poisoning caused by pyrabital (disorder)','216491002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_241748001','241748001','http://snomed.info/sct','Poisoning caused by analgesic drug (disorder)','241748001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_242823008','242823008','http://snomed.info/sct','Intentional non-opiate analgesic overdose (disorder)','242823008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_242824002','242824002','http://snomed.info/sct','Intentional paracetamol overdose (disorder)','242824002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_242825001','242825001','http://snomed.info/sct','Intentional aspirin overdose (disorder)','242825001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_277131000','277131000','http://snomed.info/sct','Intentional non-steroidal anti-inflammatory agent overdose (disorder)','277131000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_278023006','278023006','http://snomed.info/sct','Non-steroidal anti-inflammatory poisoning (disorder)','278023006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_287165005','287165005','http://snomed.info/sct','Accidental poisoning caused by analgesic (disorder)','287165005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_290133008','290133008','http://snomed.info/sct','Poisoning caused by nonopioid analgesic (disorder)','290133008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_290134002','290134002','http://snomed.info/sct','Accidental paracetamol poisoning (disorder)','290134002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_290135001','290135001','http://snomed.info/sct','Intentional paracetamol poisoning (disorder)','290135001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_290145004','290145004','http://snomed.info/sct','Intentional aspirin poisoning (disorder)','290145004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_290148002','290148002','http://snomed.info/sct','Intentional salicylic acid salt poisoning (disorder)','290148002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_290226002','290226002','http://snomed.info/sct','Acemetacin poisoning (disorder)','290226002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_290227006','290227006','http://snomed.info/sct','Accidental acemetacin poisoning (disorder)','290227006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_290228001','290228001','http://snomed.info/sct','Intentional acemetacin poisoning (disorder)','290228001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_290230004','290230004','http://snomed.info/sct','Azapropazone poisoning (disorder)','290230004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_290231000','290231000','http://snomed.info/sct','Accidental azapropazone poisoning (disorder)','290231000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_290232007','290232007','http://snomed.info/sct','Intentional azapropazone poisoning (disorder)','290232007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_290234008','290234008','http://snomed.info/sct','Diclofenac poisoning (disorder)','290234008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_290235009','290235009','http://snomed.info/sct','Accidental diclofenac poisoning (disorder)','290235009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_290236005','290236005','http://snomed.info/sct','Intentional diclofenac poisoning (disorder)','290236005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_290238006','290238006','http://snomed.info/sct','Etodolac poisoning (disorder)','290238006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_290239003','290239003','http://snomed.info/sct','Accidental etodolac poisoning (disorder)','290239003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_290240001','290240001','http://snomed.info/sct','Intentional etodolac poisoning (disorder)','290240001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_290242009','290242009','http://snomed.info/sct','Felbinac poisoning (disorder)','290242009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_290243004','290243004','http://snomed.info/sct','Accidental felbinac poisoning (disorder)','290243004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_290244005','290244005','http://snomed.info/sct','Intentional felbinac poisoning (disorder)','290244005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_290247003','290247003','http://snomed.info/sct','Fenbufen poisoning (disorder)','290247003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_290248008','290248008','http://snomed.info/sct','Accidental fenbufen poisoning (disorder)','290248008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_290249000','290249000','http://snomed.info/sct','Intentional fenbufen poisoning (disorder)','290249000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_290251001','290251001','http://snomed.info/sct','Fenoprofen poisoning (disorder)','290251001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_290252008','290252008','http://snomed.info/sct','Accidental fenoprofen poisoning (disorder)','290252008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_290253003','290253003','http://snomed.info/sct','Intentional fenoprofen poisoning (disorder)','290253003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_290255005','290255005','http://snomed.info/sct','Flurbiprofen poisoning (disorder)','290255005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_290256006','290256006','http://snomed.info/sct','Accidental flurbiprofen poisoning (disorder)','290256006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_290257002','290257002','http://snomed.info/sct','Intentional flurbiprofen poisoning (disorder)','290257002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_290260009','290260009','http://snomed.info/sct','Intentional ibuprofen poisoning (disorder)','290260009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_290263006','290263006','http://snomed.info/sct','Intentional indomethacin poisoning (disorder)','290263006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_290265004','290265004','http://snomed.info/sct','Ketoprofen poisoning (disorder)','290265004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_290267007','290267007','http://snomed.info/sct','Intentional ketoprofen poisoning (disorder)','290267007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_290269005','290269005','http://snomed.info/sct','Ketorolac poisoning (disorder)','290269005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_290270006','290270006','http://snomed.info/sct','Accidental ketorolac poisoning (disorder)','290270006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_290271005','290271005','http://snomed.info/sct','Intentional ketorolac poisoning (disorder)','290271005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_290273008','290273008','http://snomed.info/sct','Mefenamic acid poisoning (disorder)','290273008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_290274002','290274002','http://snomed.info/sct','Accidental mefenamic acid poisoning (disorder)','290274002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_290275001','290275001','http://snomed.info/sct','Intentional mefenamic acid poisoning (disorder)','290275001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_290277009','290277009','http://snomed.info/sct','Nabumetone poisoning (disorder)','290277009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_290278004','290278004','http://snomed.info/sct','Accidental nabumetone poisoning (disorder)','290278004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_290279007','290279007','http://snomed.info/sct','Intentional nabumetone poisoning (disorder)','290279007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_290282002','290282002','http://snomed.info/sct','Intentional naproxen poisoning (disorder)','290282002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_290284001','290284001','http://snomed.info/sct','Nefopam poisoning (disorder)','290284001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_290285000','290285000','http://snomed.info/sct','Accidental nefopam poisoning (disorder)','290285000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_290286004','290286004','http://snomed.info/sct','Intentional nefopam poisoning (disorder)','290286004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_290288003','290288003','http://snomed.info/sct','Oxyphenbutazone poisoning (disorder)','290288003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_290289006','290289006','http://snomed.info/sct','Accidental oxyphenbutazone poisoning (disorder)','290289006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_290290002','290290002','http://snomed.info/sct','Intentional oxyphenbutazone poisoning (disorder)','290290002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_290293000','290293000','http://snomed.info/sct','Intentional phenylbutazone poisoning (disorder)','290293000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_290295007','290295007','http://snomed.info/sct','Piroxicam poisoning (disorder)','290295007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_290297004','290297004','http://snomed.info/sct','Accidental piroxicam poisoning (disorder)','290297004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_290298009','290298009','http://snomed.info/sct','Intentional piroxicam poisoning (disorder)','290298009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_290300009','290300009','http://snomed.info/sct','Sulindac poisoning (disorder)','290300009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_290301008','290301008','http://snomed.info/sct','Accidental sulindac poisoning (disorder)','290301008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_290302001','290302001','http://snomed.info/sct','Intentional sulindac poisoning (disorder)','290302001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_290304000','290304000','http://snomed.info/sct','Tenoxicam poisoning (disorder)','290304000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_290305004','290305004','http://snomed.info/sct','Accidental tenoxicam poisoning (disorder)','290305004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_290306003','290306003','http://snomed.info/sct','Intentional tenoxicam poisoning (disorder)','290306003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_290308002','290308002','http://snomed.info/sct','Tiaprofenic acid poisoning (disorder)','290308002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_290309005','290309005','http://snomed.info/sct','Accidental tiaprofenic acid poisoning (disorder)','290309005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_290310000','290310000','http://snomed.info/sct','Intentional tiaprofenic acid poisoning (disorder)','290310000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_290312008','290312008','http://snomed.info/sct','Tolmetin poisoning (disorder)','290312008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_290313003','290313003','http://snomed.info/sct','Accidental tolmetin poisoning (disorder)','290313003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_290314009','290314009','http://snomed.info/sct','Intentional tolmetin poisoning (disorder)','290314009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_290386001','290386001','http://snomed.info/sct','5-aminosalicylic acid poisoning (disorder)','290386001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_290387005','290387005','http://snomed.info/sct','Accidental 5-aminosalicylic acid poisoning (disorder)','290387005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_290388000','290388000','http://snomed.info/sct','Intentional 5-aminosalicylic acid poisoning (disorder)','290388000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_290491001','290491001','http://snomed.info/sct','Accidental ketamine poisoning (disorder)','290491001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_290492008','290492008','http://snomed.info/sct','Intentional ketamine poisoning (disorder)','290492008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_291165001','291165001','http://snomed.info/sct','Methotrimeprazine poisoning (disorder)','291165001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_291166000','291166000','http://snomed.info/sct','Accidental methotrimeprazine poisoning (disorder)','291166000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_291167009','291167009','http://snomed.info/sct','Intentional methotrimeprazine poisoning (disorder)','291167009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295122008','295122008','http://snomed.info/sct','Overdose of analgesic drug (disorder)','295122008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295123003','295123003','http://snomed.info/sct','Overdose of nonopioid analgesic (disorder)','295123003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295124009','295124009','http://snomed.info/sct','Acetaminophen overdose (disorder)','295124009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295125005','295125005','http://snomed.info/sct','Accidental paracetamol overdose (disorder)','295125005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295134000','295134000','http://snomed.info/sct','Salicylate overdose (disorder)','295134000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295135004','295135004','http://snomed.info/sct','Aspirin overdose (disorder)','295135004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295136003','295136003','http://snomed.info/sct','Accidental aspirin overdose (disorder)','295136003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295138002','295138002','http://snomed.info/sct','Accidental overdose of non-opiate analgesics (disorder)','295138002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295217003','295217003','http://snomed.info/sct','Non-steroidal anti-inflammatory overdose (disorder)','295217003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295218008','295218008','http://snomed.info/sct','Acemetacin overdose (disorder)','295218008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295219000','295219000','http://snomed.info/sct','Accidental acemetacin overdose (disorder)','295219000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295220006','295220006','http://snomed.info/sct','Intentional acemetacin overdose (disorder)','295220006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295222003','295222003','http://snomed.info/sct','Azapropazone overdose (disorder)','295222003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295223008','295223008','http://snomed.info/sct','Accidental azapropazone overdose (disorder)','295223008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295224002','295224002','http://snomed.info/sct','Intentional azapropazone overdose (disorder)','295224002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295226000','295226000','http://snomed.info/sct','Diclofenac overdose (disorder)','295226000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295227009','295227009','http://snomed.info/sct','Accidental diclofenac overdose (disorder)','295227009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295228004','295228004','http://snomed.info/sct','Intentional diclofenac overdose (disorder)','295228004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295230002','295230002','http://snomed.info/sct','Etodolac overdose (disorder)','295230002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295231003','295231003','http://snomed.info/sct','Accidental etodolac overdose (disorder)','295231003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295232005','295232005','http://snomed.info/sct','Intentional etodolac overdose (disorder)','295232005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295234006','295234006','http://snomed.info/sct','Felbinac overdose (disorder)','295234006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295235007','295235007','http://snomed.info/sct','Accidental felbinac overdose (disorder)','295235007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295236008','295236008','http://snomed.info/sct','Intentional felbinac overdose (disorder)','295236008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295238009','295238009','http://snomed.info/sct','Fenbufen overdose (disorder)','295238009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295239001','295239001','http://snomed.info/sct','Accidental fenbufen overdose (disorder)','295239001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295240004','295240004','http://snomed.info/sct','Intentional fenbufen overdose (disorder)','295240004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295242007','295242007','http://snomed.info/sct','Fenoprofen overdose (disorder)','295242007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295243002','295243002','http://snomed.info/sct','Accidental fenoprofen overdose (disorder)','295243002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295244008','295244008','http://snomed.info/sct','Intentional fenoprofen overdose (disorder)','295244008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295246005','295246005','http://snomed.info/sct','Flurbiprofen overdose (disorder)','295246005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295247001','295247001','http://snomed.info/sct','Accidental flurbiprofen overdose (disorder)','295247001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295248006','295248006','http://snomed.info/sct','Intentional flurbiprofen overdose (disorder)','295248006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295250003','295250003','http://snomed.info/sct','Ibuprofen overdose (disorder)','295250003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295251004','295251004','http://snomed.info/sct','Accidental ibuprofen overdose (disorder)','295251004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295252006','295252006','http://snomed.info/sct','Intentional ibuprofen overdose (disorder)','295252006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295254007','295254007','http://snomed.info/sct','Indomethacin overdose (disorder)','295254007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295255008','295255008','http://snomed.info/sct','Accidental indomethacin overdose (disorder)','295255008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295256009','295256009','http://snomed.info/sct','Intentional indomethacin overdose (disorder)','295256009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295258005','295258005','http://snomed.info/sct','Ketoprofen overdose (disorder)','295258005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295259002','295259002','http://snomed.info/sct','Accidental ketoprofen overdose (disorder)','295259002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295260007','295260007','http://snomed.info/sct','Intentional ketoprofen overdose (disorder)','295260007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295262004','295262004','http://snomed.info/sct','Ketorolac overdose (disorder)','295262004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295264003','295264003','http://snomed.info/sct','Accidental ketorolac overdose (disorder)','295264003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295265002','295265002','http://snomed.info/sct','Intentional ketorolac overdose (disorder)','295265002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295267005','295267005','http://snomed.info/sct','Mefenamic acid overdose (disorder)','295267005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295268000','295268000','http://snomed.info/sct','Accidental mefenamic acid overdose (disorder)','295268000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295269008','295269008','http://snomed.info/sct','Intentional mefenamic acid overdose (disorder)','295269008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295271008','295271008','http://snomed.info/sct','Nabumetone overdose (disorder)','295271008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295272001','295272001','http://snomed.info/sct','Accidental nabumetone overdose (disorder)','295272001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295273006','295273006','http://snomed.info/sct','Intentional nabumetone overdose (disorder)','295273006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295275004','295275004','http://snomed.info/sct','Naproxen overdose (disorder)','295275004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295276003','295276003','http://snomed.info/sct','Accidental naproxen overdose (disorder)','295276003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295277007','295277007','http://snomed.info/sct','Intentional naproxen overdose (disorder)','295277007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295279005','295279005','http://snomed.info/sct','Nefopam overdose (disorder)','295279005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295280008','295280008','http://snomed.info/sct','Accidental nefopam overdose (disorder)','295280008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295281007','295281007','http://snomed.info/sct','Intentional nefopam overdose (disorder)','295281007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295283005','295283005','http://snomed.info/sct','Oxyphenbutazone overdose (disorder)','295283005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295284004','295284004','http://snomed.info/sct','Accidental oxyphenbutazone overdose (disorder)','295284004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295285003','295285003','http://snomed.info/sct','Intentional oxyphenbutazone overdose (disorder)','295285003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295287006','295287006','http://snomed.info/sct','Phenylbutazone overdose (disorder)','295287006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295288001','295288001','http://snomed.info/sct','Accidental phenylbutazone overdose (disorder)','295288001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295289009','295289009','http://snomed.info/sct','Intentional phenylbutazone overdose (disorder)','295289009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295291001','295291001','http://snomed.info/sct','Piroxicam overdose (disorder)','295291001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295292008','295292008','http://snomed.info/sct','Accidental piroxicam overdose (disorder)','295292008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295293003','295293003','http://snomed.info/sct','Intentional piroxicam overdose (disorder)','295293003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295295005','295295005','http://snomed.info/sct','Sulindac overdose (disorder)','295295005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295296006','295296006','http://snomed.info/sct','Accidental sulindac overdose (disorder)','295296006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295297002','295297002','http://snomed.info/sct','Intentional sulindac overdose (disorder)','295297002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295299004','295299004','http://snomed.info/sct','Tenoxicam overdose (disorder)','295299004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295300007','295300007','http://snomed.info/sct','Accidental tenoxicam overdose (disorder)','295300007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295301006','295301006','http://snomed.info/sct','Intentional tenoxicam overdose (disorder)','295301006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295303009','295303009','http://snomed.info/sct','Tiaprofenic acid overdose (disorder)','295303009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295304003','295304003','http://snomed.info/sct','Accidental tiaprofenic acid overdose (disorder)','295304003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295305002','295305002','http://snomed.info/sct','Intentional tiaprofenic acid overdose (disorder)','295305002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295307005','295307005','http://snomed.info/sct','Tolmetin overdose (disorder)','295307005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295308000','295308000','http://snomed.info/sct','Accidental tolmetin overdose (disorder)','295308000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295309008','295309008','http://snomed.info/sct','Intentional tolmetin overdose (disorder)','295309008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295311004','295311004','http://snomed.info/sct','Accidental overdose of non-steroidal anti-inflammatory agent (disorder)','295311004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295388003','295388003','http://snomed.info/sct','5-aminosalicylic acid overdose (disorder)','295388003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295389006','295389006','http://snomed.info/sct','Accidental 5-aminosalicylic acid overdose (disorder)','295389006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295390002','295390002','http://snomed.info/sct','Intentional 5-aminosalicylic acid overdose (disorder)','295390002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295507009','295507009','http://snomed.info/sct','Ketamine overdose (disorder)','295507009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295508004','295508004','http://snomed.info/sct','Accidental ketamine overdose (disorder)','295508004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_295510002','295510002','http://snomed.info/sct','Intentional ketamine overdose (disorder)','295510002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_296205006','296205006','http://snomed.info/sct','Methotrimeprazine overdose (disorder)','296205006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_296206007','296206007','http://snomed.info/sct','Accidental methotrimeprazine overdose (disorder)','296206007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_296207003','296207003','http://snomed.info/sct','Intentional methotrimeprazine overdose (disorder)','296207003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_35528000','35528000','http://snomed.info/sct','Metabolic acidosis caused by salicylate (disorder)','35528000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_439011002','439011002','http://snomed.info/sct','Self-administered intentional poisoning caused by analgesic (disorder)','439011002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_52382004','52382004','http://snomed.info/sct','Poisoning caused by indomethacin (disorder)','52382004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_61544007','61544007','http://snomed.info/sct','Flunixin poisoning (disorder)','61544007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_70273001','70273001','http://snomed.info/sct','Poisoning caused by paracetamol (disorder)','70273001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_724711008','724711008','http://snomed.info/sct','Intoxication caused by ketamine (disorder)','724711008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_7248001','7248001','http://snomed.info/sct','Poisoning caused by salicylate (disorder)','7248001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1535_89715001','89715001','http://snomed.info/sct','Poisoning caused by phenylbutazone (disorder)','89715001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1656_406597005','406597005','http://snomed.info/sct','Infection caused by Nipah virus (disorder)','406597005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1656_721791005','721791005','http://snomed.info/sct','Encephalitis caused by Nipah virus (disorder)','721791005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1534_1149328002','1149328002','http://snomed.info/sct','Cannabis poisoning (disorder)','1149328002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1534_23527004','23527004','http://snomed.info/sct','Cannabis intoxication (disorder)','23527004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1534_291246000','291246000','http://snomed.info/sct','Accidental cannabis poisoning (disorder)','291246000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1534_291247009','291247009','http://snomed.info/sct','Intentional cannabis poisoning (disorder)','291247009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1534_296301000','296301000','http://snomed.info/sct','Cannabis overdose (disorder)','296301000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1534_296302007','296302007','http://snomed.info/sct','Accidental cannabis overdose (disorder)','296302007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1534_296303002','296303002','http://snomed.info/sct','Intentional cannabis overdose (disorder)','296303002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1534_39807006','39807006','http://snomed.info/sct','Cannabis intoxication delirium (disorder)','39807006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1776_P39.1','P39.1','http://hl7.org/fhir/sid/icd-10-cm','Neonatal conjunctivitis and dacryocystitis','P391','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1658_16025471000119107','16025471000119107','http://snomed.info/sct','Aneurysm of coronary artery due to and following acute febrile mucocutaneous lymph node syndrome (disorder)','16025471000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1658_75053002','75053002','http://snomed.info/sct','Acute febrile mucocutaneous lymph node syndrome (disorder)','75053002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1658_880012008','880012008','http://snomed.info/sct','Myocarditis due to Kawasaki disease (disorder)','880012008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1779_A60.00','A60.00','http://hl7.org/fhir/sid/icd-10-cm','Herpesviral infection of urogenital system, unspecified','A6000','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1779_A60.02','A60.02','http://hl7.org/fhir/sid/icd-10-cm','Herpesviral infection of other male genital organs','A6002','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1779_A60.09','A60.09','http://hl7.org/fhir/sid/icd-10-cm','Herpesviral infection of other urogenital tract','A6009','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1779_A60.9','A60.9','http://hl7.org/fhir/sid/icd-10-cm','Anogenital herpesviral infection, unspecified','A609','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1536_1149239002','1149239002','http://snomed.info/sct','Overdose of lysergic acid diethylamide (disorder)','1149239002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1536_1149240000','1149240000','http://snomed.info/sct','Accidental overdose by lysergic acid diethylamide (disorder)','1149240000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1536_1149241001','1149241001','http://snomed.info/sct','Intentional overdose by lysergic acid diethylamide (disorder)','1149241001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1536_20871009','20871009','http://snomed.info/sct','Phencyclidine intoxication (disorder)','20871009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1536_216550002','216550002','http://snomed.info/sct','Accidental poisoning caused by hallucinogens (disorder)','216550002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1536_216554006','216554006','http://snomed.info/sct','Accidental poisoning caused by mescaline (disorder)','216554006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1536_216555007','216555007','http://snomed.info/sct','Accidental poisoning caused by psilocin (disorder)','216555007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1536_216556008','216556008','http://snomed.info/sct','Accidental poisoning caused by psilocybin (disorder)','216556008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1536_291253009','291253009','http://snomed.info/sct','Intentional psilocybin poisoning (disorder)','291253009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1536_291256001','291256001','http://snomed.info/sct','Intentional mescaline poisoning (disorder)','291256001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1536_296300004','296300004','http://snomed.info/sct','Overdose of hallucinogenic drug (disorder)','296300004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1536_296309003','296309003','http://snomed.info/sct','Psilocybin overdose (disorder)','296309003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1536_296310008','296310008','http://snomed.info/sct','Accidental psilocybin overdose (disorder)','296310008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1536_296311007','296311007','http://snomed.info/sct','Intentional psilocybin overdose (disorder)','296311007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1536_296313005','296313005','http://snomed.info/sct','Mescaline overdose (disorder)','296313005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1536_296314004','296314004','http://snomed.info/sct','Accidental mescaline overdose (disorder)','296314004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1536_296315003','296315003','http://snomed.info/sct','Intentional mescaline overdose (disorder)','296315003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1536_31715000','31715000','http://snomed.info/sct','Phencyclidine intoxication delirium (disorder)','31715000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1536_34743008','34743008','http://snomed.info/sct','Poisoning caused by psilocin (disorder)','34743008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1536_40571009','40571009','http://snomed.info/sct','Hallucinogen intoxication delirium (disorder)','40571009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1536_41136005','41136005','http://snomed.info/sct','Phencyclidine poisoning (disorder)','41136005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1536_50320000','50320000','http://snomed.info/sct','Hallucinogen intoxication (disorder)','50320000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1536_67893003','67893003','http://snomed.info/sct','Poisoning caused by lysergide (disorder)','67893003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1536_81270000','81270000','http://snomed.info/sct','Poisoning caused by psilocybin (disorder)','81270000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1536_82768008','82768008','http://snomed.info/sct','Poisoning caused by mescaline (disorder)','82768008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1536_85975005','85975005','http://snomed.info/sct','Poisoning caused by psychodysleptic (disorder)','85975005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1778_104011000119109','104011000119109','http://snomed.info/sct','Genital herpes simplex in mother complicating pregnancy (disorder)','104011000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1778_10754701000119100','10754701000119100','http://snomed.info/sct','Genital herpes simplex in mother complicating childbirth (disorder)','10754701000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1778_1087111000119107','1087111000119107','http://snomed.info/sct','Infection of perianal skin caused by human herpes simplex virus (disorder)','1087111000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1778_1090401000119104','1090401000119104','http://snomed.info/sct','Recurrent infection of rectum caused by human herpes simplex virus (disorder)','1090401000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1778_1090421000119108','1090421000119108','http://snomed.info/sct','Recurrent ulcer of vulva caused by human herpes simplex virus (disorder)','1090421000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1778_1090441000119102','1090441000119102','http://snomed.info/sct','Recurrent inflammation of vulva caused by human herpes simplex virus (disorder)','1090441000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1778_1137693003','1137693003','http://snomed.info/sct','Herpes simplex of male genitalia (disorder)','1137693003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1778_186538004','186538004','http://snomed.info/sct','Anogenital herpesviral infection (disorder)','186538004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1778_240478003','240478003','http://snomed.info/sct','Primary anogenital herpes (disorder)','240478003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1778_240479006','240479006','http://snomed.info/sct','Recurrent anogenital herpes (disorder)','240479006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1778_33839006','33839006','http://snomed.info/sct','Genital herpes simplex (disorder)','33839006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1778_402887007','402887007','http://snomed.info/sct','Primary perianal herpes simplex infection (disorder)','402887007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1778_402888002','402888002','http://snomed.info/sct','Primary herpes simplex infection of genitalia (disorder)','402888002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1778_402889005','402889005','http://snomed.info/sct','Primary herpes simplex infection of penis (disorder)','402889005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1778_402892009','402892009','http://snomed.info/sct','Recurrent herpes simplex labialis (disorder)','402892009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1778_402893004','402893004','http://snomed.info/sct','Recurrent herpes simplex infection of perianal area (disorder)','402893004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1778_402894005','402894005','http://snomed.info/sct','Recurrent genital herpes simplex (disorder)','402894005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1778_402895006','402895006','http://snomed.info/sct','Recurrent herpes simplex of penis (disorder)','402895006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1778_423391007','423391007','http://snomed.info/sct','Genital herpes simplex type 2 (disorder)','423391007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1778_427578006','427578006','http://snomed.info/sct','Herpes simplex of female genitalia (disorder)','427578006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1778_439912007','439912007','http://snomed.info/sct','Recurrent genital Herpes simplex type 1 infection (disorder)','439912007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1778_439913002','439913002','http://snomed.info/sct','Recurrent genital Herpes simplex type 2 infection (disorder)','439913002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1778_440714005','440714005','http://snomed.info/sct','Genital Herpes simplex type 1 infection (disorder)','440714005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1778_501661611000119107','501661611000119107','http://snomed.info/sct','Latent genital herpes simplex during pregnancy (disorder)','501661611000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1778_723090006','723090006','http://snomed.info/sct','Infection of vagina caused by Human herpes simplex virus (disorder)','723090006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1778_737166003','737166003','http://snomed.info/sct','Infection of rectum caused by Human herpes simplex virus (disorder)','737166003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1531_315642008','315642008','http://snomed.info/sct','Influenza-like symptoms (finding)','315642008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1531_95891005','95891005','http://snomed.info/sct','Influenza-like illness (finding)','95891005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1652_B57.0','B57.0','http://hl7.org/fhir/sid/icd-10-cm','Acute Chagas'' disease with heart involvement','B570','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1652_B57.1','B57.1','http://hl7.org/fhir/sid/icd-10-cm','Acute Chagas'' disease without heart involvement','B571','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1652_B57.2','B57.2','http://hl7.org/fhir/sid/icd-10-cm','Chagas'' disease (chronic) with heart involvement','B572','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1652_B57.3','B57.3','http://hl7.org/fhir/sid/icd-10-cm','Chagas'' disease (chronic) with digestive system involvement','B573','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1652_B57.30','B57.30','http://hl7.org/fhir/sid/icd-10-cm','Chagas'' disease with digestive system involvement, unspecified','B5730','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1652_B57.31','B57.31','http://hl7.org/fhir/sid/icd-10-cm','Megaesophagus in Chagas'' disease','B5731','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1652_B57.32','B57.32','http://hl7.org/fhir/sid/icd-10-cm','Megacolon in Chagas'' disease','B5732','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1652_B57.39','B57.39','http://hl7.org/fhir/sid/icd-10-cm','Other digestive system involvement in Chagas'' disease','B5739','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1652_B57.4','B57.4','http://hl7.org/fhir/sid/icd-10-cm','Chagas'' disease (chronic) with nervous system involvement','B574','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1652_B57.40','B57.40','http://hl7.org/fhir/sid/icd-10-cm','Chagas'' disease with nervous system involvement, unspecified','B5740','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1652_B57.49','B57.49','http://hl7.org/fhir/sid/icd-10-cm','Other nervous system involvement in Chagas'' disease','B5749','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1652_B57.5','B57.5','http://hl7.org/fhir/sid/icd-10-cm','Chagas'' disease (chronic) with other organ involvement','B575','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1652_B57.41','B57.41','http://hl7.org/fhir/sid/icd-10-cm','Meningitis in Chagas'' disease','B5741','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1652_B57.42','B57.42','http://hl7.org/fhir/sid/icd-10-cm','Meningoencephalitis in Chagas'' disease','B5742','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1773_736152001','736152001','http://snomed.info/sct','Infection of bloodstream co-occurrent and due to central venous catheter in situ (disorder)','736152001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1773_736442006','736442006','http://snomed.info/sct','Catheter related bloodstream infection (disorder)','736442006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1773_736918003','736918003','http://snomed.info/sct','Infection of bloodstream co-occurrent and due to hemodialysis catheter in situ (disorder)','736918003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1773_736920000','736920000','http://snomed.info/sct','Infection of bloodstream co-occurrent and due to tunneled hemodialysis catheter in situ (disorder)','736920000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1773_736984007','736984007','http://snomed.info/sct','Infection of bloodstream co-occurrent and due to temporary hemodialysis catheter in situ (disorder)','736984007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1651_1163090009','1163090009','http://snomed.info/sct','Achalasia due to Chagas disease (disorder)','1163090009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1651_186813004','186813004','http://snomed.info/sct','Acute Chagas'' disease with heart involvement (disorder)','186813004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1651_186815006','186815006','http://snomed.info/sct','Chagas'' disease with digestive system involvement (disorder)','186815006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1651_186816007','186816007','http://snomed.info/sct','Chagas'' disease with nervous system involvement (disorder)','186816007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1651_196599007','196599007','http://snomed.info/sct','Megaesophagus in Chagas'' disease (disorder)','196599007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1651_197143009','197143009','http://snomed.info/sct','Megacolon in Chagas'' disease (disorder)','197143009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1651_240653009','240653009','http://snomed.info/sct','Acute Chagas'' disease (disorder)','240653009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1651_240656001','240656001','http://snomed.info/sct','Chagas'' exanthem (disorder)','240656001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1651_240658000','240658000','http://snomed.info/sct','Chronic Chagas'' disease (disorder)','240658000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1651_240659008','240659008','http://snomed.info/sct','Chagas'' mega disease (disorder)','240659008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1651_31877008','31877008','http://snomed.info/sct','Chagas'' disease with other organ involvement (disorder)','31877008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1651_722889008','722889008','http://snomed.info/sct','Acute Chagas disease without heart involvement (disorder)','722889008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1651_722890004','722890004','http://snomed.info/sct','Heart disease co-occurrent and due to chronic Chagas disease (disorder)','722890004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1651_723147008','723147008','http://snomed.info/sct','Autonomic disorder co-occurrent and due to Chagas disease (disorder)','723147008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1651_77506005','77506005','http://snomed.info/sct','Infection caused by Trypanosoma cruzi (disorder)','77506005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1651_998008','998008','http://snomed.info/sct','Chagas'' disease with heart involvement (disorder)','998008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1651_1089821000119104','1089821000119104','http://snomed.info/sct','Meningoencephalitis due to Chagas disease (disorder)','1089821000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1651_1089781000119109','1089781000119109','http://snomed.info/sct','Meningitis due to Chagas disease (disorder)','1089781000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1651_1163549000','1163549000','http://snomed.info/sct','Encephalitis caused by Trypanosoma cruzi (disorder)','1163549000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_10486009','10486009','http://snomed.info/sct','Poisoning caused by medazepam (disorder)','10486009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_1144830006','1144830006','http://snomed.info/sct','Intentional triclofos poisoning (disorder)','1144830006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_1144831005','1144831005','http://snomed.info/sct','Accidental triclofos poisoning (disorder)','1144831005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_1144832003','1144832003','http://snomed.info/sct','Triclofos poisoning (disorder)','1144832003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_1145056009','1145056009','http://snomed.info/sct','Intentional clorazepate overdose (disorder)','1145056009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_1145057000','1145057000','http://snomed.info/sct','Accidental clorazepate overdose (disorder)','1145057000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_1145058005','1145058005','http://snomed.info/sct','Clorazepate overdose (disorder)','1145058005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_1145065002','1145065002','http://snomed.info/sct','Intentional triclofos overdose (disorder)','1145065002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_1145066001','1145066001','http://snomed.info/sct','Accidental triclofos overdose (disorder)','1145066001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_1145067005','1145067005','http://snomed.info/sct','Triclofos overdose (disorder)','1145067005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_1145075004','1145075004','http://snomed.info/sct','Intentional clorazepate poisoning (disorder)','1145075004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_1145076003','1145076003','http://snomed.info/sct','Accidental clorazepate poisoning (disorder)','1145076003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_1145077007','1145077007','http://snomed.info/sct','Clorazepate poisoning (disorder)','1145077007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_1145152008','1145152008','http://snomed.info/sct','Accidental poisoning caused by carbromal (disorder)','1145152008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_1148567001','1148567001','http://snomed.info/sct','Poisoning caused by sedative (disorder)','1148567001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_1153508003','1153508003','http://snomed.info/sct','Chloral and/or chloral derivative overdose (disorder)','1153508003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_212633008','212633008','http://snomed.info/sct','Carbromal poisoning (disorder)','212633008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_212636000','212636000','http://snomed.info/sct','Glutethimide poisoning (disorder)','212636000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_216498008','216498008','http://snomed.info/sct','Accidental poisoning caused by amylobarbitone (disorder)','216498008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_216499000','216499000','http://snomed.info/sct','Accidental poisoning caused by barbitone (disorder)','216499000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_216501008','216501008','http://snomed.info/sct','Accidental poisoning caused by pentobarbitone (disorder)','216501008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_216503006','216503006','http://snomed.info/sct','Accidental poisoning caused by quinalbarbitone (disorder)','216503006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_216506003','216506003','http://snomed.info/sct','Accidental poisoning caused by chloral hydrate (disorder)','216506003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_216507007','216507007','http://snomed.info/sct','Accidental poisoning caused by paraldehyde (disorder)','216507007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_216514009','216514009','http://snomed.info/sct','Accidental poisoning caused by glutethimide (disorder)','216514009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_216531002','216531002','http://snomed.info/sct','Accidental poisoning caused by chlordiazepoxide (disorder)','216531002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_216532009','216532009','http://snomed.info/sct','Accidental poisoning caused by diazepam (disorder)','216532009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_216533004','216533004','http://snomed.info/sct','Accidental poisoning caused by flurazepam (disorder)','216533004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_216534005','216534005','http://snomed.info/sct','Accidental poisoning caused by lorazepam (disorder)','216534005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_216535006','216535006','http://snomed.info/sct','Accidental poisoning caused by medazepam (disorder)','216535006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_216536007','216536007','http://snomed.info/sct','Accidental poisoning caused by nitrazepam (disorder)','216536007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_216541004','216541004','http://snomed.info/sct','Accidental poisoning caused by meprobamate (disorder)','216541004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_23877007','23877007','http://snomed.info/sct','Poisoning caused by butabarbital (disorder)','23877007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_241757007','241757007','http://snomed.info/sct','Poisoning caused by temazepam (disorder)','241757007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_242832005','242832005','http://snomed.info/sct','Intentional benzodiazepine overdose (disorder)','242832005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_242833000','242833000','http://snomed.info/sct','Intentional diazepam overdose (disorder)','242833000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_242834006','242834006','http://snomed.info/sct','Intentional chlordiazepoxide overdose (disorder)','242834006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_242835007','242835007','http://snomed.info/sct','Intentional temazepam overdose (disorder)','242835007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_25980005','25980005','http://snomed.info/sct','Poisoning caused by secobarbital (disorder)','25980005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_28504009','28504009','http://snomed.info/sct','Poisoning caused by meprobamate (disorder)','28504009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_290951008','290951008','http://snomed.info/sct','Methylphenobarbitone poisoning (disorder)','290951008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_290952001','290952001','http://snomed.info/sct','Accidental methylphenobarbitone poisoning (disorder)','290952001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_290953006','290953006','http://snomed.info/sct','Intentional methylphenobarbitone poisoning (disorder)','290953006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_290980004','290980004','http://snomed.info/sct','Clonazepam poisoning (disorder)','290980004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_290981000','290981000','http://snomed.info/sct','Accidental clonazepam poisoning (disorder)','290981000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_290982007','290982007','http://snomed.info/sct','Intentional clonazepam poisoning (disorder)','290982007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_290985009','290985009','http://snomed.info/sct','Zopiclone poisoning (disorder)','290985009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_290986005','290986005','http://snomed.info/sct','Accidental zopiclone poisoning (disorder)','290986005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_290987001','290987001','http://snomed.info/sct','Intentional zopiclone poisoning (disorder)','290987001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_290989003','290989003','http://snomed.info/sct','Zolpidem poisoning (disorder)','290989003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_290990007','290990007','http://snomed.info/sct','Accidental zolpidem poisoning (disorder)','290990007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_290991006','290991006','http://snomed.info/sct','Intentional zolpidem poisoning (disorder)','290991006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_290994003','290994003','http://snomed.info/sct','Chlormezanone poisoning (disorder)','290994003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_290995002','290995002','http://snomed.info/sct','Accidental chlormezanone poisoning (disorder)','290995002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_290996001','290996001','http://snomed.info/sct','Intentional chlormezanone poisoning (disorder)','290996001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_290998000','290998000','http://snomed.info/sct','Methyprylone poisoning (disorder)','290998000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_290999008','290999008','http://snomed.info/sct','Accidental methyprylone poisoning (disorder)','290999008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_291000007','291000007','http://snomed.info/sct','Intentional methyprylone poisoning (disorder)','291000007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_291003009','291003009','http://snomed.info/sct','Intentional paraldehyde poisoning (disorder)','291003009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_291006001','291006001','http://snomed.info/sct','Intentional amylobarbitone poisoning (disorder)','291006001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_291015008','291015008','http://snomed.info/sct','Cyclobarbitone poisoning (disorder)','291015008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_291016009','291016009','http://snomed.info/sct','Accidental cyclobarbitone poisoning (disorder)','291016009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_291017000','291017000','http://snomed.info/sct','Intentional cyclobarbitone poisoning (disorder)','291017000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_291020008','291020008','http://snomed.info/sct','Intentional quinalbarbitone poisoning (disorder)','291020008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_291023005','291023005','http://snomed.info/sct','Intentional barbitone poisoning (disorder)','291023005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_291026002','291026002','http://snomed.info/sct','Intentional pentobarbitone poisoning (disorder)','291026002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_291028001','291028001','http://snomed.info/sct','Flunitrazepam poisoning (disorder)','291028001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_291029009','291029009','http://snomed.info/sct','Accidental flunitrazepam poisoning (disorder)','291029009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_291030004','291030004','http://snomed.info/sct','Intentional flunitrazepam poisoning (disorder)','291030004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_291033002','291033002','http://snomed.info/sct','Intentional flurazepam poisoning (disorder)','291033002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_291035009','291035009','http://snomed.info/sct','Loprazolam poisoning (disorder)','291035009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_291036005','291036005','http://snomed.info/sct','Accidental loprazolam poisoning (disorder)','291036005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_291037001','291037001','http://snomed.info/sct','Intentional loprazolam poisoning (disorder)','291037001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_291039003','291039003','http://snomed.info/sct','Lormetazepam poisoning (disorder)','291039003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_291040001','291040001','http://snomed.info/sct','Accidental lormetazepam poisoning (disorder)','291040001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_291041002','291041002','http://snomed.info/sct','Intentional lormetazepam poisoning (disorder)','291041002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_291044005','291044005','http://snomed.info/sct','Intentional nitrazepam poisoning (disorder)','291044005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_291046007','291046007','http://snomed.info/sct','Triazolam poisoning (disorder)','291046007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_291047003','291047003','http://snomed.info/sct','Accidental triazolam poisoning (disorder)','291047003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_291048008','291048008','http://snomed.info/sct','Intentional triazolam poisoning (disorder)','291048008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_291050000','291050000','http://snomed.info/sct','Alprazolam poisoning (disorder)','291050000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_291051001','291051001','http://snomed.info/sct','Accidental alprazolam poisoning (disorder)','291051001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_291052008','291052008','http://snomed.info/sct','Intentional alprazolam poisoning (disorder)','291052008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_291054009','291054009','http://snomed.info/sct','Bromazepam poisoning (disorder)','291054009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_291055005','291055005','http://snomed.info/sct','Accidental bromazepam poisoning (disorder)','291055005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_291056006','291056006','http://snomed.info/sct','Intentional bromazepam poisoning (disorder)','291056006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_291059004','291059004','http://snomed.info/sct','Intentional chlordiazepoxide poisoning (disorder)','291059004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_291061008','291061008','http://snomed.info/sct','Clobazam poisoning (disorder)','291061008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_291062001','291062001','http://snomed.info/sct','Accidental clobazam poisoning (disorder)','291062001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_291063006','291063006','http://snomed.info/sct','Intentional clobazam poisoning (disorder)','291063006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_291069005','291069005','http://snomed.info/sct','Ketazolam poisoning (disorder)','291069005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_291070006','291070006','http://snomed.info/sct','Accidental ketazolam poisoning (disorder)','291070006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_291071005','291071005','http://snomed.info/sct','Intentional ketazolam poisoning (disorder)','291071005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_291074002','291074002','http://snomed.info/sct','Intentional medazepam poisoning (disorder)','291074002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_291076000','291076000','http://snomed.info/sct','Oxazepam poisoning (disorder)','291076000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_291077009','291077009','http://snomed.info/sct','Accidental oxazepam poisoning (disorder)','291077009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_291078004','291078004','http://snomed.info/sct','Intentional oxazepam poisoning (disorder)','291078004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_291080005','291080005','http://snomed.info/sct','Prazepam poisoning (disorder)','291080005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_291081009','291081009','http://snomed.info/sct','Accidental prazepam poisoning (disorder)','291081009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_291082002','291082002','http://snomed.info/sct','Intentional prazepam poisoning (disorder)','291082002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_291084001','291084001','http://snomed.info/sct','Midazolam poisoning (disorder)','291084001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_291085000','291085000','http://snomed.info/sct','Accidental midazolam poisoning (disorder)','291085000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_291086004','291086004','http://snomed.info/sct','Intentional midazolam poisoning (disorder)','291086004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_291089006','291089006','http://snomed.info/sct','Intentional diazepam poisoning (disorder)','291089006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_291092005','291092005','http://snomed.info/sct','Intentional lorazepam poisoning (disorder)','291092005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_291094006','291094006','http://snomed.info/sct','Accidental poisoning caused by temazepam (disorder)','291094006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_291095007','291095007','http://snomed.info/sct','Intentional poisoning caused by temazepam (disorder)','291095007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_291098009','291098009','http://snomed.info/sct','Intentional meprobamate poisoning (disorder)','291098009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_291100009','291100009','http://snomed.info/sct','Chloral sedative poisoning (disorder)','291100009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_291102001','291102001','http://snomed.info/sct','Intentional chloral hydrate poisoning (disorder)','291102001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_291104000','291104000','http://snomed.info/sct','Dichloralphenazone poisoning (disorder)','291104000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_291105004','291105004','http://snomed.info/sct','Accidental dichloralphenazone poisoning (disorder)','291105004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_291106003','291106003','http://snomed.info/sct','Intentional dichloralphenazone poisoning (disorder)','291106003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_291113003','291113003','http://snomed.info/sct','Buspirone poisoning (disorder)','291113003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_291114009','291114009','http://snomed.info/sct','Accidental buspirone poisoning (disorder)','291114009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_291115005','291115005','http://snomed.info/sct','Intentional buspirone poisoning (disorder)','291115005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_291117002','291117002','http://snomed.info/sct','Chlormethiazole poisoning (disorder)','291117002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_291118007','291118007','http://snomed.info/sct','Accidental chlormethiazole poisoning (disorder)','291118007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_291119004','291119004','http://snomed.info/sct','Intentional chlormethiazole poisoning (disorder)','291119004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_295983000','295983000','http://snomed.info/sct','Methylphenobarbitone overdose (disorder)','295983000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_295984006','295984006','http://snomed.info/sct','Accidental methylphenobarbitone overdose (disorder)','295984006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_295985007','295985007','http://snomed.info/sct','Intentional methylphenobarbitone overdose (disorder)','295985007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296010004','296010004','http://snomed.info/sct','Clonazepam overdose (disorder)','296010004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296011000','296011000','http://snomed.info/sct','Accidental clonazepam overdose (disorder)','296011000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296012007','296012007','http://snomed.info/sct','Intentional clonazepam overdose (disorder)','296012007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296015009','296015009','http://snomed.info/sct','Sedative overdose (disorder)','296015009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296016005','296016005','http://snomed.info/sct','Zopiclone overdose (disorder)','296016005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296017001','296017001','http://snomed.info/sct','Accidental zopiclone overdose (disorder)','296017001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296018006','296018006','http://snomed.info/sct','Intentional zopiclone overdose (disorder)','296018006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296020009','296020009','http://snomed.info/sct','Zolpidem overdose (disorder)','296020009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296021008','296021008','http://snomed.info/sct','Accidental zolpidem overdose (disorder)','296021008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296022001','296022001','http://snomed.info/sct','Intentional zolpidem overdose (disorder)','296022001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296024000','296024000','http://snomed.info/sct','Chlormezanone overdose (disorder)','296024000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296025004','296025004','http://snomed.info/sct','Accidental chlormezanone overdose (disorder)','296025004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296026003','296026003','http://snomed.info/sct','Intentional chlormezanone overdose (disorder)','296026003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296028002','296028002','http://snomed.info/sct','Methyprylone overdose (disorder)','296028002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296029005','296029005','http://snomed.info/sct','Accidental methyprylone overdose (disorder)','296029005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296030000','296030000','http://snomed.info/sct','Intentional methyprylone overdose (disorder)','296030000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296032008','296032008','http://snomed.info/sct','Paraldehyde overdose (disorder)','296032008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296033003','296033003','http://snomed.info/sct','Accidental paraldehyde overdose (disorder)','296033003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296034009','296034009','http://snomed.info/sct','Intentional paraldehyde overdose (disorder)','296034009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296037002','296037002','http://snomed.info/sct','Amylobarbitone overdose (disorder)','296037002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296038007','296038007','http://snomed.info/sct','Accidental amylobarbitone overdose (disorder)','296038007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296039004','296039004','http://snomed.info/sct','Intentional amylobarbitone overdose (disorder)','296039004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296041003','296041003','http://snomed.info/sct','Butabarbitone overdose (disorder)','296041003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296042005','296042005','http://snomed.info/sct','Accidental butabarbitone overdose (disorder)','296042005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296043000','296043000','http://snomed.info/sct','Intentional butabarbitone overdose (disorder)','296043000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296045007','296045007','http://snomed.info/sct','Cyclobarbitone overdose (disorder)','296045007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296046008','296046008','http://snomed.info/sct','Accidental cyclobarbitone overdose (disorder)','296046008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296047004','296047004','http://snomed.info/sct','Intentional cyclobarbitone overdose (disorder)','296047004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296049001','296049001','http://snomed.info/sct','Quinalbarbitone overdose (disorder)','296049001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296050001','296050001','http://snomed.info/sct','Accidental quinalbarbitone overdose (disorder)','296050001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296051002','296051002','http://snomed.info/sct','Intentional quinalbarbitone overdose (disorder)','296051002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296053004','296053004','http://snomed.info/sct','Benzodiazepine overdose (disorder)','296053004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296054005','296054005','http://snomed.info/sct','Flunitrazepam overdose (disorder)','296054005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296055006','296055006','http://snomed.info/sct','Accidental flunitrazepam overdose (disorder)','296055006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296056007','296056007','http://snomed.info/sct','Intentional flunitrazepam overdose (disorder)','296056007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296058008','296058008','http://snomed.info/sct','Flurazepam overdose (disorder)','296058008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296059000','296059000','http://snomed.info/sct','Accidental flurazepam overdose (disorder)','296059000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296060005','296060005','http://snomed.info/sct','Intentional flurazepam overdose (disorder)','296060005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296062002','296062002','http://snomed.info/sct','Loprazolam overdose (disorder)','296062002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296063007','296063007','http://snomed.info/sct','Accidental loprazolam overdose (disorder)','296063007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296064001','296064001','http://snomed.info/sct','Intentional loprazolam overdose (disorder)','296064001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296066004','296066004','http://snomed.info/sct','Lormetazepam overdose (disorder)','296066004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296067008','296067008','http://snomed.info/sct','Accidental lormetazepam overdose (disorder)','296067008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296068003','296068003','http://snomed.info/sct','Intentional lormetazepam overdose (disorder)','296068003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296070007','296070007','http://snomed.info/sct','Nitrazepam overdose (disorder)','296070007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296071006','296071006','http://snomed.info/sct','Accidental nitrazepam overdose (disorder)','296071006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296072004','296072004','http://snomed.info/sct','Intentional nitrazepam overdose (disorder)','296072004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296074003','296074003','http://snomed.info/sct','Triazolam overdose (disorder)','296074003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296075002','296075002','http://snomed.info/sct','Accidental triazolam overdose (disorder)','296075002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296076001','296076001','http://snomed.info/sct','Intentional triazolam overdose (disorder)','296076001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296079008','296079008','http://snomed.info/sct','Alprazolam overdose (disorder)','296079008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296080006','296080006','http://snomed.info/sct','Accidental alprazolam overdose (disorder)','296080006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296081005','296081005','http://snomed.info/sct','Intentional alprazolam overdose (disorder)','296081005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296083008','296083008','http://snomed.info/sct','Bromazepam overdose (disorder)','296083008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296084002','296084002','http://snomed.info/sct','Accidental bromazepam overdose (disorder)','296084002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296085001','296085001','http://snomed.info/sct','Intentional bromazepam overdose (disorder)','296085001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296087009','296087009','http://snomed.info/sct','Chlordiazepoxide overdose (disorder)','296087009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296088004','296088004','http://snomed.info/sct','Accidental chlordiazepoxide overdose (disorder)','296088004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296090003','296090003','http://snomed.info/sct','Clobazam overdose (disorder)','296090003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296091004','296091004','http://snomed.info/sct','Accidental clobazam overdose (disorder)','296091004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296092006','296092006','http://snomed.info/sct','Intentional clobazam overdose (disorder)','296092006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296098005','296098005','http://snomed.info/sct','Ketazolam overdose (disorder)','296098005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296099002','296099002','http://snomed.info/sct','Accidental ketazolam overdose (disorder)','296099002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296100005','296100005','http://snomed.info/sct','Intentional ketazolam overdose (disorder)','296100005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296102002','296102002','http://snomed.info/sct','Medazepam overdose (disorder)','296102002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296103007','296103007','http://snomed.info/sct','Accidental medazepam overdose (disorder)','296103007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296104001','296104001','http://snomed.info/sct','Intentional medazepam overdose (disorder)','296104001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296106004','296106004','http://snomed.info/sct','Oxazepam overdose (disorder)','296106004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296107008','296107008','http://snomed.info/sct','Accidental oxazepam overdose (disorder)','296107008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296108003','296108003','http://snomed.info/sct','Intentional oxazepam overdose (disorder)','296108003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296110001','296110001','http://snomed.info/sct','Prazepam overdose (disorder)','296110001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296111002','296111002','http://snomed.info/sct','Accidental prazepam overdose (disorder)','296111002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296112009','296112009','http://snomed.info/sct','Intentional prazepam overdose (disorder)','296112009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296114005','296114005','http://snomed.info/sct','Midazolam overdose (disorder)','296114005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296115006','296115006','http://snomed.info/sct','Accidental midazolam overdose (disorder)','296115006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296116007','296116007','http://snomed.info/sct','Intentional midazolam overdose (disorder)','296116007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296118008','296118008','http://snomed.info/sct','Diazepam overdose (disorder)','296118008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296119000','296119000','http://snomed.info/sct','Accidental diazepam overdose (disorder)','296119000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296121005','296121005','http://snomed.info/sct','Lorazepam overdose (disorder)','296121005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296122003','296122003','http://snomed.info/sct','Accidental lorazepam overdose (disorder)','296122003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296123008','296123008','http://snomed.info/sct','Intentional lorazepam overdose (disorder)','296123008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296125001','296125001','http://snomed.info/sct','Overdose of temazepam (disorder)','296125001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296126000','296126000','http://snomed.info/sct','Accidental overdose by temazepam (disorder)','296126000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296128004','296128004','http://snomed.info/sct','Accidental overdose of benzodiazepine (disorder)','296128004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296131003','296131003','http://snomed.info/sct','Meprobamate overdose (disorder)','296131003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296132005','296132005','http://snomed.info/sct','Accidental meprobamate overdose (disorder)','296132005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296133000','296133000','http://snomed.info/sct','Intentional meprobamate overdose (disorder)','296133000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296136008','296136008','http://snomed.info/sct','Chloral hydrate overdose (disorder)','296136008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296137004','296137004','http://snomed.info/sct','Accidental chloral hydrate overdose (disorder)','296137004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296138009','296138009','http://snomed.info/sct','Intentional chloral hydrate overdose (disorder)','296138009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296140004','296140004','http://snomed.info/sct','Dichloralphenazone overdose (disorder)','296140004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296141000','296141000','http://snomed.info/sct','Accidental dichloralphenazone overdose (disorder)','296141000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296142007','296142007','http://snomed.info/sct','Intentional dichloralphenazone overdose (disorder)','296142007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296148006','296148006','http://snomed.info/sct','Buspirone overdose (disorder)','296148006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296149003','296149003','http://snomed.info/sct','Accidental buspirone overdose (disorder)','296149003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296150003','296150003','http://snomed.info/sct','Intentional buspirone overdose (disorder)','296150003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296152006','296152006','http://snomed.info/sct','Chlormethiazole overdose (disorder)','296152006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296153001','296153001','http://snomed.info/sct','Accidental chlormethiazole overdose (disorder)','296153001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_296154007','296154007','http://snomed.info/sct','Intentional chlormethiazole overdose (disorder)','296154007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_30857006','30857006','http://snomed.info/sct','Poisoning caused by barbital (disorder)','30857006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_30984008','30984008','http://snomed.info/sct','Poisoning caused by pentobarbital (disorder)','30984008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_34764007','34764007','http://snomed.info/sct','Poisoning caused by paraldehyde (disorder)','34764007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_36784008','36784008','http://snomed.info/sct','Poisoning caused by flurazepam (disorder)','36784008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_57628003','57628003','http://snomed.info/sct','Poisoning caused by chloral hydrate (disorder)','57628003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_6024006','6024006','http://snomed.info/sct','Poisoning caused by nitrazepam (disorder)','6024006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_61406000','61406000','http://snomed.info/sct','Poisoning caused by diazepam (disorder)','61406000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_64921004','64921004','http://snomed.info/sct','Poisoning caused by phenobarbital (disorder)','64921004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_699012001','699012001','http://snomed.info/sct','Accidental poisoning caused by sedative (disorder)','699012001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_70330008','70330008','http://snomed.info/sct','Poisoning caused by lorazepam (disorder)','70330008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_712742003','712742003','http://snomed.info/sct','Benzodiazepine intoxication (disorder)','712742003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_766219005','766219005','http://snomed.info/sct','Methaqualone poisoning (disorder)','766219005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_766221000','766221000','http://snomed.info/sct','Accidental poisoning caused by methaqualone (disorder)','766221000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_81914009','81914009','http://snomed.info/sct','Poisoning caused by benzodiazepine-based tranquilizer (disorder)','81914009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_84483000','84483000','http://snomed.info/sct','Poisoning caused by chlordiazepoxide (disorder)','84483000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_86624000','86624000','http://snomed.info/sct','Poisoning caused by amobarbital (disorder)','86624000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1533_216518007','216518007','http://snomed.info/sct','Accidental poisoning caused by tranquilizers (disorder)','216518007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1775_15679841000119107','15679841000119107','http://snomed.info/sct','Neonatal conjunctivitis of bilateral eyes (disorder)','15679841000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1775_15679881000119102','15679881000119102','http://snomed.info/sct','Neonatal conjunctivitis of right eye (disorder)','15679881000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1775_15679921000119109','15679921000119109','http://snomed.info/sct','Neonatal conjunctivitis of left eye (disorder)','15679921000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1775_206345004','206345004','http://snomed.info/sct','Neonatal dacryocystitis and conjunctivitis (disorder)','206345004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1775_268838005','268838005','http://snomed.info/sct','Neonatal dacryocystitis or conjunctivitis caused by Escherichia coli (disorder)','268838005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1775_268839002','268839002','http://snomed.info/sct','Neonatal dacryocystitis or conjunctivitis caused by Staphylococcus (disorder)','268839002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1775_268841001','268841001','http://snomed.info/sct','Neonatal dacryocystitis or conjunctivitis caused by virus (disorder)','268841001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1775_276680000','276680000','http://snomed.info/sct','Neonatal bacterial conjunctivitis (disorder)','276680000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1775_276682008','276682008','http://snomed.info/sct','Neonatal viral conjunctivitis (disorder)','276682008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1775_276689004','276689004','http://snomed.info/sct','Coliform ophthalmia neonatorum (disorder)','276689004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1775_276691007','276691007','http://snomed.info/sct','Staphylococcal ophthalmia neonatorum (disorder)','276691007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1775_278930003','278930003','http://snomed.info/sct','Pseudomonas ophthalmia neonatorum (disorder)','278930003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1775_34298002','34298002','http://snomed.info/sct','Neonatal conjunctivitis (disorder)','34298002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1775_240591000','240591000','http://snomed.info/sct','Neonatal chlamydial conjunctivitis (disorder)','240591000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1775_268842008','268842008','http://snomed.info/sct','Neonatal dacryocystitis or conjunctivitis caused by chlamydiae (disorder)','268842008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1775_28438004','28438004','http://snomed.info/sct','Gonococcal conjunctivitis neonatorum (disorder)','28438004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1775_410507001','410507001','http://snomed.info/sct','Neonatal herpes simplex virus conjunctivitis (disorder)','410507001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1775_721281003','721281003','http://snomed.info/sct','Neonatal conjunctivitis and dacrocystitis caused by Neisseria gonorrhoeae (disorder)','721281003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1893_B58.00','B58.00','http://hl7.org/fhir/sid/icd-10-cm','Toxoplasma oculopathy, unspecified','B5800','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1893_B58.01','B58.01','http://hl7.org/fhir/sid/icd-10-cm','Toxoplasma chorioretinitis','B5801','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1893_B58.09','B58.09','http://hl7.org/fhir/sid/icd-10-cm','Other toxoplasma oculopathy','B5809','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1893_B58.1','B58.1','http://hl7.org/fhir/sid/icd-10-cm','Toxoplasma hepatitis','B581','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1893_B58.3','B58.3','http://hl7.org/fhir/sid/icd-10-cm','Pulmonary toxoplasmosis','B583','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1893_B58.81','B58.81','http://hl7.org/fhir/sid/icd-10-cm','Toxoplasma myocarditis','B5881','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1893_B58.82','B58.82','http://hl7.org/fhir/sid/icd-10-cm','Toxoplasma myositis','B5882','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1893_B58.83','B58.83','http://hl7.org/fhir/sid/icd-10-cm','Toxoplasma tubulo-interstitial nephropathy','B5883','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1893_B58.89','B58.89','http://hl7.org/fhir/sid/icd-10-cm','Toxoplasmosis with other organ involvement','B5889','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1893_B58.9','B58.9','http://hl7.org/fhir/sid/icd-10-cm','Toxoplasmosis, unspecified','B589','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1893_P37.1','P37.1','http://hl7.org/fhir/sid/icd-10-cm','Congenital toxoplasmosis','P371','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1893_B58.2','B58.2','http://hl7.org/fhir/sid/icd-10-cm','Toxoplasma meningoencephalitis','B582','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1532_10853021000119107','10853021000119107','http://snomed.info/sct','Overdose of methylphenidate (disorder)','10853021000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1532_1148569003','1148569003','http://snomed.info/sct','Intentional amfetamine and/or amfetamine derivative poisoning (disorder)','1148569003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1532_1148570002','1148570002','http://snomed.info/sct','Accidental poisoning caused by amfetamine and/or amfetamine derivative (disorder)','1148570002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1532_1148571003','1148571003','http://snomed.info/sct','Poisoning caused by amfetamine and/or amfetamine derivative (disorder)','1148571003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1532_1148671008','1148671008','http://snomed.info/sct','Amfetamine and/or amfetamine derivative overdose (disorder)','1148671008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1532_1148673006','1148673006','http://snomed.info/sct','Intentional amfetamine and/or amfetamine derivative overdose (disorder)','1148673006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1532_1148674000','1148674000','http://snomed.info/sct','Accidental amfetamine and/or amfetamine derivative overdose (disorder)','1148674000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1532_1155772001','1155772001','http://snomed.info/sct','Intoxication caused by central stimulant (disorder)','1155772001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1532_1157240004','1157240004','http://snomed.info/sct','Amfetamine and/or amfetamine derivative intoxication (disorder)','1157240004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1532_12398571000119105','12398571000119105','http://snomed.info/sct','Methamphetamine intoxication (disorder)','12398571000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1532_16236661000119100','16236661000119100','http://snomed.info/sct','Delirium due to methamphetamine intoxication (disorder)','16236661000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1532_216562003','216562003','http://snomed.info/sct','Accidental poisoning caused by central nervous system stimulants (disorder)','216562003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1532_296290006','296290006','http://snomed.info/sct','Central nervous system stimulant overdose (disorder)','296290006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1532_45421006','45421006','http://snomed.info/sct','Amphetamine intoxication (disorder)','45421006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1532_61803000','61803000','http://snomed.info/sct','Poisoning caused by central nervous system stimulant (disorder)','61803000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1532_838519006','838519006','http://snomed.info/sct','Overdose of methylenedioxymethamphetamine (disorder)','838519006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1532_838520000','838520000','http://snomed.info/sct','Accidental overdose of methylenedioxymethamphetamine (disorder)','838520000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1532_838521001','838521001','http://snomed.info/sct','Intentional overdose of methylenedioxymethamphetamine (disorder)','838521001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1532_838523003','838523003','http://snomed.info/sct','Poisoning caused by methylenedioxymethamphetamine (disorder)','838523003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1532_838524009','838524009','http://snomed.info/sct','Accidental poisoning caused by methylenedioxymethamphetamine (disorder)','838524009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1532_838526006','838526006','http://snomed.info/sct','Intentional poisoning caused by methylenedioxymethamphetamine (disorder)','838526006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1774_T80.211A','T80.211A','http://hl7.org/fhir/sid/icd-10-cm','Bloodstream infection due to central venous catheter, initial encounter','T80211A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1894_B58.2','B58.2','http://hl7.org/fhir/sid/icd-10-cm','Toxoplasma meningoencephalitis','B582','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1891_17949000','17949000','http://snomed.info/sct','Meningoencephalitis due to acquired toxoplasmosis (disorder)','17949000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1891_192701001','192701001','http://snomed.info/sct','Toxoplasma encephalitis (disorder)','192701001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1892_1092821000119106','1092821000119106','http://snomed.info/sct','Toxoplasma myositis (disorder)','1092821000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1892_1092831000119109','1092831000119109','http://snomed.info/sct','Toxoplasma tubulointerstitial nephropathy (disorder)','1092831000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1892_1186999007','1186999007','http://snomed.info/sct','Infectious mononucleosis caused by Toxoplasma (disorder)','1186999007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1892_1222580004','1222580004','http://snomed.info/sct','Hepatitis caused by Toxoplasma gondii (disorder)','1222580004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1892_1235004000','1235004000','http://snomed.info/sct','Lymphadenitis caused by Toxoplasma gondii (disorder)','1235004000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1892_15677681000119107','15677681000119107','http://snomed.info/sct','Chorioretinitis of left eye caused by Toxoplasma gondii (disorder)','15677681000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1892_15677721000119101','15677721000119101','http://snomed.info/sct','Chorioretinitis of bilateral eyes caused by Toxoplasma gondii (disorder)','15677721000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1892_15677761000119106','15677761000119106','http://snomed.info/sct','Chorioretinitis of right eye caused by Toxoplasma gondii (disorder)','15677761000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1892_15678041000119108','15678041000119108','http://snomed.info/sct','Choroiditis of left eye caused by Toxoplasma gondii (disorder)','15678041000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1892_15678081000119103','15678081000119103','http://snomed.info/sct','Choroiditis of right eye caused by Toxoplasma gondii (disorder)','15678081000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1892_15685321000119103','15685321000119103','http://snomed.info/sct','Retinitis of left eye caused by Toxoplasma (disorder)','15685321000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1892_15685361000119108','15685361000119108','http://snomed.info/sct','Retinitis of right eye caused by Toxoplasma (disorder)','15685361000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1892_15685401000119104','15685401000119104','http://snomed.info/sct','Retinitis of bilateral eyes caused by Toxoplasma gondii (disorder)','15685401000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1892_15992911000119101','15992911000119101','http://snomed.info/sct','Uveitis of bilateral eyes caused by Toxoplasma gondii (disorder)','15992911000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1892_15992951000119100','15992951000119100','http://snomed.info/sct','Uveitis of right eye caused by Toxoplasma gondii (disorder)','15992951000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1892_15992991000119105','15992991000119105','http://snomed.info/sct','Uveitis of left eye caused by Toxoplasma gondii (disorder)','15992991000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1892_16116004','16116004','http://snomed.info/sct','Acute lymphadenopathic toxoplasmosis (disorder)','16116004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1892_17681007','17681007','http://snomed.info/sct','Hepatitis due to acquired disseminated toxoplasmosis (disorder)','17681007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1892_187192000','187192000','http://snomed.info/sct','Toxoplasmosis (disorder)','187192000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1892_187194004','187194004','http://snomed.info/sct','Toxoplasmosis chorioretinitis (disorder)','187194004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1892_187195003','187195003','http://snomed.info/sct','Toxoplasma myocarditis (disorder)','187195003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1892_187196002','187196002','http://snomed.info/sct','Toxoplasma pneumonitis (disorder)','187196002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1892_187197006','187197006','http://snomed.info/sct','Hepatitis caused by Toxoplasma (disorder)','187197006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1892_187199009','187199009','http://snomed.info/sct','Toxoplasmosis of multiple sites (disorder)','187199009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1892_18931000119103','18931000119103','http://snomed.info/sct','Acquired disseminated toxoplasmosis (disorder)','18931000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1892_194948006','194948006','http://snomed.info/sct','Acute myocarditis - toxoplasmosis (disorder)','194948006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1892_22540004','22540004','http://snomed.info/sct','Multisystemic disseminated toxoplasmosis (disorder)','22540004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1892_240666009','240666009','http://snomed.info/sct','Cutaneous toxoplasmosis (disorder)','240666009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1892_281898005','281898005','http://snomed.info/sct','Lymphadenopathy due to congenital toxoplasmosis (disorder)','281898005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1892_281899002','281899002','http://snomed.info/sct','Congenital hydrocephalus caused by toxoplasmosis (disorder)','281899002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1892_314031009','314031009','http://snomed.info/sct','Acute toxoplasmosis chorioretinitis (disorder)','314031009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1892_314032002','314032002','http://snomed.info/sct','Inactive toxoplasmosis chorioretinitis (finding)','314032002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1892_331101000119105','331101000119105','http://snomed.info/sct','Toxoplasma choroiditis (disorder)','331101000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1892_415218004','415218004','http://snomed.info/sct','Punctate outer retinal toxoplasmosis (disorder)','415218004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1892_416481006','416481006','http://snomed.info/sct','Ocular toxoplasmosis (disorder)','416481006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1892_416589006','416589006','http://snomed.info/sct','Toxoplasma retinitis (disorder)','416589006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1892_416913007','416913007','http://snomed.info/sct','Toxoplasma neuroretinitis (disorder)','416913007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1892_441854007','441854007','http://snomed.info/sct','Reactivation of toxoplasmosis chorioretinitis (disorder)','441854007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1892_46207001','46207001','http://snomed.info/sct','Pneumonitis due to acquired disseminated toxoplasmosis (disorder)','46207001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1892_609436009','609436009','http://snomed.info/sct','Fetal damage from maternal toxoplasmosis (disorder)','609436009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1892_67372006','67372006','http://snomed.info/sct','Conjunctivitis due to acquired disseminated toxoplasmosis (disorder)','67372006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1892_700284005','700284005','http://snomed.info/sct','Congenital disseminated toxoplasmosis (disorder)','700284005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1892_722549009','722549009','http://snomed.info/sct','Infection caused by Toxoplasma (disorder)','722549009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1892_735530009','735530009','http://snomed.info/sct','Disorder of eye caused by Toxoplasma gondii (disorder)','735530009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1892_73893000','73893000','http://snomed.info/sct','Congenital toxoplasmosis (disorder)','73893000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1892_76534005','76534005','http://snomed.info/sct','Myocarditis due to acquired toxoplasmosis (disorder)','76534005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1892_870294005','870294005','http://snomed.info/sct','Myelitis caused by Toxoplasma gondii (disorder)','870294005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1892_88290000','88290000','http://snomed.info/sct','Focal chorioretinitis due to acquired disseminated toxoplasmosis (disorder)','88290000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1892_771126002','771126002','http://snomed.info/sct','Infection caused by Toxoplasma gondii co-occurrent with acquired immunodeficiency syndrome (disorder)','771126002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1892_17949000','17949000','http://snomed.info/sct','Meningoencephalitis due to acquired toxoplasmosis (disorder)','17949000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1892_192701001','192701001','http://snomed.info/sct','Toxoplasma encephalitis (disorder)','192701001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1429_G04.82','G04.82','http://hl7.org/fhir/sid/icd-10-cm','Acute flaccid myelitis','G0482','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1309_10625551000119103','10625551000119103','http://snomed.info/sct','Bronchopneumonia caused by respiratory syncytial virus (disorder)','10625551000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1309_195727009','195727009','http://snomed.info/sct','Acute respiratory syncytial virus bronchitis (disorder)','195727009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1309_195739001','195739001','http://snomed.info/sct','Acute bronchiolitis caused by respiratory syncytial virus (disorder)','195739001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1309_195881003','195881003','http://snomed.info/sct','Pneumonia caused by respiratory syncytial virus (disorder)','195881003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1309_31309002','31309002','http://snomed.info/sct','Respiratory syncytial virus pharyngitis (disorder)','31309002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1309_408684006','408684006','http://snomed.info/sct','Healthcare associated respiratory syncytial virus disease (disorder)','408684006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1309_55735004','55735004','http://snomed.info/sct','Respiratory syncytial virus infection (disorder)','55735004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1309_57089007','57089007','http://snomed.info/sct','Respiratory syncytial virus bronchiolitis (disorder)','57089007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1309_72204002','72204002','http://snomed.info/sct','Respiratory syncytial virus laryngotracheobronchitis (disorder)','72204002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1309_79479005','79479005','http://snomed.info/sct','Respiratory syncytial virus bronchitis (disorder)','79479005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1309_1163073003','1163073003','http://snomed.info/sct','Encephalitis caused by human respiratory syncytial virus (disorder)','1163073003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1303_A31.1','A31.1','http://hl7.org/fhir/sid/icd-10-cm','Cutaneous mycobacterial infection','A311','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1303_A31.2','A31.2','http://hl7.org/fhir/sid/icd-10-cm','Disseminated mycobacterium avium-intracellulare complex (DMAC)','A312','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1303_A31.8','A31.8','http://hl7.org/fhir/sid/icd-10-cm','Other mycobacterial infections','A318','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1303_A31.9','A31.9','http://hl7.org/fhir/sid/icd-10-cm','Mycobacterial infection, unspecified','A319','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1545_T43.8X1A','T43.8X1A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by other psychotropic drugs, accidental (unintentional), initial encounter','T438X1A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1545_T43.8X2A','T43.8X2A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by other psychotropic drugs, intentional self-harm, initial encounter','T438X2A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1545_T43.8X3A','T43.8X3A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by other psychotropic drugs, assault, initial encounter','T438X3A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1545_T43.8X4A','T43.8X4A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by other psychotropic drugs, undetermined, initial encounter','T438X4A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1545_T43.91XA','T43.91XA','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by unspecified psychotropic drug, accidental (unintentional), initial encounter','T4391XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1545_T43.92XA','T43.92XA','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by unspecified psychotropic drug, intentional self-harm, initial encounter','T4392XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1545_T43.93XA','T43.93XA','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by unspecified psychotropic drug, assault, initial encounter','T4393XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1545_T43.94XA','T43.94XA','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by unspecified psychotropic drug, undetermined, initial encounter','T4394XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1545_T50.901A','T50.901A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by unspecified drugs, medicaments and biological substances, accidental (unintentional), initial encounter','T50901A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1545_T50.902A','T50.902A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by unspecified drugs, medicaments and biological substances, intentional self-harm, initial encounter','T50902A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1545_T50.903A','T50.903A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by unspecified drugs, medicaments and biological substances, assault, initial encounter','T50903A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1545_T50.904A','T50.904A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by unspecified drugs, medicaments and biological substances, undetermined, initial encounter','T50904A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1545_T50.911A','T50.911A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by multiple unspecified drugs, medicaments and biological substances, accidental (unintentional), initial encounter','T50911A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1545_T50.912A','T50.912A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by multiple unspecified drugs, medicaments and biological substances, intentional self-harm, initial encounter','T50912A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1545_T50.913A','T50.913A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by multiple unspecified drugs, medicaments and biological substances, assault, initial encounter','T50913A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1545_T50.914A','T50.914A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by multiple unspecified drugs, medicaments and biological substances, undetermined, initial encounter','T50914A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1545_T50.991A','T50.991A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by other drugs, medicaments and biological substances, accidental (unintentional), initial encounter','T50991A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1545_T50.992A','T50.992A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by other drugs, medicaments and biological substances, intentional self-harm, initial encounter','T50992A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1545_T50.993A','T50.993A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by other drugs, medicaments and biological substances, assault, initial encounter','T50993A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1545_T50.994A','T50.994A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by other drugs, medicaments and biological substances, undetermined, initial encounter','T50994A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1789_240606006','240606006','http://snomed.info/sct','Donovanosis - anogenital ulcer (disorder)','240606006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1789_240608007','240608007','http://snomed.info/sct','Donovanosis - non-genital lesion (disorder)','240608007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1789_277499006','277499006','http://snomed.info/sct','Complicated donovanosis (disorder)','277499006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1789_28867007','28867007','http://snomed.info/sct','Granuloma inguinale (disorder)','28867007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1542_T40.8X1A','T40.8X1A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by lysergide [LSD], accidental (unintentional), initial encounter','T408X1A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1542_T40.8X2A','T40.8X2A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by lysergide [LSD], intentional self-harm, initial encounter','T408X2A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1542_T40.8X3A','T40.8X3A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by lysergide [LSD], assault, initial encounter','T408X3A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1542_T40.8X4A','T40.8X4A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by lysergide [LSD], undetermined, initial encounter','T408X4A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1542_T40.901A','T40.901A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by unspecified psychodysleptics [hallucinogens], accidental (unintentional), initial encounter','T40901A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1542_T40.902A','T40.902A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by unspecified psychodysleptics [hallucinogens], intentional self-harm, initial encounter','T40902A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1542_T40.903A','T40.903A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by unspecified psychodysleptics [hallucinogens], assault, initial encounter','T40903A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1542_T40.904A','T40.904A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by unspecified psychodysleptics [hallucinogens], undetermined, initial encounter','T40904A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1542_T40.991A','T40.991A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by other psychodysleptics [hallucinogens], accidental (unintentional), initial encounter','T40991A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1542_T40.992A','T40.992A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by other psychodysleptics [hallucinogens], intentional self-harm, initial encounter','T40992A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1542_T40.993A','T40.993A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by other psychodysleptics [hallucinogens], assault, initial encounter','T40993A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1542_T40.994A','T40.994A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by other psychodysleptics [hallucinogens], undetermined, initial encounter','T40994A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1542_T43.641A','T43.641A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by ecstasy, accidental (unintentional), initial encounter','T43641A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1542_T43.642A','T43.642A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by ecstasy, intentional self-harm, initial encounter','T43642A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1542_T43.643A','T43.643A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by ecstasy, assault, initial encounter','T43643A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1542_T43.644A','T43.644A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by ecstasy, undetermined, initial encounter','T43644A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1541_T42.3X1A','T42.3X1A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by barbiturates, accidental (unintentional), initial encounter','T423X1A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1541_T42.3X2A','T42.3X2A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by barbiturates, intentional self-harm, initial encounter','T423X2A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1541_T42.3X3A','T42.3X3A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by barbiturates, assault, initial encounter','T423X3A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1541_T42.3X4A','T42.3X4A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by barbiturates, undetermined, initial encounter','T423X4A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1541_T42.4X1A','T42.4X1A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by benzodiazepines, accidental (unintentional), initial encounter','T424X1A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1541_T42.4X2A','T42.4X2A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by benzodiazepines, intentional self-harm, initial encounter','T424X2A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1541_T42.4X3A','T42.4X3A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by benzodiazepines, assault, initial encounter','T424X3A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1541_T42.4X4A','T42.4X4A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by benzodiazepines, undetermined, initial encounter','T424X4A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1541_T42.6X1A','T42.6X1A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by other antiepileptic and sedative-hypnotic drugs, accidental (unintentional), initial encounter','T426X1A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1541_T42.6X2A','T42.6X2A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by other antiepileptic and sedative-hypnotic drugs, intentional self-harm, initial encounter','T426X2A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1541_T42.6X3A','T42.6X3A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by other antiepileptic and sedative-hypnotic drugs, assault, initial encounter','T426X3A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1541_T42.6X4A','T42.6X4A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by other antiepileptic and sedative-hypnotic drugs, undetermined, initial encounter','T426X4A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1541_T42.71XA','T42.71XA','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by unspecified antiepileptic and sedative-hypnotic drugs, accidental (unintentional), initial encounter','T4271XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1541_T42.72XA','T42.72XA','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by unspecified antiepileptic and sedative-hypnotic drugs, intentional self-harm, initial encounter','T4272XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1541_T42.73XA','T42.73XA','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by unspecified antiepileptic and sedative-hypnotic drugs, assault, initial encounter','T4273XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1541_T42.74XA','T42.74XA','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by unspecified antiepileptic and sedative-hypnotic drugs, undetermined, initial encounter','T4274XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1544_T39.011A','T39.011A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by aspirin, accidental (unintentional), initial encounter','T39011A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1544_T39.012A','T39.012A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by aspirin, intentional self-harm, initial encounter','T39012A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1544_T39.013A','T39.013A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by aspirin, assault, initial encounter','T39013A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1544_T39.014A','T39.014A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by aspirin, undetermined, initial encounter','T39014A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1544_T39.091A','T39.091A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by salicylates, accidental (unintentional), initial encounter','T39091A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1544_T39.092A','T39.092A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by salicylates, intentional self-harm, initial encounter','T39092A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1544_T39.093A','T39.093A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by salicylates, assault, initial encounter','T39093A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1544_T39.094A','T39.094A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by salicylates, undetermined, initial encounter','T39094A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1544_T39.1X1A','T39.1X1A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by 4-Aminophenol derivatives, accidental (unintentional), initial encounter','T391X1A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1544_T39.1X2A','T39.1X2A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by 4-Aminophenol derivatives, intentional self-harm, initial encounter','T391X2A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1544_T39.1X3A','T39.1X3A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by 4-Aminophenol derivatives, assault, initial encounter','T391X3A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1544_T39.1X4A','T39.1X4A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by 4-Aminophenol derivatives, undetermined, initial encounter','T391X4A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1544_T39.2X1A','T39.2X1A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by pyrazolone derivatives, accidental (unintentional), initial encounter','T392X1A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1544_T39.2X2A','T39.2X2A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by pyrazolone derivatives, intentional self-harm, initial encounter','T392X2A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1544_T39.2X3A','T39.2X3A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by pyrazolone derivatives, assault, initial encounter','T392X3A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1544_T39.2X4A','T39.2X4A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by pyrazolone derivatives, undetermined, initial encounter','T392X4A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1544_T39.311A','T39.311A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by propionic acid derivatives, accidental (unintentional), initial encounter','T39311A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1544_T39.312A','T39.312A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by propionic acid derivatives, intentional self-harm, initial encounter','T39312A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1544_T39.313A','T39.313A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by propionic acid derivatives, assault, initial encounter','T39313A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1544_T39.314A','T39.314A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by propionic acid derivatives, undetermined, initial encounter','T39314A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1544_T39.391A','T39.391A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by other nonsteroidal anti-inflammatory drugs [NSAID], accidental (unintentional), initial encounter','T39391A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1544_T39.392A','T39.392A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by other nonsteroidal anti-inflammatory drugs [NSAID], intentional self-harm, initial encounter','T39392A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1544_T39.393A','T39.393A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by other nonsteroidal anti-inflammatory drugs [NSAID], assault, initial encounter','T39393A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1544_T39.394A','T39.394A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by other nonsteroidal anti-inflammatory drugs [NSAID], undetermined, initial encounter','T39394A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1544_T39.8X1A','T39.8X1A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by other nonopioid analgesics and antipyretics, not elsewhere classified, accidental (unintentional), initial encounter','T398X1A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1544_T39.8X2A','T39.8X2A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by other nonopioid analgesics and antipyretics, not elsewhere classified, intentional self-harm, initial encounter','T398X2A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1544_T39.8X3A','T39.8X3A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by other nonopioid analgesics and antipyretics, not elsewhere classified, assault, initial encounter','T398X3A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1544_T39.8X4A','T39.8X4A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by other nonopioid analgesics and antipyretics, not elsewhere classified, undetermined, initial encounter','T398X4A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1544_T39.91XA','T39.91XA','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by unspecified nonopioid analgesic, antipyretic and antirheumatic, accidental (unintentional), initial encounter','T3991XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1544_T39.92XA','T39.92XA','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by unspecified nonopioid analgesic, antipyretic and antirheumatic, intentional self-harm, initial encounter','T3992XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1544_T39.93XA','T39.93XA','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by unspecified nonopioid analgesic, antipyretic and antirheumatic, assault, initial encounter','T3993XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1544_T39.94XA','T39.94XA','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by unspecified nonopioid analgesic, antipyretic and antirheumatic, undetermined, initial encounter','T3994XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_111809003','111809003','http://snomed.info/sct','Infection caused by Mycobacterium lepraemurium (disorder)','111809003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_111811007','111811007','http://snomed.info/sct','Mycobacterial infection (excluding tuberculosis AND leprosy) (disorder)','111811007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_111812000','111812000','http://snomed.info/sct','Atypical mycobacterial infection (disorder)','111812000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_1162291005','1162291005','http://snomed.info/sct','Inflammation of skeletal muscle caused by Mycobacterium (disorder)','1162291005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_1162292003','1162292003','http://snomed.info/sct','Inflammation of intervertebral disc caused by Mycobacterium (disorder)','1162292003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_1162293008','1162293008','http://snomed.info/sct','Inflammation of joint caused by Mycobacterium (disorder)','1162293008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_1162296000','1162296000','http://snomed.info/sct','Inflammation of bursa caused by Mycobacterium (disorder)','1162296000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_1162330007','1162330007','http://snomed.info/sct','Spondyloarthritis caused by Mycobacterium (disorder)','1162330007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_1163487005','1163487005','http://snomed.info/sct','Colitis caused by Mycobacterium (disorder)','1163487005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_1163492007','1163492007','http://snomed.info/sct','Gastritis caused by Mycobacterium avium-intracellulare (disorder)','1163492007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_1163494008','1163494008','http://snomed.info/sct','Gastritis caused by Mycobacterium, non-tuberculosis (disorder)','1163494008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_1163498006','1163498006','http://snomed.info/sct','Gastritis caused by Mycobacterium (disorder)','1163498006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_1163531000','1163531000','http://snomed.info/sct','Duodenitis caused by Mycobacterium (disorder)','1163531000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_1163546007','1163546007','http://snomed.info/sct','Encephalomyelitis caused by Mycobacterium (disorder)','1163546007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_1163555005','1163555005','http://snomed.info/sct','Esophagitis caused by Mycobacterium (disorder)','1163555005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_1176992006','1176992006','http://snomed.info/sct','Abscess of spinal cord caused by Mycobacterium (disorder)','1176992006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_1177023001','1177023001','http://snomed.info/sct','Colitis caused by non-tuberculosis Mycobacterium (disorder)','1177023001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_1177037005','1177037005','http://snomed.info/sct','Esophagitis caused by non-tuberculous Mycobacterium (disorder)','1177037005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_1177072008','1177072008','http://snomed.info/sct','Duodenitis caused by Mycobacterium, non-tuberculosis (disorder)','1177072008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_1193737008','1193737008','http://snomed.info/sct','Inflammation of small intestine caused by Mycobacterium (disorder)','1193737008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_1193738003','1193738003','http://snomed.info/sct','Inflammation of intestine caused by Mycobacterium (disorder)','1193738003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_1193739006','1193739006','http://snomed.info/sct','Inflammation of small intestine caused by non-tuberculous Mycobacterium (disorder)','1193739006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_1193740008','1193740008','http://snomed.info/sct','Inflammation of intestine caused by non-tuberculous Mycobacterium (disorder)','1193740008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_15042005','15042005','http://snomed.info/sct','Infection caused by Mycobacterium vaccae (disorder)','15042005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_15845006','15845006','http://snomed.info/sct','Buruli ulcer (disorder)','15845006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_19020001','19020001','http://snomed.info/sct','Infection caused by Mycobacterium scrofulaceum (disorder)','19020001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_21704002','21704002','http://snomed.info/sct','Infection caused by Mycobacterium kansasii (disorder)','21704002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_234091000','234091000','http://snomed.info/sct','Atypical mycobacterial lymphadenitis (disorder)','234091000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_240383005','240383005','http://snomed.info/sct','Disseminated mycobacteriosis (disorder)','240383005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_240413000','240413000','http://snomed.info/sct','Disseminated atypical mycobacterial infection (disorder)','240413000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_240414006','240414006','http://snomed.info/sct','Cervical atypical mycobacterial lymphadenitis (disorder)','240414006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_240415007','240415007','http://snomed.info/sct','Skin and soft tissue atypical mycobacterial infection (disorder)','240415007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_240416008','240416008','http://snomed.info/sct','Cutaneous mycobacterium marinum infection (disorder)','240416008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_240417004','240417004','http://snomed.info/sct','Fish tank granuloma (disorder)','240417004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_240418009','240418009','http://snomed.info/sct','Cutaneous mycobacterium haemophilium infection (disorder)','240418009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_240419001','240419001','http://snomed.info/sct','Hyperimmune cutaneous reaction caused by atypical mycobacteria (disorder)','240419001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_240420007','240420007','http://snomed.info/sct','Hyperimmune cutaneous reaction caused by mycobacterium avium-intracellulare (disorder)','240420007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_240421006','240421006','http://snomed.info/sct','Hyperimmune cutaneous reaction caused by mycobacterium kansasii (disorder)','240421006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_24311002','24311002','http://snomed.info/sct','Infection caused by Mycobacterium smegmatis (disorder)','24311002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_25626000','25626000','http://snomed.info/sct','Cutaneous infectious disease caused by Mycobacteria (disorder)','25626000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_371685005','371685005','http://snomed.info/sct','Infection caused by Mycobacterium avium (disorder)','371685005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_371686006','371686006','http://snomed.info/sct','Infection caused by Mycobacterium avium-intracellulare group (disorder)','371686006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_371687002','371687002','http://snomed.info/sct','Disseminated infection caused by Mycobacterium avium-intracellulare group (disorder)','371687002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_372930006','372930006','http://snomed.info/sct','Infection caused by Mycobacterium gordonae (disorder)','372930006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_372931005','372931005','http://snomed.info/sct','Infection caused by Mycobacterium haemophilum (disorder)','372931005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_372932003','372932003','http://snomed.info/sct','Infection caused by Mycobacterium genavense (disorder)','372932003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_372933008','372933008','http://snomed.info/sct','Infection caused by Mycobacterium malmoense (disorder)','372933008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_373009006','373009006','http://snomed.info/sct','Infection caused by Mycobacterium agri (disorder)','373009006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_373010001','373010001','http://snomed.info/sct','Infection caused by Mycobacterium aichiense (disorder)','373010001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_373011002','373011002','http://snomed.info/sct','Infection caused by Mycobacterium alvei (disorder)','373011002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_373012009','373012009','http://snomed.info/sct','Infection caused by Mycobacterium asiaticum (disorder)','373012009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_373013004','373013004','http://snomed.info/sct','Infection caused by Mycobacterium aurum (disorder)','373013004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_373014005','373014005','http://snomed.info/sct','Infection caused by Mycobacterium austroafricanum (disorder)','373014005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_373015006','373015006','http://snomed.info/sct','Infection caused by Mycobacterium borstelense (disorder)','373015006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_373016007','373016007','http://snomed.info/sct','Infection caused by Mycobacterium branderi (disorder)','373016007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_373017003','373017003','http://snomed.info/sct','Infection caused by Mycobacterium brumae (disorder)','373017003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_373018008','373018008','http://snomed.info/sct','Infection caused by Mycobacterium celatum (disorder)','373018008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_373019000','373019000','http://snomed.info/sct','Infection caused by Mycobacterium chitae (disorder)','373019000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_373020006','373020006','http://snomed.info/sct','Infection caused by Mycobacterium chubuense (disorder)','373020006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_373021005','373021005','http://snomed.info/sct','Infection caused by Mycobacterium confluentis (disorder)','373021005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_373022003','373022003','http://snomed.info/sct','Infection caused by Mycobacterium conspicuum (disorder)','373022003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_373023008','373023008','http://snomed.info/sct','Infection caused by Mycobacterium cookii (disorder)','373023008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_373024002','373024002','http://snomed.info/sct','Infection caused by Mycobacterium diernhoferi (disorder)','373024002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_373025001','373025001','http://snomed.info/sct','Infection caused by Mycobacterium duvalii (disorder)','373025001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_373026000','373026000','http://snomed.info/sct','Infection caused by Mycobacterium fallax (disorder)','373026000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_373027009','373027009','http://snomed.info/sct','Infection caused by Mycobacterium farcinogenes (disorder)','373027009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_373028004','373028004','http://snomed.info/sct','Infection caused by Mycobacterium flavescens (disorder)','373028004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_373030002','373030002','http://snomed.info/sct','Infection caused by Mycobacterium gadium (disorder)','373030002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_373031003','373031003','http://snomed.info/sct','Infection caused by Mycobacterium gastri (disorder)','373031003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_373032005','373032005','http://snomed.info/sct','Infection caused by Mycobacterium gilvum (disorder)','373032005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_373033000','373033000','http://snomed.info/sct','Infection caused by Mycobacterium goodii (disorder)','373033000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_373034006','373034006','http://snomed.info/sct','Infection caused by Mycobacterium hassiacum (disorder)','373034006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_373035007','373035007','http://snomed.info/sct','Infection caused by Mycobacterium hiberniae (disorder)','373035007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_373036008','373036008','http://snomed.info/sct','Infection caused by Mycobacterium hodleri (disorder)','373036008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_373037004','373037004','http://snomed.info/sct','Infection caused by Mycobacterium interjectum (disorder)','373037004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_373038009','373038009','http://snomed.info/sct','Infection caused by Mycobacterium intermedium (disorder)','373038009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_373039001','373039001','http://snomed.info/sct','Infection caused by Mycobacterium komossence (disorder)','373039001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_373040004','373040004','http://snomed.info/sct','Infection caused by Mycobacterium lentiflavum (disorder)','373040004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_373041000','373041000','http://snomed.info/sct','Infection caused by Mycobacterium madagascariense (disorder)','373041000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_373042007','373042007','http://snomed.info/sct','Infection caused by Mycobacterium mageritense (disorder)','373042007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_373044008','373044008','http://snomed.info/sct','Infection caused by Mycobacterium moriokaense (disorder)','373044008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_373045009','373045009','http://snomed.info/sct','Infection caused by Mycobacterium mucogenicum (disorder)','373045009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_373046005','373046005','http://snomed.info/sct','Infection caused by Mycobacterium neoaurum (disorder)','373046005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_373047001','373047001','http://snomed.info/sct','Infection caused by Mycobacterium nonchromogenicum (disorder)','373047001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_373048006','373048006','http://snomed.info/sct','Infection caused by Mycobacterium novocastrense (disorder)','373048006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_373049003','373049003','http://snomed.info/sct','Infection caused by Mycobacterium obuense (disorder)','373049003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_373050003','373050003','http://snomed.info/sct','Infection caused by Mycobacterium parafortuitum (disorder)','373050003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_373051004','373051004','http://snomed.info/sct','Infection caused by Mycobacterium peregrinum (disorder)','373051004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_373052006','373052006','http://snomed.info/sct','Infection caused by Mycobacterium phlei (disorder)','373052006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_373053001','373053001','http://snomed.info/sct','Infection caused by Mycobacterium piscium (disorder)','373053001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_373054007','373054007','http://snomed.info/sct','Infection caused by Mycobacterium porcinum (disorder)','373054007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_373055008','373055008','http://snomed.info/sct','Infection caused by Mycobacterium poriferae (disorder)','373055008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_373056009','373056009','http://snomed.info/sct','Infection caused by Mycobacterium pulveris (disorder)','373056009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_373057000','373057000','http://snomed.info/sct','Infection caused by Mycobacterium rhodesiae (disorder)','373057000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_373058005','373058005','http://snomed.info/sct','Infection caused by Mycobacterium senegalense (disorder)','373058005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_373059002','373059002','http://snomed.info/sct','Infection caused by Mycobacterium shimoidei (disorder)','373059002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_373069008','373069008','http://snomed.info/sct','Infection caused by Mycobacterium simiae (disorder)','373069008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_373070009','373070009','http://snomed.info/sct','Infection caused by Mycobacterium sphagni (disorder)','373070009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_373071008','373071008','http://snomed.info/sct','Infection caused by Mycobacterium szulgai (disorder)','373071008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_373072001','373072001','http://snomed.info/sct','Infection caused by Mycobacterium terrae (disorder)','373072001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_373073006','373073006','http://snomed.info/sct','Infection caused by Mycobacterium thamnophis (disorder)','373073006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_373074000','373074000','http://snomed.info/sct','Infection caused by Mycobacterium thermoresistibile (disorder)','373074000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_373075004','373075004','http://snomed.info/sct','Infection caused by Mycobacterium tokaiense (disorder)','373075004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_373076003','373076003','http://snomed.info/sct','Infection caused by Mycobacterium triplex (disorder)','373076003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_373077007','373077007','http://snomed.info/sct','Infection caused by Mycobacterium triviale (disorder)','373077007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_373078002','373078002','http://snomed.info/sct','Infection caused by Mycobacterium wolinskyi (disorder)','373078002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_373079005','373079005','http://snomed.info/sct','Infection caused by Mycobacterium avium brunese (disorder)','373079005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_373436002','373436002','http://snomed.info/sct','Infection caused by Mycobacterium intracellulare (disorder)','373436002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_373438001','373438001','http://snomed.info/sct','Infection caused by Mycobacterium marinum (disorder)','373438001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_373578005','373578005','http://snomed.info/sct','Infection caused by Mycobacterium paratuberculosis (disorder)','373578005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_402976003','402976003','http://snomed.info/sct','Mycobacterium kansasii infection of skin (disorder)','402976003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_402977007','402977007','http://snomed.info/sct','Mycobacterium scrofulaceum infection of skin (disorder)','402977007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_402978002','402978002','http://snomed.info/sct','Mycobacterium szulgai infection of skin (disorder)','402978002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_402979005','402979005','http://snomed.info/sct','Mycobacterium avium intracellulare infection of skin (disorder)','402979005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_402980008','402980008','http://snomed.info/sct','Mycobacterium fortuitum infection of skin (disorder)','402980008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_402981007','402981007','http://snomed.info/sct','Mycobacteroides chelonae infection of skin (disorder)','402981007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_402982000','402982000','http://snomed.info/sct','Mycobacterium gordonae infection of skin (disorder)','402982000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_402983005','402983005','http://snomed.info/sct','Mycobacterium malmoense infection of skin (disorder)','402983005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_406594003','406594003','http://snomed.info/sct','Mycobacterial infection of the central nervous system (disorder)','406594003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_417115008','417115008','http://snomed.info/sct','Mycobacterium avium intracellulare group choroiditis (disorder)','417115008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_420818005','420818005','http://snomed.info/sct','Mycobacteriosis with acquired immunodeficiency syndrome (disorder)','420818005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_423526009','423526009','http://snomed.info/sct','Disseminated Mycobacterium fortuitum infection (disorder)','423526009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_423726006','423726006','http://snomed.info/sct','Disseminated Mycobacterium chelonei infection (disorder)','423726006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_423892009','423892009','http://snomed.info/sct','Atypical mycobacterial infection of hand (disorder)','423892009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_423969008','423969008','http://snomed.info/sct','Disseminated Mycobacterium gordonae infection (disorder)','423969008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_424146000','424146000','http://snomed.info/sct','Mycobacterium avium intracellulare, localized (disorder)','424146000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_424536008','424536008','http://snomed.info/sct','Disseminated Mycobacterium kansasii infection (disorder)','424536008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_425618009','425618009','http://snomed.info/sct','Mycobacterial keratitis (disorder)','425618009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_427520002','427520002','http://snomed.info/sct','Disseminated Mycobacteroides abscessus infection (disorder)','427520002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_430945004','430945004','http://snomed.info/sct','Infection caused by Mycobacterium resistant to multiple antimycobacterial agents (disorder)','430945004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_58798003','58798003','http://snomed.info/sct','Infection caused by Mycobacterium chelonei (disorder)','58798003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_6040009','6040009','http://snomed.info/sct','Infection caused by Mycobacterium fortuitum (disorder)','6040009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_713967004','713967004','http://snomed.info/sct','Disseminated atypical infection caused by Mycobacterium co-occurrent with human immunodeficiency virus infection (disorder)','713967004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_733164001','733164001','http://snomed.info/sct','Gastrointestinal infection caused by non-tuberculous Mycobacterium (disorder)','733164001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_838387004','838387004','http://snomed.info/sct','Abscess of spinal subdural space caused by Mycobacterium (disorder)','838387004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_838388009','838388009','http://snomed.info/sct','Abscess of spinal epidural space caused by Mycobacterium (disorder)','838388009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_84515001','84515001','http://snomed.info/sct','Infection caused by Mycobacterium xenopi (disorder)','84515001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_860843009','860843009','http://snomed.info/sct','Granuloma of spinal epidural space caused by Mycobacterium (disorder)','860843009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_860847005','860847005','http://snomed.info/sct','Granuloma of spinal subdural space caused by Mycobacterium (disorder)','860847005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_866136008','866136008','http://snomed.info/sct','Infection of tendon sheath caused by Mycobacterium (disorder)','866136008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_870340002','870340002','http://snomed.info/sct','Granuloma of spinal cord caused by Mycobacterium (disorder)','870340002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1301_88415009','88415009','http://snomed.info/sct','Mycobacteriosis (disorder)','88415009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1543_T40.711A','T40.711A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by cannabis, accidental (unintentional), initial encounter','T40711A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1543_T40.712A','T40.712A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by cannabis, intentional self-harm, initial encounter','T40712A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1543_T40.713A','T40.713A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by cannabis, assault, initial encounter','T40713A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1543_T40.714A','T40.714A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by cannabis, undetermined, initial encounter','T40714A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1543_T40.721A','T40.721A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by synthetic cannabinoids, accidental (unintentional), initial encounter','T40721A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1543_T40.722A','T40.722A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by synthetic cannabinoids, intentional self-harm, initial encounter','T40722A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1543_T40.723A','T40.723A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by synthetic cannabinoids, assault, initial encounter','T40723A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1543_T40.724A','T40.724A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by synthetic cannabinoids, undetermined, initial encounter','T40724A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1540_T40.5X1A','T40.5X1A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by cocaine, accidental (unintentional), initial encounter','T405X1A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1540_T40.5X2A','T40.5X2A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by cocaine, intentional self-harm, initial encounter','T405X2A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1540_T40.5X3A','T40.5X3A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by cocaine, assault, initial encounter','T405X3A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1540_T40.5X4A','T40.5X4A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by cocaine, undetermined, initial encounter','T405X4A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1540_T43.601A','T43.601A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by unspecified psychostimulants, accidental (unintentional), initial encounter','T43601A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1540_T43.602A','T43.602A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by unspecified psychostimulants, intentional self-harm, initial encounter','T43602A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1540_T43.603A','T43.603A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by unspecified psychostimulants, assault, initial encounter','T43603A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1540_T43.604A','T43.604A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by unspecified psychostimulants, undetermined, initial encounter','T43604A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1540_T43.611A','T43.611A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by caffeine, accidental (unintentional), initial encounter','T43611A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1540_T43.612A','T43.612A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by caffeine, intentional self-harm, initial encounter','T43612A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1540_T43.613A','T43.613A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by caffeine, assault, initial encounter','T43613A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1540_T43.614A','T43.614A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by caffeine, undetermined, initial encounter','T43614A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1540_T43.621A','T43.621A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by amphetamines, accidental (unintentional), initial encounter','T43621A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1540_T43.622A','T43.622A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by amphetamines, intentional self-harm, initial encounter','T43622A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1540_T43.623A','T43.623A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by amphetamines, assault, initial encounter','T43623A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1540_T43.624A','T43.624A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by amphetamines, undetermined, initial encounter','T43624A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1540_T43.631A','T43.631A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by methylphenidate, accidental (unintentional), initial encounter','T43631A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1540_T43.632A','T43.632A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by methylphenidate, intentional self-harm, initial encounter','T43632A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1540_T43.633A','T43.633A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by methylphenidate, assault, initial encounter','T43633A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1540_T43.634A','T43.634A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by methylphenidate, undetermined, initial encounter','T43634A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1540_T43.651A','T43.651A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by methamphetamines accidental (unintentional), initial encounter','T43651A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1540_T43.652A','T43.652A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by methamphetamines intentional self-harm, initial encounter','T43652A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1540_T43.653A','T43.653A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by methamphetamines, assault, initial encounter','T43653A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1540_T43.654A','T43.654A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by methamphetamines, undetermined, initial encounter','T43654A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1540_T43.691A','T43.691A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by other psychostimulants, accidental (unintentional), initial encounter','T43691A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1540_T43.692A','T43.692A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by other psychostimulants, intentional self-harm, initial encounter','T43692A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1540_T43.693A','T43.693A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by other psychostimulants, assault, initial encounter','T43693A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1540_T43.694A','T43.694A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by other psychostimulants, undetermined, initial encounter','T43694A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1318_Z20.822','Z20.822','http://hl7.org/fhir/sid/icd-10-cm','Contact with and (suspected) exposure to COVID-19','Z20822','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1557_G02','G02','http://hl7.org/fhir/sid/icd-10-cm','Meningitis in other infectious and parasitic diseases classified elsewhere','G02','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1557_G03','G03','http://hl7.org/fhir/sid/icd-10-cm','Meningitis due to other and unspecified causes','G03','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1557_G03.8','G03.8','http://hl7.org/fhir/sid/icd-10-cm','Meningitis due to other specified causes','G038','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1557_G03.9','G03.9','http://hl7.org/fhir/sid/icd-10-cm','Meningitis, unspecified','G039','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1799_A31.0','A31.0','http://hl7.org/fhir/sid/icd-10-cm','Pulmonary mycobacterial infection','A310','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1556_B37.5','B37.5','http://hl7.org/fhir/sid/icd-10-cm','Candidal meningitis','B375','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1556_B38.4','B38.4','http://hl7.org/fhir/sid/icd-10-cm','Coccidioidomycosis meningitis','B384','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1798_1010620002','1010620002','http://snomed.info/sct','Infection of lung caused by Mycobacterium malmoense (disorder)','1010620002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1798_1010622005','1010622005','http://snomed.info/sct','Infection of lung caused by Mycobacterium xenopi (disorder)','1010622005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1798_1010662009','1010662009','http://snomed.info/sct','Infection of lung caused by Mycobacterium kansasii (disorder)','1010662009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1798_1731000119106','1731000119106','http://snomed.info/sct','Atypical mycobacterial infection of lung (disorder)','1731000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1798_186342000','186342000','http://snomed.info/sct','Pulmonary Mycobacterium avium complex infection (disorder)','186342000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1798_233618000','233618000','http://snomed.info/sct','Mycobacterial pneumonia (disorder)','233618000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1798_277869007','277869007','http://snomed.info/sct','Non-tuberculous mycobacterial pneumonia (disorder)','277869007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1798_373435003','373435003','http://snomed.info/sct','Battey disease (disorder)','373435003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1798_84353005','84353005','http://snomed.info/sct','Pulmonary disease caused by Mycobacteria (disorder)','84353005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1558_B57.41','B57.41','http://hl7.org/fhir/sid/icd-10-cm','Meningitis in Chagas'' disease','B5741','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1553_1084801000119107','1084801000119107','http://snomed.info/sct','Meningitis caused by Sporothrix schenkii (disorder)','1084801000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1553_1163130005','1163130005','http://snomed.info/sct','Meningitis caused by Aspergillus (disorder)','1163130005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1553_24321005','24321005','http://snomed.info/sct','Fungal meningitis (disorder)','24321005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1553_45021001','45021001','http://snomed.info/sct','Candidal meningitis (disorder)','45021001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1553_713625005','713625005','http://snomed.info/sct','Meningitis caused by Histoplasma duboisii (disorder)','713625005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1553_721792003','721792003','http://snomed.info/sct','Meningitis caused by Mucorales (disorder)','721792003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1553_14232007','14232007','http://snomed.info/sct','Cryptococcal meningitis (disorder)','14232007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1553_46303000','46303000','http://snomed.info/sct','Coccidioidal meningitis (disorder)','46303000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1553_713624009','713624009','http://snomed.info/sct','Meningitis caused by Histoplasma capsulatum (disorder)','713624009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1553_713626006','713626006','http://snomed.info/sct','Meningitis caused by Histoplasmosis (disorder)','713626006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1310_B97.4','B97.4','http://hl7.org/fhir/sid/icd-10-cm','Respiratory syncytial virus as the cause of diseases classified elsewhere','B974','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1310_J12.1','J12.1','http://hl7.org/fhir/sid/icd-10-cm','Respiratory syncytial virus pneumonia','J121','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1310_J20.5','J20.5','http://hl7.org/fhir/sid/icd-10-cm','Acute bronchitis due to respiratory syncytial virus','J205','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1310_J21.0','J21.0','http://hl7.org/fhir/sid/icd-10-cm','Acute bronchiolitis due to respiratory syncytial virus','J210','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1431_A48.51','A48.51','http://hl7.org/fhir/sid/icd-10-cm','Infant botulism','A4851','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1552_1149095004','1149095004','http://snomed.info/sct','Meningitis caused by Streptococcus suis (disorder)','1149095004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1552_1163132002','1163132002','http://snomed.info/sct','Meningitis caused by Gram positive aerobic rod (disorder)','1163132002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1552_12166008','12166008','http://snomed.info/sct','Staphylococcal meningitis (disorder)','12166008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1552_192643004','192643004','http://snomed.info/sct','Haemophilus meningitis (disorder)','192643004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1552_192649000','192649000','http://snomed.info/sct','Actinomycotic meningitis (disorder)','192649000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1552_192654009','192654009','http://snomed.info/sct','Meningitis caused by bacillus pyocyaneus (disorder)','192654009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1552_192655005','192655005','http://snomed.info/sct','Escherichia coli meningitis (disorder)','192655005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1552_192656006','192656006','http://snomed.info/sct','Meningitis caused by Friedlander bacillus (disorder)','192656006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1552_192659004','192659004','http://snomed.info/sct','Morganella morganii meningitis (disorder)','192659004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1552_192660009','192660009','http://snomed.info/sct','Pseudomonas meningitis (disorder)','192660009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1552_230149008','230149008','http://snomed.info/sct','Staphylococcus epidermidis meningitis (disorder)','230149008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1552_302877009','302877009','http://snomed.info/sct','Proteus meningitis (disorder)','302877009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1552_420585007','420585007','http://snomed.info/sct','Meningitis caused by Klebsiella aerogenes (disorder)','420585007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1552_425887005','425887005','http://snomed.info/sct','Bacterial meningitis caused by Gram-negative bacteria (disorder)','425887005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1552_445059005','445059005','http://snomed.info/sct','Meningitis caused by anaerobic bacteria (disorder)','445059005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1552_4510004','4510004','http://snomed.info/sct','Streptococcal meningitis (disorder)','4510004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1552_721240006','721240006','http://snomed.info/sct','Meningitis caused by gram-negative aerobic coccus (disorder)','721240006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1552_721241005','721241005','http://snomed.info/sct','Meningitis caused by gram-negative aerobic bacillus (disorder)','721241005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1552_721242003','721242003','http://snomed.info/sct','Meningitis caused by Spirochaetes (disorder)','721242003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1552_721729004','721729004','http://snomed.info/sct','Meningitis caused by Enterobacter (disorder)','721729004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1552_721748000','721748000','http://snomed.info/sct','Meningitis caused by Enterococcus (disorder)','721748000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1552_721752000','721752000','http://snomed.info/sct','Meningitis caused by Actinomycetales (disorder)','721752000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1552_721753005','721753005','http://snomed.info/sct','Meningitis caused by Nocardia (disorder)','721753005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1552_721754004','721754004','http://snomed.info/sct','Meningitis caused by Tropheryma whipplei (disorder)','721754004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1552_95883001','95883001','http://snomed.info/sct','Bacterial meningitis (disorder)','95883001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1552_186956008','186956008','http://snomed.info/sct','Leptospiral meningitis (disorder)','186956008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1552_192644005','192644005','http://snomed.info/sct','Meningococcal meningitis (disorder)','192644005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1552_230148000','230148000','http://snomed.info/sct','Staphylococcus aureus meningitis (disorder)','230148000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1552_25957002','25957002','http://snomed.info/sct','Aseptic leptospiral meningitis (disorder)','25957002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1552_301086002','301086002','http://snomed.info/sct','Syphilitic meningitis (disorder)','301086002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1552_313437008','313437008','http://snomed.info/sct','Meningococcal meningitis with acute meningococcal septicemia (disorder)','313437008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1552_314130008','314130008','http://snomed.info/sct','Meningococcal meningitis with meningococcal septicemia (disorder)','314130008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1552_31568009','31568009','http://snomed.info/sct','Listeria meningitis (disorder)','31568009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1552_68863007','68863007','http://snomed.info/sct','Acute syphilitic meningitis (disorder)','68863007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1552_721749008','721749008','http://snomed.info/sct','Meningitis caused by methicillin resistant Staphylococcus aureus (disorder)','721749008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1552_151004','151004','http://snomed.info/sct','Gonococcal meningitis (disorder)','151004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1552_186284005','186284005','http://snomed.info/sct','Plague meningitis (disorder)','186284005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1552_192648008','192648008','http://snomed.info/sct','Meningitis due to typhoid fever (disorder)','192648008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1552_192650000','192650000','http://snomed.info/sct','Meningitis caused by Bordetella pertussis (disorder)','192650000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1552_230150008','230150008','http://snomed.info/sct','Meningitis in Lyme disease (disorder)','230150008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1552_409555000','409555000','http://snomed.info/sct','Meningitis caused by Coxiella burnetii (disorder)','409555000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1552_445198003','445198003','http://snomed.info/sct','Meningitis caused by Haemophilus influenzae type b (disorder)','445198003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1552_51169003','51169003','http://snomed.info/sct','Pneumococcal meningitis (disorder)','51169003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1552_5900006','5900006','http://snomed.info/sct','Haemophilus influenzae meningitis (disorder)','5900006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1552_720990007','720990007','http://snomed.info/sct','Meningitis caused by Bacillus anthracis (disorder)','720990007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1552_721746001','721746001','http://snomed.info/sct','Meningitis caused by Streptococcus agalactiae (disorder)','721746001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1552_77645007','77645007','http://snomed.info/sct','Salmonella meningitis (disorder)','77645007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1555_A42.81','A42.81','http://hl7.org/fhir/sid/icd-10-cm','Actinomycotic meningitis','A4281','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1555_B27.82','B27.82','http://hl7.org/fhir/sid/icd-10-cm','Other infectious mononucleosis with meningitis','B2782','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1555_G00','G00','http://hl7.org/fhir/sid/icd-10-cm','Bacterial meningitis, not elsewhere classified','G00','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1555_G00.2','G00.2','http://hl7.org/fhir/sid/icd-10-cm','Streptococcal meningitis','G002','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1555_G00.3','G00.3','http://hl7.org/fhir/sid/icd-10-cm','Staphylococcal meningitis','G003','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1555_G00.8','G00.8','http://hl7.org/fhir/sid/icd-10-cm','Other bacterial meningitis','G008','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1555_G00.9','G00.9','http://hl7.org/fhir/sid/icd-10-cm','Bacterial meningitis, unspecified','G009','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1555_G01','G01','http://hl7.org/fhir/sid/icd-10-cm','Meningitis in bacterial diseases classified elsewhere','G01','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1555_A02.21','A02.21','http://hl7.org/fhir/sid/icd-10-cm','Salmonella meningitis','A0221','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1555_A17.0','A17.0','http://hl7.org/fhir/sid/icd-10-cm','Tuberculous meningitis','A170','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1555_A27.81','A27.81','http://hl7.org/fhir/sid/icd-10-cm','Aseptic meningitis in leptospirosis','A2781','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1555_A32.1','A32.1','http://hl7.org/fhir/sid/icd-10-cm','Listerial meningitis and meningoencephalitis','A321','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1555_A69.21','A69.21','http://hl7.org/fhir/sid/icd-10-cm','Meningitis due to Lyme disease','A6921','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1555_A01.01','A01.01','http://hl7.org/fhir/sid/icd-10-cm','Typhoid meningitis','A0101','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1555_A20.3','A20.3','http://hl7.org/fhir/sid/icd-10-cm','Plague meningitis','A203','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1555_A32.11','A32.11','http://hl7.org/fhir/sid/icd-10-cm','Listerial meningitis','A3211','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1555_A39.0','A39.0','http://hl7.org/fhir/sid/icd-10-cm','Meningococcal meningitis','A390','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1555_A54.81','A54.81','http://hl7.org/fhir/sid/icd-10-cm','Gonococcal meningitis','A5481','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1555_G00.0','G00.0','http://hl7.org/fhir/sid/icd-10-cm','Hemophilus meningitis','G000','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1555_G00.1','G00.1','http://hl7.org/fhir/sid/icd-10-cm','Pneumococcal meningitis','G001','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1554_1163540001','1163540001','http://snomed.info/sct','Meningitis caused by Toxocara (disorder)','1163540001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1554_230153005','230153005','http://snomed.info/sct','Parasitic meningitis (disorder)','230153005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1554_25671008','25671008','http://snomed.info/sct','Eosinophilic meningitis (disorder)','25671008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1554_5566009','5566009','http://snomed.info/sct','Trypanosomiasis with meningitis (disorder)','5566009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1554_721814006','721814006','http://snomed.info/sct','Meningitis caused by Trypanosoma brucei (disorder)','721814006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1554_733173009','733173009','http://snomed.info/sct','Eosinophilic meningitis caused by Angiostrongylus cantonensis (disorder)','733173009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1554_788980005','788980005','http://snomed.info/sct','Meningitis caused by Trypanosoma brucei gambiense (disorder)','788980005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1554_788981009','788981009','http://snomed.info/sct','Meningitis caused by Trypanosoma brucei rhodesiense (disorder)','788981009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1554_1089781000119109','1089781000119109','http://snomed.info/sct','Meningitis due to Chagas disease (disorder)','1089781000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1554_1163542009','1163542009','http://snomed.info/sct','Meningitis caused by Strongyloides stercoralis (disorder)','1163542009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1554_721824003','721824003','http://snomed.info/sct','Meningitis caused by Taenia solium (disorder)','721824003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1670_445780006','445780006','http://snomed.info/sct','Infection caused by carbapenem resistant Acinetobacter (disorder)','445780006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1790_A58','A58','http://hl7.org/fhir/sid/icd-10-cm','Granuloma inguinale','A58','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1430_414488002','414488002','http://snomed.info/sct','Infantile botulism (disorder)','414488002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1430_414820001','414820001','http://snomed.info/sct','Neonatal botulism (disorder)','414820001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1551_109902004','109902004','http://snomed.info/sct','Acute purulent meningitis (disorder)','109902004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1551_276064006','276064006','http://snomed.info/sct','Lymphocytic meningitis (disorder)','276064006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1551_276674008','276674008','http://snomed.info/sct','Neonatal meningitis (disorder)','276674008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1551_312216007','312216007','http://snomed.info/sct','Infective meningitis (disorder)','312216007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1551_409501004','409501004','http://snomed.info/sct','Hemorrhagic meningitis (disorder)','409501004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1551_429741000124103','429741000124103','http://snomed.info/sct','Basilar meningitis (disorder)','429741000124103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1551_7180009','7180009','http://snomed.info/sct','Meningitis (disorder)','7180009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1672_707274007','707274007','http://snomed.info/sct','Infection caused by carbapenem resistant bacteria (disorder)','707274007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1672_445780006','445780006','http://snomed.info/sct','Infection caused by carbapenem resistant Acinetobacter (disorder)','445780006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1672_712830002','712830002','http://snomed.info/sct','Infection due to carbapenem resistant Enterobacteriaceae (disorder)','712830002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1447_10625351000119105','10625351000119105','http://snomed.info/sct','Bronchopneumonia caused by methicillin resistant Staphylococcus aureus (disorder)','10625351000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1447_1163107004','1163107004','http://snomed.info/sct','Colitis caused by methicillin-resistant Staphylococcus aureus (disorder)','1163107004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1447_1176997000','1176997000','http://snomed.info/sct','Skin infection caused by Methicillin resistant Staphylococcus aureus (disorder)','1176997000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1447_1193735000','1193735000','http://snomed.info/sct','Inflammation of small intestine caused by methicillin-resistant Staphylococcus aureus (disorder)','1193735000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1447_1193736004','1193736004','http://snomed.info/sct','Inflammation of intestine caused by methicillin-resistant Staphylococcus aureus (disorder)','1193736004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1447_124691000119101','124691000119101','http://snomed.info/sct','Pneumonia caused by methicillin resistant Staphylococcus aureus (disorder)','124691000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1447_127321000119104','127321000119104','http://snomed.info/sct','Severe sepsis with acute organ dysfunction caused by methicillin resistant Staphylococcus aureus (disorder)','127321000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1447_128381000119104','128381000119104','http://snomed.info/sct','Septic shock co-occurrent with acute organ dysfunction caused by methicillin resistant Staphylococcus aureus (disorder)','128381000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1447_13790001000004101','13790001000004101','http://snomed.info/sct','Bacteremia caused by Methicillin resistant Staphylococcus aureus (finding)','13790001000004101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1447_266096002','266096002','http://snomed.info/sct','Methicillin resistant Staphylococcus aureus infection (disorder)','266096002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1447_423561003','423561003','http://snomed.info/sct','Community-acquired methicillin-resistant Staphylococcus aureus infection (disorder)','423561003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1447_448812000','448812000','http://snomed.info/sct','Sepsis caused by methicillin resistant Staphylococcus aureus (disorder)','448812000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1447_127421000119109','127421000119109','http://snomed.info/sct','Toxic shock syndrome caused by methicillin resistant Staphylococcus aureus infection (disorder)','127421000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1447_308155002','308155002','http://snomed.info/sct','Methicillin-resistant Staphylococcus aureus infection of postoperative wound (disorder)','308155002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1447_721749008','721749008','http://snomed.info/sct','Meningitis caused by methicillin resistant Staphylococcus aureus (disorder)','721749008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_W32.0XXA','W32.0XXA','http://hl7.org/fhir/sid/icd-10-cm','Accidental handgun discharge, initial encounter','W320XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_W32.0XXD','W32.0XXD','http://hl7.org/fhir/sid/icd-10-cm','Accidental handgun discharge, subsequent encounter','W320XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_W32.0XXS','W32.0XXS','http://hl7.org/fhir/sid/icd-10-cm','Accidental handgun discharge, sequela','W320XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_W33.00XA','W33.00XA','http://hl7.org/fhir/sid/icd-10-cm','Accidental discharge of unspecified larger firearm, initial encounter','W3300XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_W33.00XD','W33.00XD','http://hl7.org/fhir/sid/icd-10-cm','Accidental discharge of unspecified larger firearm, subsequent encounter','W3300XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_W33.00XS','W33.00XS','http://hl7.org/fhir/sid/icd-10-cm','Accidental discharge of unspecified larger firearm, sequela','W3300XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_W33.01XA','W33.01XA','http://hl7.org/fhir/sid/icd-10-cm','Accidental discharge of shotgun, initial encounter','W3301XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_W33.01XD','W33.01XD','http://hl7.org/fhir/sid/icd-10-cm','Accidental discharge of shotgun, subsequent encounter','W3301XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_W33.01XS','W33.01XS','http://hl7.org/fhir/sid/icd-10-cm','Accidental discharge of shotgun, sequela','W3301XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_W33.09XA','W33.09XA','http://hl7.org/fhir/sid/icd-10-cm','Accidental discharge of other larger firearm, initial encounter','W3309XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_W33.09XD','W33.09XD','http://hl7.org/fhir/sid/icd-10-cm','Accidental discharge of other larger firearm, subsequent encounter','W3309XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_W33.09XS','W33.09XS','http://hl7.org/fhir/sid/icd-10-cm','Accidental discharge of other larger firearm, sequela','W3309XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_W34.00XA','W34.00XA','http://hl7.org/fhir/sid/icd-10-cm','Accidental discharge from unspecified firearms or gun, initial encounter','W3400XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_W34.00XD','W34.00XD','http://hl7.org/fhir/sid/icd-10-cm','Accidental discharge from unspecified firearms or gun, subsequent encounter','W3400XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_W34.00XS','W34.00XS','http://hl7.org/fhir/sid/icd-10-cm','Accidental discharge from unspecified firearms or gun, sequela','W3400XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_W34.09XA','W34.09XA','http://hl7.org/fhir/sid/icd-10-cm','Accidental discharge from other specified firearms, initial encounter','W3409XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_W34.09XD','W34.09XD','http://hl7.org/fhir/sid/icd-10-cm','Accidental discharge from other specified firearms, subsequent encounter','W3409XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_W34.09XS','W34.09XS','http://hl7.org/fhir/sid/icd-10-cm','Accidental discharge from other specified firearms, sequela','W3409XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_X72.XXXA','X72.XXXA','http://hl7.org/fhir/sid/icd-10-cm','Intentional self-harm by handgun discharge, initial encounter','X72XXXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_X72.XXXD','X72.XXXD','http://hl7.org/fhir/sid/icd-10-cm','Intentional self-harm by handgun discharge, subsequent encounter','X72XXXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_X72.XXXS','X72.XXXS','http://hl7.org/fhir/sid/icd-10-cm','Intentional self-harm by handgun discharge, sequela','X72XXXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_X73.0XXA','X73.0XXA','http://hl7.org/fhir/sid/icd-10-cm','Intentional self-harm by shotgun discharge, initial encounter','X730XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_X73.0XXD','X73.0XXD','http://hl7.org/fhir/sid/icd-10-cm','Intentional self-harm by shotgun discharge, subsequent encounter','X730XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_X73.0XXS','X73.0XXS','http://hl7.org/fhir/sid/icd-10-cm','Intentional self-harm by shotgun discharge, sequela','X730XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_X73.1XXA','X73.1XXA','http://hl7.org/fhir/sid/icd-10-cm','Intentional self-harm by hunting rifle discharge, initial encounter','X731XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_X73.1XXD','X73.1XXD','http://hl7.org/fhir/sid/icd-10-cm','Intentional self-harm by hunting rifle discharge, subsequent encounter','X731XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_X73.1XXS','X73.1XXS','http://hl7.org/fhir/sid/icd-10-cm','Intentional self-harm by hunting rifle discharge, sequela','X731XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_X73.2XXA','X73.2XXA','http://hl7.org/fhir/sid/icd-10-cm','Intentional self-harm by machine gun discharge, initial encounter','X732XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_X73.2XXD','X73.2XXD','http://hl7.org/fhir/sid/icd-10-cm','Intentional self-harm by machine gun discharge, subsequent encounter','X732XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_X73.2XXS','X73.2XXS','http://hl7.org/fhir/sid/icd-10-cm','Intentional self-harm by machine gun discharge, sequela','X732XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_X73.8XXA','X73.8XXA','http://hl7.org/fhir/sid/icd-10-cm','Intentional self-harm by other larger firearm discharge, initial encounter','X738XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_X73.8XXD','X73.8XXD','http://hl7.org/fhir/sid/icd-10-cm','Intentional self-harm by other larger firearm discharge, subsequent encounter','X738XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_X73.8XXS','X73.8XXS','http://hl7.org/fhir/sid/icd-10-cm','Intentional self-harm by other larger firearm discharge, sequela','X738XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_X73.9XXA','X73.9XXA','http://hl7.org/fhir/sid/icd-10-cm','Intentional self-harm by unspecified larger firearm discharge, initial encounter','X739XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_X73.9XXD','X73.9XXD','http://hl7.org/fhir/sid/icd-10-cm','Intentional self-harm by unspecified larger firearm discharge, subsequent encounter','X739XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_X73.9XXS','X73.9XXS','http://hl7.org/fhir/sid/icd-10-cm','Intentional self-harm by unspecified larger firearm discharge, sequela','X739XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_X74.01XA','X74.01XA','http://hl7.org/fhir/sid/icd-10-cm','Intentional self-harm by airgun, initial encounter','X7401XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_X74.01XD','X74.01XD','http://hl7.org/fhir/sid/icd-10-cm','Intentional self-harm by airgun, subsequent encounter','X7401XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_X74.01XS','X74.01XS','http://hl7.org/fhir/sid/icd-10-cm','Intentional self-harm by airgun, sequela','X7401XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_X74.02XA','X74.02XA','http://hl7.org/fhir/sid/icd-10-cm','Intentional self-harm by paintball gun, initial encounter','X7402XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_X74.02XD','X74.02XD','http://hl7.org/fhir/sid/icd-10-cm','Intentional self-harm by paintball gun, subsequent encounter','X7402XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_X74.02XS','X74.02XS','http://hl7.org/fhir/sid/icd-10-cm','Intentional self-harm by paintball gun, sequela','X7402XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_X74.09XA','X74.09XA','http://hl7.org/fhir/sid/icd-10-cm','Intentional self-harm by other gas, air or spring-operated gun, initial encounter','X7409XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_X74.09XD','X74.09XD','http://hl7.org/fhir/sid/icd-10-cm','Intentional self-harm by other gas, air or spring-operated gun, subsequent encounter','X7409XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_X74.09XS','X74.09XS','http://hl7.org/fhir/sid/icd-10-cm','Intentional self-harm by other gas, air or spring-operated gun, sequela','X7409XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_X74.8XXA','X74.8XXA','http://hl7.org/fhir/sid/icd-10-cm','Intentional self-harm by other firearm discharge, initial encounter','X748XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_X74.8XXD','X74.8XXD','http://hl7.org/fhir/sid/icd-10-cm','Intentional self-harm by other firearm discharge, subsequent encounter','X748XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_X74.8XXS','X74.8XXS','http://hl7.org/fhir/sid/icd-10-cm','Intentional self-harm by other firearm discharge, sequela','X748XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_X74.9XXA','X74.9XXA','http://hl7.org/fhir/sid/icd-10-cm','Intentional self-harm by unspecified firearm discharge, initial encounter','X749XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_X74.9XXD','X74.9XXD','http://hl7.org/fhir/sid/icd-10-cm','Intentional self-harm by unspecified firearm discharge, subsequent encounter','X749XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_X74.9XXS','X74.9XXS','http://hl7.org/fhir/sid/icd-10-cm','Intentional self-harm by unspecified firearm discharge, sequela','X749XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_X93.XXXA','X93.XXXA','http://hl7.org/fhir/sid/icd-10-cm','Assault by handgun discharge, initial encounter','X93XXXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_X93.XXXD','X93.XXXD','http://hl7.org/fhir/sid/icd-10-cm','Assault by handgun discharge, subsequent encounter','X93XXXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_X93.XXXS','X93.XXXS','http://hl7.org/fhir/sid/icd-10-cm','Assault by handgun discharge, sequela','X93XXXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_X94.0XXA','X94.0XXA','http://hl7.org/fhir/sid/icd-10-cm','Assault by shotgun, initial encounter','X940XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_X94.0XXD','X94.0XXD','http://hl7.org/fhir/sid/icd-10-cm','Assault by shotgun, subsequent encounter','X940XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_X94.0XXS','X94.0XXS','http://hl7.org/fhir/sid/icd-10-cm','Assault by shotgun, sequela','X940XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_X94.1XXA','X94.1XXA','http://hl7.org/fhir/sid/icd-10-cm','Assault by hunting rifle, initial encounter','X941XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_X94.1XXD','X94.1XXD','http://hl7.org/fhir/sid/icd-10-cm','Assault by hunting rifle, subsequent encounter','X941XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_X94.1XXS','X94.1XXS','http://hl7.org/fhir/sid/icd-10-cm','Assault by hunting rifle, sequela','X941XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_X94.2XXA','X94.2XXA','http://hl7.org/fhir/sid/icd-10-cm','Assault by machine gun, initial encounter','X942XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_X94.2XXD','X94.2XXD','http://hl7.org/fhir/sid/icd-10-cm','Assault by machine gun, subsequent encounter','X942XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_X94.2XXS','X94.2XXS','http://hl7.org/fhir/sid/icd-10-cm','Assault by machine gun, sequela','X942XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_X94.8XXA','X94.8XXA','http://hl7.org/fhir/sid/icd-10-cm','Assault by other larger firearm discharge, initial encounter','X948XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_X94.8XXD','X94.8XXD','http://hl7.org/fhir/sid/icd-10-cm','Assault by other larger firearm discharge, subsequent encounter','X948XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_X94.8XXS','X94.8XXS','http://hl7.org/fhir/sid/icd-10-cm','Assault by other larger firearm discharge, sequela','X948XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_X94.9XXA','X94.9XXA','http://hl7.org/fhir/sid/icd-10-cm','Assault by unspecified larger firearm discharge, initial encounter','X949XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_X94.9XXD','X94.9XXD','http://hl7.org/fhir/sid/icd-10-cm','Assault by unspecified larger firearm discharge, subsequent encounter','X949XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_X94.9XXS','X94.9XXS','http://hl7.org/fhir/sid/icd-10-cm','Assault by unspecified larger firearm discharge, sequela','X949XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_X95.01XA','X95.01XA','http://hl7.org/fhir/sid/icd-10-cm','Assault by airgun discharge, initial encounter','X9501XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_X95.01XD','X95.01XD','http://hl7.org/fhir/sid/icd-10-cm','Assault by airgun discharge, subsequent encounter','X9501XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_X95.01XS','X95.01XS','http://hl7.org/fhir/sid/icd-10-cm','Assault by airgun discharge, sequela','X9501XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_X95.02XA','X95.02XA','http://hl7.org/fhir/sid/icd-10-cm','Assault by paintball gun discharge, initial encounter','X9502XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_X95.02XD','X95.02XD','http://hl7.org/fhir/sid/icd-10-cm','Assault by paintball gun discharge, subsequent encounter','X9502XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_X95.02XS','X95.02XS','http://hl7.org/fhir/sid/icd-10-cm','Assault by paintball gun discharge, sequela','X9502XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_X95.09XA','X95.09XA','http://hl7.org/fhir/sid/icd-10-cm','Assault by other gas, air or spring-operated gun, initial encounter','X9509XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_X95.09XD','X95.09XD','http://hl7.org/fhir/sid/icd-10-cm','Assault by other gas, air or spring-operated gun, subsequent encounter','X9509XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_X95.09XS','X95.09XS','http://hl7.org/fhir/sid/icd-10-cm','Assault by other gas, air or spring-operated gun, sequela','X9509XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_X95.8XXA','X95.8XXA','http://hl7.org/fhir/sid/icd-10-cm','Assault by other firearm discharge, initial encounter','X958XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_X95.8XXD','X95.8XXD','http://hl7.org/fhir/sid/icd-10-cm','Assault by other firearm discharge, subsequent encounter','X958XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_X95.8XXS','X95.8XXS','http://hl7.org/fhir/sid/icd-10-cm','Assault by other firearm discharge, sequela','X958XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_X95.9XXA','X95.9XXA','http://hl7.org/fhir/sid/icd-10-cm','Assault by unspecified firearm discharge, initial encounter','X959XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_X95.9XXD','X95.9XXD','http://hl7.org/fhir/sid/icd-10-cm','Assault by unspecified firearm discharge, subsequent encounter','X959XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_X95.9XXS','X95.9XXS','http://hl7.org/fhir/sid/icd-10-cm','Assault by unspecified firearm discharge, sequela','X959XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_Y22.XXXA','Y22.XXXA','http://hl7.org/fhir/sid/icd-10-cm','Handgun discharge, undetermined intent, initial encounter','Y22XXXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_Y22.XXXD','Y22.XXXD','http://hl7.org/fhir/sid/icd-10-cm','Handgun discharge, undetermined intent, subsequent encounter','Y22XXXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_Y22.XXXS','Y22.XXXS','http://hl7.org/fhir/sid/icd-10-cm','Handgun discharge, undetermined intent, sequela','Y22XXXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_Y23.0XXA','Y23.0XXA','http://hl7.org/fhir/sid/icd-10-cm','Shotgun discharge, undetermined intent, initial encounter','Y230XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_Y23.0XXD','Y23.0XXD','http://hl7.org/fhir/sid/icd-10-cm','Shotgun discharge, undetermined intent, subsequent encounter','Y230XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_Y23.0XXS','Y23.0XXS','http://hl7.org/fhir/sid/icd-10-cm','Shotgun discharge, undetermined intent, sequela','Y230XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_Y23.2XXA','Y23.2XXA','http://hl7.org/fhir/sid/icd-10-cm','Military firearm discharge, undetermined intent, initial encounter','Y232XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_Y23.2XXD','Y23.2XXD','http://hl7.org/fhir/sid/icd-10-cm','Military firearm discharge, undetermined intent, subsequent encounter','Y232XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_Y23.2XXS','Y23.2XXS','http://hl7.org/fhir/sid/icd-10-cm','Military firearm discharge, undetermined intent, sequela','Y232XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_Y23.3XXA','Y23.3XXA','http://hl7.org/fhir/sid/icd-10-cm','Machine gun discharge, undetermined intent, initial encounter','Y233XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_Y23.3XXD','Y23.3XXD','http://hl7.org/fhir/sid/icd-10-cm','Machine gun discharge, undetermined intent, subsequent encounter','Y233XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_Y23.3XXS','Y23.3XXS','http://hl7.org/fhir/sid/icd-10-cm','Machine gun discharge, undetermined intent, sequela','Y233XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_Y23.8XXA','Y23.8XXA','http://hl7.org/fhir/sid/icd-10-cm','Other larger firearm discharge, undetermined intent, initial encounter','Y238XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_Y23.8XXD','Y23.8XXD','http://hl7.org/fhir/sid/icd-10-cm','Other larger firearm discharge, undetermined intent, subsequent encounter','Y238XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_Y23.8XXS','Y23.8XXS','http://hl7.org/fhir/sid/icd-10-cm','Other larger firearm discharge, undetermined intent, sequela','Y238XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_Y23.9XXA','Y23.9XXA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified larger firearm discharge, undetermined intent, initial encounter','Y239XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_Y23.9XXD','Y23.9XXD','http://hl7.org/fhir/sid/icd-10-cm','Unspecified larger firearm discharge, undetermined intent, subsequent encounter','Y239XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_Y23.9XXS','Y23.9XXS','http://hl7.org/fhir/sid/icd-10-cm','Unspecified larger firearm discharge, undetermined intent, sequela','Y239XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_Y24.8XXA','Y24.8XXA','http://hl7.org/fhir/sid/icd-10-cm','Other firearm discharge, undetermined intent, initial encounter','Y248XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_Y24.8XXD','Y24.8XXD','http://hl7.org/fhir/sid/icd-10-cm','Other firearm discharge, undetermined intent, subsequent encounter','Y248XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_Y24.8XXS','Y24.8XXS','http://hl7.org/fhir/sid/icd-10-cm','Other firearm discharge, undetermined intent, sequela','Y248XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_Y24.9XXA','Y24.9XXA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified firearm discharge, undetermined intent, initial encounter','Y249XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_Y24.9XXD','Y24.9XXD','http://hl7.org/fhir/sid/icd-10-cm','Unspecified firearm discharge, undetermined intent, subsequent encounter','Y249XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_Y24.9XXS','Y24.9XXS','http://hl7.org/fhir/sid/icd-10-cm','Unspecified firearm discharge, undetermined intent, sequela','Y249XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_Y38.4X1A','Y38.4X1A','http://hl7.org/fhir/sid/icd-10-cm','Terrorism involving firearms, public safety official injured, initial encounter','Y384X1A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_Y38.4X1D','Y38.4X1D','http://hl7.org/fhir/sid/icd-10-cm','Terrorism involving firearms, public safety official injured, subsequent encounter','Y384X1D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_Y38.4X1S','Y38.4X1S','http://hl7.org/fhir/sid/icd-10-cm','Terrorism involving firearms, public safety official injured, sequela','Y384X1S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_Y38.4X2A','Y38.4X2A','http://hl7.org/fhir/sid/icd-10-cm','Terrorism involving firearms, civilian injured, initial encounter','Y384X2A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_Y38.4X2D','Y38.4X2D','http://hl7.org/fhir/sid/icd-10-cm','Terrorism involving firearms, civilian injured, subsequent encounter','Y384X2D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_Y38.4X2S','Y38.4X2S','http://hl7.org/fhir/sid/icd-10-cm','Terrorism involving firearms, civilian injured, sequela','Y384X2S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_Y38.4X3A','Y38.4X3A','http://hl7.org/fhir/sid/icd-10-cm','Terrorism involving firearms, terrorist injured, initial encounter','Y384X3A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_Y38.4X3D','Y38.4X3D','http://hl7.org/fhir/sid/icd-10-cm','Terrorism involving firearms, terrorist injured, subsequent encounter','Y384X3D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1688_Y38.4X3S','Y38.4X3S','http://hl7.org/fhir/sid/icd-10-cm','Terrorism involving firearms, terrorist injured, sequela','Y384X3S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1207_712830002','712830002','http://snomed.info/sct','Infection due to carbapenem resistant Enterobacteriaceae (disorder)','712830002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1207_34521000087103','34521000087103','http://snomed.info/sct','Infection caused by carbapenemase-producing Enterobacteriaceae (disorder)','34521000087103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1449_10625391000119100','10625391000119100','http://snomed.info/sct','Bronchopneumonia caused by methicillin susceptible Staphylococcus aureus (disorder)','10625391000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1449_10625631000119108','10625631000119108','http://snomed.info/sct','Bronchopneumonia caused by Staphylococcus aureus (disorder)','10625631000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1449_1142039007','1142039007','http://snomed.info/sct','Neonatal necrotizing fasciitis caused by Staphylococcus aureus (disorder)','1142039007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1449_1172638007','1172638007','http://snomed.info/sct','Inflammation of breast in neonate caused by Staphylococcus aureus (disorder)','1172638007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1449_1177033009','1177033009','http://snomed.info/sct','Infection of skin caused by Panton-Valentine leukocidin producing Staphylococcus aureus (disorder)','1177033009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1449_1177075005','1177075005','http://snomed.info/sct','Dacryoadenitis caused by Staphylococcus aureus (disorder)','1177075005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1449_1264225007','1264225007','http://snomed.info/sct','Fetal infection caused by Staphylococcus aureus (disorder)','1264225007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1449_1264226008','1264226008','http://snomed.info/sct','Early neonatal infection caused by Staphylococcus aureus (disorder)','1264226008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1449_127191000119104','127191000119104','http://snomed.info/sct','Septic shock co-occurrent with acute organ dysfunction caused by methicillin susceptible Staphylococcus aureus (disorder)','127191000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1449_127331000119101','127331000119101','http://snomed.info/sct','Sepsis caused by methicillin susceptible Staphylococcus aureus (disorder)','127331000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1449_128711000119106','128711000119106','http://snomed.info/sct','Pneumonia caused by methicillin susceptible Staphylococcus aureus (disorder)','128711000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1449_206378006','206378006','http://snomed.info/sct','Sepsis of newborn caused by Staphylococcus aureus (disorder)','206378006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1449_22241000175107','22241000175107','http://snomed.info/sct','Sepsis due to infection by methicillin-sensitive Staphylococcus aureus (disorder)','22241000175107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1449_282028001','282028001','http://snomed.info/sct','Multiple-resistant Staphylococcus aureus infection (disorder)','282028001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1449_359751003','359751003','http://snomed.info/sct','Impetigo caused by Staphylococcus aureus (disorder)','359751003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1449_406602003','406602003','http://snomed.info/sct','Infection caused by Staphylococcus aureus (disorder)','406602003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1449_426087004','426087004','http://snomed.info/sct','Right-sided Staphylococcus aureus endocarditis (disorder)','426087004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1449_428763004','428763004','http://snomed.info/sct','Bacteremia caused by Staphylococcus aureus (finding)','428763004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1449_428783003','428783003','http://snomed.info/sct','Osteomyelitis caused by Staphylococcus aureus (disorder)','428783003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1449_441658007','441658007','http://snomed.info/sct','Pneumonia caused by Staphylococcus aureus (disorder)','441658007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1449_442073005','442073005','http://snomed.info/sct','Infection caused by methicillin susceptible Staphylococcus aureus (disorder)','442073005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1449_446413008','446413008','http://snomed.info/sct','Infection caused by Panton-Valentine leukocidin producing Staphylococcus aureus (disorder)','446413008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1449_448417001','448417001','http://snomed.info/sct','Sepsis caused by Staphylococcus aureus (disorder)','448417001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1449_721750008','721750008','http://snomed.info/sct','Fetus or newborn infection caused by Staphylococcus aureus (disorder)','721750008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1449_762283002','762283002','http://snomed.info/sct','Ecthyma caused by Staphylococcus aureus (disorder)','762283002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1449_762284008','762284008','http://snomed.info/sct','Cellulitis caused by Staphylococcus aureus (disorder)','762284008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1449_763888005','763888005','http://snomed.info/sct','Necrotizing pneumonia caused by Panton-Valentine leukocidin producing Staphylococcus aureus (disorder)','763888005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1449_127411000119102','127411000119102','http://snomed.info/sct','Toxic shock syndrome caused by methicillin susceptible Staphylococcus aureus (disorder)','127411000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1449_230148000','230148000','http://snomed.info/sct','Staphylococcus aureus meningitis (disorder)','230148000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1449_398384001','398384001','http://snomed.info/sct','Staphylococcus aureus food poisoning (disorder)','398384001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1448_A41.02','A41.02','http://hl7.org/fhir/sid/icd-10-cm','Sepsis due to Methicillin resistant Staphylococcus aureus','A4102','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1448_A49.02','A49.02','http://hl7.org/fhir/sid/icd-10-cm','Methicillin resistant Staphylococcus aureus infection, unspecified site','A4902','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1448_B95.62','B95.62','http://hl7.org/fhir/sid/icd-10-cm','Methicillin resistant Staphylococcus aureus infection as the cause of diseases classified elsewhere','B9562','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1448_J15.212','J15.212','http://hl7.org/fhir/sid/icd-10-cm','Pneumonia due to Methicillin resistant Staphylococcus aureus','J15212','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1684_G93.7','G93.7','http://hl7.org/fhir/sid/icd-10-cm','Reye''s syndrome','G937','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1203_840546002','840546002','http://snomed.info/sct','Exposure to severe acute respiratory syndrome coronavirus 2 (event)','840546002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1203_870577009','870577009','http://snomed.info/sct','At increased risk of exposure to severe acute respiratory syndrome coronavirus 2 (finding)','870577009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1203_897036007','897036007','http://snomed.info/sct','Occupational exposure to severe acute respiratory syndrome coronavirus 2 (event)','897036007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1687_10861651000119101','10861651000119101','http://snomed.info/sct','Gunshot wound of right hip region (disorder)','10861651000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1687_10861691000119106','10861691000119106','http://snomed.info/sct','Gunshot wound of left hip region (disorder)','10861691000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1687_10861891000119105','10861891000119105','http://snomed.info/sct','Gunshot wound of right thigh (disorder)','10861891000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1687_10861931000119102','10861931000119102','http://snomed.info/sct','Gunshot wound of left thigh (disorder)','10861931000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1687_10862091000119107','10862091000119107','http://snomed.info/sct','Gunshot wound of right knee region (disorder)','10862091000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1687_10862131000119109','10862131000119109','http://snomed.info/sct','Gunshot wound of left knee region (disorder)','10862131000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1687_10863881000119106','10863881000119106','http://snomed.info/sct','Gunshot wound of left ankle region (disorder)','10863881000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1687_10863911000119106','10863911000119106','http://snomed.info/sct','Gunshot wound of right ankle region (disorder)','10863911000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1687_10863981000119100','10863981000119100','http://snomed.info/sct','Gunshot wound of left foot (disorder)','10863981000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1687_10864011000119108','10864011000119108','http://snomed.info/sct','Gunshot wound of right foot (disorder)','10864011000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1687_10864081000119102','10864081000119102','http://snomed.info/sct','Gunshot wound of right lower leg (disorder)','10864081000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1687_10864111000119107','10864111000119107','http://snomed.info/sct','Gunshot wound of left lower leg (disorder)','10864111000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1687_10866811000119107','10866811000119107','http://snomed.info/sct','Gunshot wound of pelvis (disorder)','10866811000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1687_10866851000119108','10866851000119108','http://snomed.info/sct','Gunshot wound of lower back (disorder)','10866851000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1687_10878111000119106','10878111000119106','http://snomed.info/sct','Gunshot wound of abdominal wall (disorder)','10878111000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1687_10878191000119102','10878191000119102','http://snomed.info/sct','Gunshot wound of right buttock (disorder)','10878191000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1687_10878231000119106','10878231000119106','http://snomed.info/sct','Gunshot wound of left shoulder region (disorder)','10878231000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1687_10907441000119101','10907441000119101','http://snomed.info/sct','Gunshot wound of right upper arm (disorder)','10907441000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1687_10907481000119106','10907481000119106','http://snomed.info/sct','Gunshot wound of right axillary region (disorder)','10907481000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1687_10907521000119106','10907521000119106','http://snomed.info/sct','Gunshot wound of left upper arm (disorder)','10907521000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1687_10907561000119101','10907561000119101','http://snomed.info/sct','Gunshot wound of left axillary region (disorder)','10907561000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1687_10907721000119103','10907721000119103','http://snomed.info/sct','Gunshot wound of left buttock (disorder)','10907721000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1687_10939701000119109','10939701000119109','http://snomed.info/sct','Gunshot wound of right shoulder region (disorder)','10939701000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1687_10950071000119105','10950071000119105','http://snomed.info/sct','Gunshot wound of right forearm (disorder)','10950071000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1687_10950111000119103','10950111000119103','http://snomed.info/sct','Gunshot wound of left forearm (disorder)','10950111000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1687_10950191000119107','10950191000119107','http://snomed.info/sct','Gunshot wound of right hand (disorder)','10950191000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1687_10950231000119103','10950231000119103','http://snomed.info/sct','Gunshot wound of left hand (disorder)','10950231000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1687_10954491000119108','10954491000119108','http://snomed.info/sct','Gunshot wound of neck (disorder)','10954491000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1687_1287389003','1287389003','http://snomed.info/sct','Gunshot wound of ankle region (disorder)','1287389003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1687_1287390007','1287390007','http://snomed.info/sct','Gunshot wound of buttock (disorder)','1287390007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1687_1287391006','1287391006','http://snomed.info/sct','Gunshot wound of foot (disorder)','1287391006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1687_1287392004','1287392004','http://snomed.info/sct','Gunshot wound of forearm (disorder)','1287392004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1687_1287393009','1287393009','http://snomed.info/sct','Gunshot wound of hand (disorder)','1287393009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1687_1287394003','1287394003','http://snomed.info/sct','Gunshot wound of hip region (disorder)','1287394003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1687_1287395002','1287395002','http://snomed.info/sct','Gunshot wound of knee region (disorder)','1287395002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1687_1287396001','1287396001','http://snomed.info/sct','Gunshot wound of lower leg (disorder)','1287396001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1687_1287397005','1287397005','http://snomed.info/sct','Gunshot wound of shoulder region (disorder)','1287397005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1687_1287398000','1287398000','http://snomed.info/sct','Gunshot wound of axillary region (disorder)','1287398000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1687_1287399008','1287399008','http://snomed.info/sct','Gunshot wound of thigh (disorder)','1287399008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1687_1287400001','1287400001','http://snomed.info/sct','Gunshot wound of upper arm (disorder)','1287400001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1687_16000001000004109','16000001000004109','http://snomed.info/sct','Fracture of thumb due to gunshot wound (disorder)','16000001000004109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1687_219257002','219257002','http://snomed.info/sct','Injury due to legal intervention by firearm (disorder)','219257002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1687_219258007','219258007','http://snomed.info/sct','Injury due to legal intervention by machine gun (disorder)','219258007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1687_219260009','219260009','http://snomed.info/sct','Injury due to legal intervention by rifle bullet (disorder)','219260009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1687_219334005','219334005','http://snomed.info/sct','Injury of unknown intent by firearms and explosives (disorder)','219334005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1687_219335006','219335006','http://snomed.info/sct','Injury of unknown intent by handgun (disorder)','219335006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1687_219336007','219336007','http://snomed.info/sct','Injury of unknown intent by shotgun (disorder)','219336007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1687_219337003','219337003','http://snomed.info/sct','Injury of unknown intent by hunting rifle (disorder)','219337003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1687_219338008','219338008','http://snomed.info/sct','Injury of unknown intent by military firearm (disorder)','219338008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1687_219373005','219373005','http://snomed.info/sct','War injury due to rifle pellets (disorder)','219373005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1687_219376002','219376002','http://snomed.info/sct','War injury due to machine gun bullet (disorder)','219376002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1687_219378001','219378001','http://snomed.info/sct','War injury due to rifle bullet (disorder)','219378001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1687_219379009','219379009','http://snomed.info/sct','War injury due to shotgun bullet (disorder)','219379009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1687_23061000175107','23061000175107','http://snomed.info/sct','Gunshot wound of chest (disorder)','23061000175107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1687_23071000175104','23071000175104','http://snomed.info/sct','Gunshot wound of abdomen region (disorder)','23071000175104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1687_23081000175101','23081000175101','http://snomed.info/sct','Gunshot wound of limb (disorder)','23081000175101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1687_23091000175103','23091000175103','http://snomed.info/sct','Gunshot wound of upper limb (disorder)','23091000175103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1687_23101000175105','23101000175105','http://snomed.info/sct','Gunshot wound of hand (disorder)','23101000175105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1687_23111000175108','23111000175108','http://snomed.info/sct','Gunshot wound of lower limb (disorder)','23111000175108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1687_23121000175104','23121000175104','http://snomed.info/sct','Gunshot wound of foot (disorder)','23121000175104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1687_243002005','243002005','http://snomed.info/sct','Injury due to rifle bullet (disorder)','243002005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1687_243003000','243003000','http://snomed.info/sct','Injury due to high velocity machine gun bullet (disorder)','243003000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1687_243006008','243006008','http://snomed.info/sct','Injury due to shotgun pellets (disorder)','243006008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1687_243009001','243009001','http://snomed.info/sct','Injury due to airgun pellet (disorder)','243009001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1687_262575003','262575003','http://snomed.info/sct','Shotgun wound (disorder)','262575003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1687_277144005','277144005','http://snomed.info/sct','Injury due to low velocity machine gun bullet (disorder)','277144005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1687_283545005','283545005','http://snomed.info/sct','Gunshot wound (disorder)','283545005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1687_424867003','424867003','http://snomed.info/sct','Gunshot exit wound (disorder)','424867003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1687_425055008','425055008','http://snomed.info/sct','Gunshot entry wound (disorder)','425055008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1687_10907361000119107','10907361000119107','http://snomed.info/sct','Gunshot wound of face (disorder)','10907361000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1687_23051000175105','23051000175105','http://snomed.info/sct','Gunshot wound of head (disorder)','23051000175105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1683_74351001','74351001','http://snomed.info/sct','Reye''s syndrome (disorder)','74351001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1682_397575003','397575003','http://snomed.info/sct','Viral hepatitis, type G (disorder)','397575003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2308_399046008','399046008','http://snomed.info/sct','L - transposition of the great vessels (disorder)','399046008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2308_83799000','83799000','http://snomed.info/sct','Corrected transposition of great vessels (disorder)','83799000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2309_204296002','204296002','http://snomed.info/sct','Discordant ventriculoarterial connection (disorder)','204296002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2309_253277003','253277003','http://snomed.info/sct','Discordant atrioventricular connection (disorder)','253277003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1337_1259522005','1259522005','http://snomed.info/sct','Dementia due to variant Creutzfeldt-Jakob disease (disorder)','1259522005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1337_304603007','304603007','http://snomed.info/sct','Variant Creutzfeldt-Jakob disease (disorder)','304603007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1579_865929003','865929003','http://snomed.info/sct','Infection caused by Candida auris (disorder)','865929003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1336_1163119007','1163119007','http://snomed.info/sct','Creutzfeldt Jakob disease following graft of dura (disorder)','1163119007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1336_1259478009','1259478009','http://snomed.info/sct','Dementia due to familial Creutzfeldt-Jakob disease (disorder)','1259478009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1336_1259503001','1259503001','http://snomed.info/sct','Dementia due to iatrogenic Creutzfeldt-Jakob disease (disorder)','1259503001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1336_1259529001','1259529001','http://snomed.info/sct','Dementia due to sporadic Creutzfeldt-Jakob disease (disorder)','1259529001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1336_192818008','192818008','http://snomed.info/sct','Cerebral degeneration due to Creutzfeldt-Jakob disease (disorder)','192818008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1336_429458009','429458009','http://snomed.info/sct','Dementia due to Creutzfeldt Jakob disease (disorder)','429458009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1336_713060000','713060000','http://snomed.info/sct','Sporadic Creutzfeldt-Jakob disease (disorder)','713060000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1336_715662009','715662009','http://snomed.info/sct','Iatrogenic Jakob-Creutzfeldt disease (disorder)','715662009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1336_715807002','715807002','http://snomed.info/sct','Familial Creutzfeldt-Jakob (disorder)','715807002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1336_792004','792004','http://snomed.info/sct','Jakob-Creutzfeldt disease (disorder)','792004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1336_840452004','840452004','http://snomed.info/sct','Classical sporadic Creutzfeldt-Jakob disease (disorder)','840452004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1336_860826006','860826006','http://snomed.info/sct','Creutzfeldt-Jakob Disease caused by human growth hormone (disorder)','860826006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1699_1082451000119102','1082451000119102','http://snomed.info/sct','Encephalitis caused by Actinomyces (disorder)','1082451000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1699_230181004','230181004','http://snomed.info/sct','Bacterial encephalitis (disorder)','230181004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1699_445359003','445359003','http://snomed.info/sct','Bacterial meningoencephalitis (disorder)','445359003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1699_764993001','764993001','http://snomed.info/sct','Encephalitis caused by Mycoplasma pneumoniae (disorder)','764993001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1699_838315004','838315004','http://snomed.info/sct','Encephalomyelitis caused by Burkholderia (disorder)','838315004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1699_840496004','840496004','http://snomed.info/sct','Encephalitis caused by Borrelia (disorder)','840496004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1699_860822008','860822008','http://snomed.info/sct','Encephalitis caused by Nocardia (disorder)','860822008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1699_860841006','860841006','http://snomed.info/sct','Encephalomyelitis caused by bacterium (disorder)','860841006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1699_18071005','18071005','http://snomed.info/sct','Meningococcal encephalitis (disorder)','18071005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1699_230182006','230182006','http://snomed.info/sct','Late syphilitic encephalitis (disorder)','230182006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1699_240393003','240393003','http://snomed.info/sct','Listeria cerebritis (disorder)','240393003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1699_24630008','24630008','http://snomed.info/sct','Listeria meningoencephalitis (disorder)','24630008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1699_26135000','26135000','http://snomed.info/sct','Syphilitic encephalitis (disorder)','26135000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1699_38523005','38523005','http://snomed.info/sct','Syphilitic parkinsonism (disorder)','38523005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1699_409556004','409556004','http://snomed.info/sct','Q fever encephalitis (disorder)','409556004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1699_419868009','419868009','http://snomed.info/sct','Encephalitis caused by rickettsia (disorder)','419868009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1699_840440006','840440006','http://snomed.info/sct','Encephalitis caused by Leptospira (disorder)','840440006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1699_860805006','860805006','http://snomed.info/sct','Encephalomyelitis caused by Neisseria meningitidis (disorder)','860805006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1699_860842004','860842004','http://snomed.info/sct','Encephalomyelitis caused by Coxiella burnetii (disorder)','860842004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1699_91483004','91483004','http://snomed.info/sct','Tuberculous encephalitis (disorder)','91483004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1699_32735002','32735002','http://snomed.info/sct','Congenital syphilitic encephalitis (disorder)','32735002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1699_31112008','31112008','http://snomed.info/sct','Tuberculous meningoencephalitis (disorder)','31112008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2307_204300001','204300001','http://snomed.info/sct','Incomplete great vessel transposition (disorder)','204300001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2307_26146002','26146002','http://snomed.info/sct','Complete transposition of great vessels (disorder)','26146002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2307_399216004','399216004','http://snomed.info/sct','D - transposition of the great vessels (disorder)','399216004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1339_A81.01','A81.01','http://hl7.org/fhir/sid/icd-10-cm','Variant Creutzfeldt-Jakob disease','A8101','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1338_A81.00','A81.00','http://hl7.org/fhir/sid/icd-10-cm','Creutzfeldt-Jakob disease, unspecified','A8100','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1338_A81.09','A81.09','http://hl7.org/fhir/sid/icd-10-cm','Other Creutzfeldt-Jakob disease','A8109','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1696_M35.81','M35.81','http://hl7.org/fhir/sid/icd-10-cm','Multisystem inflammatory syndrome','M3581','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1574_A40.1','A40.1','http://hl7.org/fhir/sid/icd-10-cm','Sepsis due to streptococcus, group B','A401','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1574_J15.3','J15.3','http://hl7.org/fhir/sid/icd-10-cm','Pneumonia due to streptococcus, group B','J153','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1574_P36.0','P36.0','http://hl7.org/fhir/sid/icd-10-cm','Sepsis of newborn due to streptococcus, group B','P360','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1695_1119306006','1119306006','http://snomed.info/sct','Multisystem inflammatory syndrome in adults (disorder)','1119306006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1695_895448002','895448002','http://snomed.info/sct','Multisystem inflammatory syndrome in children (disorder)','895448002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1697_219125007','219125007','http://snomed.info/sct','Suicide and selfinflicted poisoning by gases in domestic use (disorder)','219125007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1697_219126008','219126008','http://snomed.info/sct','Suicide and selfinflicted poisoning by gas distributed by pipeline (disorder)','219126008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1697_219127004','219127004','http://snomed.info/sct','Suicide and selfinflicted poisoning by liquefied petroleum gas distributed in mobile containers (disorder)','219127004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1697_23546003','23546003','http://snomed.info/sct','Suicide while incarcerated (event)','23546003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1697_274228002','274228002','http://snomed.info/sct','Drug overdose - suicide (event)','274228002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1697_287188006','287188006','http://snomed.info/sct','Suicide - domestic gas (event)','287188006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1697_287189003','287189003','http://snomed.info/sct','Suicide - car exhaust (event)','287189003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1697_287190007','287190007','http://snomed.info/sct','Suicide - hanging (event)','287190007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1697_287191006','287191006','http://snomed.info/sct','Suicide - suffocation (event)','287191006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1697_287193009','287193009','http://snomed.info/sct','Suicide - firearms (event)','287193009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1697_287194003','287194003','http://snomed.info/sct','Suicide - cut/stab (event)','287194003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1697_287195002','287195002','http://snomed.info/sct','Suicide - jumping from a high place (event)','287195002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1697_44301001','44301001','http://snomed.info/sct','Suicide (event)','44301001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1697_51709005','51709005','http://snomed.info/sct','Assisted suicide (event)','51709005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1697_78070009','78070009','http://snomed.info/sct','Suicide by multiple means (event)','78070009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1697_891003','891003','http://snomed.info/sct','Suicide by self-administered drug (event)','891003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1697_287192004','287192004','http://snomed.info/sct','Suicide - drowning (event)','287192004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1450_A41.01','A41.01','http://hl7.org/fhir/sid/icd-10-cm','Sepsis due to Methicillin susceptible Staphylococcus aureus','A4101','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1450_A49.01','A49.01','http://hl7.org/fhir/sid/icd-10-cm','Methicillin susceptible Staphylococcus aureus infection, unspecified site','A4901','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1450_B95.61','B95.61','http://hl7.org/fhir/sid/icd-10-cm','Methicillin susceptible Staphylococcus aureus infection as the cause of diseases classified elsewhere','B9561','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1450_J15.211','J15.211','http://hl7.org/fhir/sid/icd-10-cm','Pneumonia due to Methicillin susceptible Staphylococcus aureus','J15211','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1450_P36.2','P36.2','http://hl7.org/fhir/sid/icd-10-cm','Sepsis of newborn due to Staphylococcus aureus','P362','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1571_10625151000119107','10625151000119107','http://snomed.info/sct','Bronchopneumonia caused by Group A Streptococcus (disorder)','10625151000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1571_1092531000119106','1092531000119106','http://snomed.info/sct','Septic shock co-occurrent with acute organ dysfunction due to Group A streptococcus (disorder)','1092531000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1571_1092631000119105','1092631000119105','http://snomed.info/sct','Severe sepsis with acute organ dysfunction due to Group A streptococcus (disorder)','1092631000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1571_206284006','206284006','http://snomed.info/sct','Congenital group A hemolytic streptococcal pneumonia (disorder)','206284006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1571_406611003','406611003','http://snomed.info/sct','Invasive beta-hemolytic streptococcal disease (disorder)','406611003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1571_406614006','406614006','http://snomed.info/sct','Invasive Group A beta-hemolytic streptococcal disease (disorder)','406614006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1571_441942006','441942006','http://snomed.info/sct','Pneumonia caused by Streptococcus pyogenes (disorder)','441942006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1571_449504009','449504009','http://snomed.info/sct','Sepsis caused by Streptococcus pyogenes (disorder)','449504009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1571_449900006','449900006','http://snomed.info/sct','Necrotizing fasciitis caused by Streptococcus pyogenes (disorder)','449900006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1571_735637004','735637004','http://snomed.info/sct','Sepsis of neonate caused by Streptococcus pyogenes (disorder)','735637004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1571_735638009','735638009','http://snomed.info/sct','Sepsis of fetus caused by Streptococcus pyogenes (disorder)','735638009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1571_762693003','762693003','http://snomed.info/sct','Ecthyma caused by Streptococcus pyogenes (disorder)','762693003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1571_406610002','406610002','http://snomed.info/sct','Invasive streptococcal disease (disorder)','406610002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1331_1119303003','1119303003','http://snomed.info/sct','Post-acute COVID-19 (disorder)','1119303003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1331_1119304009','1119304009','http://snomed.info/sct','Chronic post-COVID-19 syndrome (disorder)','1119304009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1573_10625191000119102','10625191000119102','http://snomed.info/sct','Bronchopneumonia caused by Group B Streptococcus (disorder)','10625191000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1573_1092541000119102','1092541000119102','http://snomed.info/sct','Septic shock co-occurrent with acute organ dysfunction due to Group B streptococcus (disorder)','1092541000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1573_1092641000119101','1092641000119101','http://snomed.info/sct','Severe sepsis with acute organ dysfunction due to Group B streptococcus (disorder)','1092641000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1573_127091000119100','127091000119100','http://snomed.info/sct','Sepsis of newborn caused by group B Streptococcus (disorder)','127091000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1573_195886008','195886008','http://snomed.info/sct','Group B streptococcal pneumonia (disorder)','195886008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1573_206285007','206285007','http://snomed.info/sct','Congenital group B hemolytic streptococcal pneumonia (disorder)','206285007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1573_406612005','406612005','http://snomed.info/sct','Invasive Group B beta-hemolytic streptococcal disease (disorder)','406612005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1573_435181000124108','435181000124108','http://snomed.info/sct','Sepsis of newborn due to Streptococcus agalactiae (disorder)','435181000124108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1573_448419003','448419003','http://snomed.info/sct','Sepsis caused by Streptococcus agalactiae (disorder)','448419003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1573_713865006','713865006','http://snomed.info/sct','Perinatal sepsis caused by Streptococcus agalactiae (disorder)','713865006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1573_721746001','721746001','http://snomed.info/sct','Meningitis caused by Streptococcus agalactiae (disorder)','721746001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1573_406610002','406610002','http://snomed.info/sct','Invasive streptococcal disease (disorder)','406610002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1572_A40.0','A40.0','http://hl7.org/fhir/sid/icd-10-cm','Sepsis due to streptococcus, group A','A400','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1903_B08.09','B08.09','http://hl7.org/fhir/sid/icd-10-cm','Other orthopoxvirus infections','B0809','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1904_186506009','186506009','http://snomed.info/sct','Cowpox and paravaccinia (disorder)','186506009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1904_70090004','70090004','http://snomed.info/sct','Cowpox (disorder)','70090004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1902_414015000','414015000','http://snomed.info/sct','Disease caused by Orthopoxvirus (disorder)','414015000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1905_B08.010','B08.010','http://hl7.org/fhir/sid/icd-10-cm','Cowpox','B08010','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.640_1163495009','1163495009','http://snomed.info/sct','Dacryoadenitis caused by Neisseria gonorrhoeae (disorder)','1163495009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.640_231858009','231858009','http://snomed.info/sct','Gonococcal conjunctivitis (disorder)','231858009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.640_719755001','719755001','http://snomed.info/sct','Conjunctivitis of adulthood caused by Neisseria gonorrhoeae (disorder)','719755001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.640_28438004','28438004','http://snomed.info/sct','Gonococcal conjunctivitis neonatorum (disorder)','28438004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.640_721281003','721281003','http://snomed.info/sct','Neonatal conjunctivitis and dacrocystitis caused by Neisseria gonorrhoeae (disorder)','721281003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.640_35876006','35876006','http://snomed.info/sct','Gonococcal infection of eye (disorder)','35876006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.641_A54','A54','http://hl7.org/fhir/sid/icd-10-cm','Gonococcal infection','A54','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.641_A54.0','A54.0','http://hl7.org/fhir/sid/icd-10-cm','Gonococcal infection of lower genitourinary tract without periurethral or accessory gland abscess','A540','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.641_A54.09','A54.09','http://hl7.org/fhir/sid/icd-10-cm','Other gonococcal infection of lower genitourinary tract','A5409','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.641_A54.2','A54.2','http://hl7.org/fhir/sid/icd-10-cm','Gonococcal pelviperitonitis and other gonococcal genitourinary infection','A542','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.641_A54.21','A54.21','http://hl7.org/fhir/sid/icd-10-cm','Gonococcal infection of kidney and ureter','A5421','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.641_A54.22','A54.22','http://hl7.org/fhir/sid/icd-10-cm','Gonococcal prostatitis','A5422','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.641_A54.23','A54.23','http://hl7.org/fhir/sid/icd-10-cm','Gonococcal infection of other male genital organs','A5423','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.641_A54.29','A54.29','http://hl7.org/fhir/sid/icd-10-cm','Other gonococcal genitourinary infections','A5429','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.641_A54.3','A54.3','http://hl7.org/fhir/sid/icd-10-cm','Gonococcal infection of eye','A543','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.641_A54.32','A54.32','http://hl7.org/fhir/sid/icd-10-cm','Gonococcal iridocyclitis','A5432','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.641_A54.33','A54.33','http://hl7.org/fhir/sid/icd-10-cm','Gonococcal keratitis','A5433','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.641_A54.39','A54.39','http://hl7.org/fhir/sid/icd-10-cm','Other gonococcal eye infection','A5439','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.641_A54.4','A54.4','http://hl7.org/fhir/sid/icd-10-cm','Gonococcal infection of musculoskeletal system','A544','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.641_A54.40','A54.40','http://hl7.org/fhir/sid/icd-10-cm','Gonococcal infection of musculoskeletal system, unspecified','A5440','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.641_A54.41','A54.41','http://hl7.org/fhir/sid/icd-10-cm','Gonococcal spondylopathy','A5441','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.641_A54.42','A54.42','http://hl7.org/fhir/sid/icd-10-cm','Gonococcal arthritis','A5442','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.641_A54.43','A54.43','http://hl7.org/fhir/sid/icd-10-cm','Gonococcal osteomyelitis','A5443','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.641_A54.49','A54.49','http://hl7.org/fhir/sid/icd-10-cm','Gonococcal infection of other musculoskeletal tissue','A5449','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.641_A54.5','A54.5','http://hl7.org/fhir/sid/icd-10-cm','Gonococcal pharyngitis','A545','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.641_A54.6','A54.6','http://hl7.org/fhir/sid/icd-10-cm','Gonococcal infection of anus and rectum','A546','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.641_A54.8','A54.8','http://hl7.org/fhir/sid/icd-10-cm','Other gonococcal infections','A548','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.641_A54.82','A54.82','http://hl7.org/fhir/sid/icd-10-cm','Gonococcal brain abscess','A5482','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.641_A54.83','A54.83','http://hl7.org/fhir/sid/icd-10-cm','Gonococcal heart infection','A5483','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.641_A54.84','A54.84','http://hl7.org/fhir/sid/icd-10-cm','Gonococcal pneumonia','A5484','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.641_A54.85','A54.85','http://hl7.org/fhir/sid/icd-10-cm','Gonococcal peritonitis','A5485','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.641_A54.86','A54.86','http://hl7.org/fhir/sid/icd-10-cm','Gonococcal sepsis','A5486','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.641_A54.89','A54.89','http://hl7.org/fhir/sid/icd-10-cm','Other gonococcal infections','A5489','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.641_A54.9','A54.9','http://hl7.org/fhir/sid/icd-10-cm','Gonococcal infection, unspecified','A549','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.641_O98.2','O98.2','http://hl7.org/fhir/sid/icd-10-cm','Gonorrhea complicating pregnancy, childbirth and the puerperium','O982','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.641_O98.21','O98.21','http://hl7.org/fhir/sid/icd-10-cm','Gonorrhea complicating pregnancy','O9821','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.641_O98.211','O98.211','http://hl7.org/fhir/sid/icd-10-cm','Gonorrhea complicating pregnancy, first trimester','O98211','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.641_O98.212','O98.212','http://hl7.org/fhir/sid/icd-10-cm','Gonorrhea complicating pregnancy, second trimester','O98212','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.641_O98.213','O98.213','http://hl7.org/fhir/sid/icd-10-cm','Gonorrhea complicating pregnancy, third trimester','O98213','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.641_O98.219','O98.219','http://hl7.org/fhir/sid/icd-10-cm','Gonorrhea complicating pregnancy, unspecified trimester','O98219','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.641_O98.22','O98.22','http://hl7.org/fhir/sid/icd-10-cm','Gonorrhea complicating childbirth','O9822','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.641_O98.23','O98.23','http://hl7.org/fhir/sid/icd-10-cm','Gonorrhea complicating the puerperium','O9823','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.641_A54.24','A54.24','http://hl7.org/fhir/sid/icd-10-cm','Gonococcal female pelvic inflammatory disease','A5424','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.641_A54.30','A54.30','http://hl7.org/fhir/sid/icd-10-cm','Gonococcal infection of eye, unspecified','A5430','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.641_A54.81','A54.81','http://hl7.org/fhir/sid/icd-10-cm','Gonococcal meningitis','A5481','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.641_A54.00','A54.00','http://hl7.org/fhir/sid/icd-10-cm','Gonococcal infection of lower genitourinary tract, unspecified','A5400','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.641_A54.02','A54.02','http://hl7.org/fhir/sid/icd-10-cm','Gonococcal vulvovaginitis, unspecified','A5402','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.641_A54.1','A54.1','http://hl7.org/fhir/sid/icd-10-cm','Gonococcal infection of lower genitourinary tract with periurethral and accessory gland abscess','A541','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.642_A54.31','A54.31','http://hl7.org/fhir/sid/icd-10-cm','Gonococcal conjunctivitis','A5431','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.642_A54.30','A54.30','http://hl7.org/fhir/sid/icd-10-cm','Gonococcal infection of eye, unspecified','A5430','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.765_10491005','10491005','http://snomed.info/sct','Meningitis caused by Human alphaherpesvirus 3 (disorder)','10491005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.765_1089791000119107','1089791000119107','http://snomed.info/sct','Meningitis due to infectious mononucleosis (disorder)','1089791000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.765_111850006','111850006','http://snomed.info/sct','Meningitis caused by Adenovirus (disorder)','111850006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.765_1163470008','1163470008','http://snomed.info/sct','Meningitis caused by genus Arenavirus (disorder)','1163470008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.765_1179379002','1179379002','http://snomed.info/sct','Meningitis caused by Human alphaherpesvirus 1 (disorder)','1179379002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.765_1179380004','1179380004','http://snomed.info/sct','Meningitis caused by Human alphaherpesvirus 2 (disorder)','1179380004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.765_192679007','192679007','http://snomed.info/sct','Non-pyogenic meningitis (disorder)','192679007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.765_230155003','230155003','http://snomed.info/sct','Non-infective meningitis (disorder)','230155003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.765_23291008','23291008','http://snomed.info/sct','Meningitis caused by Human herpes simplex virus (disorder)','23291008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.765_301770000','301770000','http://snomed.info/sct','Aseptic meningitis (disorder)','301770000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.765_58170007','58170007','http://snomed.info/sct','Viral meningitis (disorder)','58170007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.765_721243008','721243008','http://snomed.info/sct','Meningitis caused by Paramyxovirus (disorder)','721243008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.765_721769003','721769003','http://snomed.info/sct','Meningitis caused by Epstein-Barr virus (disorder)','721769003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.765_722719009','722719009','http://snomed.info/sct','Non-infective meningitis due to inflammatory disorder (disorder)','722719009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.765_1085361000119104','1085361000119104','http://snomed.info/sct','Meningitis due to Cytomegaloviral Mononucleosis (disorder)','1085361000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.765_111878007','111878007','http://snomed.info/sct','Meningitis caused by coxsackie virus (disorder)','111878007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.765_1163468004','1163468004','http://snomed.info/sct','Meningitis caused by Lassa virus (disorder)','1163468004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.765_1163469007','1163469007','http://snomed.info/sct','Meningitis caused by Machupo virus (disorder)','1163469007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.765_1163471007','1163471007','http://snomed.info/sct','Meningitis caused by Junin virus (disorder)','1163471007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.765_186561002','186561002','http://snomed.info/sct','Meningitis caused by measles morbillivirus (disorder)','186561002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.765_192667007','192667007','http://snomed.info/sct','Meningitis caused by echovirus (disorder)','192667007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.765_230142004','230142004','http://snomed.info/sct','Meningitis caused by coxsackievirus A virus (disorder)','230142004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.765_230143009','230143009','http://snomed.info/sct','Meningitis caused by coxsackievirus B virus (disorder)','230143009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.765_230146001','230146001','http://snomed.info/sct','Post measles meningitis (disorder)','230146001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.765_28192008','28192008','http://snomed.info/sct','Meningitis caused by Enterovirus (disorder)','28192008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.765_404234000','404234000','http://snomed.info/sct','Meningitis caused by Saint Louis encephalitis virus (disorder)','404234000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.765_721770002','721770002','http://snomed.info/sct','Meningitis caused by Human cytomegalovirus 5 (disorder)','721770002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.765_722547006','722547006','http://snomed.info/sct','Meningitis caused by Human enterovirus 71 (disorder)','722547006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.765_722548001','722548001','http://snomed.info/sct','Meningitis caused by Human enterovirus 70 (disorder)','722548001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.765_1092351000119107','1092351000119107','http://snomed.info/sct','Meningitis caused by Rubella virus (disorder)','1092351000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.765_131411000119107','131411000119107','http://snomed.info/sct','Meningitis caused by arbovirus (disorder)','131411000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.765_315019000','315019000','http://snomed.info/sct','Aseptic meningitis due to human immunodeficiency virus infection (disorder)','315019000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.765_404233006','404233006','http://snomed.info/sct','Meningitis caused by West Nile virus (disorder)','404233006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.765_44201003','44201003','http://snomed.info/sct','Meningitis caused by mumps virus (disorder)','44201003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.765_721765009','721765009','http://snomed.info/sct','Meningitis caused by Human poliovirus (disorder)','721765009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.765_721781004','721781004','http://snomed.info/sct','Infection caused by Lymphocytic choriomeningitis virus (disorder)','721781004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.765_404238002','404238002','http://snomed.info/sct','Meningitis caused by Jamestown Canyon virus (disorder)','404238002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.765_404241006','404241006','http://snomed.info/sct','Meningitis caused by snowshoe hare virus (disorder)','404241006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.765_404239005','404239005','http://snomed.info/sct','Meningitis caused by California Orthobunyavirus (disorder)','404239005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.765_404240007','404240007','http://snomed.info/sct','Meningitis caused by La Crosse virus (disorder)','404240007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.765_404243009','404243009','http://snomed.info/sct','Meningitis caused by Keystone virus (disorder)','404243009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.765_397961002','397961002','http://snomed.info/sct','Encephalomyelitis caused by lymphocytic choriomeningitis virus (disorder)','397961002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_110269000','110269000','http://snomed.info/sct','Late effects of viral encephalitis (disorder)','110269000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_111936002','111936002','http://snomed.info/sct','Cerebral sarcoidosis (disorder)','111936002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_1169361002','1169361002','http://snomed.info/sct','Limbic encephalitis with neurexin-3 antibodies (disorder)','1169361002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_1259087007','1259087007','http://snomed.info/sct','Autoimmune encephalitis caused by N-methyl-D-aspartate receptor antibody (disorder)','1259087007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_128211000119102','128211000119102','http://snomed.info/sct','Meningoencephalitis due to free-living ameba (disorder)','128211000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_182961000119101','182961000119101','http://snomed.info/sct','Acute disseminated encephalomyelitis following infectious disease (disorder)','182961000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_192704009','192704009','http://snomed.info/sct','Post-immunization encephalitis (disorder)','192704009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_192708007','192708007','http://snomed.info/sct','Post cholera vaccination encephalitis (disorder)','192708007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_192727001','192727001','http://snomed.info/sct','Post-infectious encephalitis (disorder)','192727001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_192730008','192730008','http://snomed.info/sct','Toxic encephalitis (disorder)','192730008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_192926004','192926004','http://snomed.info/sct','Multiple sclerosis of the brainstem (disorder)','192926004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_194070006','194070006','http://snomed.info/sct','Inflammatory disorder of visual cortex (disorder)','194070006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_230184007','230184007','http://snomed.info/sct','Parasitic encephalitis (disorder)','230184007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_230188005','230188005','http://snomed.info/sct','Post-influenza encephalitis (disorder)','230188005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_230189002','230189002','http://snomed.info/sct','Focal encephalitis (disorder)','230189002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_230190006','230190006','http://snomed.info/sct','Brainstem encephalitis (disorder)','230190006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_230191005','230191005','http://snomed.info/sct','Rasmussen syndrome (disorder)','230191005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_230192003','230192003','http://snomed.info/sct','Limbic encephalitis (disorder)','230192003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_230199007','230199007','http://snomed.info/sct','Post-infectious encephalomyelitis (disorder)','230199007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_230522004','230522004','http://snomed.info/sct','Inflammatory disorder of optic radiation (disorder)','230522004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_237705001','237705001','http://snomed.info/sct','Hypophysitis (disorder)','237705001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_237706000','237706000','http://snomed.info/sct','Autoimmune hypophysitis (disorder)','237706000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_237707009','237707009','http://snomed.info/sct','Lymphocytic hypophysitis of pregnancy (disorder)','237707009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_237708004','237708004','http://snomed.info/sct','Granulomatous giant-cell hypophysitis (disorder)','237708004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_267576008','267576008','http://snomed.info/sct','Encephalitis, myelitis and encephalomyelitis (disorder)','267576008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_2701000124105','2701000124105','http://snomed.info/sct','Recurrent acute disseminated encephalomyelitis (disorder)','2701000124105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_27040004','27040004','http://snomed.info/sct','Experimental allergic encephalomyelitis (disorder)','27040004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_276817007','276817007','http://snomed.info/sct','Lymphocytic meningoencephalitis (disorder)','276817007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_29197009','29197009','http://snomed.info/sct','Meningoencephalomyelitis (disorder)','29197009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_312215006','312215006','http://snomed.info/sct','Infective encephalitis (disorder)','312215006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_31367003','31367003','http://snomed.info/sct','Postvaccinal encephalomyelitis (disorder)','31367003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_406573001','406573001','http://snomed.info/sct','Primary encephalitis (disorder)','406573001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_415821008','415821008','http://snomed.info/sct','Viral encephalitis transmitted by tick (navigational concept)','415821008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_418480000','418480000','http://snomed.info/sct','Eosinophilic meningoencephalitis caused by Angiostrongylus cantonensis (disorder)','418480000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_424761009','424761009','http://snomed.info/sct','Paraneoplastic encephalomyelitis (disorder)','424761009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_424911007','424911007','http://snomed.info/sct','Paraneoplastic encephalitis (disorder)','424911007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_427086003','427086003','http://snomed.info/sct','Bickerstaff''s brainstem encephalitis (disorder)','427086003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_432451000124103','432451000124103','http://snomed.info/sct','Multiphasic acute disseminated encephalomyelitis (disorder)','432451000124103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_435341000124104','435341000124104','http://snomed.info/sct','Rasmussen syndrome, refractory (disorder)','435341000124104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_443153007','443153007','http://snomed.info/sct','Toxic encephalomyelitis (disorder)','443153007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_445014002','445014002','http://snomed.info/sct','Paraneoplastic limbic encephalitis (disorder)','445014002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_45170000','45170000','http://snomed.info/sct','Encephalitis (disorder)','45170000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_452281000124106','452281000124106','http://snomed.info/sct','Autoimmune encephalitis caused by N-methyl D-aspartate receptor antibody (disorder)','452281000124106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_50776006','50776006','http://snomed.info/sct','Allergic encephalomyelitis (disorder)','50776006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_55489003','55489003','http://snomed.info/sct','Eosinophilic meningoencephalitis (disorder)','55489003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_58766009','58766009','http://snomed.info/sct','Granulomatous meningoencephalomyelitis (disorder)','58766009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_61701006','61701006','http://snomed.info/sct','Lymphocytic hypopituitarism (disorder)','61701006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_62950007','62950007','http://snomed.info/sct','Encephalomyelitis (disorder)','62950007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_698726009','698726009','http://snomed.info/sct','Dementia associated with viral encephalitis (disorder)','698726009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_70884002','70884002','http://snomed.info/sct','Allergic encephalitis (disorder)','70884002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_7125002','7125002','http://snomed.info/sct','Meningoencephalitis (disorder)','7125002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_716684004','716684004','http://snomed.info/sct','Limbic encephalitis with N-methyl-D-aspartate receptor antibodies (disorder)','716684004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_721249007','721249007','http://snomed.info/sct','Infection causing encephalomyelitis (disorder)','721249007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_725413002','725413002','http://snomed.info/sct','Febrile infection related epilepsy syndrome (disorder)','725413002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_72986009','72986009','http://snomed.info/sct','Acute hemorrhagic leukoencephalitis (disorder)','72986009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_75143000','75143000','http://snomed.info/sct','Toxic encephalitis caused by thallium (disorder)','75143000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_763793004','763793004','http://snomed.info/sct','Limbic encephalitis with contactin-associated protein-like 2 antibodies (disorder)','763793004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_763794005','763794005','http://snomed.info/sct','Limbic encephalitis with leucine-rich glioma-inactivated 1 antibodies (disorder)','763794005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_764998005','764998005','http://snomed.info/sct','Non-herpetic acute limbic encephalitis (disorder)','764998005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_773275000','773275000','http://snomed.info/sct','Acute limbic encephalitis following transplant (disorder)','773275000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_773395008','773395008','http://snomed.info/sct','Limbic encephalitis with dipeptidyl-peptidase 6 antibodies (disorder)','773395008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_773688007','773688007','http://snomed.info/sct','Chronic lymphocytic inflammation with pontine perivascular enhancement responsive to steroids (disorder)','773688007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_783016009','783016009','http://snomed.info/sct','Panhypophysitis (disorder)','783016009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_783158009','783158009','http://snomed.info/sct','Infundibulo neurohypophysitis (disorder)','783158009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_783243008','783243008','http://snomed.info/sct','Adenohypophysitis (disorder)','783243008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_822021000000103','822021000000103','http://snomed.info/sct','Acute encephalitis (disorder)','822021000000103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_83942000','83942000','http://snomed.info/sct','Acute disseminated encephalomyelitis (disorder)','83942000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_95643007','95643007','http://snomed.info/sct','Autoimmune encephalitis (disorder)','95643007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_95644001','95644001','http://snomed.info/sct','Systemic lupus erythematosus encephalitis (disorder)','95644001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_186509002','186509002','http://snomed.info/sct','Postvaricella encephalitis (disorder)','186509002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_192713006','192713006','http://snomed.info/sct','Post smallpox vaccination encephalitis (disorder)','192713006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_230185008','230185008','http://snomed.info/sct','Amebic encephalitis (disorder)','230185008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_230186009','230186009','http://snomed.info/sct','Primary amebic encephalitis (disorder)','230186009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_416154000','416154000','http://snomed.info/sct','Measles inclusion body encephalitis (disorder)','416154000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_418455000','418455000','http://snomed.info/sct','Encephalitis caused by protozoa (disorder)','418455000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_71460009','71460009','http://snomed.info/sct','Trypanosomiasis with encephalitis (disorder)','71460009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_721815007','721815007','http://snomed.info/sct','Encephalitis caused by Trypanosoma brucei (disorder)','721815007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_721818009','721818009','http://snomed.info/sct','Encephalitis caused by Schistosoma (disorder)','721818009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_721819001','721819001','http://snomed.info/sct','Encephalitis caused by Schistosoma haematobium (disorder)','721819001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_721820007','721820007','http://snomed.info/sct','Encephalitis caused by Schistosoma mansoni (disorder)','721820007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_721821006','721821006','http://snomed.info/sct','Encephalitis caused by Schistosoma japonicum (disorder)','721821006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_721826001','721826001','http://snomed.info/sct','Encephalitis caused by Coenurus cerebralis (disorder)','721826001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_860865009','860865009','http://snomed.info/sct','Encephalitis caused by Trypanosoma brucei gambiense (disorder)','860865009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_860866005','860866005','http://snomed.info/sct','Encephalitis caused by Trypanosoma brucei rhodesiense (disorder)','860866005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_1082451000119102','1082451000119102','http://snomed.info/sct','Encephalitis caused by Actinomyces (disorder)','1082451000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_1089811000119106','1089811000119106','http://snomed.info/sct','Meningoencephalitis caused by Acanthamoeba (disorder)','1089811000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_1089821000119104','1089821000119104','http://snomed.info/sct','Meningoencephalitis due to Chagas disease (disorder)','1089821000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_111851005','111851005','http://snomed.info/sct','Subacute adenoviral encephalitis (disorder)','111851005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_111897007','111897007','http://snomed.info/sct','Acute necrotizing encephalitis (disorder)','111897007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_1144966008','1144966008','http://snomed.info/sct','Encephalitis caused by Herpes simplex virus 1 (disorder)','1144966008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_1144968009','1144968009','http://snomed.info/sct','Encephalitis caused by Herpes simplex virus 2 (disorder)','1144968009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_1163056000','1163056000','http://snomed.info/sct','Encephalitis caused by Mokola virus (disorder)','1163056000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_1163060002','1163060002','http://snomed.info/sct','Encephalitis caused by Lagos bat virus (disorder)','1163060002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_1163061003','1163061003','http://snomed.info/sct','Encephalitis caused by human T-lymphotropic virus type 1 (disorder)','1163061003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_1163062005','1163062005','http://snomed.info/sct','Encephalitis caused by human T-lymphotropic virus type 2 (disorder)','1163062005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_1163063000','1163063000','http://snomed.info/sct','Encephalitis caused by human herpesvirus 8 (disorder)','1163063000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_1163064006','1163064006','http://snomed.info/sct','Encephalitis caused by Hantaan virus (disorder)','1163064006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_1163065007','1163065007','http://snomed.info/sct','Encephalitis caused by Human betaherpesvirus 7 (disorder)','1163065007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_1163068009','1163068009','http://snomed.info/sct','Encephalitis caused by Vesiculovirus (disorder)','1163068009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_1163070000','1163070000','http://snomed.info/sct','Encephalitis caused by Retroviridae (disorder)','1163070000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_1163072008','1163072008','http://snomed.info/sct','Encephalitis caused by human parechovirus (disorder)','1163072008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_1163074009','1163074009','http://snomed.info/sct','Encephalitis caused by Paramyxoviridae (disorder)','1163074009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_1163076006','1163076006','http://snomed.info/sct','Encephalitis caused by Morbillivirus (disorder)','1163076006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_1163078007','1163078007','http://snomed.info/sct','Encephalitis caused by Orthopoxvirus (disorder)','1163078007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_1163096003','1163096003','http://snomed.info/sct','Encephalitis caused by Filoviridae (disorder)','1163096003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_1163099005','1163099005','http://snomed.info/sct','Encephalitis caused by human herpesvirus 4 (disorder)','1163099005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_1163102005','1163102005','http://snomed.info/sct','Encephalitis caused by Bunyaviridae (disorder)','1163102005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_1163103000','1163103000','http://snomed.info/sct','Encephalitis caused by Australian bat lyssavirus (disorder)','1163103000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_1163104006','1163104006','http://snomed.info/sct','Encephalitis caused by BK polyomavirus (disorder)','1163104006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_1163105007','1163105007','http://snomed.info/sct','Encephalitis caused by Alfuy virus (disorder)','1163105007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_1163106008','1163106008','http://snomed.info/sct','Encephalitis caused by Arenavirus (disorder)','1163106008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_1163533002','1163533002','http://snomed.info/sct','Encephalitis caused by Kokobera virus (disorder)','1163533002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_1163548008','1163548008','http://snomed.info/sct','Encephalitis caused by Vilyuisk human encephalitis virus (disorder)','1163548008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_1163551001','1163551001','http://snomed.info/sct','Encephalitis caused by Louping ill virus (disorder)','1163551001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_1163552008','1163552008','http://snomed.info/sct','Encephalitis caused by Koutango virus (disorder)','1163552008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_1177044001','1177044001','http://snomed.info/sct','Encephalitis caused by Sin Nombre virus (disorder)','1177044001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_1177045000','1177045000','http://snomed.info/sct','Encephalitis caused by Stratford virus (disorder)','1177045000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_1177071001','1177071001','http://snomed.info/sct','Encephalitis caused by Puumala virus (disorder)','1177071001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_15316002','15316002','http://snomed.info/sct','Simian B encephalomyelitis (disorder)','15316002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_16901001','16901001','http://snomed.info/sct','Encephalitis caused by European subtype of tick-borne encephalitis virus (disorder)','16901001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_186498004','186498004','http://snomed.info/sct','Epidemic encephalitis (disorder)','186498004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_186499007','186499007','http://snomed.info/sct','Encephalitis lethargica (disorder)','186499007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_186591007','186591007','http://snomed.info/sct','Encephalitis caused by Far Eastern tick-borne encephalitis virus (disorder)','186591007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_192685000','192685000','http://snomed.info/sct','Subacute sclerosing panencephalitis (disorder)','192685000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_192686004','192686004','http://snomed.info/sct','Polioencephalitis (disorder)','192686004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_192705005','192705005','http://snomed.info/sct','Post-bacillus Calmette-Guerin vaccination encephalitis (disorder)','192705005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_192706006','192706006','http://snomed.info/sct','Post typhoid vaccination encephalitis (disorder)','192706006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_192707002','192707002','http://snomed.info/sct','Post paratyphoid vaccination encephalitis (disorder)','192707002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_192709004','192709004','http://snomed.info/sct','Post plague vaccination encephalitis (disorder)','192709004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_192710009','192710009','http://snomed.info/sct','Post tetanus vaccination encephalitis (disorder)','192710009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_192711008','192711008','http://snomed.info/sct','Post diphtheria vaccination encephalitis (disorder)','192711008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_192712001','192712001','http://snomed.info/sct','Post pertussis vaccination encephalitis (disorder)','192712001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_192714000','192714000','http://snomed.info/sct','Post rabies vaccination encephalitis (disorder)','192714000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_192715004','192715004','http://snomed.info/sct','Post typhus vaccination encephalitis (disorder)','192715004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_192716003','192716003','http://snomed.info/sct','Post yellow fever vaccination encephalitis (disorder)','192716003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_192717007','192717007','http://snomed.info/sct','Post measles vaccination encephalitis (disorder)','192717007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_192718002','192718002','http://snomed.info/sct','Post polio vaccination encephalitis (disorder)','192718002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_192719005','192719005','http://snomed.info/sct','Post mumps vaccination encephalitis (disorder)','192719005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_192720004','192720004','http://snomed.info/sct','Post rubella vaccination encephalitis (disorder)','192720004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_192721000','192721000','http://snomed.info/sct','Post influenza vaccination encephalitis (disorder)','192721000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_192722007','192722007','http://snomed.info/sct','Post hepatitis A vaccination encephalitis (disorder)','192722007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_192723002','192723002','http://snomed.info/sct','Post hepatitis B vaccination encephalitis (disorder)','192723002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_192724008','192724008','http://snomed.info/sct','Post mixed vaccination encephalitis (disorder)','192724008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_230161000','230161000','http://snomed.info/sct','Acute viral encephalitis (disorder)','230161000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_230168006','230168006','http://snomed.info/sct','Tensaw encephalitis (disorder)','230168006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_230170002','230170002','http://snomed.info/sct','Kumlinge virus encephalitis (disorder)','230170002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_230174006','230174006','http://snomed.info/sct','Rhabdovirus encephalitis (disorder)','230174006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_230175007','230175007','http://snomed.info/sct','Infectious mononucleosis encephalitis (disorder)','230175007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_230176008','230176008','http://snomed.info/sct','Herpes zoster encephalitis (disorder)','230176008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_230177004','230177004','http://snomed.info/sct','Herpes simiae encephalitis (disorder)','230177004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_230179001','230179001','http://snomed.info/sct','Chronic viral encephalitis (disorder)','230179001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_230181004','230181004','http://snomed.info/sct','Bacterial encephalitis (disorder)','230181004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_230183001','230183001','http://snomed.info/sct','Fungal encephalitis (disorder)','230183001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_34476008','34476008','http://snomed.info/sct','Viral encephalitis (disorder)','34476008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_35640008','35640008','http://snomed.info/sct','Acute adenoviral encephalitis (disorder)','35640008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_359686005','359686005','http://snomed.info/sct','Van Bogaert''s sclerosing leukoencephalitis (disorder)','359686005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_40230002','40230002','http://snomed.info/sct','Encephalitis caused by Langat virus (disorder)','40230002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_407472000','407472000','http://snomed.info/sct','Nairoviral encephalitis (disorder)','407472000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_415347009','415347009','http://snomed.info/sct','Rio Bravo viral encephalitis (disorder)','415347009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_415525005','415525005','http://snomed.info/sct','Encephalitis caused by Siberian tick-borne encephalitis virus (disorder)','415525005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_417872000','417872000','http://snomed.info/sct','Neuroinvasive Cache Valley encephalitis virus infection (disorder)','417872000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_420244003','420244003','http://snomed.info/sct','Encephalitis with acquired immunodeficiency syndrome (disorder)','420244003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_422089004','422089004','http://snomed.info/sct','Encephalomyelitis with acquired immunodeficiency syndrome (disorder)','422089004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_427796004','427796004','http://snomed.info/sct','Encephalitis caused by human herpes simplex virus (disorder)','427796004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_428635007','428635007','http://snomed.info/sct','Primary viral encephalitis (disorder)','428635007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_428638009','428638009','http://snomed.info/sct','Encephalitis caused by Herpesvirus (disorder)','428638009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_430051000124107','430051000124107','http://snomed.info/sct','Meningoencephalitis caused by virus (disorder)','430051000124107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_441512004','441512004','http://snomed.info/sct','Encephalitis caused by human herpesvirus 6 infection (disorder)','441512004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_445359003','445359003','http://snomed.info/sct','Bacterial meningoencephalitis (disorder)','445359003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_56529007','56529007','http://snomed.info/sct','Adenoviral encephalitis (disorder)','56529007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_6955002','6955002','http://snomed.info/sct','Negishi encephalitis (disorder)','6955002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_71105005','71105005','http://snomed.info/sct','Ilheus virus encephalitis (disorder)','71105005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_712986001','712986001','http://snomed.info/sct','Encephalitis caused by tick-borne encephalitis virus (disorder)','712986001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_721766005','721766005','http://snomed.info/sct','Encephalitis caused by Alphavirus (disorder)','721766005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_721776008','721776008','http://snomed.info/sct','Encephalitis caused by Polyoma virus (disorder)','721776008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_721788005','721788005','http://snomed.info/sct','Encephalitis caused by Rubulavirus (disorder)','721788005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_721790006','721790006','http://snomed.info/sct','Encephalitis caused by Hendra virus (disorder)','721790006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_76474001','76474001','http://snomed.info/sct','Herpetic acute necrotizing encephalitis (disorder)','76474001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_764993001','764993001','http://snomed.info/sct','Encephalitis caused by Mycoplasma pneumoniae (disorder)','764993001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_788915008','788915008','http://snomed.info/sct','Encephalitis caused by Henipavirus (disorder)','788915008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_82547005','82547005','http://snomed.info/sct','Acute meningoencephalitis caused by Adenovirus (disorder)','82547005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_838315004','838315004','http://snomed.info/sct','Encephalomyelitis caused by Burkholderia (disorder)','838315004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_840496004','840496004','http://snomed.info/sct','Encephalitis caused by Borrelia (disorder)','840496004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_860822008','860822008','http://snomed.info/sct','Encephalitis caused by Nocardia (disorder)','860822008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_860841006','860841006','http://snomed.info/sct','Encephalomyelitis caused by bacterium (disorder)','860841006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_860868006','860868006','http://snomed.info/sct','Encephalitis caused by Me Tri virus (disorder)','860868006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_9678009','9678009','http://snomed.info/sct','Meningoencephalitis caused by human herpes simplex virus (disorder)','9678009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_230187000','230187000','http://snomed.info/sct','Granulomatous amebic encephalitis (disorder)','230187000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_111872008','111872008','http://snomed.info/sct','Post measles encephalitis (disorder)','111872008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_1163055001','1163055001','http://snomed.info/sct','Encephalitis caused by Machupo virus (disorder)','1163055001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_1163057009','1163057009','http://snomed.info/sct','Encephalitis caused by Lassa virus (disorder)','1163057009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_1163059007','1163059007','http://snomed.info/sct','Encephalitis caused by Junin virus (disorder)','1163059007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_1163071001','1163071001','http://snomed.info/sct','Encephalitis caused by Rift Valley fever virus (disorder)','1163071001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_1163097007','1163097007','http://snomed.info/sct','Encephalitis caused by Flavivirus (disorder)','1163097007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_1163098002','1163098002','http://snomed.info/sct','Encephalitis caused by human echovirus (disorder)','1163098002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_1163100002','1163100002','http://snomed.info/sct','Encephalitis caused by human coxsackievirus (disorder)','1163100002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_1163549000','1163549000','http://snomed.info/sct','Encephalitis caused by Trypanosoma cruzi (disorder)','1163549000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_1163550000','1163550000','http://snomed.info/sct','Encephalitis caused by Kyasanur Forest disease virus (disorder)','1163550000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_1177042002','1177042002','http://snomed.info/sct','Encephalitis caused by Toscana virus (disorder)','1177042002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_1179388006','1179388006','http://snomed.info/sct','Encephalitis caused by Usutu virus (disorder)','1179388006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_18071005','18071005','http://snomed.info/sct','Meningococcal encephalitis (disorder)','18071005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_186791009','186791009','http://snomed.info/sct','Plasmodium falciparum malaria with cerebral complications (disorder)','186791009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_192687008','192687008','http://snomed.info/sct','Arbovirus encephalitis (disorder)','192687008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_230144003','230144003','http://snomed.info/sct','Chronic echovirus meningoencephalitis (disorder)','230144003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_230162007','230162007','http://snomed.info/sct','Enteroviral encephalitis (disorder)','230162007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_230166005','230166005','http://snomed.info/sct','Rocio virus encephalitis (disorder)','230166005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_230182006','230182006','http://snomed.info/sct','Late syphilitic encephalitis (disorder)','230182006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_240393003','240393003','http://snomed.info/sct','Listeria cerebritis (disorder)','240393003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_24630008','24630008','http://snomed.info/sct','Listeria meningoencephalitis (disorder)','24630008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_26135000','26135000','http://snomed.info/sct','Syphilitic encephalitis (disorder)','26135000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_309789002','309789002','http://snomed.info/sct','Encephalitis caused by Influenza virus (disorder)','309789002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_416543004','416543004','http://snomed.info/sct','Neuroinvasive Powassan encephalitis virus infection (disorder)','416543004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_416659006','416659006','http://snomed.info/sct','Neuroinvasive Venezuelan equine encephalitis virus infection (disorder)','416659006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_417496004','417496004','http://snomed.info/sct','Neuroinvasive Eastern equine encephalitis virus infection (disorder)','417496004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_417607009','417607009','http://snomed.info/sct','Neuroinvasive Saint Louis encephalitis virus infection (disorder)','417607009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_419868009','419868009','http://snomed.info/sct','Encephalitis caused by rickettsia (disorder)','419868009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_422498005','422498005','http://snomed.info/sct','Neuroinvasive Western equine encephalitis virus infection (disorder)','422498005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_428175000','428175000','http://snomed.info/sct','Primary amebic encephalitis caused by Naegleria fowleri (disorder)','428175000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_52281009','52281009','http://snomed.info/sct','Meningoencephalitis caused by Naegleria (disorder)','52281009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_53622003','53622003','http://snomed.info/sct','Cerebral malaria (disorder)','53622003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_66454007','66454007','http://snomed.info/sct','Murray Valley encephalitis (disorder)','66454007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_70576008','70576008','http://snomed.info/sct','Enteroviral encephalomyelitis (disorder)','70576008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_724542001','724542001','http://snomed.info/sct','Encephalitis caused by Venezuelan equine encephalomyelitis virus (disorder)','724542001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_83159006','83159006','http://snomed.info/sct','Cytomegalovirus encephalitis (disorder)','83159006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_840440006','840440006','http://snomed.info/sct','Encephalitis caused by Leptospira (disorder)','840440006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_860805006','860805006','http://snomed.info/sct','Encephalomyelitis caused by Neisseria meningitidis (disorder)','860805006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_10082001','10082001','http://snomed.info/sct','Progressive rubella panencephalitis (disorder)','10082001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_1084741000119103','1084741000119103','http://snomed.info/sct','Meningoencephalitis due to Blastomyces dermatitidis (disorder)','1084741000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_1163058004','1163058004','http://snomed.info/sct','Encephalitis caused by Lymphocytic choriomeningitis virus (disorder)','1163058004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_1163073003','1163073003','http://snomed.info/sct','Encephalitis caused by human respiratory syncytial virus (disorder)','1163073003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_1163101003','1163101003','http://snomed.info/sct','Encephalitis caused by Dengue virus (disorder)','1163101003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_1163541002','1163541002','http://snomed.info/sct','Meningoencephalitis caused by Lymphocytic choriomeningitis virus (disorder)','1163541002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_1163553003','1163553003','http://snomed.info/sct','Encephalitis caused by Kunjin virus (disorder)','1163553003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_128191000','128191000','http://snomed.info/sct','Encephalomyelitis due to rubella (disorder)','128191000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_192689006','192689006','http://snomed.info/sct','Rubella encephalitis (disorder)','192689006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_31646008','31646008','http://snomed.info/sct','Mumps encephalitis (disorder)','31646008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_392662004','392662004','http://snomed.info/sct','West Nile encephalitis (disorder)','392662004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_398329009','398329009','http://snomed.info/sct','Human immunodeficiency virus encephalitis (disorder)','398329009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_40099009','40099009','http://snomed.info/sct','Meningoencephalitis caused by mumps virus (disorder)','40099009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_409556004','409556004','http://snomed.info/sct','Q fever encephalitis (disorder)','409556004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_421415007','421415007','http://snomed.info/sct','Subacute adenoviral encephalitis with acquired immunodeficiency syndrome (disorder)','421415007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_52947006','52947006','http://snomed.info/sct','Japanese encephalitis virus disease (disorder)','52947006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_713260006','713260006','http://snomed.info/sct','Subacute adenoviral encephalitis co-occurrent with human immunodeficiency virus infection (disorder)','713260006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_721791005','721791005','http://snomed.info/sct','Encephalitis caused by Nipah virus (disorder)','721791005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_840442003','840442003','http://snomed.info/sct','Encephalitis caused by human immunodeficiency virus type 2 (disorder)','840442003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_840498003','840498003','http://snomed.info/sct','Encephalitis caused by human immunodeficiency virus type 1 (disorder)','840498003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_860842004','860842004','http://snomed.info/sct','Encephalomyelitis caused by Coxiella burnetii (disorder)','860842004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_91483004','91483004','http://snomed.info/sct','Tuberculous encephalitis (disorder)','91483004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_721823009','721823009','http://snomed.info/sct','Encephalitis caused by Echinococcus granulosus (disorder)','721823009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_721825002','721825002','http://snomed.info/sct','Encephalitis caused by Taenia solium (disorder)','721825002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_17949000','17949000','http://snomed.info/sct','Meningoencephalitis due to acquired toxoplasmosis (disorder)','17949000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_192701001','192701001','http://snomed.info/sct','Toxoplasma encephalitis (disorder)','192701001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_31112008','31112008','http://snomed.info/sct','Tuberculous meningoencephalitis (disorder)','31112008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_32735002','32735002','http://snomed.info/sct','Congenital syphilitic encephalitis (disorder)','32735002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_397961002','397961002','http://snomed.info/sct','Encephalomyelitis caused by lymphocytic choriomeningitis virus (disorder)','397961002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_404235004','404235004','http://snomed.info/sct','Jamestown Canyon virus encephalitis (disorder)','404235004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_13225007','13225007','http://snomed.info/sct','Meningoencephalitis caused by Rubella virus (disorder)','13225007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_302811004','302811004','http://snomed.info/sct','Progressive congenital rubella encephalomyelitis (disorder)','302811004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_417075004','417075004','http://snomed.info/sct','Neuroinvasive California encephalitis virus infection (disorder)','417075004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.766_418531007','418531007','http://snomed.info/sct','California serogroup virus neuroinvasive disease (disorder)','418531007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.404_102455002','102455002','http://snomed.info/sct','Hemorrhagic nephroso-nephritis (disorder)','102455002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.404_120639003','120639003','http://snomed.info/sct','Hantavirus pulmonary syndrome (disorder)','120639003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.404_359761005','359761005','http://snomed.info/sct','Disease caused by Hantavirus (disorder)','359761005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.404_359763008','359763008','http://snomed.info/sct','Disease caused by Hantanvirus (disorder)','359763008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.404_364756009','364756009','http://snomed.info/sct','Puumala virus nephropathy (disorder)','364756009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.404_788871006','788871006','http://snomed.info/sct','Atypical disease caused by Hantavirus (disorder)','788871006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.404_284184004','284184004','http://snomed.info/sct','Lepthangamushi syndrome (disorder)','284184004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.404_716864001','716864001','http://snomed.info/sct','Hemorrhagic fever with renal syndrome (disorder)','716864001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.767_H90.0','H90.0','http://hl7.org/fhir/sid/icd-10-cm','Conductive hearing loss, bilateral','H900','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.767_H90.11','H90.11','http://hl7.org/fhir/sid/icd-10-cm','Conductive hearing loss, unilateral, right ear, with unrestricted hearing on the contralateral side','H9011','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.767_H90.12','H90.12','http://hl7.org/fhir/sid/icd-10-cm','Conductive hearing loss, unilateral, left ear, with unrestricted hearing on the contralateral side','H9012','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.767_H90.2','H90.2','http://hl7.org/fhir/sid/icd-10-cm','Conductive hearing loss, unspecified','H902','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.767_H90.3','H90.3','http://hl7.org/fhir/sid/icd-10-cm','Sensorineural hearing loss, bilateral','H903','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.767_H90.41','H90.41','http://hl7.org/fhir/sid/icd-10-cm','Sensorineural hearing loss, unilateral, right ear, with unrestricted hearing on the contralateral side','H9041','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.767_H90.42','H90.42','http://hl7.org/fhir/sid/icd-10-cm','Sensorineural hearing loss, unilateral, left ear, with unrestricted hearing on the contralateral side','H9042','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.767_H90.5','H90.5','http://hl7.org/fhir/sid/icd-10-cm','Unspecified sensorineural hearing loss','H905','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.767_H90.6','H90.6','http://hl7.org/fhir/sid/icd-10-cm','Mixed conductive and sensorineural hearing loss, bilateral','H906','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.767_H90.71','H90.71','http://hl7.org/fhir/sid/icd-10-cm','Mixed conductive and sensorineural hearing loss, unilateral, right ear, with unrestricted hearing on the contralateral side','H9071','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.767_H90.72','H90.72','http://hl7.org/fhir/sid/icd-10-cm','Mixed conductive and sensorineural hearing loss, unilateral, left ear, with unrestricted hearing on the contralateral side','H9072','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.767_H90.8','H90.8','http://hl7.org/fhir/sid/icd-10-cm','Mixed conductive and sensorineural hearing loss, unspecified','H908','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.767_H90.A11','H90.A11','http://hl7.org/fhir/sid/icd-10-cm','Conductive hearing loss, unilateral, right ear with restricted hearing on the contralateral side','H90A11','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.767_H90.A12','H90.A12','http://hl7.org/fhir/sid/icd-10-cm','Conductive hearing loss, unilateral, left ear with restricted hearing on the contralateral side','H90A12','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.767_H90.A21','H90.A21','http://hl7.org/fhir/sid/icd-10-cm','Sensorineural hearing loss, unilateral, right ear, with restricted hearing on the contralateral side','H90A21','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.767_H90.A22','H90.A22','http://hl7.org/fhir/sid/icd-10-cm','Sensorineural hearing loss, unilateral, left ear, with restricted hearing on the contralateral side','H90A22','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.767_H90.A31','H90.A31','http://hl7.org/fhir/sid/icd-10-cm','Mixed conductive and sensorineural hearing loss, unilateral, right ear with restricted hearing on the contralateral side','H90A31','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.767_H90.A32','H90.A32','http://hl7.org/fhir/sid/icd-10-cm','Mixed conductive and sensorineural hearing loss, unilateral, left ear with restricted hearing on the contralateral side','H90A32','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.767_H91.01','H91.01','http://hl7.org/fhir/sid/icd-10-cm','Ototoxic hearing loss, right ear','H9101','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.767_H91.02','H91.02','http://hl7.org/fhir/sid/icd-10-cm','Ototoxic hearing loss, left ear','H9102','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.767_H91.03','H91.03','http://hl7.org/fhir/sid/icd-10-cm','Ototoxic hearing loss, bilateral','H9103','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.767_H91.09','H91.09','http://hl7.org/fhir/sid/icd-10-cm','Ototoxic hearing loss, unspecified ear','H9109','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.767_H91.20','H91.20','http://hl7.org/fhir/sid/icd-10-cm','Sudden idiopathic hearing loss, unspecified ear','H9120','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.767_H91.21','H91.21','http://hl7.org/fhir/sid/icd-10-cm','Sudden idiopathic hearing loss, right ear','H9121','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.767_H91.22','H91.22','http://hl7.org/fhir/sid/icd-10-cm','Sudden idiopathic hearing loss, left ear','H9122','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.767_H91.23','H91.23','http://hl7.org/fhir/sid/icd-10-cm','Sudden idiopathic hearing loss, bilateral','H9123','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.767_H91.3','H91.3','http://hl7.org/fhir/sid/icd-10-cm','Deaf nonspeaking, not elsewhere classified','H913','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.767_H91.8X1','H91.8X1','http://hl7.org/fhir/sid/icd-10-cm','Other specified hearing loss, right ear','H918X1','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.767_H91.8X2','H91.8X2','http://hl7.org/fhir/sid/icd-10-cm','Other specified hearing loss, left ear','H918X2','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.767_H91.8X3','H91.8X3','http://hl7.org/fhir/sid/icd-10-cm','Other specified hearing loss, bilateral','H918X3','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.767_H91.8X9','H91.8X9','http://hl7.org/fhir/sid/icd-10-cm','Other specified hearing loss, unspecified ear','H918X9','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.767_H91.90','H91.90','http://hl7.org/fhir/sid/icd-10-cm','Unspecified hearing loss, unspecified ear','H9190','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.767_H91.91','H91.91','http://hl7.org/fhir/sid/icd-10-cm','Unspecified hearing loss, right ear','H9191','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.767_H91.92','H91.92','http://hl7.org/fhir/sid/icd-10-cm','Unspecified hearing loss, left ear','H9192','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.767_H91.93','H91.93','http://hl7.org/fhir/sid/icd-10-cm','Unspecified hearing loss, bilateral','H9193','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.405_B33.4','B33.4','http://hl7.org/fhir/sid/icd-10-cm','Hantavirus (cardio)-pulmonary syndrome [HPS] [HCPS]','B334','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1914_36921006','36921006','http://snomed.info/sct','Vesicular stomatitis (disorder)','36921006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1914_53632005','53632005','http://snomed.info/sct','Vesicular stomatitis Indiana virus disease (disorder)','53632005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1914_53660007','53660007','http://snomed.info/sct','Vesicular stomatitis New Jersey virus disease (disorder)','53660007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1914_73423000','73423000','http://snomed.info/sct','Vesicular stomatitis Alagoas virus disease (disorder)','73423000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1914_895086000','895086000','http://snomed.info/sct','Vesicular stomatitis virus disease (disorder)','895086000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_1052287002','1052287002','http://snomed.info/sct','Myocarditis caused by Neisseria gonorrhoeae (disorder)','1052287002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_10754031000119105','10754031000119105','http://snomed.info/sct','Gonorrhea in mother complicating childbirth (disorder)','10754031000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_1086991000119103','1086991000119103','http://snomed.info/sct','Gonococcal abscess of brain (disorder)','1086991000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_1087001000119105','1087001000119105','http://snomed.info/sct','Infection of anus and rectum caused by Neisseria gonorrhoeae (disorder)','1087001000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_1087011000119108','1087011000119108','http://snomed.info/sct','Infection of lower genitourinary tract co-occurrent with abscess of periurethral gland caused by Gonococcus (disorder)','1087011000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_1087041000119107','1087041000119107','http://snomed.info/sct','Infection of kidney and ureter caused by Neisseria gonorrhoeae (disorder)','1087041000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_1087051000119109','1087051000119109','http://snomed.info/sct','Gonococcal osteomyelitis (disorder)','1087051000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_1087061000119106','1087061000119106','http://snomed.info/sct','Gonococcal pneumonia (disorder)','1087061000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_1092501000119104','1092501000119104','http://snomed.info/sct','Septic shock co-occurrent with acute organ dysfunction due to Gonococcus (disorder)','1092501000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_1092601000119103','1092601000119103','http://snomed.info/sct','Sepsis caused by Gonococcus (disorder)','1092601000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_111806005','111806005','http://snomed.info/sct','Acute gonococcal prostatitis (disorder)','111806005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_111807001','111807001','http://snomed.info/sct','Gonococcal endophthalmia (disorder)','111807001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_114881000119108','114881000119108','http://snomed.info/sct','Maternal gonorrhea during pregnancy (disorder)','114881000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_12373006','12373006','http://snomed.info/sct','Chronic gonococcal bartholinitis (disorder)','12373006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_15628003','15628003','http://snomed.info/sct','Gonorrhea (disorder)','15628003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_16898641000119100','16898641000119100','http://snomed.info/sct','Gonorrhea of lower genitourinary tract (disorder)','16898641000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_17305005','17305005','http://snomed.info/sct','Acute gonorrhea of genitourinary tract (disorder)','17305005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_186915005','186915005','http://snomed.info/sct','Chronic gonorrhea lower genitourinary tract (disorder)','186915005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_186931002','186931002','http://snomed.info/sct','Gonococcal anal infection (disorder)','186931002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_186939000','186939000','http://snomed.info/sct','Gonococcal peritonitis (disorder)','186939000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_194910001','194910001','http://snomed.info/sct','Acute gonococcal pericarditis (disorder)','194910001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_197848003','197848003','http://snomed.info/sct','Gonococcal cystitis (disorder)','197848003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_197967000','197967000','http://snomed.info/sct','Gonococcal prostatitis (disorder)','197967000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_199161008','199161008','http://snomed.info/sct','Maternal gonorrhea during pregnancy, childbirth and the puerperium (disorder)','199161008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_199163006','199163006','http://snomed.info/sct','Maternal gonorrhea during pregnancy - baby delivered (disorder)','199163006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_199164000','199164000','http://snomed.info/sct','Maternal gonorrhea in the puerperium - baby delivered during current episode of care (disorder)','199164000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_199165004','199165004','http://snomed.info/sct','Maternal gonorrhea during pregnancy - baby not yet delivered (disorder)','199165004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_199166003','199166003','http://snomed.info/sct','Maternal gonorrhea in the puerperium - baby delivered during previous episode of care (disorder)','199166003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_235861001','235861001','http://snomed.info/sct','Abscess gonococcal (disorder)','235861001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_235863003','235863003','http://snomed.info/sct','Gonococcal hepatitis (disorder)','235863003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_236687008','236687008','http://snomed.info/sct','Gonococcal urethral abscess (disorder)','236687008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_236766009','236766009','http://snomed.info/sct','Gonococcal epididymitis (disorder)','236766009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_236772009','236772009','http://snomed.info/sct','Gonococcal epididymo-orchitis (disorder)','236772009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_237042003','237042003','http://snomed.info/sct','Gonococcal perihepatitis (disorder)','237042003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_237046000','237046000','http://snomed.info/sct','Gonococcal tubo-ovarian abscess (disorder)','237046000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_237095000','237095000','http://snomed.info/sct','Gonococcal vulvovaginitis (disorder)','237095000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_237096004','237096004','http://snomed.info/sct','Neonatal gonococcal vulvovaginitis (disorder)','237096004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_238419002','238419002','http://snomed.info/sct','Gonococcal lymphangitis of penis (disorder)','238419002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_2390000','2390000','http://snomed.info/sct','Acute gonococcal vulvovaginitis (disorder)','2390000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_23975003','23975003','http://snomed.info/sct','Chronic gonococcal seminal vesiculitis (disorder)','23975003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_240039005','240039005','http://snomed.info/sct','Gonococcal tenosynovitis (disorder)','240039005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_240571007','240571007','http://snomed.info/sct','Neonatal gonococcal infection (disorder)','240571007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_240572000','240572000','http://snomed.info/sct','Gonorrhea with local complication (disorder)','240572000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_240573005','240573005','http://snomed.info/sct','Gonococcal Bartholin''s gland abscess (disorder)','240573005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_240574004','240574004','http://snomed.info/sct','Gonococcal Skenitis (disorder)','240574004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_240575003','240575003','http://snomed.info/sct','Gonococcal Tysonitis (disorder)','240575003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_240576002','240576002','http://snomed.info/sct','Gonococcal Cowperitis (disorder)','240576002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_240577006','240577006','http://snomed.info/sct','Gonococcal Littritis (disorder)','240577006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_240578001','240578001','http://snomed.info/sct','Gonococcal Littre gland abscess (disorder)','240578001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_240579009','240579009','http://snomed.info/sct','Gonococcal paraurethral gland abscess (disorder)','240579009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_240580007','240580007','http://snomed.info/sct','Gonococcal penile fistula (disorder)','240580007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_240581006','240581006','http://snomed.info/sct','Gonococcal female pelvic infection (disorder)','240581006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_240582004','240582004','http://snomed.info/sct','Gonococcal synovitis (disorder)','240582004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_240583009','240583009','http://snomed.info/sct','Cutaneous gonorrhea (disorder)','240583009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_240584003','240584003','http://snomed.info/sct','Gonococcal cellulitis (disorder)','240584003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_24868007','24868007','http://snomed.info/sct','Acute gonococcal cystitis (disorder)','24868007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_266138002','266138002','http://snomed.info/sct','Gonococcal synovitis or tenosynovitis (disorder)','266138002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_272006008','272006008','http://snomed.info/sct','Gonococcal arthritis dermatitis syndrome (disorder)','272006008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_27681008','27681008','http://snomed.info/sct','Chronic gonorrhea (disorder)','27681008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_28572009','28572009','http://snomed.info/sct','Chronic gonorrhea of genitourinary tract (disorder)','28572009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_30168008','30168008','http://snomed.info/sct','Acute gonococcal epididymo-orchitis (disorder)','30168008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_301990003','301990003','http://snomed.info/sct','Gonococcal seminal vesiculitis (disorder)','301990003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_307423008','307423008','http://snomed.info/sct','Gonococcal pelvic peritonitis (disorder)','307423008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_342381000119109','342381000119109','http://snomed.info/sct','Gonococcal iritis (disorder)','342381000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_35255008','35255008','http://snomed.info/sct','Gonorrhea in mother complicating pregnancy, childbirth AND/OR puerperium (disorder)','35255008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_35526001','35526001','http://snomed.info/sct','Chronic gonococcal epididymo-orchitis (disorder)','35526001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_40149008','40149008','http://snomed.info/sct','Gonococcal keratitis (disorder)','40149008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_402956009','402956009','http://snomed.info/sct','Localized cutaneous gonococcal infection (disorder)','402956009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_402957000','402957000','http://snomed.info/sct','Gonococcal bartholinitis (disorder)','402957000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_402958005','402958005','http://snomed.info/sct','Pustular vasculitis due to gonococcal bacteremia (disorder)','402958005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_406581000','406581000','http://snomed.info/sct','Gonococcal infection of the central nervous system (disorder)','406581000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_42746002','42746002','http://snomed.info/sct','Gonorrhea of rectum (disorder)','42746002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_44743006','44743006','http://snomed.info/sct','Gonococcal infection of joint (disorder)','44743006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_46699001','46699001','http://snomed.info/sct','Bursitis caused by Neisseria gonorrhoeae (disorder)','46699001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_5085001','5085001','http://snomed.info/sct','Gonococcemia (finding)','5085001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_53664003','53664003','http://snomed.info/sct','Gonococcal spondylitis (disorder)','53664003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_60335002','60335002','http://snomed.info/sct','Gonococcal keratosis (disorder)','60335002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_60893000','60893000','http://snomed.info/sct','Chronic gonococcal prostatitis (disorder)','60893000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_61048000','61048000','http://snomed.info/sct','Gonococcal endocarditis (disorder)','61048000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_65049003','65049003','http://snomed.info/sct','Acute gonococcal seminal vesiculitis (disorder)','65049003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_713261005','713261005','http://snomed.info/sct','Gingival disease caused by Neisseria gonorrhoeae (disorder)','713261005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_72225002','72225002','http://snomed.info/sct','Urethral stricture due to gonococcal infection (disorder)','72225002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_733131001','733131001','http://snomed.info/sct','Infection of musculoskeletal system caused by Neisseria gonorrhoeae (disorder)','733131001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_735516004','735516004','http://snomed.info/sct','Infection of genitourinary system caused by Neisseria gonorrhoeae (disorder)','735516004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_74372003','74372003','http://snomed.info/sct','Gonorrhea of pharynx (disorder)','74372003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_762257007','762257007','http://snomed.info/sct','Disseminated infection caused by Neisseria gonorrhoeae (disorder)','762257007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_80388004','80388004','http://snomed.info/sct','Chronic gonorrhea of upper genitourinary tract (disorder)','80388004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_80604007','80604007','http://snomed.info/sct','Acute gonococcal bartholinitis (disorder)','80604007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_88813005','88813005','http://snomed.info/sct','Chronic gonococcal cystitis (disorder)','88813005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_90428001','90428001','http://snomed.info/sct','Gonococcal pericarditis (disorder)','90428001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_9091006','9091006','http://snomed.info/sct','Gonococcal iridocyclitis (disorder)','9091006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_9241004','9241004','http://snomed.info/sct','Gonococcal heart disease (disorder)','9241004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_1087021000119101','1087021000119101','http://snomed.info/sct','Periurethral abscess caused by Neisseria gonorrhoeae (disorder)','1087021000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_151004','151004','http://snomed.info/sct','Gonococcal meningitis (disorder)','151004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_16217981000119107','16217981000119107','http://snomed.info/sct','Infection of upper genitourinary tract caused by Neisseria gonorrheae (disorder)','16217981000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_35876006','35876006','http://snomed.info/sct','Gonococcal infection of eye (disorder)','35876006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_444834005','444834005','http://snomed.info/sct','Abscess of urethral gland caused by Neisseria gonorrhoeae (disorder)','444834005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_50970007','50970007','http://snomed.info/sct','Acute gonorrhea of upper genitourinary tract (disorder)','50970007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_54825009','54825009','http://snomed.info/sct','Acute gonorrhea of lower genitourinary tract (disorder)','54825009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_11906007','11906007','http://snomed.info/sct','Chronic gonococcal vulvovaginitis (disorder)','11906007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_198242009','198242009','http://snomed.info/sct','Female gonococcal pelvic inflammatory disease (disorder)','198242009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_237038001','237038001','http://snomed.info/sct','Gonococcal salpingitis (disorder)','237038001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_237069002','237069002','http://snomed.info/sct','Gonococcal endometritis (disorder)','237069002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_31999004','31999004','http://snomed.info/sct','Chronic gonococcal endometritis (disorder)','31999004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_45377007','45377007','http://snomed.info/sct','Acute gonococcal salpingitis (disorder)','45377007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_53529004','53529004','http://snomed.info/sct','Chronic gonococcal salpingitis (disorder)','53529004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.639_65295003','65295003','http://snomed.info/sct','Acute gonococcal endometritis (disorder)','65295003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.632_105629000','105629000','http://snomed.info/sct','Chlamydial infection (disorder)','105629000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.632_10750051000119105','10750051000119105','http://snomed.info/sct','Chlamydia trachomatis infection in mother complicating childbirth (disorder)','10750051000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.632_1084821000119103','1084821000119103','http://snomed.info/sct','Cystitis caused by Chlamydia (disorder)','1084821000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.632_112121000119105','112121000119105','http://snomed.info/sct','Venereal disease caused by Chlamydia trachomatis (disorder)','112121000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.632_1163085006','1163085006','http://snomed.info/sct','Dacryoadenitis caused by Chlamydia trachomatis (disorder)','1163085006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.632_1163117009','1163117009','http://snomed.info/sct','Colitis caused by Chlamydia (disorder)','1163117009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.632_1163477006','1163477006','http://snomed.info/sct','Infection of intestine caused by Chlamydia trachomatis (disorder)','1163477006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.632_1197369000','1197369000','http://snomed.info/sct','Colitis caused by Chlamydia trachomatis (disorder)','1197369000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.632_143511000119105','143511000119105','http://snomed.info/sct','Perihepatitis caused by Chlamydia trachomatis (disorder)','143511000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.632_1621000119101','1621000119101','http://snomed.info/sct','Chlamydia trachomatis infection in pregnancy (disorder)','1621000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.632_186729003','186729003','http://snomed.info/sct','Chlamydial infection of lower genitourinary tract (disorder)','186729003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.632_186731007','186731007','http://snomed.info/sct','Chlamydial infection of anus and rectum (disorder)','186731007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.632_189312004','189312004','http://snomed.info/sct','Pelvic inflammation with female sterility caused by Chlamydia trachomatis (disorder)','189312004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.632_197172005','197172005','http://snomed.info/sct','Chlamydial peritonitis (disorder)','197172005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.632_198176005','198176005','http://snomed.info/sct','Female chlamydial pelvic inflammatory disease (disorder)','198176005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.632_206289001','206289001','http://snomed.info/sct','Congenital chlamydial pneumonia (disorder)','206289001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.632_232403001','232403001','http://snomed.info/sct','Chlamydial pharyngitis (disorder)','232403001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.632_233600003','233600003','http://snomed.info/sct','Acute chlamydial bronchitis (disorder)','233600003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.632_233610007','233610007','http://snomed.info/sct','Neonatal chlamydial pneumonia (disorder)','233610007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.632_234099003','234099003','http://snomed.info/sct','Lymphedema due to lymphogranuloma venereum (disorder)','234099003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.632_236672003','236672003','http://snomed.info/sct','Chlamydial prostatitis (disorder)','236672003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.632_236749007','236749007','http://snomed.info/sct','Chlamydial balanitis (disorder)','236749007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.632_236767000','236767000','http://snomed.info/sct','Chlamydial epididymitis (disorder)','236767000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.632_236773004','236773004','http://snomed.info/sct','Chlamydial epididymo-orchitis (disorder)','236773004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.632_237043008','237043008','http://snomed.info/sct','Chlamydial perihepatitis (disorder)','237043008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.632_237097008','237097008','http://snomed.info/sct','Chlamydial vulvovaginitis (disorder)','237097008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.632_237106009','237106009','http://snomed.info/sct','Chlamydial bartholinitis (disorder)','237106009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.632_238372002','238372002','http://snomed.info/sct','Chlamydial dermatological disorders (disorder)','238372002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.632_240589008','240589008','http://snomed.info/sct','Chlamydia trachomatis infection (disorder)','240589008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.632_240590004','240590004','http://snomed.info/sct','Neonatal chlamydial infection (disorder)','240590004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.632_276681001','276681001','http://snomed.info/sct','Neonatal chlamydial dacryocystitis (disorder)','276681001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.632_312099009','312099009','http://snomed.info/sct','Genitourinary chlamydia infection (disorder)','312099009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.632_367504009','367504009','http://snomed.info/sct','Pelvic inflammatory disease with female sterility due to Chlamydia trachomatis (disorder)','367504009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.632_406566006','406566006','http://snomed.info/sct','Chlamydial infection of the central nervous system (disorder)','406566006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.632_420910002','420910002','http://snomed.info/sct','Chlamydia trachomatis infection of anus and rectum (disorder)','420910002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.632_426165006','426165006','http://snomed.info/sct','Acute infection of genitourinary system caused by Chlamydia (disorder)','426165006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.632_426247003','426247003','http://snomed.info/sct','Acute genitourinary Chlamydia trachomatis infection (disorder)','426247003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.632_428015005','428015005','http://snomed.info/sct','Chlamydia trachomatis infection of genital structure (disorder)','428015005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.632_446471004','446471004','http://snomed.info/sct','Infection of epididymis caused by Chlamydia trachomatis (disorder)','446471004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.632_446594000','446594000','http://snomed.info/sct','Infection of pharynx caused by Chlamydia trachomatis (disorder)','446594000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.632_446642005','446642005','http://snomed.info/sct','Infection of anus caused by Chlamydia trachomatis (disorder)','446642005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.632_446752000','446752000','http://snomed.info/sct','Infection of peritoneum caused by Chlamydia trachomatis (disorder)','446752000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.632_446902002','446902002','http://snomed.info/sct','Infection of testis caused by Chlamydia trachomatis (disorder)','446902002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.632_447372001','447372001','http://snomed.info/sct','Infection of rectum caused by Chlamydia trachomatis (disorder)','447372001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.632_447386002','447386002','http://snomed.info/sct','Infection of vulva caused by Chlamydia trachomatis (disorder)','447386002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.632_447402003','447402003','http://snomed.info/sct','Infection of vagina caused by Chlamydia trachomatis (disorder)','447402003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.632_460618008','460618008','http://snomed.info/sct','Endocarditis caused by Chlamydia (disorder)','460618008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.632_59484000','59484000','http://snomed.info/sct','Chlamydial polyarthritis (disorder)','59484000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.632_722520001','722520001','http://snomed.info/sct','Non-ulcerative sexually transmitted infection caused by Chlamydia trachomatis (disorder)','722520001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.632_722552001','722552001','http://snomed.info/sct','Sequela of infection caused by Chlamydia (disorder)','722552001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.632_788012008','788012008','http://snomed.info/sct','Inflammation of pelvis caused by Chlamydia trachomatis (disorder)','788012008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.632_188463006','188463006','http://snomed.info/sct','Chlamydial pelvic inflammatory disease (disorder)','188463006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.632_237039009','237039009','http://snomed.info/sct','Chlamydial salpingitis (disorder)','237039009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.632_236683007','236683007','http://snomed.info/sct','Chlamydial urethritis (disorder)','236683007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.633_15680081000119109','15680081000119109','http://snomed.info/sct','Conjunctivitis of bilateral eyes caused by Chlamydia (disorder)','15680081000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.633_15680161000119101','15680161000119101','http://snomed.info/sct','Conjunctivitis of left eye caused by Chlamydia trachomatis (disorder)','15680161000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.633_231861005','231861005','http://snomed.info/sct','Chlamydial conjunctivitis (disorder)','231861005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.633_56009001','56009001','http://snomed.info/sct','Inclusion conjunctivitis of the adult (disorder)','56009001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.633_240591000','240591000','http://snomed.info/sct','Neonatal chlamydial conjunctivitis (disorder)','240591000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.633_268842008','268842008','http://snomed.info/sct','Neonatal dacryocystitis or conjunctivitis caused by chlamydiae (disorder)','268842008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.634_A56','A56','http://hl7.org/fhir/sid/icd-10-cm','Other sexually transmitted chlamydial diseases','A56','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.634_A56.0','A56.0','http://hl7.org/fhir/sid/icd-10-cm','Chlamydial infection of lower genitourinary tract','A560','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.634_A56.00','A56.00','http://hl7.org/fhir/sid/icd-10-cm','Chlamydial infection of lower genitourinary tract, unspecified','A5600','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.634_A56.02','A56.02','http://hl7.org/fhir/sid/icd-10-cm','Chlamydial vulvovaginitis','A5602','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.634_A56.09','A56.09','http://hl7.org/fhir/sid/icd-10-cm','Other chlamydial infection of lower genitourinary tract','A5609','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.634_A56.1','A56.1','http://hl7.org/fhir/sid/icd-10-cm','Chlamydial infection of pelviperitoneum and other genitourinary organs','A561','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.634_A56.19','A56.19','http://hl7.org/fhir/sid/icd-10-cm','Other chlamydial genitourinary infection','A5619','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.634_A56.2','A56.2','http://hl7.org/fhir/sid/icd-10-cm','Chlamydial infection of genitourinary tract, unspecified','A562','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.634_A56.3','A56.3','http://hl7.org/fhir/sid/icd-10-cm','Chlamydial infection of anus and rectum','A563','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.634_A56.4','A56.4','http://hl7.org/fhir/sid/icd-10-cm','Chlamydial infection of pharynx','A564','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.634_A56.8','A56.8','http://hl7.org/fhir/sid/icd-10-cm','Sexually transmitted chlamydial infection of other sites','A568','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.634_A74','A74','http://hl7.org/fhir/sid/icd-10-cm','Other diseases caused by chlamydiae','A74','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.634_A74.8','A74.8','http://hl7.org/fhir/sid/icd-10-cm','Other chlamydial diseases','A748','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.634_A74.81','A74.81','http://hl7.org/fhir/sid/icd-10-cm','Chlamydial peritonitis','A7481','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.634_A74.89','A74.89','http://hl7.org/fhir/sid/icd-10-cm','Other chlamydial diseases','A7489','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.634_A74.9','A74.9','http://hl7.org/fhir/sid/icd-10-cm','Chlamydial infection, unspecified','A749','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.634_J16.0','J16.0','http://hl7.org/fhir/sid/icd-10-cm','Chlamydial pneumonia','J160','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.634_P23.1','P23.1','http://hl7.org/fhir/sid/icd-10-cm','Congenital pneumonia due to Chlamydia','P231','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.634_A56.11','A56.11','http://hl7.org/fhir/sid/icd-10-cm','Chlamydial female pelvic inflammatory disease','A5611','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.634_A56.01','A56.01','http://hl7.org/fhir/sid/icd-10-cm','Chlamydial cystitis and urethritis','A5601','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.876_651000146102','651000146102','http://snomed.info/sct','Middle East respiratory syndrome (disorder)','651000146102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.635_A74.0','A74.0','http://hl7.org/fhir/sid/icd-10-cm','Chlamydial conjunctivitis','A740','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.877_A68.1','A68.1','http://hl7.org/fhir/sid/icd-10-cm','Tick-borne relapsing fever','A681','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1805_29422001','29422001','http://snomed.info/sct','Coal workers'' pneumoconiosis (disorder)','29422001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.507_A48.3','A48.3','http://hl7.org/fhir/sid/icd-10-cm','Toxic shock syndrome','A483','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1808_J70.2','J70.2','http://hl7.org/fhir/sid/icd-10-cm','Acute drug-induced interstitial lung disorders','J702','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1808_J70.3','J70.3','http://hl7.org/fhir/sid/icd-10-cm','Chronic drug-induced interstitial lung disorders','J703','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1808_J70.4','J70.4','http://hl7.org/fhir/sid/icd-10-cm','Drug-induced interstitial lung disorders, unspecified','J704','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1808_J84','J84','http://hl7.org/fhir/sid/icd-10-cm','Other interstitial pulmonary diseases','J84','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1808_J84.0','J84.0','http://hl7.org/fhir/sid/icd-10-cm','Alveolar and parieto-alveolar conditions','J840','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1808_J84.01','J84.01','http://hl7.org/fhir/sid/icd-10-cm','Alveolar proteinosis','J8401','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1808_J84.02','J84.02','http://hl7.org/fhir/sid/icd-10-cm','Pulmonary alveolar microlithiasis','J8402','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1808_J84.03','J84.03','http://hl7.org/fhir/sid/icd-10-cm','Idiopathic pulmonary hemosiderosis','J8403','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1808_J84.09','J84.09','http://hl7.org/fhir/sid/icd-10-cm','Other alveolar and parieto-alveolar conditions','J8409','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1808_J84.11','J84.11','http://hl7.org/fhir/sid/icd-10-cm','Idiopathic interstitial pneumonia','J8411','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1808_J84.111','J84.111','http://hl7.org/fhir/sid/icd-10-cm','Idiopathic interstitial pneumonia, not otherwise specified','J84111','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1808_J84.113','J84.113','http://hl7.org/fhir/sid/icd-10-cm','Idiopathic non-specific interstitial pneumonitis','J84113','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1808_J84.114','J84.114','http://hl7.org/fhir/sid/icd-10-cm','Acute interstitial pneumonitis','J84114','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1808_J84.115','J84.115','http://hl7.org/fhir/sid/icd-10-cm','Respiratory bronchiolitis interstitial lung disease','J84115','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1808_J84.116','J84.116','http://hl7.org/fhir/sid/icd-10-cm','Cryptogenic organizing pneumonia','J84116','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1808_J84.117','J84.117','http://hl7.org/fhir/sid/icd-10-cm','Desquamative interstitial pneumonia','J84117','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1808_J84.170','J84.170','http://hl7.org/fhir/sid/icd-10-cm','Interstitial lung disease with progressive fibrotic phenotype in diseases classified elsewhere','J84170','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1808_J84.2','J84.2','http://hl7.org/fhir/sid/icd-10-cm','Lymphoid interstitial pneumonia','J842','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1808_J84.8','J84.8','http://hl7.org/fhir/sid/icd-10-cm','Other specified interstitial pulmonary diseases','J848','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1808_J84.81','J84.81','http://hl7.org/fhir/sid/icd-10-cm','Lymphangioleiomyomatosis','J8481','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1808_J84.82','J84.82','http://hl7.org/fhir/sid/icd-10-cm','Adult pulmonary Langerhans cell histiocytosis','J8482','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1808_J84.83','J84.83','http://hl7.org/fhir/sid/icd-10-cm','Surfactant mutations of the lung','J8483','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1808_J84.84','J84.84','http://hl7.org/fhir/sid/icd-10-cm','Other interstitial lung diseases of childhood','J8484','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1808_J84.841','J84.841','http://hl7.org/fhir/sid/icd-10-cm','Neuroendocrine cell hyperplasia of infancy','J84841','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1808_J84.842','J84.842','http://hl7.org/fhir/sid/icd-10-cm','Pulmonary interstitial glycogenosis','J84842','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1808_J84.843','J84.843','http://hl7.org/fhir/sid/icd-10-cm','Alveolar capillary dysplasia with vein misalignment','J84843','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1808_J84.848','J84.848','http://hl7.org/fhir/sid/icd-10-cm','Other interstitial lung diseases of childhood','J84848','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1808_J84.89','J84.89','http://hl7.org/fhir/sid/icd-10-cm','Other specified interstitial pulmonary diseases','J8489','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1808_J84.9','J84.9','http://hl7.org/fhir/sid/icd-10-cm','Interstitial pulmonary disease, unspecified','J849','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1808_J84.1','J84.1','http://hl7.org/fhir/sid/icd-10-cm','Other interstitial pulmonary diseases with fibrosis','J841','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1808_J84.10','J84.10','http://hl7.org/fhir/sid/icd-10-cm','Pulmonary fibrosis, unspecified','J8410','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1808_J84.112','J84.112','http://hl7.org/fhir/sid/icd-10-cm','Idiopathic pulmonary fibrosis','J84112','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1808_J84.17','J84.17','http://hl7.org/fhir/sid/icd-10-cm','Other interstitial pulmonary diseases with fibrosis in diseases classified elsewhere','J8417','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1808_J84.178','J84.178','http://hl7.org/fhir/sid/icd-10-cm','Other interstitial pulmonary diseases with fibrosis in diseases classified elsewhere','J84178','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1809_1017196003','1017196003','http://snomed.info/sct','Interstitial pulmonary fibrosis due to inhalation of substance (disorder)','1017196003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1809_233726000','233726000','http://snomed.info/sct','Localized pulmonary fibrosis (disorder)','233726000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1809_266368002','266368002','http://snomed.info/sct','Post-inflammatory pulmonary fibrosis (disorder)','266368002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1809_30042003','30042003','http://snomed.info/sct','Confluent fibrosis of lung (disorder)','30042003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1809_3514002','3514002','http://snomed.info/sct','Peribronchial fibrosis of lung (disorder)','3514002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1809_36599006','36599006','http://snomed.info/sct','Chronic fibrosis of lung (disorder)','36599006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1809_50196008','50196008','http://snomed.info/sct','Perialveolar fibrosis of lung (disorder)','50196008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1809_51615001','51615001','http://snomed.info/sct','Fibrosis of lung (disorder)','51615001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1809_56841008','56841008','http://snomed.info/sct','Massive fibrosis of lung (disorder)','56841008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1809_708030004','708030004','http://snomed.info/sct','Pulmonary emphysema co-occurrent with fibrosis of lung (disorder)','708030004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1809_196125002','196125002','http://snomed.info/sct','Diffuse interstitial pulmonary fibrosis (disorder)','196125002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1809_460561000124109','460561000124109','http://snomed.info/sct','Progressive fibrosing interstitial lung disease (disorder)','460561000124109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1809_700250006','700250006','http://snomed.info/sct','Idiopathic pulmonary fibrosis (disorder)','700250006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1809_789574002','789574002','http://snomed.info/sct','Acute exacerbation of idiopathic pulmonary fibrosis (disorder)','789574002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1809_90610005','90610005','http://snomed.info/sct','Interstitial pulmonary fibrosis of prematurity (disorder)','90610005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1806_J60','J60','http://hl7.org/fhir/sid/icd-10-cm','Coalworker''s pneumoconiosis','J60','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1807_1017196003','1017196003','http://snomed.info/sct','Interstitial pulmonary fibrosis due to inhalation of substance (disorder)','1017196003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1807_1017197007','1017197007','http://snomed.info/sct','Interstitial pulmonary fibrosis due to inhalation of drug (disorder)','1017197007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1807_10713006','10713006','http://snomed.info/sct','Diffuse interstitial rheumatoid disease of lung (disorder)','10713006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1807_1172606002','1172606002','http://snomed.info/sct','Idiopathic pleuroparenchymal fibroelastosis (disorder)','1172606002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1807_129451001','129451001','http://snomed.info/sct','Respiratory bronchiolitis associated interstitial lung disease (disorder)','129451001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1807_129452008','129452008','http://snomed.info/sct','Nonspecific interstitial pneumonia (disorder)','129452008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1807_192658007','192658007','http://snomed.info/sct','Giant cell interstitial pneumonitis (disorder)','192658007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1807_195896004','195896004','http://snomed.info/sct','Pneumonia caused by pleuropneumonia-like organism (disorder)','195896004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1807_196028003','196028003','http://snomed.info/sct','Chronic pulmonary fibrosis caused by chemical fumes (disorder)','196028003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1807_196051003','196051003','http://snomed.info/sct','Drug-induced interstitial lung disorder (disorder)','196051003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1807_196052005','196052005','http://snomed.info/sct','Acute drug-induced interstitial lung disorder (disorder)','196052005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1807_196053000','196053000','http://snomed.info/sct','Chronic drug-induced interstitial lung disorders (disorder)','196053000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1807_196115007','196115007','http://snomed.info/sct','Pulmonary congestion and hypostasis (disorder)','196115007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1807_196116008','196116008','http://snomed.info/sct','Pulmonary hypostasis (disorder)','196116008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1807_196151000','196151000','http://snomed.info/sct','Pulmonary insufficiency following shock (disorder)','196151000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1807_196152007','196152007','http://snomed.info/sct','Pulmonary insufficiency following surgery (disorder)','196152007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1807_196153002','196153002','http://snomed.info/sct','Pulmonary insufficiency following trauma (disorder)','196153002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1807_233623000','233623000','http://snomed.info/sct','Mononuclear interstitial pneumonia (disorder)','233623000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1807_233703007','233703007','http://snomed.info/sct','Interstitial lung disease (disorder)','233703007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1807_233713004','233713004','http://snomed.info/sct','Seasonal cryptogenic organizing pneumonia with biochemical cholestasis (disorder)','233713004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1807_233717003','233717003','http://snomed.info/sct','Diffuse pulmonary neurofibromatosis (disorder)','233717003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1807_236302005','236302005','http://snomed.info/sct','Acute interstitial pneumonia (disorder)','236302005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1807_277844007','277844007','http://snomed.info/sct','Pulmonary lymphangioleiomyomatosis (disorder)','277844007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1807_302913000','302913000','http://snomed.info/sct','Diffuse pulmonary calcinosis (disorder)','302913000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1807_328641000119109','328641000119109','http://snomed.info/sct','Genetic disorder of surfactant dysfunction (disorder)','328641000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1807_328661000119108','328661000119108','http://snomed.info/sct','Interstitial lung disease of childhood (disorder)','328661000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1807_35037009','35037009','http://snomed.info/sct','Primary atypical interstitial pneumonia (disorder)','35037009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1807_40527005','40527005','http://snomed.info/sct','Idiopathic pulmonary hemosiderosis (disorder)','40527005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1807_426437004','426437004','http://snomed.info/sct','Familial idiopathic pulmonary fibrosis (disorder)','426437004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1807_427123006','427123006','http://snomed.info/sct','Interstitial lung disease due to collagen vascular disease (disorder)','427123006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1807_434301000124102','434301000124102','http://snomed.info/sct','Chronic interstitial lung disease (disorder)','434301000124102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1807_44274007','44274007','http://snomed.info/sct','Lymphoid interstitial pneumonia (disorder)','44274007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1807_46970008','46970008','http://snomed.info/sct','Pneumonia caused by Mycoplasma pneumoniae (disorder)','46970008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1807_60125001','60125001','http://snomed.info/sct','Perinatal interstitial emphysema (disorder)','60125001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1807_64667001','64667001','http://snomed.info/sct','Interstitial pneumonia (disorder)','64667001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1807_67782005','67782005','http://snomed.info/sct','Acute respiratory distress syndrome (disorder)','67782005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1807_697923008','697923008','http://snomed.info/sct','Pulmonary hypertension in lymphangioleiomyomatosis (disorder)','697923008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1807_700249006','700249006','http://snomed.info/sct','Idiopathic interstitial pneumonia (disorder)','700249006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1807_704345008','704345008','http://snomed.info/sct','Chronic interstitial pneumonia (disorder)','704345008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1807_707433009','707433009','http://snomed.info/sct','Lymphangioleiomyomatosis due to tuberous sclerosis syndrome (disorder)','707433009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1807_707435002','707435002','http://snomed.info/sct','Neuroendocrine cell hyperplasia of infancy (disorder)','707435002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1807_707541006','707541006','http://snomed.info/sct','Acute respiratory distress in newborn with surfactant disorder (disorder)','707541006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1807_707551007','707551007','http://snomed.info/sct','Pulmonary interstitial glycogenosis (disorder)','707551007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1807_708026002','708026002','http://snomed.info/sct','Chronic pneumonitis of infancy (disorder)','708026002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1807_711379004','711379004','http://snomed.info/sct','Interstitial lung disease due to connective tissue disease (disorder)','711379004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1807_719218000','719218000','http://snomed.info/sct','Cryptogenic organizing pneumonia (disorder)','719218000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1807_723829000','723829000','http://snomed.info/sct','Pulmonary fibrosis, hepatic hyperplasia, bone marrow hypoplasia syndrome (disorder)','723829000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1807_733453005','733453005','http://snomed.info/sct','Congenital nephrotic syndrome, interstitial lung disease, epidermolysis bullosa syndrome (disorder)','733453005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1807_737181009','737181009','http://snomed.info/sct','Interstitial lung disease due to systemic disease (disorder)','737181009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1807_737182002','737182002','http://snomed.info/sct','Interstitial lung disease due to granulomatous disease (disorder)','737182002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1807_737183007','737183007','http://snomed.info/sct','Interstitial lung disease due to metabolic disease (disorder)','737183007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1807_737184001','737184001','http://snomed.info/sct','Interstitial lung disease co-occurrent and due to systemic vasculitis (disorder)','737184001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1807_7548000','7548000','http://snomed.info/sct','Rheumatic pneumonia (disorder)','7548000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1807_770760006','770760006','http://snomed.info/sct','16q24.1 microdeletion syndrome (disorder)','770760006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1807_77690003','77690003','http://snomed.info/sct','Interstitial emphysema of lung (disorder)','77690003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1807_783182004','783182004','http://snomed.info/sct','Chronic respiratory distress with surfactant metabolism deficiency (disorder)','783182004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1807_846637007','846637007','http://snomed.info/sct','Chronic pulmonary fibrosis caused by chemical vapors (disorder)','846637007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1807_8549006','8549006','http://snomed.info/sct','Desquamative interstitial pneumonia (disorder)','8549006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1807_860890006','860890006','http://snomed.info/sct','Fetal interstitial neoplasm of lung (disorder)','860890006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1807_866103007','866103007','http://snomed.info/sct','Interstitial lung disease due to juvenile polymyositis (disorder)','866103007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1807_870573008','870573008','http://snomed.info/sct','Interstitial pneumonia with autoimmune features (disorder)','870573008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1807_233621003','233621003','http://snomed.info/sct','Rickettsial pneumonia (disorder)','233621003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1807_89687005','89687005','http://snomed.info/sct','Postimmersion-submersion syndrome (disorder)','89687005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1807_196125002','196125002','http://snomed.info/sct','Diffuse interstitial pulmonary fibrosis (disorder)','196125002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1807_240629003','240629003','http://snomed.info/sct','Malarial shock lung (disorder)','240629003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1807_460561000124109','460561000124109','http://snomed.info/sct','Progressive fibrosing interstitial lung disease (disorder)','460561000124109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1807_674814021000119106','674814021000119106','http://snomed.info/sct','Acute respiratory distress syndrome due to disease caused by severe acute respiratory syndrome coronavirus 2 (disorder)','674814021000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1807_700250006','700250006','http://snomed.info/sct','Idiopathic pulmonary fibrosis (disorder)','700250006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1807_76090006','76090006','http://snomed.info/sct','Pittsburgh pneumonia (disorder)','76090006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1807_789574002','789574002','http://snomed.info/sct','Acute exacerbation of idiopathic pulmonary fibrosis (disorder)','789574002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1807_90610005','90610005','http://snomed.info/sct','Interstitial pulmonary fibrosis of prematurity (disorder)','90610005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.620_271567008','271567008','http://snomed.info/sct','Whooping cough-like syndrome (disorder)','271567008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.620_60537006','60537006','http://snomed.info/sct','Whooping respiration (finding)','60537006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.621_A37.90','A37.90','http://hl7.org/fhir/sid/icd-10-cm','Whooping cough, unspecified species without pneumonia','A3790','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.621_A37.91','A37.91','http://hl7.org/fhir/sid/icd-10-cm','Whooping cough, unspecified species with pneumonia','A3791','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.984_240451000','240451000','http://snomed.info/sct','Streptococcal toxic shock syndrome (disorder)','240451000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.505_18504008','18504008','http://snomed.info/sct','Toxic shock syndrome (disorder)','18504008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.505_240450004','240450004','http://snomed.info/sct','Staphylococcal toxic shock syndrome (disorder)','240450004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.505_127411000119102','127411000119102','http://snomed.info/sct','Toxic shock syndrome caused by methicillin susceptible Staphylococcus aureus (disorder)','127411000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.505_127421000119109','127421000119109','http://snomed.info/sct','Toxic shock syndrome caused by methicillin resistant Staphylococcus aureus infection (disorder)','127421000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1936_B78','B78','http://hl7.org/fhir/sid/icd-10-cm','Strongyloidiasis','B78','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1936_B78.0','B78.0','http://hl7.org/fhir/sid/icd-10-cm','Intestinal strongyloidiasis','B780','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1936_B78.1','B78.1','http://hl7.org/fhir/sid/icd-10-cm','Cutaneous strongyloidiasis','B781','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1936_B78.7','B78.7','http://hl7.org/fhir/sid/icd-10-cm','Disseminated strongyloidiasis','B787','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1936_B78.9','B78.9','http://hl7.org/fhir/sid/icd-10-cm','Strongyloidiasis, unspecified','B789','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1816_14683004','14683004','http://snomed.info/sct','Relapsing fever caused by Borrelia recurrentis (disorder)','14683004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1813_B86','B86','http://hl7.org/fhir/sid/icd-10-cm','Scabies','B86','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1935_1163484003','1163484003','http://snomed.info/sct','Disorder of glomerulus due to infection caused by Strongyloides (disorder)','1163484003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1935_1177070000','1177070000','http://snomed.info/sct','Duodenitis caused by Strongyloides (disorder)','1177070000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1935_1214006','1214006','http://snomed.info/sct','Infection caused by Strongyloides (disorder)','1214006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1935_17425008','17425008','http://snomed.info/sct','Infection caused by Strongyloides stercoralis (disorder)','17425008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1935_187174008','187174008','http://snomed.info/sct','Intestinal strongyloidiasis (disorder)','187174008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1935_187176005','187176005','http://snomed.info/sct','Disseminated strongyloidiasis (disorder)','187176005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1935_18956009','18956009','http://snomed.info/sct','Infection caused by Strongyloides ransomi (disorder)','18956009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1935_19549003','19549003','http://snomed.info/sct','Infection caused by Strongyloides cebus (disorder)','19549003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1935_240855004','240855004','http://snomed.info/sct','Strongyloides cutaneous larva currens (disorder)','240855004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1935_240858002','240858002','http://snomed.info/sct','Massive strongyloidiasis (disorder)','240858002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1935_3254001','3254001','http://snomed.info/sct','Infection caused by Strongyloides westeri (disorder)','3254001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1935_403130009','403130009','http://snomed.info/sct','Urticaria due to strongyloidiasis (disorder)','403130009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1935_55629005','55629005','http://snomed.info/sct','Infection caused by Strongyloides tumefaciens (disorder)','55629005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1935_63121009','63121009','http://snomed.info/sct','Infection caused by Strongyloides canis (disorder)','63121009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1935_71844000','71844000','http://snomed.info/sct','Infection caused by Strongyloides ratti (disorder)','71844000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1935_72783005','72783005','http://snomed.info/sct','Infection caused by Strongyloides fulleborni (disorder)','72783005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1935_82919002','82919002','http://snomed.info/sct','Infection caused by Strongyloides papillosus (disorder)','82919002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1935_84910004','84910004','http://snomed.info/sct','Infection caused by Strongyloides simiae (disorder)','84910004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1935_860887000','860887000','http://snomed.info/sct','Gastritis caused by Strongyloides stercoralis (disorder)','860887000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1935_870326003','870326003','http://snomed.info/sct','Parasitic infection of colon caused by Strongyloides (disorder)','870326003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1935_1163542009','1163542009','http://snomed.info/sct','Meningitis caused by Strongyloides stercoralis (disorder)','1163542009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1935_421883002','421883002','http://snomed.info/sct','Strongyloidiasis with acquired immunodeficiency syndrome (disorder)','421883002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1935_713339002','713339002','http://snomed.info/sct','Infection caused by Strongyloides co-occurrent with human immunodeficiency virus infection (disorder)','713339002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1935_713445006','713445006','http://snomed.info/sct','Disseminated infection caused by Strongyloides co-occurrent with human immunodeficiency virus infection (disorder)','713445006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1812_128869009','128869009','http://snomed.info/sct','Infestation caused by Sarcoptes scabiei var hominis (disorder)','128869009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1812_128870005','128870005','http://snomed.info/sct','Crusted scabies (disorder)','128870005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1812_25288006','25288006','http://snomed.info/sct','Infestation caused by Sarcoptes scabiei var equi (disorder)','25288006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1812_37543002','37543002','http://snomed.info/sct','Infestation caused by Sarcoptes scabiei var suis (disorder)','37543002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1812_44065001','44065001','http://snomed.info/sct','Infestation caused by Sarcoptes scabiei var canis (disorder)','44065001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1812_44563002','44563002','http://snomed.info/sct','Infestation caused by Sarcoptes scabiei var bovis (disorder)','44563002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1812_7917000','7917000','http://snomed.info/sct','Infestation caused by Sarcoptes scabiei var ovis (disorder)','7917000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1810_J84.1','J84.1','http://hl7.org/fhir/sid/icd-10-cm','Other interstitial pulmonary diseases with fibrosis','J841','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1810_J84.10','J84.10','http://hl7.org/fhir/sid/icd-10-cm','Pulmonary fibrosis, unspecified','J8410','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1810_J84.112','J84.112','http://hl7.org/fhir/sid/icd-10-cm','Idiopathic pulmonary fibrosis','J84112','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1810_J84.17','J84.17','http://hl7.org/fhir/sid/icd-10-cm','Other interstitial pulmonary diseases with fibrosis in diseases classified elsewhere','J8417','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1810_J84.178','J84.178','http://hl7.org/fhir/sid/icd-10-cm','Other interstitial pulmonary diseases with fibrosis in diseases classified elsewhere','J84178','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1817_A68.0','A68.0','http://hl7.org/fhir/sid/icd-10-cm','Louse-borne relapsing fever','A680','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.610_A71','A71','http://hl7.org/fhir/sid/icd-10-cm','Trachoma','A71','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.610_A71.0','A71.0','http://hl7.org/fhir/sid/icd-10-cm','Initial stage of trachoma','A710','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.610_A71.1','A71.1','http://hl7.org/fhir/sid/icd-10-cm','Active stage of trachoma','A711','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.610_A71.9','A71.9','http://hl7.org/fhir/sid/icd-10-cm','Trachoma, unspecified','A719','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.610_B94.0','B94.0','http://hl7.org/fhir/sid/icd-10-cm','Sequelae of trachoma','B940','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.853_398447004','398447004','http://snomed.info/sct','Severe acute respiratory syndrome (disorder)','398447004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.853_408688009','408688009','http://snomed.info/sct','Healthcare associated severe acute respiratory syndrome (disorder)','408688009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.853_441590008','441590008','http://snomed.info/sct','Pneumonia caused by Severe acute respiratory syndrome coronavirus (disorder)','441590008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.853_715882005','715882005','http://snomed.info/sct','Severe acute respiratory syndrome of upper respiratory tract (disorder)','715882005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.733_551621000124109','551621000124109','http://snomed.info/sct','Perinatal hepatitis caused by Hepatitis B virus (disorder)','551621000124109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.733_60498001','60498001','http://snomed.info/sct','Congenital viral hepatitis B infection (disorder)','60498001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.734_103611000119102','103611000119102','http://snomed.info/sct','Cirrhosis of liver due to hepatitis B (disorder)','103611000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.734_111891008','111891008','http://snomed.info/sct','Viral hepatitis B without hepatic coma (disorder)','111891008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.734_26206000','26206000','http://snomed.info/sct','Hepatic coma due to viral hepatitis B (disorder)','26206000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.734_53425008','53425008','http://snomed.info/sct','Anicteric type B viral hepatitis (disorder)','53425008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.734_66071002','66071002','http://snomed.info/sct','Viral hepatitis type B (disorder)','66071002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.734_442134007','442134007','http://snomed.info/sct','Hepatitis B associated with Human immunodeficiency virus infection (disorder)','442134007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.734_442374005','442374005','http://snomed.info/sct','Hepatitis B and hepatitis C (disorder)','442374005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1826_1148763004','1148763004','http://snomed.info/sct','Acute rheumatic fever with carditis (disorder)','1148763004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1826_1155919006','1155919006','http://snomed.info/sct','Acute rheumatic fever with aortitis (disorder)','1155919006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1826_123950001','123950001','http://snomed.info/sct','Rheumatic chorea without heart involvement (disorder)','123950001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1826_15676002','15676002','http://snomed.info/sct','Acute rheumatic fever with pericarditis (disorder)','15676002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1826_18192007','18192007','http://snomed.info/sct','Acute rheumatic fever with endocarditis (disorder)','18192007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1826_194709000','194709000','http://snomed.info/sct','Acute rheumatic fever with myocarditis (disorder)','194709000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1826_195528001','195528001','http://snomed.info/sct','Acute rheumatic fever (disorder)','195528001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1826_200951007','200951007','http://snomed.info/sct','Erythema marginatum in acute rheumatic fever (disorder)','200951007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1826_240041006','240041006','http://snomed.info/sct','Rheumatic fever nodule (disorder)','240041006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1826_24363009','24363009','http://snomed.info/sct','Rheumatic fever without heart involvement (disorder)','24363009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1826_312591002','312591002','http://snomed.info/sct','Acute rheumatic fever with heart disease (disorder)','312591002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1826_38933006','38933006','http://snomed.info/sct','Recurrent rheumatic fever (disorder)','38933006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1826_46826000','46826000','http://snomed.info/sct','Rheumatic chorea (disorder)','46826000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1826_57803009','57803009','http://snomed.info/sct','Rheumatic chorea with heart involvement (disorder)','57803009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1826_58718002','58718002','http://snomed.info/sct','Rheumatic fever (disorder)','58718002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1826_64072006','64072006','http://snomed.info/sct','Acute rheumatic fever with pancarditis (disorder)','64072006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1826_703119002','703119002','http://snomed.info/sct','Carditis due to rheumatic fever (disorder)','703119002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1826_81077008','81077008','http://snomed.info/sct','Acute rheumatic fever with acute arthritis (disorder)','81077008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1826_84871007','84871007','http://snomed.info/sct','Acute rheumatic fever with valvulitis (disorder)','84871007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1948_404237007','404237007','http://snomed.info/sct','Keystone virus encephalitis (disorder)','404237007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1948_404243009','404243009','http://snomed.info/sct','Meningitis caused by Keystone virus (disorder)','404243009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1706_A83','A83','http://hl7.org/fhir/sid/icd-10-cm','Mosquito-borne viral encephalitis','A83','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1706_A84','A84','http://hl7.org/fhir/sid/icd-10-cm','Tick-borne viral encephalitis','A84','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1706_A84.8','A84.8','http://hl7.org/fhir/sid/icd-10-cm','Other tick-borne viral encephalitis','A848','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1706_A85','A85','http://hl7.org/fhir/sid/icd-10-cm','Other viral encephalitis, not elsewhere classified','A85','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1706_B10.0','B10.0','http://hl7.org/fhir/sid/icd-10-cm','Other human herpesvirus encephalitis','B100','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1706_A81.1','A81.1','http://hl7.org/fhir/sid/icd-10-cm','Subacute sclerosing panencephalitis','A811','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1706_A83.4','A83.4','http://hl7.org/fhir/sid/icd-10-cm','Australian encephalitis','A834','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1706_A85.1','A85.1','http://hl7.org/fhir/sid/icd-10-cm','Adenoviral encephalitis','A851','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1706_A85.8','A85.8','http://hl7.org/fhir/sid/icd-10-cm','Other specified viral encephalitis','A858','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1706_A86','A86','http://hl7.org/fhir/sid/icd-10-cm','Unspecified viral encephalitis','A86','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1706_B00.4','B00.4','http://hl7.org/fhir/sid/icd-10-cm','Herpesviral encephalitis','B004','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1706_B01.1','B01.1','http://hl7.org/fhir/sid/icd-10-cm','Varicella encephalitis, myelitis and encephalomyelitis','B011','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1706_B02.0','B02.0','http://hl7.org/fhir/sid/icd-10-cm','Zoster encephalitis','B020','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1706_B10.01','B10.01','http://hl7.org/fhir/sid/icd-10-cm','Human herpesvirus 6 encephalitis','B1001','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1706_B10.09','B10.09','http://hl7.org/fhir/sid/icd-10-cm','Other human herpesvirus encephalitis','B1009','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1706_A52.14','A52.14','http://hl7.org/fhir/sid/icd-10-cm','Late syphilitic encephalitis','A5214','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1706_A83.0','A83.0','http://hl7.org/fhir/sid/icd-10-cm','Japanese encephalitis','A830','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1706_A83.1','A83.1','http://hl7.org/fhir/sid/icd-10-cm','Western equine encephalitis','A831','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1706_A83.2','A83.2','http://hl7.org/fhir/sid/icd-10-cm','Eastern equine encephalitis','A832','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1706_A83.3','A83.3','http://hl7.org/fhir/sid/icd-10-cm','St Louis encephalitis','A833','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1706_A83.8','A83.8','http://hl7.org/fhir/sid/icd-10-cm','Other mosquito-borne viral encephalitis','A838','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1706_A83.9','A83.9','http://hl7.org/fhir/sid/icd-10-cm','Mosquito-borne viral encephalitis, unspecified','A839','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1706_A84.0','A84.0','http://hl7.org/fhir/sid/icd-10-cm','Far Eastern tick-borne encephalitis [Russian spring-summer encephalitis]','A840','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1706_A84.1','A84.1','http://hl7.org/fhir/sid/icd-10-cm','Central European tick-borne encephalitis','A841','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1706_A84.89','A84.89','http://hl7.org/fhir/sid/icd-10-cm','Other tick-borne viral encephalitis','A8489','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1706_A84.9','A84.9','http://hl7.org/fhir/sid/icd-10-cm','Tick-borne viral encephalitis, unspecified','A849','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1706_A85.0','A85.0','http://hl7.org/fhir/sid/icd-10-cm','Enteroviral encephalitis','A850','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1706_A85.2','A85.2','http://hl7.org/fhir/sid/icd-10-cm','Arthropod-borne viral encephalitis, unspecified','A852','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1706_A92.31','A92.31','http://hl7.org/fhir/sid/icd-10-cm','West Nile virus infection with encephalitis','A9231','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1706_B01.11','B01.11','http://hl7.org/fhir/sid/icd-10-cm','Varicella encephalitis and encephalomyelitis','B0111','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1706_B05.0','B05.0','http://hl7.org/fhir/sid/icd-10-cm','Measles complicated by encephalitis','B050','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1706_B26.2','B26.2','http://hl7.org/fhir/sid/icd-10-cm','Mumps encephalitis','B262','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1706_A50.42','A50.42','http://hl7.org/fhir/sid/icd-10-cm','Late congenital syphilitic encephalitis','A5042','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1706_A83.5','A83.5','http://hl7.org/fhir/sid/icd-10-cm','California encephalitis','A835','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1706_B06.01','B06.01','http://hl7.org/fhir/sid/icd-10-cm','Rubella encephalitis','B0601','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1705_A32.1','A32.1','http://hl7.org/fhir/sid/icd-10-cm','Listerial meningitis and meningoencephalitis','A321','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1705_A42.82','A42.82','http://hl7.org/fhir/sid/icd-10-cm','Actinomycotic encephalitis','A4282','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1705_G04.2','G04.2','http://hl7.org/fhir/sid/icd-10-cm','Bacterial meningoencephalitis and meningomyelitis, not elsewhere classified','G042','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1705_A17.82','A17.82','http://hl7.org/fhir/sid/icd-10-cm','Tuberculous meningoencephalitis','A1782','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1705_A32.12','A32.12','http://hl7.org/fhir/sid/icd-10-cm','Listerial meningoencephalitis','A3212','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1705_A39.81','A39.81','http://hl7.org/fhir/sid/icd-10-cm','Meningococcal encephalitis','A3981','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1825_I00','I00','http://hl7.org/fhir/sid/icd-10-cm','Rheumatic fever without heart involvement','I00','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1825_I01.0','I01.0','http://hl7.org/fhir/sid/icd-10-cm','Acute rheumatic pericarditis','I010','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1825_I01.1','I01.1','http://hl7.org/fhir/sid/icd-10-cm','Acute rheumatic endocarditis','I011','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1825_I01.2','I01.2','http://hl7.org/fhir/sid/icd-10-cm','Acute rheumatic myocarditis','I012','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1825_I01.8','I01.8','http://hl7.org/fhir/sid/icd-10-cm','Other acute rheumatic heart disease','I018','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1825_I01.9','I01.9','http://hl7.org/fhir/sid/icd-10-cm','Acute rheumatic heart disease, unspecified','I019','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1825_I02.0','I02.0','http://hl7.org/fhir/sid/icd-10-cm','Rheumatic chorea with heart involvement','I020','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1825_I02.9','I02.9','http://hl7.org/fhir/sid/icd-10-cm','Rheumatic chorea without heart involvement','I029','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_111851005','111851005','http://snomed.info/sct','Subacute adenoviral encephalitis (disorder)','111851005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_111897007','111897007','http://snomed.info/sct','Acute necrotizing encephalitis (disorder)','111897007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_1144966008','1144966008','http://snomed.info/sct','Encephalitis caused by Herpes simplex virus 1 (disorder)','1144966008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_1144968009','1144968009','http://snomed.info/sct','Encephalitis caused by Herpes simplex virus 2 (disorder)','1144968009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_1163056000','1163056000','http://snomed.info/sct','Encephalitis caused by Mokola virus (disorder)','1163056000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_1163060002','1163060002','http://snomed.info/sct','Encephalitis caused by Lagos bat virus (disorder)','1163060002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_1163061003','1163061003','http://snomed.info/sct','Encephalitis caused by human T-lymphotropic virus type 1 (disorder)','1163061003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_1163062005','1163062005','http://snomed.info/sct','Encephalitis caused by human T-lymphotropic virus type 2 (disorder)','1163062005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_1163063000','1163063000','http://snomed.info/sct','Encephalitis caused by human herpesvirus 8 (disorder)','1163063000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_1163064006','1163064006','http://snomed.info/sct','Encephalitis caused by Hantaan virus (disorder)','1163064006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_1163065007','1163065007','http://snomed.info/sct','Encephalitis caused by Human betaherpesvirus 7 (disorder)','1163065007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_1163068009','1163068009','http://snomed.info/sct','Encephalitis caused by Vesiculovirus (disorder)','1163068009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_1163070000','1163070000','http://snomed.info/sct','Encephalitis caused by Retroviridae (disorder)','1163070000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_1163072008','1163072008','http://snomed.info/sct','Encephalitis caused by human parechovirus (disorder)','1163072008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_1163074009','1163074009','http://snomed.info/sct','Encephalitis caused by Paramyxoviridae (disorder)','1163074009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_1163076006','1163076006','http://snomed.info/sct','Encephalitis caused by Morbillivirus (disorder)','1163076006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_1163078007','1163078007','http://snomed.info/sct','Encephalitis caused by Orthopoxvirus (disorder)','1163078007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_1163096003','1163096003','http://snomed.info/sct','Encephalitis caused by Filoviridae (disorder)','1163096003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_1163099005','1163099005','http://snomed.info/sct','Encephalitis caused by human herpesvirus 4 (disorder)','1163099005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_1163102005','1163102005','http://snomed.info/sct','Encephalitis caused by Bunyaviridae (disorder)','1163102005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_1163103000','1163103000','http://snomed.info/sct','Encephalitis caused by Australian bat lyssavirus (disorder)','1163103000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_1163104006','1163104006','http://snomed.info/sct','Encephalitis caused by BK polyomavirus (disorder)','1163104006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_1163105007','1163105007','http://snomed.info/sct','Encephalitis caused by Alfuy virus (disorder)','1163105007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_1163106008','1163106008','http://snomed.info/sct','Encephalitis caused by Arenavirus (disorder)','1163106008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_1163533002','1163533002','http://snomed.info/sct','Encephalitis caused by Kokobera virus (disorder)','1163533002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_1163548008','1163548008','http://snomed.info/sct','Encephalitis caused by Vilyuisk human encephalitis virus (disorder)','1163548008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_1163551001','1163551001','http://snomed.info/sct','Encephalitis caused by Louping ill virus (disorder)','1163551001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_1163552008','1163552008','http://snomed.info/sct','Encephalitis caused by Koutango virus (disorder)','1163552008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_1177044001','1177044001','http://snomed.info/sct','Encephalitis caused by Sin Nombre virus (disorder)','1177044001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_1177045000','1177045000','http://snomed.info/sct','Encephalitis caused by Stratford virus (disorder)','1177045000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_1177071001','1177071001','http://snomed.info/sct','Encephalitis caused by Puumala virus (disorder)','1177071001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_15316002','15316002','http://snomed.info/sct','Simian B encephalomyelitis (disorder)','15316002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_16901001','16901001','http://snomed.info/sct','Encephalitis caused by European subtype of tick-borne encephalitis virus (disorder)','16901001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_186498004','186498004','http://snomed.info/sct','Epidemic encephalitis (disorder)','186498004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_186499007','186499007','http://snomed.info/sct','Encephalitis lethargica (disorder)','186499007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_186591007','186591007','http://snomed.info/sct','Encephalitis caused by Far Eastern tick-borne encephalitis virus (disorder)','186591007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_192685000','192685000','http://snomed.info/sct','Subacute sclerosing panencephalitis (disorder)','192685000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_230161000','230161000','http://snomed.info/sct','Acute viral encephalitis (disorder)','230161000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_230168006','230168006','http://snomed.info/sct','Tensaw encephalitis (disorder)','230168006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_230170002','230170002','http://snomed.info/sct','Kumlinge virus encephalitis (disorder)','230170002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_230174006','230174006','http://snomed.info/sct','Rhabdovirus encephalitis (disorder)','230174006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_230175007','230175007','http://snomed.info/sct','Infectious mononucleosis encephalitis (disorder)','230175007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_230176008','230176008','http://snomed.info/sct','Herpes zoster encephalitis (disorder)','230176008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_230177004','230177004','http://snomed.info/sct','Herpes simiae encephalitis (disorder)','230177004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_230179001','230179001','http://snomed.info/sct','Chronic viral encephalitis (disorder)','230179001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_34476008','34476008','http://snomed.info/sct','Viral encephalitis (disorder)','34476008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_35640008','35640008','http://snomed.info/sct','Acute adenoviral encephalitis (disorder)','35640008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_359686005','359686005','http://snomed.info/sct','Van Bogaert''s sclerosing leukoencephalitis (disorder)','359686005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_40230002','40230002','http://snomed.info/sct','Encephalitis caused by Langat virus (disorder)','40230002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_407472000','407472000','http://snomed.info/sct','Nairoviral encephalitis (disorder)','407472000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_415347009','415347009','http://snomed.info/sct','Rio Bravo viral encephalitis (disorder)','415347009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_415525005','415525005','http://snomed.info/sct','Encephalitis caused by Siberian tick-borne encephalitis virus (disorder)','415525005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_417872000','417872000','http://snomed.info/sct','Neuroinvasive Cache Valley encephalitis virus infection (disorder)','417872000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_427796004','427796004','http://snomed.info/sct','Encephalitis caused by human herpes simplex virus (disorder)','427796004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_428635007','428635007','http://snomed.info/sct','Primary viral encephalitis (disorder)','428635007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_428638009','428638009','http://snomed.info/sct','Encephalitis caused by Herpesvirus (disorder)','428638009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_430051000124107','430051000124107','http://snomed.info/sct','Meningoencephalitis caused by virus (disorder)','430051000124107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_441512004','441512004','http://snomed.info/sct','Encephalitis caused by human herpesvirus 6 infection (disorder)','441512004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_56529007','56529007','http://snomed.info/sct','Adenoviral encephalitis (disorder)','56529007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_6955002','6955002','http://snomed.info/sct','Negishi encephalitis (disorder)','6955002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_71105005','71105005','http://snomed.info/sct','Ilheus virus encephalitis (disorder)','71105005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_712986001','712986001','http://snomed.info/sct','Encephalitis caused by tick-borne encephalitis virus (disorder)','712986001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_721766005','721766005','http://snomed.info/sct','Encephalitis caused by Alphavirus (disorder)','721766005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_721776008','721776008','http://snomed.info/sct','Encephalitis caused by Polyoma virus (disorder)','721776008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_721788005','721788005','http://snomed.info/sct','Encephalitis caused by Rubulavirus (disorder)','721788005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_721790006','721790006','http://snomed.info/sct','Encephalitis caused by Hendra virus (disorder)','721790006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_76474001','76474001','http://snomed.info/sct','Herpetic acute necrotizing encephalitis (disorder)','76474001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_788915008','788915008','http://snomed.info/sct','Encephalitis caused by Henipavirus (disorder)','788915008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_82547005','82547005','http://snomed.info/sct','Acute meningoencephalitis caused by Adenovirus (disorder)','82547005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_860868006','860868006','http://snomed.info/sct','Encephalitis caused by Me Tri virus (disorder)','860868006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_9678009','9678009','http://snomed.info/sct','Meningoencephalitis caused by human herpes simplex virus (disorder)','9678009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_111872008','111872008','http://snomed.info/sct','Post measles encephalitis (disorder)','111872008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_1163055001','1163055001','http://snomed.info/sct','Encephalitis caused by Machupo virus (disorder)','1163055001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_1163057009','1163057009','http://snomed.info/sct','Encephalitis caused by Lassa virus (disorder)','1163057009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_1163059007','1163059007','http://snomed.info/sct','Encephalitis caused by Junin virus (disorder)','1163059007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_1163071001','1163071001','http://snomed.info/sct','Encephalitis caused by Rift Valley fever virus (disorder)','1163071001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_1163097007','1163097007','http://snomed.info/sct','Encephalitis caused by Flavivirus (disorder)','1163097007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_1163098002','1163098002','http://snomed.info/sct','Encephalitis caused by human echovirus (disorder)','1163098002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_1163100002','1163100002','http://snomed.info/sct','Encephalitis caused by human coxsackievirus (disorder)','1163100002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_1163550000','1163550000','http://snomed.info/sct','Encephalitis caused by Kyasanur Forest disease virus (disorder)','1163550000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_1177042002','1177042002','http://snomed.info/sct','Encephalitis caused by Toscana virus (disorder)','1177042002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_1179388006','1179388006','http://snomed.info/sct','Encephalitis caused by Usutu virus (disorder)','1179388006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_192687008','192687008','http://snomed.info/sct','Arbovirus encephalitis (disorder)','192687008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_230144003','230144003','http://snomed.info/sct','Chronic echovirus meningoencephalitis (disorder)','230144003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_230162007','230162007','http://snomed.info/sct','Enteroviral encephalitis (disorder)','230162007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_230166005','230166005','http://snomed.info/sct','Rocio virus encephalitis (disorder)','230166005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_309789002','309789002','http://snomed.info/sct','Encephalitis caused by Influenza virus (disorder)','309789002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_31646008','31646008','http://snomed.info/sct','Mumps encephalitis (disorder)','31646008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_40099009','40099009','http://snomed.info/sct','Meningoencephalitis caused by mumps virus (disorder)','40099009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_416543004','416543004','http://snomed.info/sct','Neuroinvasive Powassan encephalitis virus infection (disorder)','416543004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_416659006','416659006','http://snomed.info/sct','Neuroinvasive Venezuelan equine encephalitis virus infection (disorder)','416659006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_417496004','417496004','http://snomed.info/sct','Neuroinvasive Eastern equine encephalitis virus infection (disorder)','417496004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_417607009','417607009','http://snomed.info/sct','Neuroinvasive Saint Louis encephalitis virus infection (disorder)','417607009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_422498005','422498005','http://snomed.info/sct','Neuroinvasive Western equine encephalitis virus infection (disorder)','422498005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_66454007','66454007','http://snomed.info/sct','Murray Valley encephalitis (disorder)','66454007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_70576008','70576008','http://snomed.info/sct','Enteroviral encephalomyelitis (disorder)','70576008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_724542001','724542001','http://snomed.info/sct','Encephalitis caused by Venezuelan equine encephalomyelitis virus (disorder)','724542001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_83159006','83159006','http://snomed.info/sct','Cytomegalovirus encephalitis (disorder)','83159006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_10082001','10082001','http://snomed.info/sct','Progressive rubella panencephalitis (disorder)','10082001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_1163058004','1163058004','http://snomed.info/sct','Encephalitis caused by Lymphocytic choriomeningitis virus (disorder)','1163058004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_1163073003','1163073003','http://snomed.info/sct','Encephalitis caused by human respiratory syncytial virus (disorder)','1163073003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_1163101003','1163101003','http://snomed.info/sct','Encephalitis caused by Dengue virus (disorder)','1163101003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_1163541002','1163541002','http://snomed.info/sct','Meningoencephalitis caused by Lymphocytic choriomeningitis virus (disorder)','1163541002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_1163553003','1163553003','http://snomed.info/sct','Encephalitis caused by Kunjin virus (disorder)','1163553003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_128191000','128191000','http://snomed.info/sct','Encephalomyelitis due to rubella (disorder)','128191000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_192689006','192689006','http://snomed.info/sct','Rubella encephalitis (disorder)','192689006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_392662004','392662004','http://snomed.info/sct','West Nile encephalitis (disorder)','392662004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_398329009','398329009','http://snomed.info/sct','Human immunodeficiency virus encephalitis (disorder)','398329009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_421415007','421415007','http://snomed.info/sct','Subacute adenoviral encephalitis with acquired immunodeficiency syndrome (disorder)','421415007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_52947006','52947006','http://snomed.info/sct','Japanese encephalitis virus disease (disorder)','52947006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_713260006','713260006','http://snomed.info/sct','Subacute adenoviral encephalitis co-occurrent with human immunodeficiency virus infection (disorder)','713260006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_721791005','721791005','http://snomed.info/sct','Encephalitis caused by Nipah virus (disorder)','721791005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_840442003','840442003','http://snomed.info/sct','Encephalitis caused by human immunodeficiency virus type 2 (disorder)','840442003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_840498003','840498003','http://snomed.info/sct','Encephalitis caused by human immunodeficiency virus type 1 (disorder)','840498003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_397961002','397961002','http://snomed.info/sct','Encephalomyelitis caused by lymphocytic choriomeningitis virus (disorder)','397961002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_404235004','404235004','http://snomed.info/sct','Jamestown Canyon virus encephalitis (disorder)','404235004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_13225007','13225007','http://snomed.info/sct','Meningoencephalitis caused by Rubella virus (disorder)','13225007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_302811004','302811004','http://snomed.info/sct','Progressive congenital rubella encephalomyelitis (disorder)','302811004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_417075004','417075004','http://snomed.info/sct','Neuroinvasive California encephalitis virus infection (disorder)','417075004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1700_418531007','418531007','http://snomed.info/sct','California serogroup virus neuroinvasive disease (disorder)','418531007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1943_41723001','41723001','http://snomed.info/sct','Jamestown Canyon virus disease (disorder)','41723001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1943_404238002','404238002','http://snomed.info/sct','Meningitis caused by Jamestown Canyon virus (disorder)','404238002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1943_404235004','404235004','http://snomed.info/sct','Jamestown Canyon virus encephalitis (disorder)','404235004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.609_2576002','2576002','http://snomed.info/sct','Trachoma (disorder)','2576002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.609_27020006','27020006','http://snomed.info/sct','Trachomatous follicular conjunctivitis (disorder)','27020006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.609_29976007','29976007','http://snomed.info/sct','Trachoma, initial stage (disorder)','29976007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.609_52812002','52812002','http://snomed.info/sct','Trachoma, active stage (disorder)','52812002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.609_55555001','55555001','http://snomed.info/sct','Trachomatous pannus (disorder)','55555001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.609_722553006','722553006','http://snomed.info/sct','Sequela of trachoma (disorder)','722553006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1702_230185008','230185008','http://snomed.info/sct','Amebic encephalitis (disorder)','230185008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1702_230186009','230186009','http://snomed.info/sct','Primary amebic encephalitis (disorder)','230186009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1702_418455000','418455000','http://snomed.info/sct','Encephalitis caused by protozoa (disorder)','418455000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1702_71460009','71460009','http://snomed.info/sct','Trypanosomiasis with encephalitis (disorder)','71460009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1702_721815007','721815007','http://snomed.info/sct','Encephalitis caused by Trypanosoma brucei (disorder)','721815007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1702_721818009','721818009','http://snomed.info/sct','Encephalitis caused by Schistosoma (disorder)','721818009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1702_721819001','721819001','http://snomed.info/sct','Encephalitis caused by Schistosoma haematobium (disorder)','721819001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1702_721820007','721820007','http://snomed.info/sct','Encephalitis caused by Schistosoma mansoni (disorder)','721820007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1702_721821006','721821006','http://snomed.info/sct','Encephalitis caused by Schistosoma japonicum (disorder)','721821006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1702_721826001','721826001','http://snomed.info/sct','Encephalitis caused by Coenurus cerebralis (disorder)','721826001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1702_860865009','860865009','http://snomed.info/sct','Encephalitis caused by Trypanosoma brucei gambiense (disorder)','860865009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1702_860866005','860866005','http://snomed.info/sct','Encephalitis caused by Trypanosoma brucei rhodesiense (disorder)','860866005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1702_230187000','230187000','http://snomed.info/sct','Granulomatous amebic encephalitis (disorder)','230187000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1702_1163549000','1163549000','http://snomed.info/sct','Encephalitis caused by Trypanosoma cruzi (disorder)','1163549000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1702_186791009','186791009','http://snomed.info/sct','Plasmodium falciparum malaria with cerebral complications (disorder)','186791009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1702_428175000','428175000','http://snomed.info/sct','Primary amebic encephalitis caused by Naegleria fowleri (disorder)','428175000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1702_52281009','52281009','http://snomed.info/sct','Meningoencephalitis caused by Naegleria (disorder)','52281009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1702_53622003','53622003','http://snomed.info/sct','Cerebral malaria (disorder)','53622003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1702_721823009','721823009','http://snomed.info/sct','Encephalitis caused by Echinococcus granulosus (disorder)','721823009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1702_721825002','721825002','http://snomed.info/sct','Encephalitis caused by Taenia solium (disorder)','721825002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1702_17949000','17949000','http://snomed.info/sct','Meningoencephalitis due to acquired toxoplasmosis (disorder)','17949000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1702_192701001','192701001','http://snomed.info/sct','Toxoplasma encephalitis (disorder)','192701001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1701_187094001','187094001','http://snomed.info/sct','Cerebral cryptococcosis (disorder)','187094001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1701_230183001','230183001','http://snomed.info/sct','Fungal encephalitis (disorder)','230183001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1701_1084741000119103','1084741000119103','http://snomed.info/sct','Meningoencephalitis due to Blastomyces dermatitidis (disorder)','1084741000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1708_B57.42','B57.42','http://hl7.org/fhir/sid/icd-10-cm','Meningoencephalitis in Chagas'' disease','B5742','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1708_B60.11','B60.11','http://hl7.org/fhir/sid/icd-10-cm','Meningoencephalitis due to Acanthamoeba (culbertsoni)','B6011','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1708_B58.2','B58.2','http://hl7.org/fhir/sid/icd-10-cm','Toxoplasma meningoencephalitis','B582','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1707_B40.81','B40.81','http://hl7.org/fhir/sid/icd-10-cm','Blastomycotic meningoencephalitis','B4081','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1949_61094002','61094002','http://snomed.info/sct','La Crosse encephalitis (disorder)','61094002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1949_404240007','404240007','http://snomed.info/sct','Meningitis caused by La Crosse virus (disorder)','404240007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.963_111865007','111865007','http://snomed.info/sct','Disease caused by Flavivirus (disorder)','111865007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.963_16766000','16766000','http://snomed.info/sct','Arbovirus hemorrhagic fever (disorder)','16766000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.963_23097003','23097003','http://snomed.info/sct','Kyasanur Forest disease (disorder)','23097003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.963_28477001','28477001','http://snomed.info/sct','Sindbis fever (disorder)','28477001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.963_30945003','30945003','http://snomed.info/sct','Tahyna fever (disorder)','30945003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.963_400060000','400060000','http://snomed.info/sct','Barmah Forest disease (disorder)','400060000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.963_402917003','402917003','http://snomed.info/sct','Rift valley fever (disorder)','402917003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.963_40610006','40610006','http://snomed.info/sct','Arbovirus infection (disorder)','40610006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.963_417067005','417067005','http://snomed.info/sct','Venezuelan equine encephalitis virus non-neuroinvasive disease (disorder)','417067005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.963_417702007','417702007','http://snomed.info/sct','Disorder caused by Venezuelan equine encephalitis virus (disorder)','417702007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.963_4464003','4464003','http://snomed.info/sct','Rocio virus disease (disorder)','4464003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.963_72880002','72880002','http://snomed.info/sct','Oropouche virus disease (disorder)','72880002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.963_788952008','788952008','http://snomed.info/sct','Hemorrhagic fever caused by Alkhurma virus (disorder)','788952008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.963_789400009','789400009','http://snomed.info/sct','Disease caused by Ross River virus (disorder)','789400009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.963_85579005','85579005','http://snomed.info/sct','O''nyong-nyong fever (disorder)','85579005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.963_9164007','9164007','http://snomed.info/sct','Mayaro fever (disorder)','9164007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.963_131411000119107','131411000119107','http://snomed.info/sct','Meningitis caused by arbovirus (disorder)','131411000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.963_359673001','359673001','http://snomed.info/sct','Venezuelan hemorrhagic fever (disorder)','359673001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.963_1163071001','1163071001','http://snomed.info/sct','Encephalitis caused by Rift Valley fever virus (disorder)','1163071001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.963_1163097007','1163097007','http://snomed.info/sct','Encephalitis caused by Flavivirus (disorder)','1163097007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.963_1163550000','1163550000','http://snomed.info/sct','Encephalitis caused by Kyasanur Forest disease virus (disorder)','1163550000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.963_1177042002','1177042002','http://snomed.info/sct','Encephalitis caused by Toscana virus (disorder)','1177042002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.963_1179388006','1179388006','http://snomed.info/sct','Encephalitis caused by Usutu virus (disorder)','1179388006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.963_192687008','192687008','http://snomed.info/sct','Arbovirus encephalitis (disorder)','192687008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.963_230166005','230166005','http://snomed.info/sct','Rocio virus encephalitis (disorder)','230166005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.963_416659006','416659006','http://snomed.info/sct','Neuroinvasive Venezuelan equine encephalitis virus infection (disorder)','416659006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.963_66454007','66454007','http://snomed.info/sct','Murray Valley encephalitis (disorder)','66454007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.963_724542001','724542001','http://snomed.info/sct','Encephalitis caused by Venezuelan equine encephalomyelitis virus (disorder)','724542001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.725_698293005','698293005','http://snomed.info/sct','Acute flaccid paralysis (finding)','698293005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.836_1186830008','1186830008','http://snomed.info/sct','Peripheral neuropathy caused by lead (disorder)','1186830008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.836_1186839009','1186839009','http://snomed.info/sct','Cognitive impairment due to lead toxicity (disorder)','1186839009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.836_407151008','407151008','http://snomed.info/sct','Lead level above reference range (finding)','407151008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.836_407152001','407152001','http://snomed.info/sct','Blood lead level above reference range (finding)','407152001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.836_866051002','866051002','http://snomed.info/sct','Motor neuron disease due to lead intoxication (disorder)','866051002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.836_1145155005','1145155005','http://snomed.info/sct','Lead and/or lead compound poisoning (disorder)','1145155005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.836_1145156006','1145156006','http://snomed.info/sct','Accidental poisoning caused by lead and/or lead compound (disorder)','1145156006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.836_216662006','216662006','http://snomed.info/sct','Accidental poisoning by lead paints (disorder)','216662006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.836_216780005','216780005','http://snomed.info/sct','Accidental poisoning caused by lead fumes (disorder)','216780005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.836_230610006','230610006','http://snomed.info/sct','Lead neuropathy (disorder)','230610006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.836_236516001','236516001','http://snomed.info/sct','Acute lead nephropathy (disorder)','236516001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.836_36919001','36919001','http://snomed.info/sct','Anemia caused by lead (disorder)','36919001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.836_48152004','48152004','http://snomed.info/sct','Toxic effect of tetraethyl lead (disorder)','48152004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.836_51399001','51399001','http://snomed.info/sct','Toxic encephalopathy caused by lead (disorder)','51399001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.836_67121008','67121008','http://snomed.info/sct','Toxic effect of lead dioxide (disorder)','67121008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.836_704204003','704204003','http://snomed.info/sct','Nephropathy caused by lead (disorder)','704204003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.836_70842005','70842005','http://snomed.info/sct','Toxic effect of lead acetate (disorder)','70842005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.836_72446009','72446009','http://snomed.info/sct','Toxic effect of inorganic lead compound (disorder)','72446009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.836_78405005','78405005','http://snomed.info/sct','Toxic effect of organic lead compound (disorder)','78405005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.836_870676005','870676005','http://snomed.info/sct','Adverse reaction to lead and/or lead compound (disorder)','870676005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_T75.1XXA','T75.1XXA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified effects of drowning and nonfatal submersion, initial encounter','T751XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_T75.1XXD','T75.1XXD','http://hl7.org/fhir/sid/icd-10-cm','Unspecified effects of drowning and nonfatal submersion, subsequent encounter','T751XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_T75.1XXS','T75.1XXS','http://hl7.org/fhir/sid/icd-10-cm','Unspecified effects of drowning and nonfatal submersion, sequela','T751XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.00XA','V90.00XA','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to merchant ship overturning, initial encounter','V9000XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.00XD','V90.00XD','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to merchant ship overturning, subsequent encounter','V9000XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.00XS','V90.00XS','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to merchant ship overturning, sequela','V9000XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.01XA','V90.01XA','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to passenger ship overturning, initial encounter','V9001XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.01XD','V90.01XD','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to passenger ship overturning, subsequent encounter','V9001XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.01XS','V90.01XS','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to passenger ship overturning, sequela','V9001XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.02XA','V90.02XA','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to fishing boat overturning, initial encounter','V9002XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.02XD','V90.02XD','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to fishing boat overturning, subsequent encounter','V9002XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.02XS','V90.02XS','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to fishing boat overturning, sequela','V9002XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.03XA','V90.03XA','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to other powered watercraft overturning, initial encounter','V9003XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.03XD','V90.03XD','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to other powered watercraft overturning, subsequent encounter','V9003XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.03XS','V90.03XS','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to other powered watercraft overturning, sequela','V9003XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.04XA','V90.04XA','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to sailboat overturning, initial encounter','V9004XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.04XD','V90.04XD','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to sailboat overturning, subsequent encounter','V9004XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.04XS','V90.04XS','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to sailboat overturning, sequela','V9004XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.05XA','V90.05XA','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to canoe or kayak overturning, initial encounter','V9005XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.05XD','V90.05XD','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to canoe or kayak overturning, subsequent encounter','V9005XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.05XS','V90.05XS','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to canoe or kayak overturning, sequela','V9005XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.06XA','V90.06XA','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to (nonpowered) inflatable craft overturning, initial encounter','V9006XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.06XD','V90.06XD','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to (nonpowered) inflatable craft overturning, subsequent encounter','V9006XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.06XS','V90.06XS','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to (nonpowered) inflatable craft overturning, sequela','V9006XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.08XA','V90.08XA','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to other unpowered watercraft overturning, initial encounter','V9008XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.08XD','V90.08XD','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to other unpowered watercraft overturning, subsequent encounter','V9008XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.08XS','V90.08XS','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to other unpowered watercraft overturning, sequela','V9008XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.09XA','V90.09XA','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to unspecified watercraft overturning, initial encounter','V9009XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.09XD','V90.09XD','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to unspecified watercraft overturning, subsequent encounter','V9009XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.09XS','V90.09XS','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to unspecified watercraft overturning, sequela','V9009XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.10XA','V90.10XA','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to merchant ship sinking, initial encounter','V9010XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.10XD','V90.10XD','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to merchant ship sinking, subsequent encounter','V9010XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.10XS','V90.10XS','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to merchant ship sinking, sequela','V9010XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.11XA','V90.11XA','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to passenger ship sinking, initial encounter','V9011XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.11XD','V90.11XD','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to passenger ship sinking, subsequent encounter','V9011XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.11XS','V90.11XS','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to passenger ship sinking, sequela','V9011XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.12XA','V90.12XA','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to fishing boat sinking, initial encounter','V9012XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.12XD','V90.12XD','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to fishing boat sinking, subsequent encounter','V9012XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.12XS','V90.12XS','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to fishing boat sinking, sequela','V9012XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.13XA','V90.13XA','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to other powered watercraft sinking, initial encounter','V9013XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.13XD','V90.13XD','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to other powered watercraft sinking, subsequent encounter','V9013XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.13XS','V90.13XS','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to other powered watercraft sinking, sequela','V9013XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.14XA','V90.14XA','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to sailboat sinking, initial encounter','V9014XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.14XD','V90.14XD','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to sailboat sinking, subsequent encounter','V9014XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.14XS','V90.14XS','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to sailboat sinking, sequela','V9014XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.15XA','V90.15XA','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to canoe or kayak sinking, initial encounter','V9015XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.15XD','V90.15XD','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to canoe or kayak sinking, subsequent encounter','V9015XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.15XS','V90.15XS','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to canoe or kayak sinking, sequela','V9015XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.16XA','V90.16XA','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to (nonpowered) inflatable craft sinking, initial encounter','V9016XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.16XD','V90.16XD','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to (nonpowered) inflatable craft sinking, subsequent encounter','V9016XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.16XS','V90.16XS','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to (nonpowered) inflatable craft sinking, sequela','V9016XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.18XA','V90.18XA','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to other unpowered watercraft sinking, initial encounter','V9018XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.18XD','V90.18XD','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to other unpowered watercraft sinking, subsequent encounter','V9018XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.18XS','V90.18XS','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to other unpowered watercraft sinking, sequela','V9018XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.19XA','V90.19XA','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to unspecified watercraft sinking, initial encounter','V9019XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.19XD','V90.19XD','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to unspecified watercraft sinking, subsequent encounter','V9019XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.19XS','V90.19XS','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to unspecified watercraft sinking, sequela','V9019XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.20XA','V90.20XA','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to falling or jumping from burning merchant ship, initial encounter','V9020XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.20XD','V90.20XD','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to falling or jumping from burning merchant ship, subsequent encounter','V9020XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.20XS','V90.20XS','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to falling or jumping from burning merchant ship, sequela','V9020XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.21XA','V90.21XA','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to falling or jumping from burning passenger ship, initial encounter','V9021XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.21XD','V90.21XD','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to falling or jumping from burning passenger ship, subsequent encounter','V9021XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.21XS','V90.21XS','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to falling or jumping from burning passenger ship, sequela','V9021XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.22XA','V90.22XA','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to falling or jumping from burning fishing boat, initial encounter','V9022XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.22XD','V90.22XD','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to falling or jumping from burning fishing boat, subsequent encounter','V9022XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.22XS','V90.22XS','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to falling or jumping from burning fishing boat, sequela','V9022XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.23XA','V90.23XA','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to falling or jumping from other burning powered watercraft, initial encounter','V9023XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.23XD','V90.23XD','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to falling or jumping from other burning powered watercraft, subsequent encounter','V9023XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.23XS','V90.23XS','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to falling or jumping from other burning powered watercraft, sequela','V9023XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.24XA','V90.24XA','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to falling or jumping from burning sailboat, initial encounter','V9024XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.24XD','V90.24XD','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to falling or jumping from burning sailboat, subsequent encounter','V9024XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.24XS','V90.24XS','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to falling or jumping from burning sailboat, sequela','V9024XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.25XA','V90.25XA','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to falling or jumping from burning canoe or kayak, initial encounter','V9025XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.25XD','V90.25XD','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to falling or jumping from burning canoe or kayak, subsequent encounter','V9025XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.25XS','V90.25XS','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to falling or jumping from burning canoe or kayak, sequela','V9025XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.26XA','V90.26XA','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to falling or jumping from burning (nonpowered) inflatable craft, initial encounter','V9026XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.26XD','V90.26XD','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to falling or jumping from burning (nonpowered) inflatable craft, subsequent encounter','V9026XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.26XS','V90.26XS','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to falling or jumping from burning (nonpowered) inflatable craft, sequela','V9026XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.27XA','V90.27XA','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to falling or jumping from burning water-skis, initial encounter','V9027XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.27XD','V90.27XD','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to falling or jumping from burning water-skis, subsequent encounter','V9027XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.27XS','V90.27XS','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to falling or jumping from burning water-skis, sequela','V9027XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.28XA','V90.28XA','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to falling or jumping from other burning unpowered watercraft, initial encounter','V9028XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.28XD','V90.28XD','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to falling or jumping from other burning unpowered watercraft, subsequent encounter','V9028XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.28XS','V90.28XS','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to falling or jumping from other burning unpowered watercraft, sequela','V9028XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.29XA','V90.29XA','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to falling or jumping from unspecified burning watercraft, initial encounter','V9029XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.29XD','V90.29XD','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to falling or jumping from unspecified burning watercraft, subsequent encounter','V9029XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.29XS','V90.29XS','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to falling or jumping from unspecified burning watercraft, sequela','V9029XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.30XA','V90.30XA','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to falling or jumping from crushed merchant ship, initial encounter','V9030XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.30XD','V90.30XD','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to falling or jumping from crushed merchant ship, subsequent encounter','V9030XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.30XS','V90.30XS','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to falling or jumping from crushed merchant ship, sequela','V9030XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.31XA','V90.31XA','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to falling or jumping from crushed passenger ship, initial encounter','V9031XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.31XD','V90.31XD','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to falling or jumping from crushed passenger ship, subsequent encounter','V9031XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.31XS','V90.31XS','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to falling or jumping from crushed passenger ship, sequela','V9031XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.32XA','V90.32XA','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to falling or jumping from crushed fishing boat, initial encounter','V9032XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.32XD','V90.32XD','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to falling or jumping from crushed fishing boat, subsequent encounter','V9032XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.32XS','V90.32XS','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to falling or jumping from crushed fishing boat, sequela','V9032XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.33XA','V90.33XA','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to falling or jumping from other crushed powered watercraft, initial encounter','V9033XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.33XD','V90.33XD','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to falling or jumping from other crushed powered watercraft, subsequent encounter','V9033XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.33XS','V90.33XS','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to falling or jumping from other crushed powered watercraft, sequela','V9033XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.34XA','V90.34XA','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to falling or jumping from crushed sailboat, initial encounter','V9034XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.34XD','V90.34XD','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to falling or jumping from crushed sailboat, subsequent encounter','V9034XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.34XS','V90.34XS','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to falling or jumping from crushed sailboat, sequela','V9034XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.35XA','V90.35XA','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to falling or jumping from crushed canoe or kayak, initial encounter','V9035XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.35XD','V90.35XD','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to falling or jumping from crushed canoe or kayak, subsequent encounter','V9035XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.35XS','V90.35XS','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to falling or jumping from crushed canoe or kayak, sequela','V9035XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.36XA','V90.36XA','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to falling or jumping from crushed (nonpowered) inflatable craft, initial encounter','V9036XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.36XD','V90.36XD','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to falling or jumping from crushed (nonpowered) inflatable craft, subsequent encounter','V9036XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.36XS','V90.36XS','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to falling or jumping from crushed (nonpowered) inflatable craft, sequela','V9036XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.37XA','V90.37XA','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to falling or jumping from crushed water-skis, initial encounter','V9037XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.37XD','V90.37XD','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to falling or jumping from crushed water-skis, subsequent encounter','V9037XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.37XS','V90.37XS','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to falling or jumping from crushed water-skis, sequela','V9037XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.38XA','V90.38XA','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to falling or jumping from other crushed unpowered watercraft, initial encounter','V9038XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.38XD','V90.38XD','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to falling or jumping from other crushed unpowered watercraft, subsequent encounter','V9038XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.38XS','V90.38XS','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to falling or jumping from other crushed unpowered watercraft, sequela','V9038XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.39XA','V90.39XA','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to falling or jumping from crushed unspecified watercraft, initial encounter','V9039XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.39XD','V90.39XD','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to falling or jumping from crushed unspecified watercraft, subsequent encounter','V9039XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.39XS','V90.39XS','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to falling or jumping from crushed unspecified watercraft, sequela','V9039XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.80XA','V90.80XA','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to other accident to merchant ship, initial encounter','V9080XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.80XD','V90.80XD','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to other accident to merchant ship, subsequent encounter','V9080XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.80XS','V90.80XS','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to other accident to merchant ship, sequela','V9080XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.81XA','V90.81XA','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to other accident to passenger ship, initial encounter','V9081XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.81XD','V90.81XD','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to other accident to passenger ship, subsequent encounter','V9081XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.81XS','V90.81XS','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to other accident to passenger ship, sequela','V9081XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.82XA','V90.82XA','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to other accident to fishing boat, initial encounter','V9082XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.82XD','V90.82XD','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to other accident to fishing boat, subsequent encounter','V9082XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.82XS','V90.82XS','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to other accident to fishing boat, sequela','V9082XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.83XA','V90.83XA','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to other accident to other powered watercraft, initial encounter','V9083XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.83XD','V90.83XD','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to other accident to other powered watercraft, subsequent encounter','V9083XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.83XS','V90.83XS','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to other accident to other powered watercraft, sequela','V9083XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.84XA','V90.84XA','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to other accident to sailboat, initial encounter','V9084XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.84XD','V90.84XD','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to other accident to sailboat, subsequent encounter','V9084XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.84XS','V90.84XS','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to other accident to sailboat, sequela','V9084XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.85XA','V90.85XA','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to other accident to canoe or kayak, initial encounter','V9085XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.85XD','V90.85XD','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to other accident to canoe or kayak, subsequent encounter','V9085XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.85XS','V90.85XS','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to other accident to canoe or kayak, sequela','V9085XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.86XA','V90.86XA','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to other accident to (nonpowered) inflatable craft, initial encounter','V9086XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.86XD','V90.86XD','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to other accident to (nonpowered) inflatable craft, subsequent encounter','V9086XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.86XS','V90.86XS','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to other accident to (nonpowered) inflatable craft, sequela','V9086XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.87XA','V90.87XA','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to other accident to water-skis, initial encounter','V9087XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.87XD','V90.87XD','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to other accident to water-skis, subsequent encounter','V9087XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.87XS','V90.87XS','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to other accident to water-skis, sequela','V9087XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.88XA','V90.88XA','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to other accident to other unpowered watercraft, initial encounter','V9088XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.88XD','V90.88XD','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to other accident to other unpowered watercraft, subsequent encounter','V9088XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.88XS','V90.88XS','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to other accident to other unpowered watercraft, sequela','V9088XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.89XA','V90.89XA','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to other accident to unspecified watercraft, initial encounter','V9089XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.89XD','V90.89XD','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to other accident to unspecified watercraft, subsequent encounter','V9089XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V90.89XS','V90.89XS','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to other accident to unspecified watercraft, sequela','V9089XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V92.00XA','V92.00XA','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to fall off merchant ship, initial encounter','V9200XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V92.00XD','V92.00XD','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to fall off merchant ship, subsequent encounter','V9200XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V92.00XS','V92.00XS','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to fall off merchant ship, sequela','V9200XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V92.01XA','V92.01XA','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to fall off passenger ship, initial encounter','V9201XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V92.01XD','V92.01XD','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to fall off passenger ship, subsequent encounter','V9201XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V92.01XS','V92.01XS','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to fall off passenger ship, sequela','V9201XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V92.02XA','V92.02XA','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to fall off fishing boat, initial encounter','V9202XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V92.02XD','V92.02XD','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to fall off fishing boat, subsequent encounter','V9202XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V92.02XS','V92.02XS','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to fall off fishing boat, sequela','V9202XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V92.03XA','V92.03XA','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to fall off other powered watercraft, initial encounter','V9203XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V92.03XD','V92.03XD','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to fall off other powered watercraft, subsequent encounter','V9203XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V92.03XS','V92.03XS','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to fall off other powered watercraft, sequela','V9203XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V92.04XA','V92.04XA','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to fall off sailboat, initial encounter','V9204XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V92.04XD','V92.04XD','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to fall off sailboat, subsequent encounter','V9204XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V92.04XS','V92.04XS','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to fall off sailboat, sequela','V9204XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V92.05XA','V92.05XA','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to fall off canoe or kayak, initial encounter','V9205XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V92.05XD','V92.05XD','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to fall off canoe or kayak, subsequent encounter','V9205XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V92.05XS','V92.05XS','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to fall off canoe or kayak, sequela','V9205XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V92.06XA','V92.06XA','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to fall off (nonpowered) inflatable craft, initial encounter','V9206XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V92.06XD','V92.06XD','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to fall off (nonpowered) inflatable craft, subsequent encounter','V9206XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V92.06XS','V92.06XS','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to fall off (nonpowered) inflatable craft, sequela','V9206XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V92.07XA','V92.07XA','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to fall off water-skis, initial encounter','V9207XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V92.07XD','V92.07XD','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to fall off water-skis, subsequent encounter','V9207XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V92.07XS','V92.07XS','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to fall off water-skis, sequela','V9207XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V92.08XA','V92.08XA','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to fall off other unpowered watercraft, initial encounter','V9208XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V92.08XD','V92.08XD','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to fall off other unpowered watercraft, subsequent encounter','V9208XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V92.08XS','V92.08XS','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to fall off other unpowered watercraft, sequela','V9208XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V92.09XA','V92.09XA','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to fall off unspecified watercraft, initial encounter','V9209XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V92.09XD','V92.09XD','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to fall off unspecified watercraft, subsequent encounter','V9209XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V92.09XS','V92.09XS','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to fall off unspecified watercraft, sequela','V9209XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V92.10XA','V92.10XA','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to being thrown overboard by motion of merchant ship, initial encounter','V9210XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V92.10XD','V92.10XD','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to being thrown overboard by motion of merchant ship, subsequent encounter','V9210XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V92.10XS','V92.10XS','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to being thrown overboard by motion of merchant ship, sequela','V9210XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V92.11XA','V92.11XA','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to being thrown overboard by motion of passenger ship, initial encounter','V9211XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V92.11XD','V92.11XD','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to being thrown overboard by motion of passenger ship, subsequent encounter','V9211XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V92.11XS','V92.11XS','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to being thrown overboard by motion of passenger ship, sequela','V9211XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V92.12XA','V92.12XA','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to being thrown overboard by motion of fishing boat, initial encounter','V9212XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V92.12XD','V92.12XD','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to being thrown overboard by motion of fishing boat, subsequent encounter','V9212XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V92.12XS','V92.12XS','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to being thrown overboard by motion of fishing boat, sequela','V9212XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V92.13XA','V92.13XA','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to being thrown overboard by motion of other powered watercraft, initial encounter','V9213XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V92.13XD','V92.13XD','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to being thrown overboard by motion of other powered watercraft, subsequent encounter','V9213XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V92.13XS','V92.13XS','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to being thrown overboard by motion of other powered watercraft, sequela','V9213XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V92.14XA','V92.14XA','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to being thrown overboard by motion of sailboat, initial encounter','V9214XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V92.14XD','V92.14XD','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to being thrown overboard by motion of sailboat, subsequent encounter','V9214XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V92.14XS','V92.14XS','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to being thrown overboard by motion of sailboat, sequela','V9214XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V92.15XA','V92.15XA','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to being thrown overboard by motion of canoe or kayak, initial encounter','V9215XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V92.15XD','V92.15XD','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to being thrown overboard by motion of canoe or kayak, subsequent encounter','V9215XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V92.15XS','V92.15XS','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to being thrown overboard by motion of canoe or kayak, sequela','V9215XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V92.16XA','V92.16XA','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to being thrown overboard by motion of (nonpowered) inflatable craft, initial encounter','V9216XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V92.16XD','V92.16XD','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to being thrown overboard by motion of (nonpowered) inflatable craft, subsequent encounter','V9216XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V92.16XS','V92.16XS','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to being thrown overboard by motion of (nonpowered) inflatable craft, sequela','V9216XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V92.19XA','V92.19XA','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to being thrown overboard by motion of unspecified watercraft, initial encounter','V9219XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V92.19XD','V92.19XD','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to being thrown overboard by motion of unspecified watercraft, subsequent encounter','V9219XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V92.19XS','V92.19XS','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to being thrown overboard by motion of unspecified watercraft, sequela','V9219XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V92.20XA','V92.20XA','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to being washed overboard from merchant ship, initial encounter','V9220XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V92.20XD','V92.20XD','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to being washed overboard from merchant ship, subsequent encounter','V9220XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V92.20XS','V92.20XS','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to being washed overboard from merchant ship, sequela','V9220XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V92.21XA','V92.21XA','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to being washed overboard from passenger ship, initial encounter','V9221XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V92.21XD','V92.21XD','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to being washed overboard from passenger ship, subsequent encounter','V9221XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V92.21XS','V92.21XS','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to being washed overboard from passenger ship, sequela','V9221XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V92.22XA','V92.22XA','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to being washed overboard from fishing boat, initial encounter','V9222XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V92.22XD','V92.22XD','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to being washed overboard from fishing boat, subsequent encounter','V9222XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V92.22XS','V92.22XS','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to being washed overboard from fishing boat, sequela','V9222XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V92.23XA','V92.23XA','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to being washed overboard from other powered watercraft, initial encounter','V9223XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V92.23XD','V92.23XD','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to being washed overboard from other powered watercraft, subsequent encounter','V9223XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V92.23XS','V92.23XS','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to being washed overboard from other powered watercraft, sequela','V9223XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V92.24XA','V92.24XA','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to being washed overboard from sailboat, initial encounter','V9224XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V92.24XD','V92.24XD','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to being washed overboard from sailboat, subsequent encounter','V9224XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V92.24XS','V92.24XS','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to being washed overboard from sailboat, sequela','V9224XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V92.25XA','V92.25XA','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to being washed overboard from canoe or kayak, initial encounter','V9225XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V92.25XD','V92.25XD','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to being washed overboard from canoe or kayak, subsequent encounter','V9225XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V92.25XS','V92.25XS','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to being washed overboard from canoe or kayak, sequela','V9225XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V92.26XA','V92.26XA','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to being washed overboard from (nonpowered) inflatable craft, initial encounter','V9226XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V92.26XD','V92.26XD','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to being washed overboard from (nonpowered) inflatable craft, subsequent encounter','V9226XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V92.26XS','V92.26XS','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to being washed overboard from (nonpowered) inflatable craft, sequela','V9226XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V92.27XA','V92.27XA','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to being washed overboard from water-skis, initial encounter','V9227XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V92.27XD','V92.27XD','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to being washed overboard from water-skis, subsequent encounter','V9227XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V92.27XS','V92.27XS','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to being washed overboard from water-skis, sequela','V9227XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V92.28XA','V92.28XA','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to being washed overboard from other unpowered watercraft, initial encounter','V9228XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V92.28XD','V92.28XD','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to being washed overboard from other unpowered watercraft, subsequent encounter','V9228XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V92.28XS','V92.28XS','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to being washed overboard from other unpowered watercraft, sequela','V9228XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V92.29XA','V92.29XA','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to being washed overboard from unspecified watercraft, initial encounter','V9229XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V92.29XD','V92.29XD','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to being washed overboard from unspecified watercraft, subsequent encounter','V9229XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_V92.29XS','V92.29XS','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion due to being washed overboard from unspecified watercraft, sequela','V9229XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W16.011A','W16.011A','http://hl7.org/fhir/sid/icd-10-cm','Fall into swimming pool striking water surface causing drowning and submersion, initial encounter','W16011A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W16.011D','W16.011D','http://hl7.org/fhir/sid/icd-10-cm','Fall into swimming pool striking water surface causing drowning and submersion, subsequent encounter','W16011D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W16.011S','W16.011S','http://hl7.org/fhir/sid/icd-10-cm','Fall into swimming pool striking water surface causing drowning and submersion, sequela','W16011S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W16.021A','W16.021A','http://hl7.org/fhir/sid/icd-10-cm','Fall into swimming pool striking bottom causing drowning and submersion, initial encounter','W16021A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W16.021D','W16.021D','http://hl7.org/fhir/sid/icd-10-cm','Fall into swimming pool striking bottom causing drowning and submersion, subsequent encounter','W16021D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W16.021S','W16.021S','http://hl7.org/fhir/sid/icd-10-cm','Fall into swimming pool striking bottom causing drowning and submersion, sequela','W16021S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W16.031A','W16.031A','http://hl7.org/fhir/sid/icd-10-cm','Fall into swimming pool striking wall causing drowning and submersion, initial encounter','W16031A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W16.031D','W16.031D','http://hl7.org/fhir/sid/icd-10-cm','Fall into swimming pool striking wall causing drowning and submersion, subsequent encounter','W16031D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W16.031S','W16.031S','http://hl7.org/fhir/sid/icd-10-cm','Fall into swimming pool striking wall causing drowning and submersion, sequela','W16031S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W16.111A','W16.111A','http://hl7.org/fhir/sid/icd-10-cm','Fall into natural body of water striking water surface causing drowning and submersion, initial encounter','W16111A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W16.111D','W16.111D','http://hl7.org/fhir/sid/icd-10-cm','Fall into natural body of water striking water surface causing drowning and submersion, subsequent encounter','W16111D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W16.111S','W16.111S','http://hl7.org/fhir/sid/icd-10-cm','Fall into natural body of water striking water surface causing drowning and submersion, sequela','W16111S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W16.121A','W16.121A','http://hl7.org/fhir/sid/icd-10-cm','Fall into natural body of water striking bottom causing drowning and submersion, initial encounter','W16121A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W16.121D','W16.121D','http://hl7.org/fhir/sid/icd-10-cm','Fall into natural body of water striking bottom causing drowning and submersion, subsequent encounter','W16121D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W16.121S','W16.121S','http://hl7.org/fhir/sid/icd-10-cm','Fall into natural body of water striking bottom causing drowning and submersion, sequela','W16121S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W16.131A','W16.131A','http://hl7.org/fhir/sid/icd-10-cm','Fall into natural body of water striking side causing drowning and submersion, initial encounter','W16131A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W16.131D','W16.131D','http://hl7.org/fhir/sid/icd-10-cm','Fall into natural body of water striking side causing drowning and submersion, subsequent encounter','W16131D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W16.131S','W16.131S','http://hl7.org/fhir/sid/icd-10-cm','Fall into natural body of water striking side causing drowning and submersion, sequela','W16131S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W16.211A','W16.211A','http://hl7.org/fhir/sid/icd-10-cm','Fall in (into) filled bathtub causing drowning and submersion, initial encounter','W16211A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W16.211D','W16.211D','http://hl7.org/fhir/sid/icd-10-cm','Fall in (into) filled bathtub causing drowning and submersion, subsequent encounter','W16211D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W16.211S','W16.211S','http://hl7.org/fhir/sid/icd-10-cm','Fall in (into) filled bathtub causing drowning and submersion, sequela','W16211S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W16.221A','W16.221A','http://hl7.org/fhir/sid/icd-10-cm','Fall in (into) bucket of water causing drowning and submersion, initial encounter','W16221A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W16.221D','W16.221D','http://hl7.org/fhir/sid/icd-10-cm','Fall in (into) bucket of water causing drowning and submersion, subsequent encounter','W16221D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W16.221S','W16.221S','http://hl7.org/fhir/sid/icd-10-cm','Fall in (into) bucket of water causing drowning and submersion, sequela','W16221S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W16.311A','W16.311A','http://hl7.org/fhir/sid/icd-10-cm','Fall into other water striking water surface causing drowning and submersion, initial encounter','W16311A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W16.311D','W16.311D','http://hl7.org/fhir/sid/icd-10-cm','Fall into other water striking water surface causing drowning and submersion, subsequent encounter','W16311D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W16.311S','W16.311S','http://hl7.org/fhir/sid/icd-10-cm','Fall into other water striking water surface causing drowning and submersion, sequela','W16311S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W16.321A','W16.321A','http://hl7.org/fhir/sid/icd-10-cm','Fall into other water striking bottom causing drowning and submersion, initial encounter','W16321A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W16.321D','W16.321D','http://hl7.org/fhir/sid/icd-10-cm','Fall into other water striking bottom causing drowning and submersion, subsequent encounter','W16321D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W16.321S','W16.321S','http://hl7.org/fhir/sid/icd-10-cm','Fall into other water striking bottom causing drowning and submersion, sequela','W16321S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W16.331A','W16.331A','http://hl7.org/fhir/sid/icd-10-cm','Fall into other water striking wall causing drowning and submersion, initial encounter','W16331A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W16.331D','W16.331D','http://hl7.org/fhir/sid/icd-10-cm','Fall into other water striking wall causing drowning and submersion, subsequent encounter','W16331D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W16.331S','W16.331S','http://hl7.org/fhir/sid/icd-10-cm','Fall into other water striking wall causing drowning and submersion, sequela','W16331S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W16.41XA','W16.41XA','http://hl7.org/fhir/sid/icd-10-cm','Fall into unspecified water causing drowning and submersion, initial encounter','W1641XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W16.41XD','W16.41XD','http://hl7.org/fhir/sid/icd-10-cm','Fall into unspecified water causing drowning and submersion, subsequent encounter','W1641XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W16.41XS','W16.41XS','http://hl7.org/fhir/sid/icd-10-cm','Fall into unspecified water causing drowning and submersion, sequela','W1641XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W16.511A','W16.511A','http://hl7.org/fhir/sid/icd-10-cm','Jumping or diving into swimming pool striking water surface causing drowning and submersion, initial encounter','W16511A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W16.511D','W16.511D','http://hl7.org/fhir/sid/icd-10-cm','Jumping or diving into swimming pool striking water surface causing drowning and submersion, subsequent encounter','W16511D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W16.511S','W16.511S','http://hl7.org/fhir/sid/icd-10-cm','Jumping or diving into swimming pool striking water surface causing drowning and submersion, sequela','W16511S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W16.521A','W16.521A','http://hl7.org/fhir/sid/icd-10-cm','Jumping or diving into swimming pool striking bottom causing drowning and submersion, initial encounter','W16521A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W16.521D','W16.521D','http://hl7.org/fhir/sid/icd-10-cm','Jumping or diving into swimming pool striking bottom causing drowning and submersion, subsequent encounter','W16521D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W16.521S','W16.521S','http://hl7.org/fhir/sid/icd-10-cm','Jumping or diving into swimming pool striking bottom causing drowning and submersion, sequela','W16521S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W16.531A','W16.531A','http://hl7.org/fhir/sid/icd-10-cm','Jumping or diving into swimming pool striking wall causing drowning and submersion, initial encounter','W16531A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W16.531D','W16.531D','http://hl7.org/fhir/sid/icd-10-cm','Jumping or diving into swimming pool striking wall causing drowning and submersion, subsequent encounter','W16531D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W16.531S','W16.531S','http://hl7.org/fhir/sid/icd-10-cm','Jumping or diving into swimming pool striking wall causing drowning and submersion, sequela','W16531S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W16.611A','W16.611A','http://hl7.org/fhir/sid/icd-10-cm','Jumping or diving into natural body of water striking water surface causing drowning and submersion, initial encounter','W16611A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W16.611D','W16.611D','http://hl7.org/fhir/sid/icd-10-cm','Jumping or diving into natural body of water striking water surface causing drowning and submersion, subsequent encounter','W16611D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W16.611S','W16.611S','http://hl7.org/fhir/sid/icd-10-cm','Jumping or diving into natural body of water striking water surface causing drowning and submersion, sequela','W16611S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W16.621A','W16.621A','http://hl7.org/fhir/sid/icd-10-cm','Jumping or diving into natural body of water striking bottom causing drowning and submersion, initial encounter','W16621A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W16.621D','W16.621D','http://hl7.org/fhir/sid/icd-10-cm','Jumping or diving into natural body of water striking bottom causing drowning and submersion, subsequent encounter','W16621D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W16.621S','W16.621S','http://hl7.org/fhir/sid/icd-10-cm','Jumping or diving into natural body of water striking bottom causing drowning and submersion, sequela','W16621S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W16.711A','W16.711A','http://hl7.org/fhir/sid/icd-10-cm','Jumping or diving from boat striking water surface causing drowning and submersion, initial encounter','W16711A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W16.711D','W16.711D','http://hl7.org/fhir/sid/icd-10-cm','Jumping or diving from boat striking water surface causing drowning and submersion, subsequent encounter','W16711D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W16.711S','W16.711S','http://hl7.org/fhir/sid/icd-10-cm','Jumping or diving from boat striking water surface causing drowning and submersion, sequela','W16711S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W16.721A','W16.721A','http://hl7.org/fhir/sid/icd-10-cm','Jumping or diving from boat striking bottom causing drowning and submersion, initial encounter','W16721A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W16.721D','W16.721D','http://hl7.org/fhir/sid/icd-10-cm','Jumping or diving from boat striking bottom causing drowning and submersion, subsequent encounter','W16721D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W16.721S','W16.721S','http://hl7.org/fhir/sid/icd-10-cm','Jumping or diving from boat striking bottom causing drowning and submersion, sequela','W16721S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W16.811A','W16.811A','http://hl7.org/fhir/sid/icd-10-cm','Jumping or diving into other water striking water surface causing drowning and submersion, initial encounter','W16811A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W16.811D','W16.811D','http://hl7.org/fhir/sid/icd-10-cm','Jumping or diving into other water striking water surface causing drowning and submersion, subsequent encounter','W16811D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W16.811S','W16.811S','http://hl7.org/fhir/sid/icd-10-cm','Jumping or diving into other water striking water surface causing drowning and submersion, sequela','W16811S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W16.821A','W16.821A','http://hl7.org/fhir/sid/icd-10-cm','Jumping or diving into other water striking bottom causing drowning and submersion, initial encounter','W16821A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W16.821D','W16.821D','http://hl7.org/fhir/sid/icd-10-cm','Jumping or diving into other water striking bottom causing drowning and submersion, subsequent encounter','W16821D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W16.821S','W16.821S','http://hl7.org/fhir/sid/icd-10-cm','Jumping or diving into other water striking bottom causing drowning and submersion, sequela','W16821S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W16.831A','W16.831A','http://hl7.org/fhir/sid/icd-10-cm','Jumping or diving into other water striking wall causing drowning and submersion, initial encounter','W16831A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W16.831D','W16.831D','http://hl7.org/fhir/sid/icd-10-cm','Jumping or diving into other water striking wall causing drowning and submersion, subsequent encounter','W16831D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W16.831S','W16.831S','http://hl7.org/fhir/sid/icd-10-cm','Jumping or diving into other water striking wall causing drowning and submersion, sequela','W16831S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W16.91XA','W16.91XA','http://hl7.org/fhir/sid/icd-10-cm','Jumping or diving into unspecified water causing drowning and submersion, initial encounter','W1691XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W16.91XD','W16.91XD','http://hl7.org/fhir/sid/icd-10-cm','Jumping or diving into unspecified water causing drowning and submersion, subsequent encounter','W1691XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W16.91XS','W16.91XS','http://hl7.org/fhir/sid/icd-10-cm','Jumping or diving into unspecified water causing drowning and submersion, sequela','W1691XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W22.041A','W22.041A','http://hl7.org/fhir/sid/icd-10-cm','Striking against wall of swimming pool causing drowning and submersion, initial encounter','W22041A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W22.041D','W22.041D','http://hl7.org/fhir/sid/icd-10-cm','Striking against wall of swimming pool causing drowning and submersion, subsequent encounter','W22041D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W22.041S','W22.041S','http://hl7.org/fhir/sid/icd-10-cm','Striking against wall of swimming pool causing drowning and submersion, sequela','W22041S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W65.XXXA','W65.XXXA','http://hl7.org/fhir/sid/icd-10-cm','Accidental drowning and submersion while in bath-tub, initial encounter','W65XXXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W65.XXXD','W65.XXXD','http://hl7.org/fhir/sid/icd-10-cm','Accidental drowning and submersion while in bath-tub, subsequent encounter','W65XXXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W65.XXXS','W65.XXXS','http://hl7.org/fhir/sid/icd-10-cm','Accidental drowning and submersion while in bath-tub, sequela','W65XXXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W67.XXXA','W67.XXXA','http://hl7.org/fhir/sid/icd-10-cm','Accidental drowning and submersion while in swimming-pool, initial encounter','W67XXXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W67.XXXD','W67.XXXD','http://hl7.org/fhir/sid/icd-10-cm','Accidental drowning and submersion while in swimming-pool, subsequent encounter','W67XXXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W67.XXXS','W67.XXXS','http://hl7.org/fhir/sid/icd-10-cm','Accidental drowning and submersion while in swimming-pool, sequela','W67XXXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W69.XXXA','W69.XXXA','http://hl7.org/fhir/sid/icd-10-cm','Accidental drowning and submersion while in natural water, initial encounter','W69XXXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W69.XXXD','W69.XXXD','http://hl7.org/fhir/sid/icd-10-cm','Accidental drowning and submersion while in natural water, subsequent encounter','W69XXXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W69.XXXS','W69.XXXS','http://hl7.org/fhir/sid/icd-10-cm','Accidental drowning and submersion while in natural water, sequela','W69XXXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W73.XXXA','W73.XXXA','http://hl7.org/fhir/sid/icd-10-cm','Other specified cause of accidental non-transport drowning and submersion, initial encounter','W73XXXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W73.XXXD','W73.XXXD','http://hl7.org/fhir/sid/icd-10-cm','Other specified cause of accidental non-transport drowning and submersion, subsequent encounter','W73XXXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W73.XXXS','W73.XXXS','http://hl7.org/fhir/sid/icd-10-cm','Other specified cause of accidental non-transport drowning and submersion, sequela','W73XXXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W74.XXXA','W74.XXXA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified cause of accidental drowning and submersion, initial encounter','W74XXXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W74.XXXD','W74.XXXD','http://hl7.org/fhir/sid/icd-10-cm','Unspecified cause of accidental drowning and submersion, subsequent encounter','W74XXXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_W74.XXXS','W74.XXXS','http://hl7.org/fhir/sid/icd-10-cm','Unspecified cause of accidental drowning and submersion, sequela','W74XXXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_X71.0XXA','X71.0XXA','http://hl7.org/fhir/sid/icd-10-cm','Intentional self-harm by drowning and submersion while in bathtub, initial encounter','X710XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_X71.0XXD','X71.0XXD','http://hl7.org/fhir/sid/icd-10-cm','Intentional self-harm by drowning and submersion while in bathtub, subsequent encounter','X710XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_X71.0XXS','X71.0XXS','http://hl7.org/fhir/sid/icd-10-cm','Intentional self-harm by drowning and submersion while in bathtub, sequela','X710XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_X71.1XXA','X71.1XXA','http://hl7.org/fhir/sid/icd-10-cm','Intentional self-harm by drowning and submersion while in swimming pool, initial encounter','X711XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_X71.1XXD','X71.1XXD','http://hl7.org/fhir/sid/icd-10-cm','Intentional self-harm by drowning and submersion while in swimming pool, subsequent encounter','X711XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_X71.1XXS','X71.1XXS','http://hl7.org/fhir/sid/icd-10-cm','Intentional self-harm by drowning and submersion while in swimming pool, sequela','X711XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_X71.2XXA','X71.2XXA','http://hl7.org/fhir/sid/icd-10-cm','Intentional self-harm by drowning and submersion after jump into swimming pool, initial encounter','X712XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_X71.2XXD','X71.2XXD','http://hl7.org/fhir/sid/icd-10-cm','Intentional self-harm by drowning and submersion after jump into swimming pool, subsequent encounter','X712XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_X71.2XXS','X71.2XXS','http://hl7.org/fhir/sid/icd-10-cm','Intentional self-harm by drowning and submersion after jump into swimming pool, sequela','X712XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_X71.3XXA','X71.3XXA','http://hl7.org/fhir/sid/icd-10-cm','Intentional self-harm by drowning and submersion in natural water, initial encounter','X713XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_X71.3XXD','X71.3XXD','http://hl7.org/fhir/sid/icd-10-cm','Intentional self-harm by drowning and submersion in natural water, subsequent encounter','X713XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_X71.3XXS','X71.3XXS','http://hl7.org/fhir/sid/icd-10-cm','Intentional self-harm by drowning and submersion in natural water, sequela','X713XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_X71.8XXA','X71.8XXA','http://hl7.org/fhir/sid/icd-10-cm','Other intentional self-harm by drowning and submersion, initial encounter','X718XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_X71.8XXD','X71.8XXD','http://hl7.org/fhir/sid/icd-10-cm','Other intentional self-harm by drowning and submersion, subsequent encounter','X718XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_X71.8XXS','X71.8XXS','http://hl7.org/fhir/sid/icd-10-cm','Other intentional self-harm by drowning and submersion, sequela','X718XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_X71.9XXA','X71.9XXA','http://hl7.org/fhir/sid/icd-10-cm','Intentional self-harm by drowning and submersion, unspecified, initial encounter','X719XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_X71.9XXD','X71.9XXD','http://hl7.org/fhir/sid/icd-10-cm','Intentional self-harm by drowning and submersion, unspecified, subsequent encounter','X719XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_X71.9XXS','X71.9XXS','http://hl7.org/fhir/sid/icd-10-cm','Intentional self-harm by drowning and submersion, unspecified, sequela','X719XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_X92.0XXA','X92.0XXA','http://hl7.org/fhir/sid/icd-10-cm','Assault by drowning and submersion while in bathtub, initial encounter','X920XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_X92.0XXD','X92.0XXD','http://hl7.org/fhir/sid/icd-10-cm','Assault by drowning and submersion while in bathtub, subsequent encounter','X920XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_X92.0XXS','X92.0XXS','http://hl7.org/fhir/sid/icd-10-cm','Assault by drowning and submersion while in bathtub, sequela','X920XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_X92.1XXA','X92.1XXA','http://hl7.org/fhir/sid/icd-10-cm','Assault by drowning and submersion while in swimming pool, initial encounter','X921XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_X92.1XXD','X92.1XXD','http://hl7.org/fhir/sid/icd-10-cm','Assault by drowning and submersion while in swimming pool, subsequent encounter','X921XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_X92.1XXS','X92.1XXS','http://hl7.org/fhir/sid/icd-10-cm','Assault by drowning and submersion while in swimming pool, sequela','X921XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_X92.2XXA','X92.2XXA','http://hl7.org/fhir/sid/icd-10-cm','Assault by drowning and submersion after push into swimming pool, initial encounter','X922XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_X92.2XXD','X92.2XXD','http://hl7.org/fhir/sid/icd-10-cm','Assault by drowning and submersion after push into swimming pool, subsequent encounter','X922XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_X92.2XXS','X92.2XXS','http://hl7.org/fhir/sid/icd-10-cm','Assault by drowning and submersion after push into swimming pool, sequela','X922XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_X92.3XXA','X92.3XXA','http://hl7.org/fhir/sid/icd-10-cm','Assault by drowning and submersion in natural water, initial encounter','X923XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_X92.3XXD','X92.3XXD','http://hl7.org/fhir/sid/icd-10-cm','Assault by drowning and submersion in natural water, subsequent encounter','X923XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_X92.3XXS','X92.3XXS','http://hl7.org/fhir/sid/icd-10-cm','Assault by drowning and submersion in natural water, sequela','X923XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_X92.8XXA','X92.8XXA','http://hl7.org/fhir/sid/icd-10-cm','Other assault by drowning and submersion, initial encounter','X928XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_X92.8XXD','X92.8XXD','http://hl7.org/fhir/sid/icd-10-cm','Other assault by drowning and submersion, subsequent encounter','X928XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_X92.8XXS','X92.8XXS','http://hl7.org/fhir/sid/icd-10-cm','Other assault by drowning and submersion, sequela','X928XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_X92.9XXA','X92.9XXA','http://hl7.org/fhir/sid/icd-10-cm','Assault by drowning and submersion, unspecified, initial encounter','X929XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_X92.9XXD','X92.9XXD','http://hl7.org/fhir/sid/icd-10-cm','Assault by drowning and submersion, unspecified, subsequent encounter','X929XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_X92.9XXS','X92.9XXS','http://hl7.org/fhir/sid/icd-10-cm','Assault by drowning and submersion, unspecified, sequela','X929XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_Y21.0XXA','Y21.0XXA','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion while in bathtub, undetermined intent, initial encounter','Y210XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_Y21.0XXD','Y21.0XXD','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion while in bathtub, undetermined intent, subsequent encounter','Y210XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_Y21.0XXS','Y21.0XXS','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion while in bathtub, undetermined intent, sequela','Y210XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_Y21.1XXA','Y21.1XXA','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion after fall into bathtub, undetermined intent, initial encounter','Y211XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_Y21.1XXD','Y21.1XXD','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion after fall into bathtub, undetermined intent, subsequent encounter','Y211XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_Y21.1XXS','Y21.1XXS','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion after fall into bathtub, undetermined intent, sequela','Y211XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_Y21.2XXA','Y21.2XXA','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion while in swimming pool, undetermined intent, initial encounter','Y212XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_Y21.2XXD','Y21.2XXD','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion while in swimming pool, undetermined intent, subsequent encounter','Y212XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_Y21.2XXS','Y21.2XXS','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion while in swimming pool, undetermined intent, sequela','Y212XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_Y21.3XXA','Y21.3XXA','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion after fall into swimming pool, undetermined intent, initial encounter','Y213XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_Y21.3XXD','Y21.3XXD','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion after fall into swimming pool, undetermined intent, subsequent encounter','Y213XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_Y21.3XXS','Y21.3XXS','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion after fall into swimming pool, undetermined intent, sequela','Y213XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_Y21.4XXA','Y21.4XXA','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion in natural water, undetermined intent, initial encounter','Y214XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_Y21.4XXD','Y21.4XXD','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion in natural water, undetermined intent, subsequent encounter','Y214XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_Y21.4XXS','Y21.4XXS','http://hl7.org/fhir/sid/icd-10-cm','Drowning and submersion in natural water, undetermined intent, sequela','Y214XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_Y21.8XXA','Y21.8XXA','http://hl7.org/fhir/sid/icd-10-cm','Other drowning and submersion, undetermined intent, initial encounter','Y218XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_Y21.8XXD','Y21.8XXD','http://hl7.org/fhir/sid/icd-10-cm','Other drowning and submersion, undetermined intent, subsequent encounter','Y218XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_Y21.8XXS','Y21.8XXS','http://hl7.org/fhir/sid/icd-10-cm','Other drowning and submersion, undetermined intent, sequela','Y218XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_Y21.9XXA','Y21.9XXA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified drowning and submersion, undetermined intent, initial encounter','Y219XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_Y21.9XXD','Y21.9XXD','http://hl7.org/fhir/sid/icd-10-cm','Unspecified drowning and submersion, undetermined intent, subsequent encounter','Y219XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1717_Y21.9XXS','Y21.9XXS','http://hl7.org/fhir/sid/icd-10-cm','Unspecified drowning and submersion, undetermined intent, sequela','Y219XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_15654006','15654006','http://snomed.info/sct','Drowning in liquid other than water (event)','15654006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_19674006','19674006','http://snomed.info/sct','Immersion (disorder)','19674006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_212962007','212962007','http://snomed.info/sct','Drowning and non-fatal immersion (disorder)','212962007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_215417008','215417008','http://snomed.info/sct','Submersion or drowning due to boat overturning, occupant of small unpowered boat injured (event)','215417008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_215418003','215418003','http://snomed.info/sct','Submersion or drowning due to boat overturning, occupant of small powered boat injured (event)','215418003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_215422008','215422008','http://snomed.info/sct','Submersion or drowning due to boat overturning, water skier injured (event)','215422008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_215423003','215423003','http://snomed.info/sct','Submersion or drowning due to boat overturning, swimmer injured (event)','215423003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_215424009','215424009','http://snomed.info/sct','Submersion or drowning due to boat overturning, docker or stevedore injured (event)','215424009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_215427002','215427002','http://snomed.info/sct','Submersion and drowning due to boat submerging (event)','215427002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_215428007','215428007','http://snomed.info/sct','Submersion or drowning due to boat submerging, occupant of small unpowered boat injured (event)','215428007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_215429004','215429004','http://snomed.info/sct','Submersion or drowning due to boat submerging, occupant of small powered boat injured (event)','215429004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_215432001','215432001','http://snomed.info/sct','Submersion or drowning due to boat submerging, water skier injured (event)','215432001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_215433006','215433006','http://snomed.info/sct','Submersion or drowning due to boat submerging, swimmer injured (event)','215433006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_215434000','215434000','http://snomed.info/sct','Submersion or drowning due to boat submerging, docker or stevedore injured (event)','215434000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_215437007','215437007','http://snomed.info/sct','Submersion and drowning due to falling from burning ship (event)','215437007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_215438002','215438002','http://snomed.info/sct','Submersion or drowning due to falling from burning ship, occupant of small unpowered boat injured (event)','215438002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_215439005','215439005','http://snomed.info/sct','Submersion or drowning due to falling from burning ship, occupant of small powered boat injured (event)','215439005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_215443009','215443009','http://snomed.info/sct','Submersion or drowning due to falling from burning ship, swimmer injured (event)','215443009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_215444003','215444003','http://snomed.info/sct','Submersion or drowning due to falling from burning ship, docker or stevedore injured (event)','215444003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_215447005','215447005','http://snomed.info/sct','Submersion and drowning due to jumping from burning ship (event)','215447005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_215448000','215448000','http://snomed.info/sct','Submersion or drowning due to jumping from burning ship, occupant of small unpowered boat injured (event)','215448000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_215449008','215449008','http://snomed.info/sct','Submersion or drowning due to jumping from burning ship, occupant of small powered boat injured (event)','215449008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_215454004','215454004','http://snomed.info/sct','Submersion or drowning due to jumping from burning ship, swimmer injured (event)','215454004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_215455003','215455003','http://snomed.info/sct','Submersion or drowning due to jumping from burning ship, docker or stevedore injured (event)','215455003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_215458001','215458001','http://snomed.info/sct','Submersion and drowning due to falling from crushed watercraft (event)','215458001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_215459009','215459009','http://snomed.info/sct','Submersion or drowning due to falling from crushed watercraft, occupant of small unpowered boat injured (event)','215459009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_215460004','215460004','http://snomed.info/sct','Submersion or drowning due to falling from crushed watercraft, occupant of small powered boat injured (event)','215460004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_215463002','215463002','http://snomed.info/sct','Submersion or drowning due to falling from crushed watercraft, water skier injured (event)','215463002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_215464008','215464008','http://snomed.info/sct','Submersion or drowning due to falling from crushed watercraft, swimmer injured (event)','215464008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_215465009','215465009','http://snomed.info/sct','Submersion or drowning due to falling from crushed watercraft, docker or stevedore injured (event)','215465009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_215468006','215468006','http://snomed.info/sct','Submersion and drowning due to jumping from crushed watercraft (event)','215468006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_215469003','215469003','http://snomed.info/sct','Submersion or drowning due to jumping from crushed watercraft, occupant of small unpowered boat injured (event)','215469003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_215470002','215470002','http://snomed.info/sct','Submersion or drowning due to jumping from crushed watercraft, occupant of small powered boat injured (event)','215470002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_215473000','215473000','http://snomed.info/sct','Submersion or drowning due to jumping from crushed watercraft, water skier injured (event)','215473000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_215474006','215474006','http://snomed.info/sct','Submersion or drowning due to jumping from crushed watercraft, swimmer injured (event)','215474006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_215475007','215475007','http://snomed.info/sct','Submersion or drowning due to jumping from crushed watercraft, docker or stevedore injured (event)','215475007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_215479001','215479001','http://snomed.info/sct','Submersion or drowning due to ship sinking, occupant of small unpowered boat injured (event)','215479001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_215480003','215480003','http://snomed.info/sct','Submersion or drowning due to ship sinking, occupant of small powered boat injured (event)','215480003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_215483001','215483001','http://snomed.info/sct','Submersion or drowning due to ship sinking, water skier injured (event)','215483001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_215485008','215485008','http://snomed.info/sct','Submersion or drowning due to ship sinking, docker or stevedore injured (event)','215485008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_215581001','215581001','http://snomed.info/sct','Immersion or drowning due to fall from gangplank (event)','215581001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_215582008','215582008','http://snomed.info/sct','Submersion or drowning due to fall from gangplank, occupant of small unpowered boat injured (event)','215582008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_215583003','215583003','http://snomed.info/sct','Submersion or drowning due to fall from gangplank, occupant of small powered boat injured (event)','215583003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_215587002','215587002','http://snomed.info/sct','Submersion or drowning due to fall from gangplank, swimmer injured (event)','215587002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_215588007','215588007','http://snomed.info/sct','Submersion or drowning due to fall from gangplank, docker or stevedore injured (event)','215588007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_215591007','215591007','http://snomed.info/sct','Submersion or drowning due to fall overboard (event)','215591007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_215592000','215592000','http://snomed.info/sct','Submersion or drowning due to fall overboard, occupant of small unpowered boat injured (event)','215592000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_215593005','215593005','http://snomed.info/sct','Submersion or drowning due to fall overboard, occupant of small powered boat injured (event)','215593005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_215598001','215598001','http://snomed.info/sct','Submersion or drowning due to fall overboard, docker or stevedore injured (event)','215598001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_215601006','215601006','http://snomed.info/sct','Submersion or drowning due to being thrown overboard (event)','215601006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_215602004','215602004','http://snomed.info/sct','Submersion or drowning due to being thrown overboard, occupant of small unpowered boat injured (event)','215602004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_215603009','215603009','http://snomed.info/sct','Submersion or drowning due to being thrown overboard, occupant of small powered boat injured (event)','215603009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_215608000','215608000','http://snomed.info/sct','Submersion or drowning due to being thrown overboard, docker or stevedore injured (event)','215608000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_215612006','215612006','http://snomed.info/sct','Submersion or drowning due to being washed overboard, occupant of small unpowered boat injured (event)','215612006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_215613001','215613001','http://snomed.info/sct','Submersion or drowning due to being washed overboard, occupant of small powered boat occupant (event)','215613001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_215619002','215619002','http://snomed.info/sct','Submersion or drowning due to being washed overboard, docker or stevedore injured (event)','215619002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_217748000','217748000','http://snomed.info/sct','Accidental drowning and submersion (event)','217748000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_217749008','217749008','http://snomed.info/sct','Accidental drowning or immersion while water skiing (event)','217749008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_217750008','217750008','http://snomed.info/sct','Accidental drowning and submersion while engaged in sport or recreational activity with diving equipment (event)','217750008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_217755003','217755003','http://snomed.info/sct','Accidental drowning and submersion while engaged in sport or recreational activity without diving equipment (event)','217755003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_217756002','217756002','http://snomed.info/sct','Accidental drowning or immersion while fishing from shore, bank or fixed structure (event)','217756002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_217757006','217757006','http://snomed.info/sct','Accidental drowning and submersion while hunting, except from boat or with diving equipment (event)','217757006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_217758001','217758001','http://snomed.info/sct','Accidental drowning or immersion while ice skating (event)','217758001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_217759009','217759009','http://snomed.info/sct','Accidental drowning or immersion while playing in water (event)','217759009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_217761000','217761000','http://snomed.info/sct','Accidental drowning or immersion while surfboarding (event)','217761000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_217762007','217762007','http://snomed.info/sct','Accidental drowning or immersion while wading in water (event)','217762007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_217766005','217766005','http://snomed.info/sct','Accidental drowning or immersion during marine salvage (event)','217766005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_217767001','217767001','http://snomed.info/sct','Accidental drowning or immersion while pearl diving (event)','217767001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_217768006','217768006','http://snomed.info/sct','Accidental drowning or immersion during placement fishing nets (event)','217768006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_217769003','217769003','http://snomed.info/sct','Accidental drowning or immersion during rescue attempt person (event)','217769003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_217770002','217770002','http://snomed.info/sct','Accidental drowning or immersion during underwater construction (event)','217770002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_217771003','217771003','http://snomed.info/sct','Accidental drowning or immersion during underwater repairs (event)','217771003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_217773000','217773000','http://snomed.info/sct','Accidental drowning or immersion in bathtub (event)','217773000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_217775007','217775007','http://snomed.info/sct','Accidental drowning or immersion in quenching tank (event)','217775007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_217776008','217776008','http://snomed.info/sct','Accidental drowning and submersion in swimming pool (event)','217776008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_219197006','219197006','http://snomed.info/sct','Assault by drowning (event)','219197006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_219333004','219333004','http://snomed.info/sct','Drowning or immersion of unknown intent (event)','219333004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_225050000','225050000','http://snomed.info/sct','Drowning self (finding)','225050000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_242014006','242014006','http://snomed.info/sct','Dry drowning (event)','242014006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_242172004','242172004','http://snomed.info/sct','Immersion or drowning due to falling from vessel into water (event)','242172004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_242174003','242174003','http://snomed.info/sct','Immersion or drowning due to falling from vessel in collision with fixed structure (event)','242174003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_242181005','242181005','http://snomed.info/sct','Immersion or drowning due to fall overboard from vessel without accident to vessel (event)','242181005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_242660009','242660009','http://snomed.info/sct','Accidental drowning or immersion in course of work (event)','242660009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_242661008','242661008','http://snomed.info/sct','Accidental drowning or immersion during recreation (event)','242661008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_242662001','242662001','http://snomed.info/sct','Accidental drowning or immersion while swimming (event)','242662001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_242663006','242663006','http://snomed.info/sct','Accidental drowning or immersion while windsurfing (event)','242663006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_242664000','242664000','http://snomed.info/sct','Accidental drowning or near drowning while scuba diving (event)','242664000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_242665004','242665004','http://snomed.info/sct','Accidental drowning or near drowning while skin diving (event)','242665004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_269665009','269665009','http://snomed.info/sct','Submersion and drowning due to boat overturning (event)','269665009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_269666005','269666005','http://snomed.info/sct','Immersion or drowning due to vessel sinking (event)','269666005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_269667001','269667001','http://snomed.info/sct','Immersion or drowning due to falling from vessel on fire (event)','269667001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_269785001','269785001','http://snomed.info/sct','Recreation submersion accident (event)','269785001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_269786000','269786000','http://snomed.info/sct','Accidental submersion in bath (event)','269786000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_271582003','271582003','http://snomed.info/sct','Immersion or drowning due to being washed overboard (event)','271582003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_274223006','274223006','http://snomed.info/sct','Submersion - accidental (event)','274223006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_284644007','284644007','http://snomed.info/sct','Drowning other person (finding)','284644007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_287183002','287183002','http://snomed.info/sct','Attempted suicide - drowning (event)','287183002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_40947009','40947009','http://snomed.info/sct','Drowning (event)','40947009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_424571008','424571008','http://snomed.info/sct','Cardiac arrest due to drowning (disorder)','424571008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_50109008','50109008','http://snomed.info/sct','Drowning in fresh water (event)','50109008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_72854003','72854003','http://snomed.info/sct','Aspiration pneumonia due to near drowning (disorder)','72854003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_7420003','7420003','http://snomed.info/sct','Drowning in brackish water (event)','7420003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_74376000','74376000','http://snomed.info/sct','Drowning in salt water (event)','74376000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_87970004','87970004','http://snomed.info/sct','Nonfatal submersion (disorder)','87970004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_287192004','287192004','http://snomed.info/sct','Suicide - drowning (event)','287192004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1716_89687005','89687005','http://snomed.info/sct','Postimmersion-submersion syndrome (disorder)','89687005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V02.00XA','V02.00XA','http://hl7.org/fhir/sid/icd-10-cm','Pedestrian on foot injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter','V0200XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V02.00XD','V02.00XD','http://hl7.org/fhir/sid/icd-10-cm','Pedestrian on foot injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter','V0200XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V02.00XS','V02.00XS','http://hl7.org/fhir/sid/icd-10-cm','Pedestrian on foot injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela','V0200XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V02.01XA','V02.01XA','http://hl7.org/fhir/sid/icd-10-cm','Pedestrian on roller-skates injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter','V0201XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V02.01XD','V02.01XD','http://hl7.org/fhir/sid/icd-10-cm','Pedestrian on roller-skates injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter','V0201XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V02.01XS','V02.01XS','http://hl7.org/fhir/sid/icd-10-cm','Pedestrian on roller-skates injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela','V0201XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V02.02XA','V02.02XA','http://hl7.org/fhir/sid/icd-10-cm','Pedestrian on skateboard injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter','V0202XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V02.02XD','V02.02XD','http://hl7.org/fhir/sid/icd-10-cm','Pedestrian on skateboard injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter','V0202XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V02.02XS','V02.02XS','http://hl7.org/fhir/sid/icd-10-cm','Pedestrian on skateboard injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela','V0202XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V02.031A','V02.031A','http://hl7.org/fhir/sid/icd-10-cm','Pedestrian on standing electric scooter injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter','V02031A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V02.031D','V02.031D','http://hl7.org/fhir/sid/icd-10-cm','Pedestrian on standing electric scooter injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter','V02031D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V02.031S','V02.031S','http://hl7.org/fhir/sid/icd-10-cm','Pedestrian on standing electric scooter injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela','V02031S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V02.038A','V02.038A','http://hl7.org/fhir/sid/icd-10-cm','Pedestrian on other standing micro-mobility pedestrian conveyance injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter','V02038A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V02.038D','V02.038D','http://hl7.org/fhir/sid/icd-10-cm','Pedestrian on other standing micro-mobility pedestrian conveyance injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter','V02038D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V02.038S','V02.038S','http://hl7.org/fhir/sid/icd-10-cm','Pedestrian on other standing micro-mobility pedestrian conveyance injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela','V02038S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V02.09XA','V02.09XA','http://hl7.org/fhir/sid/icd-10-cm','Pedestrian with other conveyance injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter','V0209XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V02.09XD','V02.09XD','http://hl7.org/fhir/sid/icd-10-cm','Pedestrian with other conveyance injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter','V0209XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V02.09XS','V02.09XS','http://hl7.org/fhir/sid/icd-10-cm','Pedestrian with other conveyance injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela','V0209XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V02.10XA','V02.10XA','http://hl7.org/fhir/sid/icd-10-cm','Pedestrian on foot injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter','V0210XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V02.10XD','V02.10XD','http://hl7.org/fhir/sid/icd-10-cm','Pedestrian on foot injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter','V0210XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V02.10XS','V02.10XS','http://hl7.org/fhir/sid/icd-10-cm','Pedestrian on foot injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela','V0210XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V02.11XA','V02.11XA','http://hl7.org/fhir/sid/icd-10-cm','Pedestrian on roller-skates injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter','V0211XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V02.11XD','V02.11XD','http://hl7.org/fhir/sid/icd-10-cm','Pedestrian on roller-skates injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter','V0211XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V02.11XS','V02.11XS','http://hl7.org/fhir/sid/icd-10-cm','Pedestrian on roller-skates injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela','V0211XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V02.12XA','V02.12XA','http://hl7.org/fhir/sid/icd-10-cm','Pedestrian on skateboard injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter','V0212XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V02.12XD','V02.12XD','http://hl7.org/fhir/sid/icd-10-cm','Pedestrian on skateboard injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter','V0212XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V02.12XS','V02.12XS','http://hl7.org/fhir/sid/icd-10-cm','Pedestrian on skateboard injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela','V0212XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V02.131A','V02.131A','http://hl7.org/fhir/sid/icd-10-cm','Pedestrian on standing electric scooter injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter','V02131A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V02.131D','V02.131D','http://hl7.org/fhir/sid/icd-10-cm','Pedestrian on standing electric scooter injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter','V02131D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V02.131S','V02.131S','http://hl7.org/fhir/sid/icd-10-cm','Pedestrian on standing electric scooter injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela','V02131S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V02.138A','V02.138A','http://hl7.org/fhir/sid/icd-10-cm','Pedestrian on other standing micro-mobility pedestrian conveyance injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter','V02138A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V02.138D','V02.138D','http://hl7.org/fhir/sid/icd-10-cm','Pedestrian on other standing micro-mobility pedestrian conveyance injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter','V02138D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V02.138S','V02.138S','http://hl7.org/fhir/sid/icd-10-cm','Pedestrian on other standing micro-mobility pedestrian conveyance injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela','V02138S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V02.19XA','V02.19XA','http://hl7.org/fhir/sid/icd-10-cm','Pedestrian with other conveyance injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter','V0219XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V02.19XD','V02.19XD','http://hl7.org/fhir/sid/icd-10-cm','Pedestrian with other conveyance injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter','V0219XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V02.19XS','V02.19XS','http://hl7.org/fhir/sid/icd-10-cm','Pedestrian with other conveyance injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela','V0219XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V02.90XA','V02.90XA','http://hl7.org/fhir/sid/icd-10-cm','Pedestrian on foot injured in collision with two- or three-wheeled motor vehicle, unspecified whether traffic or nontraffic accident, initial encounter','V0290XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V02.90XD','V02.90XD','http://hl7.org/fhir/sid/icd-10-cm','Pedestrian on foot injured in collision with two- or three-wheeled motor vehicle, unspecified whether traffic or nontraffic accident, subsequent encounter','V0290XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V02.90XS','V02.90XS','http://hl7.org/fhir/sid/icd-10-cm','Pedestrian on foot injured in collision with two- or three-wheeled motor vehicle, unspecified whether traffic or nontraffic accident, sequela','V0290XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V02.91XA','V02.91XA','http://hl7.org/fhir/sid/icd-10-cm','Pedestrian on roller-skates injured in collision with two- or three-wheeled motor vehicle, unspecified whether traffic or nontraffic accident, initial encounter','V0291XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V02.91XD','V02.91XD','http://hl7.org/fhir/sid/icd-10-cm','Pedestrian on roller-skates injured in collision with two- or three-wheeled motor vehicle, unspecified whether traffic or nontraffic accident, subsequent encounter','V0291XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V02.91XS','V02.91XS','http://hl7.org/fhir/sid/icd-10-cm','Pedestrian on roller-skates injured in collision with two- or three-wheeled motor vehicle, unspecified whether traffic or nontraffic accident, sequela','V0291XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V02.92XA','V02.92XA','http://hl7.org/fhir/sid/icd-10-cm','Pedestrian on skateboard injured in collision with two- or three-wheeled motor vehicle, unspecified whether traffic or nontraffic accident, initial encounter','V0292XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V02.92XD','V02.92XD','http://hl7.org/fhir/sid/icd-10-cm','Pedestrian on skateboard injured in collision with two- or three-wheeled motor vehicle, unspecified whether traffic or nontraffic accident, subsequent encounter','V0292XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V02.92XS','V02.92XS','http://hl7.org/fhir/sid/icd-10-cm','Pedestrian on skateboard injured in collision with two- or three-wheeled motor vehicle, unspecified whether traffic or nontraffic accident, sequela','V0292XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V02.931A','V02.931A','http://hl7.org/fhir/sid/icd-10-cm','Pedestrian on standing electric scooter injured in collision with two- or three wheeled motor vehicle, unspecified whether traffic or nontraffic accident, initial encounter','V02931A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V02.931D','V02.931D','http://hl7.org/fhir/sid/icd-10-cm','Pedestrian on standing electric scooter injured in collision with two- or three wheeled motor vehicle, unspecified whether traffic or nontraffic accident, subsequent encounter','V02931D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V02.931S','V02.931S','http://hl7.org/fhir/sid/icd-10-cm','Pedestrian on standing electric scooter injured in collision with two- or three wheeled motor vehicle, unspecified whether traffic or nontraffic accident, sequela','V02931S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V02.938A','V02.938A','http://hl7.org/fhir/sid/icd-10-cm','Pedestrian on other standing micro-mobility pedestrian conveyance injured in collision with two- or three wheeled motor vehicle, unspecified whether traffic or nontraffic accident, initial encounter','V02938A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V02.938D','V02.938D','http://hl7.org/fhir/sid/icd-10-cm','Pedestrian on other standing micro-mobility pedestrian conveyance injured in collision with two- or three wheeled motor vehicle, unspecified whether traffic or nontraffic accident, subsequent encounter','V02938D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V02.938S','V02.938S','http://hl7.org/fhir/sid/icd-10-cm','Pedestrian on other standing micro-mobility pedestrian conveyance injured in collision with two- or three wheeled motor vehicle, unspecified whether traffic or nontraffic accident, sequela','V02938S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V02.99XA','V02.99XA','http://hl7.org/fhir/sid/icd-10-cm','Pedestrian with other conveyance injured in collision with two- or three-wheeled motor vehicle, unspecified whether traffic or nontraffic accident, initial encounter','V0299XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V02.99XD','V02.99XD','http://hl7.org/fhir/sid/icd-10-cm','Pedestrian with other conveyance injured in collision with two- or three-wheeled motor vehicle, unspecified whether traffic or nontraffic accident, subsequent encounter','V0299XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V02.99XS','V02.99XS','http://hl7.org/fhir/sid/icd-10-cm','Pedestrian with other conveyance injured in collision with two- or three-wheeled motor vehicle, unspecified whether traffic or nontraffic accident, sequela','V0299XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V06.031A','V06.031A','http://hl7.org/fhir/sid/icd-10-cm','Pedestrian on standing electric scooter injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter','V06031A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V06.031D','V06.031D','http://hl7.org/fhir/sid/icd-10-cm','Pedestrian on standing electric scooter injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter','V06031D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V06.031S','V06.031S','http://hl7.org/fhir/sid/icd-10-cm','Pedestrian on standing electric scooter injured in collision with other nonmotor vehicle in nontraffic accident, sequela','V06031S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V06.038A','V06.038A','http://hl7.org/fhir/sid/icd-10-cm','Pedestrian on other standing micro-mobility pedestrian conveyance injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter','V06038A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V06.038D','V06.038D','http://hl7.org/fhir/sid/icd-10-cm','Pedestrian on other standing micro-mobility pedestrian conveyance injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter','V06038D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V06.038S','V06.038S','http://hl7.org/fhir/sid/icd-10-cm','Pedestrian on other standing micro-mobility pedestrian conveyance injured in collision with other nonmotor vehicle in nontraffic accident, sequela','V06038S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V06.131A','V06.131A','http://hl7.org/fhir/sid/icd-10-cm','Pedestrian on standing electric scooter injured in collision with other nonmotor vehicle in traffic accident, initial encounter','V06131A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V06.131D','V06.131D','http://hl7.org/fhir/sid/icd-10-cm','Pedestrian on standing electric scooter injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter','V06131D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V06.131S','V06.131S','http://hl7.org/fhir/sid/icd-10-cm','Pedestrian on standing electric scooter injured in collision with other nonmotor vehicle in traffic accident, sequela','V06131S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V06.138A','V06.138A','http://hl7.org/fhir/sid/icd-10-cm','Pedestrian on other standing micro-mobility pedestrian conveyance injured in collision with other nonmotor vehicle in traffic accident, initial encounter','V06138A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V06.138D','V06.138D','http://hl7.org/fhir/sid/icd-10-cm','Pedestrian on other standing micro-mobility pedestrian conveyance injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter','V06138D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V06.138S','V06.138S','http://hl7.org/fhir/sid/icd-10-cm','Pedestrian on other standing micro-mobility pedestrian conveyance injured in collision with other nonmotor vehicle in traffic accident, sequela','V06138S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V06.931A','V06.931A','http://hl7.org/fhir/sid/icd-10-cm','Pedestrian on standing electric scooter injured in collision with other nonmotor vehicle, unspecified whether traffic or nontraffic accident, initial encounter','V06931A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V06.931D','V06.931D','http://hl7.org/fhir/sid/icd-10-cm','Pedestrian on standing electric scooter injured in collision with other nonmotor vehicle, unspecified whether traffic or nontraffic accident, subsequent encounter','V06931D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V06.931S','V06.931S','http://hl7.org/fhir/sid/icd-10-cm','Pedestrian on standing electric scooter injured in collision with other nonmotor vehicle, unspecified whether traffic or nontraffic accident, sequela','V06931S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V06.938A','V06.938A','http://hl7.org/fhir/sid/icd-10-cm','Pedestrian on other standing micro-mobility pedestrian conveyance injured in collision with other nonmotor vehicle, unspecified whether traffic or nontraffic accident, initial encounter','V06938A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V06.938D','V06.938D','http://hl7.org/fhir/sid/icd-10-cm','Pedestrian on other standing micro-mobility pedestrian conveyance injured in collision with other nonmotor vehicle, unspecified whether traffic or nontraffic accident, subsequent encounter','V06938D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V06.938S','V06.938S','http://hl7.org/fhir/sid/icd-10-cm','Pedestrian on other standing micro-mobility pedestrian conveyance injured in collision with other nonmotor vehicle, unspecified whether traffic or nontraffic accident, sequela','V06938S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V09.00XA','V09.00XA','http://hl7.org/fhir/sid/icd-10-cm','Pedestrian injured in nontraffic accident involving unspecified motor vehicles, initial encounter','V0900XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V09.00XD','V09.00XD','http://hl7.org/fhir/sid/icd-10-cm','Pedestrian injured in nontraffic accident involving unspecified motor vehicles, subsequent encounter','V0900XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V09.00XS','V09.00XS','http://hl7.org/fhir/sid/icd-10-cm','Pedestrian injured in nontraffic accident involving unspecified motor vehicles, sequela','V0900XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V09.09XA','V09.09XA','http://hl7.org/fhir/sid/icd-10-cm','Pedestrian injured in nontraffic accident involving other motor vehicles, initial encounter','V0909XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V09.09XD','V09.09XD','http://hl7.org/fhir/sid/icd-10-cm','Pedestrian injured in nontraffic accident involving other motor vehicles, subsequent encounter','V0909XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V09.09XS','V09.09XS','http://hl7.org/fhir/sid/icd-10-cm','Pedestrian injured in nontraffic accident involving other motor vehicles, sequela','V0909XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V09.20XA','V09.20XA','http://hl7.org/fhir/sid/icd-10-cm','Pedestrian injured in traffic accident involving unspecified motor vehicles, initial encounter','V0920XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V09.20XD','V09.20XD','http://hl7.org/fhir/sid/icd-10-cm','Pedestrian injured in traffic accident involving unspecified motor vehicles, subsequent encounter','V0920XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V09.20XS','V09.20XS','http://hl7.org/fhir/sid/icd-10-cm','Pedestrian injured in traffic accident involving unspecified motor vehicles, sequela','V0920XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V09.29XA','V09.29XA','http://hl7.org/fhir/sid/icd-10-cm','Pedestrian injured in traffic accident involving other motor vehicles, initial encounter','V0929XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V09.29XD','V09.29XD','http://hl7.org/fhir/sid/icd-10-cm','Pedestrian injured in traffic accident involving other motor vehicles, subsequent encounter','V0929XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V09.29XS','V09.29XS','http://hl7.org/fhir/sid/icd-10-cm','Pedestrian injured in traffic accident involving other motor vehicles, sequela','V0929XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V12.0XXA','V12.0XXA','http://hl7.org/fhir/sid/icd-10-cm','Pedal cycle driver injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter','V120XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V12.0XXD','V12.0XXD','http://hl7.org/fhir/sid/icd-10-cm','Pedal cycle driver injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter','V120XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V12.0XXS','V12.0XXS','http://hl7.org/fhir/sid/icd-10-cm','Pedal cycle driver injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela','V120XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V12.1XXA','V12.1XXA','http://hl7.org/fhir/sid/icd-10-cm','Pedal cycle passenger injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter','V121XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V12.1XXD','V12.1XXD','http://hl7.org/fhir/sid/icd-10-cm','Pedal cycle passenger injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter','V121XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V12.1XXS','V12.1XXS','http://hl7.org/fhir/sid/icd-10-cm','Pedal cycle passenger injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela','V121XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V12.2XXA','V12.2XXA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified pedal cyclist injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter','V122XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V12.2XXD','V12.2XXD','http://hl7.org/fhir/sid/icd-10-cm','Unspecified pedal cyclist injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter','V122XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V12.2XXS','V12.2XXS','http://hl7.org/fhir/sid/icd-10-cm','Unspecified pedal cyclist injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela','V122XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V12.3XXA','V12.3XXA','http://hl7.org/fhir/sid/icd-10-cm','Person boarding or alighting a pedal cycle injured in collision with two- or three-wheeled motor vehicle, initial encounter','V123XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V12.3XXD','V12.3XXD','http://hl7.org/fhir/sid/icd-10-cm','Person boarding or alighting a pedal cycle injured in collision with two- or three-wheeled motor vehicle, subsequent encounter','V123XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V12.3XXS','V12.3XXS','http://hl7.org/fhir/sid/icd-10-cm','Person boarding or alighting a pedal cycle injured in collision with two- or three-wheeled motor vehicle, sequela','V123XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V12.4XXA','V12.4XXA','http://hl7.org/fhir/sid/icd-10-cm','Pedal cycle driver injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter','V124XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V12.4XXD','V12.4XXD','http://hl7.org/fhir/sid/icd-10-cm','Pedal cycle driver injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter','V124XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V12.4XXS','V12.4XXS','http://hl7.org/fhir/sid/icd-10-cm','Pedal cycle driver injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela','V124XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V12.5XXA','V12.5XXA','http://hl7.org/fhir/sid/icd-10-cm','Pedal cycle passenger injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter','V125XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V12.5XXD','V12.5XXD','http://hl7.org/fhir/sid/icd-10-cm','Pedal cycle passenger injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter','V125XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V12.5XXS','V12.5XXS','http://hl7.org/fhir/sid/icd-10-cm','Pedal cycle passenger injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela','V125XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V12.9XXA','V12.9XXA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified pedal cyclist injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter','V129XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V12.9XXD','V12.9XXD','http://hl7.org/fhir/sid/icd-10-cm','Unspecified pedal cyclist injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter','V129XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V12.9XXS','V12.9XXS','http://hl7.org/fhir/sid/icd-10-cm','Unspecified pedal cyclist injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela','V129XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V19.00XA','V19.00XA','http://hl7.org/fhir/sid/icd-10-cm','Pedal cycle driver injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter','V1900XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V19.00XD','V19.00XD','http://hl7.org/fhir/sid/icd-10-cm','Pedal cycle driver injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter','V1900XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V19.00XS','V19.00XS','http://hl7.org/fhir/sid/icd-10-cm','Pedal cycle driver injured in collision with unspecified motor vehicles in nontraffic accident, sequela','V1900XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V19.09XA','V19.09XA','http://hl7.org/fhir/sid/icd-10-cm','Pedal cycle driver injured in collision with other motor vehicles in nontraffic accident, initial encounter','V1909XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V19.09XD','V19.09XD','http://hl7.org/fhir/sid/icd-10-cm','Pedal cycle driver injured in collision with other motor vehicles in nontraffic accident, subsequent encounter','V1909XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V19.09XS','V19.09XS','http://hl7.org/fhir/sid/icd-10-cm','Pedal cycle driver injured in collision with other motor vehicles in nontraffic accident, sequela','V1909XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V19.10XA','V19.10XA','http://hl7.org/fhir/sid/icd-10-cm','Pedal cycle passenger injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter','V1910XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V19.10XD','V19.10XD','http://hl7.org/fhir/sid/icd-10-cm','Pedal cycle passenger injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter','V1910XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V19.10XS','V19.10XS','http://hl7.org/fhir/sid/icd-10-cm','Pedal cycle passenger injured in collision with unspecified motor vehicles in nontraffic accident, sequela','V1910XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V19.19XA','V19.19XA','http://hl7.org/fhir/sid/icd-10-cm','Pedal cycle passenger injured in collision with other motor vehicles in nontraffic accident, initial encounter','V1919XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V19.19XD','V19.19XD','http://hl7.org/fhir/sid/icd-10-cm','Pedal cycle passenger injured in collision with other motor vehicles in nontraffic accident, subsequent encounter','V1919XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V19.19XS','V19.19XS','http://hl7.org/fhir/sid/icd-10-cm','Pedal cycle passenger injured in collision with other motor vehicles in nontraffic accident, sequela','V1919XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V19.20XA','V19.20XA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified pedal cyclist injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter','V1920XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V19.20XD','V19.20XD','http://hl7.org/fhir/sid/icd-10-cm','Unspecified pedal cyclist injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter','V1920XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V19.20XS','V19.20XS','http://hl7.org/fhir/sid/icd-10-cm','Unspecified pedal cyclist injured in collision with unspecified motor vehicles in nontraffic accident, sequela','V1920XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V19.29XA','V19.29XA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified pedal cyclist injured in collision with other motor vehicles in nontraffic accident, initial encounter','V1929XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V19.29XD','V19.29XD','http://hl7.org/fhir/sid/icd-10-cm','Unspecified pedal cyclist injured in collision with other motor vehicles in nontraffic accident, subsequent encounter','V1929XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V19.29XS','V19.29XS','http://hl7.org/fhir/sid/icd-10-cm','Unspecified pedal cyclist injured in collision with other motor vehicles in nontraffic accident, sequela','V1929XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V19.40XA','V19.40XA','http://hl7.org/fhir/sid/icd-10-cm','Pedal cycle driver injured in collision with unspecified motor vehicles in traffic accident, initial encounter','V1940XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V19.40XD','V19.40XD','http://hl7.org/fhir/sid/icd-10-cm','Pedal cycle driver injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter','V1940XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V19.40XS','V19.40XS','http://hl7.org/fhir/sid/icd-10-cm','Pedal cycle driver injured in collision with unspecified motor vehicles in traffic accident, sequela','V1940XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V19.49XA','V19.49XA','http://hl7.org/fhir/sid/icd-10-cm','Pedal cycle driver injured in collision with other motor vehicles in traffic accident, initial encounter','V1949XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V19.49XD','V19.49XD','http://hl7.org/fhir/sid/icd-10-cm','Pedal cycle driver injured in collision with other motor vehicles in traffic accident, subsequent encounter','V1949XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V19.49XS','V19.49XS','http://hl7.org/fhir/sid/icd-10-cm','Pedal cycle driver injured in collision with other motor vehicles in traffic accident, sequela','V1949XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V19.50XA','V19.50XA','http://hl7.org/fhir/sid/icd-10-cm','Pedal cycle passenger injured in collision with unspecified motor vehicles in traffic accident, initial encounter','V1950XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V19.50XD','V19.50XD','http://hl7.org/fhir/sid/icd-10-cm','Pedal cycle passenger injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter','V1950XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V19.50XS','V19.50XS','http://hl7.org/fhir/sid/icd-10-cm','Pedal cycle passenger injured in collision with unspecified motor vehicles in traffic accident, sequela','V1950XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V19.59XA','V19.59XA','http://hl7.org/fhir/sid/icd-10-cm','Pedal cycle passenger injured in collision with other motor vehicles in traffic accident, initial encounter','V1959XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V19.59XD','V19.59XD','http://hl7.org/fhir/sid/icd-10-cm','Pedal cycle passenger injured in collision with other motor vehicles in traffic accident, subsequent encounter','V1959XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V19.59XS','V19.59XS','http://hl7.org/fhir/sid/icd-10-cm','Pedal cycle passenger injured in collision with other motor vehicles in traffic accident, sequela','V1959XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V19.60XA','V19.60XA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified pedal cyclist injured in collision with unspecified motor vehicles in traffic accident, initial encounter','V1960XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V19.60XD','V19.60XD','http://hl7.org/fhir/sid/icd-10-cm','Unspecified pedal cyclist injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter','V1960XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V19.60XS','V19.60XS','http://hl7.org/fhir/sid/icd-10-cm','Unspecified pedal cyclist injured in collision with unspecified motor vehicles in traffic accident, sequela','V1960XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V19.69XA','V19.69XA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified pedal cyclist injured in collision with other motor vehicles in traffic accident, initial encounter','V1969XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V19.69XD','V19.69XD','http://hl7.org/fhir/sid/icd-10-cm','Unspecified pedal cyclist injured in collision with other motor vehicles in traffic accident, subsequent encounter','V1969XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V19.69XS','V19.69XS','http://hl7.org/fhir/sid/icd-10-cm','Unspecified pedal cyclist injured in collision with other motor vehicles in traffic accident, sequela','V1969XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V22.01XA','V22.01XA','http://hl7.org/fhir/sid/icd-10-cm','Electric (assisted) bicycle driver injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter','V2201XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V22.01XD','V22.01XD','http://hl7.org/fhir/sid/icd-10-cm','Electric (assisted) bicycle driver injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter','V2201XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V22.01XS','V22.01XS','http://hl7.org/fhir/sid/icd-10-cm','Electric (assisted) bicycle driver injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela','V2201XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V22.09XA','V22.09XA','http://hl7.org/fhir/sid/icd-10-cm','Other motorcycle driver injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter','V2209XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V22.09XD','V22.09XD','http://hl7.org/fhir/sid/icd-10-cm','Other motorcycle driver injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter','V2209XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V22.09XS','V22.09XS','http://hl7.org/fhir/sid/icd-10-cm','Other motorcycle driver injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela','V2209XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V22.0XXA','V22.0XXA','http://hl7.org/fhir/sid/icd-10-cm','','V220XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V22.0XXD','V22.0XXD','http://hl7.org/fhir/sid/icd-10-cm','','V220XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V22.0XXS','V22.0XXS','http://hl7.org/fhir/sid/icd-10-cm','','V220XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V22.11XA','V22.11XA','http://hl7.org/fhir/sid/icd-10-cm','Electric (assisted) bicycle passenger injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter','V2211XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V22.11XD','V22.11XD','http://hl7.org/fhir/sid/icd-10-cm','Electric (assisted) bicycle passenger injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter','V2211XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V22.11XS','V22.11XS','http://hl7.org/fhir/sid/icd-10-cm','Electric (assisted) bicycle passenger injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela','V2211XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V22.19XA','V22.19XA','http://hl7.org/fhir/sid/icd-10-cm','Other motorcycle passenger injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter','V2219XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V22.19XD','V22.19XD','http://hl7.org/fhir/sid/icd-10-cm','Other motorcycle passenger injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter','V2219XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V22.19XS','V22.19XS','http://hl7.org/fhir/sid/icd-10-cm','Other motorcycle passenger injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela','V2219XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V22.1XXA','V22.1XXA','http://hl7.org/fhir/sid/icd-10-cm','','V221XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V22.1XXD','V22.1XXD','http://hl7.org/fhir/sid/icd-10-cm','','V221XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V22.1XXS','V22.1XXS','http://hl7.org/fhir/sid/icd-10-cm','','V221XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V22.21XA','V22.21XA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified electric (assisted) bicycle rider injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter','V2221XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V22.21XD','V22.21XD','http://hl7.org/fhir/sid/icd-10-cm','Unspecified electric (assisted) bicycle rider injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter','V2221XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V22.21XS','V22.21XS','http://hl7.org/fhir/sid/icd-10-cm','Unspecified electric (assisted) bicycle rider injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela','V2221XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V22.29XA','V22.29XA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified rider of other motorcycle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter','V2229XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V22.29XD','V22.29XD','http://hl7.org/fhir/sid/icd-10-cm','Unspecified rider of other motorcycle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter','V2229XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V22.29XS','V22.29XS','http://hl7.org/fhir/sid/icd-10-cm','Unspecified rider of other motorcycle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela','V2229XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V22.2XXA','V22.2XXA','http://hl7.org/fhir/sid/icd-10-cm','','V222XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V22.2XXD','V22.2XXD','http://hl7.org/fhir/sid/icd-10-cm','','V222XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V22.2XXS','V22.2XXS','http://hl7.org/fhir/sid/icd-10-cm','','V222XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V22.31XA','V22.31XA','http://hl7.org/fhir/sid/icd-10-cm','Person boarding or alighting an electric (assisted) bicycle injured in collision with two- or three-wheeled motor vehicle, initial encounter','V2231XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V22.31XD','V22.31XD','http://hl7.org/fhir/sid/icd-10-cm','Person boarding or alighting an electric (assisted) bicycle injured in collision with two- or three-wheeled motor vehicle, subsequent encounter','V2231XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V22.31XS','V22.31XS','http://hl7.org/fhir/sid/icd-10-cm','Person boarding or alighting an electric (assisted) bicycle injured in collision with two- or three-wheeled motor vehicle, sequela','V2231XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V22.39XA','V22.39XA','http://hl7.org/fhir/sid/icd-10-cm','Person boarding or alighting other motorcycle injured in collision with two- or three-wheeled motor vehicle, initial encounter','V2239XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V22.39XD','V22.39XD','http://hl7.org/fhir/sid/icd-10-cm','Person boarding or alighting other motorcycle injured in collision with two- or three-wheeled motor vehicle, subsequent encounter','V2239XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V22.39XS','V22.39XS','http://hl7.org/fhir/sid/icd-10-cm','Person boarding or alighting other motorcycle injured in collision with two- or three-wheeled motor vehicle, sequela','V2239XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V22.3XXA','V22.3XXA','http://hl7.org/fhir/sid/icd-10-cm','','V223XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V22.3XXD','V22.3XXD','http://hl7.org/fhir/sid/icd-10-cm','','V223XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V22.3XXS','V22.3XXS','http://hl7.org/fhir/sid/icd-10-cm','','V223XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V22.41XA','V22.41XA','http://hl7.org/fhir/sid/icd-10-cm','Electric (assisted) bicycle driver injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter','V2241XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V22.41XD','V22.41XD','http://hl7.org/fhir/sid/icd-10-cm','Electric (assisted) bicycle driver injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter','V2241XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V22.41XS','V22.41XS','http://hl7.org/fhir/sid/icd-10-cm','Electric (assisted) bicycle driver injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela','V2241XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V22.49XA','V22.49XA','http://hl7.org/fhir/sid/icd-10-cm','Other motorcycle driver injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter','V2249XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V22.49XD','V22.49XD','http://hl7.org/fhir/sid/icd-10-cm','Other motorcycle driver injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter','V2249XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V22.49XS','V22.49XS','http://hl7.org/fhir/sid/icd-10-cm','Other motorcycle driver injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela','V2249XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V22.4XXA','V22.4XXA','http://hl7.org/fhir/sid/icd-10-cm','','V224XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V22.4XXD','V22.4XXD','http://hl7.org/fhir/sid/icd-10-cm','','V224XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V22.4XXS','V22.4XXS','http://hl7.org/fhir/sid/icd-10-cm','','V224XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V22.51XA','V22.51XA','http://hl7.org/fhir/sid/icd-10-cm','Electric (assisted) bicycle passenger injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter','V2251XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V22.51XD','V22.51XD','http://hl7.org/fhir/sid/icd-10-cm','Electric (assisted) bicycle passenger injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter','V2251XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V22.51XS','V22.51XS','http://hl7.org/fhir/sid/icd-10-cm','Electric (assisted) bicycle passenger injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela','V2251XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V22.59XA','V22.59XA','http://hl7.org/fhir/sid/icd-10-cm','Other motorcycle passenger injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter','V2259XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V22.59XD','V22.59XD','http://hl7.org/fhir/sid/icd-10-cm','Other motorcycle passenger injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter','V2259XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V22.59XS','V22.59XS','http://hl7.org/fhir/sid/icd-10-cm','Other motorcycle passenger injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela','V2259XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V22.5XXA','V22.5XXA','http://hl7.org/fhir/sid/icd-10-cm','','V225XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V22.5XXD','V22.5XXD','http://hl7.org/fhir/sid/icd-10-cm','','V225XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V22.5XXS','V22.5XXS','http://hl7.org/fhir/sid/icd-10-cm','','V225XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V22.91XA','V22.91XA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified electric (assisted) bicycle rider injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter','V2291XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V22.91XD','V22.91XD','http://hl7.org/fhir/sid/icd-10-cm','Unspecified electric (assisted) bicycle rider injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter','V2291XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V22.91XS','V22.91XS','http://hl7.org/fhir/sid/icd-10-cm','Unspecified electric (assisted) bicycle rider injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela','V2291XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V22.99XA','V22.99XA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified rider of other motorcycle injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter','V2299XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V22.99XD','V22.99XD','http://hl7.org/fhir/sid/icd-10-cm','Unspecified rider of other motorcycle injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter','V2299XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V22.99XS','V22.99XS','http://hl7.org/fhir/sid/icd-10-cm','Unspecified rider of other motorcycle injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela','V2299XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V22.9XXA','V22.9XXA','http://hl7.org/fhir/sid/icd-10-cm','','V229XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V22.9XXD','V22.9XXD','http://hl7.org/fhir/sid/icd-10-cm','','V229XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V22.9XXS','V22.9XXS','http://hl7.org/fhir/sid/icd-10-cm','','V229XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V26.01XA','V26.01XA','http://hl7.org/fhir/sid/icd-10-cm','Electric (assisted) bicycle driver injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter','V2601XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V26.01XD','V26.01XD','http://hl7.org/fhir/sid/icd-10-cm','Electric (assisted) bicycle driver injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter','V2601XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V26.01XS','V26.01XS','http://hl7.org/fhir/sid/icd-10-cm','Electric (assisted) bicycle driver injured in collision with other nonmotor vehicle in nontraffic accident, sequela','V2601XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V26.09XA','V26.09XA','http://hl7.org/fhir/sid/icd-10-cm','Other motorcycle driver injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter','V2609XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V26.09XD','V26.09XD','http://hl7.org/fhir/sid/icd-10-cm','Other motorcycle driver injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter','V2609XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V26.09XS','V26.09XS','http://hl7.org/fhir/sid/icd-10-cm','Other motorcycle driver injured in collision with other nonmotor vehicle in nontraffic accident, sequela','V2609XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V26.0XXA','V26.0XXA','http://hl7.org/fhir/sid/icd-10-cm','','V260XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V26.0XXD','V26.0XXD','http://hl7.org/fhir/sid/icd-10-cm','','V260XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V26.0XXS','V26.0XXS','http://hl7.org/fhir/sid/icd-10-cm','','V260XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V26.11XA','V26.11XA','http://hl7.org/fhir/sid/icd-10-cm','Electric (assisted) bicycle passenger injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter','V2611XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V26.11XD','V26.11XD','http://hl7.org/fhir/sid/icd-10-cm','Electric (assisted) bicycle passenger injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter','V2611XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V26.11XS','V26.11XS','http://hl7.org/fhir/sid/icd-10-cm','Electric (assisted) bicycle passenger injured in collision with other nonmotor vehicle in nontraffic accident, sequela','V2611XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V26.19XA','V26.19XA','http://hl7.org/fhir/sid/icd-10-cm','Other motorcycle passenger injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter','V2619XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V26.19XD','V26.19XD','http://hl7.org/fhir/sid/icd-10-cm','Other motorcycle passenger injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter','V2619XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V26.19XS','V26.19XS','http://hl7.org/fhir/sid/icd-10-cm','Other motorcycle passenger injured in collision with other nonmotor vehicle in nontraffic accident, sequela','V2619XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V26.1XXA','V26.1XXA','http://hl7.org/fhir/sid/icd-10-cm','','V261XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V26.1XXD','V26.1XXD','http://hl7.org/fhir/sid/icd-10-cm','','V261XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V26.1XXS','V26.1XXS','http://hl7.org/fhir/sid/icd-10-cm','','V261XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V26.21XA','V26.21XA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified electric (assisted) bicycle rider injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter','V2621XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V26.21XD','V26.21XD','http://hl7.org/fhir/sid/icd-10-cm','Unspecified electric (assisted) bicycle rider injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter','V2621XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V26.21XS','V26.21XS','http://hl7.org/fhir/sid/icd-10-cm','Unspecified electric (assisted) bicycle rider injured in collision with other nonmotor vehicle in nontraffic accident, sequela','V2621XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V26.29XA','V26.29XA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified rider of other motorcycle injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter','V2629XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V26.29XD','V26.29XD','http://hl7.org/fhir/sid/icd-10-cm','Unspecified rider of other motorcycle injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter','V2629XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V26.29XS','V26.29XS','http://hl7.org/fhir/sid/icd-10-cm','Unspecified rider of other motorcycle injured in collision with other nonmotor vehicle in nontraffic accident, sequela','V2629XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V26.2XXA','V26.2XXA','http://hl7.org/fhir/sid/icd-10-cm','','V262XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V26.2XXD','V26.2XXD','http://hl7.org/fhir/sid/icd-10-cm','','V262XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V26.2XXS','V26.2XXS','http://hl7.org/fhir/sid/icd-10-cm','','V262XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V26.31XA','V26.31XA','http://hl7.org/fhir/sid/icd-10-cm','Person boarding or alighting an electric (assisted) bicycle injured in collision with other nonmotor vehicle, initial encounter','V2631XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V26.31XD','V26.31XD','http://hl7.org/fhir/sid/icd-10-cm','Person boarding or alighting an electric (assisted) bicycle injured in collision with other nonmotor vehicle, subsequent encounter','V2631XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V26.31XS','V26.31XS','http://hl7.org/fhir/sid/icd-10-cm','Person boarding or alighting an electric (assisted) bicycle injured in collision with other nonmotor vehicle, sequela','V2631XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V26.39XA','V26.39XA','http://hl7.org/fhir/sid/icd-10-cm','Person boarding or alighting other motorcycle injured in collision with other nonmotor vehicle, initial encounter','V2639XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V26.39XD','V26.39XD','http://hl7.org/fhir/sid/icd-10-cm','Person boarding or alighting other motorcycle injured in collision with other nonmotor vehicle, subsequent encounter','V2639XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V26.39XS','V26.39XS','http://hl7.org/fhir/sid/icd-10-cm','Person boarding or alighting other motorcycle injured in collision with other nonmotor vehicle, sequela','V2639XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V26.3XXA','V26.3XXA','http://hl7.org/fhir/sid/icd-10-cm','','V263XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V26.3XXD','V26.3XXD','http://hl7.org/fhir/sid/icd-10-cm','','V263XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V26.3XXS','V26.3XXS','http://hl7.org/fhir/sid/icd-10-cm','','V263XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V26.41XA','V26.41XA','http://hl7.org/fhir/sid/icd-10-cm','Electric (assisted) bicycle driver injured in collision with other nonmotor vehicle in traffic accident, initial encounter','V2641XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V26.41XD','V26.41XD','http://hl7.org/fhir/sid/icd-10-cm','Electric (assisted) bicycle driver injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter','V2641XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V26.41XS','V26.41XS','http://hl7.org/fhir/sid/icd-10-cm','Electric (assisted) bicycle driver injured in collision with other nonmotor vehicle in traffic accident, sequela','V2641XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V26.49XA','V26.49XA','http://hl7.org/fhir/sid/icd-10-cm','Other motorcycle driver injured in collision with other nonmotor vehicle in traffic accident, initial encounter','V2649XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V26.49XD','V26.49XD','http://hl7.org/fhir/sid/icd-10-cm','Other motorcycle driver injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter','V2649XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V26.49XS','V26.49XS','http://hl7.org/fhir/sid/icd-10-cm','Other motorcycle driver injured in collision with other nonmotor vehicle in traffic accident, sequela','V2649XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V26.4XXA','V26.4XXA','http://hl7.org/fhir/sid/icd-10-cm','','V264XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V26.4XXD','V26.4XXD','http://hl7.org/fhir/sid/icd-10-cm','','V264XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V26.4XXS','V26.4XXS','http://hl7.org/fhir/sid/icd-10-cm','','V264XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V26.51XA','V26.51XA','http://hl7.org/fhir/sid/icd-10-cm','Electric (assisted) bicycle passenger injured in collision with other nonmotor vehicle in traffic accident, initial encounter','V2651XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V26.51XD','V26.51XD','http://hl7.org/fhir/sid/icd-10-cm','Electric (assisted) bicycle passenger injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter','V2651XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V26.51XS','V26.51XS','http://hl7.org/fhir/sid/icd-10-cm','Electric (assisted) bicycle passenger injured in collision with other nonmotor vehicle in traffic accident, sequela','V2651XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V26.59XA','V26.59XA','http://hl7.org/fhir/sid/icd-10-cm','Other motorcycle passenger injured in collision with other nonmotor vehicle in traffic accident, initial encounter','V2659XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V26.59XD','V26.59XD','http://hl7.org/fhir/sid/icd-10-cm','Other motorcycle passenger injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter','V2659XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V26.59XS','V26.59XS','http://hl7.org/fhir/sid/icd-10-cm','Other motorcycle passenger injured in collision with other nonmotor vehicle in traffic accident, sequela','V2659XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V26.5XXA','V26.5XXA','http://hl7.org/fhir/sid/icd-10-cm','','V265XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V26.5XXD','V26.5XXD','http://hl7.org/fhir/sid/icd-10-cm','','V265XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V26.5XXS','V26.5XXS','http://hl7.org/fhir/sid/icd-10-cm','','V265XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V26.91XA','V26.91XA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified electric (assisted) bicycle rider injured in collision with other nonmotor vehicle in traffic accident, initial encounter','V2691XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V26.91XD','V26.91XD','http://hl7.org/fhir/sid/icd-10-cm','Unspecified electric (assisted) bicycle rider injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter','V2691XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V26.91XS','V26.91XS','http://hl7.org/fhir/sid/icd-10-cm','Unspecified electric (assisted) bicycle rider injured in collision with other nonmotor vehicle in traffic accident, sequela','V2691XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V26.99XA','V26.99XA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified rider of other motorcycle injured in collision with other nonmotor vehicle in traffic accident, initial encounter','V2699XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V26.99XD','V26.99XD','http://hl7.org/fhir/sid/icd-10-cm','Unspecified rider of other motorcycle injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter','V2699XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V26.99XS','V26.99XS','http://hl7.org/fhir/sid/icd-10-cm','Unspecified rider of other motorcycle injured in collision with other nonmotor vehicle in traffic accident, sequela','V2699XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V26.9XXA','V26.9XXA','http://hl7.org/fhir/sid/icd-10-cm','','V269XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V26.9XXD','V26.9XXD','http://hl7.org/fhir/sid/icd-10-cm','','V269XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V26.9XXS','V26.9XXS','http://hl7.org/fhir/sid/icd-10-cm','','V269XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.001A','V29.001A','http://hl7.org/fhir/sid/icd-10-cm','Electric (assisted) bicycle driver injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter','V29001A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.001D','V29.001D','http://hl7.org/fhir/sid/icd-10-cm','Electric (assisted) bicycle driver injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter','V29001D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.001S','V29.001S','http://hl7.org/fhir/sid/icd-10-cm','Electric (assisted) bicycle driver injured in collision with unspecified motor vehicles in nontraffic accident, sequela','V29001S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.008A','V29.008A','http://hl7.org/fhir/sid/icd-10-cm','Other motorcycle driver injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter','V29008A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.008D','V29.008D','http://hl7.org/fhir/sid/icd-10-cm','Other motorcycle driver injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter','V29008D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.008S','V29.008S','http://hl7.org/fhir/sid/icd-10-cm','Other motorcycle driver injured in collision with unspecified motor vehicles in nontraffic accident, sequela','V29008S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.00XA','V29.00XA','http://hl7.org/fhir/sid/icd-10-cm','','V2900XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.00XD','V29.00XD','http://hl7.org/fhir/sid/icd-10-cm','','V2900XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.00XS','V29.00XS','http://hl7.org/fhir/sid/icd-10-cm','','V2900XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.091A','V29.091A','http://hl7.org/fhir/sid/icd-10-cm','Electric (assisted) bicycle driver injured in collision with other motor vehicles in nontraffic accident, initial encounter','V29091A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.091D','V29.091D','http://hl7.org/fhir/sid/icd-10-cm','Electric (assisted) bicycle driver injured in collision with other motor vehicles in nontraffic accident, subsequent encounter','V29091D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.091S','V29.091S','http://hl7.org/fhir/sid/icd-10-cm','Electric (assisted) bicycle driver injured in collision with other motor vehicles in nontraffic accident, sequela','V29091S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.098A','V29.098A','http://hl7.org/fhir/sid/icd-10-cm','Other motorcycle driver injured in collision with other motor vehicles in nontraffic accident, initial encounter','V29098A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.098D','V29.098D','http://hl7.org/fhir/sid/icd-10-cm','Other motorcycle driver injured in collision with other motor vehicles in nontraffic accident, subsequent encounter','V29098D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.098S','V29.098S','http://hl7.org/fhir/sid/icd-10-cm','Other motorcycle driver injured in collision with other motor vehicles in nontraffic accident, sequela','V29098S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.09XA','V29.09XA','http://hl7.org/fhir/sid/icd-10-cm','','V2909XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.09XD','V29.09XD','http://hl7.org/fhir/sid/icd-10-cm','','V2909XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.09XS','V29.09XS','http://hl7.org/fhir/sid/icd-10-cm','','V2909XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.101A','V29.101A','http://hl7.org/fhir/sid/icd-10-cm','Electric (assisted) bicycle passenger injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter','V29101A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.101D','V29.101D','http://hl7.org/fhir/sid/icd-10-cm','Electric (assisted) bicycle passenger injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter','V29101D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.101S','V29.101S','http://hl7.org/fhir/sid/icd-10-cm','Electric (assisted) bicycle passenger injured in collision with unspecified motor vehicles in nontraffic accident, sequela','V29101S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.108A','V29.108A','http://hl7.org/fhir/sid/icd-10-cm','Other motorcycle passenger injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter','V29108A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.108D','V29.108D','http://hl7.org/fhir/sid/icd-10-cm','Other motorcycle passenger injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter','V29108D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.108S','V29.108S','http://hl7.org/fhir/sid/icd-10-cm','Other motorcycle passenger injured in collision with unspecified motor vehicles in nontraffic accident, sequela','V29108S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.10XA','V29.10XA','http://hl7.org/fhir/sid/icd-10-cm','','V2910XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.10XD','V29.10XD','http://hl7.org/fhir/sid/icd-10-cm','','V2910XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.10XS','V29.10XS','http://hl7.org/fhir/sid/icd-10-cm','','V2910XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.191A','V29.191A','http://hl7.org/fhir/sid/icd-10-cm','Electric (assisted) bicycle passenger injured in collision with other motor vehicles in nontraffic accident, initial encounter','V29191A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.191D','V29.191D','http://hl7.org/fhir/sid/icd-10-cm','Electric (assisted) bicycle passenger injured in collision with other motor vehicles in nontraffic accident, subsequent encounter','V29191D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.191S','V29.191S','http://hl7.org/fhir/sid/icd-10-cm','Electric (assisted) bicycle passenger injured in collision with other motor vehicles in nontraffic accident, sequela','V29191S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.198A','V29.198A','http://hl7.org/fhir/sid/icd-10-cm','Other motorcycle passenger injured in collision with other motor vehicles in nontraffic accident, initial encounter','V29198A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.198D','V29.198D','http://hl7.org/fhir/sid/icd-10-cm','Other motorcycle passenger injured in collision with other motor vehicles in nontraffic accident, subsequent encounter','V29198D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.198S','V29.198S','http://hl7.org/fhir/sid/icd-10-cm','Other motorcycle passenger injured in collision with other motor vehicles in nontraffic accident, sequela','V29198S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.19XA','V29.19XA','http://hl7.org/fhir/sid/icd-10-cm','','V2919XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.19XD','V29.19XD','http://hl7.org/fhir/sid/icd-10-cm','','V2919XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.19XS','V29.19XS','http://hl7.org/fhir/sid/icd-10-cm','','V2919XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.201A','V29.201A','http://hl7.org/fhir/sid/icd-10-cm','Unspecified electric (assisted) bicycle rider injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter','V29201A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.201D','V29.201D','http://hl7.org/fhir/sid/icd-10-cm','Unspecified electric (assisted) bicycle rider injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter','V29201D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.201S','V29.201S','http://hl7.org/fhir/sid/icd-10-cm','Unspecified electric (assisted) bicycle rider injured in collision with unspecified motor vehicles in nontraffic accident, sequela','V29201S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.208A','V29.208A','http://hl7.org/fhir/sid/icd-10-cm','Unspecified rider of other motorcycle injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter','V29208A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.208D','V29.208D','http://hl7.org/fhir/sid/icd-10-cm','Unspecified rider of other motorcycle injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter','V29208D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.208S','V29.208S','http://hl7.org/fhir/sid/icd-10-cm','Unspecified rider of other motorcycle injured in collision with unspecified motor vehicles in nontraffic accident, sequela','V29208S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.20XA','V29.20XA','http://hl7.org/fhir/sid/icd-10-cm','','V2920XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.20XD','V29.20XD','http://hl7.org/fhir/sid/icd-10-cm','','V2920XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.20XS','V29.20XS','http://hl7.org/fhir/sid/icd-10-cm','','V2920XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.291A','V29.291A','http://hl7.org/fhir/sid/icd-10-cm','Unspecified electric (assisted) bicycle rider injured in collision with other motor vehicles in nontraffic accident, initial encounter','V29291A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.291D','V29.291D','http://hl7.org/fhir/sid/icd-10-cm','Unspecified electric (assisted) bicycle rider injured in collision with other motor vehicles in nontraffic accident, subsequent encounter','V29291D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.291S','V29.291S','http://hl7.org/fhir/sid/icd-10-cm','Unspecified electric (assisted) bicycle rider injured in collision with other motor vehicles in nontraffic accident, sequela','V29291S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.298A','V29.298A','http://hl7.org/fhir/sid/icd-10-cm','Unspecified rider of other motorcycle injured in collision with other motor vehicles in nontraffic accident, initial encounter','V29298A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.298D','V29.298D','http://hl7.org/fhir/sid/icd-10-cm','Unspecified rider of other motorcycle injured in collision with other motor vehicles in nontraffic accident, subsequent encounter','V29298D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.298S','V29.298S','http://hl7.org/fhir/sid/icd-10-cm','Unspecified rider of other motorcycle injured in collision with other motor vehicles in nontraffic accident, sequela','V29298S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.29XA','V29.29XA','http://hl7.org/fhir/sid/icd-10-cm','','V2929XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.29XD','V29.29XD','http://hl7.org/fhir/sid/icd-10-cm','','V2929XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.29XS','V29.29XS','http://hl7.org/fhir/sid/icd-10-cm','','V2929XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.401A','V29.401A','http://hl7.org/fhir/sid/icd-10-cm','Electric (assisted) bicycle driver injured in collision with unspecified motor vehicles in traffic accident, initial encounter','V29401A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.401D','V29.401D','http://hl7.org/fhir/sid/icd-10-cm','Electric (assisted) bicycle driver injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter','V29401D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.401S','V29.401S','http://hl7.org/fhir/sid/icd-10-cm','Electric (assisted) bicycle driver injured in collision with unspecified motor vehicles in traffic accident, sequela','V29401S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.408A','V29.408A','http://hl7.org/fhir/sid/icd-10-cm','Other motorcycle driver injured in collision with unspecified motor vehicles in traffic accident, initial encounter','V29408A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.408D','V29.408D','http://hl7.org/fhir/sid/icd-10-cm','Other motorcycle driver injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter','V29408D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.408S','V29.408S','http://hl7.org/fhir/sid/icd-10-cm','Other motorcycle driver injured in collision with unspecified motor vehicles in traffic accident, sequela','V29408S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.40XA','V29.40XA','http://hl7.org/fhir/sid/icd-10-cm','','V2940XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.40XD','V29.40XD','http://hl7.org/fhir/sid/icd-10-cm','','V2940XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.40XS','V29.40XS','http://hl7.org/fhir/sid/icd-10-cm','','V2940XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.491A','V29.491A','http://hl7.org/fhir/sid/icd-10-cm','Electric (assisted) bicycle driver injured in collision with other motor vehicles in traffic accident, initial encounter','V29491A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.491D','V29.491D','http://hl7.org/fhir/sid/icd-10-cm','Electric (assisted) bicycle driver injured in collision with other motor vehicles in traffic accident, subsequent encounter','V29491D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.491S','V29.491S','http://hl7.org/fhir/sid/icd-10-cm','Electric (assisted) bicycle driver injured in collision with other motor vehicles in traffic accident, sequela','V29491S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.498A','V29.498A','http://hl7.org/fhir/sid/icd-10-cm','Other motorcycle driver injured in collision with other motor vehicles in traffic accident, initial encounter','V29498A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.498D','V29.498D','http://hl7.org/fhir/sid/icd-10-cm','Other motorcycle driver injured in collision with other motor vehicles in traffic accident, subsequent encounter','V29498D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.498S','V29.498S','http://hl7.org/fhir/sid/icd-10-cm','Other motorcycle driver injured in collision with other motor vehicles in traffic accident, sequela','V29498S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.49XA','V29.49XA','http://hl7.org/fhir/sid/icd-10-cm','','V2949XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.49XD','V29.49XD','http://hl7.org/fhir/sid/icd-10-cm','','V2949XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.49XS','V29.49XS','http://hl7.org/fhir/sid/icd-10-cm','','V2949XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.501A','V29.501A','http://hl7.org/fhir/sid/icd-10-cm','Electric (assisted) bicycle passenger injured in collision with unspecified motor vehicles in traffic accident, initial encounter','V29501A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.501D','V29.501D','http://hl7.org/fhir/sid/icd-10-cm','Electric (assisted) bicycle passenger injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter','V29501D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.501S','V29.501S','http://hl7.org/fhir/sid/icd-10-cm','Electric (assisted) bicycle passenger injured in collision with unspecified motor vehicles in traffic accident, sequela','V29501S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.508A','V29.508A','http://hl7.org/fhir/sid/icd-10-cm','Other motorcycle passenger injured in collision with unspecified motor vehicles in traffic accident, initial encounter','V29508A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.508D','V29.508D','http://hl7.org/fhir/sid/icd-10-cm','Other motorcycle passenger injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter','V29508D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.508S','V29.508S','http://hl7.org/fhir/sid/icd-10-cm','Other motorcycle passenger injured in collision with unspecified motor vehicles in traffic accident, sequela','V29508S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.50XA','V29.50XA','http://hl7.org/fhir/sid/icd-10-cm','','V2950XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.50XD','V29.50XD','http://hl7.org/fhir/sid/icd-10-cm','','V2950XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.50XS','V29.50XS','http://hl7.org/fhir/sid/icd-10-cm','','V2950XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.591A','V29.591A','http://hl7.org/fhir/sid/icd-10-cm','Electric (assisted) bicycle passenger injured in collision with other motor vehicles in traffic accident, initial encounter','V29591A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.591D','V29.591D','http://hl7.org/fhir/sid/icd-10-cm','Electric (assisted) bicycle passenger injured in collision with other motor vehicles in traffic accident, subsequent encounter','V29591D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.591S','V29.591S','http://hl7.org/fhir/sid/icd-10-cm','Electric (assisted) bicycle passenger injured in collision with other motor vehicles in traffic accident, sequela','V29591S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.598A','V29.598A','http://hl7.org/fhir/sid/icd-10-cm','Other motorcycle passenger injured in collision with other motor vehicles in traffic accident, initial encounter','V29598A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.598D','V29.598D','http://hl7.org/fhir/sid/icd-10-cm','Other motorcycle passenger injured in collision with other motor vehicles in traffic accident, subsequent encounter','V29598D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.598S','V29.598S','http://hl7.org/fhir/sid/icd-10-cm','Other motorcycle passenger injured in collision with other motor vehicles in traffic accident, sequela','V29598S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.59XA','V29.59XA','http://hl7.org/fhir/sid/icd-10-cm','','V2959XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.59XD','V29.59XD','http://hl7.org/fhir/sid/icd-10-cm','','V2959XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.59XS','V29.59XS','http://hl7.org/fhir/sid/icd-10-cm','','V2959XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.601A','V29.601A','http://hl7.org/fhir/sid/icd-10-cm','Unspecified electric (assisted) bicycle rider injured in collision with unspecified motor vehicles in traffic accident, initial encounter','V29601A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.601D','V29.601D','http://hl7.org/fhir/sid/icd-10-cm','Unspecified electric (assisted) bicycle rider injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter','V29601D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.601S','V29.601S','http://hl7.org/fhir/sid/icd-10-cm','Unspecified electric (assisted) bicycle rider injured in collision with unspecified motor vehicles in traffic accident, sequela','V29601S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.608A','V29.608A','http://hl7.org/fhir/sid/icd-10-cm','Unspecified rider of other motorcycle injured in collision with unspecified motor vehicles in traffic accident, initial encounter','V29608A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.608D','V29.608D','http://hl7.org/fhir/sid/icd-10-cm','Unspecified rider of other motorcycle injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter','V29608D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.608S','V29.608S','http://hl7.org/fhir/sid/icd-10-cm','Unspecified rider of other motorcycle injured in collision with unspecified motor vehicles in traffic accident, sequela','V29608S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.60XA','V29.60XA','http://hl7.org/fhir/sid/icd-10-cm','','V2960XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.60XD','V29.60XD','http://hl7.org/fhir/sid/icd-10-cm','','V2960XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.60XS','V29.60XS','http://hl7.org/fhir/sid/icd-10-cm','','V2960XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.691A','V29.691A','http://hl7.org/fhir/sid/icd-10-cm','Unspecified electric (assisted) bicycle rider injured in collision with other motor vehicles in traffic accident, initial encounter','V29691A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.691D','V29.691D','http://hl7.org/fhir/sid/icd-10-cm','Unspecified electric (assisted) bicycle rider injured in collision with other motor vehicles in traffic accident, subsequent encounter','V29691D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.691S','V29.691S','http://hl7.org/fhir/sid/icd-10-cm','Unspecified electric (assisted) bicycle rider injured in collision with other motor vehicles in traffic accident, sequela','V29691S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.698A','V29.698A','http://hl7.org/fhir/sid/icd-10-cm','Unspecified rider of other motorcycle injured in collision with other motor vehicles in traffic accident, initial encounter','V29698A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.698D','V29.698D','http://hl7.org/fhir/sid/icd-10-cm','Unspecified rider of other motorcycle injured in collision with other motor vehicles in traffic accident, subsequent encounter','V29698D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.698S','V29.698S','http://hl7.org/fhir/sid/icd-10-cm','Unspecified rider of other motorcycle injured in collision with other motor vehicles in traffic accident, sequela','V29698S','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.69XA','V29.69XA','http://hl7.org/fhir/sid/icd-10-cm','','V2969XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.69XD','V29.69XD','http://hl7.org/fhir/sid/icd-10-cm','','V2969XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V29.69XS','V29.69XS','http://hl7.org/fhir/sid/icd-10-cm','','V2969XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V30.0XXA','V30.0XXA','http://hl7.org/fhir/sid/icd-10-cm','Driver of three-wheeled motor vehicle injured in collision with pedestrian or animal in nontraffic accident, initial encounter','V300XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V30.0XXD','V30.0XXD','http://hl7.org/fhir/sid/icd-10-cm','Driver of three-wheeled motor vehicle injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter','V300XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V30.0XXS','V30.0XXS','http://hl7.org/fhir/sid/icd-10-cm','Driver of three-wheeled motor vehicle injured in collision with pedestrian or animal in nontraffic accident, sequela','V300XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V30.1XXA','V30.1XXA','http://hl7.org/fhir/sid/icd-10-cm','Passenger in three-wheeled motor vehicle injured in collision with pedestrian or animal in nontraffic accident, initial encounter','V301XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V30.1XXD','V30.1XXD','http://hl7.org/fhir/sid/icd-10-cm','Passenger in three-wheeled motor vehicle injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter','V301XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V30.1XXS','V30.1XXS','http://hl7.org/fhir/sid/icd-10-cm','Passenger in three-wheeled motor vehicle injured in collision with pedestrian or animal in nontraffic accident, sequela','V301XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V30.2XXA','V30.2XXA','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of three-wheeled motor vehicle injured in collision with pedestrian or animal in nontraffic accident, initial encounter','V302XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V30.2XXD','V30.2XXD','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of three-wheeled motor vehicle injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter','V302XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V30.2XXS','V30.2XXS','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of three-wheeled motor vehicle injured in collision with pedestrian or animal in nontraffic accident, sequela','V302XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V30.3XXA','V30.3XXA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of three-wheeled motor vehicle injured in collision with pedestrian or animal in nontraffic accident, initial encounter','V303XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V30.3XXD','V30.3XXD','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of three-wheeled motor vehicle injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter','V303XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V30.3XXS','V30.3XXS','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of three-wheeled motor vehicle injured in collision with pedestrian or animal in nontraffic accident, sequela','V303XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V30.4XXA','V30.4XXA','http://hl7.org/fhir/sid/icd-10-cm','Person boarding or alighting a three-wheeled motor vehicle injured in collision with pedestrian or animal, initial encounter','V304XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V30.4XXD','V30.4XXD','http://hl7.org/fhir/sid/icd-10-cm','Person boarding or alighting a three-wheeled motor vehicle injured in collision with pedestrian or animal, subsequent encounter','V304XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V30.4XXS','V30.4XXS','http://hl7.org/fhir/sid/icd-10-cm','Person boarding or alighting a three-wheeled motor vehicle injured in collision with pedestrian or animal, sequela','V304XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V30.5XXA','V30.5XXA','http://hl7.org/fhir/sid/icd-10-cm','Driver of three-wheeled motor vehicle injured in collision with pedestrian or animal in traffic accident, initial encounter','V305XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V30.5XXD','V30.5XXD','http://hl7.org/fhir/sid/icd-10-cm','Driver of three-wheeled motor vehicle injured in collision with pedestrian or animal in traffic accident, subsequent encounter','V305XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V30.5XXS','V30.5XXS','http://hl7.org/fhir/sid/icd-10-cm','Driver of three-wheeled motor vehicle injured in collision with pedestrian or animal in traffic accident, sequela','V305XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V30.6XXA','V30.6XXA','http://hl7.org/fhir/sid/icd-10-cm','Passenger in three-wheeled motor vehicle injured in collision with pedestrian or animal in traffic accident, initial encounter','V306XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V30.6XXD','V30.6XXD','http://hl7.org/fhir/sid/icd-10-cm','Passenger in three-wheeled motor vehicle injured in collision with pedestrian or animal in traffic accident, subsequent encounter','V306XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V30.6XXS','V30.6XXS','http://hl7.org/fhir/sid/icd-10-cm','Passenger in three-wheeled motor vehicle injured in collision with pedestrian or animal in traffic accident, sequela','V306XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V30.7XXA','V30.7XXA','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of three-wheeled motor vehicle injured in collision with pedestrian or animal in traffic accident, initial encounter','V307XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V30.7XXD','V30.7XXD','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of three-wheeled motor vehicle injured in collision with pedestrian or animal in traffic accident, subsequent encounter','V307XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V30.7XXS','V30.7XXS','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of three-wheeled motor vehicle injured in collision with pedestrian or animal in traffic accident, sequela','V307XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V30.9XXA','V30.9XXA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of three-wheeled motor vehicle injured in collision with pedestrian or animal in traffic accident, initial encounter','V309XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V30.9XXD','V30.9XXD','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of three-wheeled motor vehicle injured in collision with pedestrian or animal in traffic accident, subsequent encounter','V309XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V30.9XXS','V30.9XXS','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of three-wheeled motor vehicle injured in collision with pedestrian or animal in traffic accident, sequela','V309XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V31.0XXA','V31.0XXA','http://hl7.org/fhir/sid/icd-10-cm','Driver of three-wheeled motor vehicle injured in collision with pedal cycle in nontraffic accident, initial encounter','V310XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V31.0XXD','V31.0XXD','http://hl7.org/fhir/sid/icd-10-cm','Driver of three-wheeled motor vehicle injured in collision with pedal cycle in nontraffic accident, subsequent encounter','V310XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V31.0XXS','V31.0XXS','http://hl7.org/fhir/sid/icd-10-cm','Driver of three-wheeled motor vehicle injured in collision with pedal cycle in nontraffic accident, sequela','V310XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V31.1XXA','V31.1XXA','http://hl7.org/fhir/sid/icd-10-cm','Passenger in three-wheeled motor vehicle injured in collision with pedal cycle in nontraffic accident, initial encounter','V311XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V31.1XXD','V31.1XXD','http://hl7.org/fhir/sid/icd-10-cm','Passenger in three-wheeled motor vehicle injured in collision with pedal cycle in nontraffic accident, subsequent encounter','V311XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V31.1XXS','V31.1XXS','http://hl7.org/fhir/sid/icd-10-cm','Passenger in three-wheeled motor vehicle injured in collision with pedal cycle in nontraffic accident, sequela','V311XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V31.2XXA','V31.2XXA','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of three-wheeled motor vehicle injured in collision with pedal cycle in nontraffic accident, initial encounter','V312XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V31.2XXD','V31.2XXD','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of three-wheeled motor vehicle injured in collision with pedal cycle in nontraffic accident, subsequent encounter','V312XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V31.2XXS','V31.2XXS','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of three-wheeled motor vehicle injured in collision with pedal cycle in nontraffic accident, sequela','V312XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V31.3XXA','V31.3XXA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of three-wheeled motor vehicle injured in collision with pedal cycle in nontraffic accident, initial encounter','V313XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V31.3XXD','V31.3XXD','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of three-wheeled motor vehicle injured in collision with pedal cycle in nontraffic accident, subsequent encounter','V313XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V31.3XXS','V31.3XXS','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of three-wheeled motor vehicle injured in collision with pedal cycle in nontraffic accident, sequela','V313XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V31.4XXA','V31.4XXA','http://hl7.org/fhir/sid/icd-10-cm','Person boarding or alighting a three-wheeled motor vehicle injured in collision with pedal cycle, initial encounter','V314XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V31.4XXD','V31.4XXD','http://hl7.org/fhir/sid/icd-10-cm','Person boarding or alighting a three-wheeled motor vehicle injured in collision with pedal cycle, subsequent encounter','V314XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V31.4XXS','V31.4XXS','http://hl7.org/fhir/sid/icd-10-cm','Person boarding or alighting a three-wheeled motor vehicle injured in collision with pedal cycle, sequela','V314XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V31.5XXA','V31.5XXA','http://hl7.org/fhir/sid/icd-10-cm','Driver of three-wheeled motor vehicle injured in collision with pedal cycle in traffic accident, initial encounter','V315XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V31.5XXD','V31.5XXD','http://hl7.org/fhir/sid/icd-10-cm','Driver of three-wheeled motor vehicle injured in collision with pedal cycle in traffic accident, subsequent encounter','V315XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V31.5XXS','V31.5XXS','http://hl7.org/fhir/sid/icd-10-cm','Driver of three-wheeled motor vehicle injured in collision with pedal cycle in traffic accident, sequela','V315XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V31.6XXA','V31.6XXA','http://hl7.org/fhir/sid/icd-10-cm','Passenger in three-wheeled motor vehicle injured in collision with pedal cycle in traffic accident, initial encounter','V316XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V31.6XXD','V31.6XXD','http://hl7.org/fhir/sid/icd-10-cm','Passenger in three-wheeled motor vehicle injured in collision with pedal cycle in traffic accident, subsequent encounter','V316XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V31.6XXS','V31.6XXS','http://hl7.org/fhir/sid/icd-10-cm','Passenger in three-wheeled motor vehicle injured in collision with pedal cycle in traffic accident, sequela','V316XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V31.7XXA','V31.7XXA','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of three-wheeled motor vehicle injured in collision with pedal cycle in traffic accident, initial encounter','V317XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V31.7XXD','V31.7XXD','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of three-wheeled motor vehicle injured in collision with pedal cycle in traffic accident, subsequent encounter','V317XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V31.7XXS','V31.7XXS','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of three-wheeled motor vehicle injured in collision with pedal cycle in traffic accident, sequela','V317XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V31.9XXA','V31.9XXA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of three-wheeled motor vehicle injured in collision with pedal cycle in traffic accident, initial encounter','V319XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V31.9XXD','V31.9XXD','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of three-wheeled motor vehicle injured in collision with pedal cycle in traffic accident, subsequent encounter','V319XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V31.9XXS','V31.9XXS','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of three-wheeled motor vehicle injured in collision with pedal cycle in traffic accident, sequela','V319XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V32.0XXA','V32.0XXA','http://hl7.org/fhir/sid/icd-10-cm','Driver of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter','V320XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V32.0XXD','V32.0XXD','http://hl7.org/fhir/sid/icd-10-cm','Driver of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter','V320XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V32.0XXS','V32.0XXS','http://hl7.org/fhir/sid/icd-10-cm','Driver of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela','V320XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V32.1XXA','V32.1XXA','http://hl7.org/fhir/sid/icd-10-cm','Passenger in three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter','V321XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V32.1XXD','V32.1XXD','http://hl7.org/fhir/sid/icd-10-cm','Passenger in three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter','V321XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V32.1XXS','V32.1XXS','http://hl7.org/fhir/sid/icd-10-cm','Passenger in three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela','V321XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V32.2XXA','V32.2XXA','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter','V322XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V32.2XXD','V32.2XXD','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter','V322XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V32.2XXS','V32.2XXS','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela','V322XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V32.3XXA','V32.3XXA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter','V323XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V32.3XXD','V32.3XXD','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter','V323XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V32.3XXS','V32.3XXS','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela','V323XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V32.4XXA','V32.4XXA','http://hl7.org/fhir/sid/icd-10-cm','Person boarding or alighting a three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle, initial encounter','V324XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V32.4XXD','V32.4XXD','http://hl7.org/fhir/sid/icd-10-cm','Person boarding or alighting a three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle, subsequent encounter','V324XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V32.4XXS','V32.4XXS','http://hl7.org/fhir/sid/icd-10-cm','Person boarding or alighting a three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle, sequela','V324XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V32.5XXA','V32.5XXA','http://hl7.org/fhir/sid/icd-10-cm','Driver of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter','V325XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V32.5XXD','V32.5XXD','http://hl7.org/fhir/sid/icd-10-cm','Driver of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter','V325XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V32.5XXS','V32.5XXS','http://hl7.org/fhir/sid/icd-10-cm','Driver of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela','V325XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V32.6XXA','V32.6XXA','http://hl7.org/fhir/sid/icd-10-cm','Passenger in three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter','V326XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V32.6XXD','V32.6XXD','http://hl7.org/fhir/sid/icd-10-cm','Passenger in three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter','V326XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V32.6XXS','V32.6XXS','http://hl7.org/fhir/sid/icd-10-cm','Passenger in three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela','V326XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V32.7XXA','V32.7XXA','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter','V327XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V32.7XXD','V32.7XXD','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter','V327XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V32.7XXS','V32.7XXS','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela','V327XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V32.9XXA','V32.9XXA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter','V329XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V32.9XXD','V32.9XXD','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter','V329XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V32.9XXS','V32.9XXS','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela','V329XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V33.0XXA','V33.0XXA','http://hl7.org/fhir/sid/icd-10-cm','Driver of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter','V330XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V33.0XXD','V33.0XXD','http://hl7.org/fhir/sid/icd-10-cm','Driver of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter','V330XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V33.0XXS','V33.0XXS','http://hl7.org/fhir/sid/icd-10-cm','Driver of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in nontraffic accident, sequela','V330XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V33.1XXA','V33.1XXA','http://hl7.org/fhir/sid/icd-10-cm','Passenger in three-wheeled motor vehicle injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter','V331XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V33.1XXD','V33.1XXD','http://hl7.org/fhir/sid/icd-10-cm','Passenger in three-wheeled motor vehicle injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter','V331XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V33.1XXS','V33.1XXS','http://hl7.org/fhir/sid/icd-10-cm','Passenger in three-wheeled motor vehicle injured in collision with car, pick-up truck or van in nontraffic accident, sequela','V331XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V33.2XXA','V33.2XXA','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter','V332XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V33.2XXD','V33.2XXD','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter','V332XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V33.2XXS','V33.2XXS','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in nontraffic accident, sequela','V332XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V33.3XXA','V33.3XXA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter','V333XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V33.3XXD','V33.3XXD','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter','V333XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V33.3XXS','V33.3XXS','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in nontraffic accident, sequela','V333XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V33.4XXA','V33.4XXA','http://hl7.org/fhir/sid/icd-10-cm','Person boarding or alighting a three-wheeled motor vehicle injured in collision with car, pick-up truck or van, initial encounter','V334XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V33.4XXD','V33.4XXD','http://hl7.org/fhir/sid/icd-10-cm','Person boarding or alighting a three-wheeled motor vehicle injured in collision with car, pick-up truck or van, subsequent encounter','V334XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V33.4XXS','V33.4XXS','http://hl7.org/fhir/sid/icd-10-cm','Person boarding or alighting a three-wheeled motor vehicle injured in collision with car, pick-up truck or van, sequela','V334XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V33.5XXA','V33.5XXA','http://hl7.org/fhir/sid/icd-10-cm','Driver of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in traffic accident, initial encounter','V335XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V33.5XXD','V33.5XXD','http://hl7.org/fhir/sid/icd-10-cm','Driver of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter','V335XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V33.5XXS','V33.5XXS','http://hl7.org/fhir/sid/icd-10-cm','Driver of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in traffic accident, sequela','V335XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V33.6XXA','V33.6XXA','http://hl7.org/fhir/sid/icd-10-cm','Passenger in three-wheeled motor vehicle injured in collision with car, pick-up truck or van in traffic accident, initial encounter','V336XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V33.6XXD','V33.6XXD','http://hl7.org/fhir/sid/icd-10-cm','Passenger in three-wheeled motor vehicle injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter','V336XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V33.6XXS','V33.6XXS','http://hl7.org/fhir/sid/icd-10-cm','Passenger in three-wheeled motor vehicle injured in collision with car, pick-up truck or van in traffic accident, sequela','V336XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V33.7XXA','V33.7XXA','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in traffic accident, initial encounter','V337XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V33.7XXD','V33.7XXD','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter','V337XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V33.7XXS','V33.7XXS','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in traffic accident, sequela','V337XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V33.9XXA','V33.9XXA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in traffic accident, initial encounter','V339XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V33.9XXD','V33.9XXD','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter','V339XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V33.9XXS','V33.9XXS','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in traffic accident, sequela','V339XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V34.0XXA','V34.0XXA','http://hl7.org/fhir/sid/icd-10-cm','Driver of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter','V340XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V34.0XXD','V34.0XXD','http://hl7.org/fhir/sid/icd-10-cm','Driver of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter','V340XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V34.0XXS','V34.0XXS','http://hl7.org/fhir/sid/icd-10-cm','Driver of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela','V340XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V34.1XXA','V34.1XXA','http://hl7.org/fhir/sid/icd-10-cm','Passenger in three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter','V341XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V34.1XXD','V34.1XXD','http://hl7.org/fhir/sid/icd-10-cm','Passenger in three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter','V341XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V34.1XXS','V34.1XXS','http://hl7.org/fhir/sid/icd-10-cm','Passenger in three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela','V341XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V34.2XXA','V34.2XXA','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter','V342XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V34.2XXD','V34.2XXD','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter','V342XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V34.2XXS','V34.2XXS','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela','V342XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V34.3XXA','V34.3XXA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter','V343XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V34.3XXD','V34.3XXD','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter','V343XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V34.3XXS','V34.3XXS','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela','V343XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V34.4XXA','V34.4XXA','http://hl7.org/fhir/sid/icd-10-cm','Person boarding or alighting a three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus, initial encounter','V344XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V34.4XXD','V34.4XXD','http://hl7.org/fhir/sid/icd-10-cm','Person boarding or alighting a three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus, subsequent encounter','V344XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V34.4XXS','V34.4XXS','http://hl7.org/fhir/sid/icd-10-cm','Person boarding or alighting a three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus, sequela','V344XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V34.5XXA','V34.5XXA','http://hl7.org/fhir/sid/icd-10-cm','Driver of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter','V345XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V34.5XXD','V34.5XXD','http://hl7.org/fhir/sid/icd-10-cm','Driver of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter','V345XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V34.5XXS','V34.5XXS','http://hl7.org/fhir/sid/icd-10-cm','Driver of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in traffic accident, sequela','V345XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V34.6XXA','V34.6XXA','http://hl7.org/fhir/sid/icd-10-cm','Passenger in three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter','V346XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V34.6XXD','V34.6XXD','http://hl7.org/fhir/sid/icd-10-cm','Passenger in three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter','V346XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V34.6XXS','V34.6XXS','http://hl7.org/fhir/sid/icd-10-cm','Passenger in three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in traffic accident, sequela','V346XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V34.7XXA','V34.7XXA','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter','V347XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V34.7XXD','V34.7XXD','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter','V347XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V34.7XXS','V34.7XXS','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in traffic accident, sequela','V347XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V34.9XXA','V34.9XXA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter','V349XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V34.9XXD','V34.9XXD','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter','V349XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V34.9XXS','V34.9XXS','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in traffic accident, sequela','V349XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V35.0XXA','V35.0XXA','http://hl7.org/fhir/sid/icd-10-cm','Driver of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter','V350XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V35.0XXD','V35.0XXD','http://hl7.org/fhir/sid/icd-10-cm','Driver of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter','V350XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V35.0XXS','V35.0XXS','http://hl7.org/fhir/sid/icd-10-cm','Driver of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in nontraffic accident, sequela','V350XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V35.1XXA','V35.1XXA','http://hl7.org/fhir/sid/icd-10-cm','Passenger in three-wheeled motor vehicle injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter','V351XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V35.1XXD','V35.1XXD','http://hl7.org/fhir/sid/icd-10-cm','Passenger in three-wheeled motor vehicle injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter','V351XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V35.1XXS','V35.1XXS','http://hl7.org/fhir/sid/icd-10-cm','Passenger in three-wheeled motor vehicle injured in collision with railway train or railway vehicle in nontraffic accident, sequela','V351XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V35.2XXA','V35.2XXA','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter','V352XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V35.2XXD','V35.2XXD','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter','V352XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V35.2XXS','V35.2XXS','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in nontraffic accident, sequela','V352XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V35.3XXA','V35.3XXA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter','V353XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V35.3XXD','V35.3XXD','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter','V353XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V35.3XXS','V35.3XXS','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in nontraffic accident, sequela','V353XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V35.4XXA','V35.4XXA','http://hl7.org/fhir/sid/icd-10-cm','Person boarding or alighting a three-wheeled motor vehicle injured in collision with railway train or railway vehicle, initial encounter','V354XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V35.4XXD','V35.4XXD','http://hl7.org/fhir/sid/icd-10-cm','Person boarding or alighting a three-wheeled motor vehicle injured in collision with railway train or railway vehicle, subsequent encounter','V354XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V35.4XXS','V35.4XXS','http://hl7.org/fhir/sid/icd-10-cm','Person boarding or alighting a three-wheeled motor vehicle injured in collision with railway train or railway vehicle, sequela','V354XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V35.5XXA','V35.5XXA','http://hl7.org/fhir/sid/icd-10-cm','Driver of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in traffic accident, initial encounter','V355XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V35.5XXD','V35.5XXD','http://hl7.org/fhir/sid/icd-10-cm','Driver of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter','V355XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V35.5XXS','V35.5XXS','http://hl7.org/fhir/sid/icd-10-cm','Driver of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in traffic accident, sequela','V355XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V35.6XXA','V35.6XXA','http://hl7.org/fhir/sid/icd-10-cm','Passenger in three-wheeled motor vehicle injured in collision with railway train or railway vehicle in traffic accident, initial encounter','V356XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V35.6XXD','V35.6XXD','http://hl7.org/fhir/sid/icd-10-cm','Passenger in three-wheeled motor vehicle injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter','V356XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V35.6XXS','V35.6XXS','http://hl7.org/fhir/sid/icd-10-cm','Passenger in three-wheeled motor vehicle injured in collision with railway train or railway vehicle in traffic accident, sequela','V356XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V35.7XXA','V35.7XXA','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in traffic accident, initial encounter','V357XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V35.7XXD','V35.7XXD','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter','V357XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V35.7XXS','V35.7XXS','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in traffic accident, sequela','V357XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V35.9XXA','V35.9XXA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in traffic accident, initial encounter','V359XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V35.9XXD','V35.9XXD','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter','V359XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V35.9XXS','V35.9XXS','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in traffic accident, sequela','V359XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V36.0XXA','V36.0XXA','http://hl7.org/fhir/sid/icd-10-cm','Driver of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter','V360XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V36.0XXD','V36.0XXD','http://hl7.org/fhir/sid/icd-10-cm','Driver of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter','V360XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V36.0XXS','V36.0XXS','http://hl7.org/fhir/sid/icd-10-cm','Driver of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in nontraffic accident, sequela','V360XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V36.1XXA','V36.1XXA','http://hl7.org/fhir/sid/icd-10-cm','Passenger in three-wheeled motor vehicle injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter','V361XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V36.1XXD','V36.1XXD','http://hl7.org/fhir/sid/icd-10-cm','Passenger in three-wheeled motor vehicle injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter','V361XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V36.1XXS','V36.1XXS','http://hl7.org/fhir/sid/icd-10-cm','Passenger in three-wheeled motor vehicle injured in collision with other nonmotor vehicle in nontraffic accident, sequela','V361XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V36.2XXA','V36.2XXA','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter','V362XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V36.2XXD','V36.2XXD','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter','V362XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V36.2XXS','V36.2XXS','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in nontraffic accident, sequela','V362XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V36.3XXA','V36.3XXA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter','V363XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V36.3XXD','V36.3XXD','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter','V363XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V36.3XXS','V36.3XXS','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in nontraffic accident, sequela','V363XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V36.4XXA','V36.4XXA','http://hl7.org/fhir/sid/icd-10-cm','Person boarding or alighting a three-wheeled motor vehicle injured in collision with other nonmotor vehicle, initial encounter','V364XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V36.4XXD','V36.4XXD','http://hl7.org/fhir/sid/icd-10-cm','Person boarding or alighting a three-wheeled motor vehicle injured in collision with other nonmotor vehicle, subsequent encounter','V364XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V36.4XXS','V36.4XXS','http://hl7.org/fhir/sid/icd-10-cm','Person boarding or alighting a three-wheeled motor vehicle injured in collision with other nonmotor vehicle, sequela','V364XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V36.5XXA','V36.5XXA','http://hl7.org/fhir/sid/icd-10-cm','Driver of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in traffic accident, initial encounter','V365XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V36.5XXD','V36.5XXD','http://hl7.org/fhir/sid/icd-10-cm','Driver of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter','V365XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V36.5XXS','V36.5XXS','http://hl7.org/fhir/sid/icd-10-cm','Driver of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in traffic accident, sequela','V365XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V36.6XXA','V36.6XXA','http://hl7.org/fhir/sid/icd-10-cm','Passenger in three-wheeled motor vehicle injured in collision with other nonmotor vehicle in traffic accident, initial encounter','V366XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V36.6XXD','V36.6XXD','http://hl7.org/fhir/sid/icd-10-cm','Passenger in three-wheeled motor vehicle injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter','V366XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V36.6XXS','V36.6XXS','http://hl7.org/fhir/sid/icd-10-cm','Passenger in three-wheeled motor vehicle injured in collision with other nonmotor vehicle in traffic accident, sequela','V366XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V36.7XXA','V36.7XXA','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in traffic accident, initial encounter','V367XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V36.7XXD','V36.7XXD','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter','V367XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V36.7XXS','V36.7XXS','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in traffic accident, sequela','V367XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V36.9XXA','V36.9XXA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in traffic accident, initial encounter','V369XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V36.9XXD','V36.9XXD','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter','V369XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V36.9XXS','V36.9XXS','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in traffic accident, sequela','V369XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V37.0XXA','V37.0XXA','http://hl7.org/fhir/sid/icd-10-cm','Driver of three-wheeled motor vehicle injured in collision with fixed or stationary object in nontraffic accident, initial encounter','V370XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V37.0XXD','V37.0XXD','http://hl7.org/fhir/sid/icd-10-cm','Driver of three-wheeled motor vehicle injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter','V370XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V37.0XXS','V37.0XXS','http://hl7.org/fhir/sid/icd-10-cm','Driver of three-wheeled motor vehicle injured in collision with fixed or stationary object in nontraffic accident, sequela','V370XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V37.1XXA','V37.1XXA','http://hl7.org/fhir/sid/icd-10-cm','Passenger in three-wheeled motor vehicle injured in collision with fixed or stationary object in nontraffic accident, initial encounter','V371XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V37.1XXD','V37.1XXD','http://hl7.org/fhir/sid/icd-10-cm','Passenger in three-wheeled motor vehicle injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter','V371XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V37.1XXS','V37.1XXS','http://hl7.org/fhir/sid/icd-10-cm','Passenger in three-wheeled motor vehicle injured in collision with fixed or stationary object in nontraffic accident, sequela','V371XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V37.2XXA','V37.2XXA','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of three-wheeled motor vehicle injured in collision with fixed or stationary object in nontraffic accident, initial encounter','V372XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V37.2XXD','V37.2XXD','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of three-wheeled motor vehicle injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter','V372XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V37.2XXS','V37.2XXS','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of three-wheeled motor vehicle injured in collision with fixed or stationary object in nontraffic accident, sequela','V372XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V37.3XXA','V37.3XXA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of three-wheeled motor vehicle injured in collision with fixed or stationary object in nontraffic accident, initial encounter','V373XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V37.3XXD','V37.3XXD','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of three-wheeled motor vehicle injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter','V373XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V37.3XXS','V37.3XXS','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of three-wheeled motor vehicle injured in collision with fixed or stationary object in nontraffic accident, sequela','V373XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V37.4XXA','V37.4XXA','http://hl7.org/fhir/sid/icd-10-cm','Person boarding or alighting a three-wheeled motor vehicle injured in collision with fixed or stationary object, initial encounter','V374XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V37.4XXD','V37.4XXD','http://hl7.org/fhir/sid/icd-10-cm','Person boarding or alighting a three-wheeled motor vehicle injured in collision with fixed or stationary object, subsequent encounter','V374XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V37.4XXS','V37.4XXS','http://hl7.org/fhir/sid/icd-10-cm','Person boarding or alighting a three-wheeled motor vehicle injured in collision with fixed or stationary object, sequela','V374XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V37.5XXA','V37.5XXA','http://hl7.org/fhir/sid/icd-10-cm','Driver of three-wheeled motor vehicle injured in collision with fixed or stationary object in traffic accident, initial encounter','V375XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V37.5XXD','V37.5XXD','http://hl7.org/fhir/sid/icd-10-cm','Driver of three-wheeled motor vehicle injured in collision with fixed or stationary object in traffic accident, subsequent encounter','V375XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V37.5XXS','V37.5XXS','http://hl7.org/fhir/sid/icd-10-cm','Driver of three-wheeled motor vehicle injured in collision with fixed or stationary object in traffic accident, sequela','V375XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V37.6XXA','V37.6XXA','http://hl7.org/fhir/sid/icd-10-cm','Passenger in three-wheeled motor vehicle injured in collision with fixed or stationary object in traffic accident, initial encounter','V376XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V37.6XXD','V37.6XXD','http://hl7.org/fhir/sid/icd-10-cm','Passenger in three-wheeled motor vehicle injured in collision with fixed or stationary object in traffic accident, subsequent encounter','V376XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V37.6XXS','V37.6XXS','http://hl7.org/fhir/sid/icd-10-cm','Passenger in three-wheeled motor vehicle injured in collision with fixed or stationary object in traffic accident, sequela','V376XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V37.7XXA','V37.7XXA','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of three-wheeled motor vehicle injured in collision with fixed or stationary object in traffic accident, initial encounter','V377XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V37.7XXD','V37.7XXD','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of three-wheeled motor vehicle injured in collision with fixed or stationary object in traffic accident, subsequent encounter','V377XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V37.7XXS','V37.7XXS','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of three-wheeled motor vehicle injured in collision with fixed or stationary object in traffic accident, sequela','V377XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V37.9XXA','V37.9XXA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of three-wheeled motor vehicle injured in collision with fixed or stationary object in traffic accident, initial encounter','V379XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V37.9XXD','V37.9XXD','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of three-wheeled motor vehicle injured in collision with fixed or stationary object in traffic accident, subsequent encounter','V379XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V37.9XXS','V37.9XXS','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of three-wheeled motor vehicle injured in collision with fixed or stationary object in traffic accident, sequela','V379XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V38.0XXA','V38.0XXA','http://hl7.org/fhir/sid/icd-10-cm','Driver of three-wheeled motor vehicle injured in noncollision transport accident in nontraffic accident, initial encounter','V380XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V38.0XXD','V38.0XXD','http://hl7.org/fhir/sid/icd-10-cm','Driver of three-wheeled motor vehicle injured in noncollision transport accident in nontraffic accident, subsequent encounter','V380XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V38.0XXS','V38.0XXS','http://hl7.org/fhir/sid/icd-10-cm','Driver of three-wheeled motor vehicle injured in noncollision transport accident in nontraffic accident, sequela','V380XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V38.1XXA','V38.1XXA','http://hl7.org/fhir/sid/icd-10-cm','Passenger in three-wheeled motor vehicle injured in noncollision transport accident in nontraffic accident, initial encounter','V381XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V38.1XXD','V38.1XXD','http://hl7.org/fhir/sid/icd-10-cm','Passenger in three-wheeled motor vehicle injured in noncollision transport accident in nontraffic accident, subsequent encounter','V381XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V38.1XXS','V38.1XXS','http://hl7.org/fhir/sid/icd-10-cm','Passenger in three-wheeled motor vehicle injured in noncollision transport accident in nontraffic accident, sequela','V381XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V38.2XXA','V38.2XXA','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of three-wheeled motor vehicle injured in noncollision transport accident in nontraffic accident, initial encounter','V382XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V38.2XXD','V38.2XXD','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of three-wheeled motor vehicle injured in noncollision transport accident in nontraffic accident, subsequent encounter','V382XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V38.2XXS','V38.2XXS','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of three-wheeled motor vehicle injured in noncollision transport accident in nontraffic accident, sequela','V382XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V38.3XXA','V38.3XXA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of three-wheeled motor vehicle injured in noncollision transport accident in nontraffic accident, initial encounter','V383XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V38.3XXD','V38.3XXD','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of three-wheeled motor vehicle injured in noncollision transport accident in nontraffic accident, subsequent encounter','V383XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V38.3XXS','V38.3XXS','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of three-wheeled motor vehicle injured in noncollision transport accident in nontraffic accident, sequela','V383XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V38.4XXA','V38.4XXA','http://hl7.org/fhir/sid/icd-10-cm','Person boarding or alighting a three-wheeled motor vehicle injured in noncollision transport accident, initial encounter','V384XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V38.4XXD','V38.4XXD','http://hl7.org/fhir/sid/icd-10-cm','Person boarding or alighting a three-wheeled motor vehicle injured in noncollision transport accident, subsequent encounter','V384XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V38.4XXS','V38.4XXS','http://hl7.org/fhir/sid/icd-10-cm','Person boarding or alighting a three-wheeled motor vehicle injured in noncollision transport accident, sequela','V384XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V38.5XXA','V38.5XXA','http://hl7.org/fhir/sid/icd-10-cm','Driver of three-wheeled motor vehicle injured in noncollision transport accident in traffic accident, initial encounter','V385XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V38.5XXD','V38.5XXD','http://hl7.org/fhir/sid/icd-10-cm','Driver of three-wheeled motor vehicle injured in noncollision transport accident in traffic accident, subsequent encounter','V385XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V38.5XXS','V38.5XXS','http://hl7.org/fhir/sid/icd-10-cm','Driver of three-wheeled motor vehicle injured in noncollision transport accident in traffic accident, sequela','V385XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V38.6XXA','V38.6XXA','http://hl7.org/fhir/sid/icd-10-cm','Passenger in three-wheeled motor vehicle injured in noncollision transport accident in traffic accident, initial encounter','V386XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V38.6XXD','V38.6XXD','http://hl7.org/fhir/sid/icd-10-cm','Passenger in three-wheeled motor vehicle injured in noncollision transport accident in traffic accident, subsequent encounter','V386XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V38.6XXS','V38.6XXS','http://hl7.org/fhir/sid/icd-10-cm','Passenger in three-wheeled motor vehicle injured in noncollision transport accident in traffic accident, sequela','V386XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V38.7XXA','V38.7XXA','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of three-wheeled motor vehicle injured in noncollision transport accident in traffic accident, initial encounter','V387XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V38.7XXD','V38.7XXD','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of three-wheeled motor vehicle injured in noncollision transport accident in traffic accident, subsequent encounter','V387XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V38.7XXS','V38.7XXS','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of three-wheeled motor vehicle injured in noncollision transport accident in traffic accident, sequela','V387XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V38.9XXA','V38.9XXA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of three-wheeled motor vehicle injured in noncollision transport accident in traffic accident, initial encounter','V389XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V38.9XXD','V38.9XXD','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of three-wheeled motor vehicle injured in noncollision transport accident in traffic accident, subsequent encounter','V389XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V38.9XXS','V38.9XXS','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of three-wheeled motor vehicle injured in noncollision transport accident in traffic accident, sequela','V389XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V39.00XA','V39.00XA','http://hl7.org/fhir/sid/icd-10-cm','Driver of three-wheeled motor vehicle injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter','V3900XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V39.00XD','V39.00XD','http://hl7.org/fhir/sid/icd-10-cm','Driver of three-wheeled motor vehicle injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter','V3900XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V39.00XS','V39.00XS','http://hl7.org/fhir/sid/icd-10-cm','Driver of three-wheeled motor vehicle injured in collision with unspecified motor vehicles in nontraffic accident, sequela','V3900XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V39.09XA','V39.09XA','http://hl7.org/fhir/sid/icd-10-cm','Driver of three-wheeled motor vehicle injured in collision with other motor vehicles in nontraffic accident, initial encounter','V3909XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V39.09XD','V39.09XD','http://hl7.org/fhir/sid/icd-10-cm','Driver of three-wheeled motor vehicle injured in collision with other motor vehicles in nontraffic accident, subsequent encounter','V3909XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V39.09XS','V39.09XS','http://hl7.org/fhir/sid/icd-10-cm','Driver of three-wheeled motor vehicle injured in collision with other motor vehicles in nontraffic accident, sequela','V3909XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V39.10XA','V39.10XA','http://hl7.org/fhir/sid/icd-10-cm','Passenger in three-wheeled motor vehicle injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter','V3910XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V39.10XD','V39.10XD','http://hl7.org/fhir/sid/icd-10-cm','Passenger in three-wheeled motor vehicle injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter','V3910XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V39.10XS','V39.10XS','http://hl7.org/fhir/sid/icd-10-cm','Passenger in three-wheeled motor vehicle injured in collision with unspecified motor vehicles in nontraffic accident, sequela','V3910XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V39.19XA','V39.19XA','http://hl7.org/fhir/sid/icd-10-cm','Passenger in three-wheeled motor vehicle injured in collision with other motor vehicles in nontraffic accident, initial encounter','V3919XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V39.19XD','V39.19XD','http://hl7.org/fhir/sid/icd-10-cm','Passenger in three-wheeled motor vehicle injured in collision with other motor vehicles in nontraffic accident, subsequent encounter','V3919XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V39.19XS','V39.19XS','http://hl7.org/fhir/sid/icd-10-cm','Passenger in three-wheeled motor vehicle injured in collision with other motor vehicles in nontraffic accident, sequela','V3919XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V39.20XA','V39.20XA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of three-wheeled motor vehicle injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter','V3920XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V39.20XD','V39.20XD','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of three-wheeled motor vehicle injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter','V3920XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V39.20XS','V39.20XS','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of three-wheeled motor vehicle injured in collision with unspecified motor vehicles in nontraffic accident, sequela','V3920XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V39.29XA','V39.29XA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of three-wheeled motor vehicle injured in collision with other motor vehicles in nontraffic accident, initial encounter','V3929XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V39.29XD','V39.29XD','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of three-wheeled motor vehicle injured in collision with other motor vehicles in nontraffic accident, subsequent encounter','V3929XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V39.29XS','V39.29XS','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of three-wheeled motor vehicle injured in collision with other motor vehicles in nontraffic accident, sequela','V3929XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V39.3XXA','V39.3XXA','http://hl7.org/fhir/sid/icd-10-cm','Occupant (driver) (passenger) of three-wheeled motor vehicle injured in unspecified nontraffic accident, initial encounter','V393XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V39.3XXD','V39.3XXD','http://hl7.org/fhir/sid/icd-10-cm','Occupant (driver) (passenger) of three-wheeled motor vehicle injured in unspecified nontraffic accident, subsequent encounter','V393XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V39.3XXS','V39.3XXS','http://hl7.org/fhir/sid/icd-10-cm','Occupant (driver) (passenger) of three-wheeled motor vehicle injured in unspecified nontraffic accident, sequela','V393XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V39.40XA','V39.40XA','http://hl7.org/fhir/sid/icd-10-cm','Driver of three-wheeled motor vehicle injured in collision with unspecified motor vehicles in traffic accident, initial encounter','V3940XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V39.40XD','V39.40XD','http://hl7.org/fhir/sid/icd-10-cm','Driver of three-wheeled motor vehicle injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter','V3940XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V39.40XS','V39.40XS','http://hl7.org/fhir/sid/icd-10-cm','Driver of three-wheeled motor vehicle injured in collision with unspecified motor vehicles in traffic accident, sequela','V3940XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V39.49XA','V39.49XA','http://hl7.org/fhir/sid/icd-10-cm','Driver of three-wheeled motor vehicle injured in collision with other motor vehicles in traffic accident, initial encounter','V3949XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V39.49XD','V39.49XD','http://hl7.org/fhir/sid/icd-10-cm','Driver of three-wheeled motor vehicle injured in collision with other motor vehicles in traffic accident, subsequent encounter','V3949XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V39.49XS','V39.49XS','http://hl7.org/fhir/sid/icd-10-cm','Driver of three-wheeled motor vehicle injured in collision with other motor vehicles in traffic accident, sequela','V3949XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V39.50XA','V39.50XA','http://hl7.org/fhir/sid/icd-10-cm','Passenger in three-wheeled motor vehicle injured in collision with unspecified motor vehicles in traffic accident, initial encounter','V3950XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V39.50XD','V39.50XD','http://hl7.org/fhir/sid/icd-10-cm','Passenger in three-wheeled motor vehicle injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter','V3950XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V39.50XS','V39.50XS','http://hl7.org/fhir/sid/icd-10-cm','Passenger in three-wheeled motor vehicle injured in collision with unspecified motor vehicles in traffic accident, sequela','V3950XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V39.59XA','V39.59XA','http://hl7.org/fhir/sid/icd-10-cm','Passenger in three-wheeled motor vehicle injured in collision with other motor vehicles in traffic accident, initial encounter','V3959XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V39.59XD','V39.59XD','http://hl7.org/fhir/sid/icd-10-cm','Passenger in three-wheeled motor vehicle injured in collision with other motor vehicles in traffic accident, subsequent encounter','V3959XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V39.59XS','V39.59XS','http://hl7.org/fhir/sid/icd-10-cm','Passenger in three-wheeled motor vehicle injured in collision with other motor vehicles in traffic accident, sequela','V3959XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V39.60XA','V39.60XA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of three-wheeled motor vehicle injured in collision with unspecified motor vehicles in traffic accident, initial encounter','V3960XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V39.60XD','V39.60XD','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of three-wheeled motor vehicle injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter','V3960XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V39.60XS','V39.60XS','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of three-wheeled motor vehicle injured in collision with unspecified motor vehicles in traffic accident, sequela','V3960XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V39.69XA','V39.69XA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of three-wheeled motor vehicle injured in collision with other motor vehicles in traffic accident, initial encounter','V3969XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V39.69XD','V39.69XD','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of three-wheeled motor vehicle injured in collision with other motor vehicles in traffic accident, subsequent encounter','V3969XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V39.69XS','V39.69XS','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of three-wheeled motor vehicle injured in collision with other motor vehicles in traffic accident, sequela','V3969XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V39.81XA','V39.81XA','http://hl7.org/fhir/sid/icd-10-cm','Occupant (driver) (passenger) of three-wheeled motor vehicle injured in transport accident with military vehicle, initial encounter','V3981XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V39.81XD','V39.81XD','http://hl7.org/fhir/sid/icd-10-cm','Occupant (driver) (passenger) of three-wheeled motor vehicle injured in transport accident with military vehicle, subsequent encounter','V3981XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V39.81XS','V39.81XS','http://hl7.org/fhir/sid/icd-10-cm','Occupant (driver) (passenger) of three-wheeled motor vehicle injured in transport accident with military vehicle, sequela','V3981XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V39.89XA','V39.89XA','http://hl7.org/fhir/sid/icd-10-cm','Occupant (driver) (passenger) of three-wheeled motor vehicle injured in other specified transport accidents, initial encounter','V3989XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V39.89XD','V39.89XD','http://hl7.org/fhir/sid/icd-10-cm','Occupant (driver) (passenger) of three-wheeled motor vehicle injured in other specified transport accidents, subsequent encounter','V3989XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V39.89XS','V39.89XS','http://hl7.org/fhir/sid/icd-10-cm','Occupant (driver) (passenger) of three-wheeled motor vehicle injured in other specified transport accidents, sequela','V3989XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V39.9XXA','V39.9XXA','http://hl7.org/fhir/sid/icd-10-cm','Occupant (driver) (passenger) of three-wheeled motor vehicle injured in unspecified traffic accident, initial encounter','V399XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V39.9XXD','V39.9XXD','http://hl7.org/fhir/sid/icd-10-cm','Occupant (driver) (passenger) of three-wheeled motor vehicle injured in unspecified traffic accident, subsequent encounter','V399XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V39.9XXS','V39.9XXS','http://hl7.org/fhir/sid/icd-10-cm','Occupant (driver) (passenger) of three-wheeled motor vehicle injured in unspecified traffic accident, sequela','V399XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V42.0XXA','V42.0XXA','http://hl7.org/fhir/sid/icd-10-cm','Car driver injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter','V420XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V42.0XXD','V42.0XXD','http://hl7.org/fhir/sid/icd-10-cm','Car driver injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter','V420XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V42.0XXS','V42.0XXS','http://hl7.org/fhir/sid/icd-10-cm','Car driver injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela','V420XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V42.1XXA','V42.1XXA','http://hl7.org/fhir/sid/icd-10-cm','Car passenger injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter','V421XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V42.1XXD','V42.1XXD','http://hl7.org/fhir/sid/icd-10-cm','Car passenger injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter','V421XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V42.1XXS','V42.1XXS','http://hl7.org/fhir/sid/icd-10-cm','Car passenger injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela','V421XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V42.2XXA','V42.2XXA','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of car injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter','V422XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V42.2XXD','V42.2XXD','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of car injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter','V422XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V42.2XXS','V42.2XXS','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of car injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela','V422XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V42.3XXA','V42.3XXA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified car occupant injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter','V423XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V42.3XXD','V42.3XXD','http://hl7.org/fhir/sid/icd-10-cm','Unspecified car occupant injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter','V423XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V42.3XXS','V42.3XXS','http://hl7.org/fhir/sid/icd-10-cm','Unspecified car occupant injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela','V423XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V42.4XXA','V42.4XXA','http://hl7.org/fhir/sid/icd-10-cm','Person boarding or alighting a car injured in collision with two- or three-wheeled motor vehicle, initial encounter','V424XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V42.4XXD','V42.4XXD','http://hl7.org/fhir/sid/icd-10-cm','Person boarding or alighting a car injured in collision with two- or three-wheeled motor vehicle, subsequent encounter','V424XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V42.4XXS','V42.4XXS','http://hl7.org/fhir/sid/icd-10-cm','Person boarding or alighting a car injured in collision with two- or three-wheeled motor vehicle, sequela','V424XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V42.5XXA','V42.5XXA','http://hl7.org/fhir/sid/icd-10-cm','Car driver injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter','V425XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V42.5XXD','V42.5XXD','http://hl7.org/fhir/sid/icd-10-cm','Car driver injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter','V425XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V42.5XXS','V42.5XXS','http://hl7.org/fhir/sid/icd-10-cm','Car driver injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela','V425XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V42.6XXA','V42.6XXA','http://hl7.org/fhir/sid/icd-10-cm','Car passenger injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter','V426XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V42.6XXD','V42.6XXD','http://hl7.org/fhir/sid/icd-10-cm','Car passenger injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter','V426XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V42.6XXS','V42.6XXS','http://hl7.org/fhir/sid/icd-10-cm','Car passenger injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela','V426XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V42.7XXA','V42.7XXA','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of car injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter','V427XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V42.7XXD','V42.7XXD','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of car injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter','V427XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V42.7XXS','V42.7XXS','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of car injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela','V427XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V42.9XXA','V42.9XXA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified car occupant injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter','V429XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V42.9XXD','V42.9XXD','http://hl7.org/fhir/sid/icd-10-cm','Unspecified car occupant injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter','V429XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V42.9XXS','V42.9XXS','http://hl7.org/fhir/sid/icd-10-cm','Unspecified car occupant injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela','V429XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V46.0XXA','V46.0XXA','http://hl7.org/fhir/sid/icd-10-cm','Car driver injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter','V460XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V46.0XXD','V46.0XXD','http://hl7.org/fhir/sid/icd-10-cm','Car driver injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter','V460XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V46.0XXS','V46.0XXS','http://hl7.org/fhir/sid/icd-10-cm','Car driver injured in collision with other nonmotor vehicle in nontraffic accident, sequela','V460XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V46.1XXA','V46.1XXA','http://hl7.org/fhir/sid/icd-10-cm','Car passenger injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter','V461XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V46.1XXD','V46.1XXD','http://hl7.org/fhir/sid/icd-10-cm','Car passenger injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter','V461XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V46.1XXS','V46.1XXS','http://hl7.org/fhir/sid/icd-10-cm','Car passenger injured in collision with other nonmotor vehicle in nontraffic accident, sequela','V461XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V46.2XXA','V46.2XXA','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of car injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter','V462XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V46.2XXD','V46.2XXD','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of car injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter','V462XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V46.2XXS','V46.2XXS','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of car injured in collision with other nonmotor vehicle in nontraffic accident, sequela','V462XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V46.3XXA','V46.3XXA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified car occupant injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter','V463XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V46.3XXD','V46.3XXD','http://hl7.org/fhir/sid/icd-10-cm','Unspecified car occupant injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter','V463XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V46.3XXS','V46.3XXS','http://hl7.org/fhir/sid/icd-10-cm','Unspecified car occupant injured in collision with other nonmotor vehicle in nontraffic accident, sequela','V463XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V46.4XXA','V46.4XXA','http://hl7.org/fhir/sid/icd-10-cm','Person boarding or alighting a car injured in collision with other nonmotor vehicle, initial encounter','V464XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V46.4XXD','V46.4XXD','http://hl7.org/fhir/sid/icd-10-cm','Person boarding or alighting a car injured in collision with other nonmotor vehicle, subsequent encounter','V464XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V46.4XXS','V46.4XXS','http://hl7.org/fhir/sid/icd-10-cm','Person boarding or alighting a car injured in collision with other nonmotor vehicle, sequela','V464XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V46.5XXA','V46.5XXA','http://hl7.org/fhir/sid/icd-10-cm','Car driver injured in collision with other nonmotor vehicle in traffic accident, initial encounter','V465XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V46.5XXD','V46.5XXD','http://hl7.org/fhir/sid/icd-10-cm','Car driver injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter','V465XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V46.5XXS','V46.5XXS','http://hl7.org/fhir/sid/icd-10-cm','Car driver injured in collision with other nonmotor vehicle in traffic accident, sequela','V465XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V46.6XXA','V46.6XXA','http://hl7.org/fhir/sid/icd-10-cm','Car passenger injured in collision with other nonmotor vehicle in traffic accident, initial encounter','V466XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V46.6XXD','V46.6XXD','http://hl7.org/fhir/sid/icd-10-cm','Car passenger injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter','V466XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V46.6XXS','V46.6XXS','http://hl7.org/fhir/sid/icd-10-cm','Car passenger injured in collision with other nonmotor vehicle in traffic accident, sequela','V466XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V46.7XXA','V46.7XXA','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of car injured in collision with other nonmotor vehicle in traffic accident, initial encounter','V467XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V46.7XXD','V46.7XXD','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of car injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter','V467XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V46.7XXS','V46.7XXS','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of car injured in collision with other nonmotor vehicle in traffic accident, sequela','V467XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V46.9XXA','V46.9XXA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified car occupant injured in collision with other nonmotor vehicle in traffic accident, initial encounter','V469XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V46.9XXD','V46.9XXD','http://hl7.org/fhir/sid/icd-10-cm','Unspecified car occupant injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter','V469XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V46.9XXS','V46.9XXS','http://hl7.org/fhir/sid/icd-10-cm','Unspecified car occupant injured in collision with other nonmotor vehicle in traffic accident, sequela','V469XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V49.00XA','V49.00XA','http://hl7.org/fhir/sid/icd-10-cm','Driver injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter','V4900XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V49.00XD','V49.00XD','http://hl7.org/fhir/sid/icd-10-cm','Driver injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter','V4900XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V49.00XS','V49.00XS','http://hl7.org/fhir/sid/icd-10-cm','Driver injured in collision with unspecified motor vehicles in nontraffic accident, sequela','V4900XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V49.09XA','V49.09XA','http://hl7.org/fhir/sid/icd-10-cm','Driver injured in collision with other motor vehicles in nontraffic accident, initial encounter','V4909XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V49.09XD','V49.09XD','http://hl7.org/fhir/sid/icd-10-cm','Driver injured in collision with other motor vehicles in nontraffic accident, subsequent encounter','V4909XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V49.09XS','V49.09XS','http://hl7.org/fhir/sid/icd-10-cm','Driver injured in collision with other motor vehicles in nontraffic accident, sequela','V4909XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V49.10XA','V49.10XA','http://hl7.org/fhir/sid/icd-10-cm','Passenger injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter','V4910XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V49.10XD','V49.10XD','http://hl7.org/fhir/sid/icd-10-cm','Passenger injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter','V4910XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V49.10XS','V49.10XS','http://hl7.org/fhir/sid/icd-10-cm','Passenger injured in collision with unspecified motor vehicles in nontraffic accident, sequela','V4910XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V49.19XA','V49.19XA','http://hl7.org/fhir/sid/icd-10-cm','Passenger injured in collision with other motor vehicles in nontraffic accident, initial encounter','V4919XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V49.19XD','V49.19XD','http://hl7.org/fhir/sid/icd-10-cm','Passenger injured in collision with other motor vehicles in nontraffic accident, subsequent encounter','V4919XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V49.19XS','V49.19XS','http://hl7.org/fhir/sid/icd-10-cm','Passenger injured in collision with other motor vehicles in nontraffic accident, sequela','V4919XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V49.20XA','V49.20XA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified car occupant injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter','V4920XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V49.20XD','V49.20XD','http://hl7.org/fhir/sid/icd-10-cm','Unspecified car occupant injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter','V4920XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V49.20XS','V49.20XS','http://hl7.org/fhir/sid/icd-10-cm','Unspecified car occupant injured in collision with unspecified motor vehicles in nontraffic accident, sequela','V4920XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V49.29XA','V49.29XA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified car occupant injured in collision with other motor vehicles in nontraffic accident, initial encounter','V4929XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V49.29XD','V49.29XD','http://hl7.org/fhir/sid/icd-10-cm','Unspecified car occupant injured in collision with other motor vehicles in nontraffic accident, subsequent encounter','V4929XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V49.29XS','V49.29XS','http://hl7.org/fhir/sid/icd-10-cm','Unspecified car occupant injured in collision with other motor vehicles in nontraffic accident, sequela','V4929XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V49.40XA','V49.40XA','http://hl7.org/fhir/sid/icd-10-cm','Driver injured in collision with unspecified motor vehicles in traffic accident, initial encounter','V4940XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V49.40XD','V49.40XD','http://hl7.org/fhir/sid/icd-10-cm','Driver injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter','V4940XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V49.40XS','V49.40XS','http://hl7.org/fhir/sid/icd-10-cm','Driver injured in collision with unspecified motor vehicles in traffic accident, sequela','V4940XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V49.49XA','V49.49XA','http://hl7.org/fhir/sid/icd-10-cm','Driver injured in collision with other motor vehicles in traffic accident, initial encounter','V4949XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V49.49XD','V49.49XD','http://hl7.org/fhir/sid/icd-10-cm','Driver injured in collision with other motor vehicles in traffic accident, subsequent encounter','V4949XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V49.49XS','V49.49XS','http://hl7.org/fhir/sid/icd-10-cm','Driver injured in collision with other motor vehicles in traffic accident, sequela','V4949XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V49.50XA','V49.50XA','http://hl7.org/fhir/sid/icd-10-cm','Passenger injured in collision with unspecified motor vehicles in traffic accident, initial encounter','V4950XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V49.50XD','V49.50XD','http://hl7.org/fhir/sid/icd-10-cm','Passenger injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter','V4950XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V49.50XS','V49.50XS','http://hl7.org/fhir/sid/icd-10-cm','Passenger injured in collision with unspecified motor vehicles in traffic accident, sequela','V4950XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V49.59XA','V49.59XA','http://hl7.org/fhir/sid/icd-10-cm','Passenger injured in collision with other motor vehicles in traffic accident, initial encounter','V4959XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V49.59XD','V49.59XD','http://hl7.org/fhir/sid/icd-10-cm','Passenger injured in collision with other motor vehicles in traffic accident, subsequent encounter','V4959XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V49.59XS','V49.59XS','http://hl7.org/fhir/sid/icd-10-cm','Passenger injured in collision with other motor vehicles in traffic accident, sequela','V4959XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V49.60XA','V49.60XA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified car occupant injured in collision with unspecified motor vehicles in traffic accident, initial encounter','V4960XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V49.60XD','V49.60XD','http://hl7.org/fhir/sid/icd-10-cm','Unspecified car occupant injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter','V4960XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V49.60XS','V49.60XS','http://hl7.org/fhir/sid/icd-10-cm','Unspecified car occupant injured in collision with unspecified motor vehicles in traffic accident, sequela','V4960XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V49.69XA','V49.69XA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified car occupant injured in collision with other motor vehicles in traffic accident, initial encounter','V4969XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V49.69XD','V49.69XD','http://hl7.org/fhir/sid/icd-10-cm','Unspecified car occupant injured in collision with other motor vehicles in traffic accident, subsequent encounter','V4969XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V49.69XS','V49.69XS','http://hl7.org/fhir/sid/icd-10-cm','Unspecified car occupant injured in collision with other motor vehicles in traffic accident, sequela','V4969XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V52.0XXA','V52.0XXA','http://hl7.org/fhir/sid/icd-10-cm','Driver of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter','V520XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V52.0XXD','V52.0XXD','http://hl7.org/fhir/sid/icd-10-cm','Driver of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter','V520XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V52.0XXS','V52.0XXS','http://hl7.org/fhir/sid/icd-10-cm','Driver of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela','V520XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V52.1XXA','V52.1XXA','http://hl7.org/fhir/sid/icd-10-cm','Passenger in pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter','V521XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V52.1XXD','V52.1XXD','http://hl7.org/fhir/sid/icd-10-cm','Passenger in pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter','V521XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V52.1XXS','V52.1XXS','http://hl7.org/fhir/sid/icd-10-cm','Passenger in pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela','V521XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V52.2XXA','V52.2XXA','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter','V522XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V52.2XXD','V52.2XXD','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter','V522XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V52.2XXS','V52.2XXS','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela','V522XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V52.3XXA','V52.3XXA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter','V523XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V52.3XXD','V52.3XXD','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter','V523XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V52.3XXS','V52.3XXS','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela','V523XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V52.4XXA','V52.4XXA','http://hl7.org/fhir/sid/icd-10-cm','Person boarding or alighting a pick-up truck or van injured in collision with two- or three-wheeled motor vehicle, initial encounter','V524XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V52.4XXD','V52.4XXD','http://hl7.org/fhir/sid/icd-10-cm','Person boarding or alighting a pick-up truck or van injured in collision with two- or three-wheeled motor vehicle, subsequent encounter','V524XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V52.4XXS','V52.4XXS','http://hl7.org/fhir/sid/icd-10-cm','Person boarding or alighting a pick-up truck or van injured in collision with two- or three-wheeled motor vehicle, sequela','V524XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V52.5XXA','V52.5XXA','http://hl7.org/fhir/sid/icd-10-cm','Driver of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter','V525XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V52.5XXD','V52.5XXD','http://hl7.org/fhir/sid/icd-10-cm','Driver of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter','V525XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V52.5XXS','V52.5XXS','http://hl7.org/fhir/sid/icd-10-cm','Driver of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela','V525XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V52.6XXA','V52.6XXA','http://hl7.org/fhir/sid/icd-10-cm','Passenger in pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter','V526XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V52.6XXD','V52.6XXD','http://hl7.org/fhir/sid/icd-10-cm','Passenger in pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter','V526XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V52.6XXS','V52.6XXS','http://hl7.org/fhir/sid/icd-10-cm','Passenger in pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela','V526XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V52.7XXA','V52.7XXA','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter','V527XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V52.7XXD','V52.7XXD','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter','V527XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V52.7XXS','V52.7XXS','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela','V527XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V52.9XXA','V52.9XXA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter','V529XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V52.9XXD','V52.9XXD','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter','V529XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V52.9XXS','V52.9XXS','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela','V529XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V56.0XXA','V56.0XXA','http://hl7.org/fhir/sid/icd-10-cm','Driver of pick-up truck or van injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter','V560XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V56.0XXD','V56.0XXD','http://hl7.org/fhir/sid/icd-10-cm','Driver of pick-up truck or van injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter','V560XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V56.0XXS','V56.0XXS','http://hl7.org/fhir/sid/icd-10-cm','Driver of pick-up truck or van injured in collision with other nonmotor vehicle in nontraffic accident, sequela','V560XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V56.1XXA','V56.1XXA','http://hl7.org/fhir/sid/icd-10-cm','Passenger in pick-up truck or van injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter','V561XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V56.1XXD','V56.1XXD','http://hl7.org/fhir/sid/icd-10-cm','Passenger in pick-up truck or van injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter','V561XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V56.1XXS','V56.1XXS','http://hl7.org/fhir/sid/icd-10-cm','Passenger in pick-up truck or van injured in collision with other nonmotor vehicle in nontraffic accident, sequela','V561XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V56.2XXA','V56.2XXA','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of pick-up truck or van injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter','V562XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V56.2XXD','V56.2XXD','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of pick-up truck or van injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter','V562XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V56.2XXS','V56.2XXS','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of pick-up truck or van injured in collision with other nonmotor vehicle in nontraffic accident, sequela','V562XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V56.3XXA','V56.3XXA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of pick-up truck or van injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter','V563XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V56.3XXD','V56.3XXD','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of pick-up truck or van injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter','V563XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V56.3XXS','V56.3XXS','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of pick-up truck or van injured in collision with other nonmotor vehicle in nontraffic accident, sequela','V563XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V56.4XXA','V56.4XXA','http://hl7.org/fhir/sid/icd-10-cm','Person boarding or alighting a pick-up truck or van injured in collision with other nonmotor vehicle, initial encounter','V564XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V56.4XXD','V56.4XXD','http://hl7.org/fhir/sid/icd-10-cm','Person boarding or alighting a pick-up truck or van injured in collision with other nonmotor vehicle, subsequent encounter','V564XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V56.4XXS','V56.4XXS','http://hl7.org/fhir/sid/icd-10-cm','Person boarding or alighting a pick-up truck or van injured in collision with other nonmotor vehicle, sequela','V564XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V56.5XXA','V56.5XXA','http://hl7.org/fhir/sid/icd-10-cm','Driver of pick-up truck or van injured in collision with other nonmotor vehicle in traffic accident, initial encounter','V565XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V56.5XXD','V56.5XXD','http://hl7.org/fhir/sid/icd-10-cm','Driver of pick-up truck or van injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter','V565XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V56.5XXS','V56.5XXS','http://hl7.org/fhir/sid/icd-10-cm','Driver of pick-up truck or van injured in collision with other nonmotor vehicle in traffic accident, sequela','V565XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V56.6XXA','V56.6XXA','http://hl7.org/fhir/sid/icd-10-cm','Passenger in pick-up truck or van injured in collision with other nonmotor vehicle in traffic accident, initial encounter','V566XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V56.6XXD','V56.6XXD','http://hl7.org/fhir/sid/icd-10-cm','Passenger in pick-up truck or van injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter','V566XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V56.6XXS','V56.6XXS','http://hl7.org/fhir/sid/icd-10-cm','Passenger in pick-up truck or van injured in collision with other nonmotor vehicle in traffic accident, sequela','V566XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V56.7XXA','V56.7XXA','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of pick-up truck or van injured in collision with other nonmotor vehicle in traffic accident, initial encounter','V567XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V56.7XXD','V56.7XXD','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of pick-up truck or van injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter','V567XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V56.7XXS','V56.7XXS','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of pick-up truck or van injured in collision with other nonmotor vehicle in traffic accident, sequela','V567XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V56.9XXA','V56.9XXA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of pick-up truck or van injured in collision with other nonmotor vehicle in traffic accident, initial encounter','V569XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V56.9XXD','V56.9XXD','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of pick-up truck or van injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter','V569XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V56.9XXS','V56.9XXS','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of pick-up truck or van injured in collision with other nonmotor vehicle in traffic accident, sequela','V569XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V59.00XA','V59.00XA','http://hl7.org/fhir/sid/icd-10-cm','Driver of pick-up truck or van injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter','V5900XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V59.00XD','V59.00XD','http://hl7.org/fhir/sid/icd-10-cm','Driver of pick-up truck or van injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter','V5900XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V59.00XS','V59.00XS','http://hl7.org/fhir/sid/icd-10-cm','Driver of pick-up truck or van injured in collision with unspecified motor vehicles in nontraffic accident, sequela','V5900XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V59.09XA','V59.09XA','http://hl7.org/fhir/sid/icd-10-cm','Driver of pick-up truck or van injured in collision with other motor vehicles in nontraffic accident, initial encounter','V5909XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V59.09XD','V59.09XD','http://hl7.org/fhir/sid/icd-10-cm','Driver of pick-up truck or van injured in collision with other motor vehicles in nontraffic accident, subsequent encounter','V5909XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V59.09XS','V59.09XS','http://hl7.org/fhir/sid/icd-10-cm','Driver of pick-up truck or van injured in collision with other motor vehicles in nontraffic accident, sequela','V5909XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V59.10XA','V59.10XA','http://hl7.org/fhir/sid/icd-10-cm','Passenger in pick-up truck or van injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter','V5910XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V59.10XD','V59.10XD','http://hl7.org/fhir/sid/icd-10-cm','Passenger in pick-up truck or van injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter','V5910XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V59.10XS','V59.10XS','http://hl7.org/fhir/sid/icd-10-cm','Passenger in pick-up truck or van injured in collision with unspecified motor vehicles in nontraffic accident, sequela','V5910XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V59.19XA','V59.19XA','http://hl7.org/fhir/sid/icd-10-cm','Passenger in pick-up truck or van injured in collision with other motor vehicles in nontraffic accident, initial encounter','V5919XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V59.19XD','V59.19XD','http://hl7.org/fhir/sid/icd-10-cm','Passenger in pick-up truck or van injured in collision with other motor vehicles in nontraffic accident, subsequent encounter','V5919XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V59.19XS','V59.19XS','http://hl7.org/fhir/sid/icd-10-cm','Passenger in pick-up truck or van injured in collision with other motor vehicles in nontraffic accident, sequela','V5919XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V59.20XA','V59.20XA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of pick-up truck or van injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter','V5920XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V59.20XD','V59.20XD','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of pick-up truck or van injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter','V5920XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V59.20XS','V59.20XS','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of pick-up truck or van injured in collision with unspecified motor vehicles in nontraffic accident, sequela','V5920XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V59.29XA','V59.29XA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of pick-up truck or van injured in collision with other motor vehicles in nontraffic accident, initial encounter','V5929XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V59.29XD','V59.29XD','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of pick-up truck or van injured in collision with other motor vehicles in nontraffic accident, subsequent encounter','V5929XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V59.29XS','V59.29XS','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of pick-up truck or van injured in collision with other motor vehicles in nontraffic accident, sequela','V5929XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V59.40XA','V59.40XA','http://hl7.org/fhir/sid/icd-10-cm','Driver of pick-up truck or van injured in collision with unspecified motor vehicles in traffic accident, initial encounter','V5940XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V59.40XD','V59.40XD','http://hl7.org/fhir/sid/icd-10-cm','Driver of pick-up truck or van injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter','V5940XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V59.40XS','V59.40XS','http://hl7.org/fhir/sid/icd-10-cm','Driver of pick-up truck or van injured in collision with unspecified motor vehicles in traffic accident, sequela','V5940XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V59.49XA','V59.49XA','http://hl7.org/fhir/sid/icd-10-cm','Driver of pick-up truck or van injured in collision with other motor vehicles in traffic accident, initial encounter','V5949XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V59.49XD','V59.49XD','http://hl7.org/fhir/sid/icd-10-cm','Driver of pick-up truck or van injured in collision with other motor vehicles in traffic accident, subsequent encounter','V5949XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V59.49XS','V59.49XS','http://hl7.org/fhir/sid/icd-10-cm','Driver of pick-up truck or van injured in collision with other motor vehicles in traffic accident, sequela','V5949XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V59.50XA','V59.50XA','http://hl7.org/fhir/sid/icd-10-cm','Passenger in pick-up truck or van injured in collision with unspecified motor vehicles in traffic accident, initial encounter','V5950XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V59.50XD','V59.50XD','http://hl7.org/fhir/sid/icd-10-cm','Passenger in pick-up truck or van injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter','V5950XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V59.50XS','V59.50XS','http://hl7.org/fhir/sid/icd-10-cm','Passenger in pick-up truck or van injured in collision with unspecified motor vehicles in traffic accident, sequela','V5950XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V59.59XA','V59.59XA','http://hl7.org/fhir/sid/icd-10-cm','Passenger in pick-up truck or van injured in collision with other motor vehicles in traffic accident, initial encounter','V5959XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V59.59XD','V59.59XD','http://hl7.org/fhir/sid/icd-10-cm','Passenger in pick-up truck or van injured in collision with other motor vehicles in traffic accident, subsequent encounter','V5959XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V59.59XS','V59.59XS','http://hl7.org/fhir/sid/icd-10-cm','Passenger in pick-up truck or van injured in collision with other motor vehicles in traffic accident, sequela','V5959XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V59.60XA','V59.60XA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of pick-up truck or van injured in collision with unspecified motor vehicles in traffic accident, initial encounter','V5960XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V59.60XD','V59.60XD','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of pick-up truck or van injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter','V5960XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V59.60XS','V59.60XS','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of pick-up truck or van injured in collision with unspecified motor vehicles in traffic accident, sequela','V5960XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V59.69XA','V59.69XA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of pick-up truck or van injured in collision with other motor vehicles in traffic accident, initial encounter','V5969XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V59.69XD','V59.69XD','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of pick-up truck or van injured in collision with other motor vehicles in traffic accident, subsequent encounter','V5969XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V59.69XS','V59.69XS','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of pick-up truck or van injured in collision with other motor vehicles in traffic accident, sequela','V5969XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V62.0XXA','V62.0XXA','http://hl7.org/fhir/sid/icd-10-cm','Driver of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter','V620XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V62.0XXD','V62.0XXD','http://hl7.org/fhir/sid/icd-10-cm','Driver of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter','V620XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V62.0XXS','V62.0XXS','http://hl7.org/fhir/sid/icd-10-cm','Driver of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela','V620XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V62.1XXA','V62.1XXA','http://hl7.org/fhir/sid/icd-10-cm','Passenger in heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter','V621XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V62.1XXD','V62.1XXD','http://hl7.org/fhir/sid/icd-10-cm','Passenger in heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter','V621XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V62.1XXS','V62.1XXS','http://hl7.org/fhir/sid/icd-10-cm','Passenger in heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela','V621XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V62.2XXA','V62.2XXA','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter','V622XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V62.2XXD','V62.2XXD','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter','V622XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V62.2XXS','V62.2XXS','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela','V622XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V62.3XXA','V62.3XXA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter','V623XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V62.3XXD','V62.3XXD','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter','V623XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V62.3XXS','V62.3XXS','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela','V623XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V62.4XXA','V62.4XXA','http://hl7.org/fhir/sid/icd-10-cm','Person boarding or alighting a heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle, initial encounter','V624XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V62.4XXD','V62.4XXD','http://hl7.org/fhir/sid/icd-10-cm','Person boarding or alighting a heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle, subsequent encounter','V624XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V62.4XXS','V62.4XXS','http://hl7.org/fhir/sid/icd-10-cm','Person boarding or alighting a heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle, sequela','V624XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V62.5XXA','V62.5XXA','http://hl7.org/fhir/sid/icd-10-cm','Driver of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter','V625XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V62.5XXD','V62.5XXD','http://hl7.org/fhir/sid/icd-10-cm','Driver of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter','V625XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V62.5XXS','V62.5XXS','http://hl7.org/fhir/sid/icd-10-cm','Driver of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela','V625XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V62.6XXA','V62.6XXA','http://hl7.org/fhir/sid/icd-10-cm','Passenger in heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter','V626XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V62.6XXD','V62.6XXD','http://hl7.org/fhir/sid/icd-10-cm','Passenger in heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter','V626XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V62.6XXS','V62.6XXS','http://hl7.org/fhir/sid/icd-10-cm','Passenger in heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela','V626XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V62.7XXA','V62.7XXA','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter','V627XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V62.7XXD','V62.7XXD','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter','V627XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V62.7XXS','V62.7XXS','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela','V627XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V62.9XXA','V62.9XXA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter','V629XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V62.9XXD','V62.9XXD','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter','V629XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V62.9XXS','V62.9XXS','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela','V629XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V66.0XXA','V66.0XXA','http://hl7.org/fhir/sid/icd-10-cm','Driver of heavy transport vehicle injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter','V660XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V66.0XXD','V66.0XXD','http://hl7.org/fhir/sid/icd-10-cm','Driver of heavy transport vehicle injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter','V660XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V66.0XXS','V66.0XXS','http://hl7.org/fhir/sid/icd-10-cm','Driver of heavy transport vehicle injured in collision with other nonmotor vehicle in nontraffic accident, sequela','V660XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V66.1XXA','V66.1XXA','http://hl7.org/fhir/sid/icd-10-cm','Passenger in heavy transport vehicle injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter','V661XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V66.1XXD','V66.1XXD','http://hl7.org/fhir/sid/icd-10-cm','Passenger in heavy transport vehicle injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter','V661XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V66.1XXS','V66.1XXS','http://hl7.org/fhir/sid/icd-10-cm','Passenger in heavy transport vehicle injured in collision with other nonmotor vehicle in nontraffic accident, sequela','V661XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V66.2XXA','V66.2XXA','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of heavy transport vehicle injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter','V662XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V66.2XXD','V66.2XXD','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of heavy transport vehicle injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter','V662XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V66.2XXS','V66.2XXS','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of heavy transport vehicle injured in collision with other nonmotor vehicle in nontraffic accident, sequela','V662XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V66.3XXA','V66.3XXA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of heavy transport vehicle injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter','V663XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V66.3XXD','V66.3XXD','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of heavy transport vehicle injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter','V663XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V66.3XXS','V66.3XXS','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of heavy transport vehicle injured in collision with other nonmotor vehicle in nontraffic accident, sequela','V663XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V66.4XXA','V66.4XXA','http://hl7.org/fhir/sid/icd-10-cm','Person boarding or alighting a heavy transport vehicle injured in collision with other nonmotor vehicle, initial encounter','V664XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V66.4XXD','V66.4XXD','http://hl7.org/fhir/sid/icd-10-cm','Person boarding or alighting a heavy transport vehicle injured in collision with other nonmotor vehicle, subsequent encounter','V664XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V66.4XXS','V66.4XXS','http://hl7.org/fhir/sid/icd-10-cm','Person boarding or alighting a heavy transport vehicle injured in collision with other nonmotor vehicle, sequela','V664XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V66.5XXA','V66.5XXA','http://hl7.org/fhir/sid/icd-10-cm','Driver of heavy transport vehicle injured in collision with other nonmotor vehicle in traffic accident, initial encounter','V665XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V66.5XXD','V66.5XXD','http://hl7.org/fhir/sid/icd-10-cm','Driver of heavy transport vehicle injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter','V665XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V66.5XXS','V66.5XXS','http://hl7.org/fhir/sid/icd-10-cm','Driver of heavy transport vehicle injured in collision with other nonmotor vehicle in traffic accident, sequela','V665XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V66.6XXA','V66.6XXA','http://hl7.org/fhir/sid/icd-10-cm','Passenger in heavy transport vehicle injured in collision with other nonmotor vehicle in traffic accident, initial encounter','V666XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V66.6XXD','V66.6XXD','http://hl7.org/fhir/sid/icd-10-cm','Passenger in heavy transport vehicle injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter','V666XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V66.6XXS','V66.6XXS','http://hl7.org/fhir/sid/icd-10-cm','Passenger in heavy transport vehicle injured in collision with other nonmotor vehicle in traffic accident, sequela','V666XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V66.7XXA','V66.7XXA','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of heavy transport vehicle injured in collision with other nonmotor vehicle in traffic accident, initial encounter','V667XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V66.7XXD','V66.7XXD','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of heavy transport vehicle injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter','V667XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V66.7XXS','V66.7XXS','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of heavy transport vehicle injured in collision with other nonmotor vehicle in traffic accident, sequela','V667XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V66.9XXA','V66.9XXA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of heavy transport vehicle injured in collision with other nonmotor vehicle in traffic accident, initial encounter','V669XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V66.9XXD','V66.9XXD','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of heavy transport vehicle injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter','V669XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V66.9XXS','V66.9XXS','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of heavy transport vehicle injured in collision with other nonmotor vehicle in traffic accident, sequela','V669XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V69.00XA','V69.00XA','http://hl7.org/fhir/sid/icd-10-cm','Driver of heavy transport vehicle injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter','V6900XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V69.00XD','V69.00XD','http://hl7.org/fhir/sid/icd-10-cm','Driver of heavy transport vehicle injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter','V6900XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V69.00XS','V69.00XS','http://hl7.org/fhir/sid/icd-10-cm','Driver of heavy transport vehicle injured in collision with unspecified motor vehicles in nontraffic accident, sequela','V6900XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V69.09XA','V69.09XA','http://hl7.org/fhir/sid/icd-10-cm','Driver of heavy transport vehicle injured in collision with other motor vehicles in nontraffic accident, initial encounter','V6909XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V69.09XD','V69.09XD','http://hl7.org/fhir/sid/icd-10-cm','Driver of heavy transport vehicle injured in collision with other motor vehicles in nontraffic accident, subsequent encounter','V6909XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V69.09XS','V69.09XS','http://hl7.org/fhir/sid/icd-10-cm','Driver of heavy transport vehicle injured in collision with other motor vehicles in nontraffic accident, sequela','V6909XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V69.10XA','V69.10XA','http://hl7.org/fhir/sid/icd-10-cm','Passenger in heavy transport vehicle injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter','V6910XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V69.10XD','V69.10XD','http://hl7.org/fhir/sid/icd-10-cm','Passenger in heavy transport vehicle injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter','V6910XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V69.10XS','V69.10XS','http://hl7.org/fhir/sid/icd-10-cm','Passenger in heavy transport vehicle injured in collision with unspecified motor vehicles in nontraffic accident, sequela','V6910XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V69.19XA','V69.19XA','http://hl7.org/fhir/sid/icd-10-cm','Passenger in heavy transport vehicle injured in collision with other motor vehicles in nontraffic accident, initial encounter','V6919XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V69.19XD','V69.19XD','http://hl7.org/fhir/sid/icd-10-cm','Passenger in heavy transport vehicle injured in collision with other motor vehicles in nontraffic accident, subsequent encounter','V6919XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V69.19XS','V69.19XS','http://hl7.org/fhir/sid/icd-10-cm','Passenger in heavy transport vehicle injured in collision with other motor vehicles in nontraffic accident, sequela','V6919XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V69.20XA','V69.20XA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of heavy transport vehicle injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter','V6920XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V69.20XD','V69.20XD','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of heavy transport vehicle injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter','V6920XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V69.20XS','V69.20XS','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of heavy transport vehicle injured in collision with unspecified motor vehicles in nontraffic accident, sequela','V6920XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V69.29XA','V69.29XA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of heavy transport vehicle injured in collision with other motor vehicles in nontraffic accident, initial encounter','V6929XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V69.29XD','V69.29XD','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of heavy transport vehicle injured in collision with other motor vehicles in nontraffic accident, subsequent encounter','V6929XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V69.29XS','V69.29XS','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of heavy transport vehicle injured in collision with other motor vehicles in nontraffic accident, sequela','V6929XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V69.40XA','V69.40XA','http://hl7.org/fhir/sid/icd-10-cm','Driver of heavy transport vehicle injured in collision with unspecified motor vehicles in traffic accident, initial encounter','V6940XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V69.40XD','V69.40XD','http://hl7.org/fhir/sid/icd-10-cm','Driver of heavy transport vehicle injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter','V6940XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V69.40XS','V69.40XS','http://hl7.org/fhir/sid/icd-10-cm','Driver of heavy transport vehicle injured in collision with unspecified motor vehicles in traffic accident, sequela','V6940XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V69.49XA','V69.49XA','http://hl7.org/fhir/sid/icd-10-cm','Driver of heavy transport vehicle injured in collision with other motor vehicles in traffic accident, initial encounter','V6949XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V69.49XD','V69.49XD','http://hl7.org/fhir/sid/icd-10-cm','Driver of heavy transport vehicle injured in collision with other motor vehicles in traffic accident, subsequent encounter','V6949XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V69.49XS','V69.49XS','http://hl7.org/fhir/sid/icd-10-cm','Driver of heavy transport vehicle injured in collision with other motor vehicles in traffic accident, sequela','V6949XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V69.50XA','V69.50XA','http://hl7.org/fhir/sid/icd-10-cm','Passenger in heavy transport vehicle injured in collision with unspecified motor vehicles in traffic accident, initial encounter','V6950XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V69.50XD','V69.50XD','http://hl7.org/fhir/sid/icd-10-cm','Passenger in heavy transport vehicle injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter','V6950XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V69.50XS','V69.50XS','http://hl7.org/fhir/sid/icd-10-cm','Passenger in heavy transport vehicle injured in collision with unspecified motor vehicles in traffic accident, sequela','V6950XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V69.59XA','V69.59XA','http://hl7.org/fhir/sid/icd-10-cm','Passenger in heavy transport vehicle injured in collision with other motor vehicles in traffic accident, initial encounter','V6959XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V69.59XD','V69.59XD','http://hl7.org/fhir/sid/icd-10-cm','Passenger in heavy transport vehicle injured in collision with other motor vehicles in traffic accident, subsequent encounter','V6959XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V69.59XS','V69.59XS','http://hl7.org/fhir/sid/icd-10-cm','Passenger in heavy transport vehicle injured in collision with other motor vehicles in traffic accident, sequela','V6959XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V69.60XA','V69.60XA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of heavy transport vehicle injured in collision with unspecified motor vehicles in traffic accident, initial encounter','V6960XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V69.60XD','V69.60XD','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of heavy transport vehicle injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter','V6960XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V69.60XS','V69.60XS','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of heavy transport vehicle injured in collision with unspecified motor vehicles in traffic accident, sequela','V6960XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V69.69XA','V69.69XA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of heavy transport vehicle injured in collision with other motor vehicles in traffic accident, initial encounter','V6969XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V69.69XD','V69.69XD','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of heavy transport vehicle injured in collision with other motor vehicles in traffic accident, subsequent encounter','V6969XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V69.69XS','V69.69XS','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of heavy transport vehicle injured in collision with other motor vehicles in traffic accident, sequela','V6969XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V72.0XXA','V72.0XXA','http://hl7.org/fhir/sid/icd-10-cm','Driver of bus injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter','V720XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V72.0XXD','V72.0XXD','http://hl7.org/fhir/sid/icd-10-cm','Driver of bus injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter','V720XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V72.0XXS','V72.0XXS','http://hl7.org/fhir/sid/icd-10-cm','Driver of bus injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela','V720XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V72.1XXA','V72.1XXA','http://hl7.org/fhir/sid/icd-10-cm','Passenger on bus injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter','V721XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V72.1XXD','V72.1XXD','http://hl7.org/fhir/sid/icd-10-cm','Passenger on bus injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter','V721XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V72.1XXS','V72.1XXS','http://hl7.org/fhir/sid/icd-10-cm','Passenger on bus injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela','V721XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V72.2XXA','V72.2XXA','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of bus injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter','V722XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V72.2XXD','V72.2XXD','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of bus injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter','V722XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V72.2XXS','V72.2XXS','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of bus injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela','V722XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V72.3XXA','V72.3XXA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of bus injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter','V723XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V72.3XXD','V72.3XXD','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of bus injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter','V723XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V72.3XXS','V72.3XXS','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of bus injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela','V723XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V72.4XXA','V72.4XXA','http://hl7.org/fhir/sid/icd-10-cm','Person boarding or alighting from bus injured in collision with two- or three-wheeled motor vehicle, initial encounter','V724XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V72.4XXD','V72.4XXD','http://hl7.org/fhir/sid/icd-10-cm','Person boarding or alighting from bus injured in collision with two- or three-wheeled motor vehicle, subsequent encounter','V724XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V72.4XXS','V72.4XXS','http://hl7.org/fhir/sid/icd-10-cm','Person boarding or alighting from bus injured in collision with two- or three-wheeled motor vehicle, sequela','V724XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V72.5XXA','V72.5XXA','http://hl7.org/fhir/sid/icd-10-cm','Driver of bus injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter','V725XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V72.5XXD','V72.5XXD','http://hl7.org/fhir/sid/icd-10-cm','Driver of bus injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter','V725XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V72.5XXS','V72.5XXS','http://hl7.org/fhir/sid/icd-10-cm','Driver of bus injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela','V725XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V72.6XXA','V72.6XXA','http://hl7.org/fhir/sid/icd-10-cm','Passenger on bus injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter','V726XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V72.6XXD','V72.6XXD','http://hl7.org/fhir/sid/icd-10-cm','Passenger on bus injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter','V726XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V72.6XXS','V72.6XXS','http://hl7.org/fhir/sid/icd-10-cm','Passenger on bus injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela','V726XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V72.7XXA','V72.7XXA','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of bus injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter','V727XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V72.7XXD','V72.7XXD','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of bus injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter','V727XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V72.7XXS','V72.7XXS','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of bus injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela','V727XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V72.9XXA','V72.9XXA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of bus injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter','V729XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V72.9XXD','V72.9XXD','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of bus injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter','V729XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V72.9XXS','V72.9XXS','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of bus injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela','V729XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V76.0XXA','V76.0XXA','http://hl7.org/fhir/sid/icd-10-cm','Driver of bus injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter','V760XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V76.0XXD','V76.0XXD','http://hl7.org/fhir/sid/icd-10-cm','Driver of bus injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter','V760XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V76.0XXS','V76.0XXS','http://hl7.org/fhir/sid/icd-10-cm','Driver of bus injured in collision with other nonmotor vehicle in nontraffic accident, sequela','V760XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V76.1XXA','V76.1XXA','http://hl7.org/fhir/sid/icd-10-cm','Passenger on bus injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter','V761XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V76.1XXD','V76.1XXD','http://hl7.org/fhir/sid/icd-10-cm','Passenger on bus injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter','V761XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V76.1XXS','V76.1XXS','http://hl7.org/fhir/sid/icd-10-cm','Passenger on bus injured in collision with other nonmotor vehicle in nontraffic accident, sequela','V761XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V76.2XXA','V76.2XXA','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of bus injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter','V762XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V76.2XXD','V76.2XXD','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of bus injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter','V762XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V76.2XXS','V76.2XXS','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of bus injured in collision with other nonmotor vehicle in nontraffic accident, sequela','V762XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V76.3XXA','V76.3XXA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of bus injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter','V763XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V76.3XXD','V76.3XXD','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of bus injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter','V763XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V76.3XXS','V76.3XXS','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of bus injured in collision with other nonmotor vehicle in nontraffic accident, sequela','V763XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V76.4XXA','V76.4XXA','http://hl7.org/fhir/sid/icd-10-cm','Person boarding or alighting from bus injured in collision with other nonmotor vehicle, initial encounter','V764XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V76.4XXD','V76.4XXD','http://hl7.org/fhir/sid/icd-10-cm','Person boarding or alighting from bus injured in collision with other nonmotor vehicle, subsequent encounter','V764XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V76.4XXS','V76.4XXS','http://hl7.org/fhir/sid/icd-10-cm','Person boarding or alighting from bus injured in collision with other nonmotor vehicle, sequela','V764XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V76.5XXA','V76.5XXA','http://hl7.org/fhir/sid/icd-10-cm','Driver of bus injured in collision with other nonmotor vehicle in traffic accident, initial encounter','V765XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V76.5XXD','V76.5XXD','http://hl7.org/fhir/sid/icd-10-cm','Driver of bus injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter','V765XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V76.5XXS','V76.5XXS','http://hl7.org/fhir/sid/icd-10-cm','Driver of bus injured in collision with other nonmotor vehicle in traffic accident, sequela','V765XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V76.6XXA','V76.6XXA','http://hl7.org/fhir/sid/icd-10-cm','Passenger on bus injured in collision with other nonmotor vehicle in traffic accident, initial encounter','V766XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V76.6XXD','V76.6XXD','http://hl7.org/fhir/sid/icd-10-cm','Passenger on bus injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter','V766XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V76.6XXS','V76.6XXS','http://hl7.org/fhir/sid/icd-10-cm','Passenger on bus injured in collision with other nonmotor vehicle in traffic accident, sequela','V766XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V76.7XXA','V76.7XXA','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of bus injured in collision with other nonmotor vehicle in traffic accident, initial encounter','V767XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V76.7XXD','V76.7XXD','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of bus injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter','V767XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V76.7XXS','V76.7XXS','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of bus injured in collision with other nonmotor vehicle in traffic accident, sequela','V767XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V76.9XXA','V76.9XXA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of bus injured in collision with other nonmotor vehicle in traffic accident, initial encounter','V769XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V76.9XXD','V76.9XXD','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of bus injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter','V769XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V76.9XXS','V76.9XXS','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of bus injured in collision with other nonmotor vehicle in traffic accident, sequela','V769XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V79.00XA','V79.00XA','http://hl7.org/fhir/sid/icd-10-cm','Driver of bus injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter','V7900XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V79.00XD','V79.00XD','http://hl7.org/fhir/sid/icd-10-cm','Driver of bus injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter','V7900XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V79.00XS','V79.00XS','http://hl7.org/fhir/sid/icd-10-cm','Driver of bus injured in collision with unspecified motor vehicles in nontraffic accident, sequela','V7900XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V79.09XA','V79.09XA','http://hl7.org/fhir/sid/icd-10-cm','Driver of bus injured in collision with other motor vehicles in nontraffic accident, initial encounter','V7909XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V79.09XD','V79.09XD','http://hl7.org/fhir/sid/icd-10-cm','Driver of bus injured in collision with other motor vehicles in nontraffic accident, subsequent encounter','V7909XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V79.09XS','V79.09XS','http://hl7.org/fhir/sid/icd-10-cm','Driver of bus injured in collision with other motor vehicles in nontraffic accident, sequela','V7909XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V79.10XA','V79.10XA','http://hl7.org/fhir/sid/icd-10-cm','Passenger on bus injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter','V7910XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V79.10XD','V79.10XD','http://hl7.org/fhir/sid/icd-10-cm','Passenger on bus injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter','V7910XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V79.10XS','V79.10XS','http://hl7.org/fhir/sid/icd-10-cm','Passenger on bus injured in collision with unspecified motor vehicles in nontraffic accident, sequela','V7910XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V79.19XA','V79.19XA','http://hl7.org/fhir/sid/icd-10-cm','Passenger on bus injured in collision with other motor vehicles in nontraffic accident, initial encounter','V7919XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V79.19XD','V79.19XD','http://hl7.org/fhir/sid/icd-10-cm','Passenger on bus injured in collision with other motor vehicles in nontraffic accident, subsequent encounter','V7919XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V79.19XS','V79.19XS','http://hl7.org/fhir/sid/icd-10-cm','Passenger on bus injured in collision with other motor vehicles in nontraffic accident, sequela','V7919XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V79.20XA','V79.20XA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified bus occupant injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter','V7920XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V79.20XD','V79.20XD','http://hl7.org/fhir/sid/icd-10-cm','Unspecified bus occupant injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter','V7920XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V79.20XS','V79.20XS','http://hl7.org/fhir/sid/icd-10-cm','Unspecified bus occupant injured in collision with unspecified motor vehicles in nontraffic accident, sequela','V7920XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V79.29XA','V79.29XA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified bus occupant injured in collision with other motor vehicles in nontraffic accident, initial encounter','V7929XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V79.29XD','V79.29XD','http://hl7.org/fhir/sid/icd-10-cm','Unspecified bus occupant injured in collision with other motor vehicles in nontraffic accident, subsequent encounter','V7929XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V79.29XS','V79.29XS','http://hl7.org/fhir/sid/icd-10-cm','Unspecified bus occupant injured in collision with other motor vehicles in nontraffic accident, sequela','V7929XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V79.40XA','V79.40XA','http://hl7.org/fhir/sid/icd-10-cm','Driver of bus injured in collision with unspecified motor vehicles in traffic accident, initial encounter','V7940XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V79.40XD','V79.40XD','http://hl7.org/fhir/sid/icd-10-cm','Driver of bus injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter','V7940XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V79.40XS','V79.40XS','http://hl7.org/fhir/sid/icd-10-cm','Driver of bus injured in collision with unspecified motor vehicles in traffic accident, sequela','V7940XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V79.49XA','V79.49XA','http://hl7.org/fhir/sid/icd-10-cm','Driver of bus injured in collision with other motor vehicles in traffic accident, initial encounter','V7949XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V79.49XD','V79.49XD','http://hl7.org/fhir/sid/icd-10-cm','Driver of bus injured in collision with other motor vehicles in traffic accident, subsequent encounter','V7949XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V79.49XS','V79.49XS','http://hl7.org/fhir/sid/icd-10-cm','Driver of bus injured in collision with other motor vehicles in traffic accident, sequela','V7949XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V79.50XA','V79.50XA','http://hl7.org/fhir/sid/icd-10-cm','Passenger on bus injured in collision with unspecified motor vehicles in traffic accident, initial encounter','V7950XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V79.50XD','V79.50XD','http://hl7.org/fhir/sid/icd-10-cm','Passenger on bus injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter','V7950XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V79.50XS','V79.50XS','http://hl7.org/fhir/sid/icd-10-cm','Passenger on bus injured in collision with unspecified motor vehicles in traffic accident, sequela','V7950XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V79.59XA','V79.59XA','http://hl7.org/fhir/sid/icd-10-cm','Passenger on bus injured in collision with other motor vehicles in traffic accident, initial encounter','V7959XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V79.59XD','V79.59XD','http://hl7.org/fhir/sid/icd-10-cm','Passenger on bus injured in collision with other motor vehicles in traffic accident, subsequent encounter','V7959XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V79.59XS','V79.59XS','http://hl7.org/fhir/sid/icd-10-cm','Passenger on bus injured in collision with other motor vehicles in traffic accident, sequela','V7959XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V79.60XA','V79.60XA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified bus occupant injured in collision with unspecified motor vehicles in traffic accident, initial encounter','V7960XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V79.60XD','V79.60XD','http://hl7.org/fhir/sid/icd-10-cm','Unspecified bus occupant injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter','V7960XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V79.60XS','V79.60XS','http://hl7.org/fhir/sid/icd-10-cm','Unspecified bus occupant injured in collision with unspecified motor vehicles in traffic accident, sequela','V7960XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V79.69XA','V79.69XA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified bus occupant injured in collision with other motor vehicles in traffic accident, initial encounter','V7969XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V79.69XD','V79.69XD','http://hl7.org/fhir/sid/icd-10-cm','Unspecified bus occupant injured in collision with other motor vehicles in traffic accident, subsequent encounter','V7969XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V79.69XS','V79.69XS','http://hl7.org/fhir/sid/icd-10-cm','Unspecified bus occupant injured in collision with other motor vehicles in traffic accident, sequela','V7969XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V80.31XA','V80.31XA','http://hl7.org/fhir/sid/icd-10-cm','Animal-rider injured in collision with two- or three-wheeled motor vehicle, initial encounter','V8031XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V80.31XD','V80.31XD','http://hl7.org/fhir/sid/icd-10-cm','Animal-rider injured in collision with two- or three-wheeled motor vehicle, subsequent encounter','V8031XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V80.31XS','V80.31XS','http://hl7.org/fhir/sid/icd-10-cm','Animal-rider injured in collision with two- or three-wheeled motor vehicle, sequela','V8031XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V80.32XA','V80.32XA','http://hl7.org/fhir/sid/icd-10-cm','Occupant of animal-drawn vehicle injured in collision with two- or three-wheeled motor vehicle, initial encounter','V8032XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V80.32XD','V80.32XD','http://hl7.org/fhir/sid/icd-10-cm','Occupant of animal-drawn vehicle injured in collision with two- or three-wheeled motor vehicle, subsequent encounter','V8032XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V80.32XS','V80.32XS','http://hl7.org/fhir/sid/icd-10-cm','Occupant of animal-drawn vehicle injured in collision with two- or three-wheeled motor vehicle, sequela','V8032XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V80.51XA','V80.51XA','http://hl7.org/fhir/sid/icd-10-cm','Animal-rider injured in collision with other specified motor vehicle, initial encounter','V8051XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V80.51XD','V80.51XD','http://hl7.org/fhir/sid/icd-10-cm','Animal-rider injured in collision with other specified motor vehicle, subsequent encounter','V8051XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V80.51XS','V80.51XS','http://hl7.org/fhir/sid/icd-10-cm','Animal-rider injured in collision with other specified motor vehicle, sequela','V8051XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V80.52XA','V80.52XA','http://hl7.org/fhir/sid/icd-10-cm','Occupant of animal-drawn vehicle injured in collision with other specified motor vehicle, initial encounter','V8052XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V80.52XD','V80.52XD','http://hl7.org/fhir/sid/icd-10-cm','Occupant of animal-drawn vehicle injured in collision with other specified motor vehicle, subsequent encounter','V8052XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V80.52XS','V80.52XS','http://hl7.org/fhir/sid/icd-10-cm','Occupant of animal-drawn vehicle injured in collision with other specified motor vehicle, sequela','V8052XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V81.0XXA','V81.0XXA','http://hl7.org/fhir/sid/icd-10-cm','Occupant of railway train or railway vehicle injured in collision with motor vehicle in nontraffic accident, initial encounter','V810XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V81.0XXD','V81.0XXD','http://hl7.org/fhir/sid/icd-10-cm','Occupant of railway train or railway vehicle injured in collision with motor vehicle in nontraffic accident, subsequent encounter','V810XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V81.0XXS','V81.0XXS','http://hl7.org/fhir/sid/icd-10-cm','Occupant of railway train or railway vehicle injured in collision with motor vehicle in nontraffic accident, sequela','V810XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V81.1XXA','V81.1XXA','http://hl7.org/fhir/sid/icd-10-cm','Occupant of railway train or railway vehicle injured in collision with motor vehicle in traffic accident, initial encounter','V811XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V81.1XXD','V81.1XXD','http://hl7.org/fhir/sid/icd-10-cm','Occupant of railway train or railway vehicle injured in collision with motor vehicle in traffic accident, subsequent encounter','V811XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V81.1XXS','V81.1XXS','http://hl7.org/fhir/sid/icd-10-cm','Occupant of railway train or railway vehicle injured in collision with motor vehicle in traffic accident, sequela','V811XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V82.0XXA','V82.0XXA','http://hl7.org/fhir/sid/icd-10-cm','Occupant of streetcar injured in collision with motor vehicle in nontraffic accident, initial encounter','V820XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V82.0XXD','V82.0XXD','http://hl7.org/fhir/sid/icd-10-cm','Occupant of streetcar injured in collision with motor vehicle in nontraffic accident, subsequent encounter','V820XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V82.0XXS','V82.0XXS','http://hl7.org/fhir/sid/icd-10-cm','Occupant of streetcar injured in collision with motor vehicle in nontraffic accident, sequela','V820XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V82.1XXA','V82.1XXA','http://hl7.org/fhir/sid/icd-10-cm','Occupant of streetcar injured in collision with motor vehicle in traffic accident, initial encounter','V821XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V82.1XXD','V82.1XXD','http://hl7.org/fhir/sid/icd-10-cm','Occupant of streetcar injured in collision with motor vehicle in traffic accident, subsequent encounter','V821XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V82.1XXS','V82.1XXS','http://hl7.org/fhir/sid/icd-10-cm','Occupant of streetcar injured in collision with motor vehicle in traffic accident, sequela','V821XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V86.09XA','V86.09XA','http://hl7.org/fhir/sid/icd-10-cm','Driver of other special all-terrain or other off-road motor vehicle injured in traffic accident, initial encounter','V8609XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V86.09XD','V86.09XD','http://hl7.org/fhir/sid/icd-10-cm','Driver of other special all-terrain or other off-road motor vehicle injured in traffic accident, subsequent encounter','V8609XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V86.09XS','V86.09XS','http://hl7.org/fhir/sid/icd-10-cm','Driver of other special all-terrain or other off-road motor vehicle injured in traffic accident, sequela','V8609XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V86.19XA','V86.19XA','http://hl7.org/fhir/sid/icd-10-cm','Passenger of other special all-terrain or other off-road motor vehicle injured in traffic accident, initial encounter','V8619XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V86.19XD','V86.19XD','http://hl7.org/fhir/sid/icd-10-cm','Passenger of other special all-terrain or other off-road motor vehicle injured in traffic accident, subsequent encounter','V8619XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V86.19XS','V86.19XS','http://hl7.org/fhir/sid/icd-10-cm','Passenger of other special all-terrain or other off-road motor vehicle injured in traffic accident, sequela','V8619XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V86.29XA','V86.29XA','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of other special all-terrain or other off-road motor vehicle injured in traffic accident, initial encounter','V8629XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V86.29XD','V86.29XD','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of other special all-terrain or other off-road motor vehicle injured in traffic accident, subsequent encounter','V8629XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V86.29XS','V86.29XS','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of other special all-terrain or other off-road motor vehicle injured in traffic accident, sequela','V8629XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V86.39XA','V86.39XA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of other special all-terrain or other off-road motor vehicle injured in traffic accident, initial encounter','V8639XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V86.39XD','V86.39XD','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of other special all-terrain or other off-road motor vehicle injured in traffic accident, subsequent encounter','V8639XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V86.39XS','V86.39XS','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of other special all-terrain or other off-road motor vehicle injured in traffic accident, sequela','V8639XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V86.49XA','V86.49XA','http://hl7.org/fhir/sid/icd-10-cm','Person injured while boarding or alighting from other special all-terrain or other off-road motor vehicle, initial encounter','V8649XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V86.49XD','V86.49XD','http://hl7.org/fhir/sid/icd-10-cm','Person injured while boarding or alighting from other special all-terrain or other off-road motor vehicle, subsequent encounter','V8649XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V86.49XS','V86.49XS','http://hl7.org/fhir/sid/icd-10-cm','Person injured while boarding or alighting from other special all-terrain or other off-road motor vehicle, sequela','V8649XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V86.59XA','V86.59XA','http://hl7.org/fhir/sid/icd-10-cm','Driver of other special all-terrain or other off-road motor vehicle injured in nontraffic accident, initial encounter','V8659XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V86.59XD','V86.59XD','http://hl7.org/fhir/sid/icd-10-cm','Driver of other special all-terrain or other off-road motor vehicle injured in nontraffic accident, subsequent encounter','V8659XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V86.59XS','V86.59XS','http://hl7.org/fhir/sid/icd-10-cm','Driver of other special all-terrain or other off-road motor vehicle injured in nontraffic accident, sequela','V8659XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V86.69XA','V86.69XA','http://hl7.org/fhir/sid/icd-10-cm','Passenger of other special all-terrain or other off-road motor vehicle injured in nontraffic accident, initial encounter','V8669XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V86.69XD','V86.69XD','http://hl7.org/fhir/sid/icd-10-cm','Passenger of other special all-terrain or other off-road motor vehicle injured in nontraffic accident, subsequent encounter','V8669XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V86.69XS','V86.69XS','http://hl7.org/fhir/sid/icd-10-cm','Passenger of other special all-terrain or other off-road motor vehicle injured in nontraffic accident, sequela','V8669XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V86.79XA','V86.79XA','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of other special all-terrain or other off-road motor vehicles injured in nontraffic accident, initial encounter','V8679XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V86.79XD','V86.79XD','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of other special all-terrain or other off-road motor vehicles injured in nontraffic accident, subsequent encounter','V8679XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V86.79XS','V86.79XS','http://hl7.org/fhir/sid/icd-10-cm','Person on outside of other special all-terrain or other off-road motor vehicles injured in nontraffic accident, sequela','V8679XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V86.99XA','V86.99XA','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of other special all-terrain or other off-road motor vehicle injured in nontraffic accident, initial encounter','V8699XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V86.99XD','V86.99XD','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of other special all-terrain or other off-road motor vehicle injured in nontraffic accident, subsequent encounter','V8699XD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V86.99XS','V86.99XS','http://hl7.org/fhir/sid/icd-10-cm','Unspecified occupant of other special all-terrain or other off-road motor vehicle injured in nontraffic accident, sequela','V8699XS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V87.1XXA','V87.1XXA','http://hl7.org/fhir/sid/icd-10-cm','Person injured in collision between other motor vehicle and two- or three-wheeled motor vehicle (traffic), initial encounter','V871XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V87.1XXD','V87.1XXD','http://hl7.org/fhir/sid/icd-10-cm','Person injured in collision between other motor vehicle and two- or three-wheeled motor vehicle (traffic), subsequent encounter','V871XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V87.1XXS','V87.1XXS','http://hl7.org/fhir/sid/icd-10-cm','Person injured in collision between other motor vehicle and two- or three-wheeled motor vehicle (traffic), sequela','V871XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V87.7XXA','V87.7XXA','http://hl7.org/fhir/sid/icd-10-cm','Person injured in collision between other specified motor vehicles (traffic), initial encounter','V877XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V87.7XXD','V87.7XXD','http://hl7.org/fhir/sid/icd-10-cm','Person injured in collision between other specified motor vehicles (traffic), subsequent encounter','V877XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V87.7XXS','V87.7XXS','http://hl7.org/fhir/sid/icd-10-cm','Person injured in collision between other specified motor vehicles (traffic), sequela','V877XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V87.8XXA','V87.8XXA','http://hl7.org/fhir/sid/icd-10-cm','Person injured in other specified noncollision transport accidents involving motor vehicle (traffic), initial encounter','V878XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V87.8XXD','V87.8XXD','http://hl7.org/fhir/sid/icd-10-cm','Person injured in other specified noncollision transport accidents involving motor vehicle (traffic), subsequent encounter','V878XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V87.8XXS','V87.8XXS','http://hl7.org/fhir/sid/icd-10-cm','Person injured in other specified noncollision transport accidents involving motor vehicle (traffic), sequela','V878XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V88.0XXA','V88.0XXA','http://hl7.org/fhir/sid/icd-10-cm','Person injured in collision between car and two- or three-wheeled motor vehicle, nontraffic, initial encounter','V880XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V88.0XXD','V88.0XXD','http://hl7.org/fhir/sid/icd-10-cm','Person injured in collision between car and two- or three-wheeled motor vehicle, nontraffic, subsequent encounter','V880XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V88.0XXS','V88.0XXS','http://hl7.org/fhir/sid/icd-10-cm','Person injured in collision between car and two- or three-wheeled motor vehicle, nontraffic, sequela','V880XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V88.1XXA','V88.1XXA','http://hl7.org/fhir/sid/icd-10-cm','Person injured in collision between other motor vehicle and two- or three-wheeled motor vehicle, nontraffic, initial encounter','V881XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V88.1XXD','V88.1XXD','http://hl7.org/fhir/sid/icd-10-cm','Person injured in collision between other motor vehicle and two- or three-wheeled motor vehicle, nontraffic, subsequent encounter','V881XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V88.1XXS','V88.1XXS','http://hl7.org/fhir/sid/icd-10-cm','Person injured in collision between other motor vehicle and two- or three-wheeled motor vehicle, nontraffic, sequela','V881XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V88.7XXA','V88.7XXA','http://hl7.org/fhir/sid/icd-10-cm','Person injured in collision between other specified motor vehicle, nontraffic, initial encounter','V887XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V88.7XXD','V88.7XXD','http://hl7.org/fhir/sid/icd-10-cm','Person injured in collision between other specified motor vehicle, nontraffic, subsequent encounter','V887XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V88.7XXS','V88.7XXS','http://hl7.org/fhir/sid/icd-10-cm','Person injured in collision between other specified motor vehicle, nontraffic, sequela','V887XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V88.8XXA','V88.8XXA','http://hl7.org/fhir/sid/icd-10-cm','Person injured in other specified noncollision transport accidents involving motor vehicle, nontraffic, initial encounter','V888XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V88.8XXD','V88.8XXD','http://hl7.org/fhir/sid/icd-10-cm','Person injured in other specified noncollision transport accidents involving motor vehicle, nontraffic, subsequent encounter','V888XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_V88.8XXS','V88.8XXS','http://hl7.org/fhir/sid/icd-10-cm','Person injured in other specified noncollision transport accidents involving motor vehicle, nontraffic, sequela','V888XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_X81.0XXA','X81.0XXA','http://hl7.org/fhir/sid/icd-10-cm','Intentional self-harm by jumping or lying in front of motor vehicle, initial encounter','X810XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_X81.0XXD','X81.0XXD','http://hl7.org/fhir/sid/icd-10-cm','Intentional self-harm by jumping or lying in front of motor vehicle, subsequent encounter','X810XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_X81.0XXS','X81.0XXS','http://hl7.org/fhir/sid/icd-10-cm','Intentional self-harm by jumping or lying in front of motor vehicle, sequela','X810XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_X82.0XXA','X82.0XXA','http://hl7.org/fhir/sid/icd-10-cm','Intentional collision of motor vehicle with other motor vehicle, initial encounter','X820XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_X82.0XXD','X82.0XXD','http://hl7.org/fhir/sid/icd-10-cm','Intentional collision of motor vehicle with other motor vehicle, subsequent encounter','X820XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_X82.0XXS','X82.0XXS','http://hl7.org/fhir/sid/icd-10-cm','Intentional collision of motor vehicle with other motor vehicle, sequela','X820XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_X82.1XXA','X82.1XXA','http://hl7.org/fhir/sid/icd-10-cm','Intentional collision of motor vehicle with train, initial encounter','X821XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_X82.1XXD','X82.1XXD','http://hl7.org/fhir/sid/icd-10-cm','Intentional collision of motor vehicle with train, subsequent encounter','X821XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_X82.1XXS','X82.1XXS','http://hl7.org/fhir/sid/icd-10-cm','Intentional collision of motor vehicle with train, sequela','X821XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_X82.2XXA','X82.2XXA','http://hl7.org/fhir/sid/icd-10-cm','Intentional collision of motor vehicle with tree, initial encounter','X822XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_X82.2XXD','X82.2XXD','http://hl7.org/fhir/sid/icd-10-cm','Intentional collision of motor vehicle with tree, subsequent encounter','X822XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_X82.2XXS','X82.2XXS','http://hl7.org/fhir/sid/icd-10-cm','Intentional collision of motor vehicle with tree, sequela','X822XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_X82.8XXA','X82.8XXA','http://hl7.org/fhir/sid/icd-10-cm','Other intentional self-harm by crashing of motor vehicle, initial encounter','X828XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_X82.8XXD','X82.8XXD','http://hl7.org/fhir/sid/icd-10-cm','Other intentional self-harm by crashing of motor vehicle, subsequent encounter','X828XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_X82.8XXS','X82.8XXS','http://hl7.org/fhir/sid/icd-10-cm','Other intentional self-harm by crashing of motor vehicle, sequela','X828XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_Y02.0XXA','Y02.0XXA','http://hl7.org/fhir/sid/icd-10-cm','Assault by pushing or placing victim in front of motor vehicle, initial encounter','Y020XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_Y02.0XXD','Y02.0XXD','http://hl7.org/fhir/sid/icd-10-cm','Assault by pushing or placing victim in front of motor vehicle, subsequent encounter','Y020XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_Y02.0XXS','Y02.0XXS','http://hl7.org/fhir/sid/icd-10-cm','Assault by pushing or placing victim in front of motor vehicle, sequela','Y020XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_Y03.0XXA','Y03.0XXA','http://hl7.org/fhir/sid/icd-10-cm','Assault by being hit or run over by motor vehicle, initial encounter','Y030XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_Y03.0XXD','Y03.0XXD','http://hl7.org/fhir/sid/icd-10-cm','Assault by being hit or run over by motor vehicle, subsequent encounter','Y030XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_Y03.0XXS','Y03.0XXS','http://hl7.org/fhir/sid/icd-10-cm','Assault by being hit or run over by motor vehicle, sequela','Y030XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_Y03.8XXA','Y03.8XXA','http://hl7.org/fhir/sid/icd-10-cm','Other assault by crashing of motor vehicle, initial encounter','Y038XXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_Y03.8XXD','Y03.8XXD','http://hl7.org/fhir/sid/icd-10-cm','Other assault by crashing of motor vehicle, subsequent encounter','Y038XXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_Y03.8XXS','Y03.8XXS','http://hl7.org/fhir/sid/icd-10-cm','Other assault by crashing of motor vehicle, sequela','Y038XXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_Y32.XXXA','Y32.XXXA','http://hl7.org/fhir/sid/icd-10-cm','Crashing of motor vehicle, undetermined intent, initial encounter','Y32XXXA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_Y32.XXXD','Y32.XXXD','http://hl7.org/fhir/sid/icd-10-cm','Crashing of motor vehicle, undetermined intent, subsequent encounter','Y32XXXD','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1719_Y32.XXXS','Y32.XXXS','http://hl7.org/fhir/sid/icd-10-cm','Crashing of motor vehicle, undetermined intent, sequela','Y32XXXS','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_127348004','127348004','http://snomed.info/sct','Motor vehicle accident victim (finding)','127348004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214031005','214031005','http://snomed.info/sct','Motor vehicle traffic accident (event)','214031005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214032003','214032003','http://snomed.info/sct','Motor vehicle on road in collision with train (event)','214032003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214056004','214056004','http://snomed.info/sct','Motor vehicle traffic accident involving re-entrant collision with another motor vehicle (event)','214056004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214080000','214080000','http://snomed.info/sct','Motor vehicle on road in collision with parked motor vehicle (event)','214080000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214081001','214081001','http://snomed.info/sct','Motor vehicle traffic accident involving collision with another motor vehicle, parked, driver of motor vehicle injured (event)','214081001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214082008','214082008','http://snomed.info/sct','Motor vehicle traffic accident involving collision with another motor vehicle, parked, passenger of motor vehicle injured (event)','214082008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214085005','214085005','http://snomed.info/sct','Motor vehicle traffic accident involving collision with another motor vehicle, parked, passenger on motor cycle injured (event)','214085005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214089004','214089004','http://snomed.info/sct','Motor vehicle traffic accident involving collision with another motor vehicle, parked, pedestrian injured (event)','214089004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214092000','214092000','http://snomed.info/sct','Motor vehicle on road in collision with stopped motor vehicle (event)','214092000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214095003','214095003','http://snomed.info/sct','Motor vehicle traffic accident involving collision with another motor vehicle, stopped, motor cyclist injured (event)','214095003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214096002','214096002','http://snomed.info/sct','Motor vehicle traffic accident involving collision with another motor vehicle, stopped, passenger on motor cycle injured (event)','214096002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214100001','214100001','http://snomed.info/sct','Motor vehicle traffic accident involving collision with another motor vehicle, stopped, pedal cyclist injured (event)','214100001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214101002','214101002','http://snomed.info/sct','Motor vehicle traffic accident involving collision with another motor vehicle, stopped, pedestrian injured (event)','214101002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214104005','214104005','http://snomed.info/sct','Motor vehicle traffic accident involving collision with another motor vehicle, stalled (event)','214104005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214106007','214106007','http://snomed.info/sct','Motor vehicle traffic accident involving collision with another motor vehicle, stalled, passenger of motor vehicle injured (event)','214106007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214107003','214107003','http://snomed.info/sct','Motor vehicle traffic accident involving collision with another motor vehicle, stalled, motor cyclist injured (event)','214107003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214108008','214108008','http://snomed.info/sct','Motor vehicle traffic accident involving collision with another motor vehicle, stalled, passenger on motor cycle injured (event)','214108008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214111009','214111009','http://snomed.info/sct','Motor vehicle traffic accident involving collision with another motor vehicle, stalled, pedal cyclist injured (event)','214111009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214112002','214112002','http://snomed.info/sct','Motor vehicle traffic accident involving collision with another motor vehicle, stalled, pedestrian injured (event)','214112002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214115000','214115000','http://snomed.info/sct','Motor vehicle on road in collision with disabled motor vehicle (event)','214115000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214116004','214116004','http://snomed.info/sct','Motor vehicle traffic accident involving collision with another motor vehicle, disabled, driver of motor vehicle injured (event)','214116004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214118003','214118003','http://snomed.info/sct','Motor vehicle traffic accident involving collision with another motor vehicle, disabled, motor cyclist injured (event)','214118003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214119006','214119006','http://snomed.info/sct','Motor vehicle traffic accident involving collision with another motor vehicle, disabled, passenger on motor cycle injured (event)','214119006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214120000','214120000','http://snomed.info/sct','Motor vehicle traffic accident involving collision with another motor vehicle, disabled, occupant of tram injured (event)','214120000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214121001','214121001','http://snomed.info/sct','Motor vehicle traffic accident involving collision with another motor vehicle, disabled, rider of animal or occupant of animal-drawn vehicle injured (event)','214121001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214123003','214123003','http://snomed.info/sct','Motor vehicle traffic accident involving collision with another motor vehicle, disabled, pedestrian injured (event)','214123003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214126006','214126006','http://snomed.info/sct','Motor vehicle on road in collision with abandoned motor vehicle (event)','214126006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214127002','214127002','http://snomed.info/sct','Motor vehicle traffic accident involving collision with another motor vehicle, abandoned on highway, driver of motor vehicle injured (event)','214127002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214128007','214128007','http://snomed.info/sct','Motor vehicle traffic accident involving collision with another motor vehicle, abandoned on highway, passenger of motor vehicle injured (event)','214128007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214129004','214129004','http://snomed.info/sct','Motor vehicle traffic accident involving collision with another motor vehicle, abandoned on highway, motor cyclist injured (event)','214129004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214131008','214131008','http://snomed.info/sct','Motor vehicle traffic accident involving collision with another motor vehicle, abandoned on highway, occupant of tram injured (event)','214131008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214132001','214132001','http://snomed.info/sct','Motor vehicle traffic accident involving collision with another motor vehicle, abandoned on highway, rider of animal or occupant of animal-drawn vehicle injured (event)','214132001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214134000','214134000','http://snomed.info/sct','Motor vehicle traffic accident involving collision with another motor vehicle, abandoned on highway, pedestrian injured (event)','214134000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214149008','214149008','http://snomed.info/sct','Motor vehicle on road in collision with ridden animal (event)','214149008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214150008','214150008','http://snomed.info/sct','Motor vehicle traffic accident involving collision between motor vehicle and animal carrying a person, driver of motor vehicle injured (event)','214150008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214151007','214151007','http://snomed.info/sct','Motor vehicle traffic accident involving collision between motor vehicle and animal carrying a person, passenger of motor vehicle injured (event)','214151007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214160004','214160004','http://snomed.info/sct','Motor vehicle on road in collision with animal-drawn vehicle (event)','214160004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214161000','214161000','http://snomed.info/sct','Motor vehicle traffic accident involving collision between motor vehicle and animal-drawn vehicle, driver of motor vehicle injured (event)','214161000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214162007','214162007','http://snomed.info/sct','Motor vehicle traffic accident involving collision between motor vehicle and animal-drawn vehicle, passenger of motor vehicle injured (event)','214162007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214164008','214164008','http://snomed.info/sct','Motor vehicle traffic accident involving collision between motor vehicle and animal-drawn vehicle, passenger on motor cycle injured (event)','214164008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214166005','214166005','http://snomed.info/sct','Motor vehicle traffic accident involving collision between motor vehicle and animal-drawn vehicle, rider of animal or occupant of animal-drawn vehicle injured (event)','214166005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214171003','214171003','http://snomed.info/sct','Motor vehicle on road in collision with pedal cycle (event)','214171003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214172005','214172005','http://snomed.info/sct','Motor vehicle traffic accident involving collision between motor vehicle and pedal cycle, driver of motor vehicle injured (event)','214172005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214174006','214174006','http://snomed.info/sct','Motor vehicle traffic accident involving collision between motor vehicle and pedal cycle, passenger of motor vehicle injured (event)','214174006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214175007','214175007','http://snomed.info/sct','Motor vehicle traffic accident involving collision between motor vehicle and pedal cycle, motor cyclist injured (event)','214175007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214176008','214176008','http://snomed.info/sct','Motor vehicle traffic accident involving collision between motor vehicle and pedal cycle, passenger on motor cycle injured (event)','214176008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214179001','214179001','http://snomed.info/sct','Motor vehicle traffic accident involving collision between motor vehicle and pedal cycle, pedal cyclist injured (event)','214179001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214183001','214183001','http://snomed.info/sct','Motor vehicle on road in collision with tram (event)','214183001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214184007','214184007','http://snomed.info/sct','Motor vehicle traffic accident involving collision between motor vehicle and tramcar, driver of motor vehicle injured (event)','214184007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214185008','214185008','http://snomed.info/sct','Motor vehicle traffic accident involving collision between motor vehicle and tramcar, passenger of motor vehicle injured (event)','214185008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214188005','214188005','http://snomed.info/sct','Motor vehicle traffic accident involving collision between motor vehicle and tramcar, occupant of tram injured (event)','214188005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214206004','214206004','http://snomed.info/sct','Motor vehicle on road in collision with pedestrian (event)','214206004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214207008','214207008','http://snomed.info/sct','Pedestrian dragged by motor vehicle (event)','214207008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214209006','214209006','http://snomed.info/sct','Motor vehicle traffic accident involving pedestrian dragged by motor vehicle, passenger of motor vehicle injured (event)','214209006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214211002','214211002','http://snomed.info/sct','Motor vehicle traffic accident involving pedestrian dragged by motor vehicle, passenger on motor cycle injured (event)','214211002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214215006','214215006','http://snomed.info/sct','Motor vehicle traffic accident involving pedestrian dragged by motor vehicle, pedestrian injured (event)','214215006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214218008','214218008','http://snomed.info/sct','Pedestrian hit by motor vehicle (event)','214218008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214219000','214219000','http://snomed.info/sct','Motor vehicle traffic accident involving pedestrian hit by motor vehicle, driver of motor vehicle injured (event)','214219000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214220006','214220006','http://snomed.info/sct','Motor vehicle traffic accident involving pedestrian hit by motor vehicle, passenger of motor vehicle injured (event)','214220006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214221005','214221005','http://snomed.info/sct','Motor vehicle traffic accident involving pedestrian hit by motor vehicle, motor cyclist injured (event)','214221005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214222003','214222003','http://snomed.info/sct','Motor vehicle traffic accident involving pedestrian hit by motor vehicle, passenger on motor cycle injured (event)','214222003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214227009','214227009','http://snomed.info/sct','Motor vehicle traffic accident involving pedestrian hit by motor vehicle, pedestrian injured (event)','214227009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214230002','214230002','http://snomed.info/sct','Pedestrian run over by motor vehicle (event)','214230002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214231003','214231003','http://snomed.info/sct','Motor vehicle traffic accident involving pedestrian run over by motor vehicle, driver of motor vehicle injured (event)','214231003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214232005','214232005','http://snomed.info/sct','Motor vehicle traffic accident involving pedestrian run over by motor vehicle, passenger of motor vehicle injured (event)','214232005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214253001','214253001','http://snomed.info/sct','Motor vehicle on road in collision between motor vehicle and bridge (event)','214253001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214254007','214254007','http://snomed.info/sct','Motor vehicle traffic accident involving collision, on highway, between motor vehicle and bridge, driver of motor vehicle injured (event)','214254007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214255008','214255008','http://snomed.info/sct','Motor vehicle traffic accident involving collision, on highway, between motor vehicle and bridge, passenger of motor vehicle injured (event)','214255008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214256009','214256009','http://snomed.info/sct','Motor vehicle traffic accident involving collision, on highway, between motor vehicle and bridge, motor cyclist injured (event)','214256009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214257000','214257000','http://snomed.info/sct','Motor vehicle traffic accident involving collision, on highway, between motor vehicle and bridge, passenger on motor cycle injured (event)','214257000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214265002','214265002','http://snomed.info/sct','Motor vehicle traffic accident involving collision, on highway, between motor vehicle and animal (event)','214265002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214266001','214266001','http://snomed.info/sct','Motor vehicle traffic accident involving collision, on highway, between motor vehicle and animal, driver of motor vehicle injured (event)','214266001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214267005','214267005','http://snomed.info/sct','Motor vehicle traffic accident involving collision, on highway, between motor vehicle and animal, passenger of motor vehicle injured (event)','214267005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214269008','214269008','http://snomed.info/sct','Motor vehicle traffic accident involving collision, on highway, between motor vehicle and animal, passenger on motor cycle injured (event)','214269008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214276003','214276003','http://snomed.info/sct','Motor vehicle traffic accident involving collision, on highway, between motor vehicle and fallen stone, traffic sign, tree or utility pole (event)','214276003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214277007','214277007','http://snomed.info/sct','Motor vehicle traffic accident involving collision, on highway, between motor vehicle and fallen stone, traffic sign, tree or utility pole, driver of motor vehicle injured (event)','214277007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214278002','214278002','http://snomed.info/sct','Motor vehicle traffic accident involving collision, on highway, between motor vehicle and fallen stone, traffic sign, tree or utility pole, passenger of motor vehicle injured (event)','214278002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214279005','214279005','http://snomed.info/sct','Motor vehicle traffic accident involving collision, on highway, between motor vehicle and fallen stone, traffic sign, tree or utility pole, motor cyclist injured (event)','214279005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214280008','214280008','http://snomed.info/sct','Motor vehicle traffic accident involving collision, on highway, between motor vehicle and fallen stone, traffic sign, tree or utility pole, passenger on motor cycle injured (event)','214280008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214287006','214287006','http://snomed.info/sct','Motor vehicle on road in collision with thrown object (event)','214287006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214288001','214288001','http://snomed.info/sct','Motor vehicle traffic accident involving collision, on highway, between motor vehicle and object thrown in front of motor vehicle, driver of motor vehicle injured (event)','214288001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214289009','214289009','http://snomed.info/sct','Motor vehicle traffic accident involving collision, on highway, between motor vehicle and object thrown in front of motor vehicle, passenger of motor vehicle injured (event)','214289009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214291001','214291001','http://snomed.info/sct','Motor vehicle traffic accident involving collision, on highway, between motor vehicle and object thrown in front of motor vehicle, motor cyclist injured (event)','214291001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214292008','214292008','http://snomed.info/sct','Motor vehicle traffic accident involving collision, on highway, between motor vehicle and object thrown in front of motor vehicle, passenger on motor cycle injured (event)','214292008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214299004','214299004','http://snomed.info/sct','Motor vehicle traffic accident involving collision, on highway, between motor vehicle and boundary fence (event)','214299004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214300007','214300007','http://snomed.info/sct','Motor vehicle traffic accident involving collision, on highway, between motor vehicle and boundary fence or guard rail, driver of motor vehicle injured (event)','214300007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214301006','214301006','http://snomed.info/sct','Motor vehicle traffic accident involving collision, on highway, between motor vehicle and boundary fence or guard rail, passenger of motor vehicle injured (event)','214301006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214304003','214304003','http://snomed.info/sct','Motor vehicle traffic accident involving collision, on highway, between motor vehicle and boundary fence or guard rail, passenger on motor cycle injured (event)','214304003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214311004','214311004','http://snomed.info/sct','Motor vehicle on road in collision with landslide (event)','214311004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214312006','214312006','http://snomed.info/sct','Motor vehicle traffic accident involving collision, on highway, between motor vehicle and landslide, driver of motor vehicle injured (event)','214312006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214313001','214313001','http://snomed.info/sct','Motor vehicle traffic accident involving collision, on highway, between motor vehicle and landslide, passenger of motor vehicle injured (event)','214313001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214314007','214314007','http://snomed.info/sct','Motor vehicle traffic accident involving collision, on highway, between motor vehicle and landslide, motor cyclist injured (event)','214314007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214315008','214315008','http://snomed.info/sct','Motor vehicle traffic accident involving collision, on highway, between motor vehicle and landslide, passenger on motor cycle injured (event)','214315008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214322000','214322000','http://snomed.info/sct','Motor vehicle on road in collision with safety island (event)','214322000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214323005','214323005','http://snomed.info/sct','Motor vehicle traffic accident involving collision, on highway, between motor vehicle and safety island, driver of motor vehicle injured (event)','214323005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214324004','214324004','http://snomed.info/sct','Motor vehicle traffic accident involving collision, on highway, between motor vehicle and safety island, passenger of motor vehicle injured (event)','214324004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214325003','214325003','http://snomed.info/sct','Motor vehicle traffic accident involving collision, on highway, between motor vehicle and safety island, motor cyclist injured (event)','214325003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214326002','214326002','http://snomed.info/sct','Motor vehicle traffic accident involving collision, on highway, between motor vehicle and safety island, passenger on motor cycle injured (event)','214326002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214344005','214344005','http://snomed.info/sct','Motor vehicle traffic accident due to loss of control without collision on the road (event)','214344005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214345006','214345006','http://snomed.info/sct','Motor vehicle traffic accident due to motor vehicle failing to make curve, without collision on the highway (event)','214345006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214346007','214346007','http://snomed.info/sct','Motor vehicle traffic accident due to motor vehicle failing to make curve, without collision on the highway, driver of motor vehicle injured (event)','214346007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214347003','214347003','http://snomed.info/sct','Motor vehicle traffic accident due to motor vehicle failing to make curve, without collision on the highway, passenger of motor vehicle injured (event)','214347003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214348008','214348008','http://snomed.info/sct','Motor vehicle traffic accident due to motor vehicle failing to make curve, without collision on the highway, motor cyclist injured (event)','214348008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214349000','214349000','http://snomed.info/sct','Motor vehicle traffic accident due to motor vehicle failing to make curve, without collision on the highway, passenger on motor cycle injured (event)','214349000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214356006','214356006','http://snomed.info/sct','Motor vehicle traffic accident due to motor vehicle going out of control due to blowout, without collision on the highway (event)','214356006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214357002','214357002','http://snomed.info/sct','Motor vehicle traffic accident due to motor vehicle going out of control due to blowout, without collision on the highway, driver of motor vehicle injured (event)','214357002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214358007','214358007','http://snomed.info/sct','Motor vehicle traffic accident due to motor vehicle going out of control due to blowout, without collision on the highway, passenger of motor vehicle injured (event)','214358007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214359004','214359004','http://snomed.info/sct','Motor vehicle traffic accident due to motor vehicle going out of control due to blowout, without collision on the highway, motor cyclist injured (event)','214359004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214360009','214360009','http://snomed.info/sct','Motor vehicle traffic accident due to motor vehicle going out of control due to blowout, without collision on the highway, passenger on motor cycle injured (event)','214360009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214378004','214378004','http://snomed.info/sct','Motor vehicle traffic accident due to motor vehicle going out of control due to driver falling asleep, without collision on the highway (event)','214378004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214379007','214379007','http://snomed.info/sct','Motor vehicle traffic accident due to motor vehicle going out of control due to driver falling asleep, without collision on the highway, driver of motor vehicle injured (event)','214379007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214380005','214380005','http://snomed.info/sct','Motor vehicle traffic accident due to motor vehicle going out of control due to driver falling asleep, without collision on the highway, passenger of motor vehicle injured (event)','214380005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214381009','214381009','http://snomed.info/sct','Motor vehicle traffic accident due to motor vehicle going out of control due to driver falling asleep, without collision on the highway, motor cyclist injured (event)','214381009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214389006','214389006','http://snomed.info/sct','Motor vehicle traffic accident due to motor vehicle going out of control due to driver inattention, without collision on the highway (event)','214389006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214390002','214390002','http://snomed.info/sct','Motor vehicle traffic accident due to motor vehicle going out of control due to driver inattention, without collision on the highway, driver of motor vehicle injured (event)','214390002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214391003','214391003','http://snomed.info/sct','Motor vehicle traffic accident due to motor vehicle going out of control due to driver inattention, without collision on the highway, passenger of motor vehicle injured (event)','214391003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214392005','214392005','http://snomed.info/sct','Motor vehicle traffic accident due to motor vehicle going out of control due to driver inattention, without collision on the highway, motor cyclist injured (event)','214392005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214393000','214393000','http://snomed.info/sct','Motor vehicle traffic accident due to motor vehicle going out of control due to driver inattention, without collision on the highway, passenger on motor cycle injured (event)','214393000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214395007','214395007','http://snomed.info/sct','Motor vehicle traffic accident due to motor vehicle going out of control due to driver inattention, without collision on the highway, rider of animal or occupant of animal-drawn vehicle injured (event)','214395007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214396008','214396008','http://snomed.info/sct','Motor vehicle traffic accident due to motor vehicle going out of control due to driver inattention, without collision on the highway, pedal cyclist injured (event)','214396008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214397004','214397004','http://snomed.info/sct','Motor vehicle traffic accident due to motor vehicle going out of control due to driver inattention, without collision on the highway, pedestrian injured (event)','214397004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214400008','214400008','http://snomed.info/sct','Motor vehicle traffic accident due to motor vehicle going out of control due to excessive speed, without collision on the highway (event)','214400008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214401007','214401007','http://snomed.info/sct','Motor vehicle traffic accident due to motor vehicle going out of control due to excessive speed, without collision on the highway, driver of motor vehicle injured (event)','214401007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214402000','214402000','http://snomed.info/sct','Motor vehicle traffic accident due to motor vehicle going out of control due to excessive speed, without collision on the highway, passenger of motor vehicle injured (event)','214402000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214403005','214403005','http://snomed.info/sct','Motor vehicle traffic accident due to motor vehicle going out of control due to excessive speed, without collision on the highway, motor cyclist injured (event)','214403005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214405003','214405003','http://snomed.info/sct','Motor vehicle traffic accident due to motor vehicle going out of control due to excessive speed, without collision on the highway, passenger on motor cycle injured (event)','214405003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214412007','214412007','http://snomed.info/sct','Motor vehicle traffic accident due to motor vehicle going out of control due to failure of mechanical part, without collision on the highway (event)','214412007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214413002','214413002','http://snomed.info/sct','Motor vehicle traffic accident due to motor vehicle going out of control due to failure of mechanical part, without collision on the highway, driver of motor vehicle injured (event)','214413002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214414008','214414008','http://snomed.info/sct','Motor vehicle traffic accident due to motor vehicle going out of control due to failure of mechanical part, without collision on the highway, passenger of motor vehicle injured (event)','214414008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214415009','214415009','http://snomed.info/sct','Motor vehicle traffic accident due to motor vehicle going out of control due to failure of mechanical part, without collision on the highway, motor cyclist injured (event)','214415009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214416005','214416005','http://snomed.info/sct','Motor vehicle traffic accident due to motor vehicle going out of control due to failure of mechanical part, without collision on the highway, passenger on motor cycle injured (event)','214416005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214437002','214437002','http://snomed.info/sct','Noncollision motor vehicle traffic accident involving fall down stairs of motor bus while boarding or alighting, driver of motor vehicle injured (event)','214437002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214438007','214438007','http://snomed.info/sct','Noncollision motor vehicle traffic accident involving fall down stairs of motor bus while boarding or alighting, passenger of motor vehicle injured (event)','214438007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214439004','214439004','http://snomed.info/sct','Noncollision motor vehicle traffic accident involving fall down stairs of motor bus while boarding or alighting, motor cyclist injured (event)','214439004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214441003','214441003','http://snomed.info/sct','Noncollision motor vehicle traffic accident involving fall down stairs of motor bus while boarding or alighting, occupant of tram injured (event)','214441003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214442005','214442005','http://snomed.info/sct','Noncollision motor vehicle traffic accident involving fall down stairs of motor bus while boarding or alighting, rider of animal or occupant of animal-drawn vehicle injured (event)','214442005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214443000','214443000','http://snomed.info/sct','Noncollision motor vehicle traffic accident involving fall down stairs of motor bus while boarding or alighting, pedal cyclist injured (event)','214443000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214444006','214444006','http://snomed.info/sct','Noncollision motor vehicle traffic accident involving fall down stairs of motor bus while boarding or alighting, pedestrian injured (event)','214444006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214448009','214448009','http://snomed.info/sct','Noncollision motor vehicle traffic accident involving fall from car in street while boarding or alighting, driver of motor vehicle injured (event)','214448009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214449001','214449001','http://snomed.info/sct','Noncollision motor vehicle traffic accident involving fall from car in street while boarding or alighting, passenger of motor vehicle injured (event)','214449001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214450001','214450001','http://snomed.info/sct','Noncollision motor vehicle traffic accident involving fall from car in street while boarding or alighting, motor cyclist injured (event)','214450001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214452009','214452009','http://snomed.info/sct','Noncollision motor vehicle traffic accident involving fall from car in street while boarding or alighting, occupant of tram injured (event)','214452009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214453004','214453004','http://snomed.info/sct','Noncollision motor vehicle traffic accident involving fall from car in street while boarding or alighting, rider of animal or occupant of animal-drawn vehicle injured (event)','214453004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214455006','214455006','http://snomed.info/sct','Noncollision motor vehicle traffic accident involving fall from car in street while boarding or alighting, pedestrian injured (event)','214455006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214458008','214458008','http://snomed.info/sct','Noncollision motor vehicle traffic accident involving injury by moving part of the vehicle while boarding or alighting (event)','214458008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214459000','214459000','http://snomed.info/sct','Noncollision motor vehicle traffic accident involving injury by moving part of the vehicle while boarding or alighting, driver of motor vehicle injured (event)','214459000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214460005','214460005','http://snomed.info/sct','Noncollision motor vehicle traffic accident involving injury by moving part of the vehicle while boarding or alighting, passenger of motor vehicle injured (event)','214460005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214462002','214462002','http://snomed.info/sct','Noncollision motor vehicle traffic accident involving injury by moving part of the vehicle while boarding or alighting, passenger on motor cycle injured (event)','214462002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214471006','214471006','http://snomed.info/sct','Noncollision motor vehicle traffic accident involving being trapped by door of motor bus while boarding or alighting, passenger of motor vehicle injured (event)','214471006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214474003','214474003','http://snomed.info/sct','Noncollision motor vehicle traffic accident involving being trapped by door of motor bus while boarding or alighting, occupant of tram injured (event)','214474003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214475002','214475002','http://snomed.info/sct','Noncollision motor vehicle traffic accident involving being trapped by door of motor bus while boarding or alighting, rider of animal or occupant of animal-drawn vehicle injured (event)','214475002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214477005','214477005','http://snomed.info/sct','Noncollision motor vehicle traffic accident involving being trapped by door of motor bus while boarding or alighting, pedestrian injured (event)','214477005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214516008','214516008','http://snomed.info/sct','Noncollision motor vehicle traffic accident involving breakage of any part of motor vehicle while in motion, driver of motor vehicle injured (event)','214516008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214517004','214517004','http://snomed.info/sct','Noncollision motor vehicle traffic accident involving breakage of any part of motor vehicle while in motion, passenger of motor vehicle injured (event)','214517004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214518009','214518009','http://snomed.info/sct','Noncollision motor vehicle traffic accident involving breakage of any part of motor vehicle while in motion, motor cyclist injured (event)','214518009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214527005','214527005','http://snomed.info/sct','Noncollision motor vehicle traffic accident involving explosion of any part of motor vehicle while in motion, driver of motor vehicle injured (event)','214527005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214528000','214528000','http://snomed.info/sct','Noncollision motor vehicle traffic accident involving explosion of any part of motor vehicle while in motion, passenger of motor vehicle injured (event)','214528000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214529008','214529008','http://snomed.info/sct','Noncollision motor vehicle traffic accident involving explosion of any part of motor vehicle while in motion, motor cyclist injured (event)','214529008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214530003','214530003','http://snomed.info/sct','Noncollision motor vehicle traffic accident involving explosion of any part of motor vehicle while in motion, passenger on motor cycle injured (event)','214530003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214534007','214534007','http://snomed.info/sct','Noncollision motor vehicle traffic accident involving explosion of any part of motor vehicle while in motion, pedestrian injured (event)','214534007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214538005','214538005','http://snomed.info/sct','Noncollision motor vehicle traffic accident involving fall from motor vehicle while in motion, driver of motor vehicle injured (event)','214538005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214539002','214539002','http://snomed.info/sct','Noncollision motor vehicle traffic accident involving fall from motor vehicle while in motion, passenger of motor vehicle injured (event)','214539002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214540000','214540000','http://snomed.info/sct','Noncollision motor vehicle traffic accident involving fall from motor vehicle while in motion, motor cyclist injured (event)','214540000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214541001','214541001','http://snomed.info/sct','Noncollision motor vehicle traffic accident involving fall from motor vehicle while in motion, passenger on motor cycle injured (event)','214541001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214549004','214549004','http://snomed.info/sct','Noncollision motor vehicle traffic accident involving jump from motor vehicle while in motion, driver of motor vehicle injured (event)','214549004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214550004','214550004','http://snomed.info/sct','Noncollision motor vehicle traffic accident involving jump from motor vehicle while in motion, passenger of motor vehicle injured (event)','214550004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214551000','214551000','http://snomed.info/sct','Noncollision motor vehicle traffic accident involving jump from motor vehicle while in motion, motor cyclist injured (event)','214551000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214552007','214552007','http://snomed.info/sct','Noncollision motor vehicle traffic accident involving jump from motor vehicle while in motion, passenger on motor cycle injured (event)','214552007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214560008','214560008','http://snomed.info/sct','Noncollision motor vehicle traffic accident involving being accidentally pushed from motor vehicle while in motion, driver of motor vehicle injured (event)','214560008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214561007','214561007','http://snomed.info/sct','Noncollision motor vehicle traffic accident involving being accidentally pushed from motor vehicle while in motion, passenger of motor vehicle injured (event)','214561007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214562000','214562000','http://snomed.info/sct','Noncollision motor vehicle traffic accident involving being accidentally pushed from motor vehicle while in motion, motor cyclist injured (event)','214562000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214563005','214563005','http://snomed.info/sct','Noncollision motor vehicle traffic accident involving being accidentally pushed from motor vehicle while in motion, passenger on motor cycle injured (event)','214563005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214571009','214571009','http://snomed.info/sct','Noncollision motor vehicle traffic accident involving fire starting in motor vehicle while in motion, driver of motor vehicle injured (event)','214571009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214572002','214572002','http://snomed.info/sct','Noncollision motor vehicle traffic accident involving fire starting in motor vehicle while in motion, passenger of motor vehicle injured (event)','214572002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214573007','214573007','http://snomed.info/sct','Noncollision motor vehicle traffic accident involving fire starting in motor vehicle while in motion, motor cyclist injured (event)','214573007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214574001','214574001','http://snomed.info/sct','Noncollision motor vehicle traffic accident involving fire starting in motor vehicle while in motion, passenger on motor cycle injured (event)','214574001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214575000','214575000','http://snomed.info/sct','Noncollision motor vehicle traffic accident involving fire starting in motor vehicle while in motion, occupant of tram injured (event)','214575000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214576004','214576004','http://snomed.info/sct','Noncollision motor vehicle traffic accident involving fire starting in motor vehicle while in motion, rider of animal or occupant of animal-drawn vehicle injured (event)','214576004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214577008','214577008','http://snomed.info/sct','Noncollision motor vehicle traffic accident involving fire starting in motor vehicle while in motion, pedal cyclist injured (event)','214577008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214578003','214578003','http://snomed.info/sct','Noncollision motor vehicle traffic accident involving fire starting in motor vehicle while in motion, pedestrian injured (event)','214578003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214582001','214582001','http://snomed.info/sct','Noncollision motor vehicle traffic accident involving being hit by object thrown into or on motor vehicle while in motion, driver of motor vehicle injured (event)','214582001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214584000','214584000','http://snomed.info/sct','Noncollision motor vehicle traffic accident involving being hit by object thrown into or on motor vehicle while in motion, motor cyclist injured (event)','214584000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214585004','214585004','http://snomed.info/sct','Noncollision motor vehicle traffic accident involving being hit by object thrown into or on motor vehicle while in motion, passenger on motor cycle injured (event)','214585004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214586003','214586003','http://snomed.info/sct','Noncollision motor vehicle traffic accident involving being hit by object thrown into or on motor vehicle while in motion, occupant of tram injured (event)','214586003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214587007','214587007','http://snomed.info/sct','Noncollision motor vehicle traffic accident involving being hit by object thrown into or on motor vehicle while in motion, rider of animal or occupant of animal-drawn vehicle injured (event)','214587007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214588002','214588002','http://snomed.info/sct','Noncollision motor vehicle traffic accident involving being hit by object thrown into or on motor vehicle while in motion, pedal cyclist injured (event)','214588002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214589005','214589005','http://snomed.info/sct','Noncollision motor vehicle traffic accident involving being hit by object thrown into or on motor vehicle while in motion, pedestrian injured (event)','214589005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214592009','214592009','http://snomed.info/sct','Injured by being thrown against moving motor vehicle on road (event)','214592009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214593004','214593004','http://snomed.info/sct','Noncollision motor vehicle traffic accident involving injury by being thrown against some part of, or object in, motor vehicle while in motion, driver of motor vehicle injured (event)','214593004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214594005','214594005','http://snomed.info/sct','Noncollision motor vehicle traffic accident involving injury by being thrown against some part of, or object in, motor vehicle while in motion, passenger of motor vehicle injured (event)','214594005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214595006','214595006','http://snomed.info/sct','Noncollision motor vehicle traffic accident involving injury by being thrown against some part of, or object in, motor vehicle while in motion, motor cyclist injured (event)','214595006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214596007','214596007','http://snomed.info/sct','Noncollision motor vehicle traffic accident involving injury by being thrown against some part of, or object in, motor vehicle while in motion, passenger on motor cycle injured (event)','214596007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214597003','214597003','http://snomed.info/sct','Noncollision motor vehicle traffic accident involving injury by being thrown against some part of, or object in, motor vehicle while in motion, occupant of tram injured (event)','214597003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214598008','214598008','http://snomed.info/sct','Noncollision motor vehicle traffic accident with injury by being thrown against some part of, or object in, motor vehicle while in motion, rider of animal or occupant of animal-drawn vehicle injured (event)','214598008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214599000','214599000','http://snomed.info/sct','Noncollision motor vehicle traffic accident involving injury by being thrown against some part of, or object in, motor vehicle while in motion, pedal cyclist injured (event)','214599000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214601003','214601003','http://snomed.info/sct','Noncollision motor vehicle traffic accident involving injury by being thrown against some part of, or object in, motor vehicle while in motion, pedestrian injured (event)','214601003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214605007','214605007','http://snomed.info/sct','Noncollision motor vehicle traffic accident involving object falling in or on motor vehicle while in motion, driver of motor vehicle injured (event)','214605007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214606008','214606008','http://snomed.info/sct','Noncollision motor vehicle traffic accident involving object falling in or on motor vehicle while in motion, passenger of motor vehicle injured (event)','214606008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214607004','214607004','http://snomed.info/sct','Noncollision motor vehicle traffic accident involving object falling in or on motor vehicle while in motion, motor cyclist injured (event)','214607004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214609001','214609001','http://snomed.info/sct','Noncollision motor vehicle traffic accident involving object falling in or on motor vehicle while in motion, passenger on motor cycle injured (event)','214609001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214640008','214640008','http://snomed.info/sct','Motor vehicle accident off public road (event)','214640008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214643005','214643005','http://snomed.info/sct','Nontraffic accident involving breakage of part of motor-driven snow vehicle, driver of motor vehicle injured (event)','214643005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214644004','214644004','http://snomed.info/sct','Nontraffic accident involving breakage of part of motor-driven snow vehicle, passenger of motor vehicle injured (event)','214644004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214654000','214654000','http://snomed.info/sct','Nontraffic accident involving fall from motor-driven snow vehicle, driver of motor vehicle injured (event)','214654000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214666006','214666006','http://snomed.info/sct','Nontraffic accident involving being hit by motor-driven snow vehicle, driver of motor vehicle injured (event)','214666006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214667002','214667002','http://snomed.info/sct','Nontraffic accident involving being hit by motor-driven snow vehicle, passenger of motor vehicle injured (event)','214667002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214699008','214699008','http://snomed.info/sct','Nontraffic accident involving collision of motor-driven snow vehicle, not on public highway, driver of motor vehicle injured (event)','214699008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214766000','214766000','http://snomed.info/sct','Nontraffic accident involving being run over or dragged by off-road motor vehicle, except snow vehicle (event)','214766000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214778001','214778001','http://snomed.info/sct','Nontraffic accident involving being thrown against some part of or object in, off-road motor vehicle, except snow vehicle, of motor vehicle injured (event)','214778001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214834003','214834003','http://snomed.info/sct','Motor vehicle nontraffic accident involving collision, not on public highway, between motor vehicle, except off-road motor vehicle, and animal (event)','214834003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214845000','214845000','http://snomed.info/sct','Motor vehicle nontraffic accident involving collision, not on public highway, between motor vehicle, except off-road motor vehicle, and nonmotor vehicle (event)','214845000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214867004','214867004','http://snomed.info/sct','Motor vehicle nontraffic accident involving collision, not on public highway, between motor vehicle, except off-road motor vehicle, and pedestrian (event)','214867004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214868009','214868009','http://snomed.info/sct','Motor vehicle nontraffic accident involving collision, not on public highway, between motor vehicle, except off-road motor vehicle, and pedestrian, driver of motor vehicle injured (event)','214868009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214869001','214869001','http://snomed.info/sct','Motor vehicle nontraffic accident involving collision, not on public highway, between motor vehicle, except off-road motor vehicle, and pedestrian, passenger of motor vehicle injured (event)','214869001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214870000','214870000','http://snomed.info/sct','Motor vehicle nontraffic accident involving collision, not on public highway, between motor vehicle, except off-road motor vehicle, and pedestrian, motor cyclist injured (event)','214870000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214871001','214871001','http://snomed.info/sct','Motor vehicle nontraffic accident involving collision, not on public highway, between motor vehicle, except off-road motor vehicle, and pedestrian, passenger on motor cycle injured (event)','214871001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214878007','214878007','http://snomed.info/sct','Motor vehicle nontraffic accident involving collision, not on public highway, between motor vehicle, except off-road motor vehicle, and railway train (event)','214878007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214925009','214925009','http://snomed.info/sct','Motor vehicle nontraffic accident involving injury from moving part of motor vehicle while boarding or alighting from motor vehicle, except off-road motor vehicle, not on public highway (event)','214925009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214936002','214936002','http://snomed.info/sct','Motor vehicle nontraffic accident involving being trapped by door of motor vehicle while boarding or alighting from motor vehicle, except off-road motor vehicle, not on public highway (event)','214936002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214938001','214938001','http://snomed.info/sct','Nontraffic accident involving being trapped by door of motor vehicle while boarding or alighting from motor vehicle, except off-road vehicle, not on highway, passenger of motor vehicle injured (event)','214938001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214970001','214970001','http://snomed.info/sct','Motor vehicle nontraffic accident involving breakage of part of motor vehicle, except off-road motor vehicle, while in motion, not on public highway (event)','214970001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214981003','214981003','http://snomed.info/sct','Motor vehicle nontraffic accident involving explosion of any part of motor vehicle, except off-road motor vehicle, while in motion, not on public highway (event)','214981003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_214992002','214992002','http://snomed.info/sct','Motor vehicle nontraffic accident involving fall from motor vehicle, except off-road motor vehicle, while in motion, not on public highway (event)','214992002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_215003008','215003008','http://snomed.info/sct','Motor vehicle nontraffic accident involving jump from motor vehicle, except off-road motor vehicle, while in motion, not on public highway (event)','215003008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_215015007','215015007','http://snomed.info/sct','Motor vehicle nontraffic accident involving being accidentally pushed from motor vehicle, except off-road motor vehicle, while in motion, not on public highway (event)','215015007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_215026001','215026001','http://snomed.info/sct','Motor vehicle nontraffic accident involving fire starting in motor vehicle, except off-road motor vehicle, while in motion, not on public highway (event)','215026001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_215037000','215037000','http://snomed.info/sct','Motor vehicle nontraffic accident involving being hit by object thrown into motor vehicle, except off-road motor vehicle, while in motion, not on public highway (event)','215037000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_215048007','215048007','http://snomed.info/sct','Motor vehicle nontraffic accident involving being hit by object thrown on motor vehicle, except off-road motor vehicle, while in motion, not on public highway (event)','215048007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_215059003','215059003','http://snomed.info/sct','Motor vehicle nontraffic accident involving injury by being thrown against some part of, or object in motor vehicle, except off-road motor vehicle, while in motion, not on public highway (event)','215059003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_215071009','215071009','http://snomed.info/sct','Motor vehicle nontraffic accident involving injury from moving part of motor vehicle, except off-road motor vehicle, while in motion, not on public highway (event)','215071009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_215082001','215082001','http://snomed.info/sct','Motor vehicle nontraffic accident involving injury from object falling in or on motor vehicle, except off-road motor vehicle, while in motion, not on public highway (event)','215082001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_219360006','219360006','http://snomed.info/sct','Injury undetermined whether accidentally or purposely inflicted, by crashing of motor vehicle (disorder)','219360006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_242090001','242090001','http://snomed.info/sct','Motor vehicle on road in collision with vehicle running on rails (event)','242090001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_242091002','242091002','http://snomed.info/sct','Motor vehicle on road in collision with motorcycle (event)','242091002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_242092009','242092009','http://snomed.info/sct','Pedestrian trapped under motor vehicle wheel (event)','242092009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_242094005','242094005','http://snomed.info/sct','Motor vehicle on road in collision with road-side fixed object (event)','242094005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_242095006','242095006','http://snomed.info/sct','Motor vehicle on road in collision with lamp post (event)','242095006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_242096007','242096007','http://snomed.info/sct','Motor vehicle on road in collision with tree (event)','242096007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_242097003','242097003','http://snomed.info/sct','Motor vehicle on road in collision with wall (event)','242097003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_242098008','242098008','http://snomed.info/sct','Motor vehicle on road in collision with building (event)','242098008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_242099000','242099000','http://snomed.info/sct','Accident due to loss of control of motor vehicle on road (event)','242099000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_242100008','242100008','http://snomed.info/sct','Accident due to motor vehicle on road failing to negotiate curve (event)','242100008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_242101007','242101007','http://snomed.info/sct','Accident due to motor vehicle on road traveling at excessive speed (event)','242101007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_242102000','242102000','http://snomed.info/sct','Accident due to inattention of driver of motor vehicle on road (event)','242102000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_242103005','242103005','http://snomed.info/sct','Accident due to driver of motor vehicle on road falling asleep (event)','242103005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_242104004','242104004','http://snomed.info/sct','Accident due to sudden illness of driver of motor vehicle on road (event)','242104004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_242105003','242105003','http://snomed.info/sct','Accident to motor vehicle on road due to tire burst (event)','242105003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_242106002','242106002','http://snomed.info/sct','Accident due to mechanical failure in motor vehicle on road (event)','242106002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_242107006','242107006','http://snomed.info/sct','Accident while boarding or alighting from motor vehicle on road (event)','242107006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_242116005','242116005','http://snomed.info/sct','Accident to motor vehicle on road, not involving collision (event)','242116005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_242117001','242117001','http://snomed.info/sct','Accidental poisoning from exhaust gas of moving motor vehicle on road (event)','242117001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_242119003','242119003','http://snomed.info/sct','Injury to motor vehicle occupant without traffic accident (disorder)','242119003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_242130000','242130000','http://snomed.info/sct','Run over by off-road land motor vehicle (event)','242130000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_242131001','242131001','http://snomed.info/sct','Dragged by off-road land motor vehicle (event)','242131001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_242135005','242135005','http://snomed.info/sct','Off-road land motor vehicle in collision with object (event)','242135005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_242136006','242136006','http://snomed.info/sct','Off-road land motor vehicle in collision with road motor vehicle (event)','242136006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_242137002','242137002','http://snomed.info/sct','Off-road land motor vehicle in collision with pedestrian (event)','242137002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_242138007','242138007','http://snomed.info/sct','Off-road land motor vehicle in collision with railway train (event)','242138007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_242139004','242139004','http://snomed.info/sct','Accident while boarding or alighting from off-road land motor vehicle (event)','242139004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_242140002','242140002','http://snomed.info/sct','Fall while boarding or alighting from off-road land motor vehicle (event)','242140002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_242141003','242141003','http://snomed.info/sct','Injury from moving part off-road land motor vehicle while boarding or alighting (disorder)','242141003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_242384008','242384008','http://snomed.info/sct','Accidental exposure to exhaust gas from motor vehicle in motion (event)','242384008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_242923007','242923007','http://snomed.info/sct','Assault by striking with motor vehicle (event)','242923007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_242926004','242926004','http://snomed.info/sct','Assault by pushing from moving motor vehicle (event)','242926004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_242929006','242929006','http://snomed.info/sct','Assault by pushing into path of moving motor vehicle (event)','242929006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_242985002','242985002','http://snomed.info/sct','Injury of unknown intent due to impact by moving motor vehicle (disorder)','242985002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_242987005','242987005','http://snomed.info/sct','Injury of unknown intent due to motor vehicle crash (disorder)','242987005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_269655003','269655003','http://snomed.info/sct','Accident due to breakage of part of off-road land motor vehicle (event)','269655003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_269658001','269658001','http://snomed.info/sct','Accident to off-road land motor vehicle involving animals (event)','269658001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_271579008','271579008','http://snomed.info/sct','Motor vehicle on road in collision with nonmotor vehicle (event)','271579008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_274913009','274913009','http://snomed.info/sct','Motor vehicle on road in collision with another motor vehicle (event)','274913009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_274914003','274914003','http://snomed.info/sct','Motor vehicle on road in collision with unridden animal (event)','274914003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_274915002','274915002','http://snomed.info/sct','Motor vehicle on road in collision with fallen object (event)','274915002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_277135009','277135009','http://snomed.info/sct','Motor vehicle on road in collision with road sign (event)','277135009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_277136005','277136005','http://snomed.info/sct','Motor vehicle on road in collision with bollard (event)','277136005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_302974001','302974001','http://snomed.info/sct','Accident involving off-road land motor vehicle (event)','302974001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_302976004','302976004','http://snomed.info/sct','Off-road land motor vehicle in collision with fixed object (event)','302976004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_407153006','407153006','http://snomed.info/sct','Injury due to motor vehicle accident (disorder)','407153006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_418399005','418399005','http://snomed.info/sct','Motor vehicle accident (event)','418399005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_461211000124103','461211000124103','http://snomed.info/sct','Suicide attempt by crashing motor vehicle (event)','461211000124103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_709066006','709066006','http://snomed.info/sct','Motor vehicle accident with ejection of person from vehicle (event)','709066006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_709067002','709067002','http://snomed.info/sct','Motor vehicle accident without ejection of person from vehicle (event)','709067002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1718_7360001000004106','7360001000004106','http://snomed.info/sct','Facial fracture due to motor vehicle accident (disorder)','7360001000004106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1950_404236003','404236003','http://snomed.info/sct','Snowshoe hare virus encephalitis (disorder)','404236003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1950_404241006','404241006','http://snomed.info/sct','Meningitis caused by snowshoe hare virus (disorder)','404241006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1951_240507007','240507007','http://snomed.info/sct','Trivittatus fever (disorder)','240507007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.835_R78.71','R78.71','http://hl7.org/fhir/sid/icd-10-cm','Abnormal lead level in blood','R7871','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.835_T56.0X1A','T56.0X1A','http://hl7.org/fhir/sid/icd-10-cm','Toxic effect of lead and its compounds, accidental (unintentional), initial encounter','T560X1A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.835_T56.0X1D','T56.0X1D','http://hl7.org/fhir/sid/icd-10-cm','Toxic effect of lead and its compounds, accidental (unintentional), subsequent encounter','T560X1D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.835_T56.0X4A','T56.0X4A','http://hl7.org/fhir/sid/icd-10-cm','Toxic effect of lead and its compounds, undetermined, initial encounter','T560X4A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.835_T56.0X4D','T56.0X4D','http://hl7.org/fhir/sid/icd-10-cm','Toxic effect of lead and its compounds, undetermined, subsequent encounter','T560X4D','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_1142181004','1142181004','http://snomed.info/sct','Adverse reaction to component of vaccine product containing only severe acute respiratory syndrome coronavirus 2 messenger ribonucleic acid (disorder)','1142181004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_1142182006','1142182006','http://snomed.info/sct','Adverse reaction to component of vaccine product containing only severe acute respiratory syndrome coronavirus 2 antigen (disorder)','1142182006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_1156256003','1156256003','http://snomed.info/sct','Adverse reaction to component of vaccine product against severe acute respiratory syndrome coronavirus 2 (disorder)','1156256003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_1156746003','1156746003','http://snomed.info/sct','Vaccine-induced prothrombotic immune thrombocytopenia (disorder)','1156746003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_1157106007','1157106007','http://snomed.info/sct','Adverse reaction to component of vaccine product containing only recombinant non-replicating viral vector encoding severe acute respiratory syndrome coronavirus 2 spike protein (disorder)','1157106007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_1157195001','1157195001','http://snomed.info/sct','Adverse reaction to component of vaccine product containing only inactivated whole severe acute respiratory syndrome coronavirus 2 antigen (disorder)','1157195001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_1162639000','1162639000','http://snomed.info/sct','Adverse reaction to component of vaccine product containing only acellular Bordetella pertussis, Clostridium tetani, Corynebacterium diphtheriae, Haemophilus influenzae type b, Hepatitis B virus and inactivated Human poliovirus antigens (disorder)','1162639000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_1162644007','1162644007','http://snomed.info/sct','Adverse reaction to component of vaccine product containing only severe acute respiratory syndrome coronavirus 2 recombinant spike protein antigen (disorder)','1162644007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_1179495001','1179495001','http://snomed.info/sct','Adverse reaction to component of vaccine product containing only severe acute respiratory syndrome coronavirus 2 virus-like particle antigen (disorder)','1179495001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_1193581003','1193581003','http://snomed.info/sct','Adverse reaction to component of vaccine product containing only severe acute respiratory syndrome coronavirus 2 deoxyribonucleic acid plasmid encoding spike protein (disorder)','1193581003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_1217476001','1217476001','http://snomed.info/sct','Anaphylaxis caused by component of vaccine product (disorder)','1217476001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_15920121000119103','15920121000119103','http://snomed.info/sct','Allergic reaction caused by vaccine product (disorder)','15920121000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_186478009','186478009','http://snomed.info/sct','Acute paralytic poliomyelitis, vaccine-associated (disorder)','186478009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_219075006','219075006','http://snomed.info/sct','Adverse reaction to component of vaccine product containing bacteria antigen (disorder)','219075006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_219076007','219076007','http://snomed.info/sct','Adverse reaction to component of vaccine product containing Bacillus Calmette-Guerin antigen (disorder)','219076007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_219079000','219079000','http://snomed.info/sct','Adverse reaction to component of paratyphoid vaccine (disorder)','219079000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_219082005','219082005','http://snomed.info/sct','Adverse reaction to component of vaccine product containing Vibrio cholerae antigen (disorder)','219082005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_219083000','219083000','http://snomed.info/sct','Adverse reaction to component of vaccine product containing Yersinia pestis antigen (disorder)','219083000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_219084006','219084006','http://snomed.info/sct','Adverse reaction to component of vaccine product containing Clostridium tetani antigen (disorder)','219084006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_219085007','219085007','http://snomed.info/sct','Adverse reaction to component of vaccine product containing Corynebacterium diphtheriae antigen (disorder)','219085007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_219088009','219088009','http://snomed.info/sct','Adverse reaction to component of vaccine product containing Neisseria meningitidis antigen (disorder)','219088009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_219094001','219094001','http://snomed.info/sct','Adverse reaction to component of typhus vaccine (disorder)','219094001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_219095000','219095000','http://snomed.info/sct','Adverse reaction to component of vaccine product containing Yellow fever virus antigen (disorder)','219095000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_219096004','219096004','http://snomed.info/sct','Adverse reaction to component of vaccine product containing Measles morbillivirus antigen (disorder)','219096004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_293104008','293104008','http://snomed.info/sct','Adverse reaction to component of vaccine product (disorder)','293104008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_293105009','293105009','http://snomed.info/sct','Adverse reaction to component of vaccine product containing only Bacillus anthracis antigen (disorder)','293105009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_293108006','293108006','http://snomed.info/sct','Adverse reaction to component of vaccine product containing only Clostridium tetani and Corynebacterium diphtheriae antigens (disorder)','293108006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_293109003','293109003','http://snomed.info/sct','Adverse reaction to component of vaccine product containing only Bordetella pertussis and Clostridium tetani and Corynebacterium diphtheriae antigens (disorder)','293109003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_293110008','293110008','http://snomed.info/sct','Adverse reaction to component of vaccine product containing Hepatitis B virus antigen (disorder)','293110008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_293114004','293114004','http://snomed.info/sct','Adverse reaction to component of vaccine product containing Mumps orthorubulavirus antigen (disorder)','293114004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_293115003','293115003','http://snomed.info/sct','Adverse reaction to component of vaccine product containing Bordetella pertussis antigen (disorder)','293115003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_293116002','293116002','http://snomed.info/sct','Adverse reaction to component of vaccine product containing Streptococcus pneumoniae antigen (disorder)','293116002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_293117006','293117006','http://snomed.info/sct','Adverse reaction to component of vaccine product containing Human poliovirus antigen (disorder)','293117006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_293118001','293118001','http://snomed.info/sct','Adverse reaction to component of vaccine product containing Rabies lyssavirus antigen (disorder)','293118001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_293119009','293119009','http://snomed.info/sct','Adverse reaction to component of vaccine product containing Rubella virus antigen (disorder)','293119009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_293122006','293122006','http://snomed.info/sct','Adverse reaction to component of vaccine product containing Salmonella enterica subspecies enterica serovar Typhi antigen (disorder)','293122006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_293125008','293125008','http://snomed.info/sct','Adverse reaction to component of vaccine product containing only Measles morbillivirus and Mumps orthorubulavirus and Rubella virus antigens (disorder)','293125008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_293126009','293126009','http://snomed.info/sct','Adverse reaction to component of vaccine product containing Hepatitis A virus antigen (disorder)','293126009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_293127000','293127000','http://snomed.info/sct','Adverse reaction to component of vaccine product containing Haemophilus influenzae type b antigen (disorder)','293127000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_31935007','31935007','http://snomed.info/sct','Complication due to vaccination (disorder)','31935007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_408672009','408672009','http://snomed.info/sct','Adverse reaction to component of vaccine product containing virus antigen (disorder)','408672009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_420113004','420113004','http://snomed.info/sct','Adverse reaction to component of vaccine product containing Influenza virus antigen (disorder)','420113004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_428241000124101','428241000124101','http://snomed.info/sct','Anaphylaxis caused by vaccine product containing Human papillomavirus antigen (disorder)','428241000124101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_428281000124107','428281000124107','http://snomed.info/sct','Anaphylaxis caused by vaccine product containing only Clostridium tetani and Corynebacterium diphtheriae antigens (disorder)','428281000124107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_428291000124105','428291000124105','http://snomed.info/sct','Anaphylaxis caused by component of vaccine product containing low dose acellular Bordetella pertussis and Clostridium tetani and low dose Corynebacterium diphtheriae antigens (disorder)','428291000124105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_428301000124106','428301000124106','http://snomed.info/sct','Anaphylaxis caused by vaccine product containing only Neisseria meningitidis antigen (disorder)','428301000124106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_428321000124101','428321000124101','http://snomed.info/sct','Anaphylaxis caused by vaccine product containing Hepatitis B virus antigen (disorder)','428321000124101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_428331000124103','428331000124103','http://snomed.info/sct','Anaphylaxis caused by rotavirus vaccine (disorder)','428331000124103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_429301000124101','429301000124101','http://snomed.info/sct','Adverse reaction to component of Vaccine product containing Rotavirus antigen (disorder)','429301000124101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_429311000124103','429311000124103','http://snomed.info/sct','Adverse reaction to component of vaccine product containing Human papillomavirus antigen (disorder)','429311000124103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_429521000124101','429521000124101','http://snomed.info/sct','Adverse reaction to component of vaccine product containing low dose acellular Bordetella pertussis and Clostridium tetani and low dose Corynebacterium diphtheriae antigens (disorder)','429521000124101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_433621000124101','433621000124101','http://snomed.info/sct','Anaphylaxis caused by vaccine product containing only Haemophilus influenzae type b antigen (disorder)','433621000124101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_451111000124103','451111000124103','http://snomed.info/sct','Adverse reaction to component of vaccine product containing only Neisseria meningitidis conjugated antigen (disorder)','451111000124103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_451281000124102','451281000124102','http://snomed.info/sct','Adverse reaction to component of vaccine product containing only Neisseria meningitidis serogroup B antigen (disorder)','451281000124102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_451291000124104','451291000124104','http://snomed.info/sct','Adverse reaction to component of vaccine product containing Human alphaherpesvirus 3 antigen (disorder)','451291000124104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_451301000124103','451301000124103','http://snomed.info/sct','Adverse reaction to component of vaccine product containing Japanese encephalitis virus antigen (disorder)','451301000124103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_451331000124106','451331000124106','http://snomed.info/sct','Adverse reaction to component of vaccine product containing only live attenuated Human alphaherpesvirus 3 antigen (disorder)','451331000124106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_462331000124105','462331000124105','http://snomed.info/sct','Adverse reaction to component of vaccine product containing only acellular Bordetella pertussis and Clostridium tetani and Corynebacterium diphtheriae antigens (disorder)','462331000124105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_471141000124102','471141000124102','http://snomed.info/sct','Anaphylaxis caused by vaccine product containing Streptococcus pneumoniae antigen (disorder)','471141000124102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_471311000124103','471311000124103','http://snomed.info/sct','Anaphylaxis caused by vaccine product containing Hepatitis A virus antigen (disorder)','471311000124103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_471321000124106','471321000124106','http://snomed.info/sct','Anaphylaxis caused by vaccine product containing human poliovirus antigen (disorder)','471321000124106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_471331000124109','471331000124109','http://snomed.info/sct','Anaphylaxis caused by vaccine product containing Measles morbillivirus and Mumps orthorubulavirus and Rubella virus antigens (disorder)','471331000124109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_471341000124104','471341000124104','http://snomed.info/sct','Anaphylaxis caused by vaccine containing Human alphaherpesvirus 3 antigen (disorder)','471341000124104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_471351000124102','471351000124102','http://snomed.info/sct','Anaphylaxis caused by vaccine product (disorder)','471351000124102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_471361000124100','471361000124100','http://snomed.info/sct','Anaphylaxis caused by vaccine product containing Influenza virus antigen (disorder)','471361000124100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_471371000124107','471371000124107','http://snomed.info/sct','Anaphylaxis caused by vaccine product containing human alphaherpesvirus 3 recombinant surface glycoprotein E antigen (disorder)','471371000124107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_471381000124105','471381000124105','http://snomed.info/sct','Anaphylaxis caused by vaccine product containing live attenuated human alphaherpesvirus 3 antigen (disorder)','471381000124105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_698580004','698580004','http://snomed.info/sct','Post tetanus vaccination fever (disorder)','698580004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_762356001','762356001','http://snomed.info/sct','Inflammatory neuropathy due to and following vaccination (disorder)','762356001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_783245001','783245001','http://snomed.info/sct','Primary immunodeficiency with post-measles-mumps-rubella vaccine viral infection (disorder)','783245001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_863907000','863907000','http://snomed.info/sct','Vaccination site cellulitis (disorder)','863907000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_863908005','863908005','http://snomed.info/sct','Vaccination site lump (disorder)','863908005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_863909002','863909002','http://snomed.info/sct','Vaccination site rash (disorder)','863909002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_863910007','863910007','http://snomed.info/sct','Vaccination site swelling (disorder)','863910007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_192705005','192705005','http://snomed.info/sct','Post-bacillus Calmette-Guerin vaccination encephalitis (disorder)','192705005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_192706006','192706006','http://snomed.info/sct','Post typhoid vaccination encephalitis (disorder)','192706006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_192707002','192707002','http://snomed.info/sct','Post paratyphoid vaccination encephalitis (disorder)','192707002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_192709004','192709004','http://snomed.info/sct','Post plague vaccination encephalitis (disorder)','192709004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_192710009','192710009','http://snomed.info/sct','Post tetanus vaccination encephalitis (disorder)','192710009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_192711008','192711008','http://snomed.info/sct','Post diphtheria vaccination encephalitis (disorder)','192711008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_192712001','192712001','http://snomed.info/sct','Post pertussis vaccination encephalitis (disorder)','192712001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_192714000','192714000','http://snomed.info/sct','Post rabies vaccination encephalitis (disorder)','192714000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_192715004','192715004','http://snomed.info/sct','Post typhus vaccination encephalitis (disorder)','192715004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_192716003','192716003','http://snomed.info/sct','Post yellow fever vaccination encephalitis (disorder)','192716003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_192717007','192717007','http://snomed.info/sct','Post measles vaccination encephalitis (disorder)','192717007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_192718002','192718002','http://snomed.info/sct','Post polio vaccination encephalitis (disorder)','192718002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_192719005','192719005','http://snomed.info/sct','Post mumps vaccination encephalitis (disorder)','192719005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_192720004','192720004','http://snomed.info/sct','Post rubella vaccination encephalitis (disorder)','192720004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_192721000','192721000','http://snomed.info/sct','Post influenza vaccination encephalitis (disorder)','192721000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_192722007','192722007','http://snomed.info/sct','Post hepatitis A vaccination encephalitis (disorder)','192722007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_192723002','192723002','http://snomed.info/sct','Post hepatitis B vaccination encephalitis (disorder)','192723002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_192724008','192724008','http://snomed.info/sct','Post mixed vaccination encephalitis (disorder)','192724008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_293120003','293120003','http://snomed.info/sct','Adverse reaction to component of vaccine product containing Vaccinia virus antigen (disorder)','293120003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_370511006','370511006','http://snomed.info/sct','Vaccine-induced fibrosarcoma (disorder)','370511006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_409636005','409636005','http://snomed.info/sct','Complication of smallpox vaccination (disorder)','409636005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1605_1217296006','1217296006','http://snomed.info/sct','Disease caused by severe acute respiratory syndrome coronavirus 2 following administration of vaccine product against severe acute respiratory syndrome coronavirus 2 (disorder)','1217296006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1969_B17.0','B17.0','http://hl7.org/fhir/sid/icd-10-cm','Acute delta-(super) infection of hepatitis B carrier','B170','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1969_B18.0','B18.0','http://hl7.org/fhir/sid/icd-10-cm','Chronic viral hepatitis B with delta-agent','B180','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1969_B16.0','B16.0','http://hl7.org/fhir/sid/icd-10-cm','Acute hepatitis B with delta-agent with hepatic coma','B160','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1969_B16.1','B16.1','http://hl7.org/fhir/sid/icd-10-cm','Acute hepatitis B with delta-agent without hepatic coma','B161','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1604_T50.A11A','T50.A11A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by pertussis vaccine, including combinations with a pertussis component, accidental (unintentional), initial encounter','T50A11A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1604_T50.A12A','T50.A12A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by pertussis vaccine, including combinations with a pertussis component, intentional self-harm, initial encounter','T50A12A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1604_T50.A13A','T50.A13A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by pertussis vaccine, including combinations with a pertussis component, assault, initial encounter','T50A13A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1604_T50.A14A','T50.A14A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by pertussis vaccine, including combinations with a pertussis component, undetermined, initial encounter','T50A14A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1604_T50.A15A','T50.A15A','http://hl7.org/fhir/sid/icd-10-cm','Adverse effect of pertussis vaccine, including combinations with a pertussis component, initial encounter','T50A15A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1604_T50.A21A','T50.A21A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by mixed bacterial vaccines without a pertussis component, accidental (unintentional), initial encounter','T50A21A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1604_T50.A22A','T50.A22A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by mixed bacterial vaccines without a pertussis component, intentional self-harm, initial encounter','T50A22A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1604_T50.A23A','T50.A23A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by mixed bacterial vaccines without a pertussis component, assault, initial encounter','T50A23A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1604_T50.A24A','T50.A24A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by mixed bacterial vaccines without a pertussis component, undetermined, initial encounter','T50A24A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1604_T50.A25A','T50.A25A','http://hl7.org/fhir/sid/icd-10-cm','Adverse effect of mixed bacterial vaccines without a pertussis component, initial encounter','T50A25A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1604_T50.A91A','T50.A91A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by other bacterial vaccines, accidental (unintentional), initial encounter','T50A91A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1604_T50.A92A','T50.A92A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by other bacterial vaccines, intentional self-harm, initial encounter','T50A92A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1604_T50.A93A','T50.A93A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by other bacterial vaccines, assault, initial encounter','T50A93A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1604_T50.A94A','T50.A94A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by other bacterial vaccines, undetermined, initial encounter','T50A94A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1604_T50.A95A','T50.A95A','http://hl7.org/fhir/sid/icd-10-cm','Adverse effect of other bacterial vaccines, initial encounter','T50A95A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1604_T50.B11A','T50.B11A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by smallpox vaccines, accidental (unintentional), initial encounter','T50B11A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1604_T50.B12A','T50.B12A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by smallpox vaccines, intentional self-harm, initial encounter','T50B12A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1604_T50.B13A','T50.B13A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by smallpox vaccines, assault, initial encounter','T50B13A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1604_T50.B14A','T50.B14A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by smallpox vaccines, undetermined, initial encounter','T50B14A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1604_T50.B91A','T50.B91A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by other viral vaccines, accidental (unintentional), initial encounter','T50B91A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1604_T50.B92A','T50.B92A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by other viral vaccines, intentional self-harm, initial encounter','T50B92A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1604_T50.B93A','T50.B93A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by other viral vaccines, assault, initial encounter','T50B93A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1604_T50.B94A','T50.B94A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by other viral vaccines, undetermined, initial encounter','T50B94A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1604_T50.B95A','T50.B95A','http://hl7.org/fhir/sid/icd-10-cm','Adverse effect of other viral vaccines, initial encounter','T50B95A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1604_T50.Z91A','T50.Z91A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by other vaccines and biological substances, accidental (unintentional), initial encounter','T50Z91A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1604_T50.Z92A','T50.Z92A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by other vaccines and biological substances, intentional self-harm, initial encounter','T50Z92A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1604_T50.Z93A','T50.Z93A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by other vaccines and biological substances, assault, initial encounter','T50Z93A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1604_T50.Z94A','T50.Z94A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by other vaccines and biological substances, undetermined, initial encounter','T50Z94A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1604_T50.Z95A','T50.Z95A','http://hl7.org/fhir/sid/icd-10-cm','Adverse effect of other vaccines and biological substances, initial encounter','T50Z95A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1604_T80.52XA','T80.52XA','http://hl7.org/fhir/sid/icd-10-cm','Anaphylactic reaction due to vaccination, initial encounter','T8052XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1604_T80.62XA','T80.62XA','http://hl7.org/fhir/sid/icd-10-cm','Other serum reaction due to vaccination, initial encounter','T8062XA','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1604_A80.0','A80.0','http://hl7.org/fhir/sid/icd-10-cm','Acute paralytic poliomyelitis, vaccine-associated','A800','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1604_T50.B15A','T50.B15A','http://hl7.org/fhir/sid/icd-10-cm','Adverse effect of smallpox vaccines, initial encounter','T50B15A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1607_B08.011','B08.011','http://hl7.org/fhir/sid/icd-10-cm','Vaccinia not from vaccine','B08011','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1607_T50.B15A','T50.B15A','http://hl7.org/fhir/sid/icd-10-cm','Adverse effect of smallpox vaccines, initial encounter','T50B15A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1728_70014009','70014009','http://snomed.info/sct','Food poisoning caused by Clostridium perfringens (disorder)','70014009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1967_T42.8X1A','T42.8X1A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by antiparkinsonism drugs and other central muscle-tone depressants, accidental (unintentional), initial encounter','T428X1A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1967_T42.8X2A','T42.8X2A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by antiparkinsonism drugs and other central muscle-tone depressants, intentional self-harm, initial encounter','T428X2A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1967_T42.8X3A','T42.8X3A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by antiparkinsonism drugs and other central muscle-tone depressants, assault, initial encounter','T428X3A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1967_T42.8X4A','T42.8X4A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by antiparkinsonism drugs and other central muscle-tone depressants, undetermined, initial encounter','T428X4A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1967_T48.1X1A','T48.1X1A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by skeletal muscle relaxants [neuromuscular blocking agents], accidental (unintentional), initial encounter','T481X1A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1967_T48.1X2A','T48.1X2A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by skeletal muscle relaxants [neuromuscular blocking agents], intentional self-harm, initial encounter','T481X2A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1967_T48.1X3A','T48.1X3A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by skeletal muscle relaxants [neuromuscular blocking agents], assault, initial encounter','T481X3A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1967_T48.1X4A','T48.1X4A','http://hl7.org/fhir/sid/icd-10-cm','Poisoning by skeletal muscle relaxants [neuromuscular blocking agents], undetermined, initial encounter','T481X4A','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1606_111852003','111852003','http://snomed.info/sct','Vaccinia (disorder)','111852003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1606_1177184008','1177184008','http://snomed.info/sct','Transmission of vaccinia virus from another person due to contact with smallpox vaccination site (disorder)','1177184008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1606_238368001','238368001','http://snomed.info/sct','Eczema vaccinatum (disorder)','238368001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1606_262781009','262781009','http://snomed.info/sct','Kaposi''s varicelliform eruption caused by vaccinia virus (disorder)','262781009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1606_294657002','294657002','http://snomed.info/sct','Allergy to component of vaccine product containing Vaccinia virus antigen (finding)','294657002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1606_397552005','397552005','http://snomed.info/sct','Vaccinia keratitis (disorder)','397552005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1606_402884000','402884000','http://snomed.info/sct','Vaccination site vaccinia (disorder)','402884000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1606_409637001','409637001','http://snomed.info/sct','Inadvertent autoinoculation with vaccinia virus following contact with smallpox vaccination site (disorder)','409637001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1606_56978007','56978007','http://snomed.info/sct','Generalized vaccinia (disorder)','56978007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1606_192713006','192713006','http://snomed.info/sct','Post smallpox vaccination encephalitis (disorder)','192713006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1606_293120003','293120003','http://snomed.info/sct','Adverse reaction to component of vaccine product containing Vaccinia virus antigen (disorder)','293120003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1606_409636005','409636005','http://snomed.info/sct','Complication of smallpox vaccination (disorder)','409636005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1968_1137357005','1137357005','http://snomed.info/sct','Hepatic coma due to viral hepatitis D (disorder)','1137357005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1968_735451005','735451005','http://snomed.info/sct','Chronic infection caused by Hepatitis D virus (disorder)','735451005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1968_186624004','186624004','http://snomed.info/sct','Hepatic coma due to acute hepatitis B with delta agent (disorder)','186624004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1968_186626002','186626002','http://snomed.info/sct','Acute hepatitis B with delta-agent (coinfection) without hepatic coma (disorder)','186626002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1968_235864009','235864009','http://snomed.info/sct','Acute hepatitis B with hepatitis D (disorder)','235864009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1968_153091000119109','153091000119109','http://snomed.info/sct','Hepatic coma due to chronic hepatitis B with delta agent (disorder)','153091000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1968_235865005','235865005','http://snomed.info/sct','Hepatitis D superinfection of hepatitis B carrier (disorder)','235865005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1968_235869004','235869004','http://snomed.info/sct','Chronic viral hepatitis B with hepatitis D (disorder)','235869004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1968_838380002','838380002','http://snomed.info/sct','Chronic hepatitis B co-occurrent with hepatitis C and hepatitis D (disorder)','838380002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1844_15207003','15207003','http://snomed.info/sct','Zoonotic form of cutaneous leishmaniasis (disorder)','15207003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1844_17794004','17794004','http://snomed.info/sct','Recurrent cutaneous leishmaniasis (disorder)','17794004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1844_186803007','186803007','http://snomed.info/sct','Visceral leishmaniasis (disorder)','186803007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1844_186807008','186807008','http://snomed.info/sct','Asian desert cutaneous leishmaniasis (disorder)','186807008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1844_240635003','240635003','http://snomed.info/sct','Pneumonia caused by Leishmania (disorder)','240635003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1844_240636002','240636002','http://snomed.info/sct','Hemorrhagic leishmaniasis (disorder)','240636002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1844_240637006','240637006','http://snomed.info/sct','Cutaneous leishmaniasis (disorder)','240637006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1844_240638001','240638001','http://snomed.info/sct','Leishmania recidiva (disorder)','240638001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1844_240639009','240639009','http://snomed.info/sct','Indian anthroponotic cutaneous leishmaniasis (disorder)','240639009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1844_240641005','240641005','http://snomed.info/sct','Classical zoonotic cutaneous leishmaniasis (disorder)','240641005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1844_240642003','240642003','http://snomed.info/sct','Middle Eastern zoonotic cutaneous leishmaniasis (disorder)','240642003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1844_240643008','240643008','http://snomed.info/sct','Indian zoonotic cutaneous leishmaniasis (disorder)','240643008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1844_240644002','240644002','http://snomed.info/sct','Sahelian zoonotic cutaneous leishmaniasis (disorder)','240644002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1844_240645001','240645001','http://snomed.info/sct','Diffuse cutaneous New World leishmaniasis (disorder)','240645001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1844_240649007','240649007','http://snomed.info/sct','Panamanian leishmaniasis (disorder)','240649007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1844_240650007','240650007','http://snomed.info/sct','Lupoid leishmaniasis (disorder)','240650007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1844_28697001','28697001','http://snomed.info/sct','Disseminated mucocutaneous leishmaniasis (disorder)','28697001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1844_30595008','30595008','http://snomed.info/sct','Acute necrotizing cutaneous leishmaniasis (disorder)','30595008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1844_38573008','38573008','http://snomed.info/sct','Diffuse cutaneous leishmaniasis (disorder)','38573008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1844_39439008','39439008','http://snomed.info/sct','Wet form of cutaneous leishmaniasis (disorder)','39439008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1844_39625001','39625001','http://snomed.info/sct','Infection caused by Leishmania braziliensis (disorder)','39625001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1844_402141004','402141004','http://snomed.info/sct','American cutaneous/mucocutaneous Leishmaniasis (disorder)','402141004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1844_403135004','403135004','http://snomed.info/sct','American mucocutaneous leishmaniasis (disorder)','403135004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1844_403136003','403136003','http://snomed.info/sct','Leishmania brasiliensis complex cutaneous leishmaniasis (disorder)','403136003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1844_403137007','403137007','http://snomed.info/sct','Leishmania mexicana localized cutaneous leishmaniasis (disorder)','403137007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1844_41235001','41235001','http://snomed.info/sct','Dry form of cutaneous leishmaniasis (disorder)','41235001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1844_442003006','442003006','http://snomed.info/sct','Diffuse cutaneous leishmaniasis caused by Leishmania aethiopica (disorder)','442003006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1844_4499004','4499004','http://snomed.info/sct','Disseminated anergic leishmaniasis (disorder)','4499004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1844_50414000','50414000','http://snomed.info/sct','Late cutaneous leishmaniasis (disorder)','50414000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1844_5765005','5765005','http://snomed.info/sct','Infection caused by Leishmania tropica minor (disorder)','5765005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1844_59121004','59121004','http://snomed.info/sct','Infection caused by Leishmania aethiopica (disorder)','59121004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1844_67896006','67896006','http://snomed.info/sct','Post-kala-azar dermal leishmaniasis (disorder)','67896006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1844_715067004','715067004','http://snomed.info/sct','Ulcerating cutaneous leishmaniasis of lower extremity (disorder)','715067004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1844_721813000','721813000','http://snomed.info/sct','Mucocutaneous infection caused by Leishmania (disorder)','721813000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1844_735738004','735738004','http://snomed.info/sct','Localized cutaneous leishmaniasis (disorder)','735738004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1844_75656006','75656006','http://snomed.info/sct','Ulcerating cutaneous leishmaniasis (disorder)','75656006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1844_77327004','77327004','http://snomed.info/sct','Infection caused by Leishmania mexicana (disorder)','77327004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1844_80612004','80612004','http://snomed.info/sct','Leishmaniasis (disorder)','80612004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1844_81551009','81551009','http://snomed.info/sct','Infection caused by Leishmania infantum (disorder)','81551009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1844_866117003','866117003','http://snomed.info/sct','Localized cutaneous leishmaniasis co-occurrent with nodular lymphangitis (disorder)','866117003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1721_B34.1','B34.1','http://hl7.org/fhir/sid/icd-10-cm','Enterovirus infection, unspecified','B341','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1721_B97.10','B97.10','http://hl7.org/fhir/sid/icd-10-cm','Unspecified enterovirus as the cause of diseases classified elsewhere','B9710','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1721_B97.11','B97.11','http://hl7.org/fhir/sid/icd-10-cm','Coxsackievirus as the cause of diseases classified elsewhere','B9711','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1721_B97.12','B97.12','http://hl7.org/fhir/sid/icd-10-cm','Echovirus as the cause of diseases classified elsewhere','B9712','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1721_B97.19','B97.19','http://hl7.org/fhir/sid/icd-10-cm','Other enterovirus as the cause of diseases classified elsewhere','B9719','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1721_J20.3','J20.3','http://hl7.org/fhir/sid/icd-10-cm','Acute bronchitis due to coxsackievirus','J203','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1721_J20.6','J20.6','http://hl7.org/fhir/sid/icd-10-cm','Acute bronchitis due to rhinovirus','J206','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1721_J20.7','J20.7','http://hl7.org/fhir/sid/icd-10-cm','Acute bronchitis due to echovirus','J207','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1721_A87.0','A87.0','http://hl7.org/fhir/sid/icd-10-cm','Enteroviral meningitis','A870','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1721_A85.0','A85.0','http://hl7.org/fhir/sid/icd-10-cm','Enteroviral encephalitis','A850','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1845_B55','B55','http://hl7.org/fhir/sid/icd-10-cm','Leishmaniasis','B55','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1845_B55.0','B55.0','http://hl7.org/fhir/sid/icd-10-cm','Visceral leishmaniasis','B550','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1845_B55.1','B55.1','http://hl7.org/fhir/sid/icd-10-cm','Cutaneous leishmaniasis','B551','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1845_B55.2','B55.2','http://hl7.org/fhir/sid/icd-10-cm','Mucocutaneous leishmaniasis','B552','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1845_B55.9','B55.9','http://hl7.org/fhir/sid/icd-10-cm','Leishmaniasis, unspecified','B559','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1966_212757000','212757000','http://snomed.info/sct','Smooth muscle relaxant poisoning (disorder)','212757000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1966_218696007','218696007','http://snomed.info/sct','Adverse reaction caused by central nervous system muscle-tone depressants (disorder)','218696007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1966_219019005','219019005','http://snomed.info/sct','Adverse reaction caused by skeletal muscle relaxants (disorder)','219019005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1966_292682001','292682001','http://snomed.info/sct','Depolarizing muscle relaxant adverse reaction (disorder)','292682001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1966_292684000','292684000','http://snomed.info/sct','Non-depolarizing muscle relaxant adverse reaction (disorder)','292684000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1966_292700004','292700004','http://snomed.info/sct','Smooth muscle relaxant adverse reaction (disorder)','292700004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1966_296489004','296489004','http://snomed.info/sct','Skeletal muscle relaxant overdose (disorder)','296489004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1966_296503003','296503003','http://snomed.info/sct','Smooth muscle relaxant overdose (disorder)','296503003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1842_1260190007','1260190007','http://snomed.info/sct','Ventilator-induced diaphragmatic dysfunction (disorder)','1260190007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1842_233813006','233813006','http://snomed.info/sct','Ventilator-associated lung injury (disorder)','233813006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1842_363021009','363021009','http://snomed.info/sct','Complication of respiratory therapy procedure (disorder)','363021009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1842_429271009','429271009','http://snomed.info/sct','Ventilator-acquired pneumonia (disorder)','429271009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1842_67569000','67569000','http://snomed.info/sct','Bronchopulmonary dysplasia of newborn (disorder)','67569000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1842_71695001','71695001','http://snomed.info/sct','Complication of ventilation therapy (disorder)','71695001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1842_90191000119100','90191000119100','http://snomed.info/sct','Mechanical complication of ventilator (disorder)','90191000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1963_551611000124101','551611000124101','http://snomed.info/sct','Perinatal hepatitis caused by Hepatitis C virus (disorder)','551611000124101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1963_278929008','278929008','http://snomed.info/sct','Congenital hepatitis C infection (disorder)','278929008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1843_J95.85','J95.85','http://hl7.org/fhir/sid/icd-10-cm','Complication of respirator [ventilator]','J9585','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1843_J95.851','J95.851','http://hl7.org/fhir/sid/icd-10-cm','Ventilator associated pneumonia','J95851','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1843_J95.859','J95.859','http://hl7.org/fhir/sid/icd-10-cm','Other complication of respirator [ventilator]','J95859','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1729_266093005','266093005','http://snomed.info/sct','Gas gangrene caused by clostridium perfringens (disorder)','266093005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1729_39747007','39747007','http://snomed.info/sct','Enteritis necroticans (disorder)','39747007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1729_46609008','46609008','http://snomed.info/sct','Infection caused by Clostridium perfringens type C (disorder)','46609008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1729_65154009','65154009','http://snomed.info/sct','Infection caused by Clostridium perfringens (disorder)','65154009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1729_66218005','66218005','http://snomed.info/sct','Infection caused by Clostridium perfringens type A (disorder)','66218005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1729_82051003','82051003','http://snomed.info/sct','Infection caused by Clostridium perfringens type D (disorder)','82051003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1729_89861008','89861008','http://snomed.info/sct','Infection caused by Clostridium perfringens type B (disorder)','89861008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1720_1163083004','1163083004','http://snomed.info/sct','Dacryoadenitis caused by human echovirus (disorder)','1163083004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1720_1163522000','1163522000','http://snomed.info/sct','Gastritis caused by human Enterovirus (disorder)','1163522000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1720_1163535009','1163535009','http://snomed.info/sct','Nervous system disease caused by human enterovirus (disorder)','1163535009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1720_128405007','128405007','http://snomed.info/sct','Coxsackie carditis (disorder)','128405007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1720_129671003','129671003','http://snomed.info/sct','Human echovirus infection (disorder)','129671003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1720_16077531000119101','16077531000119101','http://snomed.info/sct','Acute hemorrhagic conjunctivitis of bilateral eyes caused by Enterovirus (disorder)','16077531000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1720_186658007','186658007','http://snomed.info/sct','Coxsackie virus disease (disorder)','186658007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1720_186659004','186659004','http://snomed.info/sct','Herpangina (disorder)','186659004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1720_194905000','194905000','http://snomed.info/sct','Acute pericarditis caused by human coxsackievirus (disorder)','194905000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1720_194944008','194944008','http://snomed.info/sct','Acute myocarditis - coxsackie (disorder)','194944008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1720_195725001','195725001','http://snomed.info/sct','Acute coxsackievirus bronchitis (disorder)','195725001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1720_195728004','195728004','http://snomed.info/sct','Acute bronchitis caused by rhinovirus (disorder)','195728004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1720_195729007','195729007','http://snomed.info/sct','Acute echovirus bronchitis (disorder)','195729007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1720_197339003','197339003','http://snomed.info/sct','Coxsackie virus hepatitis (disorder)','197339003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1720_240482001','240482001','http://snomed.info/sct','Enteroviral exanthem (disorder)','240482001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1720_240546009','240546009','http://snomed.info/sct','Coxsackie virus exanthem (disorder)','240546009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1720_240547000','240547000','http://snomed.info/sct','Lymphonodular coxsackie pharyngitis (disorder)','240547000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1720_240548005','240548005','http://snomed.info/sct','Coxsackie muscle infection (disorder)','240548005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1720_240549002','240549002','http://snomed.info/sct','Neonatal coxsackie virus syndrome (disorder)','240549002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1720_240550002','240550002','http://snomed.info/sct','Neonatal echovirus disease (disorder)','240550002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1720_266108008','266108008','http://snomed.info/sct','Hand foot and mouth disease (disorder)','266108008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1720_271532008','271532008','http://snomed.info/sct','Echovirus disease (disorder)','271532008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1720_274102007','274102007','http://snomed.info/sct','Vesicular pharyngitis (disorder)','274102007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1720_276664005','276664005','http://snomed.info/sct','Congenital coxsackie infection (disorder)','276664005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1720_27806003','27806003','http://snomed.info/sct','Coxsackie pericarditis (disorder)','27806003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1720_32580004','32580004','http://snomed.info/sct','Enterovirus enteritis (disorder)','32580004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1720_359628008','359628008','http://snomed.info/sct','Conjunctivitis caused by enterovirus type 70 (disorder)','359628008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1720_36155008','36155008','http://snomed.info/sct','Hepatitis in coxsackie viral disease (disorder)','36155008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1720_37217002','37217002','http://snomed.info/sct','Coxsackie myocarditis (disorder)','37217002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1720_398264003','398264003','http://snomed.info/sct','Acute hemorrhagic conjunctivitis (disorder)','398264003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1720_406568007','406568007','http://snomed.info/sct','Coxsackievirus infection of the central nervous system (disorder)','406568007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1720_406571004','406571004','http://snomed.info/sct','Echovirus infection of the central nervous system (disorder)','406571004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1720_406578005','406578005','http://snomed.info/sct','Enterovirus infection of the central nervous system (disorder)','406578005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1720_40766000','40766000','http://snomed.info/sct','Enteroviral lymphonodular pharyngitis (disorder)','40766000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1720_413933004','413933004','http://snomed.info/sct','Coxsackie myocarditis of newborn (disorder)','413933004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1720_41546002','41546002','http://snomed.info/sct','Disease caused by Rhinovirus (disorder)','41546002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1720_446754004','446754004','http://snomed.info/sct','Enteritis caused by Human coxsackievirus (disorder)','446754004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1720_446755003','446755003','http://snomed.info/sct','Enteritis caused by Human echovirus (disorder)','446755003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1720_446756002','446756002','http://snomed.info/sct','Enteritis caused by Human enterovirus 71 (disorder)','446756002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1720_460345001','460345001','http://snomed.info/sct','Myocarditis caused by echovirus (disorder)','460345001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1720_46397005','46397005','http://snomed.info/sct','Enterovirus heart infection (disorder)','46397005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1720_53648006','53648006','http://snomed.info/sct','Disease caused by Enterovirus (disorder)','53648006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1720_698257008','698257008','http://snomed.info/sct','Coxsackie virus infection of oral cavity (disorder)','698257008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1720_713456006','713456006','http://snomed.info/sct','Infection caused by Human enterovirus 71 (disorder)','713456006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1720_716865000','716865000','http://snomed.info/sct','Congenital infection caused by enterovirus (disorder)','716865000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1720_721274005','721274005','http://snomed.info/sct','Congenital infection caused by Echovirus (disorder)','721274005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1720_77470003','77470003','http://snomed.info/sct','Enteroviral exanthematous fever (disorder)','77470003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1720_83264000','83264000','http://snomed.info/sct','Epidemic pleurodynia (disorder)','83264000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1720_840284009','840284009','http://snomed.info/sct','Eczema coxsackium (disorder)','840284009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1720_85402004','85402004','http://snomed.info/sct','Meningoeruptive syndrome (disorder)','85402004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1720_866055006','866055006','http://snomed.info/sct','Myelitis caused by Enterovirus (disorder)','866055006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1720_866058008','866058008','http://snomed.info/sct','Myelitis caused by Human echovirus (disorder)','866058008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1720_866059000','866059000','http://snomed.info/sct','Myelitis caused by Human coxsackievirus A (disorder)','866059000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1720_866251007','866251007','http://snomed.info/sct','Myelitis caused by Human coxsackievirus B (disorder)','866251007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1720_870728004','870728004','http://snomed.info/sct','Exanthem caused by human echovirus 16 (disorder)','870728004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1720_870729007','870729007','http://snomed.info/sct','Exanthem caused by human echovirus (disorder)','870729007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1720_88129004','88129004','http://snomed.info/sct','Coxsackie endocarditis (disorder)','88129004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1720_111878007','111878007','http://snomed.info/sct','Meningitis caused by coxsackie virus (disorder)','111878007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1720_192667007','192667007','http://snomed.info/sct','Meningitis caused by echovirus (disorder)','192667007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1720_230142004','230142004','http://snomed.info/sct','Meningitis caused by coxsackievirus A virus (disorder)','230142004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1720_230143009','230143009','http://snomed.info/sct','Meningitis caused by coxsackievirus B virus (disorder)','230143009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1720_28192008','28192008','http://snomed.info/sct','Meningitis caused by Enterovirus (disorder)','28192008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1720_722547006','722547006','http://snomed.info/sct','Meningitis caused by Human enterovirus 71 (disorder)','722547006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1720_722548001','722548001','http://snomed.info/sct','Meningitis caused by Human enterovirus 70 (disorder)','722548001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1720_1163098002','1163098002','http://snomed.info/sct','Encephalitis caused by human echovirus (disorder)','1163098002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1720_1163100002','1163100002','http://snomed.info/sct','Encephalitis caused by human coxsackievirus (disorder)','1163100002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1720_230144003','230144003','http://snomed.info/sct','Chronic echovirus meningoencephalitis (disorder)','230144003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1720_230162007','230162007','http://snomed.info/sct','Enteroviral encephalitis (disorder)','230162007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1720_70576008','70576008','http://snomed.info/sct','Enteroviral encephalomyelitis (disorder)','70576008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.940_10301003','10301003','http://snomed.info/sct','Tick-borne relapsing fever (disorder)','10301003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.940_205717001','205717001','http://snomed.info/sct','Infection caused by Borrelia turicatae (disorder)','205717001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.940_39002001','39002001','http://snomed.info/sct','Relapsing fever of Western United States (disorder)','39002001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.940_713014002','713014002','http://snomed.info/sct','Infection caused by Borrelia miyamotoi (disorder)','713014002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.940_78168002','78168002','http://snomed.info/sct','Relapsing fever of Western North America (disorder)','78168002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.701_B19.1','B19.1','http://hl7.org/fhir/sid/icd-10-cm','Unspecified viral hepatitis B','B191','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.701_B19.10','B19.10','http://hl7.org/fhir/sid/icd-10-cm','Unspecified viral hepatitis B without hepatic coma','B1910','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.701_B19.11','B19.11','http://hl7.org/fhir/sid/icd-10-cm','Unspecified viral hepatitis B with hepatic coma','B1911','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.822_J62.0','J62.0','http://hl7.org/fhir/sid/icd-10-cm','Pneumoconiosis due to talc dust','J620','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.822_J63.6','J63.6','http://hl7.org/fhir/sid/icd-10-cm','Pneumoconiosis due to other specified inorganic dusts','J636','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.822_J64','J64','http://hl7.org/fhir/sid/icd-10-cm','Unspecified pneumoconiosis','J64','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.822_J65','J65','http://hl7.org/fhir/sid/icd-10-cm','Pneumoconiosis associated with tuberculosis','J65','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.823_10625871000119105','10625871000119105','http://snomed.info/sct','Pneumoconiosis caused by organic dust (disorder)','10625871000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.823_17996008','17996008','http://snomed.info/sct','Pneumoconiosis caused by inorganic dust (disorder)','17996008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.823_233748006','233748006','http://snomed.info/sct','Simple pneumoconiosis (disorder)','233748006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.823_233749003','233749003','http://snomed.info/sct','Complicated pneumoconiosis (disorder)','233749003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.823_233759002','233759002','http://snomed.info/sct','Mixed mineral dust pneumoconiosis (disorder)','233759002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.823_32139003','32139003','http://snomed.info/sct','Mixed dust pneumoconiosis (disorder)','32139003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.823_40122008','40122008','http://snomed.info/sct','Pneumoconiosis (disorder)','40122008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.823_785345002','785345002','http://snomed.info/sct','Pneumoconiosis caused by sisal dust (disorder)','785345002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1737_216725003','216725003','http://snomed.info/sct','Accidental poisoning by mixtures of herbicides with plant foods and fertilizers (disorder)','216725003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1737_216807004','216807004','http://snomed.info/sct','Accidental poisoning caused by plant food and fertilizer (disorder)','216807004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1737_216809001','216809001','http://snomed.info/sct','Accidental poisoning caused by fertilizers (disorder)','216809001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1737_242291008','242291008','http://snomed.info/sct','Accidental exposure to fertilizer (event)','242291008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_1003584006','1003584006','http://snomed.info/sct','Hind brain laceration with open intracranial wound and loss of consciousness (disorder)','1003584006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_10137002','10137002','http://snomed.info/sct','Epidermal burn of chin (disorder)','10137002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_103061000119109','103061000119109','http://snomed.info/sct','Closed fracture of naso orbital ethmoid (disorder)','103061000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_1085581000119101','1085581000119101','http://snomed.info/sct','Complete edentulism due to trauma (disorder)','1085581000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_1085591000119103','1085591000119103','http://snomed.info/sct','Complete edentulism class I due to trauma (disorder)','1085591000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_1085601000119105','1085601000119105','http://snomed.info/sct','Complete edentulism class II due to trauma (disorder)','1085601000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_1085611000119108','1085611000119108','http://snomed.info/sct','Complete edentulism class III due to trauma (disorder)','1085611000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_1085621000119101','1085621000119101','http://snomed.info/sct','Complete edentulism class IV due to trauma (disorder)','1085621000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_10859002','10859002','http://snomed.info/sct','Fracture of ethmoid sinus (disorder)','10859002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_10872851000119104','10872851000119104','http://snomed.info/sct','Laceration of structure of nasal cavity (disorder)','10872851000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_10873531000119101','10873531000119101','http://snomed.info/sct','Open wound of right ear (disorder)','10873531000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_10873571000119103','10873571000119103','http://snomed.info/sct','Open wound of left ear (disorder)','10873571000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_10873851000119109','10873851000119109','http://snomed.info/sct','Laceration of nasal sinus (disorder)','10873851000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_10874271000119103','10874271000119103','http://snomed.info/sct','Laceration of right cheek (disorder)','10874271000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_10874311000119103','10874311000119103','http://snomed.info/sct','Laceration of left cheek (disorder)','10874311000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_10874351000119102','10874351000119102','http://snomed.info/sct','Open wound of right cheek (disorder)','10874351000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_10874391000119107','10874391000119107','http://snomed.info/sct','Open wound of left cheek (disorder)','10874391000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_10874631000119104','10874631000119104','http://snomed.info/sct','Open wound of right eyelid (disorder)','10874631000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_10874671000119101','10874671000119101','http://snomed.info/sct','Open wound of left eyelid (disorder)','10874671000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_10874791000119106','10874791000119106','http://snomed.info/sct','Laceration of right eyelid (disorder)','10874791000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_10874831000119100','10874831000119100','http://snomed.info/sct','Laceration of left eyelid (disorder)','10874831000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_10875431000119101','10875431000119101','http://snomed.info/sct','Laceration of right periocular area (disorder)','10875431000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_10875471000119103','10875471000119103','http://snomed.info/sct','Laceration of left periocular area (disorder)','10875471000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_10876871000119109','10876871000119109','http://snomed.info/sct','Laceration of right ear region (disorder)','10876871000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_10876911000119107','10876911000119107','http://snomed.info/sct','Laceration of left ear region (disorder)','10876911000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_10899011000119105','10899011000119105','http://snomed.info/sct','Open wound of tongue due to bite (disorder)','10899011000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_10899131000119104','10899131000119104','http://snomed.info/sct','Open wound of mouth due to bite (disorder)','10899131000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_10899251000119103','10899251000119103','http://snomed.info/sct','Puncture wound of lip (disorder)','10899251000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_10899371000119104','10899371000119104','http://snomed.info/sct','Puncture wound of tongue (disorder)','10899371000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_10900111000119107','10900111000119107','http://snomed.info/sct','Superficial injury of right conjunctiva (disorder)','10900111000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_10900151000119108','10900151000119108','http://snomed.info/sct','Superficial injury of left conjunctiva (disorder)','10900151000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_10900191000119103','10900191000119103','http://snomed.info/sct','Abrasion of cornea of right eye (disorder)','10900191000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_10900231000119107','10900231000119107','http://snomed.info/sct','Abrasion of cornea of left eye (disorder)','10900231000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_10900351000119106','10900351000119106','http://snomed.info/sct','Laceration of right cornea (disorder)','10900351000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_10900391000119101','10900391000119101','http://snomed.info/sct','Laceration of left cornea (disorder)','10900391000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_10900431000119106','10900431000119106','http://snomed.info/sct','Laceration of globe of right eye (disorder)','10900431000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_10900471000119109','10900471000119109','http://snomed.info/sct','Laceration of globe of left eye (disorder)','10900471000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_10900511000119100','10900511000119100','http://snomed.info/sct','Contusion of globe of right eye (disorder)','10900511000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_10900551000119104','10900551000119104','http://snomed.info/sct','Contusion of globe of left eye (disorder)','10900551000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_10900751000119107','10900751000119107','http://snomed.info/sct','Contusion of orbital tissue of right eye (disorder)','10900751000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_10900791000119102','10900791000119102','http://snomed.info/sct','Contusion of orbital tissue of left eye (disorder)','10900791000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_1090151000119108','1090151000119108','http://snomed.info/sct','Partial edentulism due to trauma (disorder)','1090151000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_1090161000119105','1090161000119105','http://snomed.info/sct','Partial edentulism class I due to trauma (disorder)','1090161000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_1090171000119104','1090171000119104','http://snomed.info/sct','Partial edentulism class II due to trauma (disorder)','1090171000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_1090181000119101','1090181000119101','http://snomed.info/sct','Partial edentulism class III due to trauma (disorder)','1090181000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_1090191000119103','1090191000119103','http://snomed.info/sct','Partial edentulism class IV due to trauma (disorder)','1090191000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_10905551000119107','10905551000119107','http://snomed.info/sct','Open wound of face due to human bite (disorder)','10905551000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_10906231000119109','10906231000119109','http://snomed.info/sct','Laceration of jaw region (disorder)','10906231000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_10906271000119107','10906271000119107','http://snomed.info/sct','Laceration of chin (disorder)','10906271000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_10906431000119108','10906431000119108','http://snomed.info/sct','Open wound of head due to human bite (disorder)','10906431000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_10907161000119109','10907161000119109','http://snomed.info/sct','Open wound of face due to bite (disorder)','10907161000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_10907281000119107','10907281000119107','http://snomed.info/sct','Open wound of jaw due to bite (disorder)','10907281000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_10920005','10920005','http://snomed.info/sct','Abrasion and/or friction burn of lip with infection (disorder)','10920005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_10942671000119100','10942671000119100','http://snomed.info/sct','Superficial injury of right eye (disorder)','10942671000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_10942711000119101','10942711000119101','http://snomed.info/sct','Superficial injury of left eye (disorder)','10942711000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_10942871000119101','10942871000119101','http://snomed.info/sct','Traumatic injury of globe of right eye (disorder)','10942871000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_10942911000119103','10942911000119103','http://snomed.info/sct','Traumatic injury of globe of left eye (disorder)','10942911000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_109585008','109585008','http://snomed.info/sct','Abrasion of neck of tooth (disorder)','109585008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_109647001','109647001','http://snomed.info/sct','Occlusal trauma (disorder)','109647001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_109648006','109648006','http://snomed.info/sct','Primary occlusal trauma (disorder)','109648006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_109649003','109649003','http://snomed.info/sct','Secondary occlusal trauma (disorder)','109649003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_109650003','109650003','http://snomed.info/sct','Localized secondary occlusal trauma (disorder)','109650003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110014005','110014005','http://snomed.info/sct','Decapitation (disorder)','110014005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110017003','110017003','http://snomed.info/sct','Closed fracture of zygomatic tripod (disorder)','110017003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110018008','110018008','http://snomed.info/sct','Open fracture of zygomatic tripod (disorder)','110018008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110019000','110019000','http://snomed.info/sct','Closed fracture of orbital portion of zygomatic bone (disorder)','110019000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110020006','110020006','http://snomed.info/sct','Open fracture of orbital portion of zygomatic bone (disorder)','110020006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110021005','110021005','http://snomed.info/sct','Closed fracture of alveolar ridge of maxilla (disorder)','110021005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110022003','110022003','http://snomed.info/sct','Closed horizontal fracture of maxilla (disorder)','110022003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110023008','110023008','http://snomed.info/sct','Closed pyramidal fracture of maxilla (disorder)','110023008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110024002','110024002','http://snomed.info/sct','Complete closed fracture of maxilla (disorder)','110024002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110025001','110025001','http://snomed.info/sct','Open fracture of alveolar ridge of maxilla (disorder)','110025001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110026000','110026000','http://snomed.info/sct','Open horizontal fracture of maxilla (disorder)','110026000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110027009','110027009','http://snomed.info/sct','Open pyramidal fracture of maxilla (disorder)','110027009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110028004','110028004','http://snomed.info/sct','Complete open fracture of maxilla (disorder)','110028004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110032005','110032005','http://snomed.info/sct','Simple periorbital laceration (disorder)','110032005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110033000','110033000','http://snomed.info/sct','Contaminated simple periorbital laceration (disorder)','110033000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110034006','110034006','http://snomed.info/sct','Complex periorbital laceration (disorder)','110034006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110035007','110035007','http://snomed.info/sct','Contaminated complex periorbital laceration (disorder)','110035007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110036008','110036008','http://snomed.info/sct','Avulsion of periorbital region (disorder)','110036008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110037004','110037004','http://snomed.info/sct','Simple laceration of cheek (disorder)','110037004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110038009','110038009','http://snomed.info/sct','Contaminated simple laceration of cheek (disorder)','110038009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110039001','110039001','http://snomed.info/sct','Complex laceration of cheek (disorder)','110039001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110040004','110040004','http://snomed.info/sct','Contaminated complex laceration of cheek (disorder)','110040004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110041000','110041000','http://snomed.info/sct','Avulsion of cheek (disorder)','110041000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110042007','110042007','http://snomed.info/sct','Simple laceration of malar region of cheek (disorder)','110042007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110043002','110043002','http://snomed.info/sct','Contaminated simple laceration of malar region of cheek (disorder)','110043002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110044008','110044008','http://snomed.info/sct','Complex laceration of malar region of cheek (disorder)','110044008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110045009','110045009','http://snomed.info/sct','Contaminated complex laceration of malar region of cheek (disorder)','110045009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110047001','110047001','http://snomed.info/sct','Simple laceration of preauricular region of face (disorder)','110047001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110048006','110048006','http://snomed.info/sct','Contaminated simple laceration of preauricular region of face (disorder)','110048006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110049003','110049003','http://snomed.info/sct','Complex laceration of preauricular region of face (disorder)','110049003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110050003','110050003','http://snomed.info/sct','Contaminated complex laceration of preauricular region of face (disorder)','110050003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110051004','110051004','http://snomed.info/sct','Avulsion of preauricular region of face (disorder)','110051004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110052006','110052006','http://snomed.info/sct','Simple laceration of circumoral region of face (disorder)','110052006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110053001','110053001','http://snomed.info/sct','Contaminated simple laceration of circumoral region of face (disorder)','110053001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110054007','110054007','http://snomed.info/sct','Complex laceration of circumoral region of face (disorder)','110054007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110055008','110055008','http://snomed.info/sct','Contaminated complex laceration of circumoral region of face (disorder)','110055008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110056009','110056009','http://snomed.info/sct','Avulsion of circumoral region of face (disorder)','110056009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110057000','110057000','http://snomed.info/sct','Simple laceration of forehead (disorder)','110057000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110058005','110058005','http://snomed.info/sct','Contaminated simple laceration of forehead (disorder)','110058005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110059002','110059002','http://snomed.info/sct','Complex laceration of forehead (disorder)','110059002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110060007','110060007','http://snomed.info/sct','Contaminated complex laceration of forehead (disorder)','110060007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110061006','110061006','http://snomed.info/sct','Avulsion of forehead (disorder)','110061006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110062004','110062004','http://snomed.info/sct','Simple laceration of auricle of ear (disorder)','110062004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110063009','110063009','http://snomed.info/sct','Contaminated simple laceration of auricle of ear (disorder)','110063009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110064003','110064003','http://snomed.info/sct','Complex laceration of auricle of ear (disorder)','110064003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110065002','110065002','http://snomed.info/sct','Contaminated complex laceration of auricle of ear (disorder)','110065002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110066001','110066001','http://snomed.info/sct','Avulsion of auricle of ear (disorder)','110066001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110067005','110067005','http://snomed.info/sct','Simple laceration of scalp (disorder)','110067005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110068000','110068000','http://snomed.info/sct','Contaminated simple laceration of scalp (disorder)','110068000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110069008','110069008','http://snomed.info/sct','Complex laceration of scalp (disorder)','110069008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110070009','110070009','http://snomed.info/sct','Contaminated complex laceration of scalp (disorder)','110070009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110071008','110071008','http://snomed.info/sct','Avulsion of scalp (disorder)','110071008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110072001','110072001','http://snomed.info/sct','Simple laceration of nose (disorder)','110072001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110073006','110073006','http://snomed.info/sct','Contaminated simple laceration of nose (disorder)','110073006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110074000','110074000','http://snomed.info/sct','Complex laceration of nose (disorder)','110074000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110075004','110075004','http://snomed.info/sct','Contaminated complex laceration of nose (disorder)','110075004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110076003','110076003','http://snomed.info/sct','Avulsion of nose (disorder)','110076003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110077007','110077007','http://snomed.info/sct','Simple laceration of chin (disorder)','110077007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110078002','110078002','http://snomed.info/sct','Contaminated simple laceration of chin (disorder)','110078002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110079005','110079005','http://snomed.info/sct','Complex laceration of chin (disorder)','110079005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110080008','110080008','http://snomed.info/sct','Contaminated complex laceration of chin (disorder)','110080008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110081007','110081007','http://snomed.info/sct','Avulsion of chin (disorder)','110081007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110082000','110082000','http://snomed.info/sct','Avulsion of mandible (disorder)','110082000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110083005','110083005','http://snomed.info/sct','Avulsion of maxilla (disorder)','110083005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110084004','110084004','http://snomed.info/sct','Simple laceration of tongue (disorder)','110084004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110085003','110085003','http://snomed.info/sct','Contaminated simple laceration of tongue (disorder)','110085003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110086002','110086002','http://snomed.info/sct','Complex laceration of tongue (disorder)','110086002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110087006','110087006','http://snomed.info/sct','Contaminated complex laceration of tongue (disorder)','110087006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110088001','110088001','http://snomed.info/sct','Avulsion of tongue (disorder)','110088001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110089009','110089009','http://snomed.info/sct','Simple laceration of floor of mouth (disorder)','110089009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110090000','110090000','http://snomed.info/sct','Contaminated simple laceration of floor of mouth (disorder)','110090000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110091001','110091001','http://snomed.info/sct','Complex laceration of floor of mouth (disorder)','110091001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110092008','110092008','http://snomed.info/sct','Contaminated complex laceration of floor of mouth (disorder)','110092008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110093003','110093003','http://snomed.info/sct','Avulsion of floor of mouth (disorder)','110093003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110094009','110094009','http://snomed.info/sct','Simple laceration of labial mucosa (disorder)','110094009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110095005','110095005','http://snomed.info/sct','Contaminated simple laceration of labial mucosa (disorder)','110095005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110096006','110096006','http://snomed.info/sct','Complex laceration of labial mucosa (disorder)','110096006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110097002','110097002','http://snomed.info/sct','Contaminated complex laceration of labial mucosa (disorder)','110097002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110098007','110098007','http://snomed.info/sct','Avulsion of labial mucosa (disorder)','110098007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110099004','110099004','http://snomed.info/sct','Simple laceration of buccal mucosa (disorder)','110099004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110100007','110100007','http://snomed.info/sct','Contaminated simple laceration of buccal mucosa (disorder)','110100007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110101006','110101006','http://snomed.info/sct','Complex laceration of buccal mucosa (disorder)','110101006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110102004','110102004','http://snomed.info/sct','Contaminated complex laceration of buccal mucosa (disorder)','110102004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110103009','110103009','http://snomed.info/sct','Avulsion of buccal mucosa (disorder)','110103009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110104003','110104003','http://snomed.info/sct','Simple laceration of mandibular vestibule (disorder)','110104003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110105002','110105002','http://snomed.info/sct','Contaminated simple laceration of mandibular vestibule (disorder)','110105002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110106001','110106001','http://snomed.info/sct','Complex laceration of mandibular vestibule (disorder)','110106001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110107005','110107005','http://snomed.info/sct','Contaminated complex laceration of mandibular vestibule (disorder)','110107005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110108000','110108000','http://snomed.info/sct','Avulsion of mandibular vestibule (disorder)','110108000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110109008','110109008','http://snomed.info/sct','Simple laceration of maxillary vestibule (disorder)','110109008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110110003','110110003','http://snomed.info/sct','Contaminated simple laceration of maxillary vestibule (disorder)','110110003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110111004','110111004','http://snomed.info/sct','Complex laceration of maxillary vestibule (disorder)','110111004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110112006','110112006','http://snomed.info/sct','Contaminated complex laceration of maxillary vestibule (disorder)','110112006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110113001','110113001','http://snomed.info/sct','Avulsion of maxillary vestibule (disorder)','110113001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110114007','110114007','http://snomed.info/sct','Simple laceration of mandibular attached gingiva (disorder)','110114007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110115008','110115008','http://snomed.info/sct','Contaminated simple laceration of mandibular attached gingiva (disorder)','110115008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110116009','110116009','http://snomed.info/sct','Complex laceration of mandibular attached gingiva (disorder)','110116009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110117000','110117000','http://snomed.info/sct','Contaminated complex laceration of mandibular attached gingiva (disorder)','110117000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110118005','110118005','http://snomed.info/sct','Avulsion of mandibular attached gingiva (disorder)','110118005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110119002','110119002','http://snomed.info/sct','Simple laceration of maxillary attached gingiva (disorder)','110119002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110120008','110120008','http://snomed.info/sct','Contaminated simple laceration of maxillary attached gingiva (disorder)','110120008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110121007','110121007','http://snomed.info/sct','Complex laceration of maxillary attached gingiva (disorder)','110121007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110122000','110122000','http://snomed.info/sct','Contaminated complex laceration of maxillary attached gingiva (disorder)','110122000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110123005','110123005','http://snomed.info/sct','Avulsion of maxillary attached gingiva (disorder)','110123005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110124004','110124004','http://snomed.info/sct','Simple laceration of hard palate (disorder)','110124004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110125003','110125003','http://snomed.info/sct','Contaminated simple laceration of hard palate (disorder)','110125003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110126002','110126002','http://snomed.info/sct','Complex laceration of hard palate (disorder)','110126002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110127006','110127006','http://snomed.info/sct','Contaminated complex laceration of hard palate (disorder)','110127006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110128001','110128001','http://snomed.info/sct','Avulsion of hard palate (disorder)','110128001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110129009','110129009','http://snomed.info/sct','Simple laceration of soft palate (disorder)','110129009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110130004','110130004','http://snomed.info/sct','Contaminated simple laceration of soft palate (disorder)','110130004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110131000','110131000','http://snomed.info/sct','Complex laceration of soft palate (disorder)','110131000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110132007','110132007','http://snomed.info/sct','Contaminated complex laceration of soft palate (disorder)','110132007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110133002','110133002','http://snomed.info/sct','Avulsion of soft palate (disorder)','110133002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110134008','110134008','http://snomed.info/sct','Simple laceration of tonsil (disorder)','110134008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110135009','110135009','http://snomed.info/sct','Contaminated simple laceration of tonsil (disorder)','110135009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110136005','110136005','http://snomed.info/sct','Complex laceration of tonsil (disorder)','110136005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110137001','110137001','http://snomed.info/sct','Contaminated complex laceration of tonsil (disorder)','110137001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110138006','110138006','http://snomed.info/sct','Avulsion of tonsil (disorder)','110138006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110139003','110139003','http://snomed.info/sct','Simple laceration of oropharynx (disorder)','110139003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110140001','110140001','http://snomed.info/sct','Contaminated simple laceration of oropharynx (disorder)','110140001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110141002','110141002','http://snomed.info/sct','Complex laceration of oropharynx (disorder)','110141002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110142009','110142009','http://snomed.info/sct','Contaminated complex laceration of oropharynx (disorder)','110142009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110143004','110143004','http://snomed.info/sct','Avulsion of oropharynx (disorder)','110143004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110151001','110151001','http://snomed.info/sct','Superficial injury of mouth (disorder)','110151001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110152008','110152008','http://snomed.info/sct','Abrasion of buccal mucosa (disorder)','110152008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110153003','110153003','http://snomed.info/sct','Abrasion of maxillary vestibule (disorder)','110153003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110154009','110154009','http://snomed.info/sct','Abrasion of mandibular vestibule (disorder)','110154009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110155005','110155005','http://snomed.info/sct','Abrasion of maxillary attached gingiva (disorder)','110155005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110156006','110156006','http://snomed.info/sct','Abrasion of mandibular attached gingiva (disorder)','110156006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110157002','110157002','http://snomed.info/sct','Abrasion of floor of mouth (disorder)','110157002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110158007','110158007','http://snomed.info/sct','Superficial injury of palate (disorder)','110158007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110159004','110159004','http://snomed.info/sct','Abrasion of hard palate (disorder)','110159004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110160009','110160009','http://snomed.info/sct','Abrasion of soft palate (disorder)','110160009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110161008','110161008','http://snomed.info/sct','Abrasion of tonsil (disorder)','110161008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110162001','110162001','http://snomed.info/sct','Abrasion of oropharynx (disorder)','110162001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110163006','110163006','http://snomed.info/sct','Abrasion of tongue (disorder)','110163006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110164000','110164000','http://snomed.info/sct','Abrasion of skin of forehead (disorder)','110164000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110165004','110165004','http://snomed.info/sct','Abrasion of skin of periorbital region of face (disorder)','110165004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110166003','110166003','http://snomed.info/sct','Abrasion of skin of zygomatic region of face (disorder)','110166003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110167007','110167007','http://snomed.info/sct','Abrasion of skin of circumoral region of face (disorder)','110167007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110168002','110168002','http://snomed.info/sct','Abrasion of skin of chin (disorder)','110168002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110169005','110169005','http://snomed.info/sct','Abrasion of skin of preauricular region of face (disorder)','110169005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110170006','110170006','http://snomed.info/sct','Burn of periorbital region (disorder)','110170006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110171005','110171005','http://snomed.info/sct','Epidermal burn of periorbital region (disorder)','110171005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110172003','110172003','http://snomed.info/sct','Partial thickness burn of periorbital region (disorder)','110172003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110173008','110173008','http://snomed.info/sct','Full thickness burn of periorbital region (disorder)','110173008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110174002','110174002','http://snomed.info/sct','Burn of skin of preauricular region (disorder)','110174002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110175001','110175001','http://snomed.info/sct','Epidermal burn of preauricular region of face (disorder)','110175001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110176000','110176000','http://snomed.info/sct','Partial thickness burn of preauricular region of face (disorder)','110176000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110177009','110177009','http://snomed.info/sct','Full thickness burn of preauricular region of face (disorder)','110177009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110178004','110178004','http://snomed.info/sct','Burn of circumoral region (disorder)','110178004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110179007','110179007','http://snomed.info/sct','Epidermal burn of perioral region (disorder)','110179007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110180005','110180005','http://snomed.info/sct','Partial thickness burn of circumoral region (disorder)','110180005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110181009','110181009','http://snomed.info/sct','Full thickness burn of circumoral region (disorder)','110181009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110182002','110182002','http://snomed.info/sct','Burn of forehead (disorder)','110182002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110183007','110183007','http://snomed.info/sct','Epidermal burn of forehead (disorder)','110183007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110184001','110184001','http://snomed.info/sct','Partial thickness burn of forehead (disorder)','110184001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110185000','110185000','http://snomed.info/sct','Full thickness burn of forehead (disorder)','110185000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110186004','110186004','http://snomed.info/sct','Burn of cheek (disorder)','110186004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110187008','110187008','http://snomed.info/sct','Epidermal burn of cheek (disorder)','110187008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110188003','110188003','http://snomed.info/sct','Partial thickness burn of cheek (disorder)','110188003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110189006','110189006','http://snomed.info/sct','Full thickness burn of cheek (disorder)','110189006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110190002','110190002','http://snomed.info/sct','Burn of buccal mucosa (disorder)','110190002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110191003','110191003','http://snomed.info/sct','Burn erythema of buccal mucosa (disorder)','110191003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110192005','110192005','http://snomed.info/sct','Second degree burn of buccal mucosa (disorder)','110192005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110193000','110193000','http://snomed.info/sct','Full thickness burn of buccal mucosa (disorder)','110193000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110194006','110194006','http://snomed.info/sct','Burn of labial mucosa (disorder)','110194006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110195007','110195007','http://snomed.info/sct','Burn erythema of labial mucosa (disorder)','110195007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110196008','110196008','http://snomed.info/sct','Second degree burn of labial mucosa (disorder)','110196008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110197004','110197004','http://snomed.info/sct','Third degree burn of labial mucosa (disorder)','110197004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110198009','110198009','http://snomed.info/sct','Burn of maxillary vestibule (disorder)','110198009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110199001','110199001','http://snomed.info/sct','Burn erythema of maxillary vestibule (disorder)','110199001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110200003','110200003','http://snomed.info/sct','Second degree burn of maxillary vestibule (disorder)','110200003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110201004','110201004','http://snomed.info/sct','Third degree burn of maxillary vestibule (disorder)','110201004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110202006','110202006','http://snomed.info/sct','Burn of mandibular vestibule (disorder)','110202006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110203001','110203001','http://snomed.info/sct','Burn erythema of mandibular vestibule (disorder)','110203001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110204007','110204007','http://snomed.info/sct','Second degree burn of mandibular vestibule (disorder)','110204007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110205008','110205008','http://snomed.info/sct','Third degree burn of mandibular vestibule (disorder)','110205008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110206009','110206009','http://snomed.info/sct','Burn of maxillary attached gingiva (disorder)','110206009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110207000','110207000','http://snomed.info/sct','Burn erythema of maxillary attached gingiva (disorder)','110207000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110208005','110208005','http://snomed.info/sct','Second degree burn of maxillary attached gingiva (disorder)','110208005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110209002','110209002','http://snomed.info/sct','Third degree burn of maxillary attached gingiva (disorder)','110209002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110210007','110210007','http://snomed.info/sct','Burn of mandibular attached gingiva (disorder)','110210007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110211006','110211006','http://snomed.info/sct','Burn erythema of mandibular attached gingiva (disorder)','110211006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110212004','110212004','http://snomed.info/sct','Second degree burn of mandibular attached gingiva (disorder)','110212004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110213009','110213009','http://snomed.info/sct','Third degree burn of mandibular attached gingiva (disorder)','110213009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110214003','110214003','http://snomed.info/sct','Burn of floor of mouth (disorder)','110214003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110215002','110215002','http://snomed.info/sct','Burn erythema of floor of mouth (disorder)','110215002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110216001','110216001','http://snomed.info/sct','Second degree burn of floor of mouth (disorder)','110216001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110217005','110217005','http://snomed.info/sct','Third degree burn of floor of mouth (disorder)','110217005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110218000','110218000','http://snomed.info/sct','Burn of hard palate (disorder)','110218000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110219008','110219008','http://snomed.info/sct','Burn erythema of hard palate (disorder)','110219008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110220002','110220002','http://snomed.info/sct','Second degree burn of hard palate (disorder)','110220002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110221003','110221003','http://snomed.info/sct','Third degree burn of hard palate (disorder)','110221003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110222005','110222005','http://snomed.info/sct','Burn of soft palate (disorder)','110222005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110223000','110223000','http://snomed.info/sct','Burn erythema of soft palate (disorder)','110223000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110224006','110224006','http://snomed.info/sct','Second degree burn of soft palate (disorder)','110224006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110225007','110225007','http://snomed.info/sct','Third degree burn of soft palate (disorder)','110225007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110226008','110226008','http://snomed.info/sct','Burn of oropharynx (disorder)','110226008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110227004','110227004','http://snomed.info/sct','Burn erythema of oropharynx (disorder)','110227004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110228009','110228009','http://snomed.info/sct','Second degree burn of oropharynx (disorder)','110228009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110229001','110229001','http://snomed.info/sct','Third degree burn of oropharynx (disorder)','110229001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110230006','110230006','http://snomed.info/sct','Burn of tonsillar area (disorder)','110230006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110231005','110231005','http://snomed.info/sct','Burn erythema of tonsillar area (disorder)','110231005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110232003','110232003','http://snomed.info/sct','Second degree burn of tonsillar area (disorder)','110232003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110233008','110233008','http://snomed.info/sct','Third degree burn of tonsillar area (disorder)','110233008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110234002','110234002','http://snomed.info/sct','Burn erythema of tongue (disorder)','110234002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110235001','110235001','http://snomed.info/sct','Second degree burn of tongue (disorder)','110235001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110236000','110236000','http://snomed.info/sct','Full thickness burn of tongue (disorder)','110236000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110237009','110237009','http://snomed.info/sct','Contusion of condylar process of mandible (disorder)','110237009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110238004','110238004','http://snomed.info/sct','Contusion of subcondylar region of mandible (disorder)','110238004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110239007','110239007','http://snomed.info/sct','Contusion of coronoid process of mandible (disorder)','110239007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110240009','110240009','http://snomed.info/sct','Contusion of ramus of mandible (disorder)','110240009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110241008','110241008','http://snomed.info/sct','Contusion of symphysis of body of mandible (disorder)','110241008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110242001','110242001','http://snomed.info/sct','Contusion of alveolar border of body of mandible (disorder)','110242001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110243006','110243006','http://snomed.info/sct','Contusion of maxilla (disorder)','110243006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110244000','110244000','http://snomed.info/sct','Contusion of forehead (disorder)','110244000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110245004','110245004','http://snomed.info/sct','Contusion of auricle of ear (disorder)','110245004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110246003','110246003','http://snomed.info/sct','Contusion of preauricular region of face (disorder)','110246003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110247007','110247007','http://snomed.info/sct','Contusion of malar region of face (disorder)','110247007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110248002','110248002','http://snomed.info/sct','Contusion of circumoral region of face (disorder)','110248002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110249005','110249005','http://snomed.info/sct','Contusion of chin (disorder)','110249005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110250005','110250005','http://snomed.info/sct','Contusion of mouth (disorder)','110250005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110251009','110251009','http://snomed.info/sct','Contusion of maxillary vestibule (disorder)','110251009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110252002','110252002','http://snomed.info/sct','Contusion of mandibular vestibule (disorder)','110252002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110253007','110253007','http://snomed.info/sct','Contusion of maxillary attached gingiva (disorder)','110253007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110254001','110254001','http://snomed.info/sct','Contusion of mandibular attached gingiva (disorder)','110254001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110255000','110255000','http://snomed.info/sct','Contusion of floor of mouth (disorder)','110255000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110256004','110256004','http://snomed.info/sct','Contusion of tongue (disorder)','110256004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110257008','110257008','http://snomed.info/sct','Contusion of buccal mucosa (disorder)','110257008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110258003','110258003','http://snomed.info/sct','Contusion of soft palate (disorder)','110258003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110259006','110259006','http://snomed.info/sct','Contusion of hard palate (disorder)','110259006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110260001','110260001','http://snomed.info/sct','Contusion of tonsil (disorder)','110260001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110261002','110261002','http://snomed.info/sct','Contusion of oropharynx (disorder)','110261002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110262009','110262009','http://snomed.info/sct','Contusion of periorbital region (disorder)','110262009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_111593004','111593004','http://snomed.info/sct','Intracranial hemorrhage co-occurrent and due to closed fracture of vault of skull (disorder)','111593004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_111597003','111597003','http://snomed.info/sct','Intracranial hemorrhage co-occurrent and due to open fracture of vault of skull (disorder)','111597003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_111601003','111601003','http://snomed.info/sct','Intracranial hemorrhage co-occurrent and due to closed fracture of base of skull (disorder)','111601003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_111603000','111603000','http://snomed.info/sct','Intracranial injury co-occurrent and due to closed fracture of base of skull (disorder)','111603000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_111605007','111605007','http://snomed.info/sct','Intracranial hemorrhage co-occurrent and due to open fracture of base of skull (disorder)','111605007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_111607004','111607004','http://snomed.info/sct','Open fracture of base of skull with intracranial injury (disorder)','111607004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_111609001','111609001','http://snomed.info/sct','Open fracture of facial bones (disorder)','111609001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_111611005','111611005','http://snomed.info/sct','Intracranial hemorrhage co-occurrent and due to closed skull fracture (disorder)','111611005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_111613008','111613008','http://snomed.info/sct','Intracranial injury co-occurrent and due to closed skull fracture (disorder)','111613008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_111615001','111615001','http://snomed.info/sct','Open skull fracture with intracranial hemorrhage (disorder)','111615001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_111617009','111617009','http://snomed.info/sct','Intracranial injury co-occurrent and due to open skull fracture (disorder)','111617009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_111681000','111681000','http://snomed.info/sct','Extradural hemorrhage following injury with open intracranial wound AND loss of consciousness (disorder)','111681000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_111689003','111689003','http://snomed.info/sct','Wound of ocular adnexa (disorder)','111689003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_111703006','111703006','http://snomed.info/sct','Abrasion and/or friction burn of face with infection (disorder)','111703006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_11303761000119101','11303761000119101','http://snomed.info/sct','Closed fracture of orbital floor (disorder)','11303761000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_11304381000119108','11304381000119108','http://snomed.info/sct','Closed fracture of temporal bone (disorder)','11304381000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_11304481000119100','11304481000119100','http://snomed.info/sct','Open fracture of frontal sinus (disorder)','11304481000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_11304561000119105','11304561000119105','http://snomed.info/sct','Open fracture of naso orbital ethmoid (disorder)','11304561000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_11304601000119105','11304601000119105','http://snomed.info/sct','Open fracture of medial wall of orbit (disorder)','11304601000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_11304641000119107','11304641000119107','http://snomed.info/sct','Open fracture of orbit (disorder)','11304641000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_11313601000119105','11313601000119105','http://snomed.info/sct','Closed fracture of occipital bone (disorder)','11313601000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_11313641000119107','11313641000119107','http://snomed.info/sct','Open fracture of occipital bone (disorder)','11313641000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_11313681000119102','11313681000119102','http://snomed.info/sct','Open fracture of temporal bone (disorder)','11313681000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_11315201000119108','11315201000119108','http://snomed.info/sct','Pathological fracture of mandible (disorder)','11315201000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_11315241000119105','11315241000119105','http://snomed.info/sct','Pathological fracture of maxilla (disorder)','11315241000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_11315361000119100','11315361000119100','http://snomed.info/sct','Open fracture of tooth (disorder)','11315361000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_11386000','11386000','http://snomed.info/sct','Open wound of ear (disorder)','11386000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_11406003','11406003','http://snomed.info/sct','Partial thickness burn of nose (disorder)','11406003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_1142096002','1142096002','http://snomed.info/sct','Laceration of scalp due to birth trauma (disorder)','1142096002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_1144354008','1144354008','http://snomed.info/sct','Oral mucous membrane inflammation due to denture trauma (disorder)','1144354008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_1155718008','1155718008','http://snomed.info/sct','Laceration of frenulum labii superioris (disorder)','1155718008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_11843391000119101','11843391000119101','http://snomed.info/sct','Primary blast injury of right ear (disorder)','11843391000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_11843431000119106','11843431000119106','http://snomed.info/sct','Primary blast injury of left ear (disorder)','11843431000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_11843711000119106','11843711000119106','http://snomed.info/sct','Abrasion of skin of right ear (disorder)','11843711000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_11843751000119107','11843751000119107','http://snomed.info/sct','Abrasion of skin of left ear (disorder)','11843751000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_11843951000119105','11843951000119105','http://snomed.info/sct','Infected abrasion of skin of right ear (disorder)','11843951000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_11843991000119100','11843991000119100','http://snomed.info/sct','Infected abrasion of skin of left ear (disorder)','11843991000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_11844031000119101','11844031000119101','http://snomed.info/sct','Contusion of right ear (disorder)','11844031000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_11844071000119103','11844071000119103','http://snomed.info/sct','Contusion of left ear (disorder)','11844071000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_11844191000119101','11844191000119101','http://snomed.info/sct','Injury of right inner ear (disorder)','11844191000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_11844231000119105','11844231000119105','http://snomed.info/sct','Injury of left inner ear (disorder)','11844231000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_11844271000119108','11844271000119108','http://snomed.info/sct','Injury of right ear (disorder)','11844271000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_11844311000119108','11844311000119108','http://snomed.info/sct','Injury of left ear (disorder)','11844311000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_11847121000119106','11847121000119106','http://snomed.info/sct','Laceration of muscle of face (disorder)','11847121000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_11847211000119109','11847211000119109','http://snomed.info/sct','Superficial injury of lip (disorder)','11847211000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_11847251000119105','11847251000119105','http://snomed.info/sct','Abrasion of skin of lip (disorder)','11847251000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_11847571000119103','11847571000119103','http://snomed.info/sct','Superficial injury of tongue (disorder)','11847571000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_11847781000119106','11847781000119106','http://snomed.info/sct','Infected abrasion of oral mucosa (disorder)','11847781000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_11848461000119109','11848461000119109','http://snomed.info/sct','Abrasion of skin of right eyelid (disorder)','11848461000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_11848501000119109','11848501000119109','http://snomed.info/sct','Infected abrasion of skin of right eyelid (disorder)','11848501000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_11848541000119106','11848541000119106','http://snomed.info/sct','Abrasion of skin of left eyelid (disorder)','11848541000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_11848581000119101','11848581000119101','http://snomed.info/sct','Infected abrasion of skin of left eyelid (disorder)','11848581000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_11848621000119101','11848621000119101','http://snomed.info/sct','Contusion of right eyelid (disorder)','11848621000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_11848661000119106','11848661000119106','http://snomed.info/sct','Contusion of left eyelid (disorder)','11848661000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_11848781000119107','11848781000119107','http://snomed.info/sct','Superficial injury of right eyelid (disorder)','11848781000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_11848821000119102','11848821000119102','http://snomed.info/sct','Superficial injury of left eyelid (disorder)','11848821000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_11855251000119102','11855251000119102','http://snomed.info/sct','Traumatic blister of tongue (disorder)','11855251000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_119261000119102','119261000119102','http://snomed.info/sct','Fractured skull of neonate due to birth trauma (disorder)','119261000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_11997031000119105','11997031000119105','http://snomed.info/sct','Partial thickness burn of right ear (disorder)','11997031000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_12065591000119100','12065591000119100','http://snomed.info/sct','Burn of left ear (disorder)','12065591000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_12065631000119100','12065631000119100','http://snomed.info/sct','Burn of right ear (disorder)','12065631000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_12081251000119109','12081251000119109','http://snomed.info/sct','Chemical burn of left conjunctival sac (disorder)','12081251000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_12081291000119104','12081291000119104','http://snomed.info/sct','Chemical burn of right conjunctival sac (disorder)','12081291000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_12081411000119109','12081411000119109','http://snomed.info/sct','Chemical burn of left cornea (disorder)','12081411000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_12081451000119105','12081451000119105','http://snomed.info/sct','Chemical burn of right cornea (disorder)','12081451000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_12081491000119100','12081491000119100','http://snomed.info/sct','Burn of cornea of left eye (disorder)','12081491000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_12081531000119100','12081531000119100','http://snomed.info/sct','Burn of cornea of right eye (disorder)','12081531000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_12081651000119107','12081651000119107','http://snomed.info/sct','Burn of conjunctival sac of left eye (disorder)','12081651000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_12081691000119102','12081691000119102','http://snomed.info/sct','Burn of conjunctival sac of right eye (disorder)','12081691000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_12081811000119107','12081811000119107','http://snomed.info/sct','Burn of left eyelid (disorder)','12081811000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_12081851000119108','12081851000119108','http://snomed.info/sct','Burn of right eyelid (disorder)','12081851000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_12081931000119106','12081931000119106','http://snomed.info/sct','Burn of left eye region (disorder)','12081931000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_12081971000119109','12081971000119109','http://snomed.info/sct','Burn of right eye region (disorder)','12081971000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_12108141000119104','12108141000119104','http://snomed.info/sct','Chemical burn of mouth (disorder)','12108141000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_12113681000119106','12113681000119106','http://snomed.info/sct','Chemical burn of face (disorder)','12113681000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_12113761000119105','12113761000119105','http://snomed.info/sct','Chemical burn of forehead (disorder)','12113761000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_12114081000119101','12114081000119101','http://snomed.info/sct','Chemical burn of left eye (disorder)','12114081000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_12115361000119108','12115361000119108','http://snomed.info/sct','Chemical burn of right eye (disorder)','12115361000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_12193006','12193006','http://snomed.info/sct','Avulsion of eye (disorder)','12193006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_12202581000119103','12202581000119103','http://snomed.info/sct','Partial thickness burn of left ear (disorder)','12202581000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_12279008','12279008','http://snomed.info/sct','Open wound of cochlea without complication (disorder)','12279008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_12403101000119108','12403101000119108','http://snomed.info/sct','Penetrating wound of right eye caused by foreign body (disorder)','12403101000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_125593007','125593007','http://snomed.info/sct','Injury of face (disorder)','125593007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_125668004','125668004','http://snomed.info/sct','Contusion of face (disorder)','125668004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_125687005','125687005','http://snomed.info/sct','Contusion of ocular adnexa (disorder)','125687005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_126941005','126941005','http://snomed.info/sct','Subdural intracranial hemorrhage due to birth trauma (disorder)','126941005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_127276009','127276009','http://snomed.info/sct','Injury of head with rhinorrhagia (disorder)','127276009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_127280004','127280004','http://snomed.info/sct','Fracture of basilar portion of occipital bone (disorder)','127280004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_127281000','127281000','http://snomed.info/sct','Fracture of occipital condyle (disorder)','127281000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_127282007','127282007','http://snomed.info/sct','Fracture of clivus of occipital bone (disorder)','127282007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_127283002','127283002','http://snomed.info/sct','Fracture of ethmoid bone (disorder)','127283002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_127284008','127284008','http://snomed.info/sct','Fracture of orbital plate of ethmoid bone (disorder)','127284008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_127285009','127285009','http://snomed.info/sct','Fracture of lacrimal bone (disorder)','127285009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_127294003','127294003','http://snomed.info/sct','Traumatic or nontraumatic brain injury (disorder)','127294003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_127296001','127296001','http://snomed.info/sct','Intracranial injury (disorder)','127296001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_127297005','127297005','http://snomed.info/sct','Intracranial injury with loss of consciousness (disorder)','127297005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_127308007','127308007','http://snomed.info/sct','Intracranial hemorrhage following injury with loss of consciousness (disorder)','127308007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_127311008','127311008','http://snomed.info/sct','Intracranial hemorrhage following injury with prolonged loss of consciousness AND return to pre-existing conscious level (disorder)','127311008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_127312001','127312001','http://snomed.info/sct','Intracranial hemorrhage following injury with prolonged loss of consciousness without return to pre-existing conscious level (disorder)','127312001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_12779007','12779007','http://snomed.info/sct','Traumatic ulceration of tongue (disorder)','12779007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_128515003','128515003','http://snomed.info/sct','Injury of ocular adnexa (disorder)','128515003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_1287534002','1287534002','http://snomed.info/sct','Abrasion of skin of head (disorder)','1287534002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_13159004','13159004','http://snomed.info/sct','Open wound of auditory canal with complication (disorder)','13159004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_13289004','13289004','http://snomed.info/sct','Intracranial hemorrhage following injury with open intracranial wound AND loss of consciousness (disorder)','13289004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_135874008','135874008','http://snomed.info/sct','Bite to own tongue (disorder)','135874008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_13616008','13616008','http://snomed.info/sct','Superficial injury of eye AND/OR adnexa (disorder)','13616008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_14997005','14997005','http://snomed.info/sct','Laceration of skin of eyelid AND periocular area (disorder)','14997005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_157176002','157176002','http://snomed.info/sct','Fracture of bone of face (disorder)','157176002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_15739441000119101','15739441000119101','http://snomed.info/sct','Glaucoma of right eye due to trauma (disorder)','15739441000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_15739481000119106','15739481000119106','http://snomed.info/sct','Glaucoma of left eye due to trauma (disorder)','15739481000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_15741007','15741007','http://snomed.info/sct','Closed fracture of palate (disorder)','15741007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_15918061000119103','15918061000119103','http://snomed.info/sct','Closed fracture of alveolar border of left mandible (disorder)','15918061000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_15918101000119100','15918101000119100','http://snomed.info/sct','Closed fracture of alveolar border of right mandible (disorder)','15918101000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_15918221000119100','15918221000119100','http://snomed.info/sct','Closed fracture of alveolar ridge of left maxilla (disorder)','15918221000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_15918261000119105','15918261000119105','http://snomed.info/sct','Closed fracture of alveolar ridge of right maxilla (disorder)','15918261000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_15918301000119102','15918301000119102','http://snomed.info/sct','Open fracture of alveolar ridge of left maxilla (disorder)','15918301000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_15918341000119100','15918341000119100','http://snomed.info/sct','Open fracture of alveolar ridge of right maxilla (disorder)','15918341000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_16374002','16374002','http://snomed.info/sct','Open wound of multiple sites of face without complication (disorder)','16374002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_16526801000119108','16526801000119108','http://snomed.info/sct','Laceration of right eyebrow (disorder)','16526801000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_16527081000119105','16527081000119105','http://snomed.info/sct','Laceration of left eyebrow (disorder)','16527081000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_16561521000119103','16561521000119103','http://snomed.info/sct','Closed fracture of left zygomatic bone (disorder)','16561521000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_16561561000119108','16561561000119108','http://snomed.info/sct','Closed fracture of right zygomatic bone (disorder)','16561561000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_16664831000119108','16664831000119108','http://snomed.info/sct','Open fracture of left zygomatic arch (disorder)','16664831000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_16665071000119101','16665071000119101','http://snomed.info/sct','Open fracture of right zygomatic arch (disorder)','16665071000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_16665311000119106','16665311000119106','http://snomed.info/sct','Open fracture of left maxilla (disorder)','16665311000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_16665351000119107','16665351000119107','http://snomed.info/sct','Open fracture of right maxilla (disorder)','16665351000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_16665391000119102','16665391000119102','http://snomed.info/sct','Open fracture of medial wall of right orbit (disorder)','16665391000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_16665431000119107','16665431000119107','http://snomed.info/sct','Open fracture of medial wall of left orbit (disorder)','16665431000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_16665471000119105','16665471000119105','http://snomed.info/sct','Open fracture of left orbit (disorder)','16665471000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_16665511000119101','16665511000119101','http://snomed.info/sct','Open blow-out fracture of right orbital floor (disorder)','16665511000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_16665751000119108','16665751000119108','http://snomed.info/sct','Open blow-out fracture of left orbital floor (disorder)','16665751000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_16665991000119101','16665991000119101','http://snomed.info/sct','Open fracture of right orbit (disorder)','16665991000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_16666111000119103','16666111000119103','http://snomed.info/sct','Open fracture of condylar process of right mandible (disorder)','16666111000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_16666351000119104','16666351000119104','http://snomed.info/sct','Open fracture of condylar process of left mandible (disorder)','16666351000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_16666591000119101','16666591000119101','http://snomed.info/sct','Open fracture of body of right half of mandible (disorder)','16666591000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_16666831000119102','16666831000119102','http://snomed.info/sct','Open fracture of body of left half of mandible (disorder)','16666831000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_16667071000119108','16667071000119108','http://snomed.info/sct','Open fracture of right angle of mandible (disorder)','16667071000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_16667111000119101','16667111000119101','http://snomed.info/sct','Open fracture of left angle of mandible (disorder)','16667111000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_16667311000119103','16667311000119103','http://snomed.info/sct','Open fracture of left half of mandible (disorder)','16667311000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_16667351000119102','16667351000119102','http://snomed.info/sct','Open fracture of right half of mandible (disorder)','16667351000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_16667391000119107','16667391000119107','http://snomed.info/sct','Closed fracture of left maxilla (disorder)','16667391000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_16667431000119102','16667431000119102','http://snomed.info/sct','Closed fracture of right maxilla (disorder)','16667431000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_16667471000119104','16667471000119104','http://snomed.info/sct','Closed fracture of right zygomatic arch (disorder)','16667471000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_16667711000119102','16667711000119102','http://snomed.info/sct','Closed fracture of left zygomatic arch (disorder)','16667711000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_16667951000119103','16667951000119103','http://snomed.info/sct','Closed fracture of orbital portion of right zygomatic bone (disorder)','16667951000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_16668191000119106','16668191000119106','http://snomed.info/sct','Closed fracture of orbital portion of left zygomatic bone (disorder)','16668191000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_16668431000119103','16668431000119103','http://snomed.info/sct','Closed fracture of right zygomatic tripod (disorder)','16668431000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_16668671000119102','16668671000119102','http://snomed.info/sct','Closed fracture of left zygomatic tripod (disorder)','16668671000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_16668911000119100','16668911000119100','http://snomed.info/sct','Closed fracture of right naso orbital ethmoid (disorder)','16668911000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_16668951000119104','16668951000119104','http://snomed.info/sct','Closed fracture of left naso orbital ethmoid (disorder)','16668951000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_16668991000119109','16668991000119109','http://snomed.info/sct','Closed fracture of medial wall of right orbit (disorder)','16668991000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_16669031000119102','16669031000119102','http://snomed.info/sct','Closed fracture of medial wall of left orbit (disorder)','16669031000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_16669071000119104','16669071000119104','http://snomed.info/sct','Closed fracture of left orbit (disorder)','16669071000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_16669111000119106','16669111000119106','http://snomed.info/sct','Closed fracture of left orbital floor (disorder)','16669111000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_16669351000119105','16669351000119105','http://snomed.info/sct','Closed fracture of right orbital floor (disorder)','16669351000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_16669591000119108','16669591000119108','http://snomed.info/sct','Closed fracture of right orbit (disorder)','16669591000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_16669631000119108','16669631000119108','http://snomed.info/sct','Closed fracture of condylar process of left mandible (disorder)','16669631000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_16669871000119105','16669871000119105','http://snomed.info/sct','Closed subcondylar fracture of right mandible (disorder)','16669871000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_16669911000119108','16669911000119108','http://snomed.info/sct','Closed subcondylar fracture of left mandible (disorder)','16669911000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_16669951000119109','16669951000119109','http://snomed.info/sct','Closed fracture of condylar process of right mandible (disorder)','16669951000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_16670191000119104','16670191000119104','http://snomed.info/sct','Closed fracture of coronoid process of right mandible (disorder)','16670191000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_16670231000119108','16670231000119108','http://snomed.info/sct','Closed fracture of coronoid process of left mandible (disorder)','16670231000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_16670271000119106','16670271000119106','http://snomed.info/sct','Closed fracture of ramus of left mandible (disorder)','16670271000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_16670311000119106','16670311000119106','http://snomed.info/sct','Closed fracture of ramus of right mandible (disorder)','16670311000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_16670351000119107','16670351000119107','http://snomed.info/sct','Closed fracture of body of left mandible (disorder)','16670351000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_16670591000119105','16670591000119105','http://snomed.info/sct','Closed fracture of body of right mandible (disorder)','16670591000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_16670831000119109','16670831000119109','http://snomed.info/sct','Closed fracture of angle of right mandible (disorder)','16670831000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_16671071000119105','16671071000119105','http://snomed.info/sct','Closed fracture of angle of left mandible (disorder)','16671071000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_16671311000119100','16671311000119100','http://snomed.info/sct','Closed fracture of right mandible (disorder)','16671311000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_16671351000119104','16671351000119104','http://snomed.info/sct','Closed fracture of left mandible (disorder)','16671351000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_16671391000119109','16671391000119109','http://snomed.info/sct','Closed blow-out fracture of right orbital floor (disorder)','16671391000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_16671631000119101','16671631000119101','http://snomed.info/sct','Closed blow-out fracture of left orbital floor (disorder)','16671631000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_16674131000119106','16674131000119106','http://snomed.info/sct','Pathological fracture of left half of mandible (disorder)','16674131000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_16674411000119107','16674411000119107','http://snomed.info/sct','Pathological fracture of right half of mandible (disorder)','16674411000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_16674691000119100','16674691000119100','http://snomed.info/sct','Open fracture of right orbital floor (disorder)','16674691000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_16674931000119109','16674931000119109','http://snomed.info/sct','Open fracture of left orbital floor (disorder)','16674931000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_16694261000119102','16694261000119102','http://snomed.info/sct','Closed fracture of right half of occipital bone (disorder)','16694261000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_16695501000119102','16695501000119102','http://snomed.info/sct','Closed fracture of left half of occipital bone (disorder)','16695501000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_16709301000119102','16709301000119102','http://snomed.info/sct','Closed fracture of left basilar portion of occipital bone (disorder)','16709301000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_16709541000119108','16709541000119108','http://snomed.info/sct','Closed fracture of right basilar portion of occipital bone (disorder)','16709541000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_16998003','16998003','http://snomed.info/sct','Open wound of ocular adnexa (disorder)','16998003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_172276003','172276003','http://snomed.info/sct','Avulsion of nerve of eyelid (disorder)','172276003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_1739001','1739001','http://snomed.info/sct','Fracture of occipital bone (disorder)','1739001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_17562007','17562007','http://snomed.info/sct','Deep third degree burn of ear (disorder)','17562007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_18890001000004102','18890001000004102','http://snomed.info/sct','Facial fracture due to fall (disorder)','18890001000004102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_19345005','19345005','http://snomed.info/sct','Avulsion of lip (disorder)','19345005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_193598007','193598007','http://snomed.info/sct','Partial resolved traumatic cataract (disorder)','193598007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_19491003','19491003','http://snomed.info/sct','Injury of nose (disorder)','19491003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_201279004','201279004','http://snomed.info/sct','Chloasma traumaticum (disorder)','201279004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_20158009','20158009','http://snomed.info/sct','Open fracture of ramus of mandible (disorder)','20158009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_20509003','20509003','http://snomed.info/sct','Open wound of lip with complication (disorder)','20509003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_206188000','206188000','http://snomed.info/sct','Subdural and cerebral hemorrhage due to birth trauma (disorder)','206188000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_206191000','206191000','http://snomed.info/sct','Local intracranial subdural hematoma due to birth trauma (disorder)','206191000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_206192007','206192007','http://snomed.info/sct','Tentorial tear due to birth trauma (disorder)','206192007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_206200000','206200000','http://snomed.info/sct','Cephalhematoma due to birth trauma (disorder)','206200000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_206202008','206202008','http://snomed.info/sct','Massive epicranial subaponeurotic hemorrhage due to birth trauma (disorder)','206202008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_206203003','206203003','http://snomed.info/sct','Abrasion of scalp due to birth trauma (disorder)','206203003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_206204009','206204009','http://snomed.info/sct','Scalp bruising due to birth trauma (disorder)','206204009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_206215004','206215004','http://snomed.info/sct','Fracture of skull due to birth trauma (disorder)','206215004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_206241005','206241005','http://snomed.info/sct','Eye damage due to birth trauma (disorder)','206241005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_206248004','206248004','http://snomed.info/sct','Traumatic glaucoma due to birth trauma (disorder)','206248004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_206249007','206249007','http://snomed.info/sct','Subconjunctival hemorrhage due to birth trauma (disorder)','206249007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_206395003','206395003','http://snomed.info/sct','Intraventricular (nontraumatic) hemorrhage, grade 1, of fetus and newborn (disorder)','206395003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_206396002','206396002','http://snomed.info/sct','Intraventricular (nontraumatic) hemorrhage, grade 2, of fetus and newborn (disorder)','206396002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_206397006','206397006','http://snomed.info/sct','Intraventricular (nontraumatic) hemorrhage, grade 3, of fetus and newborn (disorder)','206397006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_207687004','207687004','http://snomed.info/sct','Intracranial injury co-occurrent and due to closed fracture of vault of skull (disorder)','207687004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_207705002','207705002','http://snomed.info/sct','Intracranial injury co-occurrent and due to open fracture vault of skull (disorder)','207705002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_207707005','207707005','http://snomed.info/sct','Open fracture of vault of skull with intracranial injury, with no loss of consciousness (disorder)','207707005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_207745006','207745006','http://snomed.info/sct','Open fracture of base of skull with intracranial injury, with no loss of consciousness (disorder)','207745006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_207753003','207753003','http://snomed.info/sct','Fracture of mandible, closed (disorder)','207753003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_207755005','207755005','http://snomed.info/sct','Closed fracture of condylar process of mandible (disorder)','207755005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_207757002','207757002','http://snomed.info/sct','Closed fracture of coronoid process of mandible (disorder)','207757002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_207759004','207759004','http://snomed.info/sct','Closed fracture of mandible, angle of jaw (disorder)','207759004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_207760009','207760009','http://snomed.info/sct','Closed fracture of symphysis of body of mandible (disorder)','207760009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_207763006','207763006','http://snomed.info/sct','Closed fracture of multiple sites of mandible (disorder)','207763006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_207767007','207767007','http://snomed.info/sct','Open fracture of mandible, condylar process (disorder)','207767007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_207768002','207768002','http://snomed.info/sct','Open subcondylar fracture of mandible (disorder)','207768002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_207769005','207769005','http://snomed.info/sct','Open fracture of coronoid process of mandible (disorder)','207769005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_207771005','207771005','http://snomed.info/sct','Open fracture of mandible, angle of jaw (disorder)','207771005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_207776000','207776000','http://snomed.info/sct','Open fracture of multiple sites of mandible (disorder)','207776000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_207782002','207782002','http://snomed.info/sct','Open fracture of maxilla (disorder)','207782002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_207785000','207785000','http://snomed.info/sct','Fracture of skull and facial bones (disorder)','207785000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_207787008','207787008','http://snomed.info/sct','Fracture of orbital floor (disorder)','207787008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_207788003','207788003','http://snomed.info/sct','Fracture of malar and maxillary bones (disorder)','207788003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_207794006','207794006','http://snomed.info/sct','Fracture of alveolus, closed (disorder)','207794006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_207798009','207798009','http://snomed.info/sct','Fracture of alveolus, open (disorder)','207798009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_207800002','207800002','http://snomed.info/sct','Fracture of palate, open (disorder)','207800002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_207881000','207881000','http://snomed.info/sct','Multiple fractures involving skull and facial bones (disorder)','207881000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_208748005','208748005','http://snomed.info/sct','Open dislocation of jaw (disorder)','208748005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_208750002','208750002','http://snomed.info/sct','Open subluxation jaw (disorder)','208750002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_209153001','209153001','http://snomed.info/sct','Open subluxation atlanto-occipital joint (disorder)','209153001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_209736004','209736004','http://snomed.info/sct','Open division, temporomandibular ligament (disorder)','209736004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_209947002','209947002','http://snomed.info/sct','Closed traumatic subdural intracranial hemorrhage (disorder)','209947002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_209956005','209956005','http://snomed.info/sct','Subdural hemorrhage following open wound of head (disorder)','209956005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_209987007','209987007','http://snomed.info/sct','Traumatic subdural intracranial hemorrhage (disorder)','209987007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_210039000','210039000','http://snomed.info/sct','Intracranial injury with prolonged coma (disorder)','210039000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_210277000','210277000','http://snomed.info/sct','Full thickness eyelid laceration without lacrimal passage involvement (disorder)','210277000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_210285009','210285009','http://snomed.info/sct','Ocular laceration with intraocular prolapse (disorder)','210285009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_210294003','210294003','http://snomed.info/sct','Open wound of external ear (disorder)','210294003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_210297005','210297005','http://snomed.info/sct','Open wound of auditory canal (disorder)','210297005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_210302008','210302008','http://snomed.info/sct','Open wound of ear auricle with complication (disorder)','210302008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_210305005','210305005','http://snomed.info/sct','Traumatic amputation of ear (disorder)','210305005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_210308007','210308007','http://snomed.info/sct','Open wound of ear ossicle (disorder)','210308007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_210309004','210309004','http://snomed.info/sct','Open wound of eustachian tube (disorder)','210309004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_210310009','210310009','http://snomed.info/sct','Open wound of cochlea (disorder)','210310009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_210323002','210323002','http://snomed.info/sct','Open wound of scalp (disorder)','210323002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_210325009','210325009','http://snomed.info/sct','Open wound of nose (disorder)','210325009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_210327001','210327001','http://snomed.info/sct','Open wound of nasal septum (disorder)','210327001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_210328006','210328006','http://snomed.info/sct','Open wound of nasal cavity (disorder)','210328006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_210329003','210329003','http://snomed.info/sct','Open wound of nasal sinus (disorder)','210329003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_210330008','210330008','http://snomed.info/sct','Multiple wounds of nose (disorder)','210330008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_210339009','210339009','http://snomed.info/sct','Open wound of face (disorder)','210339009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_210341005','210341005','http://snomed.info/sct','Open wound of cheek (disorder)','210341005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_210342003','210342003','http://snomed.info/sct','Open wound of forehead (disorder)','210342003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_210343008','210343008','http://snomed.info/sct','Open wound of eyebrow (disorder)','210343008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_210344002','210344002','http://snomed.info/sct','Open wound of lip (disorder)','210344002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_210345001','210345001','http://snomed.info/sct','Open wound of jaw (disorder)','210345001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_210347009','210347009','http://snomed.info/sct','Multiple open wounds of face (disorder)','210347009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_210358000','210358000','http://snomed.info/sct','Open wound in mouth (disorder)','210358000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_210360003','210360003','http://snomed.info/sct','Open wound of buccal mucosa (disorder)','210360003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_210361004','210361004','http://snomed.info/sct','Open wound of gum (disorder)','210361004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_210363001','210363001','http://snomed.info/sct','Open wound of tongue (disorder)','210363001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_210364007','210364007','http://snomed.info/sct','Open wound of mouth floor (disorder)','210364007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_210365008','210365008','http://snomed.info/sct','Open wound of palate (disorder)','210365008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_210368005','210368005','http://snomed.info/sct','Multiple open mouth wounds (disorder)','210368005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_210370001','210370001','http://snomed.info/sct','Open wound in mouth with complication (disorder)','210370001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_210376007','210376007','http://snomed.info/sct','Open wound of mouth floor with complication (disorder)','210376007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_210378008','210378008','http://snomed.info/sct','Multiple open mouth wounds with complication (disorder)','210378008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_210493006','210493006','http://snomed.info/sct','Open wounds involving head with neck (disorder)','210493006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_21051006','21051006','http://snomed.info/sct','Open wound of eyebrow without complication (disorder)','21051006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_210931000','210931000','http://snomed.info/sct','Late effect of open wound of head, neck and trunk (disorder)','210931000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_210985000','210985000','http://snomed.info/sct','Superficial injury to head, excluding eye (disorder)','210985000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_210987008','210987008','http://snomed.info/sct','Abrasion of face (disorder)','210987008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_210989006','210989006','http://snomed.info/sct','Abrasion of scalp (disorder)','210989006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_210991003','210991003','http://snomed.info/sct','Abrasion and/or friction burn of head, infected (disorder)','210991003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_210992005','210992005','http://snomed.info/sct','Infected abrasion of skin of face (disorder)','210992005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_210994006','210994006','http://snomed.info/sct','Infected abrasion of scalp (disorder)','210994006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_211019007','211019007','http://snomed.info/sct','Splinter of head, without major open wound, infected (disorder)','211019007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_211020001','211020001','http://snomed.info/sct','Splinter of face, without major open wound, infected (disorder)','211020001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_211022009','211022009','http://snomed.info/sct','Splinter of scalp, without major open wound, infected (disorder)','211022009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_211024005','211024005','http://snomed.info/sct','Multiple superficial injuries of head (disorder)','211024005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_211483007','211483007','http://snomed.info/sct','Contusion of globe of eye (disorder)','211483007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_211537004','211537004','http://snomed.info/sct','Crushing injury of skull (disorder)','211537004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_211659009','211659009','http://snomed.info/sct','Chemical burn of eyelid region (disorder)','211659009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_211661000','211661000','http://snomed.info/sct','Alkaline chemical burn of cornea and conjunctival sac (disorder)','211661000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_211662007','211662007','http://snomed.info/sct','Acid chemical burn of cornea and conjunctival sac (disorder)','211662007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_211703005','211703005','http://snomed.info/sct','Deep partial thickness burn of ear (disorder)','211703005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_211706002','211706002','http://snomed.info/sct','Deep partial thickness burn of chin (disorder)','211706002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_211707006','211707006','http://snomed.info/sct','Deep partial thickness burn of nose (disorder)','211707006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_211708001','211708001','http://snomed.info/sct','Deep partial thickness burn of scalp (disorder)','211708001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_211709009','211709009','http://snomed.info/sct','Deep partial thickness burn of forehead (disorder)','211709009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_211711000','211711000','http://snomed.info/sct','Deep partial thickness burn of cheek (disorder)','211711000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_211719003','211719003','http://snomed.info/sct','Corrosion of third degree of head and neck (disorder)','211719003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_211749001','211749001','http://snomed.info/sct','Corrosion of head and neck (disorder)','211749001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_211750001','211750001','http://snomed.info/sct','Corrosion of first degree of head and neck (disorder)','211750001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_211751002','211751002','http://snomed.info/sct','Corrosion of second degree of head and neck (disorder)','211751002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_212032004','212032004','http://snomed.info/sct','Burn of mouth and pharynx (disorder)','212032004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_212400009','212400009','http://snomed.info/sct','Scalp injury (disorder)','212400009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_212451003','212451003','http://snomed.info/sct','Injury of muscle and tendon of head (disorder)','212451003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_212483009','212483009','http://snomed.info/sct','Multiple injuries of head (disorder)','212483009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_212925005','212925005','http://snomed.info/sct','Frostbite with tissue necrosis of head (disorder)','212925005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_213347008','213347008','http://snomed.info/sct','Fractures involving head with neck (disorder)','213347008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_2136001','2136001','http://snomed.info/sct','Open wound of jaw with complication (disorder)','2136001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_21549001','21549001','http://snomed.info/sct','Superficial laceration of cornea (disorder)','21549001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_21601000119103','21601000119103','http://snomed.info/sct','Hypoxic ischemic encephalopathy due to birth trauma (disorder)','21601000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_21763005','21763005','http://snomed.info/sct','Injury of teeth (disorder)','21763005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_22045003','22045003','http://snomed.info/sct','Partial thickness burn of scalp (disorder)','22045003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_22233004','22233004','http://snomed.info/sct','Burn of nose (disorder)','22233004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_22383006','22383006','http://snomed.info/sct','Closed fracture of vault of skull with cerebral laceration AND/OR contusion (disorder)','22383006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_22562004','22562004','http://snomed.info/sct','Contusion of scalp (disorder)','22562004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_230519001','230519001','http://snomed.info/sct','Injury of optic tract (disorder)','230519001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_23119003','23119003','http://snomed.info/sct','Injury of superficial nerves of head AND/OR neck (disorder)','23119003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_231794000','231794000','http://snomed.info/sct','Injury of globe of eye (disorder)','231794000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_231795004','231795004','http://snomed.info/sct','Laceration of globe of eye (disorder)','231795004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_231813003','231813003','http://snomed.info/sct','Injury to eyelid (disorder)','231813003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_231814009','231814009','http://snomed.info/sct','Contusion of eyelid (disorder)','231814009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_231815005','231815005','http://snomed.info/sct','Abrasion of skin of eyelid (disorder)','231815005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_231816006','231816006','http://snomed.info/sct','Laceration of eyelid (disorder)','231816006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_231817002','231817002','http://snomed.info/sct','Full thickness eyelid laceration (disorder)','231817002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_231818007','231818007','http://snomed.info/sct','Full thickness eyelid laceration with lacrimal passage damage (disorder)','231818007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_231819004','231819004','http://snomed.info/sct','Thermal burn of eyelid (disorder)','231819004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_231821009','231821009','http://snomed.info/sct','Avulsion of eyelid (disorder)','231821009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_231844007','231844007','http://snomed.info/sct','Lacrimal punctum burn (disorder)','231844007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_231845008','231845008','http://snomed.info/sct','Laceration of lacrimal canaliculus (disorder)','231845008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_231851003','231851003','http://snomed.info/sct','Penetrating wound of orbit proper (disorder)','231851003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_231863008','231863008','http://snomed.info/sct','Injury of conjunctiva (disorder)','231863008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_231865001','231865001','http://snomed.info/sct','Conjunctival wound (disorder)','231865001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_231867009','231867009','http://snomed.info/sct','Thermal injury to conjunctiva (disorder)','231867009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_231869007','231869007','http://snomed.info/sct','Chemical burn injury to conjunctiva (disorder)','231869007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_231878001','231878001','http://snomed.info/sct','Injury of sclera (disorder)','231878001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_231879009','231879009','http://snomed.info/sct','Perforating scleral wound (disorder)','231879009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_231880007','231880007','http://snomed.info/sct','Perforating corneoscleral wound (disorder)','231880007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_231884003','231884003','http://snomed.info/sct','Burn of sclera (disorder)','231884003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_231939004','231939004','http://snomed.info/sct','Injury of cornea (disorder)','231939004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_231940002','231940002','http://snomed.info/sct','Concussional injury of cornea (disorder)','231940002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_231941003','231941003','http://snomed.info/sct','Nonperforating wound of cornea (disorder)','231941003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_231943000','231943000','http://snomed.info/sct','Thermal and radiation injury to the cornea (disorder)','231943000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_231945007','231945007','http://snomed.info/sct','Chemical injury to cornea (disorder)','231945007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_231950001','231950001','http://snomed.info/sct','Injury of iris and ciliary body (disorder)','231950001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_231951002','231951002','http://snomed.info/sct','Traumatic iris atrophy (disorder)','231951002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_231952009','231952009','http://snomed.info/sct','Tears of iris stroma (disorder)','231952009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_231953004','231953004','http://snomed.info/sct','Tear of iris root (disorder)','231953004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_231954005','231954005','http://snomed.info/sct','Traumatic hyphema (disorder)','231954005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_231956007','231956007','http://snomed.info/sct','Traumatic aniridia (disorder)','231956007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_231957003','231957003','http://snomed.info/sct','Traumatic cyclodialysis (disorder)','231957003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_231978000','231978000','http://snomed.info/sct','Traumatic subluxation of lens (disorder)','231978000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_231980006','231980006','http://snomed.info/sct','Traumatic dislocation of lens (disorder)','231980006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_232028002','232028002','http://snomed.info/sct','Laser coagulation burn to retina (disorder)','232028002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_232029005','232029005','http://snomed.info/sct','Cryotherapy burn to retina (disorder)','232029005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_232235004','232235004','http://snomed.info/sct','Acute traumatic otitis externa (disorder)','232235004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_232249008','232249008','http://snomed.info/sct','Traumatic hemotympanum (disorder)','232249008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_232259009','232259009','http://snomed.info/sct','Barotraumatic Eustachian tube dysfunction (disorder)','232259009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_232265009','232265009','http://snomed.info/sct','Traumatic ossicular dislocation (disorder)','232265009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_232277004','232277004','http://snomed.info/sct','Longitudinal fracture of temporal bone (disorder)','232277004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_232278009','232278009','http://snomed.info/sct','Transverse fracture of temporal bone (disorder)','232278009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_232279001','232279001','http://snomed.info/sct','Complex fracture of temporal bone (disorder)','232279001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_232294002','232294002','http://snomed.info/sct','Vestibular trauma (disorder)','232294002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_232295001','232295001','http://snomed.info/sct','Vestibular barotrauma (disorder)','232295001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_232315003','232315003','http://snomed.info/sct','Cochlear trauma (disorder)','232315003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_232316002','232316002','http://snomed.info/sct','Concussive cochlear trauma (disorder)','232316002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_232317006','232317006','http://snomed.info/sct','Cochlear barotrauma (disorder)','232317006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_232356000','232356000','http://snomed.info/sct','Traumatic epistaxis (disorder)','232356000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_232375005','232375005','http://snomed.info/sct','Fractured nasal septum (disorder)','232375005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_232378007','232378007','http://snomed.info/sct','Traumatic nasal septal perforation (disorder)','232378007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_235021001','235021001','http://snomed.info/sct','Chemical burn of oral mucosa (disorder)','235021001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_235098004','235098004','http://snomed.info/sct','Traumatic overbite (disorder)','235098004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_235131006','235131006','http://snomed.info/sct','Injury of salivary gland (disorder)','235131006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_235134003','235134003','http://snomed.info/sct','Injury of salivary duct (disorder)','235134003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_23611004','23611004','http://snomed.info/sct','Open fracture of mandible (disorder)','23611004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_23632007','23632007','http://snomed.info/sct','Open wound of auricle of ear without complication (disorder)','23632007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_240312009','240312009','http://snomed.info/sct','Cerebral injury due to birth trauma (disorder)','240312009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_240315006','240315006','http://snomed.info/sct','Fracture of nose due to birth trauma (disorder)','240315006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_24063002','24063002','http://snomed.info/sct','Fracture of base of skull (disorder)','24063002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_24087000','24087000','http://snomed.info/sct','Burn of gum (disorder)','24087000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_2419001','2419001','http://snomed.info/sct','Open wound of forehead with complication (disorder)','2419001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_241979006','241979006','http://snomed.info/sct','Aural barotrauma of descent (disorder)','241979006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_241983006','241983006','http://snomed.info/sct','Descent barotrauma of sinuses (disorder)','241983006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_242002003','242002003','http://snomed.info/sct','Aural barotrauma of ascent (disorder)','242002003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_242005001','242005001','http://snomed.info/sct','Blast injury to ears (disorder)','242005001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_243863351000119103','243863351000119103','http://snomed.info/sct','Closed fracture of lateral wall of right orbit (disorder)','243863351000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_24457001','24457001','http://snomed.info/sct','Superficial injury of ear with infection (disorder)','24457001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_246960009','246960009','http://snomed.info/sct','Corneal stromal wound (disorder)','246960009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_24990001000004105','24990001000004105','http://snomed.info/sct','Fracture of mastoid (disorder)','24990001000004105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_25312001','25312001','http://snomed.info/sct','Open wound of multiple sites of face with complication (disorder)','25312001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_25424007','25424007','http://snomed.info/sct','Fracture of frontal bone (disorder)','25424007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_25471001','25471001','http://snomed.info/sct','Superficial injury of ear without infection (disorder)','25471001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_25940001','25940001','http://snomed.info/sct','Traumatic bone cyst of jaw (disorder)','25940001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_262544007','262544007','http://snomed.info/sct','Superficial laceration of head (disorder)','262544007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_262576002','262576002','http://snomed.info/sct','Crushing injury of skull and intracranial contents (disorder)','262576002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_262581006','262581006','http://snomed.info/sct','Head burn (disorder)','262581006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_262582004','262582004','http://snomed.info/sct','Burn of face (disorder)','262582004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_262627001','262627001','http://snomed.info/sct','Laceration of buccal mucosa (disorder)','262627001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_262628006','262628006','http://snomed.info/sct','Laceration of intraoral surface of lip (disorder)','262628006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_262629003','262629003','http://snomed.info/sct','Laceration of oral alveolar mucosa (disorder)','262629003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_262631007','262631007','http://snomed.info/sct','Abrasion of palate (disorder)','262631007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_262632000','262632000','http://snomed.info/sct','Abrasion of intraoral surface of lip (disorder)','262632000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_262633005','262633005','http://snomed.info/sct','Abrasion of oral alveolar mucosa (disorder)','262633005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_262635003','262635003','http://snomed.info/sct','Contusion of oral cavity (disorder)','262635003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_262636002','262636002','http://snomed.info/sct','Contusion of palate (disorder)','262636002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_262637006','262637006','http://snomed.info/sct','Contusion of gingivae (disorder)','262637006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_262638001','262638001','http://snomed.info/sct','Contusion of intraoral surface of lip (disorder)','262638001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_262639009','262639009','http://snomed.info/sct','Contusion of oral alveolar mucosa (disorder)','262639009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_262656001','262656001','http://snomed.info/sct','Penetrating injury of oral cavity (disorder)','262656001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_262657005','262657005','http://snomed.info/sct','Penetrating injury of palate (disorder)','262657005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_262658000','262658000','http://snomed.info/sct','Penetrating injury of gingivae (disorder)','262658000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_262659008','262659008','http://snomed.info/sct','Penetrating injury of tongue (disorder)','262659008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_262660003','262660003','http://snomed.info/sct','Penetrating injury of floor of mouth (disorder)','262660003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_262661004','262661004','http://snomed.info/sct','Penetrating injury of buccal mucosa (disorder)','262661004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_262662006','262662006','http://snomed.info/sct','Penetrating injury of intraoral surface of lip (disorder)','262662006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_262663001','262663001','http://snomed.info/sct','Penetrating injury of oral alveolar mucosa (disorder)','262663001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_262664007','262664007','http://snomed.info/sct','Injury of oropharynx (disorder)','262664007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_262665008','262665008','http://snomed.info/sct','Laceration of oropharynx (disorder)','262665008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_262669002','262669002','http://snomed.info/sct','Penetrating injury of oropharynx (disorder)','262669002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_262670001','262670001','http://snomed.info/sct','Injury of nasal cavity and sinuses (disorder)','262670001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_262749000','262749000','http://snomed.info/sct','Open wound of eyelid (disorder)','262749000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_262750000','262750000','http://snomed.info/sct','Periocular open wound (disorder)','262750000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_262751001','262751001','http://snomed.info/sct','Injury of lacrimal passage (disorder)','262751001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_262752008','262752008','http://snomed.info/sct','Laceration of lacrimal passage (disorder)','262752008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_262754009','262754009','http://snomed.info/sct','Injury of orbit proper (disorder)','262754009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_262755005','262755005','http://snomed.info/sct','Injury of lens (disorder)','262755005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_262756006','262756006','http://snomed.info/sct','Injury of retina (disorder)','262756006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_262758007','262758007','http://snomed.info/sct','Injury of external auditory canal (disorder)','262758007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_262760009','262760009','http://snomed.info/sct','Traumatic dislocation of ossicular prosthesis (disorder)','262760009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_262762001','262762001','http://snomed.info/sct','Injury of inner ear (disorder)','262762001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_262765004','262765004','http://snomed.info/sct','Traumatic perilymph fistula (disorder)','262765004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_262767007','262767007','http://snomed.info/sct','Contusion of salivary gland (disorder)','262767007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_262769005','262769005','http://snomed.info/sct','Laceration of salivary gland (disorder)','262769005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_262770006','262770006','http://snomed.info/sct','Injury of salivary gland papilla (disorder)','262770006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_262949005','262949005','http://snomed.info/sct','Traumatic intracranial extradural hematoma (disorder)','262949005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_262952002','262952002','http://snomed.info/sct','Traumatic intracranial subdural hematoma (disorder)','262952002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_262955000','262955000','http://snomed.info/sct','Subarachnoid hemorrhage due to traumatic injury (disorder)','262955000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_26301007','26301007','http://snomed.info/sct','Open wound of ear drum with complication (disorder)','26301007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_263064003','263064003','http://snomed.info/sct','Fracture dislocation of temporomandibular joint (disorder)','263064003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_263121007','263121007','http://snomed.info/sct','Injury of meniscus of temporomandibular joint (disorder)','263121007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_263148008','263148008','http://snomed.info/sct','Sphenoid sinus fracture (disorder)','263148008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_263149000','263149000','http://snomed.info/sct','Cribriform plate fracture (disorder)','263149000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_263150000','263150000','http://snomed.info/sct','Petrous bone fracture (disorder)','263150000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_263151001','263151001','http://snomed.info/sct','Fracture of upper jaw, closed (disorder)','263151001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_263152008','263152008','http://snomed.info/sct','Fracture of multiple bones of face (disorder)','263152008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_263153003','263153003','http://snomed.info/sct','Fracture of frontonasoethmoidal complex (disorder)','263153003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_263154009','263154009','http://snomed.info/sct','Fracture of frontonasoethmoidal complex with increased intercanthal distance (disorder)','263154009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_263155005','263155005','http://snomed.info/sct','Fracture of midfacial bones (disorder)','263155005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_263156006','263156006','http://snomed.info/sct','Fracture of maxilla (disorder)','263156006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_263157002','263157002','http://snomed.info/sct','Fracture of maxillary alveolar bone (disorder)','263157002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_263158007','263158007','http://snomed.info/sct','Total fracture of maxillary alveolus (disorder)','263158007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_263159004','263159004','http://snomed.info/sct','Partial fracture of maxillary alveolus (disorder)','263159004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_263160009','263160009','http://snomed.info/sct','Fracture of maxillary tuberosity (disorder)','263160009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_263161008','263161008','http://snomed.info/sct','Fracture of maxillary alveolar socket wall (disorder)','263161008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_263162001','263162001','http://snomed.info/sct','Comminuted fracture of maxillary alveolar bone (disorder)','263162001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_263163006','263163006','http://snomed.info/sct','Fracture of zygomatic complex (disorder)','263163006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_263164000','263164000','http://snomed.info/sct','Fracture of zygoma (disorder)','263164000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_263165004','263165004','http://snomed.info/sct','Fracture of zygomatic process (disorder)','263165004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_263166003','263166003','http://snomed.info/sct','Fracture of palatal process (disorder)','263166003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_263167007','263167007','http://snomed.info/sct','Blow out fracture of orbit (disorder)','263167007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_263168002','263168002','http://snomed.info/sct','Fracture of medial wall of orbit (disorder)','263168002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_263169005','263169005','http://snomed.info/sct','Fracture of lateral wall of orbit (disorder)','263169005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_263170006','263170006','http://snomed.info/sct','Fracture of supraorbital rim (disorder)','263170006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_263171005','263171005','http://snomed.info/sct','Fractured nasal bones (disorder)','263171005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_263172003','263172003','http://snomed.info/sct','Fracture of mandible (disorder)','263172003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_263173008','263173008','http://snomed.info/sct','Comminuted fracture of mandibular alveolar bone (disorder)','263173008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_263174002','263174002','http://snomed.info/sct','Fracture of mandibular alveolar socket wall (disorder)','263174002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_263175001','263175001','http://snomed.info/sct','Fracture of mandible involving dental socket (disorder)','263175001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_263176000','263176000','http://snomed.info/sct','Fracture of edentulous mandible (disorder)','263176000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_263177009','263177009','http://snomed.info/sct','Bilateral fracture of condylar head and midline fracture of mandible (disorder)','263177009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_263274008','263274008','http://snomed.info/sct','Injury of periodontal tissue (disorder)','263274008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_26422002','26422002','http://snomed.info/sct','Open wound of buccal mucosa without complication (disorder)','26422002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_26492007','26492007','http://snomed.info/sct','Superficial injury of scalp with infection (disorder)','26492007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_26652002','26652002','http://snomed.info/sct','Abrasion and/or friction burn of scalp with infection (disorder)','26652002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_269057007','269057007','http://snomed.info/sct','Fracture of malar or maxillary bones, open (disorder)','269057007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_269122007','269122007','http://snomed.info/sct','Open dislocation atlanto-occipital joint (disorder)','269122007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_269163001','269163001','http://snomed.info/sct','Open wound of head, neck and trunk (disorder)','269163001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_269164007','269164007','http://snomed.info/sct','Eyelid and lacrimal drainage system laceration (disorder)','269164007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_269165008','269165008','http://snomed.info/sct','Open wound of eardrum (disorder)','269165008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_269209005','269209005','http://snomed.info/sct','Abrasion and/or friction burn of eyelids and/or periocular area (disorder)','269209005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_269210000','269210000','http://snomed.info/sct','Traumatic blister of eyelids and periocular area (disorder)','269210000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_269232009','269232009','http://snomed.info/sct','Burn confined to eye and adnexa (disorder)','269232009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_269233004','269233004','http://snomed.info/sct','Superficial partial thickness burn of ear (disorder)','269233004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_269236007','269236007','http://snomed.info/sct','Superficial partial thickness burn of chin (disorder)','269236007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_269237003','269237003','http://snomed.info/sct','Superficial partial thickness burn of nose (disorder)','269237003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_269238008','269238008','http://snomed.info/sct','Superficial partial thickness burn of scalp (disorder)','269238008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_269239000','269239000','http://snomed.info/sct','Superficial partial thickness burn of forehead (disorder)','269239000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_269240003','269240003','http://snomed.info/sct','Superficial partial thickness burn of cheek (disorder)','269240003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_269255007','269255007','http://snomed.info/sct','Head and neck superficial nerve injury (disorder)','269255007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_271107000','271107000','http://snomed.info/sct','Traumatic blister of face (disorder)','271107000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_271109002','271109002','http://snomed.info/sct','Traumatic blister of scalp (disorder)','271109002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_271111006','271111006','http://snomed.info/sct','Traumatic blister of head, infected (disorder)','271111006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_271112004','271112004','http://snomed.info/sct','Traumatic blister of face, infected (disorder)','271112004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_271114003','271114003','http://snomed.info/sct','Traumatic blister of scalp, infected (disorder)','271114003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_274164006','274164006','http://snomed.info/sct','Minor head injury (disorder)','274164006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_274166008','274166008','http://snomed.info/sct','Scalp laceration (disorder)','274166008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_274180001','274180001','http://snomed.info/sct','Superficial injury of face (disorder)','274180001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_274181002','274181002','http://snomed.info/sct','Superficial injury of scalp (disorder)','274181002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_274204004','274204004','http://snomed.info/sct','Burn of cornea (disorder)','274204004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_274205003','274205003','http://snomed.info/sct','Burn of eye region (disorder)','274205003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_275361004','275361004','http://snomed.info/sct','Tentorial laceration (disorder)','275361004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_275456000','275456000','http://snomed.info/sct','Laceration of floor of mouth (disorder)','275456000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_275475005','275475005','http://snomed.info/sct','Perforating wound of eyelid (disorder)','275475005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_275489000','275489000','http://snomed.info/sct','Wound of oropharynx (disorder)','275489000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_276620002','276620002','http://snomed.info/sct','Traumatic neonatal facial cyanosis (disorder)','276620002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_276621003','276621003','http://snomed.info/sct','Neonatal scalp injury (disorder)','276621003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_276623000','276623000','http://snomed.info/sct','Neonatal abrasion of skin of scalp (disorder)','276623000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_276624006','276624006','http://snomed.info/sct','Neonatal bruising of scalp (disorder)','276624006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_277209002','277209002','http://snomed.info/sct','Bruising over mastoid (disorder)','277209002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_282447006','282447006','http://snomed.info/sct','Injury of nasal septum (disorder)','282447006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_282448001','282448001','http://snomed.info/sct','Injury of sinus (disorder)','282448001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_282449009','282449009','http://snomed.info/sct','Injury of nasal bones (disorder)','282449009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_282450009','282450009','http://snomed.info/sct','Contusion of nasal septum (disorder)','282450009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_282451008','282451008','http://snomed.info/sct','Burn of nasal cavity (disorder)','282451008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_2825006','2825006','http://snomed.info/sct','Abrasion and/or friction burn of gum without infection (disorder)','2825006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_282749008','282749008','http://snomed.info/sct','Head and neck injury (disorder)','282749008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_282751007','282751007','http://snomed.info/sct','Injury of back of head (disorder)','282751007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_282752000','282752000','http://snomed.info/sct','Injury of eye region (disorder)','282752000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_282754004','282754004','http://snomed.info/sct','Gum injury (disorder)','282754004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_282755003','282755003','http://snomed.info/sct','Injury of forehead (disorder)','282755003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_282756002','282756002','http://snomed.info/sct','Jaw injury (disorder)','282756002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_282757006','282757006','http://snomed.info/sct','Cheek injury (disorder)','282757006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_282758001','282758001','http://snomed.info/sct','Chin injury (disorder)','282758001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_282781004','282781004','http://snomed.info/sct','Injury of tympanic membrane (disorder)','282781004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_282783001','282783001','http://snomed.info/sct','Injury of tongue (disorder)','282783001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_282799007','282799007','http://snomed.info/sct','Injury of ciliary ganglion (disorder)','282799007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283024006','283024006','http://snomed.info/sct','Superficial injury of head and neck (disorder)','283024006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283025007','283025007','http://snomed.info/sct','Superficial injury of head (disorder)','283025007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283026008','283026008','http://snomed.info/sct','Superficial injury of ear region (disorder)','283026008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283027004','283027004','http://snomed.info/sct','Superficial injury of nose (disorder)','283027004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283028009','283028009','http://snomed.info/sct','Superficial injury of cheek (disorder)','283028009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283049005','283049005','http://snomed.info/sct','Abrasion of head (disorder)','283049005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283050005','283050005','http://snomed.info/sct','Abrasion of eye region (disorder)','283050005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283051009','283051009','http://snomed.info/sct','Abrasion of skin of ear (disorder)','283051009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283052002','283052002','http://snomed.info/sct','Abrasion of skin of nose (disorder)','283052002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283053007','283053007','http://snomed.info/sct','Abrasion of cheek (disorder)','283053007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283114001','283114001','http://snomed.info/sct','Superficial traumatic blister of head and neck (disorder)','283114001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283115000','283115000','http://snomed.info/sct','Traumatic blister of head (disorder)','283115000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283116004','283116004','http://snomed.info/sct','Traumatic blister of forehead (disorder)','283116004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283117008','283117008','http://snomed.info/sct','Traumatic blister of eye region (disorder)','283117008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283118003','283118003','http://snomed.info/sct','Traumatic blister of ear region (disorder)','283118003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283119006','283119006','http://snomed.info/sct','Traumatic blister of nose (disorder)','283119006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283120000','283120000','http://snomed.info/sct','Traumatic blister of cheek (disorder)','283120000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283121001','283121001','http://snomed.info/sct','Traumatic blister of mouth (disorder)','283121001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283135004','283135004','http://snomed.info/sct','Superficial bruising of head and neck (disorder)','283135004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283355005','283355005','http://snomed.info/sct','Laceration of oral cavity (disorder)','283355005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283358007','283358007','http://snomed.info/sct','Laceration of head and neck (disorder)','283358007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283359004','283359004','http://snomed.info/sct','Laceration of forehead (disorder)','283359004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283360009','283360009','http://snomed.info/sct','Laceration of eye region (disorder)','283360009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283361008','283361008','http://snomed.info/sct','Laceration of ear region (disorder)','283361008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283362001','283362001','http://snomed.info/sct','Laceration of cheek (disorder)','283362001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283363006','283363006','http://snomed.info/sct','Laceration of lip (disorder)','283363006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283397004','283397004','http://snomed.info/sct','Cut of head and neck (disorder)','283397004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283398009','283398009','http://snomed.info/sct','Cut of head (disorder)','283398009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283399001','283399001','http://snomed.info/sct','Cut of scalp (disorder)','283399001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283400008','283400008','http://snomed.info/sct','Cut of face (disorder)','283400008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283401007','283401007','http://snomed.info/sct','Cut of forehead (disorder)','283401007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283402000','283402000','http://snomed.info/sct','Cut of eye region (disorder)','283402000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283403005','283403005','http://snomed.info/sct','Cut of ear region (disorder)','283403005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283404004','283404004','http://snomed.info/sct','Cut of nose (disorder)','283404004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283405003','283405003','http://snomed.info/sct','Cut of cheek (disorder)','283405003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283406002','283406002','http://snomed.info/sct','Cut of mouth (disorder)','283406002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283446008','283446008','http://snomed.info/sct','Stab wound of head and neck (disorder)','283446008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283447004','283447004','http://snomed.info/sct','Stab wound of head (disorder)','283447004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283448009','283448009','http://snomed.info/sct','Stab wound of scalp (disorder)','283448009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283449001','283449001','http://snomed.info/sct','Stab wound of face (disorder)','283449001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283450001','283450001','http://snomed.info/sct','Stab wound of forehead (disorder)','283450001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283451002','283451002','http://snomed.info/sct','Stab wound of eye region (disorder)','283451002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283452009','283452009','http://snomed.info/sct','Stab wound of ear region (disorder)','283452009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283453004','283453004','http://snomed.info/sct','Stab wound of nose (disorder)','283453004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283454005','283454005','http://snomed.info/sct','Stab wound of cheek (disorder)','283454005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283455006','283455006','http://snomed.info/sct','Stab wound of mouth (disorder)','283455006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283456007','283456007','http://snomed.info/sct','Stab wound of lip (disorder)','283456007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283498005','283498005','http://snomed.info/sct','Puncture wound of head and neck (disorder)','283498005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283499002','283499002','http://snomed.info/sct','Puncture wound of head (disorder)','283499002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283500006','283500006','http://snomed.info/sct','Puncture wound of scalp (disorder)','283500006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283501005','283501005','http://snomed.info/sct','Puncture wound of face (disorder)','283501005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283502003','283502003','http://snomed.info/sct','Puncture wound of forehead (disorder)','283502003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283503008','283503008','http://snomed.info/sct','Puncture wound of eye region (disorder)','283503008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283504002','283504002','http://snomed.info/sct','Puncture wound of ear region (disorder)','283504002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283505001','283505001','http://snomed.info/sct','Puncture wound of nose (disorder)','283505001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283506000','283506000','http://snomed.info/sct','Puncture wound of cheek (disorder)','283506000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283507009','283507009','http://snomed.info/sct','Puncture wound of mouth (disorder)','283507009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283546006','283546006','http://snomed.info/sct','Pellet wound of head and neck (disorder)','283546006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283547002','283547002','http://snomed.info/sct','Pellet wound of head (disorder)','283547002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283548007','283548007','http://snomed.info/sct','Pellet wound of scalp (disorder)','283548007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283549004','283549004','http://snomed.info/sct','Pellet wound of face (disorder)','283549004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283550004','283550004','http://snomed.info/sct','Pellet wound of forehead (disorder)','283550004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283551000','283551000','http://snomed.info/sct','Pellet wound of eye region (disorder)','283551000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283552007','283552007','http://snomed.info/sct','Pellet wound of ear region (disorder)','283552007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283553002','283553002','http://snomed.info/sct','Pellet wound of nose (disorder)','283553002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283554008','283554008','http://snomed.info/sct','Pellet wound of cheek (disorder)','283554008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283555009','283555009','http://snomed.info/sct','Pellet wound of mouth (disorder)','283555009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283556005','283556005','http://snomed.info/sct','Pellet wound of lip (disorder)','283556005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283598008','283598008','http://snomed.info/sct','Needle stick injury of head (disorder)','283598008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283600002','283600002','http://snomed.info/sct','Needle stick injury of face (disorder)','283600002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283601003','283601003','http://snomed.info/sct','Needle stick injury of forehead (disorder)','283601003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283602005','283602005','http://snomed.info/sct','Needle stick injury of eye region (disorder)','283602005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283603000','283603000','http://snomed.info/sct','Needle stick injury of ear region (disorder)','283603000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283604006','283604006','http://snomed.info/sct','Needle stick injury of nose (disorder)','283604006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283605007','283605007','http://snomed.info/sct','Needle stick injury of cheek (disorder)','283605007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283606008','283606008','http://snomed.info/sct','Needle stick injury of mouth (disorder)','283606008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283651008','283651008','http://snomed.info/sct','Nail wound of head and neck (disorder)','283651008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283652001','283652001','http://snomed.info/sct','Nail wound of head (disorder)','283652001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283684008','283684008','http://snomed.info/sct','Human bite of head and neck (disorder)','283684008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283685009','283685009','http://snomed.info/sct','Human bite of head (disorder)','283685009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283686005','283686005','http://snomed.info/sct','Human bite of scalp (disorder)','283686005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283687001','283687001','http://snomed.info/sct','Human bite of face (disorder)','283687001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283689003','283689003','http://snomed.info/sct','Human bite of forehead (disorder)','283689003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283690007','283690007','http://snomed.info/sct','Human bite of eye region (disorder)','283690007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283691006','283691006','http://snomed.info/sct','Human bite of ear region (disorder)','283691006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283692004','283692004','http://snomed.info/sct','Human bite of nose (disorder)','283692004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283693009','283693009','http://snomed.info/sct','Human bite of cheek (disorder)','283693009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283694003','283694003','http://snomed.info/sct','Human bite of mouth (disorder)','283694003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283841009','283841009','http://snomed.info/sct','Degloving injury of head and neck (disorder)','283841009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283842002','283842002','http://snomed.info/sct','Degloving injury of head (disorder)','283842002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283851005','283851005','http://snomed.info/sct','Crush injury of head and neck (disorder)','283851005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283852003','283852003','http://snomed.info/sct','Crush injury of forehead (disorder)','283852003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283853008','283853008','http://snomed.info/sct','Crush injury of eye region (disorder)','283853008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283854002','283854002','http://snomed.info/sct','Crush injury of nose (disorder)','283854002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283855001','283855001','http://snomed.info/sct','Crush injury of mouth (disorder)','283855001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_284001007','284001007','http://snomed.info/sct','Injury of salivary apparatus (disorder)','284001007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_284002000','284002000','http://snomed.info/sct','Injury of dental structures (disorder)','284002000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_28417005','28417005','http://snomed.info/sct','Superficial injury of face without infection (disorder)','28417005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_284205006','284205006','http://snomed.info/sct','Partial thickness burn of lip (disorder)','284205006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_284210005','284210005','http://snomed.info/sct','Multiple burns of head and neck (disorder)','284210005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_284476005','284476005','http://snomed.info/sct','Superficial laceration of face (disorder)','284476005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_284537006','284537006','http://snomed.info/sct','Eyelid burn (disorder)','284537006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_284541005','284541005','http://snomed.info/sct','Burn of conjunctiva (disorder)','284541005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_285059008','285059008','http://snomed.info/sct','Injury of external ear (disorder)','285059008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_285597000','285597000','http://snomed.info/sct','Peripheral nerve injury of head and neck (disorder)','285597000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_285652003','285652003','http://snomed.info/sct','Injury of choroid (disorder)','285652003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_285654002','285654002','http://snomed.info/sct','Injury of vitreous body (disorder)','285654002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_285661003','285661003','http://snomed.info/sct','Injury of mastoid (disorder)','285661003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_285668009','285668009','http://snomed.info/sct','Injury of nasal cavity (disorder)','285668009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_285670000','285670000','http://snomed.info/sct','Open wound of skin of nose (disorder)','285670000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_285671001','285671001','http://snomed.info/sct','Injury of nasopharynx (disorder)','285671001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_285709007','285709007','http://snomed.info/sct','Injury of artery of head and neck (disorder)','285709007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_285750004','285750004','http://snomed.info/sct','Injury of vein of head and neck (disorder)','285750004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_285806007','285806007','http://snomed.info/sct','Oral cavity, dental and salivary gland injury (disorder)','285806007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_286547006','286547006','http://snomed.info/sct','Burn of oral cavity (disorder)','286547006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_286620007','286620007','http://snomed.info/sct','Laceration of palate (disorder)','286620007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_286622004','286622004','http://snomed.info/sct','Laceration of gingivae (disorder)','286622004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_286623009','286623009','http://snomed.info/sct','Laceration of tongue (disorder)','286623009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_287132002','287132002','http://snomed.info/sct','Epidermal burn of eyelid (disorder)','287132002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_287133007','287133007','http://snomed.info/sct','Burn to eyelid - blister (disorder)','287133007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_287134001','287134001','http://snomed.info/sct','Full thickness burn of eyelid (disorder)','287134001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_287137008','287137008','http://snomed.info/sct','Burn to cornea - blister (disorder)','287137008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_287138003','287138003','http://snomed.info/sct','Burn to cornea - full thickness (disorder)','287138003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_287139006','287139006','http://snomed.info/sct','Epidermal burn of head (disorder)','287139006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_287140008','287140008','http://snomed.info/sct','Partial thickness burn of head (disorder)','287140008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_287141007','287141007','http://snomed.info/sct','Full thickness burn of head (disorder)','287141007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_29256009','29256009','http://snomed.info/sct','Open wound of lip without complication (disorder)','29256009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_297158000','297158000','http://snomed.info/sct','Fracture of mandibular alveolus (disorder)','297158000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_2999009','2999009','http://snomed.info/sct','Injury of ear (disorder)','2999009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_3013004','3013004','http://snomed.info/sct','Open wound of ear drum without complication (disorder)','3013004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_301768009','301768009','http://snomed.info/sct','Contusion of supraorbital area (disorder)','301768009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_3018008','3018008','http://snomed.info/sct','Penetration of eyeball with magnetic foreign body (disorder)','3018008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_302966002','302966002','http://snomed.info/sct','Traumatic blister of eyelid (disorder)','302966002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_30400005','30400005','http://snomed.info/sct','Middle meningeal hemorrhage following injury (disorder)','30400005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_30715007','30715007','http://snomed.info/sct','Burn of tongue (disorder)','30715007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_30742008','30742008','http://snomed.info/sct','Abrasion and/or friction burn of nose without infection (disorder)','30742008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_307497002','307497002','http://snomed.info/sct','Traumatic tympanic membrane perforation (disorder)','307497002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_3097002','3097002','http://snomed.info/sct','Superficial injury of lip with infection (disorder)','3097002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_30972006','30972006','http://snomed.info/sct','Open wound of nose without complication (disorder)','30972006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_311827003','311827003','http://snomed.info/sct','Intracranial injury with prolonged coma without open wound (disorder)','311827003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_311829000','311829000','http://snomed.info/sct','Intracranial injury with prolonged coma with open wound (disorder)','311829000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_311848001','311848001','http://snomed.info/sct','Open fractures involving head with neck (disorder)','311848001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_31187005','31187005','http://snomed.info/sct','Closed fracture of zygomatic arch (disorder)','31187005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_312646002','312646002','http://snomed.info/sct','Burn of skin of eye region (disorder)','312646002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_312655004','312655004','http://snomed.info/sct','Bite wound of mouth (disorder)','312655004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_313261004','313261004','http://snomed.info/sct','Open wound of chin (disorder)','313261004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_314531003','314531003','http://snomed.info/sct','Burn of anterior eyeball segment (disorder)','314531003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_314533000','314533000','http://snomed.info/sct','Blunt injury of eye (disorder)','314533000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_314535007','314535007','http://snomed.info/sct','Eyelid laceration without lid margin involvement (disorder)','314535007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_314536008','314536008','http://snomed.info/sct','Eyelid laceration with lid margin involvement (disorder)','314536008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_314661000','314661000','http://snomed.info/sct','Moderate head injury (disorder)','314661000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_314662007','314662007','http://snomed.info/sct','Major head injury (disorder)','314662007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_315047001','315047001','http://snomed.info/sct','Traumatic subdural hematoma with open intracranial wound (disorder)','315047001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_315048006','315048006','http://snomed.info/sct','Traumatic extradural hematoma without open intracranial wound (disorder)','315048006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_315049003','315049003','http://snomed.info/sct','Traumatic extradural hematoma with open intracranial wound (disorder)','315049003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_315296002','315296002','http://snomed.info/sct','Penetrating wound of eye (disorder)','315296002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_31607006','31607006','http://snomed.info/sct','Open wound of alveolar process without complication (disorder)','31607006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_31717008','31717008','http://snomed.info/sct','Deep third degree burn of skin of nose (disorder)','31717008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_31957000','31957000','http://snomed.info/sct','Superficial injury of nose without infection (disorder)','31957000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_3208005','3208005','http://snomed.info/sct','Open wound of ossicles without complication (disorder)','3208005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_32550009','32550009','http://snomed.info/sct','Open wound of external ear with complication (disorder)','32550009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_33056002','33056002','http://snomed.info/sct','Deep third degree burn of chin (disorder)','33056002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_331781000119101','331781000119101','http://snomed.info/sct','Cataract of right eye due to and following trauma (disorder)','331781000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_337401000119107','337401000119107','http://snomed.info/sct','Cataract of left eye due to and following trauma (disorder)','337401000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_33931005','33931005','http://snomed.info/sct','Injury of lip (disorder)','33931005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_3421000','3421000','http://snomed.info/sct','Open fracture of orbital floor (blow-out) (disorder)','3421000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_343191000119102','343191000119102','http://snomed.info/sct','Cataract of bilateral eyes due to and following trauma (disorder)','343191000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_34361001','34361001','http://snomed.info/sct','Traumatic cataract (disorder)','34361001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_34649000','34649000','http://snomed.info/sct','Closed fracture of malar AND/OR maxillary bones (disorder)','34649000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_347218661000119103','347218661000119103','http://snomed.info/sct','Abrasion of mouth region (disorder)','347218661000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_34813004','34813004','http://snomed.info/sct','Fracture of posterior fossa (disorder)','34813004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_3500002','3500002','http://snomed.info/sct','Open wound of ossicles with complication (disorder)','3500002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_361112002','361112002','http://snomed.info/sct','Avulsion of zygomatic region of cheek (disorder)','361112002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_363589331000119100','363589331000119100','http://snomed.info/sct','Closed fracture of superior wall of left orbit (disorder)','363589331000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_36520004','36520004','http://snomed.info/sct','Full thickness burn of ear (disorder)','36520004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_367423000','367423000','http://snomed.info/sct','Contusion of eye (disorder)','367423000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_370247008','370247008','http://snomed.info/sct','Facial laceration (disorder)','370247008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_37027003','37027003','http://snomed.info/sct','Le Fort''s fracture, type III (disorder)','37027003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_371123004','371123004','http://snomed.info/sct','Infected conjunctival abrasion (disorder)','371123004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_371124005','371124005','http://snomed.info/sct','Infected corneal abrasion (disorder)','371124005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_371161001','371161001','http://snomed.info/sct','Open fracture of skull (disorder)','371161001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_371162008','371162008','http://snomed.info/sct','Closed fracture of skull (disorder)','371162008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_373602003','373602003','http://snomed.info/sct','Laceration of nose (disorder)','373602003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_37533000','37533000','http://snomed.info/sct','Open wound of cochlea with complication (disorder)','37533000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_37795008','37795008','http://snomed.info/sct','Penetrating wound of orbit proper without foreign body (disorder)','37795008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_37911007','37911007','http://snomed.info/sct','Ocular laceration with prolapse AND/OR exposure of intraocular tissue (disorder)','37911007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_37955001','37955001','http://snomed.info/sct','Intracranial hematoma following injury (disorder)','37955001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_38055001','38055001','http://snomed.info/sct','Open wound of external ear without complication (disorder)','38055001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_38354005','38354005','http://snomed.info/sct','Open wound of head (disorder)','38354005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_38372004','38372004','http://snomed.info/sct','Injury of eyebrow (disorder)','38372004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_38567007','38567007','http://snomed.info/sct','Fracture of orbital roof (disorder)','38567007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_38906007','38906007','http://snomed.info/sct','Open wound of gum without complication (disorder)','38906007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_38916004','38916004','http://snomed.info/sct','Alkaline chemical burn of cornea AND/OR conjunctival sac (disorder)','38916004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_38978009','38978009','http://snomed.info/sct','Burn of scalp (disorder)','38978009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_39065001','39065001','http://snomed.info/sct','Burn of ear (disorder)','39065001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_397180001','397180001','http://snomed.info/sct','Open wound of head AND/OR neck (disorder)','397180001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_397869004','397869004','http://snomed.info/sct','Dental trauma (disorder)','397869004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_398076005','398076005','http://snomed.info/sct','Laceration of nasopharynx (disorder)','398076005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_399240007','399240007','http://snomed.info/sct','Closed fracture of superior maxilla (disorder)','399240007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_40194002','40194002','http://snomed.info/sct','Superficial injury of lip without infection (disorder)','40194002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_403444006','403444006','http://snomed.info/sct','Traumatic oral ulceration (disorder)','403444006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_403448009','403448009','http://snomed.info/sct','Oral ulceration due to radiation burn (disorder)','403448009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_403849006','403849006','http://snomed.info/sct','Scalp injury due to vacuum extraction (disorder)','403849006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_404199004','404199004','http://snomed.info/sct','Traumatized incisor (disorder)','404199004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_404649002','404649002','http://snomed.info/sct','Traumatic mydriasis (disorder)','404649002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_40613008','40613008','http://snomed.info/sct','Open fracture of nasal bones (disorder)','40613008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_40883004','40883004','http://snomed.info/sct','Open wound of head without complication (disorder)','40883004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_410556000','410556000','http://snomed.info/sct','Traumatic iridodialysis (disorder)','410556000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_413878002','413878002','http://snomed.info/sct','Closed, displaced fracture of nasal bone (disorder)','413878002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_414944000','414944000','http://snomed.info/sct','Open, displaced fracture of nasal bone (disorder)','414944000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_416068009','416068009','http://snomed.info/sct','Perforating injury of lens (disorder)','416068009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_416179002','416179002','http://snomed.info/sct','Contusion of eye AND ocular adnexa (disorder)','416179002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_416507005','416507005','http://snomed.info/sct','Nonperforating scleral wound (disorder)','416507005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_41658006','41658006','http://snomed.info/sct','Traumatic enucleation of eye (disorder)','41658006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_416713004','416713004','http://snomed.info/sct','Corneal epithelial wound (disorder)','416713004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_416786002','416786002','http://snomed.info/sct','Penetrating injury of lens (disorder)','416786002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_416931008','416931008','http://snomed.info/sct','Corneoscleral laceration (disorder)','416931008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_416952000','416952000','http://snomed.info/sct','Corneal endothelial wound (disorder)','416952000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_417020006','417020006','http://snomed.info/sct','Traumatic iritis (disorder)','417020006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_417654008','417654008','http://snomed.info/sct','Contusion of ocular adnexa and periocular tissues (disorder)','417654008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_417750006','417750006','http://snomed.info/sct','Conjunctival laceration (disorder)','417750006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_418591009','418591009','http://snomed.info/sct','Corneal wound burn (disorder)','418591009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_418764009','418764009','http://snomed.info/sct','Fracture of bone of head (disorder)','418764009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_419743001','419743001','http://snomed.info/sct','Ruptured Descemet membrane due to birth trauma (disorder)','419743001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_42066004','42066004','http://snomed.info/sct','Partial thickness burn of ear (disorder)','42066004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_42261000','42261000','http://snomed.info/sct','Fracture of middle fossa (disorder)','42261000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_423838005','423838005','http://snomed.info/sct','Scleral surgical wound burn (disorder)','423838005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_42697001','42697001','http://snomed.info/sct','Contusion of orbital tissues (disorder)','42697001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_427773004','427773004','http://snomed.info/sct','Open undisplaced fracture of nasal bone (disorder)','427773004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_427782005','427782005','http://snomed.info/sct','Injury of mandible (disorder)','427782005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_427828004','427828004','http://snomed.info/sct','Burn of nasal septum (disorder)','427828004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_427904000','427904000','http://snomed.info/sct','Closed undisplaced fracture of nasal bone (disorder)','427904000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_428088000','428088000','http://snomed.info/sct','Laceration of head (disorder)','428088000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_428099003','428099003','http://snomed.info/sct','Closed fracture of base of skull (disorder)','428099003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_429194003','429194003','http://snomed.info/sct','Displaced fracture of mandible (disorder)','429194003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_429433004','429433004','http://snomed.info/sct','Injury of soft tissue of face (disorder)','429433004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_430937009','430937009','http://snomed.info/sct','Closed wound of head (disorder)','430937009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_430984009','430984009','http://snomed.info/sct','Closed fracture of facial bone (disorder)','430984009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_431875001','431875001','http://snomed.info/sct','Open wound of face with foreign body (disorder)','431875001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_43337002','43337002','http://snomed.info/sct','Open fracture of alveolar border of body of mandible (disorder)','43337002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_437871001','437871001','http://snomed.info/sct','Seizure after head injury (finding)','437871001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_439328007','439328007','http://snomed.info/sct','Abrasion and/or friction burn of head and/or neck (disorder)','439328007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_43972005','43972005','http://snomed.info/sct','Localized traumatic opacity (disorder)','43972005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_44006003','44006003','http://snomed.info/sct','Superficial injury of nose with infection (disorder)','44006003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_441373001','441373001','http://snomed.info/sct','Abrasion and/or friction burn of head and/or neck without infection (disorder)','441373001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_441519008','441519008','http://snomed.info/sct','Contusion of infraorbital nerve (disorder)','441519008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_44199000','44199000','http://snomed.info/sct','Penetration of eyeball with nonmagnetic foreign body (disorder)','44199000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_44422006','44422006','http://snomed.info/sct','Superficial injury of face with infection (disorder)','44422006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_444867009','444867009','http://snomed.info/sct','Open fracture of vault of skull (disorder)','444867009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_445159008','445159008','http://snomed.info/sct','Linear fracture of vault of skull (disorder)','445159008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_445493000','445493000','http://snomed.info/sct','Closed fracture of vault of skull (disorder)','445493000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_445739004','445739004','http://snomed.info/sct','Friction burn of face (disorder)','445739004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_445832003','445832003','http://snomed.info/sct','Chemical burn of eyelid (disorder)','445832003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_445848002','445848002','http://snomed.info/sct','Deep third degree burn of lip (disorder)','445848002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_445850005','445850005','http://snomed.info/sct','Deep third degree burn of eye region (disorder)','445850005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_446029009','446029009','http://snomed.info/sct','Traumatic injury of blood vessel of head (disorder)','446029009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_446195009','446195009','http://snomed.info/sct','Open depressed fracture of skull (disorder)','446195009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_446234004','446234004','http://snomed.info/sct','Alkaline chemical burn of conjunctival sac (disorder)','446234004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_446554002','446554002','http://snomed.info/sct','Deep third degree burn of head (disorder)','446554002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_446556000','446556000','http://snomed.info/sct','Acid chemical burn of cornea (disorder)','446556000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_446597007','446597007','http://snomed.info/sct','Closed depressed fracture of skull (disorder)','446597007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_446638007','446638007','http://snomed.info/sct','Laceration of skin of eyelid (disorder)','446638007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_446856005','446856005','http://snomed.info/sct','Burn of conjuctival sac (disorder)','446856005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_446896007','446896007','http://snomed.info/sct','Laceration of lower lip (disorder)','446896007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_446897003','446897003','http://snomed.info/sct','Laceration of skin of periocular area (disorder)','446897003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_446904001','446904001','http://snomed.info/sct','Deep third degree burn of forehead (disorder)','446904001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_446905000','446905000','http://snomed.info/sct','Partial thickness burn of face (disorder)','446905000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_447016004','447016004','http://snomed.info/sct','Open fracture of base of skull (disorder)','447016004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_447093008','447093008','http://snomed.info/sct','Deep third degree burn of cheek (disorder)','447093008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_447094002','447094002','http://snomed.info/sct','Alkaline chemical burn of cornea (disorder)','447094002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_447095001','447095001','http://snomed.info/sct','Acid chemical burn of conjunctival sac (disorder)','447095001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_447150006','447150006','http://snomed.info/sct','Friction burn of scalp (disorder)','447150006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_447157009','447157009','http://snomed.info/sct','Epidermal burn of face (disorder)','447157009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_447333000','447333000','http://snomed.info/sct','Burn of ocular adnexa (disorder)','447333000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_447350003','447350003','http://snomed.info/sct','Laceration of eyebrow (disorder)','447350003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_447374000','447374000','http://snomed.info/sct','Full thickness burn of face (disorder)','447374000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_447598006','447598006','http://snomed.info/sct','Deep third degree burn of face (disorder)','447598006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_448331000124101','448331000124101','http://snomed.info/sct','Nondisplaced fracture of frontal bone of skull (disorder)','448331000124101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_44916009','44916009','http://snomed.info/sct','Le Fort''s fracture, type II (disorder)','44916009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_44962001','44962001','http://snomed.info/sct','Open wound of Eustachian tube with complication (disorder)','44962001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_450410005','450410005','http://snomed.info/sct','Intracranial hemorrhage following injury (disorder)','450410005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_451000119106','451000119106','http://snomed.info/sct','Closed injury of head (disorder)','451000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_45659008','45659008','http://snomed.info/sct','Subdural hemorrhage following injury with open intracranial wound AND loss of consciousness (disorder)','45659008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_46766009','46766009','http://snomed.info/sct','Open wound of nasal septum with complication (disorder)','46766009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_47126008','47126008','http://snomed.info/sct','Open wound of face without complication (disorder)','47126008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_473243005','473243005','http://snomed.info/sct','Burn of eye region with burn of face (disorder)','473243005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_473244004','473244004','http://snomed.info/sct','Burn of eye region with epidermal burn of face (disorder)','473244004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_473245003','473245003','http://snomed.info/sct','Burn of eye region with partial thickness burn of face (disorder)','473245003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_473246002','473246002','http://snomed.info/sct','Burn of eye region with full thickness burn of face (disorder)','473246002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_473248001','473248001','http://snomed.info/sct','Burn of eye region with epidermal burn of head and/or neck (disorder)','473248001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_473249009','473249009','http://snomed.info/sct','Burn of eye region with partial thickness burn of head and/or neck (disorder)','473249009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_473250009','473250009','http://snomed.info/sct','Burn of eye region with full thickness burn of head and/or neck (disorder)','473250009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_473252001','473252001','http://snomed.info/sct','Burn of multiple sites of face without involvement of eye proper (disorder)','473252001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_473253006','473253006','http://snomed.info/sct','Epidermal burn of multiple sites of face without involvement of eye proper (disorder)','473253006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_473254000','473254000','http://snomed.info/sct','Partial thickness burn of multiple sites of face without involvement of eye proper (disorder)','473254000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_473255004','473255004','http://snomed.info/sct','Full thickness burn of multiple sites of face without involvement of eye proper (disorder)','473255004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_473256003','473256003','http://snomed.info/sct','Burn of multiple sites of head without involvement of eye proper (disorder)','473256003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_473257007','473257007','http://snomed.info/sct','Epidermal burn of multiple sites of head without involvement of eye proper (disorder)','473257007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_473258002','473258002','http://snomed.info/sct','Partial thickness burn of multiple sites of head without involvement of eye proper (disorder)','473258002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_473259005','473259005','http://snomed.info/sct','Full thickness burn of multiple sites of head without involvement of eye proper (disorder)','473259005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_4788002','4788002','http://snomed.info/sct','Closed fracture of zygoma (disorder)','4788002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_4821001','4821001','http://snomed.info/sct','Contusion of cheek (disorder)','4821001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_48260006','48260006','http://snomed.info/sct','Deep third degree burn of scalp (disorder)','48260006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_48407005','48407005','http://snomed.info/sct','Le Fort''s fracture (disorder)','48407005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_48466003','48466003','http://snomed.info/sct','Fracture of vault of skull (disorder)','48466003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_49002004','49002004','http://snomed.info/sct','Open wound of multiple sites of ear without complication (disorder)','49002004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_49128003','49128003','http://snomed.info/sct','Multiple fractures of skull (disorder)','49128003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_49252004','49252004','http://snomed.info/sct','Otitic barotrauma (disorder)','49252004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_49346003','49346003','http://snomed.info/sct','Closed fracture of orbital floor (blow-out) (disorder)','49346003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_50228009','50228009','http://snomed.info/sct','Contusion of ear (disorder)','50228009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_50683006','50683006','http://snomed.info/sct','Open wound of ear with complication (disorder)','50683006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_50882004','50882004','http://snomed.info/sct','Traumatic ulcer of oral mucosa (disorder)','50882004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_52102006','52102006','http://snomed.info/sct','Enophthalmos due to trauma (disorder)','52102006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_52271005','52271005','http://snomed.info/sct','Fracture of sphenoid bone (disorder)','52271005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_5251007','5251007','http://snomed.info/sct','Subarachnoid hemorrhage following injury with open intracranial wound (disorder)','5251007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_52945003','52945003','http://snomed.info/sct','Contusion of mandibular joint area (disorder)','52945003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_53089008','53089008','http://snomed.info/sct','Open wound of palate without complication (disorder)','53089008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_54463008','54463008','http://snomed.info/sct','Open wound of gum with complication (disorder)','54463008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_54634002','54634002','http://snomed.info/sct','Open wound of cheek with complication (disorder)','54634002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_56372002','56372002','http://snomed.info/sct','Open wound of eyebrow with complication (disorder)','56372002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_56697009','56697009','http://snomed.info/sct','Crushing injury of scalp (disorder)','56697009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_56716005','56716005','http://snomed.info/sct','Full thickness burn of scalp (disorder)','56716005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_56863004','56863004','http://snomed.info/sct','Closed fracture of orbit (disorder)','56863004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_5708009','5708009','http://snomed.info/sct','Open fracture of zygomatic arch (disorder)','5708009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_58340008','58340008','http://snomed.info/sct','Epidermal burn of nose (disorder)','58340008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_60076001','60076001','http://snomed.info/sct','Open wound of scalp without complication (disorder)','60076001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_60203004','60203004','http://snomed.info/sct','Abrasion and/or friction burn of gum with infection (disorder)','60203004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_60716000','60716000','http://snomed.info/sct','Open wound of nasal cavity with complication (disorder)','60716000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_60897004','60897004','http://snomed.info/sct','Contusion of nose (disorder)','60897004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_609362004','609362004','http://snomed.info/sct','Conjunctival abrasion (disorder)','609362004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_61202000','61202000','http://snomed.info/sct','Open fracture of symphysis of body of mandible (disorder)','61202000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_61383005','61383005','http://snomed.info/sct','Abrasion and/or friction burn of ear with infection (disorder)','61383005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_62104005','62104005','http://snomed.info/sct','Open wound of cheek without complication (disorder)','62104005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_62603000','62603000','http://snomed.info/sct','Abrasion and/or friction burn of scalp without infection (disorder)','62603000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_62635000','62635000','http://snomed.info/sct','Superficial injury of cornea (disorder)','62635000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_63542002','63542002','http://snomed.info/sct','Acid chemical burn of cornea AND/OR conjunctival sac (disorder)','63542002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_63669006','63669006','http://snomed.info/sct','Le Fort''s fracture, type I (disorder)','63669006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_6378004','6378004','http://snomed.info/sct','Injury of multiple blood vessels of head AND/OR neck (disorder)','6378004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_63811003','63811003','http://snomed.info/sct','Abrasion and/or friction burn of lip without infection (disorder)','63811003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_63943002','63943002','http://snomed.info/sct','Superficial injury of eyelid AND/OR periocular area (disorder)','63943002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_640080131000119107','640080131000119107','http://snomed.info/sct','Closed fracture of lateral wall of left orbit (disorder)','640080131000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_64458007','64458007','http://snomed.info/sct','Contusion of lip (disorder)','64458007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_65189006','65189006','http://snomed.info/sct','Extradural hemorrhage following injury with open intracranial wound (disorder)','65189006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_65648007','65648007','http://snomed.info/sct','Open fracture of superior maxilla (disorder)','65648007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_65752003','65752003','http://snomed.info/sct','Closed subcondylar fracture of mandible (disorder)','65752003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_65759007','65759007','http://snomed.info/sct','Injury of mouth (disorder)','65759007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_66176005','66176005','http://snomed.info/sct','Abrasion and/or friction burn of face without infection (disorder)','66176005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_66517001','66517001','http://snomed.info/sct','Closed fracture of body of mandible (disorder)','66517001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_66578000','66578000','http://snomed.info/sct','Abrasion and/or friction burn of cheek with infection (disorder)','66578000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_66725002','66725002','http://snomed.info/sct','Glaucoma due to perforating injury (disorder)','66725002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_66830009','66830009','http://snomed.info/sct','Open wound of nose with complication (disorder)','66830009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_67070005','67070005','http://snomed.info/sct','Crushing injury of ear (disorder)','67070005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_6733004','6733004','http://snomed.info/sct','Abrasion and/or friction burn of ear without infection (disorder)','6733004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_67543006','67543006','http://snomed.info/sct','Open wound of nasal sinus with complication (disorder)','67543006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_68241007','68241007','http://snomed.info/sct','Glaucoma associated with ocular trauma (disorder)','68241007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_68279002','68279002','http://snomed.info/sct','Open wound of nasal septum without complication (disorder)','68279002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_69271009','69271009','http://snomed.info/sct','Crushing injury of cheek (disorder)','69271009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_69425000','69425000','http://snomed.info/sct','Open fracture of body of mandible (disorder)','69425000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_69820004','69820004','http://snomed.info/sct','Injury of optic chiasm (disorder)','69820004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_698406006','698406006','http://snomed.info/sct','Rupture of eyeball due to and after burn injury (disorder)','698406006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_698518004','698518004','http://snomed.info/sct','Abrasion of tooth extending into dentine (disorder)','698518004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_698522009','698522009','http://snomed.info/sct','Abrasion of tooth extending into pulp (disorder)','698522009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_698523004','698523004','http://snomed.info/sct','Abrasion of tooth limited to enamel (disorder)','698523004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_698616008','698616008','http://snomed.info/sct','Loss of consciousness co-occurrent and due to closed fracture of vault of skull (disorder)','698616008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_698617004','698617004','http://snomed.info/sct','Concussion co-occurrent and due to closed fracture of vault of skull (disorder)','698617004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_698620007','698620007','http://snomed.info/sct','Closed fracture of base of skull with loss of consciousness (disorder)','698620007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_698621006','698621006','http://snomed.info/sct','Concussion co-occurrent and due to closed fracture of base of skull (disorder)','698621006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_698780001','698780001','http://snomed.info/sct','Burn of cornea and conjunctival sac (disorder)','698780001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_698997000','698997000','http://snomed.info/sct','Injury of multiple blood vessels of head (disorder)','698997000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_699001001','699001001','http://snomed.info/sct','Crush injury of face and scalp (disorder)','699001001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_699045001','699045001','http://snomed.info/sct','Closed fracture of frontal sinus (disorder)','699045001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_699059008','699059008','http://snomed.info/sct','Injury to superficial nerves of head (disorder)','699059008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_699061004','699061004','http://snomed.info/sct','Injury of face and neck (disorder)','699061004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_699394008','699394008','http://snomed.info/sct','Flash burn of eye (disorder)','699394008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_700506009','700506009','http://snomed.info/sct','Non-accidental traumatic head injury to child (disorder)','700506009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_70171009','70171009','http://snomed.info/sct','Open wound of alveolar process with complication (disorder)','70171009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_70345001','70345001','http://snomed.info/sct','Open wound of multiple sites of nose with complication (disorder)','70345001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_707302008','707302008','http://snomed.info/sct','Self inflicted injury of lip (disorder)','707302008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_708791005','708791005','http://snomed.info/sct','Laceration of mouth (disorder)','708791005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_709458007','709458007','http://snomed.info/sct','Laceration of nasal septum with complication (disorder)','709458007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_709459004','709459004','http://snomed.info/sct','Laceration of nasal sinus with complication (disorder)','709459004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_712661008','712661008','http://snomed.info/sct','Blast injury to eye region (disorder)','712661008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_712702008','712702008','http://snomed.info/sct','Eyeball wound due to penetrating foreign body (disorder)','712702008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_712733005','712733005','http://snomed.info/sct','Traumatic injury of optic disk (disorder)','712733005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_713344009','713344009','http://snomed.info/sct','Gingival disease due to traumatic injury (disorder)','713344009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_714634009','714634009','http://snomed.info/sct','Gingival disease due to chemical burn (disorder)','714634009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_71491003','71491003','http://snomed.info/sct','Open wound of scalp with complication (disorder)','71491003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_71642004','71642004','http://snomed.info/sct','Fracture of skull (disorder)','71642004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_718069002','718069002','http://snomed.info/sct','Gingival disease due to traumatic physical injury (disorder)','718069002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_721316001','721316001','http://snomed.info/sct','Open bite wound of head (disorder)','721316001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_721317005','721317005','http://snomed.info/sct','Fracture of squamous part of temporal bone of skull (disorder)','721317005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_721318000','721318000','http://snomed.info/sct','Fracture of squamous part of occipital bone of skull (disorder)','721318000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_721319008','721319008','http://snomed.info/sct','Fracture of occipital condyle of skull type I (disorder)','721319008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_721320002','721320002','http://snomed.info/sct','Fracture of occipital condyle of skull type II (disorder)','721320002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_721321003','721321003','http://snomed.info/sct','Fracture of occipital condyle of skull type III (disorder)','721321003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_721322005','721322005','http://snomed.info/sct','Fracture of condylar process of mandible (disorder)','721322005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_721323000','721323000','http://snomed.info/sct','Fracture of subcondylar process of mandible (disorder)','721323000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_721324006','721324006','http://snomed.info/sct','Fracture of coronoid process of mandible (disorder)','721324006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_721325007','721325007','http://snomed.info/sct','Fracture of ramus of mandible (disorder)','721325007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_721326008','721326008','http://snomed.info/sct','Fracture of angle of mandible (disorder)','721326008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_721327004','721327004','http://snomed.info/sct','Fracture of symphysis of mandible (disorder)','721327004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_721328009','721328009','http://snomed.info/sct','Injury of intracranial vessel of head (disorder)','721328009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_721329001','721329001','http://snomed.info/sct','Closed injury of eyeball (disorder)','721329001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_721334002','721334002','http://snomed.info/sct','Complete traumatic amputation of external ear (disorder)','721334002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_721335001','721335001','http://snomed.info/sct','Traumatic partial amputation of external ear (disorder)','721335001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_721336000','721336000','http://snomed.info/sct','Complete traumatic amputation of nose (disorder)','721336000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_721337009','721337009','http://snomed.info/sct','Traumatic partial amputation of nose (disorder)','721337009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_721338004','721338004','http://snomed.info/sct','Laceration of muscle of head (disorder)','721338004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_721339007','721339007','http://snomed.info/sct','Laceration of tendon of head (disorder)','721339007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_721340009','721340009','http://snomed.info/sct','Laceration of fascia of head (disorder)','721340009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_721352002','721352002','http://snomed.info/sct','Traumatic subluxation of atlanto-occipital joint (disorder)','721352002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_721353007','721353007','http://snomed.info/sct','Traumatic complete dislocation of atlanto-occipital joint (disorder)','721353007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_722571004','722571004','http://snomed.info/sct','Linear fracture of skull due to birth trauma (disorder)','722571004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_722572006','722572006','http://snomed.info/sct','Injury of facial bone due to birth trauma (disorder)','722572006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_722573001','722573001','http://snomed.info/sct','Fracture of mandible due to birth trauma (disorder)','722573001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_722575008','722575008','http://snomed.info/sct','Traumatic hemorrhage of cerebellum due to birth trauma (disorder)','722575008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_722576009','722576009','http://snomed.info/sct','Injury of brain stem due to birth trauma (disorder)','722576009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_722608004','722608004','http://snomed.info/sct','Superficial bite of scalp (disorder)','722608004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_722609007','722609007','http://snomed.info/sct','Laceration with foreign body of head (disorder)','722609007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_722610002','722610002','http://snomed.info/sct','Puncture wound without foreign body of head (disorder)','722610002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_722612005','722612005','http://snomed.info/sct','Multiple open wounds of head (disorder)','722612005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_722613000','722613000','http://snomed.info/sct','Penetrating wound of eyeball without foreign body (disorder)','722613000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_722628000','722628000','http://snomed.info/sct','Traumatic hemorrhage of subdural space of infratentorial region (disorder)','722628000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_722635008','722635008','http://snomed.info/sct','Traumatic amputation of part of head (disorder)','722635008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_722662000','722662000','http://snomed.info/sct','Laceration of head without foreign body (disorder)','722662000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_722701000','722701000','http://snomed.info/sct','Puncture wound of head with foreign body (disorder)','722701000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_722704008','722704008','http://snomed.info/sct','Traumatic amputation of nose (disorder)','722704008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_72282001','72282001','http://snomed.info/sct','Open wound of multiple sites of nose without complication (disorder)','72282001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_722904004','722904004','http://snomed.info/sct','Depressed fracture of skull due to birth trauma (disorder)','722904004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_722905003','722905003','http://snomed.info/sct','Intracranial laceration due to birth trauma (disorder)','722905003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_722906002','722906002','http://snomed.info/sct','Intracranial hemorrhage due to birth trauma (disorder)','722906002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_722907006','722907006','http://snomed.info/sct','Contusion of cerebellum due to birth trauma (disorder)','722907006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_722908001','722908001','http://snomed.info/sct','Contusion of brain due to birth trauma (disorder)','722908001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_722909009','722909009','http://snomed.info/sct','Traumatic hemorrhage of intracranial epidural space due to birth trauma (disorder)','722909009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_722983008','722983008','http://snomed.info/sct','Headache due to injury of head and neck (finding)','722983008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_722993001','722993001','http://snomed.info/sct','Complex wound of head (disorder)','722993001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_723135002','723135002','http://snomed.info/sct','Fracture of squama of frontal bone of skull (disorder)','723135002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_723140005','723140005','http://snomed.info/sct','Complex wound of head with retained external material (disorder)','723140005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_723141009','723141009','http://snomed.info/sct','Intracranial hemorrhage co-occurrent and due to complex wound of head (disorder)','723141009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_723142002','723142002','http://snomed.info/sct','Complex through and through perforation wound of head (disorder)','723142002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_723143007','723143007','http://snomed.info/sct','Complex wound of head with avulsive loss of part of skull and cranial contents (disorder)','723143007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_725002006','725002006','http://snomed.info/sct','Injury of extracranial vessel of head (disorder)','725002006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_725003001','725003001','http://snomed.info/sct','Injury of muscle of head (disorder)','725003001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_725004007','725004007','http://snomed.info/sct','Injury of tendon of head (disorder)','725004007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_725005008','725005008','http://snomed.info/sct','Injury of fascia of head (disorder)','725005008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_72512006','72512006','http://snomed.info/sct','Abrasion and/or friction burn of nose with infection (disorder)','72512006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_733196009','733196009','http://snomed.info/sct','Traumatic dislocation of atlanto-occipital joint (disorder)','733196009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_733308009','733308009','http://snomed.info/sct','Traumatic orbital hemorrhage (disorder)','733308009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_733313008','733313008','http://snomed.info/sct','Keratitis due to trauma (disorder)','733313008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_733322009','733322009','http://snomed.info/sct','Injury of sphincter pupillae muscle (disorder)','733322009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_73455000','73455000','http://snomed.info/sct','Open wound of floor of mouth without complication (disorder)','73455000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_73518002','73518002','http://snomed.info/sct','Burn of lip (disorder)','73518002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_73521000119108','73521000119108','http://snomed.info/sct','Closed fracture of medial wall of orbit (disorder)','73521000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_735342003','735342003','http://snomed.info/sct','Multiple injuries of head and chest (disorder)','735342003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_73545001','73545001','http://snomed.info/sct','Full thickness burn of chin (disorder)','73545001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_735645009','735645009','http://snomed.info/sct','Contusion of head (disorder)','735645009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_735649003','735649003','http://snomed.info/sct','Injury of bilateral optic tracts (disorder)','735649003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_735650003','735650003','http://snomed.info/sct','Closed traumatic injury of bilateral eyeballs (disorder)','735650003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_735651004','735651004','http://snomed.info/sct','Traumatic avulsion of bilateral eyes (disorder)','735651004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_735652006','735652006','http://snomed.info/sct','Laceration of bilateral eyes co-occurrent with prolapse of intraocular tissue (disorder)','735652006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_735654007','735654007','http://snomed.info/sct','Laceration of bilateral eyes co-occurrent with loss of intraocular tissue (disorder)','735654007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_735657000','735657000','http://snomed.info/sct','Penetrating injury of both eyeballs (disorder)','735657000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_735658005','735658005','http://snomed.info/sct','Perforating injury of both eyeballs (disorder)','735658005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_735661006','735661006','http://snomed.info/sct','Traumatic hemorrhage of retina (disorder)','735661006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_735922000','735922000','http://snomed.info/sct','Macular hole due to traumatic injury (disorder)','735922000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_736650005','736650005','http://snomed.info/sct','Burn of mucous membrane of mouth (disorder)','736650005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_736724002','736724002','http://snomed.info/sct','Erythema of mucous membrane of mouth due to and following traumatic injury (disorder)','736724002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_739032003','739032003','http://snomed.info/sct','Hyperkeratosis of mucous membrane of mouth due to and following traumatic injury (disorder)','739032003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_73973007','73973007','http://snomed.info/sct','Open wound of forehead without complication (disorder)','73973007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_74058003','74058003','http://snomed.info/sct','Open wound of jaw without complication (disorder)','74058003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_74066007','74066007','http://snomed.info/sct','Open wound of mouth without complication (disorder)','74066007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_7407001','7407001','http://snomed.info/sct','Open wound of buccal mucosa with complication (disorder)','7407001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_741070003','741070003','http://snomed.info/sct','Full thickness burn of head and neck (disorder)','741070003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_75507000','75507000','http://snomed.info/sct','Subarachnoid hemorrhage following injury with open intracranial wound AND loss of consciousness (disorder)','75507000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_7559009','7559009','http://snomed.info/sct','Open wound of multiple sites of ear with complication (disorder)','7559009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_75767000','75767000','http://snomed.info/sct','Abrasion and/or friction burn of cheek without infection (disorder)','75767000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_75769002','75769002','http://snomed.info/sct','Open wound of nasal cavity without complication (disorder)','75769002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_7581004','7581004','http://snomed.info/sct','Superficial injury of conjunctiva (disorder)','7581004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_76174009','76174009','http://snomed.info/sct','Closed fracture of alveolar border of body of mandible (disorder)','76174009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_762354003','762354003','http://snomed.info/sct','Persistent headache due to and following injury of head (disorder)','762354003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_762362006','762362006','http://snomed.info/sct','Traumatic injury of left optic tract (disorder)','762362006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_762363001','762363001','http://snomed.info/sct','Traumatic injury of right optic tract (disorder)','762363001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_762364007','762364007','http://snomed.info/sct','Traumatic avulsion of left eye (disorder)','762364007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_762365008','762365008','http://snomed.info/sct','Traumatic avulsion of right eye (disorder)','762365008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_762366009','762366009','http://snomed.info/sct','Prolapse of left eye co-occurrent with laceration (disorder)','762366009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_762367000','762367000','http://snomed.info/sct','Prolapse of right eye co-occurrent with laceration (disorder)','762367000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_762370001','762370001','http://snomed.info/sct','Loss of tissue of left eye co-occurrent with laceration (disorder)','762370001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_762371002','762371002','http://snomed.info/sct','Loss of tissue of right eye co-occurrent with laceration (disorder)','762371002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_762466008','762466008','http://snomed.info/sct','Superficial partial thickness burn of head (disorder)','762466008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_762467004','762467004','http://snomed.info/sct','Deep partial thickness burn of head (disorder)','762467004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_762468009','762468009','http://snomed.info/sct','Complex burn of head (disorder)','762468009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_762470000','762470000','http://snomed.info/sct','Superficial partial thickness burn of face (disorder)','762470000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_762471001','762471001','http://snomed.info/sct','Deep partial thickness burn of face (disorder)','762471001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_762472008','762472008','http://snomed.info/sct','Complex burn of face (disorder)','762472008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_762608003','762608003','http://snomed.info/sct','Traumatic amputation of lip (disorder)','762608003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_76362004','76362004','http://snomed.info/sct','Superficial injury of gum with infection (disorder)','76362004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_76371008','76371008','http://snomed.info/sct','Penetrating wound of orbit with foreign body (disorder)','76371008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_765193007','765193007','http://snomed.info/sct','Injury of Eustachian tube (disorder)','765193007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_765194001','765194001','http://snomed.info/sct','Injury of middle ear (disorder)','765194001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_76542006','76542006','http://snomed.info/sct','Fracture of frontal sinus (disorder)','76542006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_768012004','768012004','http://snomed.info/sct','Deep impinging overbite with soft tissue destruction (disorder)','768012004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_768840005','768840005','http://snomed.info/sct','Anterior crossbite with destruction of oral mucosa (disorder)','768840005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_770356006','770356006','http://snomed.info/sct','Deep third degree burn of upper and lower lip (disorder)','770356006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_770555009','770555009','http://snomed.info/sct','Burn of eye proper (disorder)','770555009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_770779009','770779009','http://snomed.info/sct','Epidermal burn of skin of upper and lower lip (disorder)','770779009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_770780007','770780007','http://snomed.info/sct','Full thickness burn of skin and subcutaneous tissue of upper and lower lip (disorder)','770780007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_770781006','770781006','http://snomed.info/sct','Deep partial thickness burn of skin of upper and lower lip (disorder)','770781006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_770782004','770782004','http://snomed.info/sct','Superficial partial thickness burn of skin of upper and lower lip (disorder)','770782004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_77260003','77260003','http://snomed.info/sct','Superficial injury of cheek without infection (disorder)','77260003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_775008','775008','http://snomed.info/sct','Open wound of head with complication (disorder)','775008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_7765006','7765006','http://snomed.info/sct','Epidermal burn of scalp (disorder)','7765006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_77768006','77768006','http://snomed.info/sct','Intracranial hemorrhage following injury with open intracranial wound (disorder)','77768006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_78202006','78202006','http://snomed.info/sct','Epidermal burn of lip (disorder)','78202006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_784407005','784407005','http://snomed.info/sct','Massive epicranial subaponeurotic hematoma due to birth trauma (disorder)','784407005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_78598000','78598000','http://snomed.info/sct','Superficial injury of eye (disorder)','78598000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_787519008','787519008','http://snomed.info/sct','Closed blunt force injury to eye (disorder)','787519008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_79167003','79167003','http://snomed.info/sct','Open wound of face with complication (disorder)','79167003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_80340002','80340002','http://snomed.info/sct','Open wound of tongue with complication (disorder)','80340002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_8047003','8047003','http://snomed.info/sct','Open wound of nasal sinus without complication (disorder)','8047003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_81116005','81116005','http://snomed.info/sct','Burn of chin (disorder)','81116005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_812493641000119108','812493641000119108','http://snomed.info/sct','Closed fracture of superior wall of right orbit (disorder)','812493641000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_8135006','8135006','http://snomed.info/sct','Traumatic closed dislocation of temporomandibular joint (disorder)','8135006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_81629009','81629009','http://snomed.info/sct','Traumatic dislocation of temporomandibular joint (disorder)','81629009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_81639003','81639003','http://snomed.info/sct','Closed fracture of nasal bones (disorder)','81639003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_82271004','82271004','http://snomed.info/sct','Injury of head (disorder)','82271004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_82479641000119102','82479641000119102','http://snomed.info/sct','Pressure injury of deep tissue of head (disorder)','82479641000119102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_82601009','82601009','http://snomed.info/sct','Multiple closed fractures of skull AND/OR face without intracranial injury (disorder)','82601009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_83385002','83385002','http://snomed.info/sct','Fracture of parietal bone (disorder)','83385002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_83513002','83513002','http://snomed.info/sct','Open wound of auditory canal without complication (disorder)','83513002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_83969004','83969004','http://snomed.info/sct','Fracture of temporal bone (disorder)','83969004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_84063009','84063009','http://snomed.info/sct','Traumatic deafness, occupational (disorder)','84063009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_84111004','84111004','http://snomed.info/sct','Open fracture of zygoma (disorder)','84111004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_8457007','8457007','http://snomed.info/sct','Open wound of Eustachian tube without complication (disorder)','8457007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_84866000','84866000','http://snomed.info/sct','Superficial injury of cheek with infection (disorder)','84866000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_85100000','85100000','http://snomed.info/sct','Open wound of eyeball (disorder)','85100000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_8550001000004107','8550001000004107','http://snomed.info/sct','Fracture of bone of nasal sinus (disorder)','8550001000004107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_85564003','85564003','http://snomed.info/sct','Injury of blood vessels of head AND/OR neck (disorder)','85564003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_85848002','85848002','http://snomed.info/sct','Corneal abrasion (disorder)','85848002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_86018005','86018005','http://snomed.info/sct','Frostbite of face (disorder)','86018005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_860783006','860783006','http://snomed.info/sct','Closed blunt force injury to left eye (disorder)','860783006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_860784000','860784000','http://snomed.info/sct','Closed blunt force injury to right eye (disorder)','860784000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_860882006','860882006','http://snomed.info/sct','Full thickness open wound of eyelid (disorder)','860882006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_86559007','86559007','http://snomed.info/sct','Closed fracture of ramus of mandible (disorder)','86559007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_8656007','8656007','http://snomed.info/sct','Total traumatic cataract (disorder)','8656007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_86704005','86704005','http://snomed.info/sct','Fracture of anterior fossa (disorder)','86704005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_870289005','870289005','http://snomed.info/sct','Partial thickness open wound of eyelid (disorder)','870289005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_870312007','870312007','http://snomed.info/sct','Penetrating wound of eyeball with foreign body (disorder)','870312007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_870322001','870322001','http://snomed.info/sct','Open wound of skin of eyelid (disorder)','870322001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_870548008','870548008','http://snomed.info/sct','Closed fracture of skull with cerebral laceration (disorder)','870548008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_870549000','870549000','http://snomed.info/sct','Closed fracture of skull with cerebral contusion (disorder)','870549000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_870550000','870550000','http://snomed.info/sct','Closed fracture of base of skull with cerebral laceration (disorder)','870550000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_870551001','870551001','http://snomed.info/sct','Closed fracture of base of skull with cerebral contusion (disorder)','870551001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_87177002','87177002','http://snomed.info/sct','Burn of mouth (disorder)','87177002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_87362004','87362004','http://snomed.info/sct','Open wound of ear without complication (disorder)','87362004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_874915009','874915009','http://snomed.info/sct','Superficial injury of gum (disorder)','874915009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_874938007','874938007','http://snomed.info/sct','Subdural hemorrhage with open intracranial wound (disorder)','874938007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_879901005','879901005','http://snomed.info/sct','Multiple open fractures of skull (disorder)','879901005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_879902003','879902003','http://snomed.info/sct','Multiple open fractures of facial bones (disorder)','879902003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_88548007','88548007','http://snomed.info/sct','Sinus barotrauma (disorder)','88548007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_88756008','88756008','http://snomed.info/sct','Partial thickness burn of chin (disorder)','88756008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_8891000119108','8891000119108','http://snomed.info/sct','Traumatic blister of gingiva (disorder)','8891000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_89308006','89308006','http://snomed.info/sct','Open wound of palate with complication (disorder)','89308006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_89424006','89424006','http://snomed.info/sct','Open wound of tongue without complication (disorder)','89424006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_895224009','895224009','http://snomed.info/sct','Superficial injury of skin of eyelid (disorder)','895224009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_89614009','89614009','http://snomed.info/sct','Third degree burn of skin of nose (disorder)','89614009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_897601009','897601009','http://snomed.info/sct','Injury of head and/or neck (disorder)','897601009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_90465004','90465004','http://snomed.info/sct','Crushing injury of face (disorder)','90465004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_9269007','9269007','http://snomed.info/sct','Epidermal burn of ear (disorder)','9269007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_9391002','9391002','http://snomed.info/sct','Open wound of multiple sites of mouth without complication (disorder)','9391002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_95223005','95223005','http://snomed.info/sct','Retained old traumatic intraocular foreign body (disorder)','95223005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_95725002','95725002','http://snomed.info/sct','Corneal laceration (disorder)','95725002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_95799000','95799000','http://snomed.info/sct','Scleral laceration (disorder)','95799000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_95848000','95848000','http://snomed.info/sct','Injury of head with otorrhagia (disorder)','95848000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_95850008','95850008','http://snomed.info/sct','Depressed fracture of skull (disorder)','95850008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_95851007','95851007','http://snomed.info/sct','Fracture of orbit (disorder)','95851007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_10872731000119103','10872731000119103','http://snomed.info/sct','Open wound of nose due to dog bite (disorder)','10872731000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_10873411000119105','10873411000119105','http://snomed.info/sct','Open wound of right ear due to dog bite (disorder)','10873411000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_10873451000119106','10873451000119106','http://snomed.info/sct','Open wound of left ear due to dog bite (disorder)','10873451000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_10875551000119108','10875551000119108','http://snomed.info/sct','Open wound of right eyelid due to dog bite (disorder)','10875551000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_10875631000119103','10875631000119103','http://snomed.info/sct','Open wound of left eyelid due to dog bite (disorder)','10875631000119103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_10898251000119106','10898251000119106','http://snomed.info/sct','Open wound of right cheek due to dog bite (disorder)','10898251000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_10898291000119101','10898291000119101','http://snomed.info/sct','Open wound of left cheek due to dog bite (disorder)','10898291000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_10898371000119105','10898371000119105','http://snomed.info/sct','Open wound of lip due to dog bite (disorder)','10898371000119105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_10905711000119100','10905711000119100','http://snomed.info/sct','Open wound of face due to dog bite (disorder)','10905711000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_10905751000119104','10905751000119104','http://snomed.info/sct','Open wound of chin due to dog bite (disorder)','10905751000119104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_10905791000119109','10905791000119109','http://snomed.info/sct','Open wound of jaw due to dog bite (disorder)','10905791000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_10906311000119107','10906311000119107','http://snomed.info/sct','Open wound of head due to dog bite (disorder)','10906311000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_10907361000119107','10907361000119107','http://snomed.info/sct','Gunshot wound of face (disorder)','10907361000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_23051000175105','23051000175105','http://snomed.info/sct','Gunshot wound of head (disorder)','23051000175105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283735006','283735006','http://snomed.info/sct','Dog bite of head and neck (disorder)','283735006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283736007','283736007','http://snomed.info/sct','Dog bite of head (disorder)','283736007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283737003','283737003','http://snomed.info/sct','Dog bite of scalp (disorder)','283737003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283738008','283738008','http://snomed.info/sct','Dog bite of face (disorder)','283738008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283739000','283739000','http://snomed.info/sct','Dog bite of forehead (disorder)','283739000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283740003','283740003','http://snomed.info/sct','Dog bite of eye region (disorder)','283740003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283741004','283741004','http://snomed.info/sct','Dog bite of ear region (disorder)','283741004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283742006','283742006','http://snomed.info/sct','Dog bite of nose (disorder)','283742006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283743001','283743001','http://snomed.info/sct','Dog bite of cheek (disorder)','283743001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283744007','283744007','http://snomed.info/sct','Dog bite of mouth (disorder)','283744007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_10905871000119100','10905871000119100','http://snomed.info/sct','Open wound of face due to animal bite (disorder)','10905871000119100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_10905991000119106','10905991000119106','http://snomed.info/sct','Open wound of face due to cat bite (disorder)','10905991000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_10943311000119108','10943311000119108','http://snomed.info/sct','Contusion of right cerebrum (disorder)','10943311000119108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_10943471000119107','10943471000119107','http://snomed.info/sct','Contusion of left cerebrum (disorder)','10943471000119107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_110030002','110030002','http://snomed.info/sct','Concussion injury of brain (disorder)','110030002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_12589008','12589008','http://snomed.info/sct','Brain stem laceration with open intracranial wound (disorder)','12589008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_127295002','127295002','http://snomed.info/sct','Traumatic brain injury (disorder)','127295002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_127298000','127298000','http://snomed.info/sct','Traumatic brain injury with loss of consciousness (disorder)','127298000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_127299008','127299008','http://snomed.info/sct','Traumatic brain injury with brief loss of consciousness (disorder)','127299008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_127300000','127300000','http://snomed.info/sct','Traumatic brain injury with moderate loss of consciousness (disorder)','127300000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_127301001','127301001','http://snomed.info/sct','Traumatic brain injury with prolonged loss of consciousness (disorder)','127301001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_127302008','127302008','http://snomed.info/sct','Traumatic brain injury with no loss of consciousness (disorder)','127302008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_127303003','127303003','http://snomed.info/sct','Cortex laceration (disorder)','127303003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_127304009','127304009','http://snomed.info/sct','Cerebellar contusion (disorder)','127304009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_127305005','127305005','http://snomed.info/sct','Brain stem contusion (disorder)','127305005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_127306006','127306006','http://snomed.info/sct','Cerebellar laceration (disorder)','127306006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_127307002','127307002','http://snomed.info/sct','Brain stem laceration (disorder)','127307002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_127309004','127309004','http://snomed.info/sct','Intracranial hemorrhage following injury with brief loss of consciousness (disorder)','127309004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_127310009','127310009','http://snomed.info/sct','Intracranial hemorrhage following injury with moderate loss of consciousness (disorder)','127310009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_13752003','13752003','http://snomed.info/sct','Brain injury with open intracranial wound AND loss of consciousness (disorder)','13752003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_14434006','14434006','http://snomed.info/sct','Cerebellar laceration with open intracranial wound AND no loss of consciousness (disorder)','14434006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_16319002','16319002','http://snomed.info/sct','Cortex contusion without open intracranial wound AND with concussion (disorder)','16319002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_17169009','17169009','http://snomed.info/sct','Cerebellar contusion without open intracranial wound AND with loss of consciousness (disorder)','17169009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_17498002','17498002','http://snomed.info/sct','Cortex contusion without open intracranial wound AND with loss of consciousness (disorder)','17498002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_19210000','19210000','http://snomed.info/sct','Brain stem laceration with open intracranial wound AND no loss of consciousness (disorder)','19210000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_19233004','19233004','http://snomed.info/sct','Cerebellar contusion with open intracranial wound AND loss of consciousness (disorder)','19233004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_20899000','20899000','http://snomed.info/sct','Brain stem laceration without open intracranial wound (disorder)','20899000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_209827006','209827006','http://snomed.info/sct','Concussion with less than 1 hour loss of consciousness (disorder)','209827006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_209845006','209845006','http://snomed.info/sct','Cortex contusion with open intracranial wound, with no loss of consciousness (disorder)','209845006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_209864000','209864000','http://snomed.info/sct','Cortex laceration with open intracranial wound, with no loss of consciousness (disorder)','209864000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_209900006','209900006','http://snomed.info/sct','Hind brain laceration with open intracranial wound (disorder)','209900006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_209902003','209902003','http://snomed.info/sct','Hind brain laceration with open intracranial wound, with no loss of consciousness (disorder)','209902003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_210038008','210038008','http://snomed.info/sct','Focal brain injury (disorder)','210038008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_212142000','212142000','http://snomed.info/sct','Visual cortex injury (disorder)','212142000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_213383004','213383004','http://snomed.info/sct','Injuries of brain and cranial nerves with injuries of nerves and spinal cord at neck level (disorder)','213383004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_22819008','22819008','http://snomed.info/sct','Laceration of brain with open intracranial wound (disorder)','22819008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_230763008','230763008','http://snomed.info/sct','Cerebral edema due to trauma (disorder)','230763008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_23713006','23713006','http://snomed.info/sct','Contusion of cerebral cortex (disorder)','23713006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_241993004','241993004','http://snomed.info/sct','Cerebral decompression injury (disorder)','241993004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_262687004','262687004','http://snomed.info/sct','Cerebellar laceration and contusion (disorder)','262687004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_262688009','262688009','http://snomed.info/sct','Cortex laceration and contusion (disorder)','262688009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_262689001','262689001','http://snomed.info/sct','Contusion of cerebrum (disorder)','262689001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_262691009','262691009','http://snomed.info/sct','Laceration of cerebrum (disorder)','262691009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_262692002','262692002','http://snomed.info/sct','Burst lobe of brain (disorder)','262692002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_262693007','262693007','http://snomed.info/sct','Diffuse brain injury (disorder)','262693007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_262694001','262694001','http://snomed.info/sct','Traumatic generalized cerebral edema (disorder)','262694001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_262695000','262695000','http://snomed.info/sct','Traumatic focal cerebral edema (disorder)','262695000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_264534009','264534009','http://snomed.info/sct','Hypothalamic injury (disorder)','264534009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_269144002','269144002','http://snomed.info/sct','Cerebral laceration and contusion (disorder)','269144002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_275362006','275362006','http://snomed.info/sct','Falx laceration (disorder)','275362006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_275382005','275382005','http://snomed.info/sct','Cerebral trauma (disorder)','275382005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_28155008','28155008','http://snomed.info/sct','Extradural hemorrhage following injury with open intracranial wound AND concussion (disorder)','28155008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_28188001','28188001','http://snomed.info/sct','Brain injury with open intracranial wound (disorder)','28188001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283789008','283789008','http://snomed.info/sct','Animal bite wound of head and neck (disorder)','283789008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283790004','283790004','http://snomed.info/sct','Animal bite wound of head (disorder)','283790004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283791000','283791000','http://snomed.info/sct','Animal bite of scalp (disorder)','283791000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283792007','283792007','http://snomed.info/sct','Animal bite of face (disorder)','283792007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283793002','283793002','http://snomed.info/sct','Animal bite of forehead (disorder)','283793002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283794008','283794008','http://snomed.info/sct','Animal bite of eye region (disorder)','283794008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283795009','283795009','http://snomed.info/sct','Animal bite of ear region (disorder)','283795009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283796005','283796005','http://snomed.info/sct','Animal bite of nose (disorder)','283796005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283798006','283798006','http://snomed.info/sct','Animal bite of cheek (disorder)','283798006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_283799003','283799003','http://snomed.info/sct','Animal bite of mouth (disorder)','283799003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_29807001','29807001','http://snomed.info/sct','Brain stem contusion without open intracranial wound AND with loss of consciousness (disorder)','29807001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_30031007','30031007','http://snomed.info/sct','Cerebellar laceration without open intracranial wound (disorder)','30031007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_30371007','30371007','http://snomed.info/sct','Cerebral laceration AND contusion co-occurrent and due to open fracture of base of skull (disorder)','30371007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_30858001','30858001','http://snomed.info/sct','Cerebellar laceration with open intracranial wound (disorder)','30858001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_311826007','311826007','http://snomed.info/sct','Traumatic cerebral edema with open intracranial wound (disorder)','311826007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_3119002','3119002','http://snomed.info/sct','Brain stem laceration with open intracranial wound AND loss of consciousness (disorder)','3119002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_32106001','32106001','http://snomed.info/sct','Cortex contusion without open intracranial wound (disorder)','32106001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_32415004','32415004','http://snomed.info/sct','Cerebellar contusion without open intracranial wound AND with concussion (disorder)','32415004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_329671000119106','329671000119106','http://snomed.info/sct','Traumatic subarachnoid hemorrhage with loss of consciousness (disorder)','329671000119106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_33332005','33332005','http://snomed.info/sct','Brain injury without open intracranial wound AND with concussion (disorder)','33332005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_34663006','34663006','http://snomed.info/sct','Contusion of brain (disorder)','34663006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_371050006','371050006','http://snomed.info/sct','Traumatic intracranial subdural hematoma with brief loss of consciousness (disorder)','371050006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_41222005','41222005','http://snomed.info/sct','Brain stem laceration with open intracranial wound AND concussion (disorder)','41222005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_41870008','41870008','http://snomed.info/sct','Cortex laceration with open intracranial wound AND loss of consciousness (disorder)','41870008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_43262000','43262000','http://snomed.info/sct','Subdural hemorrhage following injury with open intracranial wound AND concussion (disorder)','43262000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_447396006','447396006','http://snomed.info/sct','Concussion injury of cerebrum (disorder)','447396006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_450418003','450418003','http://snomed.info/sct','Cerebral hemorrhage due to trauma (disorder)','450418003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_46966000','46966000','http://snomed.info/sct','Cerebral compression due to injury (disorder)','46966000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_48518008','48518008','http://snomed.info/sct','Subarachnoid hemorrhage following injury with open intracranial wound AND concussion (disorder)','48518008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_5202009','5202009','http://snomed.info/sct','Brain injury with open intracranial wound AND concussion (disorder)','5202009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_52888005','52888005','http://snomed.info/sct','Brain stem contusion without open intracranial wound (disorder)','52888005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_53267002','53267002','http://snomed.info/sct','Brain injury without open intracranial wound AND with loss of consciousness (disorder)','53267002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_55702009','55702009','http://snomed.info/sct','Laceration of brain without open intracranial wound (disorder)','55702009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_57739006','57739006','http://snomed.info/sct','Cerebellar contusion without open intracranial wound (disorder)','57739006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_59748008','59748008','http://snomed.info/sct','Cortex laceration with open intracranial wound (disorder)','59748008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_59918000','59918000','http://snomed.info/sct','Cerebellar laceration with open intracranial wound AND concussion (disorder)','59918000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_62106007','62106007','http://snomed.info/sct','Concussion with no loss of consciousness (disorder)','62106007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_62564004','62564004','http://snomed.info/sct','Concussion with loss of consciousness (disorder)','62564004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_66393002','66393002','http://snomed.info/sct','Brain stem contusion with open intracranial wound AND loss of consciousness (disorder)','66393002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_698618009','698618009','http://snomed.info/sct','Loss of consciousness co-occurrent and due to open fracture of vault of skull (disorder)','698618009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_698619001','698619001','http://snomed.info/sct','Concussion co-occurrent and due to open fracture of vault of skull (disorder)','698619001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_69875006','69875006','http://snomed.info/sct','Cortex laceration with open intracranial wound AND concussion (disorder)','69875006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_708728007','708728007','http://snomed.info/sct','Traumatic brain injury of unknown intent (disorder)','708728007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_721330006','721330006','http://snomed.info/sct','Diffuse injury of cerebrum (disorder)','721330006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_721331005','721331005','http://snomed.info/sct','Diffuse injury of cerebellum (disorder)','721331005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_721332003','721332003','http://snomed.info/sct','Diffuse injury of brainstem (disorder)','721332003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_721333008','721333008','http://snomed.info/sct','Crush injury of brain (disorder)','721333008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_722614006','722614006','http://snomed.info/sct','Focal non-hemorrhagic contusion of cerebrum (disorder)','722614006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_722615007','722615007','http://snomed.info/sct','Focal hemorrhagic contusion of cerebrum (disorder)','722615007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_722616008','722616008','http://snomed.info/sct','Focal laceration of cerebrum (disorder)','722616008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_722617004','722617004','http://snomed.info/sct','Multiple focal injuries of cerebrum (disorder)','722617004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_722618009','722618009','http://snomed.info/sct','Focal non-hemorrhagic contusion of cerebellum (disorder)','722618009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_722619001','722619001','http://snomed.info/sct','Focal traumatic hemorrhage of cerebellum (disorder)','722619001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_722620007','722620007','http://snomed.info/sct','Focal traumatic hematoma of cerebellum (disorder)','722620007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_722622004','722622004','http://snomed.info/sct','Focal non-hemorrhagic contusion of brainstem (disorder)','722622004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_722623009','722623009','http://snomed.info/sct','Focal traumatic hemorrhage of brainstem (disorder)','722623009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_722624003','722624003','http://snomed.info/sct','Focal traumatic hematoma of brainstem (disorder)','722624003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_722625002','722625002','http://snomed.info/sct','Focal laceration of brainstem (disorder)','722625002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_722626001','722626001','http://snomed.info/sct','Multiple focal injuries of cerebellum (disorder)','722626001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_722627005','722627005','http://snomed.info/sct','Focal injury of brainstem (disorder)','722627005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_722630003','722630003','http://snomed.info/sct','Traumatic hemorrhage of cerebral white matter (disorder)','722630003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_722631004','722631004','http://snomed.info/sct','Traumatic hemorrhage of cerebellum (disorder)','722631004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_722632006','722632006','http://snomed.info/sct','Traumatic hemorrhage of brainstem (disorder)','722632006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_722633001','722633001','http://snomed.info/sct','Multiple traumatic hemorrhages of brain tissue (disorder)','722633001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_722702007','722702007','http://snomed.info/sct','Focal laceration of cerebellum (disorder)','722702007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_722703002','722703002','http://snomed.info/sct','Traumatic intraventricular hemorrhage (disorder)','722703002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_723138000','723138000','http://snomed.info/sct','Primary traumatic hemorrhage of brainstem (disorder)','723138000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_723139008','723139008','http://snomed.info/sct','Secondary traumatic hemorrhage of brainstem (disorder)','723139008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_73413009','73413009','http://snomed.info/sct','Cortex contusion with open intracranial wound AND concussion (disorder)','73413009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_7360001000004106','7360001000004106','http://snomed.info/sct','Facial fracture due to motor vehicle accident (disorder)','7360001000004106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_736321008','736321008','http://snomed.info/sct','Injury of both visual cortices (disorder)','736321008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_737231005','737231005','http://snomed.info/sct','Traumatic hemorrhage of thalamus (disorder)','737231005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_737232003','737232003','http://snomed.info/sct','Traumatic hemorrhage of basal ganglia (disorder)','737232003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_762353009','762353009','http://snomed.info/sct','Acute headache due to traumatic injury of head (disorder)','762353009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_762436001','762436001','http://snomed.info/sct','Injury of left visual cortex (disorder)','762436001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_762617003','762617003','http://snomed.info/sct','Injury of right visual cortex (disorder)','762617003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_76418009','76418009','http://snomed.info/sct','Concussion with mental confusion AND/OR disorientation without loss of consciousness (disorder)','76418009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_78028004','78028004','http://snomed.info/sct','Brain stem contusion with open intracranial wound AND concussion (disorder)','78028004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_78879009','78879009','http://snomed.info/sct','Intracranial hemorrhage following injury with open intracranial wound AND concussion (disorder)','78879009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_788930004','788930004','http://snomed.info/sct','Focal contusion of brain (disorder)','788930004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_788931000','788931000','http://snomed.info/sct','Focal contusion of occipital lobe (disorder)','788931000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_788932007','788932007','http://snomed.info/sct','Focal contusion of parietal lobe (disorder)','788932007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_788933002','788933002','http://snomed.info/sct','Focal contusion of temporal lobe (disorder)','788933002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_788934008','788934008','http://snomed.info/sct','Focal laceration of brain (disorder)','788934008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_78914008','78914008','http://snomed.info/sct','Laceration of brain (disorder)','78914008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_78968003','78968003','http://snomed.info/sct','Brain stem contusion with open intracranial wound (disorder)','78968003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_79220008','79220008','http://snomed.info/sct','Brain stem contusion without open intracranial wound AND with concussion (disorder)','79220008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_81412002','81412002','http://snomed.info/sct','Cortex contusion with open intracranial wound AND loss of consciousness (disorder)','81412002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_82344002','82344002','http://snomed.info/sct','Cerebellar contusion with open intracranial wound (disorder)','82344002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_84170006','84170006','http://snomed.info/sct','Contusion of brain with open intracranial wound (disorder)','84170006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_84900008','84900008','http://snomed.info/sct','Cerebellar laceration with open intracranial wound AND loss of consciousness (disorder)','84900008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_86125000','86125000','http://snomed.info/sct','Cerebellar contusion with open intracranial wound AND concussion (disorder)','86125000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_870540001','870540001','http://snomed.info/sct','Contusion of hindbrain (disorder)','870540001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_870553003','870553003','http://snomed.info/sct','Open fracture of vault of skull with cerebral laceration (disorder)','870553003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_870554009','870554009','http://snomed.info/sct','Open fracture of vault of skull with cerebral contusion (disorder)','870554009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_870555005','870555005','http://snomed.info/sct','Open fracture of skull with cerebral contusion (disorder)','870555005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_870556006','870556006','http://snomed.info/sct','Open fracture of skull with cerebral laceration (disorder)','870556006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_870563006','870563006','http://snomed.info/sct','Contusion of cerebrum with open intracranial wound (disorder)','870563006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_870565004','870565004','http://snomed.info/sct','Contusion of hindbrain with open intracranial wound (disorder)','870565004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_874937002','874937002','http://snomed.info/sct','Cerebral cortex laceration with concussion (disorder)','874937002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_874939004','874939004','http://snomed.info/sct','Cerebellar laceration with concussion (disorder)','874939004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_874940002','874940002','http://snomed.info/sct','Brain stem laceration with concussion (disorder)','874940002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_874943000','874943000','http://snomed.info/sct','Brain stem laceration with loss of consciousness (disorder)','874943000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_87888006','87888006','http://snomed.info/sct','Cortex contusion with open intracranial wound (disorder)','87888006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_9015001','9015001','http://snomed.info/sct','Brain injury without open intracranial wound (disorder)','9015001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_90429009','90429009','http://snomed.info/sct','Cerebellar laceration without open intracranial wound AND with loss of consciousness (disorder)','90429009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_90768003','90768003','http://snomed.info/sct','Contusion of brain without open intracranial wound (disorder)','90768003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1739_91012008','91012008','http://snomed.info/sct','Repeated concussion of brain (disorder)','91012008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1738_102441005','102441005','http://snomed.info/sct','Exposure to toxic agricultural agents (event)','102441005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1738_102442003','102442003','http://snomed.info/sct','Exposure to toxic agricultural agents, occupational (event)','102442003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1738_274912004','274912004','http://snomed.info/sct','Self poisoning by agricultural chemical (disorder)','274912004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1738_102443008','102443008','http://snomed.info/sct','Exposure to toxic agricultural agents, non-occupational (event)','102443008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1855_B74.8','B74.8','http://hl7.org/fhir/sid/icd-10-cm','Other filariases','B748','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1855_B74.9','B74.9','http://hl7.org/fhir/sid/icd-10-cm','Filariasis, unspecified','B749','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1732_A48.0','A48.0','http://hl7.org/fhir/sid/icd-10-cm','Gas gangrene','A480','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1732_B96.7','B96.7','http://hl7.org/fhir/sid/icd-10-cm','Clostridium perfringens [C. perfringens] as the cause of diseases classified elsewhere','B967','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1856_278484009','278484009','http://snomed.info/sct','Tropical pulmonary eosinophilia (disorder)','278484009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.819_217204009','217204009','http://snomed.info/sct','Carbon monoxide fumes from conflagration in private dwelling (event)','217204009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.819_217205005','217205005','http://snomed.info/sct','Carbon monoxide fumes from conflagration in apartment (event)','217205005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.819_217206006','217206006','http://snomed.info/sct','Carbon monoxide fumes from conflagration in boarding house (event)','217206006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.819_217207002','217207002','http://snomed.info/sct','Carbon monoxide fumes from conflagration in camping place (event)','217207002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.819_217208007','217208007','http://snomed.info/sct','Carbon monoxide fumes from conflagration in travel trailer (event)','217208007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.819_217209004','217209004','http://snomed.info/sct','Carbon monoxide fumes from conflagration in farmhouse (event)','217209004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.819_217210009','217210009','http://snomed.info/sct','Carbon monoxide fumes from conflagration in house (event)','217210009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.819_217211008','217211008','http://snomed.info/sct','Carbon monoxide fumes from conflagration in lodging house (event)','217211008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.819_217212001','217212001','http://snomed.info/sct','Carbon monoxide fumes from conflagration in mobile home (event)','217212001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.819_217213006','217213006','http://snomed.info/sct','Carbon monoxide fumes from conflagration in private garage (event)','217213006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.819_217214000','217214000','http://snomed.info/sct','Carbon monoxide fumes from conflagration in rooming house (event)','217214000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.819_217215004','217215004','http://snomed.info/sct','Carbon monoxide fumes from conflagration in tenement (event)','217215004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.819_217357008','217357008','http://snomed.info/sct','Carbon monoxide fumes from conflagration in barn (event)','217357008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.819_217358003','217358003','http://snomed.info/sct','Carbon monoxide fumes from conflagration in church (event)','217358003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.819_217359006','217359006','http://snomed.info/sct','Carbon monoxide fumes from conflagration in convalescent home (event)','217359006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.819_217361002','217361002','http://snomed.info/sct','Carbon monoxide fumes from conflagration in dormitory of educational institution (event)','217361002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.819_217362009','217362009','http://snomed.info/sct','Carbon monoxide fumes from conflagration in factory (event)','217362009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.819_217363004','217363004','http://snomed.info/sct','Carbon monoxide fumes from conflagration in farm outbuildings (event)','217363004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.819_217364005','217364005','http://snomed.info/sct','Carbon monoxide fumes from conflagration in hospital (event)','217364005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.819_217365006','217365006','http://snomed.info/sct','Carbon monoxide fumes from conflagration in hotel (event)','217365006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.819_217366007','217366007','http://snomed.info/sct','Carbon monoxide fumes from conflagration in school (event)','217366007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.819_217367003','217367003','http://snomed.info/sct','Carbon monoxide fumes from conflagration in store (event)','217367003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.819_217368008','217368008','http://snomed.info/sct','Carbon monoxide fumes from conflagration in theater (event)','217368008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.819_242383002','242383002','http://snomed.info/sct','Accidental exposure to carbon monoxide (event)','242383002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.819_242385009','242385009','http://snomed.info/sct','Accidental exposure to carbon monoxide from domestic gas fire or heater (event)','242385009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.819_242386005','242386005','http://snomed.info/sct','Accidental exposure to carbon monoxide in industry (event)','242386005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.819_830164003','830164003','http://snomed.info/sct','Exposure to carbon monoxide due to fire (event)','830164003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.819_95875007','95875007','http://snomed.info/sct','Exposure to carbon monoxide (event)','95875007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1853_B74.0','B74.0','http://hl7.org/fhir/sid/icd-10-cm','Filariasis due to Wuchereria bancrofti','B740','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1853_B74.1','B74.1','http://hl7.org/fhir/sid/icd-10-cm','Filariasis due to Brugia malayi','B741','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1853_B74.2','B74.2','http://hl7.org/fhir/sid/icd-10-cm','Filariasis due to Brugia timori','B742','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1974_91156005','91156005','http://snomed.info/sct','Infection caused by Baylisascaris (disorder)','91156005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1974_93614002','93614002','http://snomed.info/sct','Infection caused by Baylisascaris procyonis (disorder)','93614002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1854_12975009','12975009','http://snomed.info/sct','Infection caused by Parafilaria (disorder)','12975009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1854_193904008','193904008','http://snomed.info/sct','Filarial infection of conjunctiva (disorder)','193904008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1854_240835000','240835000','http://snomed.info/sct','Subcutaneous filariasis (disorder)','240835000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1854_240848001','240848001','http://snomed.info/sct','Serous cavity filariasis (disorder)','240848001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1854_240851008','240851008','http://snomed.info/sct','Subcutaneous dirofilariasis (disorder)','240851008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1854_243981000119109','243981000119109','http://snomed.info/sct','Pulmonary filariasis (disorder)','243981000119109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1854_30865009','30865009','http://snomed.info/sct','Ozzardian filariasis (disorder)','30865009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1854_403129004','403129004','http://snomed.info/sct','Filarial abscess (disorder)','403129004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1852_187160001','187160001','http://snomed.info/sct','Filariasis caused by Brugia timori (disorder)','187160001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1852_234093002','234093002','http://snomed.info/sct','Chronic Malayan filarial lymphadenitis (disorder)','234093002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1852_234094008','234094008','http://snomed.info/sct','Chronic Timorian filarial lymphadenitis (disorder)','234094008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1852_234106000','234106000','http://snomed.info/sct','Bancroftian filarial chylous ascites (disorder)','234106000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1852_234108004','234108004','http://snomed.info/sct','Bancroftian filarial chylocele (disorder)','234108004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1852_240820001','240820001','http://snomed.info/sct','Lymphatic filariasis (disorder)','240820001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1852_240821002','240821002','http://snomed.info/sct','Early bancroftian filariasis (disorder)','240821002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1852_240822009','240822009','http://snomed.info/sct','Bancroftian filarial fever (disorder)','240822009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1852_240823004','240823004','http://snomed.info/sct','Bancroftian filarial abscess (disorder)','240823004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1852_240824005','240824005','http://snomed.info/sct','Chronic obstructive bancroftian filariasis (disorder)','240824005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1852_240826007','240826007','http://snomed.info/sct','Acute Malayan filariasis (disorder)','240826007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1852_240827003','240827003','http://snomed.info/sct','Malayan filarial fever (disorder)','240827003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1852_240828008','240828008','http://snomed.info/sct','Acute Malayan filarial abscess (disorder)','240828008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1852_240829000','240829000','http://snomed.info/sct','Chronic Malayan filariasis (disorder)','240829000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1852_240831009','240831009','http://snomed.info/sct','Acute Timorian filariasis (disorder)','240831009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1852_240832002','240832002','http://snomed.info/sct','Timorian filarial fever (disorder)','240832002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1852_240833007','240833007','http://snomed.info/sct','Acute Timorian filarial abscess (disorder)','240833007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1852_240834001','240834001','http://snomed.info/sct','Chronic Timorian filariasis (disorder)','240834001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1731_A05.2','A05.2','http://hl7.org/fhir/sid/icd-10-cm','Foodborne Clostridium perfringens [Clostridium welchii] intoxication','A052','2024');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.528_121192004','121192004','http://snomed.info/sct','Dengue virus types 1-4 ribonucleic acid (substance)','121192004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.528_121020003','121020003','http://snomed.info/sct','Antigen of Dengue virus (substance)','121020003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.528_121182007','121182007','http://snomed.info/sct','Deoxyribonucleic acid of Dengue virus (substance)','121182007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.528_243604005','243604005','http://snomed.info/sct','Dengue virus subgroup (organism)','243604005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.528_34348001','34348001','http://snomed.info/sct','Dengue virus (organism)','34348001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.528_36700002','36700002','http://snomed.info/sct','Dengue virus, type 4 (organism)','36700002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.528_41328007','41328007','http://snomed.info/sct','Dengue virus, type 2 (organism)','41328007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.528_60588009','60588009','http://snomed.info/sct','Dengue virus, type 1 (organism)','60588009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.528_707875002','707875002','http://snomed.info/sct','Ribonucleic acid of Dengue virus 1 (substance)','707875002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.528_707876001','707876001','http://snomed.info/sct','Ribonucleic acid of Dengue virus 2 (substance)','707876001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.528_707877005','707877005','http://snomed.info/sct','Ribonucleic acid of Dengue virus 3 (substance)','707877005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.528_707878000','707878000','http://snomed.info/sct','Ribonucleic acid of Dengue virus 4 (substance)','707878000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.528_783725005','783725005','http://snomed.info/sct','Ribonucleic acid of Dengue virus (substance)','783725005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.528_8467002','8467002','http://snomed.info/sct','Dengue virus, type 3 (organism)','8467002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.408_121112003','121112003','http://snomed.info/sct','Deoxyribonucleic acid of Hepatitis B virus (substance)','121112003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.408_121184008','121184008','http://snomed.info/sct','Ribosomal ribonucleic acid of Hepatitis B virus (substance)','121184008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.408_1296695001','1296695001','http://snomed.info/sct','Antigen of Hepatitis B virus preS1 recombinant surface protein (substance)','1296695001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.408_1296696000','1296696000','http://snomed.info/sct','Antigen of Hepatitis B virus preS2 recombinant surface protein (substance)','1296696000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.408_1296747004','1296747004','http://snomed.info/sct','Antigen of Hepatitis B virus S recombinant surface protein (substance)','1296747004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.408_1296750001','1296750001','http://snomed.info/sct','Antigen of Hepatitis B virus recombinant surface antigen adsorbed (substance)','1296750001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.408_13105002','13105002','http://snomed.info/sct','Antigen of Hepatitis B virus subtype ayr surface protein (substance)','13105002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.408_165806002','165806002','http://snomed.info/sct','Hepatitis B surface antigen detected (finding)','165806002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.408_165807006','165807006','http://snomed.info/sct','Hepatitis Be antigen detected (finding)','165807006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.408_22290004','22290004','http://snomed.info/sct','Antigen of Hepatitis B virus surface protein (substance)','22290004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.408_303233001','303233001','http://snomed.info/sct','Antigen of Hepatitis B virus (substance)','303233001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.408_39082004','39082004','http://snomed.info/sct','Antigen of Hepatitis B virus core protein (substance)','39082004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.408_52680001','52680001','http://snomed.info/sct','Antigen of Hepatitis B virus subtype adr surface protein (substance)','52680001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.408_60605004','60605004','http://snomed.info/sct','Antigen of Hepatitis B virus e protein (substance)','60605004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.408_63350005','63350005','http://snomed.info/sct','Antigen of Hepatitis B virus subtype adw surface protein (substance)','63350005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.408_703886001','703886001','http://snomed.info/sct','Hepatitis B virus genotype A (organism)','703886001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.408_703887005','703887005','http://snomed.info/sct','Hepatitis B virus genotype B (organism)','703887005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.408_703888000','703888000','http://snomed.info/sct','Hepatitis B virus genotype C (organism)','703888000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.408_703889008','703889008','http://snomed.info/sct','Hepatitis B virus genotype D (organism)','703889008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.408_703890004','703890004','http://snomed.info/sct','Hepatitis B virus genotype E (organism)','703890004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.408_703891000','703891000','http://snomed.info/sct','Hepatitis B virus genotype F (organism)','703891000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.408_703892007','703892007','http://snomed.info/sct','Hepatitis B virus genotype G (organism)','703892007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.408_703893002','703893002','http://snomed.info/sct','Hepatitis B virus genotype H (organism)','703893002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.408_708281003','708281003','http://snomed.info/sct','Deoxyribonucleic acid of Hepatitis B virus polymerase (substance)','708281003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.408_716076002','716076002','http://snomed.info/sct','Antigen of Hepatitis B virus recombinant surface protein (substance)','716076002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.408_73661005','73661005','http://snomed.info/sct','Antigen of Hepatitis B virus subtype ayw surface protein (substance)','73661005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.408_81665004','81665004','http://snomed.info/sct','Hepatitis B virus (organism)','81665004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.409_121022006','121022006','http://snomed.info/sct','Antigen of Hepacivirus C (substance)','121022006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.409_121185009','121185009','http://snomed.info/sct','Ribosomal ribonucleic acid of Hepatitis C virus (substance)','121185009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.409_121204002','121204002','http://snomed.info/sct','Ribonucleic acid of Hepatitis C virus (substance)','121204002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.409_371140008','371140008','http://snomed.info/sct','Hepatitis C viral ribonucleic acid genotype 1A detected by polymerase chain reaction (finding)','371140008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.409_603413005','603413005','http://snomed.info/sct','Hepatitis C virus subtype 1a (organism)','603413005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.409_603414004','603414004','http://snomed.info/sct','Hepatitis C virus subtype 1b (organism)','603414004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.409_603415003','603415003','http://snomed.info/sct','Hepatitis C virus subtype 2a (organism)','603415003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.409_603416002','603416002','http://snomed.info/sct','Hepatitis C virus subtype 2b (organism)','603416002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.409_603417006','603417006','http://snomed.info/sct','Hepatitis C virus subtype 3a (organism)','603417006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.409_603418001','603418001','http://snomed.info/sct','Hepatitis C virus subtype 3b (organism)','603418001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.409_603419009','603419009','http://snomed.info/sct','Hepatitis C virus subtype 5a (organism)','603419009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.409_603420003','603420003','http://snomed.info/sct','Hepatitis C virus subtype 6a (organism)','603420003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.409_603421004','603421004','http://snomed.info/sct','Hepatitis C virus subtype 4a (organism)','603421004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.409_603422006','603422006','http://snomed.info/sct','Hepatitis C virus genotype 1 (organism)','603422006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.409_603423001','603423001','http://snomed.info/sct','Hepatitis C virus genotype 2 (organism)','603423001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.409_603424007','603424007','http://snomed.info/sct','Hepatitis C virus genotype 3 (organism)','603424007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.409_603425008','603425008','http://snomed.info/sct','Hepatitis C virus genotype 4 (organism)','603425008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.409_603426009','603426009','http://snomed.info/sct','Hepatitis C virus genotype 5 (organism)','603426009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.409_603427000','603427000','http://snomed.info/sct','Hepatitis C virus genotype 6 (organism)','603427000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.409_603428005','603428005','http://snomed.info/sct','Hepatitis C virus subtype 1c (organism)','603428005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.409_603429002','603429002','http://snomed.info/sct','Hepatitis C virus subtype 2c (organism)','603429002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.409_603430007','603430007','http://snomed.info/sct','Hepatitis C virus subtype 4b (organism)','603430007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.409_603431006','603431006','http://snomed.info/sct','Hepatitis C virus subtype 4c (organism)','603431006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.409_603432004','603432004','http://snomed.info/sct','Hepatitis C virus subtype 4d (organism)','603432004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.409_603433009','603433009','http://snomed.info/sct','Hepatitis C virus subtype 4e (organism)','603433009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.409_62944002','62944002','http://snomed.info/sct','Hepatitis C virus (organism)','62944002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.409_711331006','711331006','http://snomed.info/sct','Hepatitis C detected by polymerase chain reaction (finding)','711331006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.409_726592002','726592002','http://snomed.info/sct','Antigen of Hepatitis C virus core (substance)','726592002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.409_781245007','781245007','http://snomed.info/sct','Hepatitis C virus genotype 4h (organism)','781245007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.409_781276001','781276001','http://snomed.info/sct','Hepatitis C virus genotype 3c (organism)','781276001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1469_1187454003','1187454003','http://snomed.info/sct','Enterococcus faecalis (substance)','1187454003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1469_416397000','416397000','http://snomed.info/sct','Enterococcus faecalis variant (organism)','416397000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1469_708244002','708244002','http://snomed.info/sct','Deoxyribonucleic acid of Enterococcus faecalis (substance)','708244002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1469_708245001','708245001','http://snomed.info/sct','Deoxyribonucleic acid of Enterococcus faecium (substance)','708245001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1469_712664000','712664000','http://snomed.info/sct','Vancomycin intermediate Enterococcus faecalis (organism)','712664000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1469_712666003','712666003','http://snomed.info/sct','Vancomycin intermediate Enterococcus faecium (organism)','712666003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1469_78065002','78065002','http://snomed.info/sct','Enterococcus faecalis (organism)','78065002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1469_782956001','782956001','http://snomed.info/sct','Vancomycin susceptible Enterococcus faecium (organism)','782956001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1469_782958000','782958000','http://snomed.info/sct','Vancomycin susceptible Enterococcus faecalis (organism)','782958000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1469_90272000','90272000','http://snomed.info/sct','Enterococcus faecium (organism)','90272000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1469_928051771000087103','928051771000087103','http://snomed.info/sct','Enterococcus faecalis type 2 (organism)','928051771000087103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1469_707768008','707768008','http://snomed.info/sct','Enterococcus faecium genotype vanA (organism)','707768008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1469_707769000','707769000','http://snomed.info/sct','Enterococcus faecium genotype vanB (organism)','707769000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1469_712663006','712663006','http://snomed.info/sct','Vancomycin resistant Enterococcus faecalis (organism)','712663006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1469_712665004','712665004','http://snomed.info/sct','Vancomycin resistant Enterococcus faecium (organism)','712665004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1866_1269041003','1269041003','http://snomed.info/sct','Taenia asiatica (organism)','1269041003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1866_28625000','28625000','http://snomed.info/sct','Taenia (organism)','28625000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1866_47399003','47399003','http://snomed.info/sct','Larva of Taenia saginata (organism)','47399003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1866_55445003','55445003','http://snomed.info/sct','Coenurus larva of genus Taenia (organism)','55445003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1866_61085008','61085008','http://snomed.info/sct','Taenia saginata (organism)','61085008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1866_703632006','703632006','http://snomed.info/sct','Egg of genus Taenia (organism)','703632006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1866_703756000','703756000','http://snomed.info/sct','Adult of genus Taenia (organism)','703756000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1866_703758004','703758004','http://snomed.info/sct','Adult of Taenia saginata (organism)','703758004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1866_709404003','709404003','http://snomed.info/sct','Antigen of Taenia (substance)','709404003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1866_78167007','78167007','http://snomed.info/sct','Larva of genus Taenia (organism)','78167007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1866_783123007','783123007','http://snomed.info/sct','Proglottid of Taenia saginata (organism)','783123007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1866_17894007','17894007','http://snomed.info/sct','Larva of Taenia solium (organism)','17894007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1866_17966003','17966003','http://snomed.info/sct','Taenia solium (organism)','17966003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1866_703759007','703759007','http://snomed.info/sct','Adult of Taenia solium (organism)','703759007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1866_708451008','708451008','http://snomed.info/sct','Deoxyribonucleic acid of Taenia solium larva (substance)','708451008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1866_709402004','709402004','http://snomed.info/sct','Antigen of Taenia solium (substance)','709402004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1866_709403009','709403009','http://snomed.info/sct','Antigen of Taenia solium larva (substance)','709403009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1866_782953009','782953009','http://snomed.info/sct','Proglottid of Taenia solium (organism)','782953009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1468_30949009','30949009','http://snomed.info/sct','Enterococcus casseliflavus (organism)','30949009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1468_53233007','53233007','http://snomed.info/sct','Enterococcus gallinarum (organism)','53233007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1468_703032005','703032005','http://snomed.info/sct','Enterococcus casseliflavus or Enterococcus gallinarum (finding)','703032005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1468_1117501000112104','1117501000112104','http://snomed.info/sct','Vancomycin resistant Enterococcus casseliflavus (organism)','1117501000112104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1745_116556009','116556009','http://snomed.info/sct','Rotavirus NSP4 nonstructural glycoprotein (substance)','116556009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1745_117282006','117282006','http://snomed.info/sct','Double-stranded ribonucleic acid of Rotavirus (substance)','117282006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1745_121000004','121000004','http://snomed.info/sct','Antigen of Rotavirus (substance)','121000004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1745_24940009','24940009','http://snomed.info/sct','Non group A rotavirus (organism)','24940009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1745_25478007','25478007','http://snomed.info/sct','Atypical rotavirus (organism)','25478007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1745_31551005','31551005','http://snomed.info/sct','Rotavirus group C (organism)','31551005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1745_416138003','416138003','http://snomed.info/sct','Rotavirus group A (organism)','416138003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1745_64694002','64694002','http://snomed.info/sct','Human rotavirus (organism)','64694002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1745_707783003','707783003','http://snomed.info/sct','Ribonucleic acid of Rotavirus (substance)','707783003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1745_713619006','713619006','http://snomed.info/sct','Antigen of Rotavirus serotype P1A[8] (substance)','713619006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1745_713621001','713621001','http://snomed.info/sct','Antigen of Rotavirus serotype G3 (substance)','713621001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1745_713622008','713622008','http://snomed.info/sct','Antigen of Rotavirus serotype G1 (substance)','713622008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1745_713628007','713628007','http://snomed.info/sct','Antigen of Rotavirus serotype G1P[8] (substance)','713628007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1745_713640007','713640007','http://snomed.info/sct','Antigen of Rotavirus serotype G4 (substance)','713640007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1745_714077009','714077009','http://snomed.info/sct','Antigen of Rotavirus serotype G2 (substance)','714077009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1745_89331006','89331006','http://snomed.info/sct','Rotavirus group B (organism)','89331006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.482_21927003','21927003','http://snomed.info/sct','Bacillus anthracis (organism)','21927003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.482_409499007','409499007','http://snomed.info/sct','Protective antigen of anthrax toxin (substance)','409499007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.482_409500003','409500003','http://snomed.info/sct','Anthrax toxin edema factor (substance)','409500003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.482_409502006','409502006','http://snomed.info/sct','Anthrax toxin lethal factor (substance)','409502006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.482_409629009','409629009','http://snomed.info/sct','Antigen of Bacillus anthracis (substance)','409629009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.482_409647003','409647003','http://snomed.info/sct','Anthrax toxin lethal toxin (substance)','409647003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.482_418055006','418055006','http://snomed.info/sct','Bacillus anthracis - Sterne strain (organism)','418055006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.482_418909007','418909007','http://snomed.info/sct','Bacillus anthracis - virulent strain (organism)','418909007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.482_420093001','420093001','http://snomed.info/sct','Bacillus anthracis - Pasteur strain (organism)','420093001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.482_439214003','439214003','http://snomed.info/sct','Antigen of Bacillus anthracis spore (substance)','439214003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.482_442765006','442765006','http://snomed.info/sct','Bacillus anthracis isolated by culture (finding)','442765006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.482_450877007','450877007','http://snomed.info/sct','Bacillus anthracis avirulent strain (organism)','450877007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.482_708152005','708152005','http://snomed.info/sct','Deoxyribonucleic acid of Bacillus anthracis (substance)','708152005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.482_709216006','709216006','http://snomed.info/sct','Antigen of Bacillus anthracis capsule (substance)','709216006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.482_709218007','709218007','http://snomed.info/sct','Antigen of Bacillus anthracis cell wall (substance)','709218007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.482_782944002','782944002','http://snomed.info/sct','Bacillus cereus biovar anthracis (organism)','782944002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.882_440577009','440577009','http://snomed.info/sct','Morulae in leukocyte (finding)','440577009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2038_243352007','243352007','http://snomed.info/sct','Bartonella bacilliformis (organism)','243352007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1464_113727004','113727004','http://snomed.info/sct','Vancomycin resistant Enterococcus (organism)','113727004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1464_707767003','707767003','http://snomed.info/sct','Vancomycin resistant vanB2 and vanB3 Enterococcus (organism)','707767003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1464_710333000','710333000','http://snomed.info/sct','Vancomycin resistant enterococcus vanA strain (organism)','710333000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1464_710334006','710334006','http://snomed.info/sct','Vancomycin resistant enterococcus vanB strain (organism)','710334006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1464_720234008','720234008','http://snomed.info/sct','Deoxyribonucleic acid of vancomycin resistant Enterococcus (substance)','720234008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1464_782959008','782959008','http://snomed.info/sct','Vancomycin resistant Enterococcus raffinosus (organism)','782959008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1464_838511009','838511009','http://snomed.info/sct','Linezolid and vancomycin resistant Enterococcus (organism)','838511009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1464_1117501000112104','1117501000112104','http://snomed.info/sct','Vancomycin resistant Enterococcus casseliflavus (organism)','1117501000112104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1464_707768008','707768008','http://snomed.info/sct','Enterococcus faecium genotype vanA (organism)','707768008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1464_707769000','707769000','http://snomed.info/sct','Enterococcus faecium genotype vanB (organism)','707769000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1464_712663006','712663006','http://snomed.info/sct','Vancomycin resistant Enterococcus faecalis (organism)','712663006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1464_712665004','712665004','http://snomed.info/sct','Vancomycin resistant Enterococcus faecium (organism)','712665004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1346_30096004','30096004','http://snomed.info/sct','Ricin (substance)','30096004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1346_449554003','449554003','http://snomed.info/sct','Ricinus communis deoxyribonucleic acid (substance)','449554003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1346_725608009','725608009','http://snomed.info/sct','Ricinine (substance)','725608009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2036_35825008','35825008','http://snomed.info/sct','Cat scratch disease antigen (substance)','35825008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2036_708155007','708155007','http://snomed.info/sct','Deoxyribonucleic acid of Bartonella henselae (substance)','708155007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2036_103510000','103510000','http://snomed.info/sct','Bartonella henselae (organism)','103510000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1861_112443002','112443002','http://snomed.info/sct','Brugia malayi (organism)','112443002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1861_15475009','15475009','http://snomed.info/sct','Brugia timori (organism)','15475009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1861_709173004','709173004','http://snomed.info/sct','Antigen of Wuchereria bancrofti (substance)','709173004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1861_84925004','84925004','http://snomed.info/sct','Wuchereria bancrofti (organism)','84925004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1982_243617008','243617008','http://snomed.info/sct','California serogroup Orthobunyavirus (organism)','243617008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1982_64979004','64979004','http://snomed.info/sct','California encephalitis virus (organism)','64979004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1982_707868003','707868003','http://snomed.info/sct','Ribonucleic acid of Orthobunyavirus California serogroup (substance)','707868003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2037_103511001','103511001','http://snomed.info/sct','Bartonella quintana (organism)','103511001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2037_121249004','121249004','http://snomed.info/sct','Deoxyribonucleic acid of Bartonella quintana (substance)','121249004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2037_707632005','707632005','http://snomed.info/sct','Ribosomal ribonucleic acid of Bartonella quintana (substance)','707632005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1517_103094002','103094002','http://snomed.info/sct','Antigen of Cryptococcus (substance)','103094002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1517_120992007','120992007','http://snomed.info/sct','Antigen of Cryptococcus neoformans (substance)','120992007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1517_121108009','121108009','http://snomed.info/sct','Ribosomal ribonucleic acid of Cryptococcus neoformans (substance)','121108009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1517_243468002','243468002','http://snomed.info/sct','Cryptococcus neoformans var neoformans (organism)','243468002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1517_415904003','415904003','http://snomed.info/sct','Cryptococcus neoformans var. grubii (organism)','415904003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1517_450862004','450862004','http://snomed.info/sct','Cryptococcus gattii (organism)','450862004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1517_467051000124102','467051000124102','http://snomed.info/sct','Cryptococcus gattii genotype VGII (organism)','467051000124102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1517_467061000124100','467061000124100','http://snomed.info/sct','Cryptococcus gattii genotype VGIIa (organism)','467061000124100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1517_467071000124107','467071000124107','http://snomed.info/sct','Cryptococcus gattii genotype VGIIb (organism)','467071000124107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1517_467081000124105','467081000124105','http://snomed.info/sct','Cryptococcus gattii genotype VGIIc (organism)','467081000124105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1517_467091000124108','467091000124108','http://snomed.info/sct','Cryptococcus gattii genotype VGIV (organism)','467091000124108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1517_67168003','67168003','http://snomed.info/sct','Cryptococcus neoformans (organism)','67168003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1517_736943009','736943009','http://snomed.info/sct','Cryptococcus neoformans variant grubii genotype VNII (organism)','736943009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1517_736944003','736944003','http://snomed.info/sct','Cryptococcus neoformans variant grubii genotype VNI (organism)','736944003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1517_736945002','736945002','http://snomed.info/sct','Cryptococcus gattii genotype VGIII (organism)','736945002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1517_736946001','736946001','http://snomed.info/sct','Cryptococcus gattii genotype VGI (organism)','736946001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1517_763168008','763168008','http://snomed.info/sct','Cryptococcus neoformans variant grubii and Cryptococcus neoformans variant neoformans hybrid (organism)','763168008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1638_415343008','415343008','http://snomed.info/sct','Rickettsia, typhus group (organism)','415343008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1638_708421002','708421002','http://snomed.info/sct','Deoxyribonucleic acid of Rickettsia typhus group (substance)','708421002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1638_79284001','79284001','http://snomed.info/sct','Rickettsia typhi (organism)','79284001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1915_13953004','13953004','http://snomed.info/sct','Vesicular stomatitis virus, Brazil (organism)','13953004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1915_23498004','23498004','http://snomed.info/sct','Vesicular stomatitis Indiana virus (organism)','23498004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1915_40039007','40039007','http://snomed.info/sct','Vesicular stomatitis virus, Argentina (organism)','40039007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1915_47465002','47465002','http://snomed.info/sct','Vesicular stomatitis New Jersey virus (organism)','47465002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1915_707788007','707788007','http://snomed.info/sct','Ribonucleic acid of Vesicular stomatitis Indiana virus (substance)','707788007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1915_707789004','707789004','http://snomed.info/sct','Ribonucleic acid of Vesicular stomatitis New Jersey virus (substance)','707789004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1915_709158000','709158000','http://snomed.info/sct','Antigen of Vesicular stomatitis virus (substance)','709158000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1915_709159008','709159008','http://snomed.info/sct','Antigen of Vesicular stomatitis New Jersey virus (substance)','709159008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1915_709160003','709160003','http://snomed.info/sct','Antigen of Vesicular stomatitis Indiana virus (substance)','709160003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1915_709161004','709161004','http://snomed.info/sct','Antigen of Vesicular stomatitis Alagoas virus (substance)','709161004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1915_81701001','81701001','http://snomed.info/sct','Vesicular stomatitis virus (organism)','81701001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1519_450862004','450862004','http://snomed.info/sct','Cryptococcus gattii (organism)','450862004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1519_467051000124102','467051000124102','http://snomed.info/sct','Cryptococcus gattii genotype VGII (organism)','467051000124102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1519_467061000124100','467061000124100','http://snomed.info/sct','Cryptococcus gattii genotype VGIIa (organism)','467061000124100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1519_467071000124107','467071000124107','http://snomed.info/sct','Cryptococcus gattii genotype VGIIb (organism)','467071000124107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1519_467081000124105','467081000124105','http://snomed.info/sct','Cryptococcus gattii genotype VGIIc (organism)','467081000124105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1519_467091000124108','467091000124108','http://snomed.info/sct','Cryptococcus gattii genotype VGIV (organism)','467091000124108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1519_736945002','736945002','http://snomed.info/sct','Cryptococcus gattii genotype VGIII (organism)','736945002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1519_736946001','736946001','http://snomed.info/sct','Cryptococcus gattii genotype VGI (organism)','736946001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1518_120992007','120992007','http://snomed.info/sct','Antigen of Cryptococcus neoformans (substance)','120992007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1518_121108009','121108009','http://snomed.info/sct','Ribosomal ribonucleic acid of Cryptococcus neoformans (substance)','121108009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1518_243468002','243468002','http://snomed.info/sct','Cryptococcus neoformans var neoformans (organism)','243468002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1518_415904003','415904003','http://snomed.info/sct','Cryptococcus neoformans var. grubii (organism)','415904003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1518_67168003','67168003','http://snomed.info/sct','Cryptococcus neoformans (organism)','67168003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1518_736943009','736943009','http://snomed.info/sct','Cryptococcus neoformans variant grubii genotype VNII (organism)','736943009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1518_736944003','736944003','http://snomed.info/sct','Cryptococcus neoformans variant grubii genotype VNI (organism)','736944003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1518_763168008','763168008','http://snomed.info/sct','Cryptococcus neoformans variant grubii and Cryptococcus neoformans variant neoformans hybrid (organism)','763168008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1910_29724001','29724001','http://snomed.info/sct','Genus Orthopoxvirus (organism)','29724001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1910_708389004','708389004','http://snomed.info/sct','Deoxyribonucleic acid of Orthopoxvirus (substance)','708389004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1910_721920006','721920006','http://snomed.info/sct','Orthopoxvirus species, not Variola virus (organism)','721920006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1358_707890003','707890003','http://snomed.info/sct','Ribonucleic acid of Hepatitis E virus (substance)','707890003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1358_78475006','78475006','http://snomed.info/sct','Hepatitis E virus (organism)','78475006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1754_419488004','419488004','http://snomed.info/sct','Staphylococcus aureus enterotoxin B (substance)','419488004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1911_37362000','37362000','http://snomed.info/sct','Cowpox virus (organism)','37362000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1193_11428003','11428003','http://snomed.info/sct','Western equine encephalomyelitis virus (organism)','11428003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1193_121092001','121092001','http://snomed.info/sct','Antigen of Western equine encephalitis virus (substance)','121092001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1193_707791007','707791007','http://snomed.info/sct','Ribonucleic acid of Western equine encephalitis virus (substance)','707791007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1192_45838003','45838003','http://snomed.info/sct','Powassan virus (organism)','45838003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1192_707778006','707778006','http://snomed.info/sct','Ribonucleic acid of Powassan virus (substance)','707778006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1470_10262005','10262005','http://snomed.info/sct','Enterococcus malodoratus (organism)','10262005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1470_103436009','103436009','http://snomed.info/sct','Enterococcus pseudoavium (organism)','103436009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1470_103437000','103437000','http://snomed.info/sct','Enterococcus raffinosus (organism)','103437000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1470_103438005','103438005','http://snomed.info/sct','Enterococcus saccharolyticus (organism)','103438005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1470_1117501000112104','1117501000112104','http://snomed.info/sct','Vancomycin resistant Enterococcus casseliflavus (organism)','1117501000112104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1470_113722005','113722005','http://snomed.info/sct','Enterococcus cecorum (organism)','113722005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1470_113723000','113723000','http://snomed.info/sct','Enterococcus columbae (organism)','113723000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1470_113724006','113724006','http://snomed.info/sct','Enterococcus dispar (organism)','113724006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1470_113726008','113726008','http://snomed.info/sct','Enterococcus sulfureus (organism)','113726008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1470_113727004','113727004','http://snomed.info/sct','Vancomycin resistant Enterococcus (organism)','113727004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1470_127500001','127500001','http://snomed.info/sct','Enterococcus, group I (organism)','127500001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1470_127501002','127501002','http://snomed.info/sct','Enterococcus, group II (organism)','127501002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1470_127502009','127502009','http://snomed.info/sct','Enterococcus, group III (organism)','127502009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1470_127503004','127503004','http://snomed.info/sct','Enterococcus, group IV (organism)','127503004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1470_127504005','127504005','http://snomed.info/sct','Atypical Enterococcus (organism)','127504005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1470_2785000','2785000','http://snomed.info/sct','Genus Enterococcus (organism)','2785000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1470_30949009','30949009','http://snomed.info/sct','Enterococcus casseliflavus (organism)','30949009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1470_31361000087102','31361000087102','http://snomed.info/sct','Enterococcus eurekensis (organism)','31361000087102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1470_31371000087106','31371000087106','http://snomed.info/sct','Enterococcus lemanii (organism)','31371000087106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1470_31381000087108','31381000087108','http://snomed.info/sct','Enterococcus saccharolyticus subspecies saccharolyticus (organism)','31381000087108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1470_31391000087105','31391000087105','http://snomed.info/sct','Enterococcus saccharolyticus subspecies taiwanensis (organism)','31391000087105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1470_38004008','38004008','http://snomed.info/sct','Enterococcus mundtii (organism)','38004008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1470_416397000','416397000','http://snomed.info/sct','Enterococcus faecalis variant (organism)','416397000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1470_416934000','416934000','http://snomed.info/sct','Enterococcus gilvus (organism)','416934000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1470_417099004','417099004','http://snomed.info/sct','Enterococcus pallens (organism)','417099004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1470_422482003','422482003','http://snomed.info/sct','Enterococcus hermanniensis (organism)','422482003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1470_422707007','422707007','http://snomed.info/sct','Enterococcus italicus (organism)','422707007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1470_423614008','423614008','http://snomed.info/sct','Enterococcus haemoperoxidus (organism)','423614008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1470_424191009','424191009','http://snomed.info/sct','Enterococcus canis (organism)','424191009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1470_424710004','424710004','http://snomed.info/sct','Enterococcus villorum (organism)','424710004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1470_424862009','424862009','http://snomed.info/sct','Enterococcus moraviensis (organism)','424862009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1470_425342004','425342004','http://snomed.info/sct','Enterococcus asini (organism)','425342004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1470_431989005','431989005','http://snomed.info/sct','Enterococcus ratti (organism)','431989005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1470_432791009','432791009','http://snomed.info/sct','Enterococcus phoeniculicola (organism)','432791009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1470_449322006','449322006','http://snomed.info/sct','Enterococcus thailandicus (organism)','449322006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1470_46464008','46464008','http://snomed.info/sct','Enterococcus durans (organism)','46464008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1470_53233007','53233007','http://snomed.info/sct','Enterococcus gallinarum (organism)','53233007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1470_661000112100','661000112100','http://snomed.info/sct','Vancomycin resistant Enterococcus faecalis genotype vanB (organism)','661000112100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1470_707767003','707767003','http://snomed.info/sct','Vancomycin resistant vanB2 and vanB3 Enterococcus (organism)','707767003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1470_707768008','707768008','http://snomed.info/sct','Enterococcus faecium genotype vanA (organism)','707768008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1470_707769000','707769000','http://snomed.info/sct','Enterococcus faecium genotype vanB (organism)','707769000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1470_708244002','708244002','http://snomed.info/sct','Deoxyribonucleic acid of Enterococcus faecalis (substance)','708244002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1470_708245001','708245001','http://snomed.info/sct','Deoxyribonucleic acid of Enterococcus faecium (substance)','708245001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1470_708246000','708246000','http://snomed.info/sct','Deoxyribonucleic acid of Enterococcus (substance)','708246000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1470_708452001','708452001','http://snomed.info/sct','Enterococcus lactis (organism)','708452001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1470_710333000','710333000','http://snomed.info/sct','Vancomycin resistant enterococcus vanA strain (organism)','710333000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1470_710334006','710334006','http://snomed.info/sct','Vancomycin resistant enterococcus vanB strain (organism)','710334006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1470_712663006','712663006','http://snomed.info/sct','Vancomycin resistant Enterococcus faecalis (organism)','712663006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1470_712664000','712664000','http://snomed.info/sct','Vancomycin intermediate Enterococcus faecalis (organism)','712664000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1470_712665004','712665004','http://snomed.info/sct','Vancomycin resistant Enterococcus faecium (organism)','712665004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1470_712666003','712666003','http://snomed.info/sct','Vancomycin intermediate Enterococcus faecium (organism)','712666003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1470_720234008','720234008','http://snomed.info/sct','Deoxyribonucleic acid of vancomycin resistant Enterococcus (substance)','720234008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1470_73852008','73852008','http://snomed.info/sct','Enterococcus hirae (organism)','73852008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1470_78065002','78065002','http://snomed.info/sct','Enterococcus faecalis (organism)','78065002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1470_782956001','782956001','http://snomed.info/sct','Vancomycin susceptible Enterococcus faecium (organism)','782956001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1470_782958000','782958000','http://snomed.info/sct','Vancomycin susceptible Enterococcus faecalis (organism)','782958000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1470_782959008','782959008','http://snomed.info/sct','Vancomycin resistant Enterococcus raffinosus (organism)','782959008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1470_782960003','782960003','http://snomed.info/sct','Vancomycin intermediate Enterococcus mundtii (organism)','782960003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1470_783025003','783025003','http://snomed.info/sct','Vancomycin intermediate Enterococcus (organism)','783025003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1470_783557009','783557009','http://snomed.info/sct','Ribosomal ribonucleic acid of Enterococcus (substance)','783557009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1470_7871000146102','7871000146102','http://snomed.info/sct','Enterococcus aquimarinus (organism)','7871000146102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1470_7881000146100','7881000146100','http://snomed.info/sct','Enterococcus caccae (organism)','7881000146100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1470_7891000146103','7891000146103','http://snomed.info/sct','Enterococcus canintestini (organism)','7891000146103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1470_7901000146102','7901000146102','http://snomed.info/sct','Enterococcus devriesei (organism)','7901000146102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1470_7911000146100','7911000146100','http://snomed.info/sct','Enterococcus silesiacus (organism)','7911000146100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1470_7921000146105','7921000146105','http://snomed.info/sct','Enterococcus termitis (organism)','7921000146105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1470_838510005','838510005','http://snomed.info/sct','Linezolid resistant Enterococcus (organism)','838510005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1470_838511009','838511009','http://snomed.info/sct','Linezolid and vancomycin resistant Enterococcus (organism)','838511009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1470_87875008','87875008','http://snomed.info/sct','Enterococcus avium (organism)','87875008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1470_90272000','90272000','http://snomed.info/sct','Enterococcus faecium (organism)','90272000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1470_928051771000087103','928051771000087103','http://snomed.info/sct','Enterococcus faecalis type 2 (organism)','928051771000087103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.591_50471002','50471002','http://snomed.info/sct','Zika virus (organism)','50471002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1194_243617008','243617008','http://snomed.info/sct','California serogroup Orthobunyavirus (organism)','243617008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1194_28732002','28732002','http://snomed.info/sct','Snowshoe hare virus (organism)','28732002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1194_30434006','30434006','http://snomed.info/sct','La Crosse virus (organism)','30434006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1194_61399004','61399004','http://snomed.info/sct','Keystone virus (organism)','61399004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1194_64979004','64979004','http://snomed.info/sct','California encephalitis virus (organism)','64979004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1194_707868003','707868003','http://snomed.info/sct','Ribonucleic acid of Orthobunyavirus California serogroup (substance)','707868003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1194_707928001','707928001','http://snomed.info/sct','Ribonucleic acid of Jamestown Canyon virus (substance)','707928001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1194_707929009','707929009','http://snomed.info/sct','Ribonucleic acid of La Crosse virus (substance)','707929009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1194_87919008','87919008','http://snomed.info/sct','Trivittatus virus (organism)','87919008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1194_9194001','9194001','http://snomed.info/sct','Jamestown Canyon virus (organism)','9194001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.473_103472002','103472002','http://snomed.info/sct','Leptospira interrogans var. bufonis (organism)','103472002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.473_103473007','103473007','http://snomed.info/sct','Leptospira interrogans var. ranarum (organism)','103473007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.473_113809009','113809009','http://snomed.info/sct','Leptospira borgpetersenii (organism)','113809009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.473_113810004','113810004','http://snomed.info/sct','Leptospira inadai (organism)','113810004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.473_113811000','113811000','http://snomed.info/sct','Leptospira kirschneri (organism)','113811000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.473_113812007','113812007','http://snomed.info/sct','Leptospira meyeri (organism)','113812007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.473_113813002','113813002','http://snomed.info/sct','Leptospira noguchii (organism)','113813002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.473_113814008','113814008','http://snomed.info/sct','Leptospira parva (organism)','113814008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.473_113815009','113815009','http://snomed.info/sct','Leptospira santarosai (organism)','113815009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.473_113816005','113816005','http://snomed.info/sct','Leptospira weilii (organism)','113816005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.473_113817001','113817001','http://snomed.info/sct','Leptospira wolbachii (organism)','113817001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.473_116401006','116401006','http://snomed.info/sct','Leptospira interrogans (organism)','116401006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.473_116402004','116402004','http://snomed.info/sct','Leptospira biflexa (organism)','116402004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.473_121088008','121088008','http://snomed.info/sct','Antigen of Leptospira interrogans (substance)','121088008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.473_12154002','12154002','http://snomed.info/sct','Leptospira interrogans, serogroup Louisiana (organism)','12154002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.473_14677002','14677002','http://snomed.info/sct','Leptospira interrogans, serogroup Mini (organism)','14677002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.473_19251003','19251003','http://snomed.info/sct','Leptospira interrogans, serogroup Icterohemorrhagiae (organism)','19251003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.473_26615002','26615002','http://snomed.info/sct','Leptospira interrogans, serogroup Grippotyphosa (organism)','26615002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.473_26764003','26764003','http://snomed.info/sct','Genus Leptospira (organism)','26764003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.473_26870001','26870001','http://snomed.info/sct','Leptospira interrogans, serogroup Bataviae (organism)','26870001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.473_302609005','302609005','http://snomed.info/sct','Leptospira interrogans serovar Buccalis (organism)','302609005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.473_302610000','302610000','http://snomed.info/sct','Leptospira interrogans serovar Pomona (organism)','302610000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.473_302611001','302611001','http://snomed.info/sct','Leptospira interrogans serovar Saxkoebing (organism)','302611001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.473_33525000','33525000','http://snomed.info/sct','Leptospira interrogans, serogroup Hebdomadis (organism)','33525000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.473_37044004','37044004','http://snomed.info/sct','Leptospira interrogans, serogroup Tarassovi (organism)','37044004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.473_370579003','370579003','http://snomed.info/sct','Leptospira bratislava (organism)','370579003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.473_41938007','41938007','http://snomed.info/sct','Leptospira interrogans, serogroup Sejroe (organism)','41938007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.473_432579003','432579003','http://snomed.info/sct','Leptospira alexanderi (organism)','432579003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.473_432580000','432580000','http://snomed.info/sct','Leptospira fainei (organism)','432580000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.473_44425008','44425008','http://snomed.info/sct','Leptospira interrogans, serogroup cynopteri (organism)','44425008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.473_45882007','45882007','http://snomed.info/sct','Leptospira interrogans, serogroup Autumnalis (organism)','45882007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.473_47840007','47840007','http://snomed.info/sct','Leptospira interrogans, serogroup Pomona (organism)','47840007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.473_53343008','53343008','http://snomed.info/sct','Leptospira interrogans, serogroup hardjo (organism)','53343008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.473_54933006','54933006','http://snomed.info/sct','Leptospira interrogans, serogroup Canicola (organism)','54933006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.473_5555002','5555002','http://snomed.info/sct','Leptospira interrogans, serogroup Australis (organism)','5555002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.473_55585006','55585006','http://snomed.info/sct','Leptospira interrogans, serogroup shermani (organism)','55585006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.473_58373001','58373001','http://snomed.info/sct','Leptospira interrogans biflexa (organism)','58373001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.473_58542001','58542001','http://snomed.info/sct','Leptospira interrogans, serogroup Copenhageni (organism)','58542001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.473_59217001','59217001','http://snomed.info/sct','Leptospira interrogans serogroup Ballum (organism)','59217001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.473_708344000','708344000','http://snomed.info/sct','Deoxyribonucleic acid of Leptospira (substance)','708344000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.473_709240003','709240003','http://snomed.info/sct','Antigen of Leptospira (substance)','709240003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.473_83247003','83247003','http://snomed.info/sct','Leptospira interrogans, serogroup panama (organism)','83247003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.473_83409006','83409006','http://snomed.info/sct','Leptospira interrogans, serogroup Pyrogenes (organism)','83409006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.473_8472006','8472006','http://snomed.info/sct','Leptospira interrogans, serogroup Djasiman (organism)','8472006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.473_86248004','86248004','http://snomed.info/sct','Leptospira interrogans, serogroup Celledoni (organism)','86248004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.473_90646001','90646001','http://snomed.info/sct','Leptospira interrogans, serogroup javanica (organism)','90646001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1191_243601002','243601002','http://snomed.info/sct','Eastern equine encephalitis virus (organism)','243601002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1191_707879008','707879008','http://snomed.info/sct','Ribonucleic acid of Eastern equine encephalitis virus (substance)','707879008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1191_717108008','717108008','http://snomed.info/sct','Antigen of Eastern equine encephalitis virus (substance)','717108008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1190_2423009','2423009','http://snomed.info/sct','Chikungunya virus (organism)','2423009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1190_707869006','707869006','http://snomed.info/sct','Ribonucleic acid of Chikungunya virus (substance)','707869006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1874_17894007','17894007','http://snomed.info/sct','Larva of Taenia solium (organism)','17894007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1874_17966003','17966003','http://snomed.info/sct','Taenia solium (organism)','17966003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1874_703759007','703759007','http://snomed.info/sct','Adult of Taenia solium (organism)','703759007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1874_708451008','708451008','http://snomed.info/sct','Deoxyribonucleic acid of Taenia solium larva (substance)','708451008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1874_709402004','709402004','http://snomed.info/sct','Antigen of Taenia solium (substance)','709402004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1874_709403009','709403009','http://snomed.info/sct','Antigen of Taenia solium larva (substance)','709403009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1874_782953009','782953009','http://snomed.info/sct','Proglottid of Taenia solium (organism)','782953009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.356_442662004','442662004','http://snomed.info/sct','Copies of human immunodeficiency virus ribonucleic acid above reference range (finding)','442662004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.356_713008009','713008009','http://snomed.info/sct','Human immunodeficiency virus p24 antigen detected (finding)','713008009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.356_713745007','713745007','http://snomed.info/sct','Reactive for both human immunodeficiency virus antibodies and p24 antigen (finding)','713745007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.356_103093008','103093008','http://snomed.info/sct','Antigen of Human immunodeficiency virus protein 24 (substance)','103093008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.356_115282005','115282005','http://snomed.info/sct','Antigen of Human immunodeficiency virus 1 glycoprotein 120 (substance)','115282005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.356_115283000','115283000','http://snomed.info/sct','Antigen of Human immunodeficiency virus 1 glycoprotein 160 (substance)','115283000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.356_115309002','115309002','http://snomed.info/sct','Antigen of Human immunodeficiency virus 2 protein 41 (substance)','115309002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.356_116982009','116982009','http://snomed.info/sct','Antigen of Human immunodeficiency virus 1 (substance)','116982009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.356_116987003','116987003','http://snomed.info/sct','Antigen of Human immunodeficiency virus 1 protein 24 (substance)','116987003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.356_121200006','121200006','http://snomed.info/sct','Deoxyribonucleic acid of Human immunodeficiency virus (substance)','121200006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.356_121201005','121201005','http://snomed.info/sct','Deoxyribonucleic acid of Human immunodeficiency virus 1 (substance)','121201005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.356_121202003','121202003','http://snomed.info/sct','Ribonucleic acid of Human immunodeficiency virus 1 (substance)','121202003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.356_165816005','165816005','http://snomed.info/sct','Human immunodeficiency virus detected (finding)','165816005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.356_19030005','19030005','http://snomed.info/sct','Human immunodeficiency virus (organism)','19030005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.356_36115006','36115006','http://snomed.info/sct','Human immunodeficiency virus type 2 (organism)','36115006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.356_707891004','707891004','http://snomed.info/sct','Ribonucleic acid of Human immunodeficiency virus 2 (substance)','707891004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.356_708292002','708292002','http://snomed.info/sct','Deoxyribonucleic acid of Human immunodeficiency virus 2 (substance)','708292002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.356_720113009','720113009','http://snomed.info/sct','Proviral deoxyribonucleic acid of Human immunodeficiency virus 1 (substance)','720113009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.356_720114003','720114003','http://snomed.info/sct','Proviral deoxyribonucleic acid of Human immunodeficiency virus 2 (substance)','720114003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.356_871881007','871881007','http://snomed.info/sct','Antigen of Human immunodeficiency virus 2 (substance)','871881007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.356_871882000','871882000','http://snomed.info/sct','Antigen of Human immunodeficiency virus (substance)','871882000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.356_89293008','89293008','http://snomed.info/sct','Human immunodeficiency virus type I (organism)','89293008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.477_112420006','112420006','http://snomed.info/sct','Babesia felis (organism)','112420006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.477_1342005','1342005','http://snomed.info/sct','Babesia foliata (organism)','1342005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.477_17101005','17101005','http://snomed.info/sct','Babesia taylori (organism)','17101005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.477_17800008','17800008','http://snomed.info/sct','Babesia canis (organism)','17800008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.477_21852000','21852000','http://snomed.info/sct','Babesia berbera (organism)','21852000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.477_22405002','22405002','http://snomed.info/sct','Babesia bovis (organism)','22405002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.477_23450008','23450008','http://snomed.info/sct','Babesia perroncitoi (organism)','23450008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.477_26114002','26114002','http://snomed.info/sct','Babesia capreoli (organism)','26114002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.477_30408003','30408003','http://snomed.info/sct','Babesia caballi (organism)','30408003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.477_32748003','32748003','http://snomed.info/sct','Babesia odocoilei (organism)','32748003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.477_35029001','35029001','http://snomed.info/sct','Babesia (organism)','35029001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.477_38391004','38391004','http://snomed.info/sct','Babesia ovata (organism)','38391004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.477_38602006','38602006','http://snomed.info/sct','Babesia argentina (organism)','38602006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.477_397072005','397072005','http://snomed.info/sct','Babesia red blood cell inclusion (finding)','397072005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.477_410004003','410004003','http://snomed.info/sct','Immature trophozoite of genus Babesia (organism)','410004003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.477_415979007','415979007','http://snomed.info/sct','Babesia CA3 (organism)','415979007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.477_415980005','415980005','http://snomed.info/sct','Babesia lotori (organism)','415980005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.477_415981009','415981009','http://snomed.info/sct','Babesia MO1 (organism)','415981009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.477_415982002','415982002','http://snomed.info/sct','Babesia venatorum (organism)','415982002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.477_415983007','415983007','http://snomed.info/sct','Babesia duncani (organism)','415983007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.477_418101009','418101009','http://snomed.info/sct','Babesia EU1 (organism)','418101009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.477_4284001','4284001','http://snomed.info/sct','Babesia bigemina (organism)','4284001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.477_43574002','43574002','http://snomed.info/sct','Babesia ovis (organism)','43574002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.477_455000','455000','http://snomed.info/sct','Babesia trautmanni (organism)','455000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.477_50274008','50274008','http://snomed.info/sct','Babesia jakimovi (organism)','50274008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.477_53253006','53253006','http://snomed.info/sct','Babesia gibsoni (organism)','53253006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.477_608923007','608923007','http://snomed.info/sct','Trophozoite of genus Babesia (organism)','608923007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.477_61370009','61370009','http://snomed.info/sct','Babesia muris (organism)','61370009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.477_64950006','64950006','http://snomed.info/sct','Babesia motasi (organism)','64950006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.477_65294004','65294004','http://snomed.info/sct','Babesia vogeli (organism)','65294004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.477_66818003','66818003','http://snomed.info/sct','Babesia major (organism)','66818003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.477_706911008','706911008','http://snomed.info/sct','Ribosomal ribonucleic acid of Babesia caballi (substance)','706911008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.477_707629007','707629007','http://snomed.info/sct','Ribosomal ribonucleic acid of Babesia (substance)','707629007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.477_708150002','708150002','http://snomed.info/sct','Deoxyribonucleic acid of Babesia microti (substance)','708150002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.477_708151003','708151003','http://snomed.info/sct','Deoxyribonucleic acid of Babesia (substance)','708151003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.477_76828008','76828008','http://snomed.info/sct','Babesia microti (organism)','76828008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.477_86432002','86432002','http://snomed.info/sct','Babesia divergens (organism)','86432002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_1009003','1009003','http://snomed.info/sct','Salmonella Oakland (organism)','1009003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_10096007','10096007','http://snomed.info/sct','Salmonella Leoben (organism)','10096007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_10112007','10112007','http://snomed.info/sct','Salmonella Alamo (organism)','10112007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_10183008','10183008','http://snomed.info/sct','Salmonella Pensacola (organism)','10183008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_10248003','10248003','http://snomed.info/sct','Salmonella Travis (organism)','10248003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_10280001','10280001','http://snomed.info/sct','Salmonella Tabligbo (organism)','10280001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_10343005','10343005','http://snomed.info/sct','Salmonella Adelaide (organism)','10343005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_10353006','10353006','http://snomed.info/sct','Salmonella Bournemouth (organism)','10353006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_1037005','1037005','http://snomed.info/sct','Salmonella Aragua (organism)','1037005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_10409000','10409000','http://snomed.info/sct','Salmonella II 6,7:g,t:e,n,x:z42 (organism)','10409000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_10454004','10454004','http://snomed.info/sct','Salmonella Newlands (organism)','10454004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_10457006','10457006','http://snomed.info/sct','Salmonella Dakota (organism)','10457006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_10556004','10556004','http://snomed.info/sct','Salmonella Norwich (organism)','10556004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_1056000','1056000','http://snomed.info/sct','Salmonella II, 4,12:l,z28:- (organism)','1056000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_10704009','10704009','http://snomed.info/sct','Salmonella Roan (organism)','10704009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_10749007','10749007','http://snomed.info/sct','Salmonella Kaitaan (organism)','10749007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_10762006','10762006','http://snomed.info/sct','Salmonella Omifisan (organism)','10762006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_1081002','1081002','http://snomed.info/sct','Salmonella II 9,12,(46),27:g,t:e,n,x (organism)','1081002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_1083004','1083004','http://snomed.info/sct','Salmonella Wyldegreen (organism)','1083004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_10851004','10851004','http://snomed.info/sct','Salmonella Clerkenwell (organism)','10851004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_10874000','10874000','http://snomed.info/sct','Salmonella Bassadji (organism)','10874000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_10999003','10999003','http://snomed.info/sct','Salmonella Potto (organism)','10999003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_11062005','11062005','http://snomed.info/sct','Salmonella Sherbrooke (organism)','11062005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_11097007','11097007','http://snomed.info/sct','Salmonella Zega (organism)','11097007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_11139006','11139006','http://snomed.info/sct','Salmonella Suberu (organism)','11139006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_11188006','11188006','http://snomed.info/sct','Salmonella Herzliya (organism)','11188006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_112285000','112285000','http://snomed.info/sct','Salmonella Nitra (organism)','112285000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_112286004','112286004','http://snomed.info/sct','Salmonella Altendorf (organism)','112286004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_112287008','112287008','http://snomed.info/sct','Salmonella Sandiego (organism)','112287008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_112288003','112288003','http://snomed.info/sct','Salmonella Mura (organism)','112288003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_112290002','112290002','http://snomed.info/sct','Salmonella Goma (organism)','112290002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_112291003','112291003','http://snomed.info/sct','Salmonella Inganda (organism)','112291003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_112292005','112292005','http://snomed.info/sct','Salmonella VI 6,7:z41:1,7 (organism)','112292005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_112294006','112294006','http://snomed.info/sct','Salmonella Hidalgo (organism)','112294006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_112295007','112295007','http://snomed.info/sct','Salmonella Be (organism)','112295007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_112296008','112296008','http://snomed.info/sct','Salmonella Virginia (organism)','112296008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_112297004','112297004','http://snomed.info/sct','Salmonella Cocody (organism)','112297004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_112298009','112298009','http://snomed.info/sct','Salmonella Cochin (organism)','112298009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_112299001','112299001','http://snomed.info/sct','Salmonella Benfica (organism)','112299001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_112300009','112300009','http://snomed.info/sct','Salmonella Yaba (organism)','112300009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_112301008','112301008','http://snomed.info/sct','Salmonella Adabraka (organism)','112301008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_112302001','112302001','http://snomed.info/sct','Salmonella Coquilhatville (organism)','112302001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_112305004','112305004','http://snomed.info/sct','Salmonella Dessau (organism)','112305004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_112306003','112306003','http://snomed.info/sct','Salmonella II 1,13,22:b:z42 (organism)','112306003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_112307007','112307007','http://snomed.info/sct','Salmonella Midway (organism)','112307007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_112308002','112308002','http://snomed.info/sct','Salmonella Lindern (organism)','112308002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_112309005','112309005','http://snomed.info/sct','Salmonella Orientalis (organism)','112309005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_112311001','112311001','http://snomed.info/sct','Salmonella Irenea (organism)','112311001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_112312008','112312008','http://snomed.info/sct','Salmonella II 17:b:z6 (organism)','112312008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_112314009','112314009','http://snomed.info/sct','Salmonella Pomona (organism)','112314009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_112319004','112319004','http://snomed.info/sct','Salmonella Sedgwick (organism)','112319004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_112325000','112325000','http://snomed.info/sct','Salmonella II 56:l,z28:- (organism)','112325000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_11325004','11325004','http://snomed.info/sct','Salmonella Aqua (organism)','11325004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_11342005','11342005','http://snomed.info/sct','Salmonella Othmarschen (organism)','11342005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_11379008','11379008','http://snomed.info/sct','Salmonella Ughelli (organism)','11379008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114266002','114266002','http://snomed.info/sct','Salmonella II 3,10:z39:1,[5],7 (organism)','114266002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114267006','114267006','http://snomed.info/sct','Salmonella Pietersburg (organism)','114267006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114268001','114268001','http://snomed.info/sct','Salmonella Goelzau var 15+ (organism)','114268001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114269009','114269009','http://snomed.info/sct','Salmonella enterica subspecies enterica serovar Butantan var O:15+ (organism)','114269009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114271009','114271009','http://snomed.info/sct','Salmonella Souza var 15+ (organism)','114271009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114272002','114272002','http://snomed.info/sct','Salmonella Vejle var 15+ (organism)','114272002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114273007','114273007','http://snomed.info/sct','Salmonella Muenster var 15+ (organism)','114273007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114274001','114274001','http://snomed.info/sct','Salmonella Anatum var 15+ (organism)','114274001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114275000','114275000','http://snomed.info/sct','Salmonella Nyborg var 15+ (organism)','114275000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114277008','114277008','http://snomed.info/sct','Salmonella Amsterdam var. 15+ (organism)','114277008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114278003','114278003','http://snomed.info/sct','Salmonella Westhampton var 15+ (organism)','114278003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114280009','114280009','http://snomed.info/sct','Salmonella London var 15+ (organism)','114280009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114281008','114281008','http://snomed.info/sct','Salmonella Give var 15+ (organism)','114281008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114282001','114282001','http://snomed.info/sct','Salmonella Uganda var 15+ (organism)','114282001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114283006','114283006','http://snomed.info/sct','Salmonella Weltevreden var 15+ (organism)','114283006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114284000','114284000','http://snomed.info/sct','Salmonella Amager var 15+ (organism)','114284000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114285004','114285004','http://snomed.info/sct','Salmonella Orion var 15+ (organism)','114285004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114286003','114286003','http://snomed.info/sct','Salmonella Stockholm var 15+ (organism)','114286003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114287007','114287007','http://snomed.info/sct','Salmonella Lexington var 15+ (organism)','114287007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114288002','114288002','http://snomed.info/sct','Salmonella Oxford var 15+,34+ (organism)','114288002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114289005','114289005','http://snomed.info/sct','Salmonella Muenster var 15+,34+ (organism)','114289005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114290001','114290001','http://snomed.info/sct','Salmonella Anatum var 15+, 34+ (organism)','114290001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114291002','114291002','http://snomed.info/sct','Salmonella Meleagridis var 15+, 34+ (organism)','114291002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114292009','114292009','http://snomed.info/sct','Salmonella Westhampton var 15+, 34+ (organism)','114292009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114293004','114293004','http://snomed.info/sct','Salmonella Give var 15+, 34+ (organism)','114293004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114294005','114294005','http://snomed.info/sct','Salmonella Orion var 15+, 34+ (organism)','114294005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114295006','114295006','http://snomed.info/sct','Salmonella Lexington var 15+, 34+ (organism)','114295006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114296007','114296007','http://snomed.info/sct','Salmonella Niumi (organism)','114296007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114298008','114298008','http://snomed.info/sct','Salmonella Alkmaar (organism)','114298008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114299000','114299000','http://snomed.info/sct','Salmonella Eastglam (organism)','114299000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114300008','114300008','http://snomed.info/sct','Salmonella Bida (organism)','114300008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114301007','114301007','http://snomed.info/sct','Salmonella Hayindogo (organism)','114301007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114302000','114302000','http://snomed.info/sct','Salmonella Petahtikve (organism)','114302000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114303005','114303005','http://snomed.info/sct','Salmonella Oersterbro (organism)','114303005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114305003','114305003','http://snomed.info/sct','Salmonella Fulda (organism)','114305003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114306002','114306002','http://snomed.info/sct','Salmonella Kindia (organism)','114306002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114307006','114307006','http://snomed.info/sct','Salmonella Kinson (organism)','114307006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114308001','114308001','http://snomed.info/sct','Salmonella Kainji (organism)','114308001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114309009','114309009','http://snomed.info/sct','Salmonella Honkong (organism)','114309009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114310004','114310004','http://snomed.info/sct','Salmonella Ochiogu (organism)','114310004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114312007','114312007','http://snomed.info/sct','Salmonella Thies (organism)','114312007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114313002','114313002','http://snomed.info/sct','Salmonella Slade (organism)','114313002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114314008','114314008','http://snomed.info/sct','Salmonella II 11:a:d:e,n,z15 (organism)','114314008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114315009','114315009','http://snomed.info/sct','Salmonella VI 11:a:1,5 (organism)','114315009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114316005','114316005','http://snomed.info/sct','Salmonella II 11:a:z6:z42 (organism)','114316005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114317001','114317001','http://snomed.info/sct','Salmonella VI 11:b:1,7 (organism)','114317001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114318006','114318006','http://snomed.info/sct','Salmonella VI 11:b:e,n,x (organism)','114318006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114319003','114319003','http://snomed.info/sct','Salmonella Brindisi (organism)','114319003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114320009','114320009','http://snomed.info/sct','Salmonella II 11:c:e,n,z15 (organism)','114320009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114321008','114321008','http://snomed.info/sct','Salmonella Woodinville (organism)','114321008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114322001','114322001','http://snomed.info/sct','Salmonella Ati (organism)','114322001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114323006','114323006','http://snomed.info/sct','Salmonella Abuja (organism)','114323006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114324000','114324000','http://snomed.info/sct','Salmonella Missouri (organism)','114324000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114325004','114325004','http://snomed.info/sct','Salmonella II 11:g,[m],s,t:z39 (organism)','114325004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114326003','114326003','http://snomed.info/sct','Salmonella IV 11:g,z51:- (organism)','114326003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114327007','114327007','http://snomed.info/sct','Salmonella Moers (organism)','114327007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114328002','114328002','http://snomed.info/sct','Salmonella II 11:m,t:e,n,x (organism)','114328002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114329005','114329005','http://snomed.info/sct','Salmonella Mannheim (organism)','114329005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114330000','114330000','http://snomed.info/sct','Salmonella IIIb 11:k:z53 (organism)','114330000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114331001','114331001','http://snomed.info/sct','Salmonella IIIb 11:l,v:z (organism)','114331001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114332008','114332008','http://snomed.info/sct','Salmonella IIIb 11:l,v:z53 (organism)','114332008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114333003','114333003','http://snomed.info/sct','Salmonella Tours (organism)','114333003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114334009','114334009','http://snomed.info/sct','Salmonella Connecticut (organism)','114334009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114335005','114335005','http://snomed.info/sct','Salmonella II 11:l,z28:e,n,x (organism)','114335005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114337002','114337002','http://snomed.info/sct','Salmonella Euston (organism)','114337002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114338007','114338007','http://snomed.info/sct','Salmonella Maroua (organism)','114338007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114339004','114339004','http://snomed.info/sct','Salmonella II 11:z:e,n,x (organism)','114339004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114340002','114340002','http://snomed.info/sct','Salmonella II 11:z:z39 (organism)','114340002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114341003','114341003','http://snomed.info/sct','Salmonella IIIa 11:z4,z23:- (organism)','114341003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114342005','114342005','http://snomed.info/sct','Salmonella IV 11:z4,z23:- (organism)','114342005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114344006','114344006','http://snomed.info/sct','Salmonella II 1,13,23:a:1,5 (organism)','114344006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114345007','114345007','http://snomed.info/sct','Salmonella II 1,13,23:a:e,n,x (organism)','114345007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114346008','114346008','http://snomed.info/sct','Salmonella II 1,13,23:a:z42 (organism)','114346008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114347004','114347004','http://snomed.info/sct','Salmonella II 1,13,23:b:[1,5]:z42 (organism)','114347004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114348009','114348009','http://snomed.info/sct','Salmonella Sanktjohann (organism)','114348009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114349001','114349001','http://snomed.info/sct','Salmonella Vridi (organism)','114349001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114350001','114350001','http://snomed.info/sct','Salmonella II 1,13,22:g,m,t:[1,5] (organism)','114350001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114351002','114351002','http://snomed.info/sct','Salmonella II 1,13,23:g,m,[s],t:[e,n,x] (organism)','114351002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114352009','114352009','http://snomed.info/sct','Salmonella II 1,13,23:g,t:1,5 (organism)','114352009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114354005','114354005','http://snomed.info/sct','Salmonella II 1,13,23:m,t:1,5 (organism)','114354005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114355006','114355006','http://snomed.info/sct','Salmonella II 1,13,23:m,t:e,n,x (organism)','114355006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114356007','114356007','http://snomed.info/sct','Salmonella II 13,22:m,t:z42:z39 (organism)','114356007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114357003','114357003','http://snomed.info/sct','Salmonella II 1,13,23:m,t:z42 (organism)','114357003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114358008','114358008','http://snomed.info/sct','Salmonella V 1,13,22:i:- (organism)','114358008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114359000','114359000','http://snomed.info/sct','Salmonella IIIb 13,22:l,v:1,5,7 (organism)','114359000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114360005','114360005','http://snomed.info/sct','Salmonella II 13,23:l,w:e,n,x (organism)','114360005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114361009','114361009','http://snomed.info/sct','Salmonella II 1,13,23:l,z28:z42 (organism)','114361009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114362002','114362002','http://snomed.info/sct','Salmonella V 13,22:r:- (organism)','114362002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114363007','114363007','http://snomed.info/sct','Salmonella II 1,13,23:z:1,5 (organism)','114363007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114364001','114364001','http://snomed.info/sct','Salmonella II 1,13,23:z:z42 (organism)','114364001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114365000','114365000','http://snomed.info/sct','Salmonella II 13,22:z:- (organism)','114365000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114366004','114366004','http://snomed.info/sct','Salmonella IIIa 13,22:z4,z23:- (organism)','114366004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114367008','114367008','http://snomed.info/sct','Salmonella IIIa 13,23:z4,z23,[z32]:- (organism)','114367008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114368003','114368003','http://snomed.info/sct','Salmonella II 1,13,22:z10:z6 (organism)','114368003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114369006','114369006','http://snomed.info/sct','Salmonella II 13,22:z29:1,5 (organism)','114369006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114370007','114370007','http://snomed.info/sct','Salmonella II 13,22:z29:e,n,x (organism)','114370007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114371006','114371006','http://snomed.info/sct','Salmonella II 13,22:z39:1,7 (organism)','114371006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114372004','114372004','http://snomed.info/sct','Salmonella II 1,13,23:z39:1,5,7 (organism)','114372004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114373009','114373009','http://snomed.info/sct','Salmonella II 1,13,23:[z42]:1,[5],7 (organism)','114373009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114374003','114374003','http://snomed.info/sct','Salmonella II 1,13,23:e,n,x:1,[5],7 (organism)','114374003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114375002','114375002','http://snomed.info/sct','Salmonella VI [1],6,14:a:1,5 (organism)','114375002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114376001','114376001','http://snomed.info/sct','Salmonella VI 1,6,14,25:a:e,n,x (organism)','114376001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114377005','114377005','http://snomed.info/sct','Salmonella Woodhull (organism)','114377005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114378000','114378000','http://snomed.info/sct','Salmonella Sylvania (organism)','114378000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114379008','114379008','http://snomed.info/sct','Salmonella II 1,6,14:m,t:1,5 (organism)','114379008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114380006','114380006','http://snomed.info/sct','Salmonella II 6,14:m,t:e,n,x (organism)','114380006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114381005','114381005','http://snomed.info/sct','Salmonella II 6,14,[24]:k:1,6 (organism)','114381005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114382003','114382003','http://snomed.info/sct','Salmonella IIIb 6,14:l,v:z53 (organism)','114382003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114383008','114383008','http://snomed.info/sct','Salmonella Istoria (organism)','114383008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114385001','114385001','http://snomed.info/sct','Salmonella Kanifing (organism)','114385001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114386000','114386000','http://snomed.info/sct','Salmonella Arapahoe (organism)','114386000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114387009','114387009','http://snomed.info/sct','Salmonella VI 1,6,14,25:z10:1,(2),7 (organism)','114387009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114388004','114388004','http://snomed.info/sct','Salmonella II 1,6,14:z10:1,5 (organism)','114388004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114389007','114389007','http://snomed.info/sct','Salmonella Laredo (organism)','114389007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114390003','114390003','http://snomed.info/sct','Salmonella II 1,6,14:z10:z6:z42 (organism)','114390003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114391004','114391004','http://snomed.info/sct','Salmonella IIIb 6,14:z10:z53 (organism)','114391004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114392006','114392006','http://snomed.info/sct','Salmonella IIIb 6,14:z52:e,n,x,z15 (organism)','114392006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114393001','114393001','http://snomed.info/sct','Salmonella Vegesack (organism)','114393001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114394007','114394007','http://snomed.info/sct','Salmonella Yoruba (organism)','114394007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114395008','114395008','http://snomed.info/sct','Salmonella Sculcoates (organism)','114395008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114396009','114396009','http://snomed.info/sct','Salmonella II 16:e,n,x:1,(5),7 (organism)','114396009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114397000','114397000','http://snomed.info/sct','Salmonella II 16:e,n,x:1,6:z42 (organism)','114397000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114398005','114398005','http://snomed.info/sct','Salmonella II 16:g,[m],[s],t:[1,5]:[z42] (organism)','114398005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114399002','114399002','http://snomed.info/sct','Salmonella II g,[m],[s],t:[e,n,x] (organism)','114399002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114400009','114400009','http://snomed.info/sct','Salmonella Cardoner (organism)','114400009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114401008','114401008','http://snomed.info/sct','Salmonella II 16:m,t:[z42] (organism)','114401008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114402001','114402001','http://snomed.info/sct','Salmonella Agbara (organism)','114402001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114403006','114403006','http://snomed.info/sct','Salmonella Zigong (organism)','114403006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114405004','114405004','http://snomed.info/sct','Salmonella II 16:l,z28:z42 (organism)','114405004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114406003','114406003','http://snomed.info/sct','Salmonella Ivory (organism)','114406003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114407007','114407007','http://snomed.info/sct','Salmonella Brunflo (organism)','114407007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114408002','114408002','http://snomed.info/sct','Salmonella Gerland (organism)','114408002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114409005','114409005','http://snomed.info/sct','Salmonella II 16:z:e,n,x (organism)','114409005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114410000','114410000','http://snomed.info/sct','Salmonella II 16:z4,z23:- (organism)','114410000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114412008','114412008','http://snomed.info/sct','Salmonella II 16:z4,z24:- (organism)','114412008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114413003','114413003','http://snomed.info/sct','Salmonella IV 16:z4,z32:- (organism)','114413003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114414009','114414009','http://snomed.info/sct','Salmonella Badgary (organism)','114414009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114415005','114415005','http://snomed.info/sct','Salmonella II 16:z29:1,5 (organism)','114415005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114416006','114416006','http://snomed.info/sct','Salmonella II 16:z29:e,n,x (organism)','114416006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114417002','114417002','http://snomed.info/sct','Salmonella Trier (organism)','114417002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114418007','114418007','http://snomed.info/sct','Salmonella II 16:z35:e,n,x (organism)','114418007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114419004','114419004','http://snomed.info/sct','Salmonella IV 16:z36:- (organism)','114419004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114420005','114420005','http://snomed.info/sct','Salmonella II 16:z36:e,n,z15 (organism)','114420005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114421009','114421009','http://snomed.info/sct','Salmonella Grancanaria (organism)','114421009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114422002','114422002','http://snomed.info/sct','Salmonella II 16:z42:1,(5),7 (organism)','114422002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114423007','114423007','http://snomed.info/sct','Salmonella II 16:l,w:z6 (organism)','114423007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114424001','114424001','http://snomed.info/sct','Salmonella II 16:z42:1,6 (organism)','114424001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114425000','114425000','http://snomed.info/sct','Salmonella Dahra (organism)','114425000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114426004','114426004','http://snomed.info/sct','Salmonella II 17:b:e,n,x,z15 (organism)','114426004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114427008','114427008','http://snomed.info/sct','Salmonella Luedinghausen (organism)','114427008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114428003','114428003','http://snomed.info/sct','Salmonella Karlshamn (organism)','114428003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114429006','114429006','http://snomed.info/sct','Salmonella II 17:e,n,x,z15:1,6 (organism)','114429006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114430001','114430001','http://snomed.info/sct','Salmonella II 17:e,n,x,z15:1,[5],7 (organism)','114430001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114431002','114431002','http://snomed.info/sct','Salmonella II 17:g,m,s,t:- (organism)','114431002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114432009','114432009','http://snomed.info/sct','Salmonella Lowestoft (organism)','114432009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114433004','114433004','http://snomed.info/sct','Salmonella II 17:g,t:[e,n,x,z15] (organism)','114433004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114434005','114434005','http://snomed.info/sct','Salmonella Zaria (organism)','114434005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114435006','114435006','http://snomed.info/sct','Salmonella IIIb 17:k:z (organism)','114435006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114436007','114436007','http://snomed.info/sct','Salmonella II 17:k:- (organism)','114436007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114437003','114437003','http://snomed.info/sct','Salmonella Lancaster (organism)','114437003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114438008','114438008','http://snomed.info/sct','Salmonella Tendeba (organism)','114438008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114439000','114439000','http://snomed.info/sct','Salmonella Hadejia (organism)','114439000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114440003','114440003','http://snomed.info/sct','Salmonella II 17:z:1,7 (organism)','114440003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114441004','114441004','http://snomed.info/sct','Salmonella II 17:z:l,w:z42 (organism)','114441004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114462003','114462003','http://snomed.info/sct','Salmonella Koessen (organism)','114462003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114463008','114463008','http://snomed.info/sct','Salmonella Huettwillen (organism)','114463008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114464002','114464002','http://snomed.info/sct','Salmonella II 1,4,12,27:a:z39 (organism)','114464002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114465001','114465001','http://snomed.info/sct','Salmonella II 4,12:b:1,5 (organism)','114465001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114467009','114467009','http://snomed.info/sct','Salmonella Tripoli (organism)','114467009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114468004','114468004','http://snomed.info/sct','Salmonella II 4,12:d:e,n,x (organism)','114468004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114470008','114470008','http://snomed.info/sct','Salmonella II 4,12:e,n,x:1,2,7 (organism)','114470008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114471007','114471007','http://snomed.info/sct','Salmonella II 1,4,12,27:e,n,x:1,[5]7 (organism)','114471007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114472000','114472000','http://snomed.info/sct','Salmonella II 1,4,[5],12:f,g,t:z6:z42 (organism)','114472000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114473005','114473005','http://snomed.info/sct','Salmonella II 1,4,12,27:g,[m],[s],t:e,n,x (organism)','114473005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114474004','114474004','http://snomed.info/sct','Salmonella II 1,4,12,27:g,[m],t:[1,5] (organism)','114474004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114475003','114475003','http://snomed.info/sct','Salmonella II 4,12:g,m,t:z39 (organism)','114475003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114476002','114476002','http://snomed.info/sct','Salmonella II 4,12:g,z62:- (organism)','114476002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114477006','114477006','http://snomed.info/sct','Salmonella Madras (organism)','114477006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114478001','114478001','http://snomed.info/sct','Salmonella Farsta (organism)','114478001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114479009','114479009','http://snomed.info/sct','Salmonella Tumodi (organism)','114479009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114481006','114481006','http://snomed.info/sct','Salmonella II 1,4,12,27:k:1,6 (organism)','114481006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114482004','114482004','http://snomed.info/sct','Salmonella II 4,12:l,w:e,n,x (organism)','114482004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114483009','114483009','http://snomed.info/sct','Salmonella Haduna (organism)','114483009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114484003','114484003','http://snomed.info/sct','Salmonella Finaghy (organism)','114484003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114485002','114485002','http://snomed.info/sct','Salmonella II 1,4,12,27:z:1,5 (organism)','114485002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114486001','114486001','http://snomed.info/sct','Salmonella Loubomo (organism)','114486001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114487005','114487005','http://snomed.info/sct','Salmonella II 4,12:z:1,7 (organism)','114487005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114488000','114488000','http://snomed.info/sct','Salmonella II 1,4,12,27:z:e,n,x (organism)','114488000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114489008','114489008','http://snomed.info/sct','Salmonella II 4,12,:z:z39 (organism)','114489008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114490004','114490004','http://snomed.info/sct','Salmonella Vuadens (organism)','114490004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114491000','114491000','http://snomed.info/sct','Salmonella II 1,4,12:z29:e,n,x (organism)','114491000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114492007','114492007','http://snomed.info/sct','Salmonella II 1,4,12,27:z39:1,[5],7 (organism)','114492007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114493002','114493002','http://snomed.info/sct','Salmonella Maska (organism)','114493002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114494008','114494008','http://snomed.info/sct','Salmonella II 6,7,14:a:1,5 (organism)','114494008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114496005','114496005','http://snomed.info/sct','Salmonella II 6,7:a:z42 (organism)','114496005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114497001','114497001','http://snomed.info/sct','Salmonella II 6,7:b:[e,n,x]:z42 (organism)','114497001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114498006','114498006','http://snomed.info/sct','Salmonella Schwabach (organism)','114498006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114499003','114499003','http://snomed.info/sct','Salmonella Namibia (organism)','114499003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114501006','114501006','http://snomed.info/sct','Salmonella II 6,7:d:z42 (organism)','114501006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114502004','114502004','http://snomed.info/sct','Salmonella Nola (organism)','114502004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114504003','114504003','http://snomed.info/sct','Salmonella IV 6,7:g:z51:- (organism)','114504003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114506001','114506001','http://snomed.info/sct','Salmonella Winston (organism)','114506001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114507005','114507005','http://snomed.info/sct','Salmonella Oakey (organism)','114507005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114508000','114508000','http://snomed.info/sct','Salmonella II 6,7:m,t:- (organism)','114508000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114509008','114509008','http://snomed.info/sct','Salmonella Strathcona (organism)','114509008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114510003','114510003','http://snomed.info/sct','Salmonella II 6,7:l,z28:1,5:[z42] (organism)','114510003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114511004','114511004','http://snomed.info/sct','Salmonella II 6,7:l,z28:e,n,x (organism)','114511004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114512006','114512006','http://snomed.info/sct','Salmonella Chile (organism)','114512006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114513001','114513001','http://snomed.info/sct','Salmonella Poitiers (organism)','114513001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114514007','114514007','http://snomed.info/sct','Salmonella II 6,7:z:1,5 (organism)','114514007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114516009','114516009','http://snomed.info/sct','Salmonella Planckendael (organism)','114516009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114517000','114517000','http://snomed.info/sct','Salmonella IV 6,7:z4,z23:- (organism)','114517000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114518005','114518005','http://snomed.info/sct','Salmonella II 6,7:z4,z24:z42 (organism)','114518005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114519002','114519002','http://snomed.info/sct','Salmonella IV 6,7:z4,z24:- (organism)','114519002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114520008','114520008','http://snomed.info/sct','Salmonella II 6,7:z6:1,7 (organism)','114520008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114523005','114523005','http://snomed.info/sct','Salmonella II 6,7:z29:[z42] (organism)','114523005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114524004','114524004','http://snomed.info/sct','Salmonella Tienba (organism)','114524004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114525003','114525003','http://snomed.info/sct','Salmonella Tampico (organism)','114525003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114526002','114526002','http://snomed.info/sct','Salmonella II 6,7:z36:z42 (organism)','114526002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114527006','114527006','http://snomed.info/sct','Salmonella IV 6,7:z36:- (organism)','114527006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114528001','114528001','http://snomed.info/sct','Salmonella II 6,7:z39:1,5,7 (organism)','114528001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114530004','114530004','http://snomed.info/sct','Salmonella II 6,7:l,w:z42 (organism)','114530004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114531000','114531000','http://snomed.info/sct','Salmonella II 6,7:z:z42 (organism)','114531000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114532007','114532007','http://snomed.info/sct','Salmonella II 6,7:z42:1,7 (organism)','114532007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114533002','114533002','http://snomed.info/sct','Salmonella Ohio var 14+ (organism)','114533002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114534008','114534008','http://snomed.info/sct','Salmonella Amersfoort var 14+ (organism)','114534008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114535009','114535009','http://snomed.info/sct','Salmonella Rissen var 14+ (organism)','114535009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114536005','114536005','http://snomed.info/sct','Salmonella Oranienburg var 14+ (organism)','114536005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114537001','114537001','http://snomed.info/sct','Salmonella Gdansk var 14+ (organism)','114537001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114538006','114538006','http://snomed.info/sct','Salmonella Lille var 14+ (organism)','114538006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114539003','114539003','http://snomed.info/sct','Salmonella Livingstone var 14+ (organism)','114539003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114540001','114540001','http://snomed.info/sct','Salmonella II 6,7:l,z28:z6 (organism)','114540001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114541002','114541002','http://snomed.info/sct','Salmonella Valdosta (organism)','114541002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114542009','114542009','http://snomed.info/sct','Salmonella II 6,8:a:z39 (organism)','114542009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114543004','114543004','http://snomed.info/sct','Salmonella II 6,8:a:z52 (organism)','114543004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114544005','114544005','http://snomed.info/sct','Salmonella II 6,8:b:1,5 (organism)','114544005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114545006','114545006','http://snomed.info/sct','Salmonella Portanigra (organism)','114545006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114546007','114546007','http://snomed.info/sct','Salmonella II 6,8:f,g:e,n,z15 (organism)','114546007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114547003','114547003','http://snomed.info/sct','Salmonella II 6,8:m,t:1,5 (organism)','114547003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114548008','114548008','http://snomed.info/sct','Salmonella II 6,8:m,t:e,n,x (organism)','114548008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114550000','114550000','http://snomed.info/sct','Salmonella Magherafelt (organism)','114550000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114551001','114551001','http://snomed.info/sct','Salmonella Kallo (organism)','114551001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114552008','114552008','http://snomed.info/sct','Salmonella II 6,8:l,w:z6:z42 (organism)','114552008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114553003','114553003','http://snomed.info/sct','Salmonella II 6,8:l,z28:e,n,x (organism)','114553003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114554009','114554009','http://snomed.info/sct','Salmonella Bsilla (organism)','114554009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114555005','114555005','http://snomed.info/sct','Salmonella Noya (organism)','114555005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114556006','114556006','http://snomed.info/sct','Salmonella Benue (organism)','114556006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114557002','114557002','http://snomed.info/sct','Salmonella Phaliron (organism)','114557002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114558007','114558007','http://snomed.info/sct','Salmonella Daula (organism)','114558007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114559004','114559004','http://snomed.info/sct','Salmonella Breda (organism)','114559004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114560009','114560009','http://snomed.info/sct','Salmonella Ramiremont (organism)','114560009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114561008','114561008','http://snomed.info/sct','Salmonella II 6,8:z29:1,2 (organism)','114561008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114562001','114562001','http://snomed.info/sct','Salmonella Kolda (organism)','114562001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114563006','114563006','http://snomed.info/sct','Salmonella Sindelfingen (organism)','114563006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114564000','114564000','http://snomed.info/sct','Salmonella Dunkwa (organism)','114564000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114565004','114565004','http://snomed.info/sct','Salmonella II 1,9,12:a:z42 (organism)','114565004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114566003','114566003','http://snomed.info/sct','Salmonella II 1,9,12:b:e,n,x (organism)','114566003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114567007','114567007','http://snomed.info/sct','Salmonella II 1,9,12:b:z6 (organism)','114567007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114568002','114568002','http://snomed.info/sct','Salmonella II 1,9,12:b:z39 (organism)','114568002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114570006','114570006','http://snomed.info/sct','Salmonella Eschberg (organism)','114570006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114571005','114571005','http://snomed.info/sct','Salmonella II 9,12:d:e,n,x (organism)','114571005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114572003','114572003','http://snomed.info/sct','Salmonella Bangui (organism)','114572003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114573008','114573008','http://snomed.info/sct','Salmonella II 9,12:d:z39 (organism)','114573008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114574002','114574002','http://snomed.info/sct','Salmonella II 9,12:e,n,x:1,[5],7 (organism)','114574002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114575001','114575001','http://snomed.info/sct','Salmonella II 1,9,12:g,m,s,t:e,n,x (organism)','114575001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114576000','114576000','http://snomed.info/sct','Salmonella II 9,12:g,s,t:e,n,x (organism)','114576000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114577009','114577009','http://snomed.info/sct','Salmonella II 1,9,12:g,z62:[e,n,x] (organism)','114577009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114578004','114578004','http://snomed.info/sct','Salmonella II 1,9,12:m,t:1,5 (organism)','114578004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114579007','114579007','http://snomed.info/sct','Salmonella II 1,9,12:m,t:z39 (organism)','114579007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114580005','114580005','http://snomed.info/sct','Salmonella Kotu (organism)','114580005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114581009','114581009','http://snomed.info/sct','Salmonella II 9,12:l,z28:1,5:[z42] (organism)','114581009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114582002','114582002','http://snomed.info/sct','Salmonella Powell (organism)','114582002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114583007','114583007','http://snomed.info/sct','Salmonella II 1,9,12:y:z39 (organism)','114583007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114584001','114584001','http://snomed.info/sct','Salmonella II 1,9,12:z:1,7 (organism)','114584001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114585000','114585000','http://snomed.info/sct','Salmonella II 1,9,12:z:z6 (organism)','114585000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114586004','114586004','http://snomed.info/sct','Salmonella II 9,12:z:z39 (organism)','114586004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114588003','114588003','http://snomed.info/sct','Salmonella Natal (organism)','114588003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114589006','114589006','http://snomed.info/sct','Salmonella Franken (organism)','114589006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114590002','114590002','http://snomed.info/sct','Salmonella Treguier (organism)','114590002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114591003','114591003','http://snomed.info/sct','Salmonella Ruanda (organism)','114591003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114592005','114592005','http://snomed.info/sct','Salmonella II 9,12:z29:1,5 (organism)','114592005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114593000','114593000','http://snomed.info/sct','Salmonella II 1,9,12:z39:1,7 (organism)','114593000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114595007','114595007','http://snomed.info/sct','Salmonella II 1,9,12:l,w:e,n,x (organism)','114595007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114596008','114596008','http://snomed.info/sct','Salmonella Cheltenham (organism)','114596008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114597004','114597004','http://snomed.info/sct','Salmonella II 9,46:b:e,n,x (organism)','114597004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114599001','114599001','http://snomed.info/sct','Salmonella Macclesfield (organism)','114599001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114600003','114600003','http://snomed.info/sct','Salmonella II 9,46:g,[m],[s],t:[e,n,x] (organism)','114600003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114601004','114601004','http://snomed.info/sct','Salmonella II 9,46:g,z62:- (organism)','114601004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114602006','114602006','http://snomed.info/sct','Salmonella Ackwepe (organism)','114602006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114603001','114603001','http://snomed.info/sct','Salmonella Nordrhein (organism)','114603001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114604007','114604007','http://snomed.info/sct','Salmonella Deckstein (organism)','114604007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114605008','114605008','http://snomed.info/sct','Salmonella Irchel (organism)','114605008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114606009','114606009','http://snomed.info/sct','Salmonella Nantes (organism)','114606009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114607000','114607000','http://snomed.info/sct','Salmonella II 9,46:z:1,5 (organism)','114607000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114608005','114608005','http://snomed.info/sct','Salmonella II 9,46:z:e,n,x (organism)','114608005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114609002','114609002','http://snomed.info/sct','Salmonella II 9,46:z4,z24:z39:z42 (organism)','114609002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114612004','114612004','http://snomed.info/sct','Salmonella II 1,9,12,46,27:a:z6 (organism)','114612004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114613009','114613009','http://snomed.info/sct','Salmonella II 1,9,12,46,27:c:z39 (organism)','114613009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114615002','114615002','http://snomed.info/sct','Salmonella II 3,10:a:e,n,x (organism)','114615002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114616001','114616001','http://snomed.info/sct','Salmonella II 3,10:a:l,v (organism)','114616001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114618000','114618000','http://snomed.info/sct','Salmonella Lamberhurst (organism)','114618000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114619008','114619008','http://snomed.info/sct','Salmonella II 3,10,[15]:g,m,s,t:[1,5] (organism)','114619008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114620002','114620002','http://snomed.info/sct','Salmonella II 3,10:g,t:- (organism)','114620002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114621003','114621003','http://snomed.info/sct','Salmonella II 3,10:m,t:1,5 (organism)','114621003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114622005','114622005','http://snomed.info/sct','Salmonella II 3,10:m,t:e,n,x (organism)','114622005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114623000','114623000','http://snomed.info/sct','Salmonella Tibati (organism)','114623000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114624006','114624006','http://snomed.info/sct','Salmonella Hoboken (organism)','114624006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114625007','114625007','http://snomed.info/sct','Salmonella Serrekunda (organism)','114625007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114626008','114626008','http://snomed.info/sct','Salmonella II 3,10:l,v:z6 (organism)','114626008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114627004','114627004','http://snomed.info/sct','Salmonella II 3,10:l,z28:e,n,x (organism)','114627004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114628009','114628009','http://snomed.info/sct','Salmonella II 3,10:z:1,5 (organism)','114628009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114629001','114629001','http://snomed.info/sct','Salmonella Harleystreet (organism)','114629001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114630006','114630006','http://snomed.info/sct','Salmonella II 3,10:z:e,n,x (organism)','114630006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114631005','114631005','http://snomed.info/sct','Salmonella II 3,10:z:z39 (organism)','114631005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114632003','114632003','http://snomed.info/sct','Salmonella Wagadugu (organism)','114632003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114633008','114633008','http://snomed.info/sct','Salmonella Okerara (organism)','114633008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114635001','114635001','http://snomed.info/sct','Salmonella II 3,10:z38:z42 (organism)','114635001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114636000','114636000','http://snomed.info/sct','Salmonella II 17:z10:- (organism)','114636000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114638004','114638004','http://snomed.info/sct','Salmonella Aachen (organism)','114638004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114639007','114639007','http://snomed.info/sct','Salmonella IV 17:z36:- (organism)','114639007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114640009','114640009','http://snomed.info/sct','Salmonella II 17:c:z39 (organism)','114640009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114641008','114641008','http://snomed.info/sct','Salmonella IIIb 18:l,v:z53 (organism)','114641008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114642001','114642001','http://snomed.info/sct','Salmonella Potengi (organism)','114642001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114644000','114644000','http://snomed.info/sct','Salmonella IIIb 18:z10:e,n,x,z15 (organism)','114644000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114645004','114645004','http://snomed.info/sct','Salmonella Leer (organism)','114645004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114646003','114646003','http://snomed.info/sct','Salmonella II 18:z10:z6 (organism)','114646003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114647007','114647007','http://snomed.info/sct','Salmonella II 18:z36:- (organism)','114647007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114648002','114648002','http://snomed.info/sct','Salmonella Delmenhorst (organism)','114648002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114649005','114649005','http://snomed.info/sct','Salmonella Tennenlohe (organism)','114649005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114651009','114651009','http://snomed.info/sct','Salmonella IIIb 21:c:e,n,x,z15 (organism)','114651009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114652002','114652002','http://snomed.info/sct','Salmonella II 21:g,[m],[s],t:- (organism)','114652002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114653007','114653007','http://snomed.info/sct','Salmonella IV 21:g,z51:- (organism)','114653007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114654001','114654001','http://snomed.info/sct','Salmonella II 21:m,t:- (organism)','114654001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114655000','114655000','http://snomed.info/sct','Salmonella Surrey (organism)','114655000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114656004','114656004','http://snomed.info/sct','Salmonella Jambur (organism)','114656004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114657008','114657008','http://snomed.info/sct','Salmonella Mountmagnet (organism)','114657008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114658003','114658003','http://snomed.info/sct','Salmonella IIIb 21:r:z (organism)','114658003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114659006','114659006','http://snomed.info/sct','Salmonella Ibaragi (organism)','114659006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114661002','114661002','http://snomed.info/sct','Salmonella IV 21:z4,z32:- (organism)','114661002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114662009','114662009','http://snomed.info/sct','Salmonella II 21:z10:[z6] (organism)','114662009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114663004','114663004','http://snomed.info/sct','Salmonella IIIb 21:z10:z53 (organism)','114663004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114664005','114664005','http://snomed.info/sct','Salmonella IV 21:z36:- (organism)','114664005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114665006','114665006','http://snomed.info/sct','Salmonella IV 21:z4,z23:- (organism)','114665006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114666007','114666007','http://snomed.info/sct','Salmonella II 28:a:e,n,x (organism)','114666007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114667003','114667003','http://snomed.info/sct','Salmonella Dibra (organism)','114667003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114668008','114668008','http://snomed.info/sct','Salmonella Soumbedioune (organism)','114668008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114669000','114669000','http://snomed.info/sct','Salmonella II 28:b:e,n,x (organism)','114669000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114670004','114670004','http://snomed.info/sct','Salmonella Freefalls (organism)','114670004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114671000','114671000','http://snomed.info/sct','Salmonella II 28:b:z6 (organism)','114671000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114672007','114672007','http://snomed.info/sct','Salmonella Yardley (organism)','114672007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114673002','114673002','http://snomed.info/sct','Salmonella II 28:g,(m),[s],t:1,5 (organism)','114673002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114674008','114674008','http://snomed.info/sct','Salmonella II 28:g,m,t:z39 (organism)','114674008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114675009','114675009','http://snomed.info/sct','Salmonella Morillons (organism)','114675009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114676005','114676005','http://snomed.info/sct','Salmonella Douala (organism)','114676005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114677001','114677001','http://snomed.info/sct','Salmonella Catalunia (organism)','114677001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114678006','114678006','http://snomed.info/sct','Salmonella Penilla (organism)','114678006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114679003','114679003','http://snomed.info/sct','Salmonella II 28:I,z28:1,5 (organism)','114679003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114681001','114681001','http://snomed.info/sct','Salmonella Vanier (organism)','114681001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114682008','114682008','http://snomed.info/sct','Salmonella II 28:z:1,5 (organism)','114682008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114683003','114683003','http://snomed.info/sct','Salmonella Doel (organism)','114683003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114684009','114684009','http://snomed.info/sct','Salmonella II 28:z:z39 (organism)','114684009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114685005','114685005','http://snomed.info/sct','Salmonella Cannobio (organism)','114685005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114686006','114686006','http://snomed.info/sct','Salmonella Libreville (organism)','114686006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114687002','114687002','http://snomed.info/sct','Salmonella IIIb 28:z10:z (organism)','114687002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114688007','114688007','http://snomed.info/sct','Salmonella II 28:z29:1,5 (organism)','114688007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114689004','114689004','http://snomed.info/sct','Salmonella II 28:z29:e,n,x (organism)','114689004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114690008','114690008','http://snomed.info/sct','Salmonella Konolfingen (organism)','114690008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114691007','114691007','http://snomed.info/sct','Salmonella Santander (organism)','114691007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114692000','114692000','http://snomed.info/sct','Salmonella II 30:a:z39 (organism)','114692000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114693005','114693005','http://snomed.info/sct','Salmonella Torhout (organism)','114693005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114694004','114694004','http://snomed.info/sct','Salmonella II 30:g,t:- (organism)','114694004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114695003','114695003','http://snomed.info/sct','Salmonella II 30:m,t:- (organism)','114695003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114696002','114696002','http://snomed.info/sct','Salmonella Mjordan (organism)','114696002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114697006','114697006','http://snomed.info/sct','Salmonella Ockenheim (organism)','114697006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114698001','114698001','http://snomed.info/sct','Salmonella II 30:l,z28:z6 (organism)','114698001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114699009','114699009','http://snomed.info/sct','Salmonella Grandhaven (organism)','114699009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114700005','114700005','http://snomed.info/sct','Salmonella Stoneferry (organism)','114700005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114701009','114701009','http://snomed.info/sct','Salmonella Senneville (organism)','114701009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114702002','114702002','http://snomed.info/sct','Salmonella II 30:z10:e,n,x,z15 (organism)','114702002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114703007','114703007','http://snomed.info/sct','Salmonella Gouloumbo (organism)','114703007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114704001','114704001','http://snomed.info/sct','Salmonella II 35:d:1,5 (organism)','114704001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114705000','114705000','http://snomed.info/sct','Salmonella II 35:g,t:1,5 (organism)','114705000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114706004','114706004','http://snomed.info/sct','Salmonella II 35:m,t- (organism)','114706004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114707008','114707008','http://snomed.info/sct','Salmonella IIIb 35:i:z35 (organism)','114707008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114708003','114708003','http://snomed.info/sct','Salmonella IIIb 35:k:z53 (organism)','114708003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114709006','114709006','http://snomed.info/sct','Salmonella IIIb 35:k:e,n,x,z15 (organism)','114709006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114710001','114710001','http://snomed.info/sct','Salmonella IIIb 35:l,v:z35:[z67] (organism)','114710001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114711002','114711002','http://snomed.info/sct','Salmonella IIIb 35:r:z (organism)','114711002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114712009','114712009','http://snomed.info/sct','Salmonella II 35:z29:e,n,x (organism)','114712009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114713004','114713004','http://snomed.info/sct','Salmonella Oran (organism)','114713004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114714005','114714005','http://snomed.info/sct','Salmonella II 38:d:1,5 (organism)','114714005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114715006','114715006','http://snomed.info/sct','Salmonella II 38:g,t:- (organism)','114715006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114716007','114716007','http://snomed.info/sct','Salmonella Rothenburgsort (organism)','114716007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114717003','114717003','http://snomed.info/sct','Salmonella IIIb 38:k: e,n,x,z15 (organism)','114717003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114718008','114718008','http://snomed.info/sct','Salmonella IIIb 38:(k):z35 (organism)','114718008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114719000','114719000','http://snomed.info/sct','Salmonella Taylor (organism)','114719000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114720006','114720006','http://snomed.info/sct','Salmonella IIIb 38:r:z:[z57] (organism)','114720006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114721005','114721005','http://snomed.info/sct','Salmonella Stachus (organism)','114721005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114723008','114723008','http://snomed.info/sct','Salmonella Neunkirchen (organism)','114723008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114724002','114724002','http://snomed.info/sct','Salmonella IIIb 38:z53:- (organism)','114724002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114725001','114725001','http://snomed.info/sct','Salmonella IIIb 38:z61:[z53] (organism)','114725001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114726000','114726000','http://snomed.info/sct','Salmonella II 39:e,n,x:1,7 (organism)','114726000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114727009','114727009','http://snomed.info/sct','Salmonella II 39:[g],m,t:[e,n,x] (organism)','114727009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114728004','114728004','http://snomed.info/sct','Salmonella Cumberland (organism)','114728004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114729007','114729007','http://snomed.info/sct','Salmonella Alma (organism)','114729007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114730002','114730002','http://snomed.info/sct','Salmonella II 39:l,v:1,5 (organism)','114730002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114731003','114731003','http://snomed.info/sct','Salmonella II 39:l,z28:e,n,x (organism)','114731003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114732005','114732005','http://snomed.info/sct','Salmonella II 39:l,z28:z39 (organism)','114732005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114733000','114733000','http://snomed.info/sct','Salmonella Hegau (organism)','114733000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114734006','114734006','http://snomed.info/sct','Salmonella II 39:-:1,7 (organism)','114734006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114735007','114735007','http://snomed.info/sct','Salmonella II 40:a:z39 (organism)','114735007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114736008','114736008','http://snomed.info/sct','Salmonella II 1,40:c:e,n,x,z15 (organism)','114736008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114737004','114737004','http://snomed.info/sct','Salmonella II 40:d:- (organism)','114737004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114738009','114738009','http://snomed.info/sct','Salmonella II 1.40:e,n,x :1,[5],7 (organism)','114738009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114739001','114739001','http://snomed.info/sct','Salmonella II 1,40:e,n,x,z15 :1,6 (organism)','114739001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114740004','114740004','http://snomed.info/sct','Salmonella II 1,40:g,[m],[s],[t]:e,n,x (organism)','114740004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114741000','114741000','http://snomed.info/sct','Salmonella II 1,40:g,[m],[s],t:1,5 (organism)','114741000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114742007','114742007','http://snomed.info/sct','Salmonella II 1,40:g,t:e,n,x,z15 (organism)','114742007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114743002','114743002','http://snomed.info/sct','Salmonella II 40:g,t:z39 (organism)','114743002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114744008','114744008','http://snomed.info/sct','Salmonella IV 1,40:g,t:- (organism)','114744008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114745009','114745009','http://snomed.info/sct','Salmonella II 1,40:g,[m],[s],t:z42 (organism)','114745009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114746005','114746005','http://snomed.info/sct','Salmonella IIIa 40:g,z51:- (organism)','114746005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114747001','114747001','http://snomed.info/sct','Salmonella IV 1,40:g,z51:- (organism)','114747001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114748006','114748006','http://snomed.info/sct','Salmonella II 1,40:k:e,n,x,z15 (organism)','114748006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114749003','114749003','http://snomed.info/sct','Salmonella II 40:k:z6 (organism)','114749003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114750003','114750003','http://snomed.info/sct','Salmonella Canary (organism)','114750003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114751004','114751004','http://snomed.info/sct','Salmonella II 40:l,v:e,n,x (organism)','114751004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114752006','114752006','http://snomed.info/sct','Salmonella Tiko (organism)','114752006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114753001','114753001','http://snomed.info/sct','Salmonella II 1,40:l,z28:1,5:z42 (organism)','114753001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114754007','114754007','http://snomed.info/sct','Salmonella II 1,40:l,z28:z39 (organism)','114754007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114755008','114755008','http://snomed.info/sct','Salmonella II 1,40:z:1,5 (organism)','114755008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114756009','114756009','http://snomed.info/sct','Salmonella II 1,40:z:z39 (organism)','114756009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114757000','114757000','http://snomed.info/sct','Salmonella II 40:z:z42 (organism)','114757000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114758005','114758005','http://snomed.info/sct','Salmonella IV 1,40:z4,z23:- (organism)','114758005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114759002','114759002','http://snomed.info/sct','Salmonella II 40:z4,z24:z39 (organism)','114759002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114760007','114760007','http://snomed.info/sct','Salmonella II 1,40:z35:e,n,x,z15 (organism)','114760007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114761006','114761006','http://snomed.info/sct','Salmonella Yekepa (organism)','114761006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114762004','114762004','http://snomed.info/sct','Salmonella V 1,40:z35:- (organism)','114762004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114763009','114763009','http://snomed.info/sct','Salmonella II 1,40:z39:1,5:z42 (organism)','114763009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114764003','114764003','http://snomed.info/sct','Salmonella II 1,40:z39:1,6 (organism)','114764003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114765002','114765002','http://snomed.info/sct','Salmonella IIIb 40:z39:1,6 (organism)','114765002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114766001','114766001','http://snomed.info/sct','Salmonella II 40:z39:1,7 (organism)','114766001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114767005','114767005','http://snomed.info/sct','Salmonella II 1,40:z42:1,6 (organism)','114767005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114768000','114768000','http://snomed.info/sct','Salmonella V 1,40:z81:- (organism)','114768000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114770009','114770009','http://snomed.info/sct','Salmonella Burundi (organism)','114770009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114771008','114771008','http://snomed.info/sct','Salmonella Vaugirard (organism)','114771008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114772001','114772001','http://snomed.info/sct','Salmonella VI 41:b:1,7 (organism)','114772001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114773006','114773006','http://snomed.info/sct','Salmonella Sica (organism)','114773006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114774000','114774000','http://snomed.info/sct','Salmonella II 41:d:z6 (organism)','114774000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114775004','114775004','http://snomed.info/sct','Salmonella II 41:g,t:- (organism)','114775004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114776003','114776003','http://snomed.info/sct','Salmonella Samaru (organism)','114776003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114777007','114777007','http://snomed.info/sct','Salmonella Verona (organism)','114777007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114778002','114778002','http://snomed.info/sct','Salmonella Ferlo (organism)','114778002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114779005','114779005','http://snomed.info/sct','Salmonella II 41:k:1,6 (organism)','114779005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114780008','114780008','http://snomed.info/sct','Salmonella II 41:k:z6 (organism)','114780008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114781007','114781007','http://snomed.info/sct','Salmonella II 41:z:1,5 (organism)','114781007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114782000','114782000','http://snomed.info/sct','Salmonella Bofflens (organism)','114782000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114783005','114783005','http://snomed.info/sct','Salmonella II 41:z10:1,2 (organism)','114783005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114784004','114784004','http://snomed.info/sct','Salmonella II 41:z10:e,n,x,z (organism)','114784004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114785003','114785003','http://snomed.info/sct','Salmonella II 41:z10:e,n,x,z15 (organism)','114785003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114786002','114786002','http://snomed.info/sct','Salmonella IV 41:z29:- (organism)','114786002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114787006','114787006','http://snomed.info/sct','Salmonella Ahoutoue (organism)','114787006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114788001','114788001','http://snomed.info/sct','Salmonella IV 41:z52:- (organism)','114788001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114789009','114789009','http://snomed.info/sct','Salmonella II 41:g,m,s,t:z6 (organism)','114789009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114790000','114790000','http://snomed.info/sct','Salmonella II 42:b:1,5 (organism)','114790000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114791001','114791001','http://snomed.info/sct','Salmonella Orbe (organism)','114791001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114792008','114792008','http://snomed.info/sct','Salmonella II 42:b:e,n,x,z15 (organism)','114792008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114793003','114793003','http://snomed.info/sct','Salmonella II 42:b:z6 (organism)','114793003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114794009','114794009','http://snomed.info/sct','Salmonella II 42:d:z6 (organism)','114794009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114795005','114795005','http://snomed.info/sct','Salmonella II 42:e,n,x:1,6 (organism)','114795005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114796006','114796006','http://snomed.info/sct','Salmonella II 42:g,t:- (organism)','114796006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114797002','114797002','http://snomed.info/sct','Salmonella IV 1,42:g,z51:- (organism)','114797002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114798007','114798007','http://snomed.info/sct','Salmonella Borromea (organism)','114798007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114799004','114799004','http://snomed.info/sct','Salmonella IIIb 42:k:e,n,x,z15 (organism)','114799004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114800000','114800000','http://snomed.info/sct','Salmonella II 42:l,v:e,n,x,z15 (organism)','114800000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114801001','114801001','http://snomed.info/sct','Salmonella II 1,42:l,w:e,n,x (organism)','114801001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114802008','114802008','http://snomed.info/sct','Salmonella II 42:r:- (organism)','114802008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114803003','114803003','http://snomed.info/sct','Salmonella Spalentor (organism)','114803003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114804009','114804009','http://snomed.info/sct','Salmonella II 42:z:1,5 (organism)','114804009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114805005','114805005','http://snomed.info/sct','Salmonella II 42:z:e,n,x,z15 (organism)','114805005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114807002','114807002','http://snomed.info/sct','Salmonella II 42:z:z6 (organism)','114807002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114808007','114808007','http://snomed.info/sct','Salmonella Broc (organism)','114808007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114809004','114809004','http://snomed.info/sct','Salmonella IV 1,42:z4,z24:- (organism)','114809004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114810009','114810009','http://snomed.info/sct','Salmonella II 42:z10:1,2 (organism)','114810009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114811008','114811008','http://snomed.info/sct','Salmonella IIIb 42:z10:z67 (organism)','114811008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114812001','114812001','http://snomed.info/sct','Salmonella Hennekamp (organism)','114812001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114813006','114813006','http://snomed.info/sct','Salmonella Tema (organism)','114813006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114814000','114814000','http://snomed.info/sct','Salmonella II 43:a:1,5 (organism)','114814000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114815004','114815004','http://snomed.info/sct','Salmonella Niederoderwitz (organism)','114815004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114816003','114816003','http://snomed.info/sct','Salmonella II 43:b:z42 (organism)','114816003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114817007','114817007','http://snomed.info/sct','Salmonella Orleans (organism)','114817007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114818002','114818002','http://snomed.info/sct','Salmonella II 43:g,m,[s],t:[z42] (organism)','114818002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114819005','114819005','http://snomed.info/sct','Salmonella II 43:g,t:[1,5] (organism)','114819005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114820004','114820004','http://snomed.info/sct','Salmonella IIIa 43:g,z51:- (organism)','114820004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114821000','114821000','http://snomed.info/sct','Salmonella Voulte (organism)','114821000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114822007','114822007','http://snomed.info/sct','Salmonella Sudan (organism)','114822007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114823002','114823002','http://snomed.info/sct','Salmonella II 43:l,z13,z28:1,5 (organism)','114823002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114824008','114824008','http://snomed.info/sct','Salmonella Arusha (organism)','114824008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114825009','114825009','http://snomed.info/sct','Salmonella II 43:z4,z23:- (organism)','114825009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114826005','114826005','http://snomed.info/sct','Salmonella IV 43:z4,z23:- (organism)','114826005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114827001','114827001','http://snomed.info/sct','Salmonella IV 43:z4,z32:- (organism)','114827001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114828006','114828006','http://snomed.info/sct','Salmonella Makiling (organism)','114828006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114829003','114829003','http://snomed.info/sct','Salmonella IV 43:z36,z38:- (organism)','114829003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114830008','114830008','http://snomed.info/sct','Salmonella II 43:z42:1,5,7 (organism)','114830008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114831007','114831007','http://snomed.info/sct','Salmonella IV 44:a:- (organism)','114831007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114832000','114832000','http://snomed.info/sct','Salmonella Splott (organism)','114832000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114833005','114833005','http://snomed.info/sct','Salmonella IIIb 44:g,t:1,5:z42 (organism)','114833005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114834004','114834004','http://snomed.info/sct','Salmonella Maritzburg (organism)','114834004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114835003','114835003','http://snomed.info/sct','Salmonella V 44:r:- (organism)','114835003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114836002','114836002','http://snomed.info/sct','Salmonella Bolama (organism)','114836002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114837006','114837006','http://snomed.info/sct','Salmonella Ploufragan (organism)','114837006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114838001','114838001','http://snomed.info/sct','Salmonella IV 1,44:z4,z32:- (organism)','114838001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114839009','114839009','http://snomed.info/sct','Salmonella Llobregat (organism)','114839009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114841005','114841005','http://snomed.info/sct','Salmonella IV 44:z29:- (organism)','114841005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114842003','114842003','http://snomed.info/sct','Salmonella II 1,44:z39:e,n,x,z15 (organism)','114842003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114843008','114843008','http://snomed.info/sct','Salmonella V 44:z39:- (organism)','114843008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114845001','114845001','http://snomed.info/sct','Salmonella II 44:z29:e,n,x:z42 (organism)','114845001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114846000','114846000','http://snomed.info/sct','Salmonella VI 45:a:e,n,x (organism)','114846000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114847009','114847009','http://snomed.info/sct','Salmonella II 45:a:z10 (organism)','114847009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114848004','114848004','http://snomed.info/sct','Salmonella Warmsen (organism)','114848004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114849007','114849007','http://snomed.info/sct','Salmonella II 45:g,m,s,t:1,5 (organism)','114849007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114850007','114850007','http://snomed.info/sct','Salmonella II 45:g,m,s,t:e,n,x (organism)','114850007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114851006','114851006','http://snomed.info/sct','Salmonella II 45:g,m,t:e,n,x,z15 (organism)','114851006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114852004','114852004','http://snomed.info/sct','Salmonella Verviers (organism)','114852004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114853009','114853009','http://snomed.info/sct','Salmonella Imo (organism)','114853009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114854003','114854003','http://snomed.info/sct','Salmonella Kofandoka (organism)','114854003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114855002','114855002','http://snomed.info/sct','Salmonella II 45:z:1,5 (organism)','114855002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114856001','114856001','http://snomed.info/sct','Salmonella Yopougon (organism)','114856001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114857005','114857005','http://snomed.info/sct','Salmonella II 45:z:z39 (organism)','114857005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114858000','114858000','http://snomed.info/sct','Salmonella IIIa 45:z4,z23:- (organism)','114858000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114859008','114859008','http://snomed.info/sct','Salmonella Transvaal (organism)','114859008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114860003','114860003','http://snomed.info/sct','Salmonella Aprad (organism)','114860003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114861004','114861004','http://snomed.info/sct','Salmonella IV 45:z36,z38:- (organism)','114861004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114862006','114862006','http://snomed.info/sct','Salmonella II 47:a:1,5 (organism)','114862006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114863001','114863001','http://snomed.info/sct','Salmonella Wenatchee (organism)','114863001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114864007','114864007','http://snomed.info/sct','Salmonella II 47:b:1,5 (organism)','114864007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114865008','114865008','http://snomed.info/sct','Salmonella II 47:b:e,n,x,z15 (organism)','114865008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114866009','114866009','http://snomed.info/sct','Salmonella II 47:b:z6 (organism)','114866009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114867000','114867000','http://snomed.info/sct','Salmonella II 47:d:z39 (organism)','114867000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114868005','114868005','http://snomed.info/sct','Salmonella II 47:e,n,x,z15:1,6 (organism)','114868005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114869002','114869002','http://snomed.info/sct','Salmonella IIIa 47:g,z51:- (organism)','114869002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114870001','114870001','http://snomed.info/sct','Salmonella IIIb 47:l,v:z (organism)','114870001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114871002','114871002','http://snomed.info/sct','Salmonella IV 47:l,v:- (organism)','114871002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114872009','114872009','http://snomed.info/sct','Salmonella IIIb 47:r:e,n,x,z15 (organism)','114872009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114873004','114873004','http://snomed.info/sct','Salmonella II 47:z:z6 (organism)','114873004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114874005','114874005','http://snomed.info/sct','Salmonella Binche (organism)','114874005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114875006','114875006','http://snomed.info/sct','Salmonella IIIa 47:z4,z23:- (organism)','114875006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114876007','114876007','http://snomed.info/sct','Salmonella Namoda (organism)','114876007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114877003','114877003','http://snomed.info/sct','Salmonella II 47:z29:e,n,x,z15 (organism)','114877003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114878008','114878008','http://snomed.info/sct','Salmonella IV 47:z36:- (organism)','114878008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114879000','114879000','http://snomed.info/sct','Salmonella V 48:b:- (organism)','114879000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_11488000','11488000','http://snomed.info/sct','Salmonella Sundsvall (organism)','11488000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114880002','114880002','http://snomed.info/sct','Salmonella II 48:d:1,2 (organism)','114880002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114881003','114881003','http://snomed.info/sct','Salmonella II 48:d:z6 (organism)','114881003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114882005','114882005','http://snomed.info/sct','Salmonella Buckeye (organism)','114882005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114883000','114883000','http://snomed.info/sct','Salmonella II 48:e,n,x,z15:z6 (organism)','114883000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114884006','114884006','http://snomed.info/sct','Salmonella II 48:g,m,t:- (organism)','114884006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114885007','114885007','http://snomed.info/sct','Salmonella IV 48:g,z51:- (organism)','114885007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114886008','114886008','http://snomed.info/sct','Salmonella IIIb 48:i:z61 (organism)','114886008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114887004','114887004','http://snomed.info/sct','Salmonella V 48:i:- (organism)','114887004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114888009','114888009','http://snomed.info/sct','Salmonella II 48:k:z39 (organism)','114888009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114889001','114889001','http://snomed.info/sct','Salmonella Australia (organism)','114889001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114890005','114890005','http://snomed.info/sct','Salmonella II 48:z:1,5 (organism)','114890005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114891009','114891009','http://snomed.info/sct','Salmonella IIIb 48:z:1,5,7 (organism)','114891009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114892002','114892002','http://snomed.info/sct','Salmonella IV 48:z4,z23:- (organism)','114892002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114893007','114893007','http://snomed.info/sct','Salmonella II 48:z10:[1,5] (organism)','114893007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114894001','114894001','http://snomed.info/sct','Salmonella VI 48:z10:1,5 (organism)','114894001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114896004','114896004','http://snomed.info/sct','Salmonella IV 48:z29:- (organism)','114896004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114897008','114897008','http://snomed.info/sct','Salmonella IIIb 48:z35:z52 (organism)','114897008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114898003','114898003','http://snomed.info/sct','Salmonella V 48:z35:- (organism)','114898003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114899006','114899006','http://snomed.info/sct','Salmonella V 48:z39:- (organism)','114899006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114900001','114900001','http://snomed.info/sct','Salmonella V 48:z41:- (organism)','114900001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114901002','114901002','http://snomed.info/sct','Salmonella V 48:z65:- (organism)','114901002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114902009','114902009','http://snomed.info/sct','Salmonella V 48:z81:- (organism)','114902009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114903004','114903004','http://snomed.info/sct','Salmonella IV 50:a:- (organism)','114903004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114905006','114905006','http://snomed.info/sct','Salmonella IV 50:b:- (organism)','114905006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114906007','114906007','http://snomed.info/sct','Salmonella Hemingford (organism)','114906007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114907003','114907003','http://snomed.info/sct','Salmonella IV 50:d:- (organism)','114907003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114908008','114908008','http://snomed.info/sct','Salmonella II 50:e,n,x:1,7 (organism)','114908008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114909000','114909000','http://snomed.info/sct','Salmonella II 50: g,[m],s,t:[1,5] (organism)','114909000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114910005','114910005','http://snomed.info/sct','Salmonella IV 50:g,z51:- (organism)','114910005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114911009','114911009','http://snomed.info/sct','Salmonella II 50:g,z62:e,n,x (organism)','114911009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114913007','114913007','http://snomed.info/sct','Salmonella II 50:k:e,n,x:z42 (organism)','114913007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114914001','114914001','http://snomed.info/sct','Salmonella II 50:k:z6 (organism)','114914001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114915000','114915000','http://snomed.info/sct','Salmonella VI 50:l,v:z67 (organism)','114915000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114916004','114916004','http://snomed.info/sct','Salmonella IIIb 50:z:z52 (organism)','114916004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114918003','114918003','http://snomed.info/sct','Salmonella IIIa 50:z4,z32:- (organism)','114918003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114919006','114919006','http://snomed.info/sct','Salmonella IV 50:z4,z32:- (organism)','114919006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114920000','114920000','http://snomed.info/sct','Salmonella IIIb 50:z10:z (organism)','114920000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114921001','114921001','http://snomed.info/sct','Salmonella II 50:z10:z6:z42 (organism)','114921001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114922008','114922008','http://snomed.info/sct','Salmonella Ivorycoast (organism)','114922008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114924009','114924009','http://snomed.info/sct','Salmonella IIIb 50:z52:z53 (organism)','114924009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114925005','114925005','http://snomed.info/sct','Salmonella IV 51:a:- (organism)','114925005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114926006','114926006','http://snomed.info/sct','Salmonella Karaya (organism)','114926006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114927002','114927002','http://snomed.info/sct','Salmonella IV 51:b:- (organism)','114927002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114928007','114928007','http://snomed.info/sct','Salmonella II 51:c:- (organism)','114928007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114929004','114929004','http://snomed.info/sct','Salmonella II 51:g,s,t:e,n,x (organism)','114929004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114930009','114930009','http://snomed.info/sct','Salmonella Harcourt (organism)','114930009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114932001','114932001','http://snomed.info/sct','Salmonella Moundou (organism)','114932001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114933006','114933006','http://snomed.info/sct','Salmonella II 51:l,z28:z6 (organism)','114933006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114934000','114934000','http://snomed.info/sct','Salmonella II 51:l,z28:z39 (organism)','114934000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114937007','114937007','http://snomed.info/sct','Salmonella IIIa 51:z4,z32:- (organism)','114937007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114938002','114938002','http://snomed.info/sct','Salmonella Bergues (organism)','114938002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114939005','114939005','http://snomed.info/sct','Salmonella II 51:-:1,7 (organism)','114939005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114940007','114940007','http://snomed.info/sct','Salmonella II 52:d:z39 (organism)','114940007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114941006','114941006','http://snomed.info/sct','Salmonella Bordeaux (organism)','114941006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114943009','114943009','http://snomed.info/sct','Salmonella II 52:z:z39 (organism)','114943009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114944003','114944003','http://snomed.info/sct','Salmonella IIIb 52:z:z52 (organism)','114944003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114945002','114945002','http://snomed.info/sct','Salmonella II 52:z39:1,5,7 (organism)','114945002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114946001','114946001','http://snomed.info/sct','Salmonella II 52:z44:1,5,7 (organism)','114946001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114947005','114947005','http://snomed.info/sct','Salmonella II 53:c:1,5 (organism)','114947005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114948000','114948000','http://snomed.info/sct','Salmonella IIIb 53:k:z53 (organism)','114948000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114949008','114949008','http://snomed.info/sct','Salmonella II 53:l,z28:e,n,x (organism)','114949008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114950008','114950008','http://snomed.info/sct','Salmonella II 53:l,z28:z6 (organism)','114950008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114951007','114951007','http://snomed.info/sct','Salmonella II 53:l,z28:z39 (organism)','114951007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114952000','114952000','http://snomed.info/sct','Salmonella IIIb 53:r:z68 (organism)','114952000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114954004','114954004','http://snomed.info/sct','Salmonella IIIb 53:z10:z (organism)','114954004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114955003','114955003','http://snomed.info/sct','Salmonella IV 1,53:z36,z38:- (organism)','114955003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114956002','114956002','http://snomed.info/sct','Salmonella Leda (organism)','114956002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114957006','114957006','http://snomed.info/sct','Salmonella Newholland (organism)','114957006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114958001','114958001','http://snomed.info/sct','Salmonella Barry (organism)','114958001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114959009','114959009','http://snomed.info/sct','Salmonella II 55:k:z39 (organism)','114959009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114960004','114960004','http://snomed.info/sct','Salmonella II 56:b- (organism)','114960004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114961000','114961000','http://snomed.info/sct','Salmonella II 56:z:z6 (organism)','114961000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114962007','114962007','http://snomed.info/sct','Salmonella II 57:a:z42 (organism)','114962007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114963002','114963002','http://snomed.info/sct','Salmonella Batonrouge (organism)','114963002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114964008','114964008','http://snomed.info/sct','Salmonella IIIb 57:c:e,n,x,z15 (organism)','114964008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114965009','114965009','http://snomed.info/sct','Salmonella IIIb 57:k:e,n,x,z15 (organism)','114965009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114966005','114966005','http://snomed.info/sct','Salmonella IIIb 57:z10:z (organism)','114966005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114967001','114967001','http://snomed.info/sct','Salmonella II 57:z29:z42 (organism)','114967001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114968006','114968006','http://snomed.info/sct','Salmonella II 57:z39:e,n,x,z15 (organism)','114968006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114969003','114969003','http://snomed.info/sct','Salmonella II 57:z42:1,6:z53 (organism)','114969003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114970002','114970002','http://snomed.info/sct','Salmonella IIIb 58:k:z (organism)','114970002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114971003','114971003','http://snomed.info/sct','Salmonella II 58:l,z13,z28:1,5 (organism)','114971003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114972005','114972005','http://snomed.info/sct','Salmonella II 58:l,z13,z28:z6 (organism)','114972005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114973000','114973000','http://snomed.info/sct','Salmonella II 58:z6:1,6 (organism)','114973000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114974006','114974006','http://snomed.info/sct','Salmonella IIIb 58:z10:e,n,x,z15 (organism)','114974006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114975007','114975007','http://snomed.info/sct','Salmonella IIIb 58:z10:z53 (organism)','114975007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114976008','114976008','http://snomed.info/sct','Salmonella II 58:z39:e,n,x,z15 (organism)','114976008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114977004','114977004','http://snomed.info/sct','Salmonella IIIb 59:c:e,n,x,z15 (organism)','114977004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114978009','114978009','http://snomed.info/sct','Salmonella IIIb 59:i:e,n,x,z15 (organism)','114978009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114979001','114979001','http://snomed.info/sct','Salmonella II 59:k:(z) (organism)','114979001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114980003','114980003','http://snomed.info/sct','Salmonella IIIb 59:r:z35 (organism)','114980003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114981004','114981004','http://snomed.info/sct','Salmonella II 1,59:z:z6 (organism)','114981004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114982006','114982006','http://snomed.info/sct','Salmonella IIIb 59:z52:z53 (organism)','114982006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114983001','114983001','http://snomed.info/sct','Salmonella II 60:b:- (organism)','114983001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114984007','114984007','http://snomed.info/sct','Salmonella II 60:g,m,t:z6 (organism)','114984007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114985008','114985008','http://snomed.info/sct','Salmonella IIIb 60:i:z (organism)','114985008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114986009','114986009','http://snomed.info/sct','Salmonella II 60:z:e,n,x (organism)','114986009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114987000','114987000','http://snomed.info/sct','Salmonella IIIb 60:z10:z53 (organism)','114987000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114988005','114988005','http://snomed.info/sct','Salmonella II 60:z29:e,n,x (organism)','114988005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114989002','114989002','http://snomed.info/sct','Salmonella V 60:z41:- (organism)','114989002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114990006','114990006','http://snomed.info/sct','Salmonella IIIb 61:k:z35 (organism)','114990006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114991005','114991005','http://snomed.info/sct','Salmonella IIIb 61:r:z (organism)','114991005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114992003','114992003','http://snomed.info/sct','Salmonella V 61:z35:- (organism)','114992003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114993008','114993008','http://snomed.info/sct','Salmonella IIIa 62:z29:- (organism)','114993008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114994002','114994002','http://snomed.info/sct','Salmonella IIIa 62:z36:- (organism)','114994002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114995001','114995001','http://snomed.info/sct','Salmonella II 65:g,t:- (organism)','114995001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114996000','114996000','http://snomed.info/sct','Salmonella IIIb 65:r:z35 (organism)','114996000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114997009','114997009','http://snomed.info/sct','Salmonella IIIb 65:z52:e,n,x,z15 (organism)','114997009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_114999007','114999007','http://snomed.info/sct','Salmonella V 66:z35:- (organism)','114999007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_115000007','115000007','http://snomed.info/sct','Salmonella V 66:z39:- (organism)','115000007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_115001006','115001006','http://snomed.info/sct','Salmonella V 66:z41:- (organism)','115001006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_115002004','115002004','http://snomed.info/sct','Salmonella V 66:z65:- (organism)','115002004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_115003009','115003009','http://snomed.info/sct','Salmonella V 66:z81:- (organism)','115003009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_11521007','11521007','http://snomed.info/sct','Salmonella Hillingdon (organism)','11521007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_115655006','115655006','http://snomed.info/sct','Salmonella II 6,7:-:1,6 (organism)','115655006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_115661009','115661009','http://snomed.info/sct','Salmonella Palamaner (organism)','115661009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_11577009','11577009','http://snomed.info/sct','Salmonella Lawndale (organism)','11577009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_11579007','11579007','http://snomed.info/sct','Salmonella Cullingworth (organism)','11579007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_116018004','116018004','http://snomed.info/sct','Salmonella Bethune (organism)','116018004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_116049009','116049009','http://snomed.info/sct','Salmonella serotype B, 5:-:1,2 (organism)','116049009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_116053006','116053006','http://snomed.info/sct','Salmonella Damman (organism)','116053006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_116054000','116054000','http://snomed.info/sct','Salmonella Omuna (organism)','116054000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_116056003','116056003','http://snomed.info/sct','Salmonella II 3,10,15:g,m,s,t:- (organism)','116056003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_116057007','116057007','http://snomed.info/sct','Salmonella Bloomsbury (organism)','116057007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_116058002','116058002','http://snomed.info/sct','Salmonella Wilmington (organism)','116058002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_116059005','116059005','http://snomed.info/sct','Salmonella Asylanta (organism)','116059005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_116376004','116376004','http://snomed.info/sct','Salmonella serotype C2,6,8:z10:- (organism)','116376004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_116377008','116377008','http://snomed.info/sct','Salmonella serotype C1,7:l,w:- (organism)','116377008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_11738009','11738009','http://snomed.info/sct','Salmonella Sterrenbos (organism)','11738009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_11750003','11750003','http://snomed.info/sct','Salmonella Lisboa (organism)','11750003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_11827001','11827001','http://snomed.info/sct','Salmonella II 1,40:a:z6 (organism)','11827001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_11893007','11893007','http://snomed.info/sct','Salmonella Irigny (organism)','11893007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_11901002','11901002','http://snomed.info/sct','Salmonella Kiambu (organism)','11901002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_11903004','11903004','http://snomed.info/sct','Salmonella Mesbit (organism)','11903004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_11926006','11926006','http://snomed.info/sct','Salmonella Hannover (organism)','11926006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_11958001','11958001','http://snomed.info/sct','Salmonella Niamey (organism)','11958001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_12040007','12040007','http://snomed.info/sct','Salmonella Huddinge (organism)','12040007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_12248009','12248009','http://snomed.info/sct','Salmonella II 56:z10:e,n,x (organism)','12248009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_12278000','12278000','http://snomed.info/sct','Salmonella Indiana (organism)','12278000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_12334006','12334006','http://snomed.info/sct','Salmonella Bijlmer (organism)','12334006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_12370009','12370009','http://snomed.info/sct','Salmonella Bornum (organism)','12370009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_1245005','1245005','http://snomed.info/sct','Salmonella Kiel (organism)','1245005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_12470005','12470005','http://snomed.info/sct','Salmonella Bandia (organism)','12470005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_12517002','12517002','http://snomed.info/sct','Salmonella Eschweiler (organism)','12517002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_12662006','12662006','http://snomed.info/sct','Salmonella Amunigun (organism)','12662006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_127498002','127498002','http://snomed.info/sct','Salmonella serotype B,5:r:- (organism)','127498002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_127499005','127499005','http://snomed.info/sct','Salmonella serotype B,:r:- (organism)','127499005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_12767007','12767007','http://snomed.info/sct','Salmonella Crossness (organism)','12767007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_12837008','12837008','http://snomed.info/sct','Salmonella Aschersleben (organism)','12837008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_1291002','1291002','http://snomed.info/sct','Salmonella Frankfurt (organism)','1291002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_12924006','12924006','http://snomed.info/sct','Salmonella Breukelen (organism)','12924006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_12964005','12964005','http://snomed.info/sct','Salmonella Souza (organism)','12964005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_13009006','13009006','http://snomed.info/sct','Salmonella Madelia (organism)','13009006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_131282009','131282009','http://snomed.info/sct','Salmonella serotype B, :-:1,2 (organism)','131282009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_131283004','131283004','http://snomed.info/sct','Salmonella serotype B, 5:d:- (organism)','131283004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_131284005','131284005','http://snomed.info/sct','Salmonella serotype C2,6,8:eh:- (organism)','131284005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_13179007','13179007','http://snomed.info/sct','Salmonella Montreal (organism)','13179007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_13411008','13411008','http://snomed.info/sct','Salmonella Freetown (organism)','13411008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_13421000','13421000','http://snomed.info/sct','Salmonella Ried (organism)','13421000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_13491009','13491009','http://snomed.info/sct','Salmonella Brefet (organism)','13491009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_13511005','13511005','http://snomed.info/sct','Salmonella Bodjonegoro (organism)','13511005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_13552001','13552001','http://snomed.info/sct','Salmonella II 1,40:(z42):1,(5),7 (organism)','13552001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_13615007','13615007','http://snomed.info/sct','Salmonella Regent (organism)','13615007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_13679006','13679006','http://snomed.info/sct','Salmonella Ahanou (organism)','13679006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_13682001','13682001','http://snomed.info/sct','Salmonella Hessarek (organism)','13682001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_13794000','13794000','http://snomed.info/sct','Salmonella Gambaga (organism)','13794000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_13865001','13865001','http://snomed.info/sct','Salmonella Tokoin (organism)','13865001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_13998005','13998005','http://snomed.info/sct','Salmonella IV 53:z4,z23:-- (organism)','13998005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_14007002','14007002','http://snomed.info/sct','Salmonella Vom (organism)','14007002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_14078008','14078008','http://snomed.info/sct','Salmonella Loanda (organism)','14078008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_14145004','14145004','http://snomed.info/sct','Salmonella Gdansk (organism)','14145004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_14219002','14219002','http://snomed.info/sct','Salmonella Kahla (organism)','14219002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_14262001','14262001','http://snomed.info/sct','Salmonella Hilversum (organism)','14262001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_14368004','14368004','http://snomed.info/sct','Salmonella Bergen (organism)','14368004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_14424002','14424002','http://snomed.info/sct','Salmonella Tees (organism)','14424002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_14528002','14528002','http://snomed.info/sct','Salmonella IV 44:z4,z24:- (organism)','14528002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_14642002','14642002','http://snomed.info/sct','Salmonella II 1,9,12,(46),27:z4,z24:1,5 (organism)','14642002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_14694000','14694000','http://snomed.info/sct','Salmonella IV 11:z4,z32:- (organism)','14694000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_14882006','14882006','http://snomed.info/sct','Salmonella II 43:e,n,x,z15:1,6 (organism)','14882006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_14966006','14966006','http://snomed.info/sct','Salmonella Riverside (organism)','14966006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_14993009','14993009','http://snomed.info/sct','Salmonella Mampeza (organism)','14993009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_15001007','15001007','http://snomed.info/sct','Salmonella Stockholm (organism)','15001007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_15055006','15055006','http://snomed.info/sct','Salmonella Riggil (organism)','15055006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_15063007','15063007','http://snomed.info/sct','Salmonella II Humber (organism)','15063007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_15091004','15091004','http://snomed.info/sct','Salmonella Messina (organism)','15091004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_15168000','15168000','http://snomed.info/sct','Salmonella II 41:l,z13,z28:e,n,x,z15 (organism)','15168000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_15189009','15189009','http://snomed.info/sct','Salmonella II 6,7:g,[m],s,t:[z42] (organism)','15189009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_15288005','15288005','http://snomed.info/sct','Salmonella Banco (organism)','15288005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_15319009','15319009','http://snomed.info/sct','Salmonella Ealing (organism)','15319009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_15337005','15337005','http://snomed.info/sct','Salmonella Isaszeg (organism)','15337005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_15549007','15549007','http://snomed.info/sct','Salmonella Bamboye (organism)','15549007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_15553009','15553009','http://snomed.info/sct','Salmonella Tchamba (organism)','15553009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_15578008','15578008','http://snomed.info/sct','Salmonella Dahlem (organism)','15578008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_15691000','15691000','http://snomed.info/sct','Salmonella Korbol (organism)','15691000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_15728008','15728008','http://snomed.info/sct','Salmonella Leith (organism)','15728008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_1574002','1574002','http://snomed.info/sct','Salmonella Santiago (organism)','1574002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_15789003','15789003','http://snomed.info/sct','Salmonella Vilvoorde (organism)','15789003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_158005','158005','http://snomed.info/sct','Salmonella Irumu (organism)','158005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_15839003','15839003','http://snomed.info/sct','Salmonella II 1,40:z6:1,5 (organism)','15839003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_15844005','15844005','http://snomed.info/sct','Salmonella Maracaibo (organism)','15844005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_16049005','16049005','http://snomed.info/sct','Salmonella II 16:b:z39 (organism)','16049005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_16109000','16109000','http://snomed.info/sct','Salmonella Coeln (organism)','16109000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_16158001','16158001','http://snomed.info/sct','Salmonella Austin (organism)','16158001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_16168006','16168006','http://snomed.info/sct','Salmonella II 58:b:1,5 (organism)','16168006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_16194002','16194002','http://snomed.info/sct','Salmonella Solna (organism)','16194002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_1621003','1621003','http://snomed.info/sct','Salmonella IV 45:z4,z23:- (organism)','1621003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_16346007','16346007','http://snomed.info/sct','Salmonella Lubumbashi (organism)','16346007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_16363006','16363006','http://snomed.info/sct','Salmonella II 42:z6:1,6 (organism)','16363006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_16380005','16380005','http://snomed.info/sct','Salmonella Wuppertal (organism)','16380005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_16582001','16582001','http://snomed.info/sct','Salmonella Eboko (organism)','16582001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_16723007','16723007','http://snomed.info/sct','Salmonella Rottnest (organism)','16723007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_16762003','16762003','http://snomed.info/sct','Salmonella II 42:z10:z6 (organism)','16762003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_16820003','16820003','http://snomed.info/sct','Salmonella Goldcoast (organism)','16820003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_16845000','16845000','http://snomed.info/sct','Salmonella Keve (organism)','16845000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_16888008','16888008','http://snomed.info/sct','Salmonella Brandenburg (organism)','16888008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_16981003','16981003','http://snomed.info/sct','Salmonella II 53:d:1,5 (organism)','16981003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_17007007','17007007','http://snomed.info/sct','Salmonella Llandoff (organism)','17007007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_17019004','17019004','http://snomed.info/sct','Salmonella Blijdorp (organism)','17019004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_17036007','17036007','http://snomed.info/sct','Salmonella Djibouti (organism)','17036007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_17233007','17233007','http://snomed.info/sct','Salmonella Simi (organism)','17233007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_17323002','17323002','http://snomed.info/sct','Salmonella Wimborne (organism)','17323002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_17330008','17330008','http://snomed.info/sct','Salmonella Mississippi (organism)','17330008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_17464006','17464006','http://snomed.info/sct','Salmonella Amina (organism)','17464006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_17611002','17611002','http://snomed.info/sct','Salmonella Fayed (organism)','17611002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_17680008','17680008','http://snomed.info/sct','Salmonella II 9,46:m,t:e,n,x (organism)','17680008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_17801007','17801007','http://snomed.info/sct','Salmonella Toulon (organism)','17801007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_17834009','17834009','http://snomed.info/sct','Salmonella Ord (organism)','17834009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_17939003','17939003','http://snomed.info/sct','Salmonella Lomita (organism)','17939003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_1804009','1804009','http://snomed.info/sct','Salmonella Brijbhumi (organism)','1804009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_18088003','18088003','http://snomed.info/sct','Salmonella Korlebu (organism)','18088003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_1812001','1812001','http://snomed.info/sct','Salmonella Jerusalem (organism)','1812001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_18129006','18129006','http://snomed.info/sct','Salmonella Ghana (organism)','18129006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_18163008','18163008','http://snomed.info/sct','Salmonella Senftenberg (organism)','18163008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_18238001','18238001','http://snomed.info/sct','Salmonella IV 48:z4,z32:- (organism)','18238001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_18271002','18271002','http://snomed.info/sct','Salmonella Bobo (organism)','18271002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_18562005','18562005','http://snomed.info/sct','Salmonella II 48:a:z6 (organism)','18562005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_18578007','18578007','http://snomed.info/sct','Salmonella Ashanti (organism)','18578007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_18711009','18711009','http://snomed.info/sct','Salmonella Saugus (organism)','18711009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_18717008','18717008','http://snomed.info/sct','Salmonella Edmonton (organism)','18717008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_18810002','18810002','http://snomed.info/sct','Salmonella Wohlen (organism)','18810002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_18828000','18828000','http://snomed.info/sct','Salmonella II 8:z29:e,n,x:z42 (organism)','18828000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_1888009','1888009','http://snomed.info/sct','Salmonella Wingrove (organism)','1888009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_18913004','18913004','http://snomed.info/sct','Salmonella Bonames (organism)','18913004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_19118002','19118002','http://snomed.info/sct','Salmonella Ahepe (organism)','19118002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_19190005','19190005','http://snomed.info/sct','Salmonella Flottbek (organism)','19190005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_19191009','19191009','http://snomed.info/sct','Salmonella Diguel (organism)','19191009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_1921001','1921001','http://snomed.info/sct','Salmonella Donna (organism)','1921001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_1934000','1934000','http://snomed.info/sct','Salmonella Ridge (organism)','1934000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_19368001','19368001','http://snomed.info/sct','Salmonella Babelsberg (organism)','19368001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_19374001','19374001','http://snomed.info/sct','Salmonella enteritidis, phage type 4 (organism)','19374001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_19430004','19430004','http://snomed.info/sct','Salmonella Fitzroy (organism)','19430004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_19439003','19439003','http://snomed.info/sct','Salmonella Giza (organism)','19439003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_1957006','1957006','http://snomed.info/sct','Salmonella Hydra (organism)','1957006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_19605006','19605006','http://snomed.info/sct','Salmonella IV 57:z4,z23:- (organism)','19605006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_19687000','19687000','http://snomed.info/sct','Salmonella II 40:z:z39 (organism)','19687000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_19828009','19828009','http://snomed.info/sct','Salmonella Neukoelln (organism)','19828009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_19857008','19857008','http://snomed.info/sct','Salmonella II 11:-:1,5 (organism)','19857008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_19890008','19890008','http://snomed.info/sct','Salmonella II 16:b:z42 (organism)','19890008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_19891007','19891007','http://snomed.info/sct','Salmonella II 50:l,z28:z42 (organism)','19891007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_19912000','19912000','http://snomed.info/sct','Salmonella II 28:g,m,t:e,n,x (organism)','19912000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_19958004','19958004','http://snomed.info/sct','Salmonella Marylebone (organism)','19958004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_19981002','19981002','http://snomed.info/sct','Salmonella II 6,7:k:(z6) (organism)','19981002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_20031000','20031000','http://snomed.info/sct','Salmonella Berkeley (organism)','20031000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_2007003','2007003','http://snomed.info/sct','Salmonella Aesch (organism)','2007003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_20073008','20073008','http://snomed.info/sct','Salmonella Manhattan (organism)','20073008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_20209004','20209004','http://snomed.info/sct','Salmonella Landwasser (organism)','20209004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_20266009','20266009','http://snomed.info/sct','Salmonella Glidji (organism)','20266009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_20268005','20268005','http://snomed.info/sct','Salmonella Taunton (organism)','20268005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_20314003','20314003','http://snomed.info/sct','Salmonella Staoueli (organism)','20314003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_20442000','20442000','http://snomed.info/sct','Salmonella Borreze (organism)','20442000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_2047005','2047005','http://snomed.info/sct','Salmonella Hoghton (organism)','2047005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_20537005','20537005','http://snomed.info/sct','Salmonella Bokanjac (organism)','20537005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_20542002','20542002','http://snomed.info/sct','Salmonella IV 50:z4,z24:- (organism)','20542002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_20567004','20567004','http://snomed.info/sct','Salmonella Kortrijk (organism)','20567004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_20855009','20855009','http://snomed.info/sct','Salmonella Pullorum (organism)','20855009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_20862000','20862000','http://snomed.info/sct','Salmonella Soerenga (organism)','20862000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_20872002','20872002','http://snomed.info/sct','Salmonella Mbao (organism)','20872002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_20905000','20905000','http://snomed.info/sct','Salmonella Sunnycove (organism)','20905000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_20950003','20950003','http://snomed.info/sct','Salmonella Bellevue (organism)','20950003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_21081003','21081003','http://snomed.info/sct','Salmonella Burgas (organism)','21081003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_2111007','2111007','http://snomed.info/sct','Salmonella Tamilnadu (organism)','2111007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_21146003','21146003','http://snomed.info/sct','Salmonella Saphra (organism)','21146003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_21164005','21164005','http://snomed.info/sct','Salmonella Bulgaria (organism)','21164005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_21176005','21176005','http://snomed.info/sct','Salmonella Rogy (organism)','21176005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_21207005','21207005','http://snomed.info/sct','Salmonella Cuckmere (organism)','21207005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_21218005','21218005','http://snomed.info/sct','Salmonella Lokstedt (organism)','21218005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_21242009','21242009','http://snomed.info/sct','Salmonella Mango (organism)','21242009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_21329006','21329006','http://snomed.info/sct','Salmonella Djama (organism)','21329006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_21395009','21395009','http://snomed.info/sct','Salmonella Grampian (organism)','21395009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_21436008','21436008','http://snomed.info/sct','Salmonella Cyprus (organism)','21436008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_21469008','21469008','http://snomed.info/sct','Salmonella Szentes (organism)','21469008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_21618001','21618001','http://snomed.info/sct','Salmonella Morocco (organism)','21618001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_21786003','21786003','http://snomed.info/sct','Salmonella Bruck (organism)','21786003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_21816004','21816004','http://snomed.info/sct','Salmonella Zaire (organism)','21816004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_21838002','21838002','http://snomed.info/sct','Salmonella Annedal (organism)','21838002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_21865009','21865009','http://snomed.info/sct','Salmonella Bracknell (organism)','21865009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_2191008','2191008','http://snomed.info/sct','Salmonella Ekpoui (organism)','2191008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_21953006','21953006','http://snomed.info/sct','Salmonella II 47:z6:1,6 (organism)','21953006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_21975008','21975008','http://snomed.info/sct','Salmonella Wien (organism)','21975008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_22001003','22001003','http://snomed.info/sct','Salmonella Lockleaze (organism)','22001003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_2203005','2203005','http://snomed.info/sct','Salmonella Meskin (organism)','2203005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_22117007','22117007','http://snomed.info/sct','Salmonella Georgia (organism)','22117007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_22254006','22254006','http://snomed.info/sct','Salmonella II 41:c:z6 (organism)','22254006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_22300006','22300006','http://snomed.info/sct','Salmonella Hillsborough (organism)','22300006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_22307009','22307009','http://snomed.info/sct','Salmonella Budapest (organism)','22307009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_22367006','22367006','http://snomed.info/sct','Salmonella Chingola (organism)','22367006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_22590000','22590000','http://snomed.info/sct','Salmonella Maricopa (organism)','22590000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_22729005','22729005','http://snomed.info/sct','Salmonella Bukavu (organism)','22729005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_22752009','22752009','http://snomed.info/sct','Salmonella Grumpensis (organism)','22752009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_22831005','22831005','http://snomed.info/sct','Salmonella II 30:g,m,s:e,n,x (organism)','22831005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_2286000','2286000','http://snomed.info/sct','Salmonella Agbeni (organism)','2286000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_22899009','22899009','http://snomed.info/sct','Salmonella Falkensee (organism)','22899009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_2291004','2291004','http://snomed.info/sct','Salmonella London (organism)','2291004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_23032006','23032006','http://snomed.info/sct','Salmonella Angoda (organism)','23032006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_23033001','23033001','http://snomed.info/sct','Salmonella Yalding (organism)','23033001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_23057001','23057001','http://snomed.info/sct','Salmonella II 40:b:- (organism)','23057001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_23131001','23131001','http://snomed.info/sct','Salmonella Ajiobo (organism)','23131001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_23271001','23271001','http://snomed.info/sct','Salmonella Doulassame (organism)','23271001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_23333007','23333007','http://snomed.info/sct','Salmonella Sao (organism)','23333007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_23342000','23342000','http://snomed.info/sct','Salmonella II 9,46:z39:1,7 (organism)','23342000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_2356009','2356009','http://snomed.info/sct','Salmonella Patience (organism)','2356009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_23665004','23665004','http://snomed.info/sct','Salmonella Dakar (organism)','23665004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_23727001','23727001','http://snomed.info/sct','Salmonella Wil (organism)','23727001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_23790005','23790005','http://snomed.info/sct','Salmonella Kokoli (organism)','23790005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_23836008','23836008','http://snomed.info/sct','Salmonella Pontypridd (organism)','23836008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_23837004','23837004','http://snomed.info/sct','Salmonella Tchad (organism)','23837004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_23865002','23865002','http://snomed.info/sct','Salmonella Amounderness (organism)','23865002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_2399004','2399004','http://snomed.info/sct','Salmonella Quiniela (organism)','2399004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_24009000','24009000','http://snomed.info/sct','Salmonella Zuilen (organism)','24009000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_24090006','24090006','http://snomed.info/sct','Salmonella Senegal (organism)','24090006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_24239004','24239004','http://snomed.info/sct','Salmonella II 1,40:z:z6 (organism)','24239004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_24270007','24270007','http://snomed.info/sct','Salmonella Magumeri (organism)','24270007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_24289007','24289007','http://snomed.info/sct','Salmonella Lagos (organism)','24289007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_2434007','2434007','http://snomed.info/sct','Salmonella Uganda (organism)','2434007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_2440000','2440000','http://snomed.info/sct','Salmonella Inglis (organism)','2440000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_2445005','2445005','http://snomed.info/sct','Salmonella Olten (organism)','2445005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_24564002','24564002','http://snomed.info/sct','Salmonella Livulu (organism)','24564002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_24666009','24666009','http://snomed.info/sct','Salmonella Worthington (organism)','24666009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_24680002','24680002','http://snomed.info/sct','Salmonella Matopeni (organism)','24680002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_24896001','24896001','http://snomed.info/sct','Salmonella Harvestehude (organism)','24896001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_24951009','24951009','http://snomed.info/sct','Salmonella Wagenia (organism)','24951009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_25000009','25000009','http://snomed.info/sct','Salmonella Bassa (organism)','25000009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_25037003','25037003','http://snomed.info/sct','Salmonella Emmastad (organism)','25037003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_25040003','25040003','http://snomed.info/sct','Salmonella Lene (organism)','25040003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_2527008','2527008','http://snomed.info/sct','Salmonella II, 1,4,12,27:l,v:z39 (organism)','2527008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_25382005','25382005','http://snomed.info/sct','Salmonella Sharon (organism)','25382005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_25487003','25487003','http://snomed.info/sct','Salmonella Eingedi (organism)','25487003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_25520000','25520000','http://snomed.info/sct','Salmonella Ruiru (organism)','25520000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_25535004','25535004','http://snomed.info/sct','Salmonella Beaudesert (organism)','25535004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_255829006','255829006','http://snomed.info/sct','Salmonella cytotoxin (substance)','255829006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_25695005','25695005','http://snomed.info/sct','Salmonella Umbilo (organism)','25695005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_25767003','25767003','http://snomed.info/sct','Salmonella Liverpool (organism)','25767003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_25812007','25812007','http://snomed.info/sct','Salmonella Thiaroye (organism)','25812007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_25939003','25939003','http://snomed.info/sct','Salmonella Lindi (organism)','25939003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_2599003','2599003','http://snomed.info/sct','Salmonella Massenya (organism)','2599003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_26003002','26003002','http://snomed.info/sct','Salmonella Bedford (organism)','26003002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_26031006','26031006','http://snomed.info/sct','Salmonella Kibusi (organism)','26031006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_26080001','26080001','http://snomed.info/sct','Salmonella Avignon (organism)','26080001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_26153006','26153006','http://snomed.info/sct','Salmonella Heves (organism)','26153006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_26207009','26207009','http://snomed.info/sct','Salmonella II 43:a:z6 (organism)','26207009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_26225002','26225002','http://snomed.info/sct','Salmonella II 3,10:a:z39 (organism)','26225002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_26443001','26443001','http://snomed.info/sct','Salmonella Lattenkamp (organism)','26443001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_26455007','26455007','http://snomed.info/sct','Salmonella Nima (organism)','26455007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_26463008','26463008','http://snomed.info/sct','Salmonella Hartford (organism)','26463008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_26494008','26494008','http://snomed.info/sct','Salmonella II 53:z:1,5 (organism)','26494008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_26592005','26592005','http://snomed.info/sct','Salmonella Tamale (organism)','26592005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_26621003','26621003','http://snomed.info/sct','Salmonella IV 48:z36,z38:- (organism)','26621003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_26622005','26622005','http://snomed.info/sct','Salmonella Gnesta (organism)','26622005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_26685005','26685005','http://snomed.info/sct','Salmonella Stuivenberg (organism)','26685005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_26793003','26793003','http://snomed.info/sct','Salmonella II 6,8:z29:1,5 (organism)','26793003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_26894001','26894001','http://snomed.info/sct','Salmonella Redlands (organism)','26894001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_26964008','26964008','http://snomed.info/sct','Salmonella Welikade (organism)','26964008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_27008003','27008003','http://snomed.info/sct','Salmonella Niakhar (organism)','27008003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_27067005','27067005','http://snomed.info/sct','Salmonella II 43:z29:e,n,x (organism)','27067005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_27268008','27268008','http://snomed.info/sct','Genus Salmonella (organism)','27268008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_27353005','27353005','http://snomed.info/sct','Salmonella Bambylor (organism)','27353005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_27408007','27408007','http://snomed.info/sct','Salmonella Yundum (organism)','27408007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_27522009','27522009','http://snomed.info/sct','Salmonella II 21:z:- (organism)','27522009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_27543005','27543005','http://snomed.info/sct','Salmonella Afula (organism)','27543005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_27987009','27987009','http://snomed.info/sct','Salmonella Adamstua (organism)','27987009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_280003','280003','http://snomed.info/sct','Salmonella Limete (organism)','280003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_28013002','28013002','http://snomed.info/sct','Salmonella Kristianstad (organism)','28013002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_28090003','28090003','http://snomed.info/sct','Salmonella Yarm (organism)','28090003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_28106004','28106004','http://snomed.info/sct','Salmonella Lome (organism)','28106004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_28124002','28124002','http://snomed.info/sct','Salmonella Utah (organism)','28124002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_28141000','28141000','http://snomed.info/sct','Salmonella Bolombo (organism)','28141000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_2820001','2820001','http://snomed.info/sct','Salmonella Saintpaul (organism)','2820001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_28206007','28206007','http://snomed.info/sct','Salmonella Cannstatt (organism)','28206007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_28285008','28285008','http://snomed.info/sct','Salmonella Finkenwerder (organism)','28285008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_28418000','28418000','http://snomed.info/sct','Salmonella Rossleben (organism)','28418000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_28623007','28623007','http://snomed.info/sct','Salmonella Treforest (organism)','28623007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_28717009','28717009','http://snomed.info/sct','Salmonella Waycross (organism)','28717009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_2872006','2872006','http://snomed.info/sct','Salmonella Frintrop (organism)','2872006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_28865004','28865004','http://snomed.info/sct','Salmonella Umhlali (organism)','28865004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_28879007','28879007','http://snomed.info/sct','Salmonella Gwale (organism)','28879007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_28932006','28932006','http://snomed.info/sct','Salmonella Wayne (organism)','28932006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_29019008','29019008','http://snomed.info/sct','Salmonella Singapore (organism)','29019008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_29049005','29049005','http://snomed.info/sct','Salmonella Niloese (organism)','29049005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_29083003','29083003','http://snomed.info/sct','Salmonella Nikolaifleet (organism)','29083003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_29090008','29090008','http://snomed.info/sct','Salmonella Zanzibar (organism)','29090008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_29115000','29115000','http://snomed.info/sct','Salmonella Kisarawe (organism)','29115000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_29173000','29173000','http://snomed.info/sct','Salmonella Tado (organism)','29173000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_29189002','29189002','http://snomed.info/sct','Salmonella Tschangu (organism)','29189002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_29192003','29192003','http://snomed.info/sct','Salmonella Benin (organism)','29192003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_29305002','29305002','http://snomed.info/sct','Salmonella Teshie (organism)','29305002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_2932003','2932003','http://snomed.info/sct','Salmonella Bispebjerg (organism)','2932003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_29335009','29335009','http://snomed.info/sct','Salmonella Sokode (organism)','29335009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_29429005','29429005','http://snomed.info/sct','Salmonella Handen (organism)','29429005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_29449001','29449001','http://snomed.info/sct','Salmonella Ndjamena (organism)','29449001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_29469006','29469006','http://snomed.info/sct','Salmonella Tennyson (organism)','29469006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_29528000','29528000','http://snomed.info/sct','Salmonella Reubeuss (organism)','29528000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_29742006','29742006','http://snomed.info/sct','Salmonella Gafsa (organism)','29742006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_29811007','29811007','http://snomed.info/sct','Salmonella Jukestown (organism)','29811007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_29948004','29948004','http://snomed.info/sct','Salmonella II 30:z6:1,6 (organism)','29948004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_29955002','29955002','http://snomed.info/sct','Salmonella Tsevie (organism)','29955002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_30228001','30228001','http://snomed.info/sct','Salmonella Neudorf (organism)','30228001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_302624001','302624001','http://snomed.info/sct','Salmonella II 4,12,27:i:z35 (organism)','302624001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_302625000','302625000','http://snomed.info/sct','Salmonella Winneba (organism)','302625000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_302636007','302636007','http://snomed.info/sct','Salmonella Stuttgart (organism)','302636007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_302637003','302637003','http://snomed.info/sct','Salmonella Cardiff (organism)','302637003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_302653000','302653000','http://snomed.info/sct','Salmonella Daarle (organism)','302653000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_302654006','302654006','http://snomed.info/sct','Salmonella II 6,8:z29:e,n,x (organism)','302654006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_302660006','302660006','http://snomed.info/sct','Salmonella II 1,9,12:g,m,[s],t:[1,5,7]:[z42] (organism)','302660006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_302665001','302665001','http://snomed.info/sct','Salmonella II 1,9,12:z42:1,[5],7 (organism)','302665001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_302667009','302667009','http://snomed.info/sct','Salmonella Kolar (organism)','302667009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_302669007','302669007','http://snomed.info/sct','Salmonella Waedenswil (organism)','302669007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_302673005','302673005','http://snomed.info/sct','Salmonella Ngaparou (organism)','302673005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_302674004','302674004','http://snomed.info/sct','Salmonella Mahina (organism)','302674004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_302688000','302688000','http://snomed.info/sct','Salmonella Svedvi (organism)','302688000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_302691000','302691000','http://snomed.info/sct','Salmonella Simsbury (organism)','302691000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_302700002','302700002','http://snomed.info/sct','Salmonella 13,22:a:e,n,x (organism)','302700002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_302702005','302702005','http://snomed.info/sct','Salmonella 1,13,23:g,m,s,t:1,5 (organism)','302702005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_302703000','302703000','http://snomed.info/sct','Salmonella II 1,13,23:g,m,s,t:z42 (organism)','302703000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_302708009','302708009','http://snomed.info/sct','Salmonella Kuntair (organism)','302708009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_302718004','302718004','http://snomed.info/sct','Salmonella Brooklyn (organism)','302718004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_302721002','302721002','http://snomed.info/sct','Salmonella Bouake (organism)','302721002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_302722009','302722009','http://snomed.info/sct','Salmonella II 21:b:1,5 (organism)','302722009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_302740008','302740008','http://snomed.info/sct','Salmonella Odienne (organism)','302740008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_302746002','302746002','http://snomed.info/sct','Salmonella II 45:z29:e,n,x (organism)','302746002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_302751008','302751008','http://snomed.info/sct','Salmonella Krugersdorp (organism)','302751008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_302754000','302754000','http://snomed.info/sct','Salmonella II 56:l,v:z39 (organism)','302754000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_30290002','30290002','http://snomed.info/sct','Salmonella Mara (organism)','30290002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_303216008','303216008','http://snomed.info/sct','Salmonella Mbandaka var 25 (organism)','303216008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_30335006','30335006','http://snomed.info/sct','Salmonella Tounouma (organism)','30335006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_30362003','30362003','http://snomed.info/sct','Salmonella Ayinde (organism)','30362003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_30430002','30430002','http://snomed.info/sct','Salmonella IV 45:g,z51:- (organism)','30430002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_30552009','30552009','http://snomed.info/sct','Salmonella II 58:a:(z6) (organism)','30552009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_30569006','30569006','http://snomed.info/sct','Salmonella II 47:a:e,n,x,z15 (organism)','30569006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_30665007','30665007','http://snomed.info/sct','Salmonella Christiansborg (organism)','30665007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_30686007','30686007','http://snomed.info/sct','Salmonella Ochsenwerder (organism)','30686007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_30864008','30864008','http://snomed.info/sct','Salmonella Chittagong (organism)','30864008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_30892003','30892003','http://snomed.info/sct','Salmonella Athinai (organism)','30892003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_31044005','31044005','http://snomed.info/sct','Salmonella Bessi (organism)','31044005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_31093000','31093000','http://snomed.info/sct','Salmonella Ekotedo (organism)','31093000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_312000','312000','http://snomed.info/sct','Salmonella Amba (organism)','312000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_31210009','31210009','http://snomed.info/sct','Salmonella IV 43:g,z51:- (organism)','31210009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_31239009','31239009','http://snomed.info/sct','Salmonella Rhydyfelin (organism)','31239009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_31454000','31454000','http://snomed.info/sct','Salmonella II 41:-:1,6 (organism)','31454000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_31469004','31469004','http://snomed.info/sct','Salmonella Langensalza (organism)','31469004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_31517006','31517006','http://snomed.info/sct','Salmonella Richmond (organism)','31517006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_3154009','3154009','http://snomed.info/sct','Salmonella Oyonnax (organism)','3154009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_31557009','31557009','http://snomed.info/sct','Salmonella Pretoria (organism)','31557009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_31564006','31564006','http://snomed.info/sct','Salmonella Claibornei (organism)','31564006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_31592001','31592001','http://snomed.info/sct','Salmonella Mendoza (organism)','31592001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_31602000','31602000','http://snomed.info/sct','Salmonella Businga (organism)','31602000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_31608001','31608001','http://snomed.info/sct','Salmonella Gatuni (organism)','31608001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_31669006','31669006','http://snomed.info/sct','Salmonella Reinickendorf (organism)','31669006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_31718003','31718003','http://snomed.info/sct','Salmonella II 6,8:g,m,t:(e,n,x) (organism)','31718003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_31745002','31745002','http://snomed.info/sct','Salmonella Lishabi (organism)','31745002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_31832006','31832006','http://snomed.info/sct','Salmonella II 1,40:m,t:z42 (organism)','31832006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_31859003','31859003','http://snomed.info/sct','Salmonella Egusitoo (organism)','31859003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_31900005','31900005','http://snomed.info/sct','Salmonella Umhlatazana (organism)','31900005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_32054007','32054007','http://snomed.info/sct','Salmonella Kubacha (organism)','32054007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_3210007','3210007','http://snomed.info/sct','Salmonella II 1,44:e,n,x:1,6 (organism)','3210007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_32122000','32122000','http://snomed.info/sct','Salmonella Nessa (organism)','32122000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_32244000','32244000','http://snomed.info/sct','Salmonella Tyresoe (organism)','32244000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_32275009','32275009','http://snomed.info/sct','Salmonella Godesberg (organism)','32275009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_32310005','32310005','http://snomed.info/sct','Salmonella Konstanz (organism)','32310005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_32320000','32320000','http://snomed.info/sct','Salmonella Wilhelmsburg (organism)','32320000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_32365009','32365009','http://snomed.info/sct','Salmonella Tornow (organism)','32365009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_32379001','32379001','http://snomed.info/sct','Salmonella Fischerstrasse (organism)','32379001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_32531009','32531009','http://snomed.info/sct','Salmonella II 9,46:e,n,x:1,5,7 (organism)','32531009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_32549009','32549009','http://snomed.info/sct','Salmonella Djermaia (organism)','32549009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_32624003','32624003','http://snomed.info/sct','Salmonella Carrau (organism)','32624003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_32681008','32681008','http://snomed.info/sct','Salmonella Orion (organism)','32681008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_32692009','32692009','http://snomed.info/sct','Salmonella II 28:g,s,t:e,n,x (organism)','32692009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_32716002','32716002','http://snomed.info/sct','Salmonella Vaertan (organism)','32716002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_32771001','32771001','http://snomed.info/sct','Salmonella Ituri (organism)','32771001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_32854006','32854006','http://snomed.info/sct','Salmonella Sanktgeorg (organism)','32854006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_3288007','3288007','http://snomed.info/sct','Salmonella II 65:-:1,6 (organism)','3288007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_32995008','32995008','http://snomed.info/sct','Salmonella Mons (organism)','32995008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_33108006','33108006','http://snomed.info/sct','Salmonella Birkenhead (organism)','33108006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_3312002','3312002','http://snomed.info/sct','Salmonella Fresno (organism)','3312002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_33136001','33136001','http://snomed.info/sct','Salmonella Elisabethville (organism)','33136001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_3316004','3316004','http://snomed.info/sct','Salmonella Hithergreen (organism)','3316004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_33172008','33172008','http://snomed.info/sct','Salmonella Curacao (organism)','33172008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_33296009','33296009','http://snomed.info/sct','Salmonella Taksony (organism)','33296009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_3335004','3335004','http://snomed.info/sct','Salmonella Greiz (organism)','3335004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_33613006','33613006','http://snomed.info/sct','Salmonella Holcomb (organism)','33613006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_3373000','3373000','http://snomed.info/sct','Salmonella Ibadan (organism)','3373000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_33765004','33765004','http://snomed.info/sct','Salmonella Lomnava (organism)','33765004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_33827003','33827003','http://snomed.info/sct','Salmonella Battle (organism)','33827003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_3386009','3386009','http://snomed.info/sct','Salmonella Doncaster (organism)','3386009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_33909002','33909002','http://snomed.info/sct','Salmonella Makiso (organism)','33909002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_34033001','34033001','http://snomed.info/sct','Salmonella Nuatja (organism)','34033001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_34051000','34051000','http://snomed.info/sct','Salmonella Sandow (organism)','34051000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_34107006','34107006','http://snomed.info/sct','Salmonella Wentworth (organism)','34107006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_34153004','34153004','http://snomed.info/sct','Salmonella Brazzaville (organism)','34153004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_34192006','34192006','http://snomed.info/sct','Salmonella II 52:c:k (organism)','34192006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_34237005','34237005','http://snomed.info/sct','Salmonella Miyazaki (organism)','34237005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_34256000','34256000','http://snomed.info/sct','Salmonella Ayton (organism)','34256000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_34328008','34328008','http://snomed.info/sct','Salmonella II 16:m,t:e,n,x (organism)','34328008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_34434000','34434000','http://snomed.info/sct','Salmonella Zwickau (organism)','34434000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_34464008','34464008','http://snomed.info/sct','Salmonella Texas (organism)','34464008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_34473000','34473000','http://snomed.info/sct','Salmonella Wangata (organism)','34473000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_34520002','34520002','http://snomed.info/sct','Salmonella Coogee (organism)','34520002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_34547007','34547007','http://snomed.info/sct','Salmonella Eastbourne (organism)','34547007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_34732000','34732000','http://snomed.info/sct','Salmonella Okefoko (organism)','34732000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_34778008','34778008','http://snomed.info/sct','Salmonella Maryland (organism)','34778008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_35053007','35053007','http://snomed.info/sct','Salmonella II 16:d:1,5 (organism)','35053007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_35091007','35091007','http://snomed.info/sct','Salmonella Trimdon (organism)','35091007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_35197009','35197009','http://snomed.info/sct','Salmonella Biafra (organism)','35197009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_35203007','35203007','http://snomed.info/sct','Salmonella Croft (organism)','35203007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_35225001','35225001','http://snomed.info/sct','Salmonella Braenderup (organism)','35225001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_35244008','35244008','http://snomed.info/sct','Salmonella Mocamedes (organism)','35244008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_35373008','35373008','http://snomed.info/sct','Salmonella Istanbul (organism)','35373008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_3540008','3540008','http://snomed.info/sct','Salmonella Aequatoria (organism)','3540008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_35454005','35454005','http://snomed.info/sct','Salmonella Oslo (organism)','35454005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_35504002','35504002','http://snomed.info/sct','Salmonella Borbeck (organism)','35504002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_35529008','35529008','http://snomed.info/sct','Salmonella Brancaster (organism)','35529008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_35647006','35647006','http://snomed.info/sct','Salmonella Avonmouth (organism)','35647006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_3567002','3567002','http://snomed.info/sct','Salmonella Angers (organism)','3567002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_3596001','3596001','http://snomed.info/sct','Salmonella Poano (organism)','3596001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_35972009','35972009','http://snomed.info/sct','Salmonella Brunei (organism)','35972009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_35996004','35996004','http://snomed.info/sct','Salmonella Fyris (organism)','35996004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_36050001','36050001','http://snomed.info/sct','Salmonella Granlo (organism)','36050001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_36077005','36077005','http://snomed.info/sct','Salmonella Sarajane (organism)','36077005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_361397004','361397004','http://snomed.info/sct','Salmonella Atento (organism)','361397004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_36210005','36210005','http://snomed.info/sct','Salmonella II 6,7:l,w:1,5,7 (organism)','36210005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_3624003','3624003','http://snomed.info/sct','Salmonella Waral (organism)','3624003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_36247005','36247005','http://snomed.info/sct','Salmonella Santhiaba (organism)','36247005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_36282006','36282006','http://snomed.info/sct','Salmonella Yolo (organism)','36282006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_36324007','36324007','http://snomed.info/sct','Salmonella II 30:z39:1,7 (organism)','36324007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_363760001','363760001','http://snomed.info/sct','Salmonella IIIb 48:k:1,5,(7) (organism)','363760001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_36510009','36510009','http://snomed.info/sct','Salmonella Teddington (organism)','36510009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_36588009','36588009','http://snomed.info/sct','Salmonella Sangera (organism)','36588009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_36604000','36604000','http://snomed.info/sct','Salmonella Djugu (organism)','36604000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_36702005','36702005','http://snomed.info/sct','Salmonella II 13,23:d:e,n,x (organism)','36702005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_36807005','36807005','http://snomed.info/sct','Salmonella Canton (organism)','36807005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_36819002','36819002','http://snomed.info/sct','Salmonella II 13,22:k:1,5:z42 (organism)','36819002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_370576005','370576005','http://snomed.info/sct','Salmonella Gallinarum (organism)','370576005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_370577001','370577001','http://snomed.info/sct','Salmonella Choleraesuis var. Kunzendorf (organism)','370577001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_370578006','370578006','http://snomed.info/sct','Salmonella Typhimurium var. Copenhagen (organism)','370578006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_3708006','3708006','http://snomed.info/sct','Salmonella Uno (organism)','3708006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_37091006','37091006','http://snomed.info/sct','Salmonella Derby (organism)','37091006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_37093009','37093009','http://snomed.info/sct','Salmonella Hissar (organism)','37093009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_37261005','37261005','http://snomed.info/sct','Salmonella Anatum (organism)','37261005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_37265001','37265001','http://snomed.info/sct','Salmonella II 6,8:l,v:e,n,x (organism)','37265001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_37286001','37286001','http://snomed.info/sct','Salmonella Penarth (organism)','37286001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_37297001','37297001','http://snomed.info/sct','Salmonella Hermannswerder (organism)','37297001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_37339002','37339002','http://snomed.info/sct','Salmonella II 1,53:d:z39 (organism)','37339002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_37420008','37420008','http://snomed.info/sct','Salmonella Westminster (organism)','37420008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_37549003','37549003','http://snomed.info/sct','Salmonella Neftenbach (organism)','37549003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_37669003','37669003','http://snomed.info/sct','Salmonella Langford (organism)','37669003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_37944001','37944001','http://snomed.info/sct','Salmonella Adjame (organism)','37944001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_37971001','37971001','http://snomed.info/sct','Salmonella Bullbay (organism)','37971001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_3801008','3801008','http://snomed.info/sct','Salmonella Ursenbach (organism)','3801008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_38130005','38130005','http://snomed.info/sct','Salmonella Adamstown (organism)','38130005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_38171004','38171004','http://snomed.info/sct','Salmonella II 13,23:-:1,6 (organism)','38171004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_38211003','38211003','http://snomed.info/sct','Salmonella II 1,9,12,(46),27:l,z13,z28:z39 (organism)','38211003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_3835006','3835006','http://snomed.info/sct','Salmonella Colobane (organism)','3835006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_38358008','38358008','http://snomed.info/sct','Salmonella Alfort (organism)','38358008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_3837003','3837003','http://snomed.info/sct','Salmonella Sendai (organism)','3837003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_3846009','3846009','http://snomed.info/sct','Salmonella Gamaba (organism)','3846009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_38514007','38514007','http://snomed.info/sct','Salmonella II 50:z10:z6 (organism)','38514007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_38604007','38604007','http://snomed.info/sct','Salmonella II 39:a:z39 (organism)','38604007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_38658003','38658003','http://snomed.info/sct','Salmonella Amsterdam (organism)','38658003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_38676005','38676005','http://snomed.info/sct','Salmonella Bootle (organism)','38676005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_38701009','38701009','http://snomed.info/sct','Salmonella Heerlen (organism)','38701009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_38762004','38762004','http://snomed.info/sct','Salmonella Allerton (organism)','38762004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_38788001','38788001','http://snomed.info/sct','Salmonella Havana (organism)','38788001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_38849007','38849007','http://snomed.info/sct','Salmonella Florida (organism)','38849007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_39015005','39015005','http://snomed.info/sct','Salmonella Amoutive (organism)','39015005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_39045008','39045008','http://snomed.info/sct','Salmonella Eimsbuettel (organism)','39045008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_39185004','39185004','http://snomed.info/sct','Salmonella Casamance (organism)','39185004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_39215001','39215001','http://snomed.info/sct','Salmonella Vejle (organism)','39215001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_39531008','39531008','http://snomed.info/sct','Salmonella II 9,46:z10:z39 (organism)','39531008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_39603007','39603007','http://snomed.info/sct','Salmonella Parkroyal (organism)','39603007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_39664003','39664003','http://snomed.info/sct','Salmonella Kottbus (organism)','39664003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_3970007','3970007','http://snomed.info/sct','Salmonella Quentin (organism)','3970007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_39761002','39761002','http://snomed.info/sct','Salmonella Shamba (organism)','39761002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_39775009','39775009','http://snomed.info/sct','Salmonella Sanktmarx (organism)','39775009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398331000','398331000','http://snomed.info/sct','Salmonella IIIb 61:(k):z53 (organism)','398331000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398333002','398333002','http://snomed.info/sct','Salmonella IIIb 51:l,v:z (organism)','398333002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398335009','398335009','http://snomed.info/sct','Salmonella IIIb 61:z52:z35 (organism)','398335009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398336005','398336005','http://snomed.info/sct','Salmonella IIIb 60:k:z35 (organism)','398336005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398339003','398339003','http://snomed.info/sct','Salmonella IIIb 61:c:1,5,(7) (organism)','398339003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398340001','398340001','http://snomed.info/sct','Salmonella IIIb 60:z10:z (organism)','398340001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398344005','398344005','http://snomed.info/sct','Salmonella IIIa 62:z4,z32:- (organism)','398344005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398346007','398346007','http://snomed.info/sct','Salmonella IIIb 61:z52:1,5,7 (organism)','398346007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398350000','398350000','http://snomed.info/sct','Salmonella IIIa 51:g,z51:- (organism)','398350000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398353003','398353003','http://snomed.info/sct','Salmonella IIIb 60:r:z (organism)','398353003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398356006','398356006','http://snomed.info/sct','Salmonella IIIa 59:z4:z23:- (organism)','398356006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398358007','398358007','http://snomed.info/sct','Salmonella IIIa 63:z4,z32:- (organism)','398358007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398359004','398359004','http://snomed.info/sct','Salmonella IIIb 61:i:z (organism)','398359004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398360009','398360009','http://snomed.info/sct','Salmonella IIIb 6,14:k:z (organism)','398360009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398363006','398363006','http://snomed.info/sct','Salmonella IIIa 63:z36:- (organism)','398363006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398368002','398368002','http://snomed.info/sct','Salmonella IIIb 60:l,v:z (organism)','398368002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398369005','398369005','http://snomed.info/sct','Salmonella IIIb 61:l,v:z35 (organism)','398369005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398370006','398370006','http://snomed.info/sct','Salmonella IIIb 59:(k):e,n,x,z15 (organism)','398370006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398372003','398372003','http://snomed.info/sct','Salmonella IIIb 57:c:z:z60 (organism)','398372003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398373008','398373008','http://snomed.info/sct','Salmonella IIIb 61:k:1,5,(7) (organism)','398373008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398374002','398374002','http://snomed.info/sct','Salmonella IIIb 59:(k):z (organism)','398374002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398376000','398376000','http://snomed.info/sct','Salmonella II 9,12:l,v:e,n,x (organism)','398376000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398379007','398379007','http://snomed.info/sct','Salmonella IIIb 59:(k):z35 (organism)','398379007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398382002','398382002','http://snomed.info/sct','Salmonella IIIb 60:i:z35 (organism)','398382002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398385000','398385000','http://snomed.info/sct','Salmonella IIIb 59:l,v:z (organism)','398385000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398386004','398386004','http://snomed.info/sct','Salmonella II 3,10:z29:e,n,x (organism)','398386004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398387008','398387008','http://snomed.info/sct','Salmonella IIIb 61:c:z35 (organism)','398387008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398388003','398388003','http://snomed.info/sct','Salmonella IIIb 53:z10:z35 (organism)','398388003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398391003','398391003','http://snomed.info/sct','Salmonella II 1,4,[5],12,27:a:e,n,x (organism)','398391003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398392005','398392005','http://snomed.info/sct','Salmonella IIIb 58:r:e,n,x,z15 (organism)','398392005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398395007','398395007','http://snomed.info/sct','Salmonella IIIb 52:k:z53 (organism)','398395007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398396008','398396008','http://snomed.info/sct','Salmonella IV 51:z4,z23:- (organism)','398396008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398397004','398397004','http://snomed.info/sct','Salmonella IIIb 65:z52:z35 (organism)','398397004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398398009','398398009','http://snomed.info/sct','Salmonella IIIb 52:k:z35 (organism)','398398009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398402000','398402000','http://snomed.info/sct','Salmonella IIIa 56:z4,z23,z32:- (organism)','398402000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398403005','398403005','http://snomed.info/sct','Salmonella II 3,10:z4,z24:- (organism)','398403005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398404004','398404004','http://snomed.info/sct','Salmonella IIIa 63:g:z51:- (organism)','398404004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398406002','398406002','http://snomed.info/sct','Salmonella IIIa 62:g:z51:- (organism)','398406002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398407006','398407006','http://snomed.info/sct','Salmonella IIIb 60:r:e,n,x,z15 (organism)','398407006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398409009','398409009','http://snomed.info/sct','Salmonella Nchanga var 15+ (organism)','398409009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398410004','398410004','http://snomed.info/sct','Salmonella Southbank var 15+, 34+ (organism)','398410004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398411000','398411000','http://snomed.info/sct','Salmonella IIIa 59:z29:- (organism)','398411000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398412007','398412007','http://snomed.info/sct','Salmonella IIIb 60:z10:z35 (organism)','398412007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398414008','398414008','http://snomed.info/sct','Salmonella II 1,9,12:a:e,n,x (organism)','398414008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398415009','398415009','http://snomed.info/sct','Salmonella IIIa 1,13,23:z4,z24:- (organism)','398415009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398416005','398416005','http://snomed.info/sct','Salmonella IIIb 65:l,v:z35 (organism)','398416005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398417001','398417001','http://snomed.info/sct','Salmonella IIIb 61:r:1,5,7 (organism)','398417001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398418006','398418006','http://snomed.info/sct','Salmonella IIIb 53:i:z (organism)','398418006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398419003','398419003','http://snomed.info/sct','Salmonella IIIa 56:z29:- (organism)','398419003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398422001','398422001','http://snomed.info/sct','Salmonella II 3,10:e,n,x:1,7 (organism)','398422001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398423006','398423006','http://snomed.info/sct','Salmonella IIIb 61:l,v:1,5,7:[z57] (organism)','398423006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398424000','398424000','http://snomed.info/sct','Salmonella IIIb 59:l,v:z53 (organism)','398424000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398425004','398425004','http://snomed.info/sct','Salmonella IIIa 6,7,14:z39:1,2 (organism)','398425004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398431001','398431001','http://snomed.info/sct','Salmonella IIIb 59:z10:z53 (organism)','398431001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398433003','398433003','http://snomed.info/sct','Salmonella IIIb 60:z52:z35 (organism)','398433003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398434009','398434009','http://snomed.info/sct','Salmonella IIIb 65:i:e,n,x,z15 (organism)','398434009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398435005','398435005','http://snomed.info/sct','Salmonella IIIb 51:k:z35 (organism)','398435005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398437002','398437002','http://snomed.info/sct','Salmonella IIIb 65:c:z53 (organism)','398437002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398438007','398438007','http://snomed.info/sct','Salmonella II 1,4,12,27:b:[e,n,x] (organism)','398438007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398440002','398440002','http://snomed.info/sct','Salmonella IIIb 58:r:z53:(57) (organism)','398440002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398441003','398441003','http://snomed.info/sct','Salmonella II 3,10:g,m,s,t:[1,5] var 15+ (organism)','398441003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398442005','398442005','http://snomed.info/sct','Salmonella IIIb 61:z52:z (organism)','398442005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398444006','398444006','http://snomed.info/sct','Salmonella IIIa 59:z36:- (organism)','398444006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398448009','398448009','http://snomed.info/sct','Salmonella Meleagridis var 15+ (organism)','398448009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398449001','398449001','http://snomed.info/sct','Salmonella IIIa 6,7:(k):z:(z55) (organism)','398449001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398450001','398450001','http://snomed.info/sct','Salmonella IIIb 53:k:z (organism)','398450001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398453004','398453004','http://snomed.info/sct','Salmonella IIIb 60:r:z35 (organism)','398453004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398456007','398456007','http://snomed.info/sct','Salmonella IIIb 60:(k):z53 (organism)','398456007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398457003','398457003','http://snomed.info/sct','Salmonella IIIb 53:z52:z53 (organism)','398457003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398458008','398458008','http://snomed.info/sct','Salmonella IIIb 60:z52:z (organism)','398458008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398459000','398459000','http://snomed.info/sct','Salmonella IIIa 53:g,z51:- (organism)','398459000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398461009','398461009','http://snomed.info/sct','Salmonella IIIb 53:z52:z35 (organism)','398461009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398465000','398465000','http://snomed.info/sct','Salmonella II 1,9,12,46,27:z10:1,5 (organism)','398465000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398466004','398466004','http://snomed.info/sct','Salmonella enterica subspecies enterica serovar Butantan var O:15, 34+ (organism)','398466004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398469006','398469006','http://snomed.info/sct','Salmonella IIIb 53:l,v:e,n,x,z15 (organism)','398469006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398471006','398471006','http://snomed.info/sct','Salmonella IIIb 52:l,v:z53 (organism)','398471006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398472004','398472004','http://snomed.info/sct','Salmonella IIIb 53:l,v:z35 (organism)','398472004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398473009','398473009','http://snomed.info/sct','Salmonella Newlands var 15+, 34+ (organism)','398473009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398474003','398474003','http://snomed.info/sct','Salmonella IIIb 59:k:z53 (organism)','398474003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398478000','398478000','http://snomed.info/sct','Salmonella Jedburgh var 15+ (organism)','398478000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398481005','398481005','http://snomed.info/sct','Salmonella IIIb 60:k:z (organism)','398481005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398483008','398483008','http://snomed.info/sct','Salmonella Lomalinda (organism)','398483008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398484002','398484002','http://snomed.info/sct','Salmonella IIIb 61:z10:z35 (organism)','398484002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398485001','398485001','http://snomed.info/sct','Salmonella IIIb (6),14:l,v:z35 (organism)','398485001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398486000','398486000','http://snomed.info/sct','Salmonella IIIb 1,6,14,25:z52:z35 (organism)','398486000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398491004','398491004','http://snomed.info/sct','Salmonella IIIb 65:l,v:z53 (organism)','398491004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398494007','398494007','http://snomed.info/sct','Salmonella IIIb (6),14:l,v:z (organism)','398494007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398495008','398495008','http://snomed.info/sct','Salmonella IIIb 60:z52:z53 (organism)','398495008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398496009','398496009','http://snomed.info/sct','Salmonella IIIb 65:z52:z53 (organism)','398496009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398497000','398497000','http://snomed.info/sct','Salmonella IIIb 61:z52:z53 (organism)','398497000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398498005','398498005','http://snomed.info/sct','Salmonella IIIb (6),14:k:z53 (organism)','398498005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398499002','398499002','http://snomed.info/sct','Salmonella Shangani var 15+ (organism)','398499002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398500006','398500006','http://snomed.info/sct','Salmonella IIIb 65:z10:z (organism)','398500006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398502003','398502003','http://snomed.info/sct','Salmonella IIIb 61:r:z35 (organism)','398502003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398510002','398510002','http://snomed.info/sct','Salmonella IIIb 58:z52:z35 (organism)','398510002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398512005','398512005','http://snomed.info/sct','Salmonella IIIb 65:(k):z35 (organism)','398512005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398515007','398515007','http://snomed.info/sct','Salmonella Zanzibar var 15+ (organism)','398515007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398517004','398517004','http://snomed.info/sct','Salmonella IIIb 60:z52:1,5,7 (organism)','398517004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398519001','398519001','http://snomed.info/sct','Salmonella IIIb 65:l,v:z (organism)','398519001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398520007','398520007','http://snomed.info/sct','Salmonella IIIb 57:i:z (organism)','398520007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398521006','398521006','http://snomed.info/sct','Salmonella IIIa 53:z4,z23,z32:- (organism)','398521006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398522004','398522004','http://snomed.info/sct','Salmonella IIIb (6),14:r:z (organism)','398522004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398525002','398525002','http://snomed.info/sct','Salmonella IIIb 58:i:e,n,x,z15 (organism)','398525002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398527005','398527005','http://snomed.info/sct','Salmonella IIIb 65:c:z (organism)','398527005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398531004','398531004','http://snomed.info/sct','Salmonella IIIb 53:z:1,5,(7) (organism)','398531004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398532006','398532006','http://snomed.info/sct','Salmonella IIIa 1,13,23:g,z51:- (organism)','398532006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398535008','398535008','http://snomed.info/sct','Salmonella IIIb 61:i:z35 (organism)','398535008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398537000','398537000','http://snomed.info/sct','Salmonella 3,10:R1,z40:1,7 (organism)','398537000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398538005','398538005','http://snomed.info/sct','Salmonella IIIb 61:l,v:z (organism)','398538005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398540000','398540000','http://snomed.info/sct','Salmonella IIIb 58:l,v:e,n,x,z15 (organism)','398540000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398546006','398546006','http://snomed.info/sct','Salmonella IIIa 63:z4,z23:- (organism)','398546006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398548007','398548007','http://snomed.info/sct','Salmonella IIIa 62:z4,z23:- (organism)','398548007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398549004','398549004','http://snomed.info/sct','Salmonella Lutetia (organism)','398549004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398550004','398550004','http://snomed.info/sct','Salmonella Zaiman (organism)','398550004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398551000','398551000','http://snomed.info/sct','Salmonella IIIb 53:r:z35 (organism)','398551000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398552007','398552007','http://snomed.info/sct','Salmonella Florian (organism)','398552007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398553002','398553002','http://snomed.info/sct','Salmonella IIIb 61:i:e,n,x,z15 (organism)','398553002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398558006','398558006','http://snomed.info/sct','Salmonella IIIb 65:z10:e,n,x,z15 (organism)','398558006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398562000','398562000','http://snomed.info/sct','Salmonella IIIb (6),14:z10:e,n,x,z15 (organism)','398562000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398563005','398563005','http://snomed.info/sct','Salmonella IIIb 61:i:z53 (organism)','398563005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398569009','398569009','http://snomed.info/sct','Salmonella IIIa 6,7:1,v:z53 (organism)','398569009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398573007','398573007','http://snomed.info/sct','Salmonella IIIb 53:k:e,n,x,z15 (organism)','398573007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398574001','398574001','http://snomed.info/sct','Salmonella IIIa 53:z29:- (organism)','398574001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398577008','398577008','http://snomed.info/sct','Salmonella IIIb 53:r:z (organism)','398577008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398578003','398578003','http://snomed.info/sct','Salmonella II 1,13,22:g,t:1,5 (organism)','398578003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398580009','398580009','http://snomed.info/sct','Salmonella IIIb 65:c:1,5,7 (organism)','398580009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398581008','398581008','http://snomed.info/sct','Salmonella IIIb 65:(k):z53 (organism)','398581008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398582001','398582001','http://snomed.info/sct','Salmonella IIIa 56:z4,z23:- (organism)','398582001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398583006','398583006','http://snomed.info/sct','Salmonella Ohlstedt var 15+ (organism)','398583006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398587007','398587007','http://snomed.info/sct','Salmonella IIIb 60:i:e,n,x,z15 (organism)','398587007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398590001','398590001','http://snomed.info/sct','Salmonella IIIb 57:i:e,n,x,z15 (organism)','398590001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398592009','398592009','http://snomed.info/sct','Salmonella IIIb 61:r:z53 (organism)','398592009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398594005','398594005','http://snomed.info/sct','Salmonella Yaba var 15+ (organism)','398594005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398595006','398595006','http://snomed.info/sct','Salmonella IIIb 59:i:z (organism)','398595006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398596007','398596007','http://snomed.info/sct','Salmonella IIIb 58:z52:z (organism)','398596007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398597003','398597003','http://snomed.info/sct','Salmonella IIIb 53:(k):z35 (organism)','398597003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398601003','398601003','http://snomed.info/sct','Salmonella IIIa 6,7:-:1,6 (organism)','398601003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398603000','398603000','http://snomed.info/sct','Salmonella IIIb 58:r:z (organism)','398603000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398604006','398604006','http://snomed.info/sct','Salmonella IIIb 65:z52:z (organism)','398604006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398605007','398605007','http://snomed.info/sct','Salmonella IIIb 59:i:z35 (organism)','398605007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398610006','398610006','http://snomed.info/sct','Salmonella IIIb 6,14:b:e,n,x (organism)','398610006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398612003','398612003','http://snomed.info/sct','Salmonella IIIb 60:r:z53 (organism)','398612003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398613008','398613008','http://snomed.info/sct','Salmonella IIIb 59:z10:z57 (organism)','398613008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398615001','398615001','http://snomed.info/sct','Salmonella IIIb 65:(k):z (organism)','398615001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398616000','398616000','http://snomed.info/sct','Salmonella IIIa 51:z4,z24:- (organism)','398616000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398619007','398619007','http://snomed.info/sct','Salmonella IIIb 65:i,v:e,n,x,z15 (organism)','398619007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398622009','398622009','http://snomed.info/sct','Salmonella Everleigh (organism)','398622009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_39877005','39877005','http://snomed.info/sct','Salmonella Lexington (organism)','39877005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_39901006','39901006','http://snomed.info/sct','Salmonella Garoli (organism)','39901006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_4005005','4005005','http://snomed.info/sct','Salmonella Jamaica (organism)','4005005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_40114001','40114001','http://snomed.info/sct','Salmonella Panama (organism)','40114001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_40157006','40157006','http://snomed.info/sct','Salmonella Marienthal (organism)','40157006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_40216007','40216007','http://snomed.info/sct','Salmonella Anna (organism)','40216007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_40280008','40280008','http://snomed.info/sct','Salmonella II 1,6,14:z42:1,6 (organism)','40280008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_40288001','40288001','http://snomed.info/sct','Salmonella Moroto (organism)','40288001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_40305002','40305002','http://snomed.info/sct','Salmonella Kasenyi (organism)','40305002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_40311004','40311004','http://snomed.info/sct','Salmonella Farmsen (organism)','40311004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_40314007','40314007','http://snomed.info/sct','Salmonella IV 43:z4:z24:- (organism)','40314007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_40369005','40369005','http://snomed.info/sct','Salmonella Abony (organism)','40369005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_40399001','40399001','http://snomed.info/sct','Salmonella Oudwijk (organism)','40399001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404249008','404249008','http://snomed.info/sct','Salmonella II 16 g,[m],[s],t:[e,n,x] (organism)','404249008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404250008','404250008','http://snomed.info/sct','Salmonella IIIb 16:(k):z35 (organism)','404250008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404251007','404251007','http://snomed.info/sct','Salmonella IIIb 16:i:z35 (organism)','404251007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404252000','404252000','http://snomed.info/sct','Salmonella IIIb 16:k:z (organism)','404252000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404253005','404253005','http://snomed.info/sct','Salmonella IIIb 16:k:z53 (organism)','404253005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404254004','404254004','http://snomed.info/sct','Salmonella IIIb 16:l,v:1,5,7 (organism)','404254004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404255003','404255003','http://snomed.info/sct','Salmonella IIIb 16:l,v:z35 (organism)','404255003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404256002','404256002','http://snomed.info/sct','Salmonella IIIb 16:l,v:z53 (organism)','404256002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404257006','404257006','http://snomed.info/sct','Salmonella IIIb 16:l,v:z:(z61) (organism)','404257006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404258001','404258001','http://snomed.info/sct','Salmonella IIIb 16:z10:1,5,7 (organism)','404258001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404259009','404259009','http://snomed.info/sct','Salmonella IIIb 16:z10:e,n,x,z15 (organism)','404259009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404260004','404260004','http://snomed.info/sct','Salmonella IIIb 16:z52:z35 (organism)','404260004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404261000','404261000','http://snomed.info/sct','Salmonella IV 16:z4,z23:- (organism)','404261000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404262007','404262007','http://snomed.info/sct','Salmonella II 16:g,t:1,5 (organism)','404262007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_40427007','40427007','http://snomed.info/sct','Salmonella Hann (organism)','40427007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404281004','404281004','http://snomed.info/sct','Salmonella IIIb 17:i:z35 (organism)','404281004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404282006','404282006','http://snomed.info/sct','Salmonella IIIb 17:l,v:e,n,x,z15 (organism)','404282006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404283001','404283001','http://snomed.info/sct','Salmonella IIIb 17:l,v:z35 (organism)','404283001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404284007','404284007','http://snomed.info/sct','Salmonella IIIb 17:r:z (organism)','404284007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404285008','404285008','http://snomed.info/sct','Salmonella IIIb 17:z10:e,n,x,z15 (organism)','404285008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404286009','404286009','http://snomed.info/sct','Salmonella IIIb 17:z10:z (organism)','404286009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404287000','404287000','http://snomed.info/sct','Salmonella IIIa 17:z29:- (organism)','404287000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404288005','404288005','http://snomed.info/sct','Salmonella IIIa 17:z36:- (organism)','404288005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404289002','404289002','http://snomed.info/sct','Salmonella IIIa 17:z4,z23,z32:- (organism)','404289002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404290006','404290006','http://snomed.info/sct','Salmonella IIIa 17:z4,z23:- (organism)','404290006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404291005','404291005','http://snomed.info/sct','Salmonella IIIa 17:z4,z24:- (organism)','404291005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404292003','404292003','http://snomed.info/sct','Salmonella IIIa 17:z4,z32:- (organism)','404292003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404293008','404293008','http://snomed.info/sct','Salmonella IV 17:z29:- (organism)','404293008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404300004','404300004','http://snomed.info/sct','Salmonella IIIa 18:z4,z23:- (organism)','404300004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404301000','404301000','http://snomed.info/sct','Salmonella II 18:z4,z23:- (organism)','404301000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404302007','404302007','http://snomed.info/sct','Salmonella II 18:z4,z24:- (organism)','404302007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404303002','404303002','http://snomed.info/sct','Salmonella IIIb 18:(k):z53 (organism)','404303002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404304008','404304008','http://snomed.info/sct','Salmonella IIIb 18:(k):z54 (organism)','404304008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404305009','404305009','http://snomed.info/sct','Salmonella IIIa 18:g,z51:- (organism)','404305009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404306005','404306005','http://snomed.info/sct','Salmonella IIIb 18:l,v:e,n,x,z15 (organism)','404306005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404307001','404307001','http://snomed.info/sct','Salmonella IIIb 18:l,v:z (organism)','404307001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404308006','404308006','http://snomed.info/sct','Salmonella IIIb 18:r:z (organism)','404308006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404309003','404309003','http://snomed.info/sct','Salmonella IIIa 18:z4,z32:- (organism)','404309003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404316002','404316002','http://snomed.info/sct','Salmonella IIIa 21:z4,z23:- (organism)','404316002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404317006','404317006','http://snomed.info/sct','Salmonella Baguida (organism)','404317006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404318001','404318001','http://snomed.info/sct','Salmonella II 21:z4,z24:- (organism)','404318001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404319009','404319009','http://snomed.info/sct','Salmonella IIIa 21:z4,z24:- (organism)','404319009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404320003','404320003','http://snomed.info/sct','Salmonella IIIa 21:g,z51:- (organism)','404320003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404321004','404321004','http://snomed.info/sct','Salmonella IIIb 21:i:1,5,7 (organism)','404321004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404322006','404322006','http://snomed.info/sct','Salmonella IIIb 21:i:e,n,x,z15 (organism)','404322006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404323001','404323001','http://snomed.info/sct','Salmonella IIIb 21:k:e,n,x,z15 (organism)','404323001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404324007','404324007','http://snomed.info/sct','Salmonella IIIb 21:k:z (organism)','404324007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404325008','404325008','http://snomed.info/sct','Salmonella IIIb 21:l,v:z (organism)','404325008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404326009','404326009','http://snomed.info/sct','Salmonella IIIb 21:l,v:z57 (organism)','404326009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404327000','404327000','http://snomed.info/sct','Salmonella IIIb 21:z10:e,n,x,z15 (organism)','404327000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404328005','404328005','http://snomed.info/sct','Salmonella IIIb 21:z10:z (organism)','404328005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404329002','404329002','http://snomed.info/sct','Salmonella IIIa 21:z29:- (organism)','404329002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404330007','404330007','http://snomed.info/sct','Salmonella IIIb 21:z65:e,n,x,z15 (organism)','404330007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404331006','404331006','http://snomed.info/sct','Salmonella Rhone (organism)','404331006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404332004','404332004','http://snomed.info/sct','Salmonella II 21:c:e,n,x (organism)','404332004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404337005','404337005','http://snomed.info/sct','Salmonella II 28:r:e,n,z15 (organism)','404337005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404346004','404346004','http://snomed.info/sct','Salmonella IIIa 35:z4,z23:- (organism)','404346004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404347008','404347008','http://snomed.info/sct','Salmonella Alachua (organism)','404347008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404348003','404348003','http://snomed.info/sct','Salmonella IIIb 35:(k):z (organism)','404348003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404349006','404349006','http://snomed.info/sct','Salmonella IIIb 35:(k):z35 (organism)','404349006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404350006','404350006','http://snomed.info/sct','Salmonella IIIa 35:g,z51:- (organism)','404350006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404351005','404351005','http://snomed.info/sct','Salmonella IIIb 35:i:e,n,x,z15 (organism)','404351005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404352003','404352003','http://snomed.info/sct','Salmonella IIIb 35:i:z (organism)','404352003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404353008','404353008','http://snomed.info/sct','Salmonella IIIb 35:k:z (organism)','404353008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404354002','404354002','http://snomed.info/sct','Salmonella IIIb 35:l,v:1,5,7 (organism)','404354002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404355001','404355001','http://snomed.info/sct','Salmonella IIIb 35:r:e,n,x,z15 (organism)','404355001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404356000','404356000','http://snomed.info/sct','Salmonella IIIb 35:r:z35 (organism)','404356000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404357009','404357009','http://snomed.info/sct','Salmonella IIIb 35:r:z61 (organism)','404357009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404358004','404358004','http://snomed.info/sct','Salmonella IIIb35:z10:z35 (organism)','404358004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404359007','404359007','http://snomed.info/sct','Salmonella IIIa 35:z29:- (organism)','404359007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404360002','404360002','http://snomed.info/sct','Salmonella IIIa 35:z36:- (organism)','404360002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404361003','404361003','http://snomed.info/sct','Salmonella IIIa 35:z4,z32:- (organism)','404361003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404362005','404362005','http://snomed.info/sct','Salmonella IIIb 35:z52:1,5,7 (organism)','404362005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404363000','404363000','http://snomed.info/sct','Salmonella IIIb 35:z52:e,n,x,z15 (organism)','404363000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404364006','404364006','http://snomed.info/sct','Salmonella IIIb 35:z52:z (organism)','404364006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404365007','404365007','http://snomed.info/sct','Salmonella IIIb 35:z52:z35 (organism)','404365007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404372008','404372008','http://snomed.info/sct','Salmonella IIIb 38:(k):1,5,7 (organism)','404372008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404373003','404373003','http://snomed.info/sct','Salmonella IIIb 38:(k):z (organism)','404373003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404374009','404374009','http://snomed.info/sct','Salmonella IIIb 38:(k):z35:(z56) (organism)','404374009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404375005','404375005','http://snomed.info/sct','Salmonella IIIb 38:(k):z54 (organism)','404375005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404376006','404376006','http://snomed.info/sct','Salmonella IIIb 38:(k):z55 (organism)','404376006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404377002','404377002','http://snomed.info/sct','Salmonella IIIa 38:g,z51:- (organism)','404377002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404378007','404378007','http://snomed.info/sct','Salmonella IIIb 38:i:z53 (organism)','404378007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404379004','404379004','http://snomed.info/sct','Salmonella IIIb 38:k:z (organism)','404379004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404380001','404380001','http://snomed.info/sct','Salmonella IIIb 38:k:z53 (organism)','404380001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404381002','404381002','http://snomed.info/sct','Salmonella IIIb 38:l,v:z (organism)','404381002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404382009','404382009','http://snomed.info/sct','Salmonella IIIb 38:l,v:z35 (organism)','404382009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404383004','404383004','http://snomed.info/sct','Salmonella IIIb 38:l,v:z35:[z54] (organism)','404383004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404384005','404384005','http://snomed.info/sct','Salmonella IIIb 38:r:1,5,7 (organism)','404384005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404385006','404385006','http://snomed.info/sct','Salmonella IIIb 38:r:z35 (organism)','404385006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404387003','404387003','http://snomed.info/sct','Salmonella IIIb 38:z10:z (organism)','404387003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404388008','404388008','http://snomed.info/sct','Salmonella IIIb 38:z10:z53 (organism)','404388008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404389000','404389000','http://snomed.info/sct','Salmonella IIIb 38:z52:z35 (organism)','404389000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404390009','404390009','http://snomed.info/sct','Salmonella IIIb 38:z52:z53 (organism)','404390009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404401004','404401004','http://snomed.info/sct','Salmonella IIIb, 40:g,z51:e,n,x,z15 (organism)','404401004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404402006','404402006','http://snomed.info/sct','Salmonella IIIb 40:i:1,5,7 (organism)','404402006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404403001','404403001','http://snomed.info/sct','Salmonella IIIb 40:k:z:z57 (organism)','404403001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404404007','404404007','http://snomed.info/sct','Salmonella IIIb 40:k:z53 (organism)','404404007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404405008','404405008','http://snomed.info/sct','Salmonella IIIb 40:l,v:z (organism)','404405008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404406009','404406009','http://snomed.info/sct','Salmonella IIIb 40:l,v:z53 (organism)','404406009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404407000','404407000','http://snomed.info/sct','Salmonella IIIb 40:z10:z35 (organism)','404407000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404408005','404408005','http://snomed.info/sct','Salmonella IIIa 40:z29:- (organism)','404408005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404409002','404409002','http://snomed.info/sct','Salmonella IIIa 40:z36:- (organism)','404409002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404410007','404410007','http://snomed.info/sct','Salmonella IIIa 40:z4,z23:- (organism)','404410007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404411006','404411006','http://snomed.info/sct','Salmonella IV 40:z4,z32:- (organism)','404411006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404412004','404412004','http://snomed.info/sct','Salmonella IIIa 40:z4,z32:- (organism)','404412004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404420002','404420002','http://snomed.info/sct','Salmonella II 41:z10:z6 (organism)','404420002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404421003','404421003','http://snomed.info/sct','Salmonella IIIb 41:(k):z35 (organism)','404421003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404422005','404422005','http://snomed.info/sct','Salmonella IIIb 41:c:e,n,x,z15 (organism)','404422005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404423000','404423000','http://snomed.info/sct','Salmonella IIIa 41:g,z51:- (organism)','404423000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404424006','404424006','http://snomed.info/sct','Salmonella IIIa 41:z29:- (organism)','404424006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404425007','404425007','http://snomed.info/sct','Salmonella IIIa 41:z36:- (organism)','404425007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404426008','404426008','http://snomed.info/sct','Salmonella IIIa 41:z4,z23,z32:- (organism)','404426008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404427004','404427004','http://snomed.info/sct','Salmonella IIIa 41:z4,z23:- (organism)','404427004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404428009','404428009','http://snomed.info/sct','Salmonella IIIa 41:z4,z24:- (organism)','404428009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404429001','404429001','http://snomed.info/sct','Salmonella IIIa 41:z4,z32:- (organism)','404429001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404436000','404436000','http://snomed.info/sct','Salmonella Melbourne (organism)','404436000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404437009','404437009','http://snomed.info/sct','Salmonella IIIb 42:(k):z35 (organism)','404437009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404438004','404438004','http://snomed.info/sct','Salmonella IIIa 42:g,z51:- (organism)','404438004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404439007','404439007','http://snomed.info/sct','Salmonella IIIb 42:k:z (organism)','404439007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404440009','404440009','http://snomed.info/sct','Salmonella IIIb 42:l,v:1,5,7 (organism)','404440009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404441008','404441008','http://snomed.info/sct','Salmonella IIIb 42:l,v:e,n,x,z15 (organism)','404441008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404442001','404442001','http://snomed.info/sct','Salmonella IIIb 42:l,v:z (organism)','404442001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404443006','404443006','http://snomed.info/sct','Salmonella IIIb 42:l,v:z53 (organism)','404443006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404444000','404444000','http://snomed.info/sct','Salmonella IIIa 42:r:- (organism)','404444000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404445004','404445004','http://snomed.info/sct','Salmonella IIIb 42:r:z (organism)','404445004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404446003','404446003','http://snomed.info/sct','Salmonella IIIb 42:r:z53 (organism)','404446003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404447007','404447007','http://snomed.info/sct','Salmonella IIIb 42:z10:z (organism)','404447007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404448002','404448002','http://snomed.info/sct','Salmonella IIIb 42:z10:z35 (organism)','404448002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404449005','404449005','http://snomed.info/sct','Salmonella IIIa 42:z4,z23:- (organism)','404449005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404450005','404450005','http://snomed.info/sct','Salmonella IIIa 42:z4,z24:- (organism)','404450005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404451009','404451009','http://snomed.info/sct','Salmonella IIIb 42:z52:z (organism)','404451009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404458003','404458003','http://snomed.info/sct','Salmonella IIIb 43:k:z (organism)','404458003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404459006','404459006','http://snomed.info/sct','Salmonella IIIb 43:l,v:z53 (organism)','404459006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404460001','404460001','http://snomed.info/sct','Salmonella IIIb 43:r:e,n,x,z15 (organism)','404460001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404461002','404461002','http://snomed.info/sct','Salmonella IIIb 43:r:z (organism)','404461002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404462009','404462009','http://snomed.info/sct','Salmonella IIIb 43:r:z53 (organism)','404462009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404463004','404463004','http://snomed.info/sct','Salmonella IIIa 43:z36:- (organism)','404463004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404464005','404464005','http://snomed.info/sct','Salmonella IIIa 43:z4,z23:- (organism)','404464005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404465006','404465006','http://snomed.info/sct','Salmonella IIIb 43:z52:z53 (organism)','404465006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404466007','404466007','http://snomed.info/sct','Salmonella IV 43:z29:- (organism)','404466007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404474008','404474008','http://snomed.info/sct','Salmonella IIIa 44:z4,z23,z32:- (organism)','404474008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404475009','404475009','http://snomed.info/sct','Salmonella IIIa 44:z4,z24:- (organism)','404475009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404476005','404476005','http://snomed.info/sct','Salmonella IIIa 44:z4,z32:- (organism)','404476005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404477001','404477001','http://snomed.info/sct','Salmonella II 44:z4,z23:- (organism)','404477001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404478006','404478006','http://snomed.info/sct','Salmonella IIIa 44:z4,z23:- (organism)','404478006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404479003','404479003','http://snomed.info/sct','Salmonella IV 44:z4,z23:- (organism)','404479003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404480000','404480000','http://snomed.info/sct','Salmonella Kua (organism)','404480000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404481001','404481001','http://snomed.info/sct','Salmonella Zinder (organism)','404481001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404488007','404488007','http://snomed.info/sct','Salmonella IIIa 45:z4,z24:- (organism)','404488007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404489004','404489004','http://snomed.info/sct','Salmonella IIIa 45:z4,z32:- (organism)','404489004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404528006','404528006','http://snomed.info/sct','Salmonella IIIb 47:c:1,5,7 (organism)','404528006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404529003','404529003','http://snomed.info/sct','Salmonella IIIb 47:c:e,n,x,z15:(z15) (organism)','404529003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404530008','404530008','http://snomed.info/sct','Salmonella IIIb 47:c:z (organism)','404530008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404531007','404531007','http://snomed.info/sct','Salmonella IIIb 47:c:z35 (organism)','404531007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404532000','404532000','http://snomed.info/sct','Salmonella IIIb 47:i:e,n,x,z15 (organism)','404532000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404533005','404533005','http://snomed.info/sct','Salmonella IIIb 47:i:z (organism)','404533005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404534004','404534004','http://snomed.info/sct','Salmonella IIIb 47:i:z35 (organism)','404534004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404535003','404535003','http://snomed.info/sct','Salmonella IIIb 47:i:z53:(z57) (organism)','404535003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404536002','404536002','http://snomed.info/sct','Salmonella IIIb 47:k:1,5,7 (organism)','404536002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404537006','404537006','http://snomed.info/sct','Salmonella IIIb 47:k:e,n,x,z15 (organism)','404537006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404538001','404538001','http://snomed.info/sct','Salmonella IIIb 47:k:z (organism)','404538001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404539009','404539009','http://snomed.info/sct','Salmonella IIIb 47:k:z35 (organism)','404539009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404540006','404540006','http://snomed.info/sct','Salmonella IIIb 47:k:z53 (organism)','404540006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404541005','404541005','http://snomed.info/sct','Salmonella IIIb 47:l,v:1,5,(7) (organism)','404541005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404542003','404542003','http://snomed.info/sct','Salmonella IIIb 47:l,v:e,n,x,z15 (organism)','404542003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404543008','404543008','http://snomed.info/sct','Salmonella IIIb47:l,v:z35 (organism)','404543008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404544002','404544002','http://snomed.info/sct','Salmonella IIIb 47:l,v:z53 (organism)','404544002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404545001','404545001','http://snomed.info/sct','Salmonella IIIb 47:l,v:z57 (organism)','404545001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404546000','404546000','http://snomed.info/sct','Salmonella IIIa 47:r:- (organism)','404546000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404547009','404547009','http://snomed.info/sct','Salmonella IIIb 47:r:1,5,7 (organism)','404547009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404548004','404548004','http://snomed.info/sct','Salmonella IIIb 47:r:z (organism)','404548004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404549007','404549007','http://snomed.info/sct','Salmonella IIIb 47:r:z35 (organism)','404549007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404550007','404550007','http://snomed.info/sct','Salmonella IIIb 47:r:z53:(z60) (organism)','404550007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404551006','404551006','http://snomed.info/sct','Salmonella IIIb 47:z10:1,5,7 (organism)','404551006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404552004','404552004','http://snomed.info/sct','Salmonella IIIb 47:z10:z (organism)','404552004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404553009','404553009','http://snomed.info/sct','Salmonella IIIb 47:z10:z35 (organism)','404553009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404554003','404554003','http://snomed.info/sct','Salmonella IIIb 47:z52:1,5,7 (organism)','404554003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404555002','404555002','http://snomed.info/sct','Salmonella IIIb 47:z52:e,n,x,z15 (organism)','404555002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404556001','404556001','http://snomed.info/sct','Salmonella IIIb 47:z52:z (organism)','404556001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404557005','404557005','http://snomed.info/sct','Salmonella IIIb 47:z52:z35 (organism)','404557005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404567000','404567000','http://snomed.info/sct','Salmonella IIIa 48:z4,z24:- (organism)','404567000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404568005','404568005','http://snomed.info/sct','Salmonella IIIb 48:(k):z53 (organism)','404568005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404569002','404569002','http://snomed.info/sct','Salmonella IIIb 48:c:z (organism)','404569002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404570001','404570001','http://snomed.info/sct','Salmonella IIIb 48:i:z (organism)','404570001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404571002','404571002','http://snomed.info/sct','Salmonella IIIb 48:i:z35:(z57) (organism)','404571002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404572009','404572009','http://snomed.info/sct','Salmonella IIIb 48:i:z53 (organism)','404572009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404573004','404573004','http://snomed.info/sct','Salmonella IIIb 48:k:z (organism)','404573004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404574005','404574005','http://snomed.info/sct','Salmonella IIIb 48:k:z35 (organism)','404574005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404575006','404575006','http://snomed.info/sct','Salmonella IIIb 48:k:z53 (organism)','404575006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404576007','404576007','http://snomed.info/sct','Salmonella IIIb 48:l,v:1,5,(7) (organism)','404576007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404577003','404577003','http://snomed.info/sct','Salmonella IIIb 48:l,v:z (organism)','404577003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404578008','404578008','http://snomed.info/sct','Salmonella IIIb 48:r:e,n,x,z15 (organism)','404578008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404579000','404579000','http://snomed.info/sct','Salmonella IIIb 48:r:z (organism)','404579000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404580002','404580002','http://snomed.info/sct','Salmonella IIIb 48:z10:e,n,x,z15 (organism)','404580002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404581003','404581003','http://snomed.info/sct','Salmonella IIIb 48:z10:z (organism)','404581003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404582005','404582005','http://snomed.info/sct','Salmonella IIIa 48:z36:- (organism)','404582005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404583000','404583000','http://snomed.info/sct','Salmonella IIIa 48:z4,z23,z32:- (organism)','404583000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404584006','404584006','http://snomed.info/sct','Salmonella IIIa 48:z4,z23:- (organism)','404584006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404585007','404585007','http://snomed.info/sct','Salmonella IIIb 48:z52:e,n,x,z15 (organism)','404585007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404586008','404586008','http://snomed.info/sct','Salmonella IIIb 48:z52:z (organism)','404586008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404587004','404587004','http://snomed.info/sct','Salmonella IIIa 48:g,z51:- (organism)','404587004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404595000','404595000','http://snomed.info/sct','Salmonella II 50:m,t:z6:z42 (organism)','404595000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404596004','404596004','http://snomed.info/sct','Salmonella II 50:z42:1,7 (organism)','404596004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404597008','404597008','http://snomed.info/sct','Salmonella II 50:z:e,n,x (organism)','404597008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404598003','404598003','http://snomed.info/sct','Salmonella IIIb 50:(k):z (organism)','404598003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404599006','404599006','http://snomed.info/sct','Salmonella IIIb 50:(k):z35 (organism)','404599006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404600009','404600009','http://snomed.info/sct','Salmonella IIIb 50:i:1,5,7 (organism)','404600009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404601008','404601008','http://snomed.info/sct','Salmonella IIIb 50:i:e,n,x,z15 (organism)','404601008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404602001','404602001','http://snomed.info/sct','Salmonella IIIb 50:i:z (organism)','404602001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404603006','404603006','http://snomed.info/sct','Salmonella IIIb 50:k:1,5,7 (organism)','404603006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404604000','404604000','http://snomed.info/sct','Salmonella IIIb 50:k:z (organism)','404604000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404605004','404605004','http://snomed.info/sct','Salmonella IIIb 50:k:z35 (organism)','404605004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404606003','404606003','http://snomed.info/sct','Salmonella IIIb 50:k:z53 (organism)','404606003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404607007','404607007','http://snomed.info/sct','Salmonella IIIb 50:l,v:e,n,x,z15 (organism)','404607007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404608002','404608002','http://snomed.info/sct','Salmonella IIIb 50:l,v:z (organism)','404608002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404609005','404609005','http://snomed.info/sct','Salmonella IIIb 50:l,v:z35 (organism)','404609005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404610000','404610000','http://snomed.info/sct','Salmonella IIIb 50:r:1,5,(7) (organism)','404610000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404611001','404611001','http://snomed.info/sct','Salmonella IIIb 50:r:e,n,x,z15 (organism)','404611001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404612008','404612008','http://snomed.info/sct','Salmonella IIIb 50:r:z (organism)','404612008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404613003','404613003','http://snomed.info/sct','Salmonella IIIb 50:r:z35 (organism)','404613003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404614009','404614009','http://snomed.info/sct','Salmonella IIIb 50:r:z53 (organism)','404614009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404615005','404615005','http://snomed.info/sct','Salmonella IIIb 50:z10:z53 (organism)','404615005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404617002','404617002','http://snomed.info/sct','Salmonella IIIa 50:z29:- (organism)','404617002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404618007','404618007','http://snomed.info/sct','Salmonella IIIa 50:z36:- (organism)','404618007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404619004','404619004','http://snomed.info/sct','Salmonella IIIa 50:z4,z23,z32:- (organism)','404619004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404620005','404620005','http://snomed.info/sct','Salmonella IIIb 50:z52:1,5,7 (organism)','404620005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404622002','404622002','http://snomed.info/sct','Salmonella IIIb 50:z52:z35 (organism)','404622002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404623007','404623007','http://snomed.info/sct','Salmonella IV 50:z4,z23:- (organism)','404623007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_404624001','404624001','http://snomed.info/sct','Salmonella IIIa 50:z4,z23:- (organism)','404624001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_40465000','40465000','http://snomed.info/sct','Salmonella Surat (organism)','40465000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_40618004','40618004','http://snomed.info/sct','Salmonella Visby (organism)','40618004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_40637008','40637008','http://snomed.info/sct','Salmonella Ontario (organism)','40637008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_40645003','40645003','http://snomed.info/sct','Salmonella Louisiana (organism)','40645003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_40681000','40681000','http://snomed.info/sct','Salmonella Goeteborg (organism)','40681000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_40685009','40685009','http://snomed.info/sct','Salmonella Demerara (organism)','40685009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_40697005','40697005','http://snomed.info/sct','Salmonella Berta (organism)','40697005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_40703006','40703006','http://snomed.info/sct','Salmonella Geraldton (organism)','40703006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_40746009','40746009','http://snomed.info/sct','Salmonella IV Roterberg (organism)','40746009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_40821004','40821004','http://snomed.info/sct','Salmonella Nchanga (organism)','40821004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_40998003','40998003','http://snomed.info/sct','Salmonella Etterbeek (organism)','40998003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_41176000','41176000','http://snomed.info/sct','Salmonella Nigeria (organism)','41176000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_41227004','41227004','http://snomed.info/sct','Salmonella Tshiongwe (organism)','41227004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_41331008','41331008','http://snomed.info/sct','Salmonella Schleissheim (organism)','41331008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_4145004','4145004','http://snomed.info/sct','Salmonella Ohlstedt (organism)','4145004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_41467000','41467000','http://snomed.info/sct','Salmonella Sada (organism)','41467000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_41533007','41533007','http://snomed.info/sct','Salmonella Israel (organism)','41533007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_416057009','416057009','http://snomed.info/sct','Salmonella Choleraesuis var. Decatur (organism)','416057009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_41655009','41655009','http://snomed.info/sct','Salmonella II 6,14:k:(e,n,x) (organism)','41655009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_416641008','416641008','http://snomed.info/sct','Salmonella IIIa 53:z4,z24:- (organism)','416641008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_41677008','41677008','http://snomed.info/sct','Salmonella Fufu (organism)','41677008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_416828006','416828006','http://snomed.info/sct','Salmonella Saintemarie (organism)','416828006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_417210007','417210007','http://snomed.info/sct','Salmonella IIIb 16:k:e,n,x,z15 (organism)','417210007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_417454003','417454003','http://snomed.info/sct','Non-motile Salmonella (organism)','417454003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_417653002','417653002','http://snomed.info/sct','Salmonella Subterranea (organism)','417653002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_417719009','417719009','http://snomed.info/sct','Salmonella IIIa 53:z4,z23:- (organism)','417719009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_42016005','42016005','http://snomed.info/sct','Salmonella Volta (organism)','42016005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_42061009','42061009','http://snomed.info/sct','Salmonella Jaffna (organism)','42061009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_42173006','42173006','http://snomed.info/sct','Salmonella Bukuru (organism)','42173006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_42302007','42302007','http://snomed.info/sct','Salmonella Karamoja (organism)','42302007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_42355001','42355001','http://snomed.info/sct','Salmonella Loenga (organism)','42355001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_42391008','42391008','http://snomed.info/sct','Salmonella Vitkin (organism)','42391008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_42410007','42410007','http://snomed.info/sct','Salmonella Duisburg (organism)','42410007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_42485005','42485005','http://snomed.info/sct','Salmonella Bakau (organism)','42485005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_42597008','42597008','http://snomed.info/sct','Salmonella Gallen (organism)','42597008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_42614009','42614009','http://snomed.info/sct','Salmonella Uzaramo (organism)','42614009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_42615005','42615005','http://snomed.info/sct','Salmonella Toucra (organism)','42615005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_42648005','42648005','http://snomed.info/sct','Salmonella Shubra (organism)','42648005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_4267007','4267007','http://snomed.info/sct','Salmonella Stourbridge (organism)','4267007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_42675003','42675003','http://snomed.info/sct','Salmonella Gustavia (organism)','42675003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_42709001','42709001','http://snomed.info/sct','Salmonella Mikawasima (organism)','42709001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_42715001','42715001','http://snomed.info/sct','Salmonella Perth (organism)','42715001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_42781000','42781000','http://snomed.info/sct','Salmonella Yaounde (organism)','42781000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_42816009','42816009','http://snomed.info/sct','Salmonella Labadi (organism)','42816009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_42921006','42921006','http://snomed.info/sct','Salmonella Mountpleasant (organism)','42921006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_42971009','42971009','http://snomed.info/sct','Salmonella Dougi (organism)','42971009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_42992009','42992009','http://snomed.info/sct','Salmonella II 1,13,23:g,m,s,t:1,5 (organism)','42992009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_43078007','43078007','http://snomed.info/sct','Salmonella Paris (organism)','43078007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_43109001','43109001','http://snomed.info/sct','Salmonella Pasing (organism)','43109001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_4311001','4311001','http://snomed.info/sct','Salmonella Coleypark (organism)','4311001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_43182007','43182007','http://snomed.info/sct','Salmonella Skansen (organism)','43182007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_43352009','43352009','http://snomed.info/sct','Salmonella Mathura (organism)','43352009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_43409005','43409005','http://snomed.info/sct','Salmonella Massakory (organism)','43409005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_43551001','43551001','http://snomed.info/sct','Salmonella Naware (organism)','43551001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_43575001','43575001','http://snomed.info/sct','Salmonella Bahrenfeld (organism)','43575001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_43587008','43587008','http://snomed.info/sct','Salmonella Madison (organism)','43587008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_4361005','4361005','http://snomed.info/sct','Salmonella Thompson (organism)','4361005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_43637009','43637009','http://snomed.info/sct','Salmonella II 9,12:a:z39 (organism)','43637009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_43640009','43640009','http://snomed.info/sct','Salmonella Pakistan (organism)','43640009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_43662009','43662009','http://snomed.info/sct','Salmonella Tafo (organism)','43662009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_43833005','43833005','http://snomed.info/sct','Salmonella Fallowfield (organism)','43833005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_43942004','43942004','http://snomed.info/sct','Salmonella Koenigstuhl (organism)','43942004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_44010000','44010000','http://snomed.info/sct','Salmonella Djakarta (organism)','44010000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_44012008','44012008','http://snomed.info/sct','Salmonella Faji (organism)','44012008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_44109007','44109007','http://snomed.info/sct','Salmonella Diourbel (organism)','44109007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_441713006','441713006','http://snomed.info/sct','Salmonella enterica subspecies enterica serovar 6,7:b:- (organism)','441713006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_441745001','441745001','http://snomed.info/sct','Salmonella enterica subspecies enterica serovar 4,[5],12:b:- (organism)','441745001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_441800005','441800005','http://snomed.info/sct','Salmonella enterica subspecies enterica serovar 4,[5],12:i:- (organism)','441800005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_441840004','441840004','http://snomed.info/sct','Salmonella enterica subspecies enterica serovar 4,5,12:e,h:- (organism)','441840004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_441843002','441843002','http://snomed.info/sct','Salmonella enterica subspecies enterica serovar 4,[5],12:d:- (organism)','441843002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_441853001','441853001','http://snomed.info/sct','Salmonella enterica subspecies enterica serovar 6,7:k:- (organism)','441853001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_441860007','441860007','http://snomed.info/sct','Salmonella enterica subspecies enterica serovar 9,12:l,z28:- (organism)','441860007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_441896006','441896006','http://snomed.info/sct','Salmonella enterica subspecies enterica serovar 4,5,12:b:- (organism)','441896006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_441926004','441926004','http://snomed.info/sct','Salmonella enterica subspecies enterica serovar 6,7:y:- (organism)','441926004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_441979009','441979009','http://snomed.info/sct','Salmonella enterica subspecies enterica serovar 9,12:-:1,5 (organism)','441979009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_442071007','442071007','http://snomed.info/sct','Salmonella enterica subspecies enterica serovar 4,12:i:- (organism)','442071007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_442103008','442103008','http://snomed.info/sct','Salmonella enterica subspecies enterica serovar 6,7:-:1,5 (organism)','442103008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_442104002','442104002','http://snomed.info/sct','Salmonella enterica subspecies enterica serovar 3,10:-:1,6 (organism)','442104002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_442106000','442106000','http://snomed.info/sct','Salmonella enterica subspecies enterica serovar 13,23:z:- (organism)','442106000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_442114006','442114006','http://snomed.info/sct','Salmonella enterica subspecies enterica serovar 6,7:-:1,2 (organism)','442114006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_442115007','442115007','http://snomed.info/sct','Salmonella enterica subspecies enterica serovar 6,7:-:e,n,z15 (organism)','442115007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_442122004','442122004','http://snomed.info/sct','Salmonella enterica subspecies enterica serovar 3,15:-:1,6 (organism)','442122004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_442153002','442153002','http://snomed.info/sct','Salmonella enterica subspecies enterica serovar 9,12:-:1,7 (organism)','442153002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_442161007','442161007','http://snomed.info/sct','Salmonella enterica subspecies enterica serovar 6,8:-:1,2 (organism)','442161007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_442369002','442369002','http://snomed.info/sct','Salmonella enterica subspecies enterica serovar 4,[5],12:-:1,7 (organism)','442369002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_442455001','442455001','http://snomed.info/sct','Salmonella enterica subspecies enterica serovar 4,5,12:i:- (organism)','442455001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_44451005','44451005','http://snomed.info/sct','Salmonella Roodepoort (organism)','44451005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_44580003','44580003','http://snomed.info/sct','Salmonella India (organism)','44580003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_44629007','44629007','http://snomed.info/sct','Salmonella II 57:g,m,s,t:z42 (organism)','44629007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_44768008','44768008','http://snomed.info/sct','Salmonella Putten (organism)','44768008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_44834009','44834009','http://snomed.info/sct','Salmonella Korovi (organism)','44834009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_44844006','44844006','http://snomed.info/sct','Salmonella Zerifin (organism)','44844006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_4492008','4492008','http://snomed.info/sct','Salmonella Groenekan (organism)','4492008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_44942009','44942009','http://snomed.info/sct','Salmonella Trotha (organism)','44942009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_44994006','44994006','http://snomed.info/sct','Salmonella Millesi (organism)','44994006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_45054004','45054004','http://snomed.info/sct','Salmonella II 43:z29:z42 (organism)','45054004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_45091005','45091005','http://snomed.info/sct','Salmonella Enschede (organism)','45091005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_45264001','45264001','http://snomed.info/sct','Salmonella Jubilee (organism)','45264001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_45488002','45488002','http://snomed.info/sct','Salmonella Magwa (organism)','45488002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_45512008','45512008','http://snomed.info/sct','Salmonella Hindmarsh (organism)','45512008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_45548005','45548005','http://snomed.info/sct','Salmonella Corvallis (organism)','45548005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_45578001','45578001','http://snomed.info/sct','Salmonella Tananarive (organism)','45578001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_45645001','45645001','http://snomed.info/sct','Salmonella Napoli (organism)','45645001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_45651006','45651006','http://snomed.info/sct','Salmonella Schwarzengrund (organism)','45651006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_45714007','45714007','http://snomed.info/sct','Salmonella Nordufer (organism)','45714007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_45802005','45802005','http://snomed.info/sct','Salmonella Tejas (organism)','45802005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_45866006','45866006','http://snomed.info/sct','Salmonella Butare (organism)','45866006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_45938004','45938004','http://snomed.info/sct','Salmonella Saloniki (organism)','45938004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_45958003','45958003','http://snomed.info/sct','Salmonella Blukwa (organism)','45958003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_45998001','45998001','http://snomed.info/sct','Salmonella Maron (organism)','45998001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_4614004','4614004','http://snomed.info/sct','Salmonella Galiema (organism)','4614004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_46180006','46180006','http://snomed.info/sct','Salmonella Brezany (organism)','46180006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_46189007','46189007','http://snomed.info/sct','Salmonella Camberene (organism)','46189007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_46292001','46292001','http://snomed.info/sct','Salmonella Catanzaro (organism)','46292001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_46323004','46323004','http://snomed.info/sct','Salmonella Shikmonah (organism)','46323004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_46340008','46340008','http://snomed.info/sct','Salmonella IV 44:z36,(z38):- (organism)','46340008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_46375008','46375008','http://snomed.info/sct','Salmonella Utrecht (organism)','46375008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_46399008','46399008','http://snomed.info/sct','Salmonella Apapa (organism)','46399008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_46438002','46438002','http://snomed.info/sct','Salmonella II 43:d:z42 (organism)','46438002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_46474006','46474006','http://snomed.info/sct','Salmonella II 43:d:z39 (organism)','46474006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_46614007','46614007','http://snomed.info/sct','Salmonella Ona (organism)','46614007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_46667007','46667007','http://snomed.info/sct','Salmonella Oranienburg (organism)','46667007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_46735003','46735003','http://snomed.info/sct','Salmonella Obogu (organism)','46735003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_46765008','46765008','http://snomed.info/sct','Salmonella Nanergou (organism)','46765008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_46793007','46793007','http://snomed.info/sct','Salmonella Landau (organism)','46793007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_46818008','46818008','http://snomed.info/sct','Salmonella II 1,6,14:k:z6,z42 (organism)','46818008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_46867005','46867005','http://snomed.info/sct','Salmonella Jericho (organism)','46867005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_4687003','4687003','http://snomed.info/sct','Salmonella Essen (organism)','4687003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_46953000','46953000','http://snomed.info/sct','Salmonella Klouto (organism)','46953000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_47008007','47008007','http://snomed.info/sct','Salmonella II 1,40:g,t:z42 (organism)','47008007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_47039009','47039009','http://snomed.info/sct','Salmonella Jodhpur (organism)','47039009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_47143006','47143006','http://snomed.info/sct','Salmonella Benguella (organism)','47143006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_47223005','47223005','http://snomed.info/sct','Salmonella Kassberg (organism)','47223005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_47229009','47229009','http://snomed.info/sct','Salmonella Altona (organism)','47229009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_47420006','47420006','http://snomed.info/sct','Salmonella Bere (organism)','47420006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_47441000','47441000','http://snomed.info/sct','Salmonella Stanleyville (organism)','47441000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_47508001','47508001','http://snomed.info/sct','Salmonella Johannesburg (organism)','47508001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_47569006','47569006','http://snomed.info/sct','Salmonella Clackamas (organism)','47569006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_47579008','47579008','http://snomed.info/sct','Salmonella Brazos (organism)','47579008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_47679004','47679004','http://snomed.info/sct','Salmonella Fortlamy (organism)','47679004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_47685006','47685006','http://snomed.info/sct','Salmonella Leeuwarden (organism)','47685006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_47688008','47688008','http://snomed.info/sct','Salmonella Telaviv (organism)','47688008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_4769009','4769009','http://snomed.info/sct','Salmonella Seremban (organism)','4769009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_47732006','47732006','http://snomed.info/sct','Salmonella Kano (organism)','47732006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_47767006','47767006','http://snomed.info/sct','Salmonella Overvecht (organism)','47767006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_47887000','47887000','http://snomed.info/sct','Salmonella II 17:g,t:z39 (organism)','47887000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_4794005','4794005','http://snomed.info/sct','Salmonella Jedburgh (organism)','4794005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_47991006','47991006','http://snomed.info/sct','Salmonella II 35:g,m,s,t:- (organism)','47991006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_48020001','48020001','http://snomed.info/sct','Salmonella Moscow (organism)','48020001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_48054000','48054000','http://snomed.info/sct','Salmonella Narashino (organism)','48054000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_48058002','48058002','http://snomed.info/sct','Salmonella Rostock (organism)','48058002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_48126005','48126005','http://snomed.info/sct','Salmonella Quinhon (organism)','48126005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_48229006','48229006','http://snomed.info/sct','Salmonella Meekatharra (organism)','48229006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_48254006','48254006','http://snomed.info/sct','Salmonella II 6,7:a:z6 (organism)','48254006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_48339002','48339002','http://snomed.info/sct','Salmonella Vinohrady (organism)','48339002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_48365003','48365003','http://snomed.info/sct','Salmonella II 30 c:z39 (organism)','48365003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_48465004','48465004','http://snomed.info/sct','Salmonella Nyborg (organism)','48465004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_48578002','48578002','http://snomed.info/sct','Salmonella Ablogame (organism)','48578002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_48584004','48584004','http://snomed.info/sct','Salmonella Akanji (organism)','48584004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_48642004','48642004','http://snomed.info/sct','Salmonella II 1,13,23:g,[s],t:z42 (organism)','48642004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_48652000','48652000','http://snomed.info/sct','Salmonella Agodi (organism)','48652000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_4867001','4867001','http://snomed.info/sct','Salmonella Malakal (organism)','4867001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_4868006','4868006','http://snomed.info/sct','Salmonella Nottingham (organism)','4868006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_48703005','48703005','http://snomed.info/sct','Salmonella II 6,8:y:1,6:z42 (organism)','48703005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_48704004','48704004','http://snomed.info/sct','Salmonella Ceyco (organism)','48704004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_48823000','48823000','http://snomed.info/sct','Salmonella Carno (organism)','48823000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_48831005','48831005','http://snomed.info/sct','Salmonella Naestved (organism)','48831005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_48884009','48884009','http://snomed.info/sct','Salmonella Weslaco (organism)','48884009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_48932004','48932004','http://snomed.info/sct','Salmonella Kandla (organism)','48932004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_48936001','48936001','http://snomed.info/sct','Salmonella II 18:y:e,n,x,z15 (organism)','48936001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_48950006','48950006','http://snomed.info/sct','Salmonella II 9,12:m,t:e,n,x (organism)','48950006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_49029009','49029009','http://snomed.info/sct','Salmonella Epicrates (organism)','49029009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_49079007','49079007','http://snomed.info/sct','Salmonella Michigan (organism)','49079007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_49114009','49114009','http://snomed.info/sct','Salmonella Vogan (organism)','49114009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_4918004','4918004','http://snomed.info/sct','Salmonella Hiduddify (organism)','4918004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_49270001','49270001','http://snomed.info/sct','Salmonella Jalisco (organism)','49270001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_49297008','49297008','http://snomed.info/sct','Salmonella Ferruch (organism)','49297008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_49392000','49392000','http://snomed.info/sct','Salmonella Somone (organism)','49392000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_49452001','49452001','http://snomed.info/sct','Salmonella Cotham (organism)','49452001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_49491006','49491006','http://snomed.info/sct','Salmonella Hadar (organism)','49491006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_49603005','49603005','http://snomed.info/sct','Salmonella Assinie (organism)','49603005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_49666004','49666004','http://snomed.info/sct','Salmonella Brazil (organism)','49666004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_49721001','49721001','http://snomed.info/sct','Salmonella Alabama (organism)','49721001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_49831004','49831004','http://snomed.info/sct','Salmonella Deversoir (organism)','49831004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_50027009','50027009','http://snomed.info/sct','Salmonella Soahanina (organism)','50027009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_50111004','50111004','http://snomed.info/sct','Salmonella Alagbon (organism)','50111004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_50113001','50113001','http://snomed.info/sct','Salmonella Accra (organism)','50113001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_50136005','50136005','http://snomed.info/sct','Salmonella Typhimurium (organism)','50136005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_50161008','50161008','http://snomed.info/sct','Salmonella II 53:d:z42 (organism)','50161008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_50273002','50273002','http://snomed.info/sct','Salmonella Dallgow (organism)','50273002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_50351007','50351007','http://snomed.info/sct','Salmonella Memphis (organism)','50351007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_50428006','50428006','http://snomed.info/sct','Salmonella Urbana (organism)','50428006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_50772008','50772008','http://snomed.info/sct','Salmonella Dan (organism)','50772008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_50785006','50785006','http://snomed.info/sct','Salmonella Alger (organism)','50785006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_50823007','50823007','http://snomed.info/sct','Salmonella Akuafo (organism)','50823007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_50831002','50831002','http://snomed.info/sct','Salmonella II 40:m,t:z39 (organism)','50831002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_50853000','50853000','http://snomed.info/sct','Salmonella Goulfey (organism)','50853000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_509004','509004','http://snomed.info/sct','Salmonella Odozi (organism)','509004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_51008005','51008005','http://snomed.info/sct','Salmonella Kingston (organism)','51008005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_51024006','51024006','http://snomed.info/sct','Salmonella Sljeme (organism)','51024006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_51128007','51128007','http://snomed.info/sct','Salmonella Friedenau (organism)','51128007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_51130009','51130009','http://snomed.info/sct','Salmonella Nakuru (organism)','51130009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_51190006','51190006','http://snomed.info/sct','Salmonella Glasgow (organism)','51190006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_51196000','51196000','http://snomed.info/sct','Salmonella Bonariensis (organism)','51196000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_51210001','51210001','http://snomed.info/sct','Salmonella Banalia (organism)','51210001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_51312006','51312006','http://snomed.info/sct','Salmonella Leipzig (organism)','51312006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_51446008','51446008','http://snomed.info/sct','Salmonella Apeyeme (organism)','51446008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_51480006','51480006','http://snomed.info/sct','Salmonella Westeinde (organism)','51480006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_51488004','51488004','http://snomed.info/sct','Salmonella Abortusequi (organism)','51488004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_51518009','51518009','http://snomed.info/sct','Salmonella Giessen (organism)','51518009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_51584000','51584000','http://snomed.info/sct','Salmonella Stormont (organism)','51584000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_51705004','51705004','http://snomed.info/sct','Salmonella Eppendorf (organism)','51705004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_51706003','51706003','http://snomed.info/sct','Salmonella Lansing (organism)','51706003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_51716006','51716006','http://snomed.info/sct','Salmonella Nyeko (organism)','51716006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_51799003','51799003','http://snomed.info/sct','Salmonella Overschie (organism)','51799003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_51820003','51820003','http://snomed.info/sct','Salmonella Lechler (organism)','51820003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_51825008','51825008','http://snomed.info/sct','Salmonella Oritamerin (organism)','51825008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_51944002','51944002','http://snomed.info/sct','Salmonella IV 18:z36,z38,- (organism)','51944002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_51985007','51985007','http://snomed.info/sct','Salmonella Rissen (organism)','51985007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_52004009','52004009','http://snomed.info/sct','Salmonella II 43:d:e,n,x,z15 (organism)','52004009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_52204003','52204003','http://snomed.info/sct','Salmonella Romanby (organism)','52204003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_52237001','52237001','http://snomed.info/sct','Salmonella Osnabrueck (organism)','52237001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_52277009','52277009','http://snomed.info/sct','Salmonella Ikeja (organism)','52277009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_52294006','52294006','http://snomed.info/sct','Salmonella II 58:d:z6 (organism)','52294006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_52400005','52400005','http://snomed.info/sct','Salmonella Idikan (organism)','52400005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_52488001','52488001','http://snomed.info/sct','Salmonella Nowawes (organism)','52488001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_52492008','52492008','http://snomed.info/sct','Salmonella Kisangani (organism)','52492008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_52511000','52511000','http://snomed.info/sct','Salmonella Amersfoort (organism)','52511000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_52648003','52648003','http://snomed.info/sct','Salmonella Tarshyne (organism)','52648003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_52730003','52730003','http://snomed.info/sct','Salmonella Typhisuis (organism)','52730003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_52941007','52941007','http://snomed.info/sct','Salmonella Plymouth (organism)','52941007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_52981000','52981000','http://snomed.info/sct','Salmonella Camberwell (organism)','52981000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_52995002','52995002','http://snomed.info/sct','Salmonella Gatineau (organism)','52995002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_53230005','53230005','http://snomed.info/sct','Salmonella Goettingen (organism)','53230005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_5325008','5325008','http://snomed.info/sct','Salmonella Menden (organism)','5325008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_53285009','53285009','http://snomed.info/sct','Salmonella Nessziona (organism)','53285009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_53308007','53308007','http://snomed.info/sct','Salmonella Bahati (organism)','53308007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_53391009','53391009','http://snomed.info/sct','Salmonella Fass (organism)','53391009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_53459007','53459007','http://snomed.info/sct','Salmonella Kalumburu (organism)','53459007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_53477002','53477002','http://snomed.info/sct','Salmonella Shoreditch (organism)','53477002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_53501002','53501002','http://snomed.info/sct','Salmonella II 13,23:k:z41 (organism)','53501002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_53510005','53510005','http://snomed.info/sct','Salmonella Orlando (organism)','53510005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_53653001','53653001','http://snomed.info/sct','Salmonella II 6,7:b:z39 (organism)','53653001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_53656009','53656009','http://snomed.info/sct','Salmonella Leiden (organism)','53656009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_53684004','53684004','http://snomed.info/sct','Salmonella Blockley (organism)','53684004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_5369001','5369001','http://snomed.info/sct','Salmonella Ezra (organism)','5369001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_5372008','5372008','http://snomed.info/sct','Salmonella Eko (organism)','5372008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_53723000','53723000','http://snomed.info/sct','Salmonella Vellore (organism)','53723000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_53814008','53814008','http://snomed.info/sct','Salmonella Emek (organism)','53814008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_53903009','53903009','http://snomed.info/sct','Salmonella Barmbek (organism)','53903009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_54021004','54021004','http://snomed.info/sct','Salmonella Lode (organism)','54021004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_541005','541005','http://snomed.info/sct','Salmonella Ahuza (organism)','541005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_54131009','54131009','http://snomed.info/sct','Salmonella Praha (organism)','54131009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_54227005','54227005','http://snomed.info/sct','Salmonella Dadzie (organism)','54227005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_54260008','54260008','http://snomed.info/sct','Salmonella Redhill (organism)','54260008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_54295006','54295006','http://snomed.info/sct','Salmonella Lawra (organism)','54295006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_54309009','54309009','http://snomed.info/sct','Salmonella Ebrie (organism)','54309009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_54354005','54354005','http://snomed.info/sct','Salmonella Kaapstad (organism)','54354005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_54469007','54469007','http://snomed.info/sct','Salmonella Schwerin (organism)','54469007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_54528001','54528001','http://snomed.info/sct','Salmonella Yeerongpilly (organism)','54528001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_54551001','54551001','http://snomed.info/sct','Salmonella II 6,7:z:z39 (organism)','54551001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_5461002','5461002','http://snomed.info/sct','Salmonella Chester (organism)','5461002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_54693005','54693005','http://snomed.info/sct','Salmonella Lerum (organism)','54693005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_54697006','54697006','http://snomed.info/sct','Salmonella Techimani (organism)','54697006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_54749003','54749003','http://snomed.info/sct','Salmonella Farcha (organism)','54749003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_54836002','54836002','http://snomed.info/sct','Salmonella Wedding (organism)','54836002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_54984007','54984007','http://snomed.info/sct','Salmonella Fischerkietz (organism)','54984007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_55107007','55107007','http://snomed.info/sct','Salmonella Malaysia (organism)','55107007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_55144007','55144007','http://snomed.info/sct','Salmonella Rumford (organism)','55144007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_55246000','55246000','http://snomed.info/sct','Salmonella Echa (organism)','55246000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_55274005','55274005','http://snomed.info/sct','Salmonella Edinburg (organism)','55274005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_55290005','55290005','http://snomed.info/sct','Salmonella Bonn (organism)','55290005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_55395003','55395003','http://snomed.info/sct','Salmonella Saarbruecken (organism)','55395003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_55453006','55453006','http://snomed.info/sct','Salmonella II 47:z:e,n,x,z15 (organism)','55453006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_55485009','55485009','http://snomed.info/sct','Salmonella Mishmarhaemek (organism)','55485009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_55505009','55505009','http://snomed.info/sct','Salmonella Sheffield (organism)','55505009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_55580001','55580001','http://snomed.info/sct','Salmonella Daytona (organism)','55580001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_55653004','55653004','http://snomed.info/sct','Salmonella Ipeko (organism)','55653004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_55928004','55928004','http://snomed.info/sct','Salmonella II 47:g,t:e,n,x (organism)','55928004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_55932005','55932005','http://snomed.info/sct','Salmonella Cubana (organism)','55932005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_55975004','55975004','http://snomed.info/sct','Salmonella Cleveland (organism)','55975004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_56040008','56040008','http://snomed.info/sct','Salmonella Bietri (organism)','56040008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_56064009','56064009','http://snomed.info/sct','Salmonella Okatie (organism)','56064009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_56077000','56077000','http://snomed.info/sct','Salmonella Newport (organism)','56077000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_56088006','56088006','http://snomed.info/sct','Salmonella Eberswalde (organism)','56088006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_56093009','56093009','http://snomed.info/sct','Salmonella Winnipeg (organism)','56093009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_5610000','5610000','http://snomed.info/sct','Salmonella Azteca (organism)','5610000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_5612008','5612008','http://snomed.info/sct','Salmonella Enugu (organism)','5612008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_56122007','56122007','http://snomed.info/sct','Salmonella Ogbete (organism)','56122007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_56428001','56428001','http://snomed.info/sct','Salmonella Aflao (organism)','56428001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_56626006','56626006','http://snomed.info/sct','Salmonella Palime (organism)','56626006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_56632001','56632001','http://snomed.info/sct','Salmonella Durham (organism)','56632001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_56737002','56737002','http://snomed.info/sct','Salmonella Raus (organism)','56737002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_56929002','56929002','http://snomed.info/sct','Salmonella Assen (organism)','56929002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_56950006','56950006','http://snomed.info/sct','Salmonella II 48:k:e,n,x,z15 (organism)','56950006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_56955001','56955001','http://snomed.info/sct','Salmonella Westerstede (organism)','56955001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_57024000','57024000','http://snomed.info/sct','Salmonella Charlottenburg (organism)','57024000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_57053004','57053004','http://snomed.info/sct','Salmonella Saboya (organism)','57053004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_57072004','57072004','http://snomed.info/sct','Salmonella Solt (organism)','57072004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_57101009','57101009','http://snomed.info/sct','Salmonella Poona (organism)','57101009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_57116007','57116007','http://snomed.info/sct','Salmonella Africana (organism)','57116007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_57247005','57247005','http://snomed.info/sct','Salmonella II 45:z29:z42 (organism)','57247005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_57255003','57255003','http://snomed.info/sct','Salmonella Ago (organism)','57255003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_57322006','57322006','http://snomed.info/sct','Salmonella Aberdeen (organism)','57322006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_57389000','57389000','http://snomed.info/sct','Salmonella Basingstoke (organism)','57389000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_57428009','57428009','http://snomed.info/sct','Salmonella Campinense (organism)','57428009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_57475009','57475009','http://snomed.info/sct','Salmonella II 57:d:1,5 (organism)','57475009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_57506006','57506006','http://snomed.info/sct','Salmonella Bergedorf (organism)','57506006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_57508007','57508007','http://snomed.info/sct','Salmonella II 9,12:l,v:z39 (organism)','57508007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_57585007','57585007','http://snomed.info/sct','Salmonella Inverness (organism)','57585007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_57587004','57587004','http://snomed.info/sct','Salmonella Carnac (organism)','57587004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_57636007','57636007','http://snomed.info/sct','Salmonella II 1,9,12:z29:e,n,x (organism)','57636007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_57664002','57664002','http://snomed.info/sct','Salmonella Durban (organism)','57664002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_57683009','57683009','http://snomed.info/sct','Salmonella Rochdale (organism)','57683009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_5778005','5778005','http://snomed.info/sct','Salmonella Muguga (organism)','5778005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_57786005','57786005','http://snomed.info/sct','Salmonella Takoradi (organism)','57786005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_57804003','57804003','http://snomed.info/sct','Salmonella Fann (organism)','57804003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_57861008','57861008','http://snomed.info/sct','Salmonella Tambacounda (organism)','57861008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_57887008','57887008','http://snomed.info/sct','Salmonella IV 1,53:g,z51:- (organism)','57887008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_57924003','57924003','http://snomed.info/sct','Salmonella Oldenburg (organism)','57924003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_58006000','58006000','http://snomed.info/sct','Salmonella Carswell (organism)','58006000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_58041001','58041001','http://snomed.info/sct','Salmonella II 9,12:e,n,x:1,6 (organism)','58041001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_58045005','58045005','http://snomed.info/sct','Salmonella Hillegersberg (organism)','58045005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_58052007','58052007','http://snomed.info/sct','Salmonella Louga (organism)','58052007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_581003','581003','http://snomed.info/sct','Salmonella Canada (organism)','581003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_58134009','58134009','http://snomed.info/sct','Salmonella II 43:g,z62:e,n,x (organism)','58134009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_58146008','58146008','http://snomed.info/sct','Salmonella Yoff (organism)','58146008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_58215003','58215003','http://snomed.info/sct','Salmonella Machaga (organism)','58215003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_5837001','5837001','http://snomed.info/sct','Salmonella IV 40:z4,z24:- (organism)','5837001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_58393009','58393009','http://snomed.info/sct','Salmonella Yokoe (organism)','58393009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_5864000','5864000','http://snomed.info/sct','Salmonella Baildon (organism)','5864000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_58723002','58723002','http://snomed.info/sct','Salmonella Larochelle (organism)','58723002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_58761004','58761004','http://snomed.info/sct','Salmonella Victoriaborg (organism)','58761004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_58845009','58845009','http://snomed.info/sct','Salmonella Ilala (organism)','58845009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_58933004','58933004','http://snomed.info/sct','Salmonella Remete (organism)','58933004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_58946009','58946009','http://snomed.info/sct','Salmonella Kumasi (organism)','58946009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_58973005','58973005','http://snomed.info/sct','Salmonella Willemstad (organism)','58973005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_58979009','58979009','http://snomed.info/sct','Salmonella Wisbech (organism)','58979009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_5908004','5908004','http://snomed.info/sct','Salmonella Haelsingborg (organism)','5908004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_59099007','59099007','http://snomed.info/sct','Salmonella Menston (organism)','59099007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_59107001','59107001','http://snomed.info/sct','Salmonella Fluntern (organism)','59107001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_59130007','59130007','http://snomed.info/sct','Salmonella Augustenborg (organism)','59130007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_59235005','59235005','http://snomed.info/sct','Salmonella II 9,12:l,z28:e,n,x (organism)','59235005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_5929008','5929008','http://snomed.info/sct','Salmonella Virchow (organism)','5929008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_59316007','59316007','http://snomed.info/sct','Salmonella Losangeles (organism)','59316007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_5937000','5937000','http://snomed.info/sct','Salmonella Abadina (organism)','5937000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_59384004','59384004','http://snomed.info/sct','Salmonella Selby (organism)','59384004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_59551003','59551003','http://snomed.info/sct','Salmonella Colindale (organism)','59551003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_5956005','5956005','http://snomed.info/sct','Salmonella Kouka (organism)','5956005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_5957001','5957001','http://snomed.info/sct','Salmonella Binningen (organism)','5957001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_59598006','59598006','http://snomed.info/sct','Salmonella Gaminara (organism)','59598006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_59727006','59727006','http://snomed.info/sct','Salmonella II 1,9,12,(46),27:y:z39 (organism)','59727006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_59785000','59785000','http://snomed.info/sct','Salmonella Guarapiranga (organism)','59785000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_59794006','59794006','http://snomed.info/sct','Salmonella Yerba (organism)','59794006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_59827003','59827003','http://snomed.info/sct','Salmonella Agege (organism)','59827003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_59834001','59834001','http://snomed.info/sct','Salmonella Gbadago (organism)','59834001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_59839006','59839006','http://snomed.info/sct','Salmonella Mpouto (organism)','59839006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_60073009','60073009','http://snomed.info/sct','Salmonella Agama (organism)','60073009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_60142007','60142007','http://snomed.info/sct','Salmonella Ndolo (organism)','60142007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_60230009','60230009','http://snomed.info/sct','Salmonella Broughton (organism)','60230009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_60242004','60242004','http://snomed.info/sct','Salmonella Salford (organism)','60242004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_60425007','60425007','http://snomed.info/sct','Salmonella II 3,10:l,z28:z39 (organism)','60425007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_60462009','60462009','http://snomed.info/sct','Salmonella Vleuten (organism)','60462009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_60512001','60512001','http://snomed.info/sct','Salmonella II 3,10:l,v:e,n,x (organism)','60512001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_60527001','60527001','http://snomed.info/sct','Salmonella Neumuenster (organism)','60527001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_6065006','6065006','http://snomed.info/sct','Salmonella Malstatt (organism)','6065006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_60651003','60651003','http://snomed.info/sct','Salmonella Meleagridis (organism)','60651003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_60677006','60677006','http://snomed.info/sct','Salmonella Spartel (organism)','60677006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_60711005','60711005','http://snomed.info/sct','Salmonella II 30:b:z6 (organism)','60711005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_60789003','60789003','http://snomed.info/sct','Salmonella Onarimon (organism)','60789003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_60794003','60794003','http://snomed.info/sct','Salmonella Elomrane (organism)','60794003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_60834008','60834008','http://snomed.info/sct','Salmonella Tilburg (organism)','60834008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_6086006','6086006','http://snomed.info/sct','Salmonella Kinondoni (organism)','6086006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_60913000','60913000','http://snomed.info/sct','Salmonella II 6,8:d:z6,z42 (organism)','60913000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_61079001','61079001','http://snomed.info/sct','Salmonella Haouaria (organism)','61079001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_61191008','61191008','http://snomed.info/sct','Salmonella Ikayi (organism)','61191008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_61227007','61227007','http://snomed.info/sct','Salmonella II 1,9,12,(46),27:z10:e,n,x (organism)','61227007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_61304001','61304001','http://snomed.info/sct','Salmonella Hatfield (organism)','61304001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_61329007','61329007','http://snomed.info/sct','Salmonella Kodjovi (organism)','61329007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_61355008','61355008','http://snomed.info/sct','Salmonella Logone (organism)','61355008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_61375004','61375004','http://snomed.info/sct','Salmonella II 1,40:c:z39 (organism)','61375004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_61388001','61388001','http://snomed.info/sct','Salmonella Teltow (organism)','61388001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_61491002','61491002','http://snomed.info/sct','Salmonella Kpeme (organism)','61491002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_61531002','61531002','http://snomed.info/sct','Salmonella Mayday (organism)','61531002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_61549002','61549002','http://snomed.info/sct','Salmonella Taset (organism)','61549002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_6156002','6156002','http://snomed.info/sct','Salmonella Sanga (organism)','6156002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_61807004','61807004','http://snomed.info/sct','Salmonella Warnemuende (organism)','61807004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_6184007','6184007','http://snomed.info/sct','Salmonella Fulica (organism)','6184007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_62024006','62024006','http://snomed.info/sct','Salmonella II 50:b:z6 (organism)','62024006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_62099009','62099009','http://snomed.info/sct','Salmonella Westhampton (organism)','62099009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_62136003','62136003','http://snomed.info/sct','Salmonella Dublin (organism)','62136003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_62146001','62146001','http://snomed.info/sct','Salmonella Wuiti (organism)','62146001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_62209006','62209006','http://snomed.info/sct','Salmonella II 58:c:z6 (organism)','62209006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_62272001','62272001','http://snomed.info/sct','Salmonella Newyork (organism)','62272001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_62308000','62308000','http://snomed.info/sct','Salmonella Baiboukoum (organism)','62308000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_62314007','62314007','http://snomed.info/sct','Salmonella Mornington (organism)','62314007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_62325003','62325003','http://snomed.info/sct','Salmonella Kisii (organism)','62325003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_6233000','6233000','http://snomed.info/sct','Salmonella Warragul (organism)','6233000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_62340001','62340001','http://snomed.info/sct','Salmonella Kivu (organism)','62340001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_62365004','62365004','http://snomed.info/sct','Salmonella Farakan (organism)','62365004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_62367007','62367007','http://snomed.info/sct','Salmonella Lovelace (organism)','62367007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_62414008','62414008','http://snomed.info/sct','Salmonella Gassi (organism)','62414008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_62441003','62441003','http://snomed.info/sct','Salmonella Drogana (organism)','62441003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_62532006','62532006','http://snomed.info/sct','Salmonella Veneziana (organism)','62532006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_62626007','62626007','http://snomed.info/sct','Salmonella Volkmarsdorf (organism)','62626007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_62656003','62656003','http://snomed.info/sct','Salmonella Schoeneberg (organism)','62656003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_62686005','62686005','http://snomed.info/sct','Salmonella Mono (organism)','62686005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_6272001','6272001','http://snomed.info/sct','Salmonella II 56:d:- (organism)','6272001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_62773005','62773005','http://snomed.info/sct','Salmonella Mandera (organism)','62773005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_62866008','62866008','http://snomed.info/sct','Salmonella Kirkee (organism)','62866008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_63015008','63015008','http://snomed.info/sct','Salmonella Ilugun (organism)','63015008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_6302004','6302004','http://snomed.info/sct','Salmonella Shipley (organism)','6302004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_63058007','63058007','http://snomed.info/sct','Salmonella Halle (organism)','63058007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_63060009','63060009','http://snomed.info/sct','Salmonella Huvudsta (organism)','63060009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_63142006','63142006','http://snomed.info/sct','Salmonella Hato (organism)','63142006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_6327006','6327006','http://snomed.info/sct','Salmonella Glostrup (organism)','6327006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_6328001','6328001','http://snomed.info/sct','Salmonella Banjul (organism)','6328001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_63396002','63396002','http://snomed.info/sct','Salmonella Reading (organism)','63396002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_63485009','63485009','http://snomed.info/sct','Salmonella Southbank (organism)','63485009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_6350000','6350000','http://snomed.info/sct','Salmonella Joal (organism)','6350000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_63734000','63734000','http://snomed.info/sct','Salmonella Mowanjum (organism)','63734000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_63800006','63800006','http://snomed.info/sct','Salmonella Steinplatz (organism)','63800006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_63877008','63877008','http://snomed.info/sct','Salmonella Champaign (organism)','63877008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_64078005','64078005','http://snomed.info/sct','Salmonella Lindenburg (organism)','64078005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_64080004','64080004','http://snomed.info/sct','Salmonella Warnow (organism)','64080004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_64155002','64155002','http://snomed.info/sct','Salmonella Kunduchi (organism)','64155002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_6432008','6432008','http://snomed.info/sct','Salmonella Brive (organism)','6432008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_64341001','64341001','http://snomed.info/sct','Salmonella II 56:e,n,x:1,7 (organism)','64341001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_64354008','64354008','http://snomed.info/sct','Salmonella Czernyring (organism)','64354008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_64456006','64456006','http://snomed.info/sct','Salmonella Bristol (organism)','64456006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_64506004','64506004','http://snomed.info/sct','Salmonella Oerlikon (organism)','64506004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_64539001','64539001','http://snomed.info/sct','Salmonella Abobo (organism)','64539001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_64578002','64578002','http://snomed.info/sct','Salmonella Herston (organism)','64578002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_6458008','6458008','http://snomed.info/sct','Salmonella Yovokome (organism)','6458008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_6459000','6459000','http://snomed.info/sct','Salmonella Riogrande (organism)','6459000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_64619006','64619006','http://snomed.info/sct','Salmonella Thayngen (organism)','64619006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_64636003','64636003','http://snomed.info/sct','Salmonella Telelkebir (organism)','64636003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_64674006','64674006','http://snomed.info/sct','Salmonella Lyon (organism)','64674006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_64705003','64705003','http://snomed.info/sct','Salmonella Mokola (organism)','64705003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_64768003','64768003','http://snomed.info/sct','Salmonella Togba (organism)','64768003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_64802006','64802006','http://snomed.info/sct','Salmonella Miami (organism)','64802006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_64842001','64842001','http://snomed.info/sct','Salmonella Haardt (organism)','64842001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_64847007','64847007','http://snomed.info/sct','Salmonella Lezennes (organism)','64847007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_64863004','64863004','http://snomed.info/sct','Salmonella Ljubljana (organism)','64863004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_64900004','64900004','http://snomed.info/sct','Salmonella Ordonez (organism)','64900004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_64975005','64975005','http://snomed.info/sct','Salmonella Chicago (organism)','64975005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_65132007','65132007','http://snomed.info/sct','Salmonella Monschaui (organism)','65132007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_65211006','65211006','http://snomed.info/sct','Salmonella Luciana (organism)','65211006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_65214003','65214003','http://snomed.info/sct','Salmonella Haferbreite (organism)','65214003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_65252002','65252002','http://snomed.info/sct','Salmonella II 1,13,22:z39:1,5,(7) (organism)','65252002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_65303004','65303004','http://snomed.info/sct','Salmonella Sloterdijk (organism)','65303004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_65422007','65422007','http://snomed.info/sct','Salmonella Kintambo (organism)','65422007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_65463001','65463001','http://snomed.info/sct','Salmonella Bilu (organism)','65463001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_65525006','65525006','http://snomed.info/sct','Salmonella Gera (organism)','65525006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_656008','656008','http://snomed.info/sct','Salmonella Os (organism)','656008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_65633001','65633001','http://snomed.info/sct','Salmonella Kermel (organism)','65633001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_65650004','65650004','http://snomed.info/sct','Salmonella II 42:m,t:(e,n,x,z15) (organism)','65650004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_65700004','65700004','http://snomed.info/sct','Salmonella Calabar (organism)','65700004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_65779004','65779004','http://snomed.info/sct','Salmonella Papuana (organism)','65779004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_65805004','65805004','http://snomed.info/sct','Salmonella Kamoru (organism)','65805004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_65807007','65807007','http://snomed.info/sct','Salmonella Sangalkam (organism)','65807007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_65829006','65829006','http://snomed.info/sct','Salmonella Onireke (organism)','65829006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_65830001','65830001','http://snomed.info/sct','Salmonella Ngor (organism)','65830001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_65834005','65834005','http://snomed.info/sct','Salmonella II 43:e,n,x,z15:1,(5),7 (organism)','65834005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_65850002','65850002','http://snomed.info/sct','Salmonella Ball (organism)','65850002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_65987009','65987009','http://snomed.info/sct','Salmonella II 3,10:g,m,s,t:[1,5] (organism)','65987009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_66105008','66105008','http://snomed.info/sct','Salmonella Nieukerk (organism)','66105008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_66161002','66161002','http://snomed.info/sct','Salmonella Linguere (organism)','66161002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_66197006','66197006','http://snomed.info/sct','Salmonella Goverdhan (organism)','66197006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_66385002','66385002','http://snomed.info/sct','Salmonella IV Argentina (organism)','66385002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_66442007','66442007','http://snomed.info/sct','Salmonella Luke (organism)','66442007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_66450003','66450003','http://snomed.info/sct','Salmonella Gambia (organism)','66450003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_66496006','66496006','http://snomed.info/sct','Salmonella Mapo (organism)','66496006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_66544006','66544006','http://snomed.info/sct','Salmonella Brevik (organism)','66544006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_66570007','66570007','http://snomed.info/sct','Salmonella II 28:e,n,x:1,7 (organism)','66570007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_66585001','66585001','http://snomed.info/sct','Salmonella Kalina (organism)','66585001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_6663003','6663003','http://snomed.info/sct','Salmonella Morningside (organism)','6663003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_66713000','66713000','http://snomed.info/sct','Salmonella Livingstone (organism)','66713000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_66714006','66714006','http://snomed.info/sct','Salmonella Pharr (organism)','66714006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_66749004','66749004','http://snomed.info/sct','Salmonella II 1,13,23:z29:e,n,x (organism)','66749004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_6675008','6675008','http://snomed.info/sct','Salmonella Kibi (organism)','6675008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_66778003','66778003','http://snomed.info/sct','Salmonella Elokate (organism)','66778003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_66788002','66788002','http://snomed.info/sct','Salmonella IV 6,14:z4,z23:- (organism)','66788002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_66863002','66863002','http://snomed.info/sct','Salmonella Dabou (organism)','66863002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_67035008','67035008','http://snomed.info/sct','Salmonella Oxford (organism)','67035008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_67092009','67092009','http://snomed.info/sct','Salmonella Morehead (organism)','67092009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_67207001','67207001','http://snomed.info/sct','Salmonella Koumra (organism)','67207001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_67210008','67210008','http://snomed.info/sct','Salmonella Ohio (organism)','67210008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_67231006','67231006','http://snomed.info/sct','Salmonella Nimes (organism)','67231006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_67259007','67259007','http://snomed.info/sct','Salmonella Inpraw (organism)','67259007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_67282009','67282009','http://snomed.info/sct','Salmonella Bury (organism)','67282009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_67336004','67336004','http://snomed.info/sct','Salmonella Legon (organism)','67336004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_67346002','67346002','http://snomed.info/sct','Salmonella Kuru (organism)','67346002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_67392004','67392004','http://snomed.info/sct','Salmonella Hvittingfoss (organism)','67392004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_67457006','67457006','http://snomed.info/sct','Salmonella Goelzau (organism)','67457006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_67513009','67513009','http://snomed.info/sct','Salmonella Njala (organism)','67513009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_67643004','67643004','http://snomed.info/sct','Salmonella Chincol (organism)','67643004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_67646007','67646007','http://snomed.info/sct','Salmonella Alexanderplatz (organism)','67646007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_6768004','6768004','http://snomed.info/sct','Salmonella Lodz (organism)','6768004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_67775006','67775006','http://snomed.info/sct','Salmonella Cairina (organism)','67775006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_67810001','67810001','http://snomed.info/sct','Salmonella Lika (organism)','67810001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_67851004','67851004','http://snomed.info/sct','Salmonella Sipane (organism)','67851004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_67874000','67874000','http://snomed.info/sct','Salmonella Birmingham (organism)','67874000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_67936007','67936007','http://snomed.info/sct','Salmonella II 39:c:e,n,x (organism)','67936007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_68108004','68108004','http://snomed.info/sct','Salmonella Findorff (organism)','68108004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_68218004','68218004','http://snomed.info/sct','Salmonella Kimberley (organism)','68218004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_68452003','68452003','http://snomed.info/sct','Salmonella Alexanderpolder (organism)','68452003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_6851005','6851005','http://snomed.info/sct','Salmonella Vietnam (organism)','6851005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_68520000','68520000','http://snomed.info/sct','Salmonella II 6,7:z42:e,n,x:1,6 (organism)','68520000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_68541006','68541006','http://snomed.info/sct','Salmonella II 13,22:l,z28:1,5 (organism)','68541006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_68632005','68632005','http://snomed.info/sct','Salmonella Isuge (organism)','68632005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_68807006','68807006','http://snomed.info/sct','Salmonella Preston (organism)','68807006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_68821008','68821008','http://snomed.info/sct','Salmonella II 52:d:e,n,x,z15 (organism)','68821008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_68891004','68891004','http://snomed.info/sct','Salmonella II 3,10:l,z28:1,5 (organism)','68891004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_68916009','68916009','http://snomed.info/sct','Salmonella Muenster (organism)','68916009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_68937001','68937001','http://snomed.info/sct','Salmonella Itami (organism)','68937001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_69006005','69006005','http://snomed.info/sct','Salmonella Kabete (organism)','69006005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_69027000','69027000','http://snomed.info/sct','Salmonella Sya (organism)','69027000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_69033009','69033009','http://snomed.info/sct','Salmonella Escanaba (organism)','69033009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_69040005','69040005','http://snomed.info/sct','Salmonella Cremieu (organism)','69040005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_69053008','69053008','http://snomed.info/sct','Salmonella Ardwick (organism)','69053008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_69111005','69111005','http://snomed.info/sct','Salmonella Madjorio (organism)','69111005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_69117009','69117009','http://snomed.info/sct','Salmonella Shomolu (organism)','69117009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_69123004','69123004','http://snomed.info/sct','Salmonella Togo (organism)','69123004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_69176009','69176009','http://snomed.info/sct','Salmonella Uhlenhorst (organism)','69176009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_69247002','69247002','http://snomed.info/sct','Salmonella II 17:y:- (organism)','69247002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_69252007','69252007','http://snomed.info/sct','Salmonella Ank (organism)','69252007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_69261007','69261007','http://snomed.info/sct','Salmonella Sambre (organism)','69261007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_6938001','6938001','http://snomed.info/sct','Salmonella Carmel (organism)','6938001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_69432009','69432009','http://snomed.info/sct','Salmonella Zadar (organism)','69432009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_69573008','69573008','http://snomed.info/sct','Salmonella Egusi (organism)','69573008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_6959008','6959008','http://snomed.info/sct','Salmonella Windermere (organism)','6959008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_69669000','69669000','http://snomed.info/sct','Salmonella Shangani (organism)','69669000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_69712009','69712009','http://snomed.info/sct','Salmonella Kambole (organism)','69712009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_69716007','69716007','http://snomed.info/sct','Salmonella Redba (organism)','69716007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_69738009','69738009','http://snomed.info/sct','Salmonella Tonev (organism)','69738009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_69775004','69775004','http://snomed.info/sct','Salmonella Bargny (organism)','69775004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_69847009','69847009','http://snomed.info/sct','Salmonella Cairns (organism)','69847009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_70004000','70004000','http://snomed.info/sct','Salmonella Honelis (organism)','70004000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_70194005','70194005','http://snomed.info/sct','Salmonella Dieuppeul (organism)','70194005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_70223004','70223004','http://snomed.info/sct','Salmonella Weybridge (organism)','70223004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_7031002','7031002','http://snomed.info/sct','Salmonella California (organism)','7031002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_70344002','70344002','http://snomed.info/sct','Salmonella Cerro (organism)','70344002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_70456000','70456000','http://snomed.info/sct','Salmonella Ahmadi (organism)','70456000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_70605000','70605000','http://snomed.info/sct','Salmonella Manchester (organism)','70605000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_70671008','70671008','http://snomed.info/sct','Salmonella Hisingen (organism)','70671008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_70689009','70689009','http://snomed.info/sct','Salmonella Yarrabah (organism)','70689009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_70760001','70760001','http://snomed.info/sct','Salmonella Potosi (organism)','70760001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_707653001','707653001','http://snomed.info/sct','Ribosomal ribonucleic acid of Salmonella Gallinarum (substance)','707653001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_707654007','707654007','http://snomed.info/sct','Ribosomal ribonucleic acid of Salmonella Pullorum (substance)','707654007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_708422009','708422009','http://snomed.info/sct','Deoxyribonucleic acid of Salmonella enterica (substance)','708422009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_708423004','708423004','http://snomed.info/sct','Deoxyribonucleic acid of Salmonella enterica enterica serovar Gallinarum (substance)','708423004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_708424005','708424005','http://snomed.info/sct','Deoxyribonucleic acid of Salmonella enterica enterica serovar Pullorum (substance)','708424005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_708425006','708425006','http://snomed.info/sct','Deoxyribonucleic acid of Salmonella (substance)','708425006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_709136002','709136002','http://snomed.info/sct','Salmonella Maumee (organism)','709136002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_70939003','70939003','http://snomed.info/sct','Salmonella II 53:z:z6 (organism)','70939003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_70940001','70940001','http://snomed.info/sct','Salmonella Sanjuan (organism)','70940001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_71026007','71026007','http://snomed.info/sct','Salmonella Gelsenkirchen (organism)','71026007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_711005','711005','http://snomed.info/sct','Salmonella Tunis (organism)','711005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_71107002','71107002','http://snomed.info/sct','Salmonella Seegefeld (organism)','71107002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_71121000','71121000','http://snomed.info/sct','Salmonella Adeoyo (organism)','71121000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_71236007','71236007','http://snomed.info/sct','Salmonella Middlesbrough (organism)','71236007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_712806004','712806004','http://snomed.info/sct','Salmonella Enteritidis phage type 14b (organism)','712806004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_71285002','71285002','http://snomed.info/sct','Salmonella Ruzizi (organism)','71285002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_71316008','71316008','http://snomed.info/sct','Salmonella Guinea (organism)','71316008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_71357001','71357001','http://snomed.info/sct','Salmonella Chomedey (organism)','71357001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_71443004','71443004','http://snomed.info/sct','Salmonella Sinstorf (organism)','71443004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_71520006','71520006','http://snomed.info/sct','Salmonella Antsalova (organism)','71520006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_71541000','71541000','http://snomed.info/sct','Salmonella Westphalia (organism)','71541000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_71605006','71605006','http://snomed.info/sct','Salmonella Toowong (organism)','71605006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_71614001','71614001','http://snomed.info/sct','Salmonella Ouakam (organism)','71614001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_71672005','71672005','http://snomed.info/sct','Salmonella Malika (organism)','71672005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_71711000','71711000','http://snomed.info/sct','Salmonella Minna (organism)','71711000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_71733003','71733003','http://snomed.info/sct','Salmonella Molesey (organism)','71733003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_71768003','71768003','http://snomed.info/sct','Salmonella Give (organism)','71768003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_71865006','71865006','http://snomed.info/sct','Salmonella Heidelberg (organism)','71865006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_71991008','71991008','http://snomed.info/sct','Salmonella Nanga (organism)','71991008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_72029002','72029002','http://snomed.info/sct','Salmonella Rittersbach (organism)','72029002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_72033009','72033009','http://snomed.info/sct','Salmonella Albany (organism)','72033009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_72072008','72072008','http://snomed.info/sct','Salmonella Belem (organism)','72072008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_720961001','720961001','http://snomed.info/sct','Salmonella Drac (organism)','720961001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_721062001','721062001','http://snomed.info/sct','Salmonella enterica subspecies enterica serovar O rough: nonmotile (organism)','721062001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_72119007','72119007','http://snomed.info/sct','Salmonella Kingabwa (organism)','72119007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_72132002','72132002','http://snomed.info/sct','Salmonella Weston (organism)','72132002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_72414009','72414009','http://snomed.info/sct','Salmonella II 13,23:l,z28:1,5 (organism)','72414009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_72514007','72514007','http://snomed.info/sct','Salmonella Karachi (organism)','72514007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_72539003','72539003','http://snomed.info/sct','Salmonella II 13,23:l,z28:z6 (organism)','72539003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_726498001','726498001','http://snomed.info/sct','Fluoroquinolone resistant Salmonella (organism)','726498001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_72706004','72706004','http://snomed.info/sct','Salmonella II 58:z10:1,6 (organism)','72706004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_7279002','7279002','http://snomed.info/sct','Salmonella II Makumira (organism)','7279002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_72828006','72828006','http://snomed.info/sct','Salmonella Kidderminster (organism)','72828006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_72895000','72895000','http://snomed.info/sct','Salmonella Strasbourg (organism)','72895000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_72958001','72958001','http://snomed.info/sct','Salmonella Dumfries (organism)','72958001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_7303003','7303003','http://snomed.info/sct','Salmonella II 28:m,t:(e,n,x) (organism)','7303003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_73087009','73087009','http://snomed.info/sct','Salmonella IV 38:z4,z23:- (organism)','73087009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_73249008','73249008','http://snomed.info/sct','Salmonella Victoria (organism)','73249008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_73321004','73321004','http://snomed.info/sct','Salmonella Fareham (organism)','73321004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_733501004','733501004','http://snomed.info/sct','Salmonella II rough:l,z28:z6 (organism)','733501004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_734436009','734436009','http://snomed.info/sct','Salmonella Lamphun (organism)','734436009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_73525009','73525009','http://snomed.info/sct','Salmonella Enteritidis (organism)','73525009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_73541005','73541005','http://snomed.info/sct','Salmonella Bochum (organism)','73541005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_73981008','73981008','http://snomed.info/sct','Salmonella Inchpark (organism)','73981008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_74092000','74092000','http://snomed.info/sct','Salmonella Fortune (organism)','74092000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_74115000','74115000','http://snomed.info/sct','Salmonella Widemarsh (organism)','74115000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_74122008','74122008','http://snomed.info/sct','Salmonella Portland (organism)','74122008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_74464001','74464001','http://snomed.info/sct','Salmonella Doorn (organism)','74464001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_74613008','74613008','http://snomed.info/sct','Salmonella Trachau (organism)','74613008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_74630005','74630005','http://snomed.info/sct','Salmonella Hofit (organism)','74630005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_74649009','74649009','http://snomed.info/sct','Salmonella Macallen (organism)','74649009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_7467004','7467004','http://snomed.info/sct','Salmonella Gwoza (organism)','7467004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_74705004','74705004','http://snomed.info/sct','Salmonella Suelldorf (organism)','74705004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_74707007','74707007','http://snomed.info/sct','Salmonella Tudu (organism)','74707007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_748001','748001','http://snomed.info/sct','Salmonella Chandans (organism)','748001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_749009','749009','http://snomed.info/sct','Salmonella Truro (organism)','749009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_74936002','74936002','http://snomed.info/sct','Salmonella Abidjan (organism)','74936002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_74958000','74958000','http://snomed.info/sct','Salmonella Gori (organism)','74958000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_75048007','75048007','http://snomed.info/sct','Salmonella Nashua (organism)','75048007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_75090001','75090001','http://snomed.info/sct','Salmonella Kimuenza (organism)','75090001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_75104004','75104004','http://snomed.info/sct','Salmonella Bradford (organism)','75104004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_75114008','75114008','http://snomed.info/sct','Salmonella Mim (organism)','75114008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_7516004','7516004','http://snomed.info/sct','Salmonella Malmoe (organism)','7516004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_75173009','75173009','http://snomed.info/sct','Salmonella Pisa (organism)','75173009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_75196009','75196009','http://snomed.info/sct','Salmonella enterica subspecies enterica serovar Butantan (organism)','75196009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_75293006','75293006','http://snomed.info/sct','Salmonella II 18:m,t:1,5 (organism)','75293006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_75329000','75329000','http://snomed.info/sct','Salmonella Casablanca (organism)','75329000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_75343005','75343005','http://snomed.info/sct','Salmonella Aminatu (organism)','75343005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_75347006','75347006','http://snomed.info/sct','Salmonella Cannonhill (organism)','75347006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_75380004','75380004','http://snomed.info/sct','Salmonella Bangkok (organism)','75380004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_75447005','75447005','http://snomed.info/sct','Salmonella Straengnaes (organism)','75447005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_75486009','75486009','http://snomed.info/sct','Salmonella Stratford (organism)','75486009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_75515002','75515002','http://snomed.info/sct','Salmonella Madiago (organism)','75515002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_75676000','75676000','http://snomed.info/sct','Salmonella Wippra (organism)','75676000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_75848006','75848006','http://snomed.info/sct','Salmonella Abaetetuba (organism)','75848006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_75881007','75881007','http://snomed.info/sct','Salmonella Fischerhuette (organism)','75881007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_75923007','75923007','http://snomed.info/sct','Salmonella Albert (organism)','75923007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_760000','760000','http://snomed.info/sct','Salmonella Djelfa (organism)','760000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_76027002','76027002','http://snomed.info/sct','Salmonella Chichiri (organism)','76027002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_76073000','76073000','http://snomed.info/sct','Salmonella Aba (organism)','76073000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_761001','761001','http://snomed.info/sct','Salmonella Runby (organism)','761001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_76212007','76212007','http://snomed.info/sct','Salmonella Milwaukee (organism)','76212007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_76337004','76337004','http://snomed.info/sct','Salmonella Langenhorn (organism)','76337004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_76347001','76347001','http://snomed.info/sct','Salmonella Tomelilla (organism)','76347001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_76350003','76350003','http://snomed.info/sct','Salmonella Nyanza (organism)','76350003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_76354007','76354007','http://snomed.info/sct','Salmonella Atakpame (organism)','76354007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_76356009','76356009','http://snomed.info/sct','Salmonella Morotai (organism)','76356009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_76384004','76384004','http://snomed.info/sct','Salmonella II 6,7:(g),m,(s),t:1,5 (organism)','76384004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_76425002','76425002','http://snomed.info/sct','Salmonella II 3,10:b:z39 (organism)','76425002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_76657005','76657005','http://snomed.info/sct','Salmonella Heron (organism)','76657005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_76702004','76702004','http://snomed.info/sct','Salmonella Freiburg (organism)','76702004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_76778004','76778004','http://snomed.info/sct','Salmonella Zongo (organism)','76778004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_76921003','76921003','http://snomed.info/sct','Salmonella Gatow (organism)','76921003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_76968008','76968008','http://snomed.info/sct','Salmonella Fajara (organism)','76968008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_76983003','76983003','http://snomed.info/sct','Salmonella Southampton (organism)','76983003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_77022000','77022000','http://snomed.info/sct','Salmonella Oskarshamn (organism)','77022000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_77114009','77114009','http://snomed.info/sct','Salmonella Dresden (organism)','77114009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_77117002','77117002','http://snomed.info/sct','Salmonella II 16:z6:1,6 (organism)','77117002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_77145008','77145008','http://snomed.info/sct','Salmonella Steinwerder (organism)','77145008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_7717005','7717005','http://snomed.info/sct','Salmonella Adana (organism)','7717005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_77211008','77211008','http://snomed.info/sct','Salmonella Stellingen (organism)','77211008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_77231007','77231007','http://snomed.info/sct','Salmonella Doba (organism)','77231007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_7730006','7730006','http://snomed.info/sct','Salmonella Rawash (organism)','7730006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_77349005','77349005','http://snomed.info/sct','Salmonella Poeseldorf (organism)','77349005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_77393005','77393005','http://snomed.info/sct','Salmonella Tione (organism)','77393005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_77447006','77447006','http://snomed.info/sct','Salmonella II 48:b:z6 (organism)','77447006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_7747007','7747007','http://snomed.info/sct','Salmonella Kikoma (organism)','7747007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_77511007','77511007','http://snomed.info/sct','Salmonella Bazenheid (organism)','77511007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_77576006','77576006','http://snomed.info/sct','Salmonella Duesseldorf (organism)','77576006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_77584005','77584005','http://snomed.info/sct','Salmonella Muenchen (organism)','77584005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_77787000','77787000','http://snomed.info/sct','Salmonella Antonio (organism)','77787000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_77822004','77822004','http://snomed.info/sct','Salmonella Amager (organism)','77822004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_77834007','77834007','http://snomed.info/sct','Salmonella Toronto (organism)','77834007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_77842008','77842008','http://snomed.info/sct','Salmonella Amherstiana (organism)','77842008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_77843003','77843003','http://snomed.info/sct','Salmonella Mgulani (organism)','77843003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_77961006','77961006','http://snomed.info/sct','Salmonella Chagoua (organism)','77961006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_78008003','78008003','http://snomed.info/sct','Salmonella II 6,7:d:1,7 (organism)','78008003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_78040004','78040004','http://snomed.info/sct','Salmonella IV 40:m,t:- (organism)','78040004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_78045009','78045009','http://snomed.info/sct','Salmonella Mundonobo (organism)','78045009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_78139003','78139003','http://snomed.info/sct','Salmonella Arechavaleta (organism)','78139003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_78243006','78243006','http://snomed.info/sct','Salmonella Newmexico (organism)','78243006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_78256004','78256004','http://snomed.info/sct','Salmonella Vancouver (organism)','78256004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_78280000','78280000','http://snomed.info/sct','Salmonella Kimpese (organism)','78280000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_78287002','78287002','http://snomed.info/sct','Salmonella II 35:l,z28:- (organism)','78287002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_7830000','7830000','http://snomed.info/sct','Salmonella Hallfold (organism)','7830000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_783344000','783344000','http://snomed.info/sct','Salmonella enterica subspecies enterica serovar 4,5,12:-:- (organism)','783344000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_78367001','78367001','http://snomed.info/sct','Salmonella Bingerville (organism)','78367001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_78448004','78448004','http://snomed.info/sct','Salmonella Moero (organism)','78448004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_78474005','78474005','http://snomed.info/sct','Salmonella Gateshead (organism)','78474005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_78528008','78528008','http://snomed.info/sct','Salmonella Warengo (organism)','78528008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_78550009','78550009','http://snomed.info/sct','Salmonella Ipswich (organism)','78550009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_785859001','785859001','http://snomed.info/sct','Salmonella Farmingdale (organism)','785859001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_78780001','78780001','http://snomed.info/sct','Salmonella Colorado (organism)','78780001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_787906003','787906003','http://snomed.info/sct','Salmonella Enteritidis phage type 8 (organism)','787906003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_78853000','78853000','http://snomed.info/sct','Salmonella II 1,40:g,t:1,5 (organism)','78853000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_78893002','78893002','http://snomed.info/sct','Salmonella Maiduguri (organism)','78893002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_78907006','78907006','http://snomed.info/sct','Salmonella Good (organism)','78907006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_78970007','78970007','http://snomed.info/sct','Salmonella Seattle (organism)','78970007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_79153007','79153007','http://snomed.info/sct','Salmonella Tennessee (organism)','79153007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_79238006','79238006','http://snomed.info/sct','Salmonella Dapango (organism)','79238006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_79264000','79264000','http://snomed.info/sct','Salmonella Pramiso (organism)','79264000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_79270006','79270006','http://snomed.info/sct','Salmonella II 6,7:z:z6 (organism)','79270006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_79344007','79344007','http://snomed.info/sct','Salmonella Leopoldville (organism)','79344007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_7943004','7943004','http://snomed.info/sct','Salmonella Lekke (organism)','7943004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_79475004','79475004','http://snomed.info/sct','Salmonella Tamberma (organism)','79475004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_79570007','79570007','http://snomed.info/sct','Salmonella Kokomlemle (organism)','79570007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_79596009','79596009','http://snomed.info/sct','Salmonella Ligna (organism)','79596009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_79617006','79617006','http://snomed.info/sct','Salmonella Jos (organism)','79617006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_79905007','79905007','http://snomed.info/sct','Salmonella Anecho (organism)','79905007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_79910006','79910006','http://snomed.info/sct','Salmonella Caen (organism)','79910006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_800007','800007','http://snomed.info/sct','Salmonella Offa (organism)','800007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_80014004','80014004','http://snomed.info/sct','Salmonella Concord (organism)','80014004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_80047008','80047008','http://snomed.info/sct','Salmonella Tinda (organism)','80047008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_80058004','80058004','http://snomed.info/sct','Salmonella Shannon (organism)','80058004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_80087003','80087003','http://snomed.info/sct','Salmonella Teko (organism)','80087003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_80177000','80177000','http://snomed.info/sct','Salmonella Bignona (organism)','80177000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_80232006','80232006','http://snomed.info/sct','Salmonella Choleraesuis (organism)','80232006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_80268001','80268001','http://snomed.info/sct','Salmonella Montevideo (organism)','80268001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_80326003','80326003','http://snomed.info/sct','Salmonella Mampong (organism)','80326003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_8044005','8044005','http://snomed.info/sct','Salmonella Bareilly (organism)','8044005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_80456008','80456008','http://snomed.info/sct','Salmonella Rubislaw (organism)','80456008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_80508000','80508000','http://snomed.info/sct','Salmonella Boecker (organism)','80508000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_8051001','8051001','http://snomed.info/sct','Salmonella Homosassa (organism)','8051001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_8052008','8052008','http://snomed.info/sct','Salmonella Agoueve (organism)','8052008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_80563006','80563006','http://snomed.info/sct','Salmonella Kampala (organism)','80563006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_80579007','80579007','http://snomed.info/sct','Salmonella Linton (organism)','80579007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_8058007','8058007','http://snomed.info/sct','Salmonella Sinthia (organism)','8058007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_80627004','80627004','http://snomed.info/sct','Salmonella Agona (organism)','80627004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_80728004','80728004','http://snomed.info/sct','Salmonella Baguirmi (organism)','80728004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_8077009','8077009','http://snomed.info/sct','Salmonella II 1,9,12,(46),27:z10:z39 (organism)','8077009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_80841005','80841005','http://snomed.info/sct','Salmonella Cayar (organism)','80841005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_81030003','81030003','http://snomed.info/sct','Salmonella Masembe (organism)','81030003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_81265007','81265007','http://snomed.info/sct','Salmonella Albuquerque (organism)','81265007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_81340008','81340008','http://snomed.info/sct','Salmonella Bolton (organism)','81340008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_81490006','81490006','http://snomed.info/sct','Salmonella Balcones (organism)','81490006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_81493008','81493008','http://snomed.info/sct','Salmonella Moussoro (organism)','81493008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_81528009','81528009','http://snomed.info/sct','Salmonella II 38:b:1,2 (organism)','81528009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_81567003','81567003','http://snomed.info/sct','Salmonella II 41:b:1,5 (organism)','81567003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_81603009','81603009','http://snomed.info/sct','Salmonella Epinay (organism)','81603009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_81614007','81614007','http://snomed.info/sct','Salmonella Litchfield (organism)','81614007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_81662001','81662001','http://snomed.info/sct','Salmonella Uithof (organism)','81662001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_81684001','81684001','http://snomed.info/sct','Salmonella Berlin (organism)','81684001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_81740006','81740006','http://snomed.info/sct','Salmonella Nijmegen (organism)','81740006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_81781003','81781003','http://snomed.info/sct','Salmonella Thetford (organism)','81781003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_81807008','81807008','http://snomed.info/sct','Salmonella Marshall (organism)','81807008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_81834006','81834006','http://snomed.info/sct','Salmonella Sekondi (organism)','81834006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_81938008','81938008','http://snomed.info/sct','Salmonella Bovismorbificans (organism)','81938008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_81978001','81978001','http://snomed.info/sct','Salmonella Bron (organism)','81978001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_81994008','81994008','http://snomed.info/sct','Salmonella Guerin (organism)','81994008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_82071007','82071007','http://snomed.info/sct','Salmonella Infantis (organism)','82071007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_82098006','82098006','http://snomed.info/sct','Salmonella Niarembe (organism)','82098006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_82140000','82140000','http://snomed.info/sct','Salmonella Uccle (organism)','82140000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_82241007','82241007','http://snomed.info/sct','Salmonella Encino (organism)','82241007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_82243005','82243005','http://snomed.info/sct','Salmonella Kaolack (organism)','82243005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_82364007','82364007','http://snomed.info/sct','Salmonella Bredeney (organism)','82364007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_8249007','8249007','http://snomed.info/sct','Salmonella Denver (organism)','8249007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_82496003','82496003','http://snomed.info/sct','Salmonella Winterthur (organism)','82496003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_82586009','82586009','http://snomed.info/sct','Salmonella II 45:m,t:1,5 (organism)','82586009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_82647001','82647001','http://snomed.info/sct','Salmonella Blegdam (organism)','82647001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_82666001','82666001','http://snomed.info/sct','Salmonella Dugbe (organism)','82666001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_82781001','82781001','http://snomed.info/sct','Salmonella Sara (organism)','82781001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_82784009','82784009','http://snomed.info/sct','Salmonella Gege (organism)','82784009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_82829005','82829005','http://snomed.info/sct','Salmonella Wichita (organism)','82829005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_82938006','82938006','http://snomed.info/sct','Salmonella Fanti (organism)','82938006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_82957002','82957002','http://snomed.info/sct','Salmonella Rechovot (organism)','82957002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_82997004','82997004','http://snomed.info/sct','Salmonella Hull (organism)','82997004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_83013006','83013006','http://snomed.info/sct','Salmonella Chailey (organism)','83013006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_83016003','83016003','http://snomed.info/sct','Salmonella Kuessel (organism)','83016003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_8307000','8307000','http://snomed.info/sct','Salmonella Lille (organism)','8307000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_83138004','83138004','http://snomed.info/sct','Salmonella Nagoya (organism)','83138004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_83141008','83141008','http://snomed.info/sct','Salmonella Kedougou (organism)','83141008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_83148002','83148002','http://snomed.info/sct','Salmonella Bama (organism)','83148002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_83230004','83230004','http://snomed.info/sct','Salmonella Belfast (organism)','83230004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_83254009','83254009','http://snomed.info/sct','Salmonella Angouleme (organism)','83254009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_83318007','83318007','http://snomed.info/sct','Salmonella Abortusovis (organism)','83318007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_8339007','8339007','http://snomed.info/sct','Salmonella Jangwani (organism)','8339007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_83479005','83479005','http://snomed.info/sct','Salmonella II 1,40:g,t:e,n,x (organism)','83479005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_83560005','83560005','http://snomed.info/sct','Salmonella Moualine (organism)','83560005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_83753002','83753002','http://snomed.info/sct','Salmonella Tiergarten (organism)','83753002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_8379003','8379003','http://snomed.info/sct','Salmonella Tucson (organism)','8379003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_83795006','83795006','http://snomed.info/sct','Salmonella Koketime (organism)','83795006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_83893008','83893008','http://snomed.info/sct','Salmonella Juba (organism)','83893008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_83952001','83952001','http://snomed.info/sct','Salmonella IV 41:z4,z23:- (organism)','83952001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_84044008','84044008','http://snomed.info/sct','Salmonella Minnesota (organism)','84044008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_840683006','840683006','http://snomed.info/sct','Multidrug-resistant Salmonella (organism)','840683006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_84106001','84106001','http://snomed.info/sct','Salmonella Banana (organism)','84106001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_84156006','84156006','http://snomed.info/sct','Salmonella Dembe (organism)','84156006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_84173008','84173008','http://snomed.info/sct','Salmonella Usumbura (organism)','84173008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_84205008','84205008','http://snomed.info/sct','Salmonella II 16:z:z42 (organism)','84205008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_84273002','84273002','http://snomed.info/sct','Salmonella Rideau (organism)','84273002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_8428008','8428008','http://snomed.info/sct','Salmonella Ullevi (organism)','8428008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_84287002','84287002','http://snomed.info/sct','Salmonella Duval (organism)','84287002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_84293005','84293005','http://snomed.info/sct','Salmonella Leatherhead (organism)','84293005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_8432002','8432002','http://snomed.info/sct','Salmonella Sternschanze (organism)','8432002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_84346001','84346001','http://snomed.info/sct','Salmonella Bardo (organism)','84346001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_84358001','84358001','http://snomed.info/sct','Salmonella II 48:z29:- (organism)','84358001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_8448001','8448001','http://snomed.info/sct','Salmonella Rovaniemi (organism)','8448001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_84518004','84518004','http://snomed.info/sct','Salmonella Newrochelle (organism)','84518004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_84543005','84543005','http://snomed.info/sct','Salmonella Gombe (organism)','84543005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_8455004','8455004','http://snomed.info/sct','Salmonella Kentucky (organism)','8455004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_84972004','84972004','http://snomed.info/sct','Salmonella Remo (organism)','84972004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_85047006','85047006','http://snomed.info/sct','Salmonella Balili (organism)','85047006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_85143008','85143008','http://snomed.info/sct','Salmonella Telhashomer (organism)','85143008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_85186008','85186008','http://snomed.info/sct','Salmonella Friedrichsfelde (organism)','85186008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_85277006','85277006','http://snomed.info/sct','Salmonella Tallahassee (organism)','85277006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_85312005','85312005','http://snomed.info/sct','Salmonella II 57:g,t:- (organism)','85312005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_85385004','85385004','http://snomed.info/sct','Salmonella II 45:z29:1,5 (organism)','85385004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_85398008','85398008','http://snomed.info/sct','Salmonella Adime (organism)','85398008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_85424004','85424004','http://snomed.info/sct','Salmonella Tilene (organism)','85424004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_8544001','8544001','http://snomed.info/sct','Salmonella Potsdam (organism)','8544001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_85465004','85465004','http://snomed.info/sct','Salmonella Kaneshie (organism)','85465004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_85523008','85523008','http://snomed.info/sct','Salmonella II 51:z:29:e,n,x,z15 (organism)','85523008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_85538009','85538009','http://snomed.info/sct','Salmonella Garba (organism)','85538009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_85576003','85576003','http://snomed.info/sct','Salmonella Ramsey (organism)','85576003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_85588001','85588001','http://snomed.info/sct','Salmonella Gabon (organism)','85588001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_85698004','85698004','http://snomed.info/sct','Salmonella Wernigerode (organism)','85698004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_85819008','85819008','http://snomed.info/sct','Salmonella Luckenwalde (organism)','85819008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_85893005','85893005','http://snomed.info/sct','Salmonella Tomegbe (organism)','85893005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_86097004','86097004','http://snomed.info/sct','Salmonella II 1,42:l,z13,z28:z6 (organism)','86097004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_86311006','86311006','http://snomed.info/sct','Salmonella Stendal (organism)','86311006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_86397006','86397006','http://snomed.info/sct','Salmonella Anfo (organism)','86397006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_86467002','86467002','http://snomed.info/sct','Salmonella Itutaba (organism)','86467002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_86511007','86511007','http://snomed.info/sct','Salmonella Cotia (organism)','86511007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_86585006','86585006','http://snomed.info/sct','Salmonella IV 38:g,z51:- (organism)','86585006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_86656007','86656007','http://snomed.info/sct','Salmonella Krefeld (organism)','86656007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_86669006','86669006','http://snomed.info/sct','Salmonella Overchurch (organism)','86669006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_86698005','86698005','http://snomed.info/sct','Salmonella Haga (organism)','86698005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_86837000','86837000','http://snomed.info/sct','Salmonella Mkamba (organism)','86837000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_86876004','86876004','http://snomed.info/sct','Salmonella Entebbe (organism)','86876004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_86879006','86879006','http://snomed.info/sct','Salmonella Blitta (organism)','86879006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_86966001','86966001','http://snomed.info/sct','Salmonella Zehlendorf (organism)','86966001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_86968000','86968000','http://snomed.info/sct','Salmonella II 9,12:a:1,5 (organism)','86968000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_86992008','86992008','http://snomed.info/sct','Salmonella Washington (organism)','86992008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_87019006','87019006','http://snomed.info/sct','Salmonella Ngili (organism)','87019006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_87089002','87089002','http://snomed.info/sct','Salmonella Bousso (organism)','87089002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_87110008','87110008','http://snomed.info/sct','Salmonella Landala (organism)','87110008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_8716004','8716004','http://snomed.info/sct','Salmonella Gokul (organism)','8716004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_8730009','8730009','http://snomed.info/sct','Salmonella Sinchew (organism)','8730009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_8741006','8741006','http://snomed.info/sct','Salmonella Madigan (organism)','8741006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_87566000','87566000','http://snomed.info/sct','Salmonella Quebec (organism)','87566000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_87578001','87578001','http://snomed.info/sct','Salmonella Kapemba (organism)','87578001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_87619005','87619005','http://snomed.info/sct','Salmonella Marseille (organism)','87619005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_87630008','87630008','http://snomed.info/sct','Salmonella Norton (organism)','87630008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_87693007','87693007','http://snomed.info/sct','Salmonella Derkle (organism)','87693007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_87906009','87906009','http://snomed.info/sct','Salmonella Anderlecht (organism)','87906009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_87933008','87933008','http://snomed.info/sct','Salmonella Barranquilla (organism)','87933008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_87975009','87975009','http://snomed.info/sct','Salmonella Kitenge (organism)','87975009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_88022005','88022005','http://snomed.info/sct','Salmonella Javiana (organism)','88022005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_88079003','88079003','http://snomed.info/sct','Salmonella II 35:g,t:z42 (organism)','88079003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_88085005','88085005','http://snomed.info/sct','Salmonella Antarctica (organism)','88085005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_88091007','88091007','http://snomed.info/sct','Salmonella Stanley (organism)','88091007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_88121001','88121001','http://snomed.info/sct','Salmonella Brisbane (organism)','88121001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_88149008','88149008','http://snomed.info/sct','Salmonella Matadi (organism)','88149008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_88248006','88248006','http://snomed.info/sct','Salmonella Congo (organism)','88248006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_88255008','88255008','http://snomed.info/sct','Salmonella Haifa (organism)','88255008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_88455006','88455006','http://snomed.info/sct','Salmonella Kande (organism)','88455006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_88461009','88461009','http://snomed.info/sct','Salmonella II 44:g,t:z42 (organism)','88461009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_88494007','88494007','http://snomed.info/sct','Salmonella Gloucester (organism)','88494007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_8860008','8860008','http://snomed.info/sct','Salmonella Ramatgan (organism)','8860008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_88601003','88601003','http://snomed.info/sct','Salmonella II 50:l,w:e,n,x,z15:z42 (organism)','88601003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_88649009','88649009','http://snomed.info/sct','Salmonella Colombo (organism)','88649009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_88931007','88931007','http://snomed.info/sct','Salmonella Yehuda (organism)','88931007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_88944002','88944002','http://snomed.info/sct','Salmonella Galil (organism)','88944002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_89032008','89032008','http://snomed.info/sct','Salmonella Isangi (organism)','89032008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_89085001','89085001','http://snomed.info/sct','Salmonella Lingwala (organism)','89085001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_8922003','8922003','http://snomed.info/sct','Salmonella Shanghai (organism)','8922003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_89271003','89271003','http://snomed.info/sct','Salmonella Harrisonburg (organism)','89271003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_89368009','89368009','http://snomed.info/sct','Salmonella Antwerpen (organism)','89368009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_89423000','89423000','http://snomed.info/sct','Salmonella Kralingen (organism)','89423000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_89425007','89425007','http://snomed.info/sct','Salmonella Maastricht (organism)','89425007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_89556001','89556001','http://snomed.info/sct','Salmonella Alminko (organism)','89556001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_89640003','89640003','http://snomed.info/sct','Salmonella Kalamu (organism)','89640003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_89680007','89680007','http://snomed.info/sct','Salmonella II 48:a:z39 (organism)','89680007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_89716000','89716000','http://snomed.info/sct','Salmonella Brikama (organism)','89716000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_89806001','89806001','http://snomed.info/sct','Salmonella Kotte (organism)','89806001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_89839003','89839003','http://snomed.info/sct','Salmonella Buzu (organism)','89839003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_89885000','89885000','http://snomed.info/sct','Salmonella Chiredzi (organism)','89885000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_9004006','9004006','http://snomed.info/sct','Salmonella Aderike (organism)','9004006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_90157005','90157005','http://snomed.info/sct','Salmonella Worb (organism)','90157005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_90363005','90363005','http://snomed.info/sct','Salmonella Ligeo (organism)','90363005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_90403009','90403009','http://snomed.info/sct','Salmonella Wa (organism)','90403009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_90538009','90538009','http://snomed.info/sct','Salmonella Caracas (organism)','90538009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_90559002','90559002','http://snomed.info/sct','Salmonella II 6,7:g,m,(s),t:e,n,x (organism)','90559002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_90683001','90683001','http://snomed.info/sct','Salmonella Driffield (organism)','90683001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_90712007','90712007','http://snomed.info/sct','Salmonella Aarhus (organism)','90712007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_90726003','90726003','http://snomed.info/sct','Salmonella Lamin (organism)','90726003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_90756007','90756007','http://snomed.info/sct','Salmonella Presov (organism)','90756007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_90970000','90970000','http://snomed.info/sct','Salmonella Diogoye (organism)','90970000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_90973003','90973003','http://snomed.info/sct','Salmonella Guildford (organism)','90973003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_91112005','91112005','http://snomed.info/sct','Salmonella Calvinia (organism)','91112005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_91123009','91123009','http://snomed.info/sct','Salmonella Uppsala (organism)','91123009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_91124003','91124003','http://snomed.info/sct','Salmonella Tanzania (organism)','91124003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_91144009','91144009','http://snomed.info/sct','Salmonella Schalkwijk (organism)','91144009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_91354003','91354003','http://snomed.info/sct','Salmonella Kenya (organism)','91354003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_91398003','91398003','http://snomed.info/sct','Salmonella Kaduna (organism)','91398003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_91407001','91407001','http://snomed.info/sct','Salmonella Harburg (organism)','91407001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_91477002','91477002','http://snomed.info/sct','Salmonella Fomeco (organism)','91477002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_91661006','91661006','http://snomed.info/sct','Salmonella Weltevreden (organism)','91661006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_9179000','9179000','http://snomed.info/sct','Salmonella Bronx (organism)','9179000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_9357001','9357001','http://snomed.info/sct','Salmonella Ottawa (organism)','9357001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_9393004','9393004','http://snomed.info/sct','Salmonella Molade (organism)','9393004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_9433002','9433002','http://snomed.info/sct','Salmonella Allandale (organism)','9433002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_9439003','9439003','http://snomed.info/sct','Salmonella Horsham (organism)','9439003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_9453003','9453003','http://snomed.info/sct','Salmonella Graz (organism)','9453003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_9459004','9459004','http://snomed.info/sct','Salmonella Toricada (organism)','9459004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_9479007','9479007','http://snomed.info/sct','Salmonella Wandsworth (organism)','9479007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_9506004','9506004','http://snomed.info/sct','Salmonella Mbandaka (organism)','9506004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_9541000','9541000','http://snomed.info/sct','Salmonella II 42:z10:e,n,x,z15 (organism)','9541000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_9691005','9691005','http://snomed.info/sct','Salmonella Onderstepoort (organism)','9691005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_9818000','9818000','http://snomed.info/sct','Salmonella Charity (organism)','9818000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_9852002','9852002','http://snomed.info/sct','Salmonella Dahomey (organism)','9852002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_9952003','9952003','http://snomed.info/sct','Salmonella Tanger (organism)','9952003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_11166006','11166006','http://snomed.info/sct','Salmonella II, group O:58 (organism)','11166006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398399001','398399001','http://snomed.info/sct','Salmonella group O:9,46,27 (organism)','398399001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398586003','398586003','http://snomed.info/sct','Salmonella II, group O:9,46,27 (organism)','398586003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_398593004','398593004','http://snomed.info/sct','Salmonella group O:7 (organism)','398593004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.631_66773007','66773007','http://snomed.info/sct','Salmonella IV, group O:53 (organism)','66773007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.599_121083004','121083004','http://snomed.info/sct','Antigen of Francisella tularensis (substance)','121083004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.599_23930001','23930001','http://snomed.info/sct','Francisella tularensis subspecies mediasiatica (organism)','23930001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.599_432830002','432830002','http://snomed.info/sct','Francisella tularensis subspecies japonica (organism)','432830002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.599_432832005','432832005','http://snomed.info/sct','Francisella tularensis subspecies novicida (organism)','432832005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.599_51526001','51526001','http://snomed.info/sct','Francisella tularensis (organism)','51526001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.599_60502008','60502008','http://snomed.info/sct','Francisella tularensis subspecies holarctica (organism)','60502008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.599_707640004','707640004','http://snomed.info/sct','Ribosomal ribonucleic acid of Francisella tularensis (substance)','707640004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.599_707641000','707641000','http://snomed.info/sct','Ribosomal ribonucleic acid of Francisella tularensis tularensis (substance)','707641000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.599_707642007','707642007','http://snomed.info/sct','Ribosomal ribonucleic acid of Francisella tularensis holarctica (substance)','707642007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.599_708268005','708268005','http://snomed.info/sct','Deoxyribonucleic acid of Francisella tularensis tularensis (substance)','708268005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.599_708269002','708269002','http://snomed.info/sct','Deoxyribonucleic acid of Francisella tularensis holarctica (substance)','708269002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.599_708270001','708270001','http://snomed.info/sct','Deoxyribonucleic acid of Francisella tularensis (substance)','708270001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.599_91508008','91508008','http://snomed.info/sct','Francisella tularensis subspecies tularensis (organism)','91508008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_1263732006','1263732006','http://snomed.info/sct','Severe acute respiratory syndrome-related coronavirus (organism)','1263732006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_1263733001','1263733001','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus (organism)','1263733001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415360003','415360003','http://snomed.info/sct','Severe acute respiratory syndrome-related coronavirus (organism)','415360003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415361004','415361004','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus AS (organism)','415361004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415362006','415362006','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus BJ01 (organism)','415362006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415363001','415363001','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus BJ02 (organism)','415363001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415364007','415364007','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus BJ03 (organism)','415364007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415365008','415365008','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus BJ04 (organism)','415365008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415366009','415366009','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus BJ2232 (organism)','415366009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415367000','415367000','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus BJ302 (organism)','415367000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415368005','415368005','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus CUHK-AG01 (organism)','415368005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415369002','415369002','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus CUHK-AG02 (organism)','415369002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415370001','415370001','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus CUHK-AG03 (organism)','415370001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415371002','415371002','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus CUHK-L2 (organism)','415371002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415372009','415372009','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus CUHK-Su10 (organism)','415372009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415373004','415373004','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus CUHK-W1 (organism)','415373004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415374005','415374005','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus cw037 (organism)','415374005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415375006','415375006','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus cw049 (organism)','415375006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415376007','415376007','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus FRA (organism)','415376007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415377003','415377003','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus Frankfurt 1 (organism)','415377003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415378008','415378008','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus GD01 (organism)','415378008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415379000','415379000','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus GD03T0013 (organism)','415379000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415380002','415380002','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus GD69 (organism)','415380002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415381003','415381003','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus GZ-A (organism)','415381003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415382005','415382005','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus GZ-B (organism)','415382005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415383000','415383000','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus GZ-C (organism)','415383000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415384006','415384006','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus GZ-D (organism)','415384006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415385007','415385007','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus GZ02 (organism)','415385007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415386008','415386008','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus GZ43 (organism)','415386008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415387004','415387004','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus GZ50 (organism)','415387004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415388009','415388009','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus GZ60 (organism)','415388009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415389001','415389001','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus HB (organism)','415389001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415390005','415390005','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus HGZ8L1-A (organism)','415390005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415391009','415391009','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus HGZ8L1-B (organism)','415391009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415392002','415392002','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus HGZ8L2 (organism)','415392002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415393007','415393007','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus HKU-36871 (organism)','415393007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415394001','415394001','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus HKU-39849 (organism)','415394001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415395000','415395000','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus HKU-65806 (organism)','415395000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415396004','415396004','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus HKU-66078 (organism)','415396004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415397008','415397008','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus Hong Kong/03/2003 (organism)','415397008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415398003','415398003','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus HPZ-2003 (organism)','415398003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415399006','415399006','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus HSR 1 (organism)','415399006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415400004','415400004','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus HSZ-A (organism)','415400004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415401000','415401000','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus HSZ-Bb (organism)','415401000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415402007','415402007','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus HSZ-Bc (organism)','415402007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415403002','415403002','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus HSZ-Cb (organism)','415403002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415404008','415404008','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus HSZ-Cc (organism)','415404008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415405009','415405009','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus HSZ2-A (organism)','415405009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415406005','415406005','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus HSZ2-Bb (organism)','415406005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415407001','415407001','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus HZS2-C (organism)','415407001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415408006','415408006','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus HZS2-D (organism)','415408006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415409003','415409003','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus HZS2-E (organism)','415409003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415410008','415410008','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus HZS2-Fb (organism)','415410008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415411007','415411007','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus HZS2-Fc (organism)','415411007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415412000','415412000','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus HZS2-JMD (organism)','415412000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415413005','415413005','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus LC1 (organism)','415413005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415414004','415414004','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus LC2 (organism)','415414004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415415003','415415003','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus LC3 (organism)','415415003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415416002','415416002','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus LC4 (organism)','415416002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415417006','415417006','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus LC5 (organism)','415417006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415418001','415418001','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus NS-1 (organism)','415418001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415419009','415419009','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus PUMC01 (organism)','415419009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415420003','415420003','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus PUMC02 (organism)','415420003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415421004','415421004','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus PUMC03 (organism)','415421004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415422006','415422006','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus sf098 (organism)','415422006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415423001','415423001','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus sf099 (organism)','415423001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415424007','415424007','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus Shanghai LY (organism)','415424007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415425008','415425008','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus ShanghaiQXC1 (organism)','415425008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415426009','415426009','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus ShanghaiQXC2 (organism)','415426009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415427000','415427000','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus Sin 3765V (organism)','415427000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415428005','415428005','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus Sin0409 (organism)','415428005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415429002','415429002','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus Sin1-11 (organism)','415429002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415430007','415430007','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus Sin2500 (organism)','415430007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415431006','415431006','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus Sin2677 (organism)','415431006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415432004','415432004','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus Sin2679 (organism)','415432004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415433009','415433009','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus Sin2748 (organism)','415433009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415434003','415434003','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus Sin2774 (organism)','415434003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415435002','415435002','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus Sin3-11 (organism)','415435002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415436001','415436001','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus Sin3408 (organism)','415436001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415437005','415437005','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus Sin3725V (organism)','415437005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415438000','415438000','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus Sin842 (organism)','415438000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415439008','415439008','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus Sin845 (organism)','415439008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415440005','415440005','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus Sin846 (organism)','415440005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415441009','415441009','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus Sin847 (organism)','415441009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415442002','415442002','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus Sin848 (organism)','415442002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415443007','415443007','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus Sin849 (organism)','415443007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415444001','415444001','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus Sin850 (organism)','415444001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415445000','415445000','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus Sin852 (organism)','415445000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415446004','415446004','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus Sin_WNV (organism)','415446004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415447008','415447008','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus SinP1 (organism)','415447008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415448003','415448003','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus SinP2 (organism)','415448003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415449006','415449006','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus SinP3 (organism)','415449006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415450006','415450006','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus SinP4 (organism)','415450006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415451005','415451005','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus SinP5 (organism)','415451005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415452003','415452003','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus SoD (organism)','415452003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415453008','415453008','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus SZ1 (organism)','415453008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415454002','415454002','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus SZ13 (organism)','415454002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415455001','415455001','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus SZ16 (organism)','415455001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415456000','415456000','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus SZ3 (organism)','415456000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415457009','415457009','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus Taiwan (organism)','415457009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415458004','415458004','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus Taiwan TC1 (organism)','415458004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415459007','415459007','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus Taiwan TC2 (organism)','415459007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415460002','415460002','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus Taiwan TC3 (organism)','415460002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415461003','415461003','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus Tor2 (organism)','415461003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415462005','415462005','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus TW (organism)','415462005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415463000','415463000','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus TW-GD1 (organism)','415463000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415464006','415464006','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus TW-GD2 (organism)','415464006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415465007','415465007','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus TW-GD3 (organism)','415465007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415466008','415466008','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus TW-GD5 (organism)','415466008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415467004','415467004','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus TW-HP1 (organism)','415467004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415468009','415468009','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus TW-HP2 (organism)','415468009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415469001','415469001','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus TW-HP3 (organism)','415469001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415470000','415470000','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus TW-HP4 (organism)','415470000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415471001','415471001','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus TW-JC2 (organism)','415471001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415472008','415472008','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus TW-KC1 (organism)','415472008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415473003','415473003','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus TW-KC2 (organism)','415473003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415474009','415474009','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus TW-PH1 (organism)','415474009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415475005','415475005','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus TW-YM4 (organism)','415475005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415476006','415476006','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus TW1 (organism)','415476006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415477002','415477002','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus TW10 (organism)','415477002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415478007','415478007','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus TW11 (organism)','415478007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415479004','415479004','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus TW2 (organism)','415479004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415480001','415480001','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus TW3 (organism)','415480001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415481002','415481002','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus TW4 (organism)','415481002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415482009','415482009','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus TW5 (organism)','415482009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415483004','415483004','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus TW6 (organism)','415483004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415484005','415484005','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus TW7 (organism)','415484005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415485006','415485006','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus TW8 (organism)','415485006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415486007','415486007','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus TW9 (organism)','415486007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415487003','415487003','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus TWC (organism)','415487003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415488008','415488008','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus TWC2 (organism)','415488008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415489000','415489000','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus TWC3 (organism)','415489000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415490009','415490009','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus TWH (organism)','415490009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415491008','415491008','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus TWJ (organism)','415491008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415492001','415492001','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus TWK (organism)','415492001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415493006','415493006','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus TWS (organism)','415493006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415494000','415494000','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus TWY (organism)','415494000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415495004','415495004','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus Urbani (organism)','415495004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415496003','415496003','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus Vietnam (organism)','415496003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415497007','415497007','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus WHU (organism)','415497007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415498002','415498002','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus ZS-B (organism)','415498002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_415499005','415499005','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus ZS-C (organism)','415499005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_707784009','707784009','http://snomed.info/sct','Ribonucleic acid of Severe acute respiratory syndrome coronavirus (substance)','707784009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.875_707785005','707785005','http://snomed.info/sct','Ribonucleic acid of Severe acute respiratory syndrome coronavirus Urbani (substance)','707785005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1472_110389002','110389002','http://snomed.info/sct','Entamoeba histolytica trophozoite (organism)','110389002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1472_110390006','110390006','http://snomed.info/sct','Entamoeba histolytica cyst (organism)','110390006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1472_117271003','117271003','http://snomed.info/sct','Deoxyribonucleic acid of Entamoeba histolytica (substance)','117271003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1472_120988000','120988000','http://snomed.info/sct','Antigen of Entamoeba histolytica (substance)','120988000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1472_460691000124102','460691000124102','http://snomed.info/sct','Entamoeba histolytica cyst and trophozoite (finding)','460691000124102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1472_4716008','4716008','http://snomed.info/sct','Entamoeba histolytica (organism)','4716008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1472_788340006','788340006','http://snomed.info/sct','Cyst of Entamoeba histolytica and trophozoite of Entamoeba histolytica (finding)','788340006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.999_103514009','103514009','http://snomed.info/sct','Chlamydophila pneumoniae (organism)','103514009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.999_114231004','114231004','http://snomed.info/sct','Chlamydophila pecorum (organism)','114231004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.999_114247002','114247002','http://snomed.info/sct','Class Chlamydiae (organism)','114247002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.999_121014004','121014004','http://snomed.info/sct','Antigen of Chlamydophila pneumoniae (substance)','121014004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.999_121018001','121018001','http://snomed.info/sct','Antigen of Chlamydia (substance)','121018001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.999_16241000','16241000','http://snomed.info/sct','Genus Chlamydia (organism)','16241000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.999_407003002','407003002','http://snomed.info/sct','Deoxyribonucleic acid of Chlamydia (substance)','407003002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.999_413818008','413818008','http://snomed.info/sct','Chlamydia muridarum (organism)','413818008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.999_413819000','413819000','http://snomed.info/sct','Chlamydia suis (organism)','413819000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.999_415099003','415099003','http://snomed.info/sct','Phylum Chlamydiae (organism)','415099003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.999_707635007','707635007','http://snomed.info/sct','Ribosomal ribonucleic acid of Chlamydia (substance)','707635007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.999_115289001','115289001','http://snomed.info/sct','Chlamydia trachomatis, serotype A (organism)','115289001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.999_115290005','115290005','http://snomed.info/sct','Chlamydia trachomatis, serotype B (organism)','115290005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.999_115291009','115291009','http://snomed.info/sct','Chlamydia trachomatis, serotype Ba (organism)','115291009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.999_115292002','115292002','http://snomed.info/sct','Chlamydia trachomatis, serotype C (organism)','115292002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.999_115293007','115293007','http://snomed.info/sct','Chlamydia trachomatis, serotype D (organism)','115293007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.999_115294001','115294001','http://snomed.info/sct','Chlamydia trachomatis, serotype E (organism)','115294001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.999_115295000','115295000','http://snomed.info/sct','Chlamydia trachomatis, serotype F (organism)','115295000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.999_115296004','115296004','http://snomed.info/sct','Chlamydia trachomatis, serotype I (organism)','115296004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.999_115297008','115297008','http://snomed.info/sct','Chlamydia trachomatis, serotype J (organism)','115297008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.999_115298003','115298003','http://snomed.info/sct','Chlamydia trachomatis, serotype K (organism)','115298003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.999_115299006','115299006','http://snomed.info/sct','Chlamydia trachomatis, serotype L (organism)','115299006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.999_115300003','115300003','http://snomed.info/sct','Chlamydia trachomatis, serotype L1 (organism)','115300003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.999_115301004','115301004','http://snomed.info/sct','Chlamydia trachomatis, serotype L2 (organism)','115301004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.999_115318000','115318000','http://snomed.info/sct','Chlamydia trachomatis, serotype L3 (organism)','115318000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.999_115319008','115319008','http://snomed.info/sct','Chlamydia trachomatis, serotype G (organism)','115319008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.999_115328009','115328009','http://snomed.info/sct','Chlamydia trachomatis, serotype H (organism)','115328009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.999_121002007','121002007','http://snomed.info/sct','Antigen of Chlamydia trachomatis (substance)','121002007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.999_121015003','121015003','http://snomed.info/sct','Antigen of Chlamydia trachomatis serotype F (substance)','121015003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.999_121016002','121016002','http://snomed.info/sct','Antigen of Chlamydia trachomatis serotype G (substance)','121016002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.999_121017006','121017006','http://snomed.info/sct','Antigen of Chlamydia trachomatis serotype K (substance)','121017006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.999_121106008','121106008','http://snomed.info/sct','Ribosomal ribonucleic acid of Chlamydia trachomatis (substance)','121106008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.999_121181000','121181000','http://snomed.info/sct','Deoxyribonucleic acid of Chlamydia trachomatis (substance)','121181000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.999_121191006','121191006','http://snomed.info/sct','Ribonucleic acid of Chlamydia pneumoniae (substance)','121191006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.999_442505006','442505006','http://snomed.info/sct','Chlamydia trachomatis, serotype Ja (organism)','442505006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.999_59134003','59134003','http://snomed.info/sct','Lymphogranuloma venereum antigen (substance)','59134003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.999_63938009','63938009','http://snomed.info/sct','Chlamydia trachomatis (organism)','63938009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.999_708219005','708219005','http://snomed.info/sct','Deoxyribonucleic acid of Chlamydia trachomatis L2 (substance)','708219005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_108375002','108375002','http://snomed.info/sct','Levomethadyl acetate hydrochloride (substance)','108375002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_108376001','108376001','http://snomed.info/sct','Remifentanil hydrochloride (substance)','108376001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_108378000','108378000','http://snomed.info/sct','Levomethadyl (substance)','108378000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_108505002','108505002','http://snomed.info/sct','Tramadol hydrochloride (substance)','108505002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_111123003','111123003','http://snomed.info/sct','Nalbuphine hydrochloride (substance)','111123003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_1156227003','1156227003','http://snomed.info/sct','Levomethadone (substance)','1156227003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_116352007','116352007','http://snomed.info/sct','Oxycodone terephthalate (substance)','116352007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_1179105003','1179105003','http://snomed.info/sct','Oliceridine fumarate (substance)','1179105003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_118290009','118290009','http://snomed.info/sct','6-O-monoacetylmorphine (substance)','118290009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_1217606008','1217606008','http://snomed.info/sct','Pholcodine monohydrate (substance)','1217606008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_1268991009','1268991009','http://snomed.info/sct','Codeine phosphate anhydrous (substance)','1268991009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_1476002','1476002','http://snomed.info/sct','Codeine sulfate (substance)','1476002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_20413008','20413008','http://snomed.info/sct','Levopropoxyphene (substance)','20413008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_21066009','21066009','http://snomed.info/sct','Buprenorphine hydrochloride (substance)','21066009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_21919007','21919007','http://snomed.info/sct','Opium (substance)','21919007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_23883005','23883005','http://snomed.info/sct','Methadone hydrochloride (substance)','23883005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_24751001','24751001','http://snomed.info/sct','Oxymorphone (substance)','24751001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_261000','261000','http://snomed.info/sct','Codeine phosphate (substance)','261000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_2878005','2878005','http://snomed.info/sct','Pethidine hydrochloride (substance)','2878005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_29190006','29190006','http://snomed.info/sct','Fentanyl citrate (substance)','29190006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_322508000','322508000','http://snomed.info/sct','Dextromoramide tartrate (substance)','322508000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_322538006','322538006','http://snomed.info/sct','Dihydrocodeine tartrate (substance)','322538006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_322554009','322554009','http://snomed.info/sct','Dipipanone hydrochloride (substance)','322554009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_322619008','322619008','http://snomed.info/sct','Phenazocine hydrobromide (substance)','322619008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_372671002','372671002','http://snomed.info/sct','Hydrocodone (substance)','372671002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_373467000','373467000','http://snomed.info/sct','Butorphanol (substance)','373467000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_373492002','373492002','http://snomed.info/sct','Fentanyl (substance)','373492002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_373529000','373529000','http://snomed.info/sct','Morphine (substance)','373529000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_373539006','373539006','http://snomed.info/sct','Nalbuphine (substance)','373539006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_373562008','373562008','http://snomed.info/sct','Tilidine (substance)','373562008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_373699000','373699000','http://snomed.info/sct','Substance with morphinan structure and opioid receptor agonist mechanism of action (substance)','373699000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_373700004','373700004','http://snomed.info/sct','Pethidine analog (substance)','373700004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_373711007','373711007','http://snomed.info/sct','Substance with opioid receptor partial agonist mechanism of action (substance)','373711007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_37451001','37451001','http://snomed.info/sct','Laudanum (substance)','37451001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_37527009','37527009','http://snomed.info/sct','Sufentanil citrate (substance)','37527009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_386839004','386839004','http://snomed.info/sct','Remifentanil (substance)','386839004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_386858008','386858008','http://snomed.info/sct','Tramadol (substance)','386858008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_387024006','387024006','http://snomed.info/sct','Oxycodone hydrochloride (substance)','387024006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_387042001','387042001','http://snomed.info/sct','Dextropropoxyphene (substance)','387042001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_387173000','387173000','http://snomed.info/sct','Buprenorphine (substance)','387173000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_387213004','387213004','http://snomed.info/sct','Pentazocine (substance)','387213004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_387226000','387226000','http://snomed.info/sct','Dipipanone (substance)','387226000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_387275004','387275004','http://snomed.info/sct','Levorphanol (substance)','387275004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_387286002','387286002','http://snomed.info/sct','Methadone (substance)','387286002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_387298007','387298007','http://snomed.info/sct','Pethidine (substance)','387298007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_387322000','387322000','http://snomed.info/sct','Dihydrocodeine (substance)','387322000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_387326002','387326002','http://snomed.info/sct','Phenazocine (substance)','387326002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_387341002','387341002','http://snomed.info/sct','Diamorphine (substance)','387341002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_3874004','3874004','http://snomed.info/sct','Hydrocodone bitartrate (substance)','3874004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_387485001','387485001','http://snomed.info/sct','Hydromorphone hydrochloride (substance)','387485001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_387494007','387494007','http://snomed.info/sct','Codeine (substance)','387494007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_387560008','387560008','http://snomed.info/sct','Alfentanil (substance)','387560008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_387561007','387561007','http://snomed.info/sct','Dextromoramide (substance)','387561007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_395783008','395783008','http://snomed.info/sct','Meptazinol (substance)','395783008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_395804007','395804007','http://snomed.info/sct','Morphine hydrochloride (substance)','395804007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_395822005','395822005','http://snomed.info/sct','Papaveretum (substance)','395822005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_395888007','395888007','http://snomed.info/sct','Squill opiate (substance)','395888007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_396019002','396019002','http://snomed.info/sct','Diamorphine hydrochloride (substance)','396019002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_404642006','404642006','http://snomed.info/sct','Substance with opioid receptor agonist mechanism of action (substance)','404642006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_412079002','412079002','http://snomed.info/sct','Alphaprodine hydrochloride (substance)','412079002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_418000008','418000008','http://snomed.info/sct','Methadone analog (substance)','418000008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_420076001','420076001','http://snomed.info/sct','Phenoperidine (substance)','420076001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_427021006','427021006','http://snomed.info/sct','Ethylmorphine hydrochloride (substance)','427021006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_441757005','441757005','http://snomed.info/sct','Tapentadol (substance)','441757005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_442424007','442424007','http://snomed.info/sct','Morphine tartrate (substance)','442424007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_442699004','442699004','http://snomed.info/sct','Tapentadol hydrochloride (substance)','442699004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_44508008','44508008','http://snomed.info/sct','Hydromorphone (substance)','44508008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_447029004','447029004','http://snomed.info/sct','Norbuprenorphine (substance)','447029004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_49998007','49998007','http://snomed.info/sct','Sufentanil (substance)','49998007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_52885008','52885008','http://snomed.info/sct','Alphaprodine (substance)','52885008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_55452001','55452001','http://snomed.info/sct','Oxycodone (substance)','55452001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_55793008','55793008','http://snomed.info/sct','Anileridine (substance)','55793008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_56297001','56297001','http://snomed.info/sct','Dextropropoxyphene hydrochloride (substance)','56297001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_60886004','60886004','http://snomed.info/sct','Morphine sulfate (substance)','60886004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_64940005','64940005','http://snomed.info/sct','Ethoheptazine (substance)','64940005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_67347006','67347006','http://snomed.info/sct','Levorphanol tartrate (substance)','67347006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_6837005','6837005','http://snomed.info/sct','Dextropropoxyphene napsylate (substance)','6837005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_69241001','69241001','http://snomed.info/sct','Butorphanol tartrate (substance)','69241001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_69899006','69899006','http://snomed.info/sct','Oxymorphone hydrochloride (substance)','69899006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_707837002','707837002','http://snomed.info/sct','Piritramide (substance)','707837002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_71533000','71533000','http://snomed.info/sct','Pentazocine lactate (substance)','71533000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_725666006','725666006','http://snomed.info/sct','Codeine phosphate hemihydrate (substance)','725666006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_725692004','725692004','http://snomed.info/sct','Mitragynine (substance)','725692004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_725709005','725709005','http://snomed.info/sct','Normorphine (substance)','725709005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_736862006','736862006','http://snomed.info/sct','Hydrocodone polistirex (substance)','736862006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_737077007','737077007','http://snomed.info/sct','Dextropropoxyphene napsylate monohydrate (substance)','737077007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_74905005','74905005','http://snomed.info/sct','Ethylmorphine (substance)','74905005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_763002008','763002008','http://snomed.info/sct','Carfentanil (substance)','763002008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_765394005','765394005','http://snomed.info/sct','Codeine hydrochloride anhydrous (substance)','765394005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_766880009','766880009','http://snomed.info/sct','Codeine hydrochloride (substance)','766880009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_768496009','768496009','http://snomed.info/sct','Meptazinol hydrochloride (substance)','768496009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_768549004','768549004','http://snomed.info/sct','Anhydrous morphine (substance)','768549004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_78134008','78134008','http://snomed.info/sct','Piminodine (substance)','78134008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_781635003','781635003','http://snomed.info/sct','3-methylfentanyl (substance)','781635003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_783775007','783775007','http://snomed.info/sct','Norfentanyl (substance)','783775007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_783779001','783779001','http://snomed.info/sct','Methadone metabolite (substance)','783779001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_783803008','783803008','http://snomed.info/sct','Morphine metabolite (substance)','783803008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_82216000','82216000','http://snomed.info/sct','Metazocine (substance)','82216000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_897038008','897038008','http://snomed.info/sct','Oliceridine (substance)','897038008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_90344009','90344009','http://snomed.info/sct','Etazocine (substance)','90344009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_91013003','91013003','http://snomed.info/sct','Pentazocine hydrochloride (substance)','91013003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_96179007','96179007','http://snomed.info/sct','Normeperidine (substance)','96179007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_96180005','96180005','http://snomed.info/sct','Trimeperidine (substance)','96180005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_96181009','96181009','http://snomed.info/sct','Nicomorphine (substance)','96181009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_96182002','96182002','http://snomed.info/sct','Norpropoxyphene (substance)','96182002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_96184001','96184001','http://snomed.info/sct','Alfentanil hydrochloride (substance)','96184001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_96186004','96186004','http://snomed.info/sct','Tilidine hydrochloride (substance)','96186004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_96187008','96187008','http://snomed.info/sct','Carfentanil citrate (substance)','96187008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_96188003','96188003','http://snomed.info/sct','Etorphine (substance)','96188003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_96189006','96189006','http://snomed.info/sct','Etorphine hydrochloride (substance)','96189006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1077_96190002','96190002','http://snomed.info/sct','Ketobemidone (substance)','96190002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.516_26250004','26250004','http://snomed.info/sct','Genus Brucella (organism)','26250004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.516_1086701000112101','1086701000112101','http://snomed.info/sct','Brucella microti (organism)','1086701000112101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.516_1086801000112109','1086801000112109','http://snomed.info/sct','Brucella papionis (organism)','1086801000112109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.516_115638007','115638007','http://snomed.info/sct','Brucella abortus, biovar 1 (organism)','115638007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.516_115639004','115639004','http://snomed.info/sct','Brucella abortus, biovar 2 (organism)','115639004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.516_115640002','115640002','http://snomed.info/sct','Brucella abortus, biovar 3 (organism)','115640002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.516_115641003','115641003','http://snomed.info/sct','Brucella abortus, biovar 4 (organism)','115641003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.516_115642005','115642005','http://snomed.info/sct','Brucella abortus, biovar 5 (organism)','115642005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.516_115643000','115643000','http://snomed.info/sct','Brucella abortus, biovar 6 (organism)','115643000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.516_115644006','115644006','http://snomed.info/sct','Brucella abortus, biovar 9 (organism)','115644006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.516_24224000','24224000','http://snomed.info/sct','Brucella abortus (organism)','24224000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.516_28461002','28461002','http://snomed.info/sct','Brucella neotomae (organism)','28461002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.516_35049005','35049005','http://snomed.info/sct','Brucella ovis (organism)','35049005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.516_38025008','38025008','http://snomed.info/sct','Brucella canis (organism)','38025008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.516_417031003','417031003','http://snomed.info/sct','Brucella suis biovar 3 (organism)','417031003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.516_419212009','419212009','http://snomed.info/sct','Brucella maris (organism)','419212009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.516_430982008','430982008','http://snomed.info/sct','Brucella abortus, vaccinal strain 19 (organism)','430982008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.516_430983003','430983003','http://snomed.info/sct','Brucella abortus, vaccinal strain RB51 (organism)','430983003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.516_449411006','449411006','http://snomed.info/sct','Brucella inopinata (organism)','449411006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.516_470341000124109','470341000124109','http://snomed.info/sct','Brucella suis biovar 1 (organism)','470341000124109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.516_470351000124106','470351000124106','http://snomed.info/sct','Brucella suis biovar 2 (organism)','470351000124106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.516_48317004','48317004','http://snomed.info/sct','Brucella suis (organism)','48317004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.516_698206009','698206009','http://snomed.info/sct','Brucella suis biovar 4 (organism)','698206009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.516_698207000','698207000','http://snomed.info/sct','Brucella ceti (organism)','698207000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.516_698208005','698208005','http://snomed.info/sct','Brucella pinnipedialis (organism)','698208005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.516_698209002','698209002','http://snomed.info/sct','Brucella abortus, biovar 7 (organism)','698209002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.516_707631003','707631003','http://snomed.info/sct','Ribosomal ribonucleic acid of Brucella abortus (substance)','707631003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.516_707633000','707633000','http://snomed.info/sct','Ribosomal ribonucleic acid of Brucella suis (substance)','707633000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.516_708202008','708202008','http://snomed.info/sct','Deoxyribonucleic acid of Brucella abortus (substance)','708202008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.516_708203003','708203003','http://snomed.info/sct','Deoxyribonucleic acid of Brucella melitensis (substance)','708203003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.516_708204009','708204009','http://snomed.info/sct','Deoxyribonucleic acid of Brucella (substance)','708204009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.516_708205005','708205005','http://snomed.info/sct','Deoxyribonucleic acid of Brucella suis (substance)','708205005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.516_709219004','709219004','http://snomed.info/sct','Antigen of Brucella (substance)','709219004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.516_72829003','72829003','http://snomed.info/sct','Brucella melitensis (organism)','72829003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.905_103525000','103525000','http://snomed.info/sct','Prospect Hill virus (organism)','103525000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.905_116662007','116662007','http://snomed.info/sct','Dobrava-Belgrade virus (organism)','116662007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.905_116663002','116663002','http://snomed.info/sct','Sin Nombre virus (organism)','116663002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.905_116664008','116664008','http://snomed.info/sct','Black Creek Canal virus (organism)','116664008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.905_116665009','116665009','http://snomed.info/sct','Bayou virus (organism)','116665009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.905_121193009','121193009','http://snomed.info/sct','Ribonucleic acid of Hantavirus (substance)','121193009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.905_35439004','35439004','http://snomed.info/sct','Seoul virus (organism)','35439004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.905_40754006','40754006','http://snomed.info/sct','Puumala virus (organism)','40754006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.905_441618005','441618005','http://snomed.info/sct','Amur virus (organism)','441618005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.905_441666003','441666003','http://snomed.info/sct','Castelo dos Sonhos virus (organism)','441666003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.905_442001008','442001008','http://snomed.info/sct','Andes orthohantavirus (organism)','442001008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.905_442513007','442513007','http://snomed.info/sct','Araraquara virus (organism)','442513007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.905_442615006','442615006','http://snomed.info/sct','Bermejo virus (organism)','442615006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.905_49445003','49445003','http://snomed.info/sct','Genus Hantavirus (organism)','49445003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.905_52779006','52779006','http://snomed.info/sct','Hantaan virus (organism)','52779006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.905_709342008','709342008','http://snomed.info/sct','Antigen of Hantavirus (substance)','709342008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.905_735350007','735350007','http://snomed.info/sct','Genus Orthohantavirus (organism)','735350007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.905_735353009','735353009','http://snomed.info/sct','Andes Central Plata virus (organism)','735353009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.905_735354003','735354003','http://snomed.info/sct','Hu39694 virus (organism)','735354003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.905_735355002','735355002','http://snomed.info/sct','Lechiguanas virus (organism)','735355002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_117188001','117188001','http://snomed.info/sct','Ribosomal ribonucleic acid of Mycobacterium avium complex (substance)','117188001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_117189009','117189009','http://snomed.info/sct','Ribosomal ribonucleic acid of Mycobacterium avium (substance)','117189009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_117191001','117191001','http://snomed.info/sct','Ribosomal ribonucleic acid of Mycobacterium intracellulare (substance)','117191001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_117192008','117192008','http://snomed.info/sct','Ribosomal ribonucleic acid of Mycobacterium kansasii (substance)','117192008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_707645009','707645009','http://snomed.info/sct','Ribosomal ribonucleic acid of Mycobacterium avium subspecies avium (substance)','707645009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_708369000','708369000','http://snomed.info/sct','Deoxyribonucleic acid of Mycobacterium avium complex (substance)','708369000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_1004145002','1004145002','http://snomed.info/sct','Mycobacterium celeriflavum (organism)','1004145002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_103474001','103474001','http://snomed.info/sct','Mycobacterium fortuitum complex (organism)','103474001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_103475000','103475000','http://snomed.info/sct','Mycobacterium celatum (organism)','103475000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_103476004','103476004','http://snomed.info/sct','Mycobacterium genavense (organism)','103476004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_1079301000112103','1079301000112103','http://snomed.info/sct','Mycobacterium aquaticum (organism)','1079301000112103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_1079501000112109','1079501000112109','http://snomed.info/sct','Mycobacterium grossiae (organism)','1079501000112109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_1079601000112108','1079601000112108','http://snomed.info/sct','Mycobacterium komaniense (organism)','1079601000112108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_1079701000112104','1079701000112104','http://snomed.info/sct','Mycobacterium lehmannii (organism)','1079701000112104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_1079901000112102','1079901000112102','http://snomed.info/sct','Mycobacterium neumannii (organism)','1079901000112102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_1080001000112101','1080001000112101','http://snomed.info/sct','Mycobacterium stephanolepidis (organism)','1080001000112101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_1080101000112100','1080101000112100','http://snomed.info/sct','Mycobacterium persicum (organism)','1080101000112100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_1080201000112106','1080201000112106','http://snomed.info/sct','Mycobacterium shigaense (organism)','1080201000112106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_1080301000112103','1080301000112103','http://snomed.info/sct','Mycobacterium virginiense (organism)','1080301000112103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_1083301000112109','1083301000112109','http://snomed.info/sct','Mycobacterium franklinii (organism)','1083301000112109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_110379001','110379001','http://snomed.info/sct','Mycobacterium, non-tuberculosis (organism)','110379001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_1114801000112105','1114801000112105','http://snomed.info/sct','Mycobacterium attenuatum (organism)','1114801000112105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_1114901000112100','1114901000112100','http://snomed.info/sct','Mycobacterium basiliense (organism)','1114901000112100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_1115001000112100','1115001000112100','http://snomed.info/sct','Mycobacterium decipiens (organism)','1115001000112100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_1115101000112104','1115101000112104','http://snomed.info/sct','Mycobacterium innocens (organism)','1115101000112104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_1115201000112105','1115201000112105','http://snomed.info/sct','Mycobacterium neglectum (organism)','1115201000112105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_1115301000112102','1115301000112102','http://snomed.info/sct','Mycobacterium palauense (organism)','1115301000112102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_1115401000112109','1115401000112109','http://snomed.info/sct','Mycobacterium pseudokansasii (organism)','1115401000112109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_1115501000112108','1115501000112108','http://snomed.info/sct','Mycobacterium syngnathidarum (organism)','1115501000112108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_1115601000112107','1115601000112107','http://snomed.info/sct','Mycobacterium aquiterrae (organism)','1115601000112107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_1115701000112103','1115701000112103','http://snomed.info/sct','Mycobacterium kyogaense (organism)','1115701000112103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_113838007','113838007','http://snomed.info/sct','Mycobacteroides abscessus (organism)','113838007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_113839004','113839004','http://snomed.info/sct','Mycobacterium alvei (organism)','113839004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_113840002','113840002','http://snomed.info/sct','Mycobacterium avium ss avium (organism)','113840002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_113841003','113841003','http://snomed.info/sct','Mycobacterium avium ss paratuberculosis (organism)','113841003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_113842005','113842005','http://snomed.info/sct','Mycobacterium avium ss silvaticum (organism)','113842005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_113843000','113843000','http://snomed.info/sct','Mycobacterium branderi (organism)','113843000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_113844006','113844006','http://snomed.info/sct','Mycobacterium brumae (organism)','113844006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_113845007','113845007','http://snomed.info/sct','Mycobacterium confluentis (organism)','113845007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_113846008','113846008','http://snomed.info/sct','Mycobacterium conspicuum (organism)','113846008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_113847004','113847004','http://snomed.info/sct','Mycobacterium cookii (organism)','113847004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_113848009','113848009','http://snomed.info/sct','Mycobacterium hassiacum (organism)','113848009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_113849001','113849001','http://snomed.info/sct','Mycobacterium hiberniae (organism)','113849001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_113850001','113850001','http://snomed.info/sct','Mycobacterium hodleri (organism)','113850001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_113851002','113851002','http://snomed.info/sct','Mycobacterium interjectum (organism)','113851002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_113852009','113852009','http://snomed.info/sct','Mycobacterium intermedium (organism)','113852009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_113853004','113853004','http://snomed.info/sct','Mycobacterium lentiflavum (organism)','113853004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_113854005','113854005','http://snomed.info/sct','Mycobacterium madagascariense (organism)','113854005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_113856007','113856007','http://snomed.info/sct','Mycobacterium mucogenicum (organism)','113856007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_113857003','113857003','http://snomed.info/sct','Mycobacterium novocastrense (organism)','113857003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_113859000','113859000','http://snomed.info/sct','Mycobacterium peregrinum (organism)','113859000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_113860005','113860005','http://snomed.info/sct','Mycobacterium triplex (organism)','113860005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_1141732007','1141732007','http://snomed.info/sct','Mycobacterium rutilum (organism)','1141732007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_1148624002','1148624002','http://snomed.info/sct','Mycobacterium bourgelatii (organism)','1148624002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_1204092002','1204092002','http://snomed.info/sct','Mycobacterium anyangense (organism)','1204092002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_127522008','127522008','http://snomed.info/sct','Mycobacterium goodii (organism)','127522008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_127523003','127523003','http://snomed.info/sct','Mycobacterium wolinskyi (organism)','127523003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_1507005','1507005','http://snomed.info/sct','Mycobacterium kansasii (organism)','1507005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_16914000','16914000','http://snomed.info/sct','Mycobacterium piscium (organism)','16914000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_20141004','20141004','http://snomed.info/sct','Mycobacterium scrofulaceum (organism)','20141004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_20498000','20498000','http://snomed.info/sct','Mycobacterium chubuense (organism)','20498000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_20973006','20973006','http://snomed.info/sct','Mycobacterium thermoresistibile (organism)','20973006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_21433000','21433000','http://snomed.info/sct','Mycobacterium nonchromogenicum (organism)','21433000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_21996001','21996001','http://snomed.info/sct','Mycobacterium haemophilum (organism)','21996001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_243376004','243376004','http://snomed.info/sct','Mycobacterium avium brunese (organism)','243376004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_243378003','243378003','http://snomed.info/sct','Mycobacterium fortuitum (organism)','243378003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_24618002','24618002','http://snomed.info/sct','Mycobacterium gilvum (organism)','24618002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_27365009','27365009','http://snomed.info/sct','Mycobacterium austroafricanum (organism)','27365009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_29111009','29111009','http://snomed.info/sct','Mycobacterium agri (organism)','29111009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_302561004','302561004','http://snomed.info/sct','Mycobacterium borstelense (organism)','302561004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_333873003','333873003','http://snomed.info/sct','Mycobacterium fortuitum subsp fortuitum (organism)','333873003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_36249008','36249008','http://snomed.info/sct','Mycobacterium komossence (organism)','36249008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_385506001','385506001','http://snomed.info/sct','Mycobacterium murale (organism)','385506001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_385507005','385507005','http://snomed.info/sct','Mycobacterium mageritense (organism)','385507005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_385508000','385508000','http://snomed.info/sct','Mycobacterium septicum (organism)','385508000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_385509008','385509008','http://snomed.info/sct','Mycobacterium elephantis (organism)','385509008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_40333002','40333002','http://snomed.info/sct','Mycobacterium triviale (organism)','40333002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_40713003','40713003','http://snomed.info/sct','Mycobacterium ulcerans (organism)','40713003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_41304005','41304005','http://snomed.info/sct','Mycobacterium obuense (organism)','41304005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_422214005','422214005','http://snomed.info/sct','Mycobacterium nebraskense (organism)','422214005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_427768005','427768005','http://snomed.info/sct','Mycobacterium kubicae (organism)','427768005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_428319005','428319005','http://snomed.info/sct','Mycobacterium immunogenum (organism)','428319005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_428765006','428765006','http://snomed.info/sct','Mycobacterium terrae complex (organism)','428765006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_428856007','428856007','http://snomed.info/sct','Mycobacterium parascrofulaceum (organism)','428856007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_429414009','429414009','http://snomed.info/sct','Mycobacterium saskatchewanense (organism)','429414009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_429844002','429844002','http://snomed.info/sct','Mycobacterium acapulcensis (organism)','429844002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_429901002','429901002','http://snomed.info/sct','Mycobacterium psychrotolerans (organism)','429901002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_429902009','429902009','http://snomed.info/sct','Mycobacterium pyrenivorans (organism)','429902009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_429903004','429903004','http://snomed.info/sct','Mycobacterium ratisbonense (organism)','429903004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_429904005','429904005','http://snomed.info/sct','Mycobacterium sherrisii (organism)','429904005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_429917008','429917008','http://snomed.info/sct','Mycobacterium frederiksbergense (organism)','429917008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_429918003','429918003','http://snomed.info/sct','Mycobacterium hackensackense (organism)','429918003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_429919006','429919006','http://snomed.info/sct','Mycobacterium heckeshornense (organism)','429919006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_429920000','429920000','http://snomed.info/sct','Mycobacterium heidelbergense (organism)','429920000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_429946001','429946001','http://snomed.info/sct','Mycobacterium holsaticum (organism)','429946001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_429947005','429947005','http://snomed.info/sct','Mycobacterium houstonense (organism)','429947005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_429948000','429948000','http://snomed.info/sct','Mycobacterium lacticola (organism)','429948000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_430006007','430006007','http://snomed.info/sct','Mycobacterium visibilis (organism)','430006007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_430014001','430014001','http://snomed.info/sct','Mycobacterium lacus (organism)','430014001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_430487007','430487007','http://snomed.info/sct','Mycobacterium shottsii (organism)','430487007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_430488002','430488002','http://snomed.info/sct','Mycobacterium silvaticum (organism)','430488002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_430489005','430489005','http://snomed.info/sct','Mycobacterium tusciae (organism)','430489005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_430490001','430490001','http://snomed.info/sct','Mycobacterium vanbaalenii (organism)','430490001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_430580007','430580007','http://snomed.info/sct','Mycobacterium cosmeticum (organism)','430580007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_430581006','430581006','http://snomed.info/sct','Mycobacterium doricum (organism)','430581006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_430667000','430667000','http://snomed.info/sct','Mycobacterium chesapeaki (organism)','430667000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_430737001','430737001','http://snomed.info/sct','Mycobacterium liflandii (organism)','430737001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_430738006','430738006','http://snomed.info/sct','Mycobacterium manitobense (organism)','430738006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_430740001','430740001','http://snomed.info/sct','Mycobacterium montefiorense (organism)','430740001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_430911006','430911006','http://snomed.info/sct','Mycobacterium neworleansense (organism)','430911006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_430912004','430912004','http://snomed.info/sct','Mycobacterium palustre (organism)','430912004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_430913009','430913009','http://snomed.info/sct','Mycobacterium parmense (organism)','430913009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_430995003','430995003','http://snomed.info/sct','Mycobacterium boenickei (organism)','430995003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_430996002','430996002','http://snomed.info/sct','Mycobacterium bohemicum (organism)','430996002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_430997006','430997006','http://snomed.info/sct','Mycobacterium botniense (organism)','430997006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_430998001','430998001','http://snomed.info/sct','Mycobacterium brisbanense (organism)','430998001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_431504009','431504009','http://snomed.info/sct','Mycobacterium intracellulare subspecies chimaera (organism)','431504009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_432476008','432476008','http://snomed.info/sct','Mycobacterium canariasense (organism)','432476008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_432820006','432820006','http://snomed.info/sct','Mycobacterium arupense (organism)','432820006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_432888001','432888001','http://snomed.info/sct','Mycobacterium phocaicum (organism)','432888001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_434966321000087109','434966321000087109','http://snomed.info/sct','Mycobacterium marseillense (organism)','434966321000087109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_44760001','44760001','http://snomed.info/sct','Mycobacterium asiaticum (organism)','44760001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_450469003','450469003','http://snomed.info/sct','Mycobacterium salmoniphilum (organism)','450469003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_450471003','450471003','http://snomed.info/sct','Mycobacterium conceptionense (organism)','450471003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_450472005','450472005','http://snomed.info/sct','Mycobacterium monacense (organism)','450472005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_45662006','45662006','http://snomed.info/sct','Mycobacterium terrae (organism)','45662006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_46101000146107','46101000146107','http://snomed.info/sct','Mycobacterium noviomagense (organism)','46101000146107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_468121000124108','468121000124108','http://snomed.info/sct','Mycobacterium mucogenicum group (organism)','468121000124108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_48134004','48134004','http://snomed.info/sct','Mycobacterium aurum (organism)','48134004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_51459000','51459000','http://snomed.info/sct','Mycobacterium neoaurum (organism)','51459000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_53114006','53114006','http://snomed.info/sct','Mycobacterium smegmatis (organism)','53114006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_5371000146101','5371000146101','http://snomed.info/sct','Mycobacterium arosiense (organism)','5371000146101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_5381000146104','5381000146104','http://snomed.info/sct','Mycobacterium colombiense (organism)','5381000146104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_5401000146104','5401000146104','http://snomed.info/sct','Mycobacterium insubricum (organism)','5401000146104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_5421000146107','5421000146107','http://snomed.info/sct','Mycobacterium pseudoshottsii (organism)','5421000146107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_54925005','54925005','http://snomed.info/sct','Mycobacterium vaccae (organism)','54925005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_58503001','58503001','http://snomed.info/sct','Mycobacterium, avium-intracellulare group (organism)','58503001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_58663006','58663006','http://snomed.info/sct','Mycobacterium xenopi (organism)','58663006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_58768005','58768005','http://snomed.info/sct','Mycobacterium poriferae (organism)','58768005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_5885000','5885000','http://snomed.info/sct','Mycobacterium flavescens (organism)','5885000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_58869008','58869008','http://snomed.info/sct','Mycobacterium marinum (organism)','58869008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_60558000','60558000','http://snomed.info/sct','Mycobacterium thamnophis (organism)','60558000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_61708000','61708000','http://snomed.info/sct','Mycobacterium farcinogenes (organism)','61708000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_6199007','6199007','http://snomed.info/sct','Mycobacterium diernhoferi (organism)','6199007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_62644004','62644004','http://snomed.info/sct','Mycobacterium pulveris (organism)','62644004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_65613000','65613000','http://snomed.info/sct','Mycobacterium szulgai (organism)','65613000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_66838002','66838002','http://snomed.info/sct','Mycobacterium duvalii (organism)','66838002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_66940008','66940008','http://snomed.info/sct','Mycobacterium aichiense (organism)','66940008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_698220002','698220002','http://snomed.info/sct','Mycobacterium kumamotonense (organism)','698220002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_700308009','700308009','http://snomed.info/sct','Mycobacterium seoulense (organism)','700308009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_700309001','700309001','http://snomed.info/sct','Mycobacterium paraseoulense (organism)','700309001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_700310006','700310006','http://snomed.info/sct','Mycobacterium paraffinicum (organism)','700310006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_700311005','700311005','http://snomed.info/sct','Mycobacterium bouchedurhonense (organism)','700311005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_703075004','703075004','http://snomed.info/sct','Mycobacterium avium subspecies hominissuis (organism)','703075004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_70463000','70463000','http://snomed.info/sct','Mycobacterium gastri (organism)','70463000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_704995002','704995002','http://snomed.info/sct','Mycobacteroides abscessus subspecies abscessus (organism)','704995002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_705094007','705094007','http://snomed.info/sct','Mycobacteroides abscessus subspecies bolletii (organism)','705094007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_707328006','707328006','http://snomed.info/sct','Mycobacterium paraterrae (organism)','707328006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_708319008','708319008','http://snomed.info/sct','Mycobacterium timonense (organism)','708319008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_708324006','708324006','http://snomed.info/sct','Mycobacterium setense (organism)','708324006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_708329001','708329001','http://snomed.info/sct','Mycobacterium senuense (organism)','708329001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_708336000','708336000','http://snomed.info/sct','Mycobacterium mantenii (organism)','708336000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_708341008','708341008','http://snomed.info/sct','Mycobacterium llatzerense (organism)','708341008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_708346003','708346003','http://snomed.info/sct','Mycobacterium florentinum (organism)','708346003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_708352002','708352002','http://snomed.info/sct','Mycobacterium algericum (organism)','708352002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_709682006','709682006','http://snomed.info/sct','Mycobacterium iranicum (organism)','709682006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_712909005','712909005','http://snomed.info/sct','Mycobacterium vulneris (organism)','712909005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_712910000','712910000','http://snomed.info/sct','Mycobacterium riyadhense (organism)','712910000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_712911001','712911001','http://snomed.info/sct','Mycobacterium kyorinense (organism)','712911001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_712912008','712912008','http://snomed.info/sct','Mycobacterium heraklionense (organism)','712912008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_712913003','712913003','http://snomed.info/sct','Mycobacterium europaeum (organism)','712913003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_713303008','713303008','http://snomed.info/sct','Mycobacterium rufum (organism)','713303008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_713611009','713611009','http://snomed.info/sct','Mycobacterium chlorophenolicum (organism)','713611009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_716339009','716339009','http://snomed.info/sct','Mycobacterium aubagnense (organism)','716339009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_716340006','716340006','http://snomed.info/sct','Mycobacterium bacteremicum (organism)','716340006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_716341005','716341005','http://snomed.info/sct','Mycobacterium longobardum (organism)','716341005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_716342003','716342003','http://snomed.info/sct','Mycobacterium engbaekii (organism)','716342003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_717083003','717083003','http://snomed.info/sct','Mycobacterium angelicum (organism)','717083003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_717660000','717660000','http://snomed.info/sct','Mycobacterium stomatepiae (organism)','717660000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_718808008','718808008','http://snomed.info/sct','Mycobacterium minnesotense (organism)','718808008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_718809000','718809000','http://snomed.info/sct','Mycobacterium parakoreense (organism)','718809000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_72130005','72130005','http://snomed.info/sct','Mycobacterium rhodesiae (organism)','72130005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_722251009','722251009','http://snomed.info/sct','Mycobacterium simiae complex (organism)','722251009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_72477006','72477006','http://snomed.info/sct','Mycobacterium tokaiense (organism)','72477006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_734247004','734247004','http://snomed.info/sct','Mycobacterium fluoranthenivorans (organism)','734247004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_73576007','73576007','http://snomed.info/sct','Mycobacterium malmoense (organism)','73576007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_74212009','74212009','http://snomed.info/sct','Mycobacterium senegalense (organism)','74212009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_74917007','74917007','http://snomed.info/sct','Mycobacterium gadium (organism)','74917007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_752713421000087100','752713421000087100','http://snomed.info/sct','Mycobacterium chelonae subspecies niacinogenes (organism)','752713421000087100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_75356003','75356003','http://snomed.info/sct','Mycobacterium fortuitum ss. acetamidolytica (organism)','75356003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_767041006','767041006','http://snomed.info/sct','Mycobacterium paraintracellulare (organism)','767041006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_770693009','770693009','http://snomed.info/sct','Mycobacterium arabiense (organism)','770693009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_772046008','772046008','http://snomed.info/sct','Mycobacterium paraense (organism)','772046008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_78112006','78112006','http://snomed.info/sct','Mycobacterium phlei (organism)','78112006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_78444002','78444002','http://snomed.info/sct','Mycobacterium sphagni (organism)','78444002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_785848005','785848005','http://snomed.info/sct','Mycobacteroides abscessus subspecies massiliense (organism)','785848005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_785912007','785912007','http://snomed.info/sct','Mycobacterium eburneum (organism)','785912007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_785916005','785916005','http://snomed.info/sct','Mycobacterium montmartrense (organism)','785916005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_785921008','785921008','http://snomed.info/sct','Mycobacterium talmoniae (organism)','785921008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_79817008','79817008','http://snomed.info/sct','Mycobacterium shimoidei (organism)','79817008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_83723009','83723009','http://snomed.info/sct','Mycobacterium avium (organism)','83723009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_83841006','83841006','http://snomed.info/sct','Mycobacterium intracellulare (organism)','83841006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_840692009','840692009','http://snomed.info/sct','Mycobacterium alsense (organism)','840692009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_84180005','84180005','http://snomed.info/sct','Mycobacterium simiae (organism)','84180005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_89896008','89896008','http://snomed.info/sct','Mycobacterium chitae (organism)','89896008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_909007','909007','http://snomed.info/sct','Mycobacterium parafortuitum (organism)','909007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_91336002','91336002','http://snomed.info/sct','Mycobacterium porcinum (organism)','91336002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_9679001','9679001','http://snomed.info/sct','Mycobacterium moriokaense (organism)','9679001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1800_9939008','9939008','http://snomed.info/sct','Mycobacterium fallax (organism)','9939008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1646_113674000','113674000','http://snomed.info/sct','Burkholderia mallei (organism)','113674000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1646_708206006','708206006','http://snomed.info/sct','Deoxyribonucleic acid of Burkholderia mallei (substance)','708206006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1646_709221009','709221009','http://snomed.info/sct','Antigen of Burkholderia mallei (substance)','709221009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1646_709873002','709873002','http://snomed.info/sct','Antibody to Burkholderia mallei (substance)','709873002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.580_243605006','243605006','http://snomed.info/sct','Tick-borne encephalitis virus subgroup (organism)','243605006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.580_32323003','32323003','http://snomed.info/sct','Tick-borne encephalitis virus (organism)','32323003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.580_414649007','414649007','http://snomed.info/sct','Mammalian tick-borne virus group (organism)','414649007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.580_415526006','415526006','http://snomed.info/sct','Siberian tick-borne encephalitis virus (organism)','415526006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.580_6186009','6186009','http://snomed.info/sct','Far Eastern tick-borne encephalitis virus (organism)','6186009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.580_81370003','81370003','http://snomed.info/sct','European tick-borne encephalitis virus (organism)','81370003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.580_19874008','19874008','http://snomed.info/sct','Mayaro virus (organism)','19874008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.580_28335002','28335002','http://snomed.info/sct','Rift Valley fever virus (organism)','28335002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.580_28375005','28375005','http://snomed.info/sct','Genus Flavivirus (organism)','28375005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.580_30681002','30681002','http://snomed.info/sct','Sindbis virus (organism)','30681002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.580_314824006','314824006','http://snomed.info/sct','Tentative flavivirus (organism)','314824006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.580_314825007','314825007','http://snomed.info/sct','Tentative mosquito borne flavivirus (organism)','314825007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.580_31989009','31989009','http://snomed.info/sct','Murray Valley encephalitis virus (organism)','31989009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.580_32137001','32137001','http://snomed.info/sct','Kyasanur Forest disease virus (organism)','32137001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.580_32458000','32458000','http://snomed.info/sct','Ross River virus (organism)','32458000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.580_33660003','33660003','http://snomed.info/sct','Oropouche virus (organism)','33660003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.580_51253001','51253001','http://snomed.info/sct','Toscana virus (organism)','51253001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.580_56932004','56932004','http://snomed.info/sct','Barmah Forest virus (organism)','56932004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.580_588234111000087104','588234111000087104','http://snomed.info/sct','Highlands J virus (organism)','588234111000087104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.580_6895004','6895004','http://snomed.info/sct','Tahyna virus (organism)','6895004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.580_707639001','707639001','http://snomed.info/sct','Ribosomal ribonucleic acid of Flavivirus (substance)','707639001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.580_707887009','707887009','http://snomed.info/sct','Ribonucleic acid of Flavivirus (substance)','707887009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.580_709177003','709177003','http://snomed.info/sct','Antigen of Rift valley fever virus (substance)','709177003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.580_709341001','709341001','http://snomed.info/sct','Antigen of Flavivirus (substance)','709341001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.580_71518008','71518008','http://snomed.info/sct','Rocio virus (organism)','71518008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.580_764947004','764947004','http://snomed.info/sct','Heartland virus (organism)','764947004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.580_764948009','764948009','http://snomed.info/sct','Bourbon virus (organism)','764948009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.580_764949001','764949001','http://snomed.info/sct','Alkhurma virus (organism)','764949001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.580_85183000','85183000','http://snomed.info/sct','Usutu virus (organism)','85183000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.580_8905000','8905000','http://snomed.info/sct','O''nyong-nyong virus (organism)','8905000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.580_121093006','121093006','http://snomed.info/sct','Antigen of Venezuelan equine encephalitis virus (substance)','121093006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.580_62958000','62958000','http://snomed.info/sct','Venezuelan equine encephalomyelitis virus (organism)','62958000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.580_721926000','721926000','http://snomed.info/sct','Venezuelan equine encephalitis virus strain AG80-663 (organism)','721926000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_1119277000','1119277000','http://snomed.info/sct','Antigen of Influenza A virus A/Indonesia/05/2005 (H5N1)-like virus strain split virion hemagglutinin (substance)','1119277000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_1157322000','1157322000','http://snomed.info/sct','Antigen of Influenza A virus A/California/7/2009 (H1N1)-like virus strain split virion hemagglutinin (substance)','1157322000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_25031000087107','25031000087107','http://snomed.info/sct','Antigen of Influenza A virus A/Kansas/14/2017 (H3N2)-like virus strain split virion hemagglutinin (substance)','25031000087107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_25041000087101','25041000087101','http://snomed.info/sct','Antigen of Influenza A virus A/Brisbane/02/2018 (H1N1)pdm09-like virus strain split virion hemagglutinin (substance)','25041000087101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_25061000087100','25061000087100','http://snomed.info/sct','Antigen of Influenza B virus B/Colorado/06/2017 (B/Victoria/2/87 lineage)-like virus strain split virion hemagglutinin (substance)','25061000087100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_25081000087106','25081000087106','http://snomed.info/sct','Antigen of Influenza B virus B/Phuket/3073/2013 (B/Yamagata/16/88 lineage)-like virus strain split virion hemagglutinin (substance)','25081000087106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_25161000087104','25161000087104','http://snomed.info/sct','Antigen of Influenza A virus A/Brisbane/02/2018 (H1N1)pdm09-like virus strain surface subunit hemagglutinin (substance)','25161000087104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_25181000087105','25181000087105','http://snomed.info/sct','Antigen of Influenza A virus A/Kansas/14/2017 (H3N2)-like virus strain surface subunit hemagglutinin (substance)','25181000087105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_25201000087109','25201000087109','http://snomed.info/sct','Antigen of Influenza B virus B/Colorado/06/2017 (B/Victoria/2/87 lineage)-like virus strain surface subunit hemagglutinin (substance)','25201000087109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_25221000087103','25221000087103','http://snomed.info/sct','Antigen of Influenza B virus B/Phuket/3073/2013 (B/Yamagata/16/88 lineage)-like virus strain surface subunit hemagglutinin (substance)','25221000087103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_407478001','407478001','http://snomed.info/sct','Genus Betainfluenzavirus (organism)','407478001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_441345003','441345003','http://snomed.info/sct','Influenza B virus present (finding)','441345003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_121008006','121008006','http://snomed.info/sct','Antigen of Influenza B virus (substance)','121008006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_25481000087101','25481000087101','http://snomed.info/sct','Antigen of Influenza B virus Yamagata lineage (substance)','25481000087101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_25491000087104','25491000087104','http://snomed.info/sct','Antigen of Influenza B virus Victoria lineage (substance)','25491000087104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_407480007','407480007','http://snomed.info/sct','Influenza B virus (organism)','407480007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_426959005','426959005','http://snomed.info/sct','Influenza B virus Yamagata lineage (organism)','426959005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_427672003','427672003','http://snomed.info/sct','Influenza B virus Victoria lineage (organism)','427672003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_707925003','707925003','http://snomed.info/sct','Ribonucleic acid of Influenza B virus (substance)','707925003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_713151006','713151006','http://snomed.info/sct','Influenza B virus/Shanghai/361/2002 (organism)','713151006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_722259006','722259006','http://snomed.info/sct','Influenza B virus Malaysia lineage (organism)','722259006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_121006005','121006005','http://snomed.info/sct','Antigen of Influenza A virus (substance)','121006005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_161000124103','161000124103','http://snomed.info/sct','Influenza A virus subtype H1 swine-like (organism)','161000124103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_181000124108','181000124108','http://snomed.info/sct','Influenza A virus present (finding)','181000124108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_221000124104','221000124104','http://snomed.info/sct','Influenza A virus subtype H1 2009 pandemic strain (organism)','221000124104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_231000124101','231000124101','http://snomed.info/sct','Influenza A virus subtype H1 2009 pandemic strain present (finding)','231000124101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_25371000087106','25371000087106','http://snomed.info/sct','Antigen of Influenza A virus subtype H3N2 (substance)','25371000087106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_359829002','359829002','http://snomed.info/sct','Influenzavirus, type A, avian (organism)','359829002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_359833009','359833009','http://snomed.info/sct','Influenzavirus, type A, porcine (organism)','359833009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_389069008','389069008','http://snomed.info/sct','Avian influenza virus, low pathogenic (organism)','389069008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_389070009','389070009','http://snomed.info/sct','Avian influenza virus, highly pathogenic (organism)','389070009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_407477006','407477006','http://snomed.info/sct','Genus Alphainfluenzavirus (organism)','407477006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_407479009','407479009','http://snomed.info/sct','Influenza A virus (organism)','407479009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_420362005','420362005','http://snomed.info/sct','Influenzavirus type A, avian, H1N1 strain (organism)','420362005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_420508007','420508007','http://snomed.info/sct','Influenzavirus type A, avian, H3N2 strain (organism)','420508007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_421539000','421539000','http://snomed.info/sct','Influenzavirus type A, avian, H1N2 strain (organism)','421539000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_429401000124105','429401000124105','http://snomed.info/sct','Influenza A virus subtype H3N2 variant (organism)','429401000124105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_440927002','440927002','http://snomed.info/sct','Influenza A virus subtype H2 present (finding)','440927002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_441043003','441043003','http://snomed.info/sct','Influenza A virus subtype H1 present (finding)','441043003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_441049004','441049004','http://snomed.info/sct','Influenza A virus subtype H3 present (finding)','441049004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_442269004','442269004','http://snomed.info/sct','Antigen of Influenza A virus subtype H1N1 (substance)','442269004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_442352004','442352004','http://snomed.info/sct','Influenza A virus subtype H1N1 (organism)','442352004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_446396002','446396002','http://snomed.info/sct','Influenza A virus subtype H1 (organism)','446396002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_446524007','446524007','http://snomed.info/sct','Influenza A virus A/Leningrad/621/86 (H1N1) (organism)','446524007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_446525008','446525008','http://snomed.info/sct','Influenza A virus A/Leningrad/624/86 (H1N1) (organism)','446525008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_446645007','446645007','http://snomed.info/sct','Influenza A virus subtype H3 (organism)','446645007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_446646008','446646008','http://snomed.info/sct','Influenza A virus subtype H3N2 (organism)','446646008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_447493004','447493004','http://snomed.info/sct','Influenza A virus A/Bangkok/1/79 (H3N2) (organism)','447493004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_447499000','447499000','http://snomed.info/sct','Influenza A virus A/Bangkok/2/79 (H3N2) (organism)','447499000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_447503006','447503006','http://snomed.info/sct','Influenza A virus A/Port Chalmers/1/73 (H3N2) (organism)','447503006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_447504000','447504000','http://snomed.info/sct','Influenza A virus A/Texas/1/77 (H3N2) (organism)','447504000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_447508002','447508002','http://snomed.info/sct','Influenza A virus A/Leningrad/385/80 (H3N2) (organism)','447508002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_447522002','447522002','http://snomed.info/sct','Influenza A virus A/Mississippi/1/85 (H3N2) (organism)','447522002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_447530001','447530001','http://snomed.info/sct','Influenza A virus A/Philippines/2/82 (H3N2) (organism)','447530001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_447573005','447573005','http://snomed.info/sct','Influenza A virus A/England/42/72 (H3N2) (organism)','447573005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_447578001','447578001','http://snomed.info/sct','Influenza A virus A/Hong Kong/1/68 (H3N2) (organism)','447578001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_447587005','447587005','http://snomed.info/sct','Influenza A virus A/Victoria/3/75 (H3N2) (organism)','447587005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_448803002','448803002','http://snomed.info/sct','Influenza A virus subtype N1 (organism)','448803002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_448835002','448835002','http://snomed.info/sct','Influenza A virus subtype N2 (organism)','448835002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_449024000','449024000','http://snomed.info/sct','Pandemic Influenza A (H1N1) 2009 (organism)','449024000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_450480003','450480003','http://snomed.info/sct','Influenza A virus subtype H3N2v (organism)','450480003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_699872005','699872005','http://snomed.info/sct','Influenza A virus untyped strain present (finding)','699872005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_702482001','702482001','http://snomed.info/sct','Influenza A H1N1 virus 2009 pandemic strain present (finding)','702482001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_707902004','707902004','http://snomed.info/sct','Ribonucleic acid of Influenza A virus H1N1 (substance)','707902004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_707903009','707903009','http://snomed.info/sct','Ribonucleic acid of Influenza A virus H1 (substance)','707903009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_707905002','707905002','http://snomed.info/sct','Ribonucleic acid of Influenza A virus H3 (substance)','707905002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_707913001','707913001','http://snomed.info/sct','Ribonucleic acid of Influenza A virus hemagglutinin (substance)','707913001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_707914007','707914007','http://snomed.info/sct','Ribonucleic acid of Influenza A virus matrix protein (substance)','707914007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_707915008','707915008','http://snomed.info/sct','Ribonucleic acid of Influenza A virus N1 (substance)','707915008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_707916009','707916009','http://snomed.info/sct','Ribonucleic acid of Influenza A virus N2 (substance)','707916009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_707917000','707917000','http://snomed.info/sct','Ribonucleic acid of Influenza A virus neuraminidase (substance)','707917000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_707918005','707918005','http://snomed.info/sct','Ribonucleic acid of Influenza A virus non-structural protein (substance)','707918005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_707919002','707919002','http://snomed.info/sct','Ribonucleic acid of Influenza A virus nucleoprotein (substance)','707919002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_707920008','707920008','http://snomed.info/sct','Ribonucleic acid of Influenza A virus polymerase A (substance)','707920008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_707921007','707921007','http://snomed.info/sct','Ribonucleic acid of Influenza A virus polymerase B2 (substance)','707921007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_707922000','707922000','http://snomed.info/sct','Ribonucleic acid of Influenza A virus polymerase (substance)','707922000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_707923005','707923005','http://snomed.info/sct','Ribonucleic acid of Influenza A virus (substance)','707923005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_709361007','709361007','http://snomed.info/sct','Antigen of Influenza A virus subtype H1 (substance)','709361007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_709362000','709362000','http://snomed.info/sct','Antigen of Influenza A virus subtype H3 (substance)','709362000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_711330007','711330007','http://snomed.info/sct','Influenza A virus subtype H1N1 detected (finding)','711330007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_715333003','715333003','http://snomed.info/sct','Influenza A virus, not subtype H1N1 (organism)','715333003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_720272003','720272003','http://snomed.info/sct','Antigen of Porcine Influenza A virus (substance)','720272003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_720313003','720313003','http://snomed.info/sct','Antigen to Swine influenza virus (substance)','720313003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_772807005','772807005','http://snomed.info/sct','Influenza A virus subtype H3N8 (organism)','772807005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_772809008','772809008','http://snomed.info/sct','Influenza A virus subtype H1N2 (organism)','772809008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_1011000124101','1011000124101','http://snomed.info/sct','Influenza A virus subtype H5 asian strain detected (finding)','1011000124101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_421264001','421264001','http://snomed.info/sct','Influenzavirus type A, avian, H5N1 strain (organism)','421264001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_441343005','441343005','http://snomed.info/sct','Influenza A virus subtype H5 present (finding)','441343005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_446397006','446397006','http://snomed.info/sct','Influenza A virus subtype H2 (organism)','446397006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_446647004','446647004','http://snomed.info/sct','Influenza A virus subtype H5 (organism)','446647004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_446648009','446648009','http://snomed.info/sct','Influenza A virus subtype H7 (organism)','446648009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_446649001','446649001','http://snomed.info/sct','Influenza A virus subtype H9 (organism)','446649001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_448325003','448325003','http://snomed.info/sct','Influenza A virus subtype H9N2 (organism)','448325003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_609444009','609444009','http://snomed.info/sct','Influenza A virus subtype H7N9 (organism)','609444009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_700349009','700349009','http://snomed.info/sct','Influenza A virus subtype H10 (organism)','700349009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_700350009','700350009','http://snomed.info/sct','Influenza A virus subtype H10N8 (organism)','700350009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_707904003','707904003','http://snomed.info/sct','Ribonucleic acid of Influenza A virus H2 (substance)','707904003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_707906001','707906001','http://snomed.info/sct','Ribonucleic acid of Influenza A virus H5 Asian lineage (substance)','707906001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_707907005','707907005','http://snomed.info/sct','Ribonucleic acid of Influenza A virus H5 (substance)','707907005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_707908000','707908000','http://snomed.info/sct','Ribonucleic acid of Influenza A virus H5a (substance)','707908000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_707909008','707909008','http://snomed.info/sct','Ribonucleic acid of Influenza A virus H5b (substance)','707909008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_707910003','707910003','http://snomed.info/sct','Ribonucleic acid of Influenza A virus H6 (substance)','707910003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_707911004','707911004','http://snomed.info/sct','Ribonucleic acid of Influenza A virus H7 (substance)','707911004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_707912006','707912006','http://snomed.info/sct','Ribonucleic acid of Influenza A virus H9 (substance)','707912006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_708119004','708119004','http://snomed.info/sct','Influenza A virus subtype H7 present (finding)','708119004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_708120005','708120005','http://snomed.info/sct','Influenza A virus subtype H9 present (finding)','708120005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_708527000','708527000','http://snomed.info/sct','Influenza A virus subtype H5N8 (organism)','708527000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_715346008','715346008','http://snomed.info/sct','Influenza A virus subtype H7N7 (organism)','715346008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_715347004','715347004','http://snomed.info/sct','Influenza A virus subtype H7N3 (organism)','715347004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_715348009','715348009','http://snomed.info/sct','Influenza A virus subtype H7N2 (organism)','715348009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_715349001','715349001','http://snomed.info/sct','Influenza A virus subtype H2N2 (organism)','715349001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_715350001','715350001','http://snomed.info/sct','Influenza A virus subtype H10N7 (organism)','715350001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_715870001','715870001','http://snomed.info/sct','Influenza A virus, not subtype H1 and not subtype H3 (organism)','715870001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_772827006','772827006','http://snomed.info/sct','Influenza A virus subtype H5N1 (organism)','772827006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.340_871771002','871771002','http://snomed.info/sct','Antigen of Influenza A virus subtype H5N1 (substance)','871771002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.341_1003776009','1003776009','http://snomed.info/sct','Campylobacter hepaticus (organism)','1003776009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.341_103427005','103427005','http://snomed.info/sct','Campylobacter upsaliensis (organism)','103427005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.341_113522008','113522008','http://snomed.info/sct','Campylobacter helveticus (organism)','113522008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.341_113523003','113523003','http://snomed.info/sct','Campylobacter jejuni ss doylei (organism)','113523003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.341_113524009','113524009','http://snomed.info/sct','Campylobacter jejuni ss jejuni (organism)','113524009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.341_113525005','113525005','http://snomed.info/sct','Campylobacter rectus (organism)','113525005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.341_113526006','113526006','http://snomed.info/sct','Campylobacter showae (organism)','113526006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.341_113527002','113527002','http://snomed.info/sct','Campylobacter hyointestinalis ss hyointestinalis (organism)','113527002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.341_113528007','113528007','http://snomed.info/sct','Campylobacter gracilis (organism)','113528007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.341_116037008','116037008','http://snomed.info/sct','Campylobacter curvus (organism)','116037008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.341_116386003','116386003','http://snomed.info/sct','Campylobacter lari (organism)','116386003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.341_121105007','121105007','http://snomed.info/sct','Campylobacter species ribosomal ribonucleic acid (substance)','121105007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.341_121178005','121178005','http://snomed.info/sct','Ribosomal ribonucleic acid of Campylobacter coli (substance)','121178005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.341_121179002','121179002','http://snomed.info/sct','Ribosomal ribonucleic acid of Campylobacter jejuni (substance)','121179002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.341_1269473002','1269473002','http://snomed.info/sct','Hippurate-negative Campylobacter jejuni or Campylobacter coli (finding)','1269473002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.341_1296578002','1296578002','http://snomed.info/sct','Campylobacter massiliensis (organism)','1296578002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.341_19552006','19552006','http://snomed.info/sct','Campylobacter sputorum ss. bubulus (organism)','19552006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.341_24171000181105','24171000181105','http://snomed.info/sct','Campylobacter geochelonis (organism)','24171000181105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.341_243357001','243357001','http://snomed.info/sct','Campylobacter sputorum biovar fecalis (organism)','243357001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.341_255820005','255820005','http://snomed.info/sct','Campylobacter cytotoxin (substance)','255820005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.341_35408001','35408001','http://snomed.info/sct','Genus Campylobacter (organism)','35408001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.341_40614002','40614002','http://snomed.info/sct','Campylobacter coli (organism)','40614002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.341_416679003','416679003','http://snomed.info/sct','Campylobacter hominis (organism)','416679003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.341_421303007','421303007','http://snomed.info/sct','Ribosomal ribonucleic acid of Campylobacter lari (substance)','421303007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.341_432459009','432459009','http://snomed.info/sct','Campylobacter hyointestinalis subspecies lawsonii (organism)','432459009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.341_432460004','432460004','http://snomed.info/sct','Campylobacter insulaenigrae (organism)','432460004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.341_432537009','432537009','http://snomed.info/sct','Campylobacter lanienae (organism)','432537009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.341_436521000124107','436521000124107','http://snomed.info/sct','Hippurate-negative Campylobacter jejuni/Campylobacter coli (organism)','436521000124107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.341_445776001','445776001','http://snomed.info/sct','Campylobacter subantarcticus (organism)','445776001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.341_446191000','446191000','http://snomed.info/sct','Campylobacter lari subspecies concheus (organism)','446191000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.341_447727006','447727006','http://snomed.info/sct','Campylobacter canadensis (organism)','447727006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.341_447728001','447728001','http://snomed.info/sct','Campylobacter cuniculorum (organism)','447728001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.341_447797004','447797004','http://snomed.info/sct','Campylobacter peloridis (organism)','447797004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.341_448130009','448130009','http://snomed.info/sct','Campylobacter avium (organism)','448130009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.341_448403005','448403005','http://snomed.info/sct','Campylobacter sputorum biovar paraureolyticus (organism)','448403005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.341_448945001','448945001','http://snomed.info/sct','Campylobacter lari subspecies lari (organism)','448945001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.341_450602004','450602004','http://snomed.info/sct','Campylobacter ureolyticus (organism)','450602004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.341_450609008','450609008','http://snomed.info/sct','Campylobacter volucris (organism)','450609008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.341_58928003','58928003','http://snomed.info/sct','Campylobacter sputorum ss. sputorum (organism)','58928003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.341_60817000','60817000','http://snomed.info/sct','Campylobacter fetus ss. venerealis (organism)','60817000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.341_64589009','64589009','http://snomed.info/sct','Campylobacter fetus ss. fetus (organism)','64589009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.341_66543000','66543000','http://snomed.info/sct','Campylobacter jejuni (organism)','66543000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.341_703009006','703009006','http://snomed.info/sct','Campylobacter jejuni or Campylobacter coli (finding)','703009006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.341_708209004','708209004','http://snomed.info/sct','Deoxyribonucleic acid of Campylobacter jejuni (substance)','708209004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.341_708210009','708210009','http://snomed.info/sct','Deoxyribonucleic acid of Campylobacter (substance)','708210009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.341_709378003','709378003','http://snomed.info/sct','Antigen of Campylobacter fetus (substance)','709378003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.341_710331003','710331003','http://snomed.info/sct','Anaerobic Campylobacter species (organism)','710331003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.341_712668002','712668002','http://snomed.info/sct','Campylobacter antigen detected (finding)','712668002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.341_715324000','715324000','http://snomed.info/sct','Campylobacter species, not Campylobacter jejuni (organism)','715324000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.341_720167003','720167003','http://snomed.info/sct','Deoxyribonucleic acid of diarrheagenic Campylobacter species (substance)','720167003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.341_726497006','726497006','http://snomed.info/sct','Fluoroquinolone resistant Campylobacter (organism)','726497006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.341_782519001','782519001','http://snomed.info/sct','Campylobacter iguaniorum (organism)','782519001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.341_783431009','783431009','http://snomed.info/sct','Ribosomal ribonucleic acid of Campylobacter (substance)','783431009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.341_784049009','784049009','http://snomed.info/sct','Deoxyribonucleic acid of diarrheagenic Campylobacter (substance)','784049009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.341_830230009','830230009','http://snomed.info/sct','Campylobacter fetus subspecies testudinum (organism)','830230009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.341_84210007','84210007','http://snomed.info/sct','Campylobacter fetus (organism)','84210007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.341_87402003','87402003','http://snomed.info/sct','Campylobacter mucosalis (organism)','87402003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.341_9041007','9041007','http://snomed.info/sct','Campylobacter hyointestinalis (organism)','9041007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.341_91524009','91524009','http://snomed.info/sct','Campylobacter sputorum (organism)','91524009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.341_9892000','9892000','http://snomed.info/sct','Campylobacter concisus (organism)','9892000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.100_121074009','121074009','http://snomed.info/sct','Antigen of Bordetella pertussis (substance)','121074009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.100_24921000087105','24921000087105','http://snomed.info/sct','Antigen of Bordetella pertussis filamentous hemagglutinin (substance)','24921000087105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.100_24931000087107','24931000087107','http://snomed.info/sct','Antigen of Bordetella pertussis fimbriae (substance)','24931000087107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.100_24991000087108','24991000087108','http://snomed.info/sct','Antigen of Bordetella pertussis pertactin (substance)','24991000087108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.100_25141000087100','25141000087100','http://snomed.info/sct','Antigen of Bordetella pertussis fimbriae 2 (substance)','25141000087100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.100_25151000087102','25151000087102','http://snomed.info/sct','Antigen of Bordetella pertussis fimbriae 3 (substance)','25151000087102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.100_25471000087103','25471000087103','http://snomed.info/sct','Antigen of Bordetella pertussis toxoid (substance)','25471000087103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.100_255834005','255834005','http://snomed.info/sct','Pertussis toxin (substance)','255834005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.100_5247005','5247005','http://snomed.info/sct','Bordetella pertussis (organism)','5247005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.100_708162003','708162003','http://snomed.info/sct','Deoxyribonucleic acid of Bordetella pertussis (substance)','708162003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.100_713610005','713610005','http://snomed.info/sct','Antigen of acellular Bordetella pertussis (substance)','713610005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.100_714076000','714076000','http://snomed.info/sct','Antigen of whole cell Bordetella pertussis (substance)','714076000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_1003646009','1003646009','http://snomed.info/sct','Legionella pneumophila serogroup, not serogroup 1 (organism)','1003646009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_103447002','103447002','http://snomed.info/sct','Legionella adelaidensis (organism)','103447002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_103448007','103448007','http://snomed.info/sct','Legionella brunensis (organism)','103448007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_103449004','103449004','http://snomed.info/sct','Legionella fairfieldensis (organism)','103449004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_103450004','103450004','http://snomed.info/sct','Legionella geestiana (organism)','103450004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_103451000','103451000','http://snomed.info/sct','Legionella gratiana (organism)','103451000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_103452007','103452007','http://snomed.info/sct','Legionella lansingensis (organism)','103452007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_103453002','103453002','http://snomed.info/sct','Legionella londiniensis (organism)','103453002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_103454008','103454008','http://snomed.info/sct','Legionella moravica (organism)','103454008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_103455009','103455009','http://snomed.info/sct','Legionella nautarum (organism)','103455009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_103456005','103456005','http://snomed.info/sct','Legionella pneumophila ss. fraseri (organism)','103456005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_103457001','103457001','http://snomed.info/sct','Legionella pneumophila ss. pascullei (organism)','103457001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_103458006','103458006','http://snomed.info/sct','Legionella pneumophila ss. pneumophila (organism)','103458006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_103459003','103459003','http://snomed.info/sct','Legionella quinlivanii (organism)','103459003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_103460008','103460008','http://snomed.info/sct','Legionella shakespearei (organism)','103460008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_103461007','103461007','http://snomed.info/sct','Legionella tucsonensis (organism)','103461007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_103462000','103462000','http://snomed.info/sct','Legionella worsleiensis (organism)','103462000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_103463005','103463005','http://snomed.info/sct','Legionella pneumophila serogroup 1 (organism)','103463005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_103464004','103464004','http://snomed.info/sct','Legionella pneumophila serogroup 2 (organism)','103464004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_103465003','103465003','http://snomed.info/sct','Legionella pneumophila serogroup 3 (organism)','103465003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_103466002','103466002','http://snomed.info/sct','Legionella pneumophila serogroup 4 (organism)','103466002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_103467006','103467006','http://snomed.info/sct','Legionella pneumophila serogroup 5 (organism)','103467006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_103468001','103468001','http://snomed.info/sct','Legionella pneumophila serogroup 6 (organism)','103468001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_103469009','103469009','http://snomed.info/sct','Legionella pneumophila serogroup 7 (organism)','103469009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_103470005','103470005','http://snomed.info/sct','Legionella pneumophila serogroup 8 (organism)','103470005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_103471009','103471009','http://snomed.info/sct','Legionella pneumophila serogroup 9 (organism)','103471009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_113720002','113720002','http://snomed.info/sct','Legionella dumoffii (organism)','113720002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_113721003','113721003','http://snomed.info/sct','Legionella gormanii (organism)','113721003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_113806002','113806002','http://snomed.info/sct','Legionella lytica (organism)','113806002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_113807006','113807006','http://snomed.info/sct','Legionella quateirensis (organism)','113807006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_113808001','113808001','http://snomed.info/sct','Legionella waltersii (organism)','113808001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_115515003','115515003','http://snomed.info/sct','Legionella longbeachae, serogroup 1 (organism)','115515003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_115516002','115516002','http://snomed.info/sct','Legionella longbeachae, serogroup 2 (organism)','115516002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_115517006','115517006','http://snomed.info/sct','Legionella, non-pneumophia species (organism)','115517006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_116379006','116379006','http://snomed.info/sct','Legionella maceachernii (organism)','116379006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_116380009','116380009','http://snomed.info/sct','Legionella micdadei (organism)','116380009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_120991000','120991000','http://snomed.info/sct','Antigen of Legionella pneumophila serogroup 1 (substance)','120991000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_121028005','121028005','http://snomed.info/sct','Antigen of Legionella longbeachae serogroup 1 (substance)','121028005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_121029002','121029002','http://snomed.info/sct','Antigen of Legionella longbeachae serogroup 2 (substance)','121029002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_121073003','121073003','http://snomed.info/sct','Antigen of Legionella pneumophila (substance)','121073003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_121116000','121116000','http://snomed.info/sct','Legionella species ribosomal ribonucleic acid (substance)','121116000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_121186005','121186005','http://snomed.info/sct','Legionella species deoxyribonucleic acid (substance)','121186005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_131322009','131322009','http://snomed.info/sct','Legionella pneumophilia serogroup 10 (organism)','131322009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_131323004','131323004','http://snomed.info/sct','Legionella pneumophilia serogroup 11 (organism)','131323004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_131324005','131324005','http://snomed.info/sct','Legionella pneumophilia serogroup 12 (organism)','131324005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_131325006','131325006','http://snomed.info/sct','Legionella pneumophilia serogroup 13 (organism)','131325006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_131326007','131326007','http://snomed.info/sct','Legionella pneumophilia serogroup 14 (organism)','131326007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_14121003','14121003','http://snomed.info/sct','Legionella steigerwaltii (organism)','14121003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_17083009','17083009','http://snomed.info/sct','Legionella feeleii (organism)','17083009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_17298000','17298000','http://snomed.info/sct','Legionella rubrilucens (organism)','17298000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_18214000','18214000','http://snomed.info/sct','Legionella anisa (organism)','18214000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_185883611000087104','185883611000087104','http://snomed.info/sct','Legionella hackeliae serogroup 1 (organism)','185883611000087104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_22592008','22592008','http://snomed.info/sct','Legionella birminghamensis (organism)','22592008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_28109006','28109006','http://snomed.info/sct','Legionella erythra (organism)','28109006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_304915231000087102','304915231000087102','http://snomed.info/sct','Legionella sainthelensi serogroup 1 (organism)','304915231000087102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_3128001','3128001','http://snomed.info/sct','Legionella israelensis (organism)','3128001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_317082141000087106','317082141000087106','http://snomed.info/sct','Legionella feeleii serogroup 2 (organism)','317082141000087106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_38322001','38322001','http://snomed.info/sct','Legionella parisiensis (organism)','38322001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_39739007','39739007','http://snomed.info/sct','Legionella jordanis (organism)','39739007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_401198008','401198008','http://snomed.info/sct','Legionella serotype (organism)','401198008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_432325006','432325006','http://snomed.info/sct','Legionella drancourtii (organism)','432325006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_432453005','432453005','http://snomed.info/sct','Legionella fallonii (organism)','432453005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_432712001','432712001','http://snomed.info/sct','Legionella drozanskii (organism)','432712001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_432713006','432713006','http://snomed.info/sct','Legionella rowbothamii (organism)','432713006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_432714000','432714000','http://snomed.info/sct','Legionella beliardensis (organism)','432714000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_433048001','433048001','http://snomed.info/sct','Legionella taurinensis (organism)','433048001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_433050009','433050009','http://snomed.info/sct','Legionella busanensis (organism)','433050009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_433052001','433052001','http://snomed.info/sct','Legionella gresilensis (organism)','433052001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_450611004','450611004','http://snomed.info/sct','Legionella bozemanae (organism)','450611004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_5111000146108','5111000146108','http://snomed.info/sct','Legionella dresdenensis (organism)','5111000146108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_5121000146103','5121000146103','http://snomed.info/sct','Legionella impletisoli (organism)','5121000146103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_5131000146101','5131000146101','http://snomed.info/sct','Legionella yabuuchiae (organism)','5131000146101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_52462004','52462004','http://snomed.info/sct','Legionella cherrii (organism)','52462004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_570536261000087106','570536261000087106','http://snomed.info/sct','Legionella sainthelensi serogroup 2 (organism)','570536261000087106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_58923007','58923007','http://snomed.info/sct','Legionella cincinnatiensis (organism)','58923007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_58939000','58939000','http://snomed.info/sct','Legionella hackeliae (organism)','58939000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_638008','638008','http://snomed.info/sct','Legionella oakridgensis (organism)','638008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_64930007','64930007','http://snomed.info/sct','Legionella spiritensis (organism)','64930007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_708338004','708338004','http://snomed.info/sct','Deoxyribonucleic acid of Legionella micdadei (substance)','708338004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_708339007','708339007','http://snomed.info/sct','Deoxyribonucleic acid of Legionella pneumophila (substance)','708339007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_709241004','709241004','http://snomed.info/sct','Antigen of Legionella (substance)','709241004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_72814000','72814000','http://snomed.info/sct','Legionella santicrucis (organism)','72814000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_7527002','7527002','http://snomed.info/sct','Genus Legionella (organism)','7527002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_783583004','783583004','http://snomed.info/sct','Ribosomal ribonucleic acid of Legionella (substance)','783583004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_783820007','783820007','http://snomed.info/sct','Deoxyribonucleic acid of Legionella (substance)','783820007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_801523611000087100','801523611000087100','http://snomed.info/sct','Legionella bozemanii Serogroup 1 (organism)','801523611000087100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_80897008','80897008','http://snomed.info/sct','Legionella pneumophila (organism)','80897008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_8147000','8147000','http://snomed.info/sct','Legionella wadsworthii (organism)','8147000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_844125861000087102','844125861000087102','http://snomed.info/sct','Legionella bozemanii serogroup 2 (organism)','844125861000087102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_87271006','87271006','http://snomed.info/sct','Legionella sainthelens (organism)','87271006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_89605004','89605004','http://snomed.info/sct','Legionella longbeachae (organism)','89605004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_89709001','89709001','http://snomed.info/sct','Legionella jamestowniensis (organism)','89709001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_937671351000087109','937671351000087109','http://snomed.info/sct','Legionella feeleii Serogroup 1 (organism)','937671351000087109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.463_998010041000087101','998010041000087101','http://snomed.info/sct','Legionella hackeliae serogroup 2 (organism)','998010041000087101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.586_120989008','120989008','http://snomed.info/sct','Antigen of Lassa mammarenavirus (substance)','120989008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.586_171000221106','171000221106','http://snomed.info/sct','Antigen of Junin virus (substance)','171000221106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.586_243622008','243622008','http://snomed.info/sct','Nairovirus serogroup Crimean-Congo hemorrhagic fever (organism)','243622008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.586_26352009','26352009','http://snomed.info/sct','Junin virus (organism)','26352009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.586_311506003','311506003','http://snomed.info/sct','Guanarito virus (organism)','311506003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.586_311508002','311508002','http://snomed.info/sct','Sabia virus (organism)','311508002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.586_422448009','422448009','http://snomed.info/sct','Reston ebolavirus (organism)','422448009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.586_422839008','422839008','http://snomed.info/sct','Lake Victoria marburgvirus (organism)','422839008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.586_423042009','423042009','http://snomed.info/sct','Ivory Coast ebolavirus (organism)','423042009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.586_424116003','424116003','http://snomed.info/sct','Sudan ebolavirus (organism)','424116003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.586_424206003','424206003','http://snomed.info/sct','Genus Ebolavirus (organism)','424206003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.586_424421007','424421007','http://snomed.info/sct','Genus Marburgvirus (organism)','424421007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.586_425092008','425092008','http://snomed.info/sct','Zaire virus (organism)','425092008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.586_450597006','450597006','http://snomed.info/sct','Bundibugyo ebolavirus (organism)','450597006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.586_450622000','450622000','http://snomed.info/sct','Lujo virus (organism)','450622000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.586_707880006','707880006','http://snomed.info/sct','Ribonucleic acid of Ebola virus (substance)','707880006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.586_707931000','707931000','http://snomed.info/sct','Ribonucleic acid of Marburg virus (substance)','707931000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.586_709227008','709227008','http://snomed.info/sct','Antigen of Marburg virus (substance)','709227008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.586_709374001','709374001','http://snomed.info/sct','Antigen of Ebolavirus (substance)','709374001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.586_71489006','71489006','http://snomed.info/sct','Machupo virus (organism)','71489006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.586_79875007','79875007','http://snomed.info/sct','Crimean-Congo hemorrhagic fever virus (organism)','79875007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.586_85944001','85944001','http://snomed.info/sct','Lassa virus (organism)','85944001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_10334001','10334001','http://snomed.info/sct','Yersinia intermedia (organism)','10334001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_103430003','103430003','http://snomed.info/sct','Yersinia enterocolitica serogroup O:3 (organism)','103430003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_103431004','103431004','http://snomed.info/sct','Yersinia enterocolitica serogroup O:5 (organism)','103431004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_103432006','103432006','http://snomed.info/sct','Yersinia enterocolitica serogroup O:8 (organism)','103432006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_103433001','103433001','http://snomed.info/sct','Yersinia enterocolitica serogroup O:9 (organism)','103433001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_103434007','103434007','http://snomed.info/sct','Yersinia bercovieri (organism)','103434007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_103435008','103435008','http://snomed.info/sct','Yersinia mollaretii (organism)','103435008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_116502002','116502002','http://snomed.info/sct','Yersinia enterocolitica, serogroup O:13 (organism)','116502002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_116503007','116503007','http://snomed.info/sct','Yersinia enterocoltica, serogroup O:8,14 (organism)','116503007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_255833004','255833004','http://snomed.info/sct','Yersinia enterotoxin (substance)','255833004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_363762009','363762009','http://snomed.info/sct','Yersinia enterocolitica serogroup O:48 (organism)','363762009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_415854005','415854005','http://snomed.info/sct','Yersinia enterocolitica non-serogroupable (organism)','415854005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_415855006','415855006','http://snomed.info/sct','Yersinia enterocolitica serogroup O:1,2a,3 (organism)','415855006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_415856007','415856007','http://snomed.info/sct','Yersinia enterocolitica serogroup O:12, 25 (organism)','415856007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_415857003','415857003','http://snomed.info/sct','Yersinia enterocolitica serogroup O:13a,13b (organism)','415857003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_415858008','415858008','http://snomed.info/sct','Yersinia enterocolitica serogroup O:19 (organism)','415858008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_415859000','415859000','http://snomed.info/sct','Yersinia enterocolitica serogroup O:20 (organism)','415859000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_415860005','415860005','http://snomed.info/sct','Yersinia enterocolitica serogroup O:21 (organism)','415860005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_415861009','415861009','http://snomed.info/sct','Yersinia enterocolitica serogroup O:2a,3 (organism)','415861009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_415862002','415862002','http://snomed.info/sct','Yersinia enterocolitica serogroup O:4,32 (organism)','415862002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_415863007','415863007','http://snomed.info/sct','Yersinia enterocolitica serogroup O:5, 27 (organism)','415863007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_415864001','415864001','http://snomed.info/sct','Yersinia enterocolitica, not O:3; O:8; or O:5,27 (organism)','415864001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_428139002','428139002','http://snomed.info/sct','Yersinia enterocolitica, serogroup O:14 (organism)','428139002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_446489003','446489003','http://snomed.info/sct','Yersinia massiliensis (organism)','446489003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_450391006','450391006','http://snomed.info/sct','Yersinia aleksiciae (organism)','450391006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_450392004','450392004','http://snomed.info/sct','Yersinia similis (organism)','450392004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_4668009','4668009','http://snomed.info/sct','Genus Yersinia (organism)','4668009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_64125009','64125009','http://snomed.info/sct','Yersinia ruckeri (organism)','64125009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_65255000','65255000','http://snomed.info/sct','Yersinia enterocolitica (organism)','65255000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_705166001','705166001','http://snomed.info/sct','Yersinia enterocolitica subspecies enterocolitica (organism)','705166001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_705167005','705167005','http://snomed.info/sct','Yersinia enterocolitica subspecies palearctica (organism)','705167005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_707996008','707996008','http://snomed.info/sct','Yersinia adhesion protein (substance)','707996008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_708506005','708506005','http://snomed.info/sct','Deoxyribonucleic acid of Yersinia (substance)','708506005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_720758006','720758006','http://snomed.info/sct','Yersinia enterocolitica biotype 1A (organism)','720758006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_720759003','720759003','http://snomed.info/sct','Yersinia enterocolitica biotype 1B (organism)','720759003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_720760008','720760008','http://snomed.info/sct','Yersinia enterocolitica biotype 2 (organism)','720760008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_720761007','720761007','http://snomed.info/sct','Yersinia enterocolitica biotype 3 (organism)','720761007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_720762000','720762000','http://snomed.info/sct','Yersinia enterocolitica biotype 4 (organism)','720762000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_720763005','720763005','http://snomed.info/sct','Yersinia enterocolitica biotype 5 (organism)','720763005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_720764004','720764004','http://snomed.info/sct','Yersinia enterocolitica serogroup O rough (organism)','720764004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_720765003','720765003','http://snomed.info/sct','Yersinia enterocolitica serogroup O:6,30 (organism)','720765003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_720766002','720766002','http://snomed.info/sct','Yersinia enterocolitica serogroup O:6,31 (organism)','720766002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_720767006','720767006','http://snomed.info/sct','Yersinia enterocolitica serogroup O:7,8 (organism)','720767006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_720768001','720768001','http://snomed.info/sct','Yersinia enterocolitica serogroup O:10 (organism)','720768001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_720769009','720769009','http://snomed.info/sct','Yersinia enterocolitica serogroup O:16 (organism)','720769009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_720771009','720771009','http://snomed.info/sct','Yersinia enterocolitica serogroup O:22 (organism)','720771009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_720772002','720772002','http://snomed.info/sct','Yersinia enterocolitica serogroup O:36 (organism)','720772002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_720773007','720773007','http://snomed.info/sct','Yersinia enterocolitica serogroup O:57 (organism)','720773007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_720774001','720774001','http://snomed.info/sct','Yersinia enterocolitica serogroup O:18 (organism)','720774001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_720775000','720775000','http://snomed.info/sct','Yersinia enterocolitica serogroup O:1,2,3 (organism)','720775000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_720776004','720776004','http://snomed.info/sct','Yersinia enterocolitica serogroup O:2,3 (organism)','720776004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_720777008','720777008','http://snomed.info/sct','Yersinia enterocolitica biotype 1A non-serotypable (organism)','720777008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_720778003','720778003','http://snomed.info/sct','Yersinia enterocolitica biotype 1A serotype O rough (organism)','720778003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_720779006','720779006','http://snomed.info/sct','Yersinia enterocolitica biotype 1A serotype O:5 (organism)','720779006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_720780009','720780009','http://snomed.info/sct','Yersinia enterocolitica biotype 1A serotype O:6,30 (organism)','720780009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_720781008','720781008','http://snomed.info/sct','Yersinia enterocolitica biotype 1A serotype O:6,31 (organism)','720781008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_720782001','720782001','http://snomed.info/sct','Yersinia enterocolitica biotype 1A serotype O:7,8 (organism)','720782001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_720784000','720784000','http://snomed.info/sct','Yersinia enterocolitica biotype 1A serotype O:7,13 (organism)','720784000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_720785004','720785004','http://snomed.info/sct','Yersinia enterocolitica serogroup O:7,13 (organism)','720785004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_720786003','720786003','http://snomed.info/sct','Yersinia enterocolitica biotype 1A serotype O:10 (organism)','720786003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_720787007','720787007','http://snomed.info/sct','Yersinia enterocolitica biotype 1A serotype O:14 (organism)','720787007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_720788002','720788002','http://snomed.info/sct','Yersinia enterocolitica biotype 1A serotype O:16 (organism)','720788002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_720790001','720790001','http://snomed.info/sct','Yersinia enterocolitica biotype 1A serotype O:22 (organism)','720790001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_720791002','720791002','http://snomed.info/sct','Yersinia enterocolitica biotype 1A serotype O:36 (organism)','720791002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_720792009','720792009','http://snomed.info/sct','Yersinia enterocolitica biotype 1A serotype O:57 (organism)','720792009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_720793004','720793004','http://snomed.info/sct','Yersinia enterocolitica biotype 1B non-serotypable (organism)','720793004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_720794005','720794005','http://snomed.info/sct','Yersinia enterocolitica biotype 1B serotype O:8 (organism)','720794005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_720795006','720795006','http://snomed.info/sct','Yersinia enterocolitica biotype 1B serotype O:13a,13b (organism)','720795006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_720796007','720796007','http://snomed.info/sct','Yersinia enterocolitica biotype 1B serotype O:18 (organism)','720796007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_720797003','720797003','http://snomed.info/sct','Yersinia enterocolitica biotype 1B serotype O:20 (organism)','720797003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_720798008','720798008','http://snomed.info/sct','Yersinia enterocolitica biotype 1B serotype O:21 (organism)','720798008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_720799000','720799000','http://snomed.info/sct','Yersinia enterocolitica biotype 2 serotype O:5,27 (organism)','720799000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_720800001','720800001','http://snomed.info/sct','Yersinia enterocolitica biotype 2 serotype O:9 (organism)','720800001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_720801002','720801002','http://snomed.info/sct','Yersinia enterocolitica biotype 3 serotype O:1,2,3 (organism)','720801002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_720802009','720802009','http://snomed.info/sct','Yersinia enterocolitica biotype 3 serotype O:3 (organism)','720802009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_720803004','720803004','http://snomed.info/sct','Yersinia enterocolitica biotype 3 serotype O:5,27 (organism)','720803004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_720804005','720804005','http://snomed.info/sct','Yersinia enterocolitica biotype 4 serotype O:3 (organism)','720804005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_720805006','720805006','http://snomed.info/sct','Yersinia enterocolitica biotype 5 serotype O:2,3 (organism)','720805006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_720869003','720869003','http://snomed.info/sct','Yersinia enterocolitica biotype 3 non-serotypable (organism)','720869003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_720870002','720870002','http://snomed.info/sct','Yersinia enterocolitica serogroup O:4,33 (organism)','720870002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_720871003','720871003','http://snomed.info/sct','Yersinia enterocolitica biotype 1A serotype O:4,33 (organism)','720871003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_732253000','732253000','http://snomed.info/sct','Yersinia enterocolitica biotype 1A serotype O:19,8 (organism)','732253000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_732254006','732254006','http://snomed.info/sct','Yersinia enterocolitica serogroup O:19,8 (organism)','732254006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_85159008','85159008','http://snomed.info/sct','Yersinia frederiksenii (organism)','85159008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_87145000','87145000','http://snomed.info/sct','Yersinia rohdei (organism)','87145000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_90530002','90530002','http://snomed.info/sct','Yersinia pseudotuberculosis (organism)','90530002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_91042006','91042006','http://snomed.info/sct','Yersinia kristensenii (organism)','91042006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1247_91246002','91246002','http://snomed.info/sct','Yersinia aldovae (organism)','91246002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1489_5933001','5933001','http://snomed.info/sct','Clostridioides difficile (organism)','5933001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1489_708222007','708222007','http://snomed.info/sct','Deoxyribonucleic acid of Clostridium difficile (substance)','708222007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1489_736050006','736050006','http://snomed.info/sct','Toxigenic Clostridium difficile (organism)','736050006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1489_736051005','736051005','http://snomed.info/sct','Non-toxigenic Clostridium difficile (organism)','736051005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1489_763166007','763166007','http://snomed.info/sct','Clostridium difficile strain BI/NAP1/027 (organism)','763166007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1882_1085301000112105','1085301000112105','http://snomed.info/sct','Carbapenemase-producing Acinetobacter calcoaceticus (organism)','1085301000112105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1882_1085501000112104','1085501000112104','http://snomed.info/sct','Carbapenemase-producing Acinetobacter (organism)','1085501000112104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1882_1085701000112109','1085701000112109','http://snomed.info/sct','Carbapenemase-producing Acinetobacter johnsonii (organism)','1085701000112109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1882_1085801000112101','1085801000112101','http://snomed.info/sct','Carbapenemase-producing Acinetobacter junii (organism)','1085801000112101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1882_1085901000112106','1085901000112106','http://snomed.info/sct','Carbapenemase-producing Acinetobacter lwoffii (organism)','1085901000112106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1882_1086001000112103','1086001000112103','http://snomed.info/sct','Carbapenemase-producing Acinetobacter nosocomialis (organism)','1086001000112103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1882_1086101000112102','1086101000112102','http://snomed.info/sct','Carbapenemase-producing Acinetobacter radioresistens (organism)','1086101000112102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1882_1086201000112108','1086201000112108','http://snomed.info/sct','Carbapenemase-producing Acinetobacter ursingii (organism)','1086201000112108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1882_1099001000112108','1099001000112108','http://snomed.info/sct','Carbapenemase-producing Kluyvera (organism)','1099001000112108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1882_1099201000112103','1099201000112103','http://snomed.info/sct','Carbapenemase-producing Kluyvera ascorbata (organism)','1099201000112103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1882_1099601000112101','1099601000112101','http://snomed.info/sct','Carbapenemase-producing Kluyvera georgiana (organism)','1099601000112101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1882_1100001000112108','1100001000112108','http://snomed.info/sct','Carbapenemase-producing Leclercia (organism)','1100001000112108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1882_1100201000112103','1100201000112103','http://snomed.info/sct','Carbapenemase-producing Leclercia adecarboxylata (organism)','1100201000112103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1882_1101601000112106','1101601000112106','http://snomed.info/sct','Carbapenemase-producing Morganella morganii (organism)','1101601000112106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1882_1102601000112100','1102601000112100','http://snomed.info/sct','Carbapenemase-producing Proteus (organism)','1102601000112100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1882_1103001000112103','1103001000112103','http://snomed.info/sct','Carbapenemase-producing Proteus mirabilis (organism)','1103001000112103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1882_1103601000112105','1103601000112105','http://snomed.info/sct','Carbapenemase-producing Providencia (organism)','1103601000112105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1882_1104001000112101','1104001000112101','http://snomed.info/sct','Carbapenemase-producing Providencia rettgeri (organism)','1104001000112101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1882_1105401000112106','1105401000112106','http://snomed.info/sct','Carbapenemase-producing Raoultella ornithinolytica (organism)','1105401000112106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1882_1105601000112109','1105601000112109','http://snomed.info/sct','Carbapenemase-producing Raoultella planticola (organism)','1105601000112109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1882_1106001000112106','1106001000112106','http://snomed.info/sct','Carbapenemase-producing Salmonella (organism)','1106001000112106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1882_1106601000112104','1106601000112104','http://snomed.info/sct','Carbapenemase-producing Serratia fonticola (organism)','1106601000112104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1882_30731000112102','30731000112102','http://snomed.info/sct','Carbapenemase-producing Acinetobacter seifertii (organism)','30731000112102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1882_33691000087101','33691000087101','http://snomed.info/sct','Carbapenemase-producing Klebsiella variicola (organism)','33691000087101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1882_44601000087107','44601000087107','http://snomed.info/sct','Carbapenemase-producing Citrobacter freundii complex (organism)','44601000087107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1882_51271000087100','51271000087100','http://snomed.info/sct','Carbapenemase-producing Klebsiella oxytoca (organism)','51271000087100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1882_51281000087103','51281000087103','http://snomed.info/sct','Carbapenemase-producing Enterobacterales (organism)','51281000087103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1882_734350003','734350003','http://snomed.info/sct','Carbapenemase-producing bacteria (organism)','734350003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1882_1089101000112105','1089101000112105','http://snomed.info/sct','Carbapenemase-producing Citrobacter amalonaticus (organism)','1089101000112105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1882_1089301000112107','1089301000112107','http://snomed.info/sct','Carbapenemase-producing Citrobacter braakii (organism)','1089301000112107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1882_1089501000112101','1089501000112101','http://snomed.info/sct','Carbapenemase-producing Citrobacter (organism)','1089501000112101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1882_1089701000112106','1089701000112106','http://snomed.info/sct','Carbapenemase-producing Citrobacter farmeri (organism)','1089701000112106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1882_1089901000112108','1089901000112108','http://snomed.info/sct','Carbapenemase-producing Citrobacter freundii (organism)','1089901000112108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1882_1090401000112109','1090401000112109','http://snomed.info/sct','Carbapenemase-producing Citrobacter koseri (organism)','1090401000112109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1882_1091201000112104','1091201000112104','http://snomed.info/sct','Carbapenemase-producing Citrobacter werkmanii (organism)','1091201000112104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1882_1091401000112100','1091401000112100','http://snomed.info/sct','Carbapenemase-producing Citrobacter youngae (organism)','1091401000112100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1882_1107201000112104','1107201000112104','http://snomed.info/sct','Carbapenemase-producing Serratia marcescens (organism)','1107201000112104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1882_734351004','734351004','http://snomed.info/sct','Carbapenemase-producing Enterobacteriaceae (organism)','734351004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1882_762987008','762987008','http://snomed.info/sct','Extended spectrum beta-lactamase and carbapenemase producing bacteria (organism)','762987008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1882_770392005','770392005','http://snomed.info/sct','Carbapenemase-producing Raoultella (organism)','770392005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1882_773734006','773734006','http://snomed.info/sct','OXA-48 carbapenemase-producing bacteria (organism)','773734006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1882_1085401000112103','1085401000112103','http://snomed.info/sct','Carbapenemase-producing Acinetobacter baumannii-Acinetobacter calcoaceticus complex (organism)','1085401000112103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1882_737526007','737526007','http://snomed.info/sct','Carbapenemase-producing Acinetobacter baumannii (organism)','737526007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1882_1092401000112105','1092401000112105','http://snomed.info/sct','Carbapenemase-producing Cronobacter sakazakii (organism)','1092401000112105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1882_1093401000112101','1093401000112101','http://snomed.info/sct','Carbapenemase-producing Enterobacter (organism)','1093401000112101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1882_1093601000112103','1093601000112103','http://snomed.info/sct','Carbapenemase-producing Enterobacter asburiae (organism)','1093601000112103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1882_1094301000112105','1094301000112105','http://snomed.info/sct','Carbapenemase-producing Enterobacter hormaechei (organism)','1094301000112105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1882_1096801000112108','1096801000112108','http://snomed.info/sct','Carbapenemase-producing Klebsiella (organism)','1096801000112108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1882_1098201000112108','1098201000112108','http://snomed.info/sct','Carbapenemase-producing Klebsiella pneumoniae (organism)','1098201000112108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1882_734352006','734352006','http://snomed.info/sct','Carbapenemase-producing Klebsiella aerogenes (organism)','734352006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1882_734353001','734353001','http://snomed.info/sct','Carbapenemase-producing Enterobacter cloacae complex (organism)','734353001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1882_737527003','737527003','http://snomed.info/sct','Carbapenemase-producing Pseudomonas aeruginosa (organism)','737527003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1882_737528008','737528008','http://snomed.info/sct','Carbapenemase-producing Escherichia coli (organism)','737528008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1882_737529000','737529000','http://snomed.info/sct','Carbapenemase-producing Enterobacter cloacae (organism)','737529000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1882_713171002','713171002','http://snomed.info/sct','Klebsiella pneumoniae carbapenemase 2 producing Klebsiella pneumoniae (organism)','713171002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2212_30451000087103','30451000087103','http://snomed.info/sct','Cronobacter condimenti (organism)','30451000087103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2212_30461000087100','30461000087100','http://snomed.info/sct','Cronobacter dublinensis subspecies dublinensis (organism)','30461000087100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2212_30771000087100','30771000087100','http://snomed.info/sct','Cronobacter dublinensis subspecies lactaridi (organism)','30771000087100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2212_444664004','444664004','http://snomed.info/sct','Genus Cronobacter (organism)','444664004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2212_445559002','445559002','http://snomed.info/sct','Cronobacter dublinensis (organism)','445559002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2212_445560007','445560007','http://snomed.info/sct','Cronobacter malonaticus (organism)','445560007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2212_445561006','445561006','http://snomed.info/sct','Cronobacter muytjensii (organism)','445561006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2212_445562004','445562004','http://snomed.info/sct','Cronobacter sakazakii (organism)','445562004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2212_445639005','445639005','http://snomed.info/sct','Cronobacter turicensis (organism)','445639005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2212_5711000087108','5711000087108','http://snomed.info/sct','Cronobacter dublinensis subspecies lausannensis (organism)','5711000087108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2212_707335003','707335003','http://snomed.info/sct','Cronobacter universalis (organism)','707335003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2212_1092401000112105','1092401000112105','http://snomed.info/sct','Carbapenemase-producing Cronobacter sakazakii (organism)','1092401000112105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.346_13755001','13755001','http://snomed.info/sct','Corynebacterium diphtheriae type mitis (organism)','13755001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.346_151000221104','151000221104','http://snomed.info/sct','Antigen of Corynebacterium diphtheriae (substance)','151000221104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.346_243255007','243255007','http://snomed.info/sct','Corynebacterium diphtheriae var belfanti (organism)','243255007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.346_443377006','443377006','http://snomed.info/sct','Toxigenic Corynebacterium diphtheriae (organism)','443377006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.346_443401009','443401009','http://snomed.info/sct','Nontoxigenic Corynebacterium diphtheriae (organism)','443401009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.346_55123007','55123007','http://snomed.info/sct','Diphtheria toxin (substance)','55123007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.346_5851001','5851001','http://snomed.info/sct','Corynebacterium diphtheriae (organism)','5851001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.346_708224008','708224008','http://snomed.info/sct','Deoxyribonucleic acid of Corynebacterium diphtheriae (substance)','708224008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.346_70876001','70876001','http://snomed.info/sct','Corynebacterium diphtheriae type intermedius (organism)','70876001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.346_722313007','722313007','http://snomed.info/sct','Nontoxigenic Corynebacterium diphtheriae type belfanti (organism)','722313007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.346_722336003','722336003','http://snomed.info/sct','Nontoxigenic Corynebacterium diphtheriae type gravis (organism)','722336003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.346_722339005','722339005','http://snomed.info/sct','Nontoxigenic Corynebacterium diphtheriae type mitis (organism)','722339005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.346_722346001','722346001','http://snomed.info/sct','Toxigenic Corynebacterium diphtheriae type gravis (organism)','722346001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.346_722349008','722349008','http://snomed.info/sct','Toxigenic Corynebacterium diphtheriae type intermedius (organism)','722349008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.346_722350008','722350008','http://snomed.info/sct','Toxigenic Corynebacterium diphtheriae type mitis (organism)','722350008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.346_722789000','722789000','http://snomed.info/sct','Toxigenic Corynebacterium diphtheriae type belfanti (organism)','722789000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.346_722790009','722790009','http://snomed.info/sct','Nontoxigenic Corynebacterium diphtheriae type intermedius (organism)','722790009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.346_83675005','83675005','http://snomed.info/sct','Corynebacterium diphtheriae type gravis (organism)','83675005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.467_13960005','13960005','http://snomed.info/sct','Plasmodium inopinatum (organism)','13960005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.467_14084006','14084006','http://snomed.info/sct','Plasmodium fragile (organism)','14084006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.467_1423007','1423007','http://snomed.info/sct','Plasmodium durae (organism)','1423007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.467_17977009','17977009','http://snomed.info/sct','Plasmodium schwetzi (organism)','17977009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.467_18516002','18516002','http://snomed.info/sct','Plasmodium cathemerium (organism)','18516002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.467_21389008','21389008','http://snomed.info/sct','Plasmodium rodhaini (organism)','21389008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.467_21605009','21605009','http://snomed.info/sct','Plasmodium brasilianum (organism)','21605009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.467_27517009','27517009','http://snomed.info/sct','Plasmodium gonderi (organism)','27517009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.467_33866006','33866006','http://snomed.info/sct','Plasmodium elongatum (organism)','33866006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.467_39116008','39116008','http://snomed.info/sct','Plasmodium polare (organism)','39116008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.467_42454001','42454001','http://snomed.info/sct','Plasmodium inui (organism)','42454001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.467_42941001','42941001','http://snomed.info/sct','Plasmodium berghei (organism)','42941001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.467_45374000','45374000','http://snomed.info/sct','Plasmodium gallinaceum (organism)','45374000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.467_45931005','45931005','http://snomed.info/sct','Plasmodium jefferyi (organism)','45931005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.467_4723009','4723009','http://snomed.info/sct','Plasmodium fieldi (organism)','4723009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.467_47428004','47428004','http://snomed.info/sct','Plasmodium lophurae (organism)','47428004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.467_5118008','5118008','http://snomed.info/sct','Plasmodium coatneyi (organism)','5118008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.467_53078001','53078001','http://snomed.info/sct','Plasmodium simiovale (organism)','53078001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.467_53663009','53663009','http://snomed.info/sct','Plasmodium hexamerium (organism)','53663009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.467_54742007','54742007','http://snomed.info/sct','Plasmodium circumflexum (organism)','54742007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.467_5518002','5518002','http://snomed.info/sct','Plasmodium hylobati (organism)','5518002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.467_57621009','57621009','http://snomed.info/sct','Plasmodium vinckei (organism)','57621009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.467_58359005','58359005','http://snomed.info/sct','Plasmodium simium (organism)','58359005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.467_58826000','58826000','http://snomed.info/sct','Plasmodium natutinum (organism)','58826000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.467_61762001','61762001','http://snomed.info/sct','Plasmodium chabaudi (organism)','61762001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.467_63581002','63581002','http://snomed.info/sct','Plasmodium mexicanum (organism)','63581002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.467_68035006','68035006','http://snomed.info/sct','Plasmodium reichenowi (organism)','68035006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.467_68535004','68535004','http://snomed.info/sct','Plasmodium yoelii (organism)','68535004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.467_68976000','68976000','http://snomed.info/sct','Plasmodium eyles (organism)','68976000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.467_712608000','712608000','http://snomed.info/sct','Plasmodium species lactate dehydrogenase (substance)','712608000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.467_74337001','74337001','http://snomed.info/sct','Plasmodium rouxi (organism)','74337001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.467_80135000','80135000','http://snomed.info/sct','Plasmodium youngi (organism)','80135000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.467_80845001','80845001','http://snomed.info/sct','Plasmodium juxtanucleare (organism)','80845001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.467_81076004','81076004','http://snomed.info/sct','Plasmodium griffithsi (organism)','81076004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.467_83677002','83677002','http://snomed.info/sct','Plasmodium fallax (organism)','83677002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.467_84793006','84793006','http://snomed.info/sct','Plasmodium cynomolgi (organism)','84793006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.467_89663008','89663008','http://snomed.info/sct','Plasmodium pitheci (organism)','89663008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.467_90625005','90625005','http://snomed.info/sct','Plasmodium vaughani (organism)','90625005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.467_91350007','91350007','http://snomed.info/sct','Plasmodium relictum (organism)','91350007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.467_121033009','121033009','http://snomed.info/sct','Antigen of Plasmodium falciparum (substance)','121033009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.467_121034003','121034003','http://snomed.info/sct','Antigen of Plasmodium malariae (substance)','121034003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.467_121035002','121035002','http://snomed.info/sct','Antigen of Plasmodium ovale (substance)','121035002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.467_121036001','121036001','http://snomed.info/sct','Antigen of Plasmodium vivax (substance)','121036001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.467_18508006','18508006','http://snomed.info/sct','Plasmodium ovale (organism)','18508006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.467_30020004','30020004','http://snomed.info/sct','Plasmodium falciparum (organism)','30020004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.467_34706006','34706006','http://snomed.info/sct','Plasmodium (organism)','34706006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.467_397071003','397071003','http://snomed.info/sct','Malarial red blood cell inclusion (finding)','397071003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.467_407004008','407004008','http://snomed.info/sct','Antigen of Plasmodium (substance)','407004008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.467_49918008','49918008','http://snomed.info/sct','Plasmodium knowlesi (organism)','49918008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.467_56395006','56395006','http://snomed.info/sct','Plasmodium malariae (organism)','56395006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.467_608934005','608934005','http://snomed.info/sct','Trophozoite of genus Plasmodium (organism)','608934005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.467_608935006','608935006','http://snomed.info/sct','Trophozoite of Plasmodium falciparum (organism)','608935006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.467_608936007','608936007','http://snomed.info/sct','Trophozoite of Plasmodium malariae (organism)','608936007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.467_608937003','608937003','http://snomed.info/sct','Trophozoite of Plasmodium ovale (organism)','608937003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.467_608938008','608938008','http://snomed.info/sct','Trophozoite of Plasmodium vivax (organism)','608938008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.467_608962003','608962003','http://snomed.info/sct','Gametocyte of genus Plasmodium (organism)','608962003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.467_608963008','608963008','http://snomed.info/sct','Gametocyte of Plasmodium falciparum (organism)','608963008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.467_608964002','608964002','http://snomed.info/sct','Gametocyte of Plasmodium malariae (organism)','608964002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.467_608965001','608965001','http://snomed.info/sct','Gametocyte of Plasmodium ovale (organism)','608965001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.467_608966000','608966000','http://snomed.info/sct','Gametocyte of Plasmodium vivax (organism)','608966000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.467_699546008','699546008','http://snomed.info/sct','Merozoite of genus Plasmodium (organism)','699546008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.467_699550001','699550001','http://snomed.info/sct','Merozoite of Plasmodium falciparum (organism)','699550001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.467_699552009','699552009','http://snomed.info/sct','Schizont of genus Plasmodium (organism)','699552009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.467_699553004','699553004','http://snomed.info/sct','Schizont of Plasmodium falciparum (organism)','699553004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.467_699555006','699555006','http://snomed.info/sct','Merozoite of Plasmodium ovale (organism)','699555006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.467_699557003','699557003','http://snomed.info/sct','Schizont of Plasmodium ovale (organism)','699557003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.467_699559000','699559000','http://snomed.info/sct','Merozoite of Plasmodium vivax (organism)','699559000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.467_699560005','699560005','http://snomed.info/sct','Schizont of Plasmodium vivax (organism)','699560005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.467_699561009','699561009','http://snomed.info/sct','Merozoite of Plasmodium malariae (organism)','699561009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.467_699562002','699562002','http://snomed.info/sct','Schizont of Plasmodium malariae (organism)','699562002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.467_708396002','708396002','http://snomed.info/sct','Deoxyribonucleic acid of Plasmodium falciparum (substance)','708396002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.467_708397006','708397006','http://snomed.info/sct','Deoxyribonucleic acid of Plasmodium knowlesi (substance)','708397006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.467_708399009','708399009','http://snomed.info/sct','Deoxyribonucleic acid of Plasmodium malariae (substance)','708399009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.467_708401003','708401003','http://snomed.info/sct','Deoxyribonucleic acid of Plasmodium ovale (substance)','708401003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.467_708402005','708402005','http://snomed.info/sct','Deoxyribonucleic acid of Plasmodium (substance)','708402005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.467_708405007','708405007','http://snomed.info/sct','Deoxyribonucleic acid of Plasmodium vivax (substance)','708405007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.467_74746009','74746009','http://snomed.info/sct','Plasmodium vivax (organism)','74746009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1246_131000112104','131000112104','http://snomed.info/sct','Blastomyces dermatitidis or Blastomyces gilchristii (finding)','131000112104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1246_115251006','115251006','http://snomed.info/sct','Antigen of Blastomyces dermatitidis (substance)','115251006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1246_115286008','115286008','http://snomed.info/sct','Exoantigen of Blastomyces dermatitidis (substance)','115286008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1246_117175004','117175004','http://snomed.info/sct','Ribosomal ribonucleic acid of Blastomyces dermatitidis (substance)','117175004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1246_16461009','16461009','http://snomed.info/sct','Blastomyces parvus (organism)','16461009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1246_457661000124101','457661000124101','http://snomed.info/sct','Blastomyces dermatitidis or Blastomyces gilchristii (finding)','457661000124101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1246_65205008','65205008','http://snomed.info/sct','Blastomyces (organism)','65205008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1246_65615007','65615007','http://snomed.info/sct','Blastomyces dermatitidis (organism)','65615007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1246_788043001','788043001','http://snomed.info/sct','Blastomyces gilchristii (organism)','788043001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.348_121194003','121194003','http://snomed.info/sct','Ribonucleic acid of Hepatitis A virus (substance)','121194003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.348_32452004','32452004','http://snomed.info/sct','Hepatitis A virus (organism)','32452004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.348_713618003','713618003','http://snomed.info/sct','Antigen of Hepatitis A virus (substance)','713618003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.348_773674008','773674008','http://snomed.info/sct','Hepatitis A virus genotype I (organism)','773674008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.348_773675009','773675009','http://snomed.info/sct','Hepatitis A virus genotype II (organism)','773675009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.348_773676005','773676005','http://snomed.info/sct','Hepatitis A virus genotype III (organism)','773676005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.348_773677001','773677001','http://snomed.info/sct','Hepatitis A virus genotype IV (organism)','773677001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.348_773678006','773678006','http://snomed.info/sct','Hepatitis A virus genotype V (organism)','773678006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.348_773679003','773679003','http://snomed.info/sct','Hepatitis A virus genotype VI (organism)','773679003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.348_773680000','773680000','http://snomed.info/sct','Hepatitis A virus genotype IA (organism)','773680000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.348_773681001','773681001','http://snomed.info/sct','Hepatitis A virus genotype IIA (organism)','773681001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.348_773682008','773682008','http://snomed.info/sct','Hepatitis A virus genotype IB (organism)','773682008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.348_773683003','773683003','http://snomed.info/sct','Hepatitis A virus genotype IIB (organism)','773683003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.348_773684009','773684009','http://snomed.info/sct','Hepatitis A virus genotype IIIB (organism)','773684009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.348_773685005','773685005','http://snomed.info/sct','Hepatitis A virus genotype IIIA (organism)','773685005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.502_103508002','103508002','http://snomed.info/sct','Coxiella burnetii, phase I (organism)','103508002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.502_103509005','103509005','http://snomed.info/sct','Coxiella burnetii, phase II (organism)','103509005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.502_22533000','22533000','http://snomed.info/sct','Coxiella burnetii (organism)','22533000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.502_708226005','708226005','http://snomed.info/sct','Deoxyribonucleic acid of Coxiella burnetii (substance)','708226005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.502_709382001','709382001','http://snomed.info/sct','Antigen of Coxiella burnetii (substance)','709382001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1485_10514003','10514003','http://snomed.info/sct','Norwalk virus (organism)','10514003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1485_117279001','117279001','http://snomed.info/sct','Ribonucleic acid of Norwalk virus (substance)','117279001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1485_347362891000087107','347362891000087107','http://snomed.info/sct','Norovirus genogroup II (organism)','347362891000087107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1485_407359000','407359000','http://snomed.info/sct','Genus Norovirus (organism)','407359000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1485_412635004','412635004','http://snomed.info/sct','Antigen of Norwalk virus (substance)','412635004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1485_706925009','706925009','http://snomed.info/sct','Ribonucleic acid of Norovirus (substance)','706925009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1485_707932007','707932007','http://snomed.info/sct','Ribonucleic acid of Norovirus genogroup I (substance)','707932007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1485_707933002','707933002','http://snomed.info/sct','Ribonucleic acid of Norovirus genogroup II (substance)','707933002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1485_708364005','708364005','http://snomed.info/sct','Norovirus GI and GII detected (finding)','708364005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1485_709237003','709237003','http://snomed.info/sct','Antigen of Norovirus (substance)','709237003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1485_709238008','709238008','http://snomed.info/sct','Antigen of Norwalk virus 1 (substance)','709238008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1485_909640571000087107','909640571000087107','http://snomed.info/sct','Norovirus GIV (organism)','909640571000087107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1485_919722731000087109','919722731000087109','http://snomed.info/sct','Norovirus genogroup I (organism)','919722731000087109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.979_1163312007','1163312007','http://snomed.info/sct','Botulinum toxin type B and/or botulinum toxin type B derivative (substance)','1163312007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.979_11894001','11894001','http://snomed.info/sct','Clostridium botulinum toxin (substance)','11894001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.979_129471005','129471005','http://snomed.info/sct','Botulinum toxin type B (substance)','129471005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.979_13080008','13080008','http://snomed.info/sct','Clostridium botulinum (organism)','13080008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.979_18065004','18065004','http://snomed.info/sct','Clostridium botulinum, type A (organism)','18065004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.979_20017000','20017000','http://snomed.info/sct','Clostridium botulinum, type C (organism)','20017000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.979_20785008','20785008','http://snomed.info/sct','Clostridium botulinum, type B (organism)','20785008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.979_31169007','31169007','http://snomed.info/sct','Clostridium baratii (organism)','31169007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.979_32829006','32829006','http://snomed.info/sct','Clostridium botulinum, type F (organism)','32829006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.979_37081000','37081000','http://snomed.info/sct','Clostridium botulinum, type D (organism)','37081000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.979_385331001','385331001','http://snomed.info/sct','Botulinum toxin type C (substance)','385331001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.979_385332008','385332008','http://snomed.info/sct','Botulinum toxin type D (substance)','385332008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.979_385333003','385333003','http://snomed.info/sct','Botulinum toxin type E (substance)','385333003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.979_385334009','385334009','http://snomed.info/sct','Botulinum toxin type F (substance)','385334009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.979_385335005','385335005','http://snomed.info/sct','Botulinum toxin type G (substance)','385335005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.979_413880008','413880008','http://snomed.info/sct','Clostridium botulinum, non-toxin production (organism)','413880008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.979_418327000','418327000','http://snomed.info/sct','Clostridium botulinum antitoxin (substance)','418327000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.979_720312008','720312008','http://snomed.info/sct','Clostridium botulinum Group III type C (organism)','720312008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.979_720323007','720323007','http://snomed.info/sct','Clostridium botulinum Group III type D (organism)','720323007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.979_720324001','720324001','http://snomed.info/sct','Clostridium botulinum Group IV type G (organism)','720324001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.979_720325000','720325000','http://snomed.info/sct','Clostridium botulinum type G (organism)','720325000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.979_720708004','720708004','http://snomed.info/sct','Clostridium botulinum Group I (organism)','720708004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.979_720709007','720709007','http://snomed.info/sct','Clostridium botulinum Group II (organism)','720709007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.979_720710002','720710002','http://snomed.info/sct','Clostridium botulinum Group III (organism)','720710002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.979_720711003','720711003','http://snomed.info/sct','Clostridium botulinum Group IV (organism)','720711003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.979_720712005','720712005','http://snomed.info/sct','Clostridium botulinum Group I type A (organism)','720712005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.979_720713000','720713000','http://snomed.info/sct','Clostridium botulinum Group I type B (organism)','720713000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.979_720714006','720714006','http://snomed.info/sct','Clostridium botulinum Group I type F (organism)','720714006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.979_720715007','720715007','http://snomed.info/sct','Clostridium botulinum Group I type A and B (organism)','720715007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.979_720716008','720716008','http://snomed.info/sct','Clostridium botulinum Group I type A and F (organism)','720716008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.979_720717004','720717004','http://snomed.info/sct','Clostridium botulinum Group I type B and F (organism)','720717004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.979_720718009','720718009','http://snomed.info/sct','Clostridium botulinum Group II type B (organism)','720718009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.979_720719001','720719001','http://snomed.info/sct','Clostridium botulinum Group II type E (organism)','720719001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.979_720720007','720720007','http://snomed.info/sct','Clostridium botulinum Group II type F (organism)','720720007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.979_720721006','720721006','http://snomed.info/sct','Clostridium botulinum Group II type B and F (organism)','720721006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.979_720722004','720722004','http://snomed.info/sct','Clostridium botulinum Group II type B and E (organism)','720722004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.979_720723009','720723009','http://snomed.info/sct','Clostridium botulinum Group II type E and F (organism)','720723009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.979_8386006','8386006','http://snomed.info/sct','Clostridium botulinum, type E (organism)','8386006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.979_108890005','108890005','http://snomed.info/sct','Botulinum toxin type A (substance)','108890005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.979_1163311000','1163311000','http://snomed.info/sct','Botulinum toxin type A and/or botulinum toxin type A derivative (substance)','1163311000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1814_24027002','24027002','http://snomed.info/sct','Sarcoptes scabiei var. bovis (organism)','24027002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1814_47624007','47624007','http://snomed.info/sct','Sarcoptes scabiei var. hominis (organism)','47624007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1814_5445004','5445004','http://snomed.info/sct','Sarcoptes scabiei var. ovis (organism)','5445004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1814_67333007','67333007','http://snomed.info/sct','Sarcoptes scabiei (organism)','67333007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1814_68384006','68384006','http://snomed.info/sct','Sarcoptes scabiei var. suis (organism)','68384006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1814_69379008','69379008','http://snomed.info/sct','Sarcoptes scabiei var. caprae (organism)','69379008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1814_74466004','74466004','http://snomed.info/sct','Sarcoptes scabiei var. canis (organism)','74466004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1814_76703009','76703009','http://snomed.info/sct','Sarcoptes scabiei var. equi (organism)','76703009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1814_788310009','788310009','http://snomed.info/sct','Egg of Sarcoptes scabiei (organism)','788310009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1814_788743006','788743006','http://snomed.info/sct','Adult of Sarcoptes scabiei (organism)','788743006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_103108006','103108006','http://snomed.info/sct','Antigen of Salmonella flagellar (substance)','103108006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_103109003','103109003','http://snomed.info/sct','Antigen of Salmonella somatic (substance)','103109003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_105766000','105766000','http://snomed.info/sct','Salmonella group O:51 (organism)','105766000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_105767009','105767009','http://snomed.info/sct','Salmonella group O:52 (organism)','105767009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_105768004','105768004','http://snomed.info/sct','Salmonella group O:53 (organism)','105768004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_105769007','105769007','http://snomed.info/sct','Salmonella group O:54 (organism)','105769007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_105770008','105770008','http://snomed.info/sct','Salmonella group O:55 (organism)','105770008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_105771007','105771007','http://snomed.info/sct','Salmonella group O:56 (organism)','105771007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_105772000','105772000','http://snomed.info/sct','Salmonella group O:57 (organism)','105772000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_105773005','105773005','http://snomed.info/sct','Salmonella group O:58 (organism)','105773005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_105774004','105774004','http://snomed.info/sct','Salmonella group O:59 (organism)','105774004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_105775003','105775003','http://snomed.info/sct','Salmonella group O:60 (organism)','105775003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_105776002','105776002','http://snomed.info/sct','Salmonella group O:61 (organism)','105776002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_105777006','105777006','http://snomed.info/sct','Salmonella group O:62 (organism)','105777006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_105778001','105778001','http://snomed.info/sct','Salmonella group O:63 (organism)','105778001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_105779009','105779009','http://snomed.info/sct','Salmonella group O:65 (organism)','105779009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_105780007','105780007','http://snomed.info/sct','Salmonella group O:66 (organism)','105780007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_105781006','105781006','http://snomed.info/sct','Salmonella group O:67 (organism)','105781006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_110378009','110378009','http://snomed.info/sct','Salmonella enterica (organism)','110378009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_115408009','115408009','http://snomed.info/sct','Salmonella, serogroup D (organism)','115408009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_115409001','115409001','http://snomed.info/sct','Salmonella, serogroup E (organism)','115409001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_115410006','115410006','http://snomed.info/sct','Salmonella, serogroup G (organism)','115410006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_116048001','116048001','http://snomed.info/sct','Salmonella, serogroup C (organism)','116048001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_1179032006','1179032006','http://snomed.info/sct','Salmonella group D (organism)','1179032006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_1179072002','1179072002','http://snomed.info/sct','Salmonella group C (organism)','1179072002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_1179074001','1179074001','http://snomed.info/sct','Salmonella group E (organism)','1179074001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_16732009','16732009','http://snomed.info/sct','Salmonella II, group O:56 (organism)','16732009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_397502001','397502001','http://snomed.info/sct','Salmonella enterica subsp. arizonae (organism)','397502001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398334008','398334008','http://snomed.info/sct','Salmonella I, group O:9 (organism)','398334008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398337001','398337001','http://snomed.info/sct','Salmonella I, group O:51 (organism)','398337001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398341002','398341002','http://snomed.info/sct','Salmonella V, group O:60 (organism)','398341002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398342009','398342009','http://snomed.info/sct','Salmonella I, group O:3,10 (organism)','398342009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398343004','398343004','http://snomed.info/sct','Salmonella IIIb, group O:57 (organism)','398343004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398345006','398345006','http://snomed.info/sct','Salmonella II, group O:59 (organism)','398345006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398347003','398347003','http://snomed.info/sct','Salmonella IIIb, group O:16 (organism)','398347003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398348008','398348008','http://snomed.info/sct','Salmonella group O:9,46 (organism)','398348008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398349000','398349000','http://snomed.info/sct','Salmonella group O:13 (organism)','398349000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398351001','398351001','http://snomed.info/sct','Salmonella VI, group O:6,14 (organism)','398351001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398354009','398354009','http://snomed.info/sct','Salmonella I, group O:16 (organism)','398354009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398357002','398357002','http://snomed.info/sct','Salmonella IIIa, group O:56 (organism)','398357002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398361008','398361008','http://snomed.info/sct','Salmonella V, group O:66 (organism)','398361008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398362001','398362001','http://snomed.info/sct','Salmonella I, group O:54 (organism)','398362001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398364000','398364000','http://snomed.info/sct','Salmonella group O:8 (organism)','398364000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398366003','398366003','http://snomed.info/sct','Salmonella II, group O:55 (organism)','398366003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398371005','398371005','http://snomed.info/sct','Salmonella enterica subsp. houtenae (organism)','398371005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398375001','398375001','http://snomed.info/sct','Salmonella IIIb, group O:58 (organism)','398375001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398377009','398377009','http://snomed.info/sct','Salmonella IIIb, group O:51 (organism)','398377009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398380005','398380005','http://snomed.info/sct','Salmonella IIIb, group O:60 (organism)','398380005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398383007','398383007','http://snomed.info/sct','Salmonella IV, group O:6,14 (organism)','398383007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398389006','398389006','http://snomed.info/sct','Salmonella IIIa, group O:7 (organism)','398389006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398390002','398390002','http://snomed.info/sct','Salmonella II, group O:3,10 (organism)','398390002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398393000','398393000','http://snomed.info/sct','Salmonella bongori (organism)','398393000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398400008','398400008','http://snomed.info/sct','Salmonella IIIa, group O:51 (organism)','398400008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398401007','398401007','http://snomed.info/sct','Salmonella II, group O:4 (organism)','398401007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398413002','398413002','http://snomed.info/sct','Salmonella IV, group O:7 (organism)','398413002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398420009','398420009','http://snomed.info/sct','Salmonella I, group O:2 (organism)','398420009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398421008','398421008','http://snomed.info/sct','Salmonella IIIa, group O:11 (organism)','398421008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398426003','398426003','http://snomed.info/sct','Salmonella group O:2 (organism)','398426003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398427007','398427007','http://snomed.info/sct','Salmonella I, group O:57 (organism)','398427007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398428002','398428002','http://snomed.info/sct','Salmonella enterica subsp. diarizonae (organism)','398428002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398429005','398429005','http://snomed.info/sct','Salmonella group O:11 (organism)','398429005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398430000','398430000','http://snomed.info/sct','Salmonella I, group O:53 (organism)','398430000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398436006','398436006','http://snomed.info/sct','Salmonella group O:3,10 (organism)','398436006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398439004','398439004','http://snomed.info/sct','Salmonella IIIa, group O:62 (organism)','398439004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398445007','398445007','http://snomed.info/sct','Salmonella I, group O:11 (organism)','398445007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398451002','398451002','http://snomed.info/sct','Salmonella IV, group O:11 (organism)','398451002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398460005','398460005','http://snomed.info/sct','Salmonella II, group O:9,46 (organism)','398460005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398462002','398462002','http://snomed.info/sct','Salmonella II, group O:8 (organism)','398462002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398467008','398467008','http://snomed.info/sct','Salmonella group O:4 (organism)','398467008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398470007','398470007','http://snomed.info/sct','Salmonella IIIa, group O:63 (organism)','398470007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398476001','398476001','http://snomed.info/sct','Salmonella I, group O:52 (organism)','398476001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398477005','398477005','http://snomed.info/sct','Salmonella IIIb, group O:13 (organism)','398477005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398480006','398480006','http://snomed.info/sct','Salmonella I, group O:67 (organism)','398480006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398488004','398488004','http://snomed.info/sct','Salmonella enterica subsp. salamae (organism)','398488004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398490003','398490003','http://snomed.info/sct','Salmonella I, group O:6,14 (organism)','398490003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398492006','398492006','http://snomed.info/sct','Salmonella group O:6,14 (organism)','398492006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398493001','398493001','http://snomed.info/sct','Salmonella II, group O:60 (organism)','398493001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398508004','398508004','http://snomed.info/sct','Salmonella enterica subsp. enterica (organism)','398508004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398509007','398509007','http://snomed.info/sct','Salmonella IIIb, group O:6,14 (organism)','398509007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398511003','398511003','http://snomed.info/sct','Salmonella I, group O:13 (organism)','398511003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398514006','398514006','http://snomed.info/sct','Salmonella IV, group O:51 (organism)','398514006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398516008','398516008','http://snomed.info/sct','Salmonella IIIa, group O:53 (organism)','398516008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398526001','398526001','http://snomed.info/sct','Salmonella IV, group O:16 (organism)','398526001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398528000','398528000','http://snomed.info/sct','Salmonella II, group O:11 (organism)','398528000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398529008','398529008','http://snomed.info/sct','Salmonella V, group O:13 (organism)','398529008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398533001','398533001','http://snomed.info/sct','Salmonella I, group O:9,46 (organism)','398533001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398534007','398534007','http://snomed.info/sct','Salmonella II, group O:7 (organism)','398534007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398539002','398539002','http://snomed.info/sct','Salmonella IIIa, group O:59 (organism)','398539002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398541001','398541001','http://snomed.info/sct','Salmonella IIIb, group O:59 (organism)','398541001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398542008','398542008','http://snomed.info/sct','Salmonella I, group O:7 (organism)','398542008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398543003','398543003','http://snomed.info/sct','Salmonella group O:16 (organism)','398543003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398544009','398544009','http://snomed.info/sct','Salmonella IIIb, group O:53 (organism)','398544009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398547002','398547002','http://snomed.info/sct','Salmonella group O:1,3,19 (organism)','398547002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398555009','398555009','http://snomed.info/sct','Salmonella II, group O:16 (organism)','398555009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398556005','398556005','http://snomed.info/sct','Salmonella IIIa, group O:13 (organism)','398556005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398559003','398559003','http://snomed.info/sct','Salmonella group O:9 (organism)','398559003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398561007','398561007','http://snomed.info/sct','Salmonella II, group O:9 (organism)','398561007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398564004','398564004','http://snomed.info/sct','Salmonella IIIb, group O:65 (organism)','398564004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398566002','398566002','http://snomed.info/sct','Salmonella IIIb, group O:52 (organism)','398566002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398567006','398567006','http://snomed.info/sct','Salmonella I, group O:4 (organism)','398567006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398572002','398572002','http://snomed.info/sct','Salmonella II, group O:13 (organism)','398572002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398576004','398576004','http://snomed.info/sct','Salmonella I, group O:1,3,19 (organism)','398576004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398584000','398584000','http://snomed.info/sct','Salmonella I, group O:8 (organism)','398584000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398588002','398588002','http://snomed.info/sct','Salmonella IIIb, group O:61 (organism)','398588002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398602005','398602005','http://snomed.info/sct','Salmonella II, group O:6,14 (organism)','398602005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398607004','398607004','http://snomed.info/sct','Salmonella V, group O:61 (organism)','398607004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398608009','398608009','http://snomed.info/sct','Salmonella VI, group O:7 (organism)','398608009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398609001','398609001','http://snomed.info/sct','Salmonella VI, group O:11 (organism)','398609001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398618004','398618004','http://snomed.info/sct','Salmonella IIIb, group O:11 (organism)','398618004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398620001','398620001','http://snomed.info/sct','Salmonella enterica subsp. indica (organism)','398620001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404275007','404275007','http://snomed.info/sct','Salmonella group O:17 (organism)','404275007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404276008','404276008','http://snomed.info/sct','Salmonella I, group O:17 (organism)','404276008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404277004','404277004','http://snomed.info/sct','Salmonella II, group O:17 (organism)','404277004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404278009','404278009','http://snomed.info/sct','Salmonella IIIa, group O:17 (organism)','404278009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404279001','404279001','http://snomed.info/sct','Salmonella IIIb, group O:17 (organism)','404279001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404280003','404280003','http://snomed.info/sct','Salmonella IV, group O:17 (organism)','404280003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404294002','404294002','http://snomed.info/sct','Salmonella group O:18 (organism)','404294002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404295001','404295001','http://snomed.info/sct','Salmonella I, group O:18 (organism)','404295001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404296000','404296000','http://snomed.info/sct','Salmonella II, group O:18 (organism)','404296000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404297009','404297009','http://snomed.info/sct','Salmonella IIIa, group O:18 (organism)','404297009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404298004','404298004','http://snomed.info/sct','Salmonella IIIb, group O:18 (organism)','404298004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404299007','404299007','http://snomed.info/sct','Salmonella IV, group O:18 (organism)','404299007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404310008','404310008','http://snomed.info/sct','Salmonella group O:21 (organism)','404310008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404311007','404311007','http://snomed.info/sct','Salmonella I, group O:21 (organism)','404311007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404312000','404312000','http://snomed.info/sct','Salmonella II, group O:21 (organism)','404312000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404313005','404313005','http://snomed.info/sct','Salmonella IIIa, group O:21 (organism)','404313005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404314004','404314004','http://snomed.info/sct','Salmonella IIIb, group O:21 (organism)','404314004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404315003','404315003','http://snomed.info/sct','Salmonella IV, group O:21 (organism)','404315003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404333009','404333009','http://snomed.info/sct','Salmonella group O:28 (organism)','404333009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404334003','404334003','http://snomed.info/sct','Salmonella I, group O:28 (organism)','404334003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404335002','404335002','http://snomed.info/sct','Salmonella II, group O:28 (organism)','404335002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404336001','404336001','http://snomed.info/sct','Salmonella IIIb, group O:28 (organism)','404336001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404338000','404338000','http://snomed.info/sct','Salmonella group O:30 (organism)','404338000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404339008','404339008','http://snomed.info/sct','Salmonella I, group O:30 (organism)','404339008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404340005','404340005','http://snomed.info/sct','Salmonella II, group O:30 (organism)','404340005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404341009','404341009','http://snomed.info/sct','Salmonella group O:35 (organism)','404341009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404342002','404342002','http://snomed.info/sct','Salmonella I, group O:35 (organism)','404342002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404343007','404343007','http://snomed.info/sct','Salmonella II, group O:35 (organism)','404343007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404344001','404344001','http://snomed.info/sct','Salmonella IIIa, group O:35 (organism)','404344001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404345000','404345000','http://snomed.info/sct','Salmonella IIIb, group O:35 (organism)','404345000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404366008','404366008','http://snomed.info/sct','Salmonella group O:38 (organism)','404366008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404367004','404367004','http://snomed.info/sct','Salmonella I, group O:38 (organism)','404367004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404368009','404368009','http://snomed.info/sct','Salmonella II, group O:38 (organism)','404368009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404369001','404369001','http://snomed.info/sct','Salmonella IIIa, group O:38 (organism)','404369001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404370000','404370000','http://snomed.info/sct','Salmonella IIIb, group O:38 (organism)','404370000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404371001','404371001','http://snomed.info/sct','Salmonella IV, group O:38 (organism)','404371001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404391008','404391008','http://snomed.info/sct','Salmonella group O:39 (organism)','404391008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404392001','404392001','http://snomed.info/sct','Salmonella I, group O:39 (organism)','404392001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404393006','404393006','http://snomed.info/sct','Salmonella II, group O:39 (organism)','404393006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404394000','404394000','http://snomed.info/sct','Salmonella group O:40 (organism)','404394000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404395004','404395004','http://snomed.info/sct','Salmonella I, group O:40 (organism)','404395004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404396003','404396003','http://snomed.info/sct','Salmonella II, group O:40 (organism)','404396003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404397007','404397007','http://snomed.info/sct','Salmonella IIIa, group O:40 (organism)','404397007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404398002','404398002','http://snomed.info/sct','Salmonella IIIb, group O:40 (organism)','404398002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404399005','404399005','http://snomed.info/sct','Salmonella IV, group O:40 (organism)','404399005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404400003','404400003','http://snomed.info/sct','Salmonella V, group O:40 (organism)','404400003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404413009','404413009','http://snomed.info/sct','Salmonella group O:41 (organism)','404413009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404414003','404414003','http://snomed.info/sct','Salmonella I, group O:41 (organism)','404414003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404415002','404415002','http://snomed.info/sct','Salmonella II, group O:41 (organism)','404415002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404416001','404416001','http://snomed.info/sct','Salmonella IIIa, group O:41 (organism)','404416001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404417005','404417005','http://snomed.info/sct','Salmonella IIIb, group O:41 (organism)','404417005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404418000','404418000','http://snomed.info/sct','Salmonella IV, group O:41 (organism)','404418000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404419008','404419008','http://snomed.info/sct','Salmonella VI, group O:41 (organism)','404419008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404430006','404430006','http://snomed.info/sct','Salmonella group O:42 (organism)','404430006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404431005','404431005','http://snomed.info/sct','Salmonella I, group O:42 (organism)','404431005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404432003','404432003','http://snomed.info/sct','Salmonella II, group O:42 (organism)','404432003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404433008','404433008','http://snomed.info/sct','Salmonella IIIa, group O:42 (organism)','404433008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404434002','404434002','http://snomed.info/sct','Salmonella IIIb, group O:42 (organism)','404434002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404435001','404435001','http://snomed.info/sct','Salmonella IV, group O:42 (organism)','404435001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404452002','404452002','http://snomed.info/sct','Salmonella group O:43 (organism)','404452002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404453007','404453007','http://snomed.info/sct','Salmonella I, group O:43 (organism)','404453007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404454001','404454001','http://snomed.info/sct','Salmonella II, group O:43 (organism)','404454001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404455000','404455000','http://snomed.info/sct','Salmonella IIIa, group O:43 (organism)','404455000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404456004','404456004','http://snomed.info/sct','Salmonella IIIb, group O:43 (organism)','404456004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404457008','404457008','http://snomed.info/sct','Salmonella IV, group O:43 (organism)','404457008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404467003','404467003','http://snomed.info/sct','Salmonella group O:44 (organism)','404467003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404468008','404468008','http://snomed.info/sct','Salmonella I, group O:44 (organism)','404468008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404469000','404469000','http://snomed.info/sct','Salmonella II, group O:44 (organism)','404469000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404470004','404470004','http://snomed.info/sct','Salmonella IIIa, group O:44 (organism)','404470004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404471000','404471000','http://snomed.info/sct','Salmonella IIIb, group O:44 (organism)','404471000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404472007','404472007','http://snomed.info/sct','Salmonella IV, group O:44 (organism)','404472007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404473002','404473002','http://snomed.info/sct','Salmonella V, group O:44 (organism)','404473002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404482008','404482008','http://snomed.info/sct','Salmonella group O:45 (organism)','404482008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404483003','404483003','http://snomed.info/sct','Salmonella I, group O:45 (organism)','404483003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404484009','404484009','http://snomed.info/sct','Salmonella II, group O:45 (organism)','404484009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404485005','404485005','http://snomed.info/sct','Salmonella IIIa, group O:45 (organism)','404485005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404486006','404486006','http://snomed.info/sct','Salmonella IV, group O:45 (organism)','404486006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404487002','404487002','http://snomed.info/sct','Salmonella VI, group O:45 (organism)','404487002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404490008','404490008','http://snomed.info/sct','Salmonella group O:47 (organism)','404490008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404491007','404491007','http://snomed.info/sct','Salmonella I, group O:47 (organism)','404491007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404492000','404492000','http://snomed.info/sct','Salmonella II, group O:47 (organism)','404492000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404493005','404493005','http://snomed.info/sct','Salmonella IIIa, group O:47 (organism)','404493005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404494004','404494004','http://snomed.info/sct','Salmonella IIIb, group O:47 (organism)','404494004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404495003','404495003','http://snomed.info/sct','Salmonella IV, group O:47 (organism)','404495003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404559008','404559008','http://snomed.info/sct','Salmonella group O:48 (organism)','404559008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404560003','404560003','http://snomed.info/sct','Salmonella I, group O:48 (organism)','404560003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404561004','404561004','http://snomed.info/sct','Salmonella II, group O:48 (organism)','404561004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404562006','404562006','http://snomed.info/sct','Salmonella IIIa, group O:48 (organism)','404562006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404563001','404563001','http://snomed.info/sct','Salmonella IIIb, group O:48 (organism)','404563001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404564007','404564007','http://snomed.info/sct','Salmonella IV, group O:48 (organism)','404564007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404565008','404565008','http://snomed.info/sct','Salmonella V, group O:48 (organism)','404565008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404566009','404566009','http://snomed.info/sct','Salmonella VI, group O:48 (organism)','404566009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404588009','404588009','http://snomed.info/sct','Salmonella group O:50 (organism)','404588009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404589001','404589001','http://snomed.info/sct','Salmonella I, group O:50 (organism)','404589001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404590005','404590005','http://snomed.info/sct','Salmonella II, group O:50 (organism)','404590005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404591009','404591009','http://snomed.info/sct','Salmonella IIIa, group O:50 (organism)','404591009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404592002','404592002','http://snomed.info/sct','Salmonella IIIb, group O:50 (organism)','404592002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404593007','404593007','http://snomed.info/sct','Salmonella IV, group O:50 (organism)','404593007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_404594001','404594001','http://snomed.info/sct','Salmonella VI, group O:50 (organism)','404594001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_44536003','44536003','http://snomed.info/sct','Salmonella II, group O:53 (organism)','44536003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_612331000124107','612331000124107','http://snomed.info/sct','Salmonella V 48:a:- (organism)','612331000124107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_70426009','70426009','http://snomed.info/sct','Salmonella II, group O:52 (organism)','70426009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_712764007','712764007','http://snomed.info/sct','Salmonella species not Salmonella typhi (organism)','712764007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_715049006','715049006','http://snomed.info/sct','Salmonella group O:6,7 (organism)','715049006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_715050006','715050006','http://snomed.info/sct','Salmonella group O:3,15 (organism)','715050006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_74731002','74731002','http://snomed.info/sct','Salmonella II, group O:57 (organism)','74731002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_77046007','77046007','http://snomed.info/sct','Salmonella II, group O:65 (organism)','77046007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_78041000','78041000','http://snomed.info/sct','Salmonella II, group O:51 (organism)','78041000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_7963006','7963006','http://snomed.info/sct','Salmonella IV, group O:57 (organism)','7963006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_11166006','11166006','http://snomed.info/sct','Salmonella II, group O:58 (organism)','11166006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398399001','398399001','http://snomed.info/sct','Salmonella group O:9,46,27 (organism)','398399001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398586003','398586003','http://snomed.info/sct','Salmonella II, group O:9,46,27 (organism)','398586003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_398593004','398593004','http://snomed.info/sct','Salmonella group O:7 (organism)','398593004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.96_66773007','66773007','http://snomed.info/sct','Salmonella IV, group O:53 (organism)','66773007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1655_708485009','708485009','http://snomed.info/sct','Deoxyribonucleic acid of Trypanosoma cruzi (substance)','708485009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1655_88274000','88274000','http://snomed.info/sct','Trypanosoma cruzi (organism)','88274000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1657_115511007','115511007','http://snomed.info/sct','Nipah virus (organism)','115511007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1490_12671002','12671002','http://snomed.info/sct','Clostridium difficile toxin (substance)','12671002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1490_255823007','255823007','http://snomed.info/sct','Clostridium difficile enterotoxin A (substance)','255823007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1490_96001009','96001009','http://snomed.info/sct','Clostridium difficile toxin B (substance)','96001009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.292_117277004','117277004','http://snomed.info/sct','Ribonucleic acid of Measles virus (substance)','117277004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.292_120997001','120997001','http://snomed.info/sct','Antigen of Measles morbillivirus (substance)','120997001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.292_416435006','416435006','http://snomed.info/sct','Measles virus, viral envelope M protein variant (organism)','416435006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.292_425684000','425684000','http://snomed.info/sct','Measles virus genotype G3 (organism)','425684000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.292_425966004','425966004','http://snomed.info/sct','Measles virus genotype H1 (organism)','425966004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.292_425970007','425970007','http://snomed.info/sct','Measles virus genotype D3 (organism)','425970007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.292_426028006','426028006','http://snomed.info/sct','Measles virus genotype D6 (organism)','426028006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.292_426091009','426091009','http://snomed.info/sct','Measles virus genotype G2 (organism)','426091009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.292_426188007','426188007','http://snomed.info/sct','Measles virus genotype C1 (organism)','426188007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.292_426261008','426261008','http://snomed.info/sct','Measles virus genotype D4 (organism)','426261008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.292_426424002','426424002','http://snomed.info/sct','Measles virus genotype H2 (organism)','426424002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.292_426535005','426535005','http://snomed.info/sct','Measles virus genotype D9 (organism)','426535005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.292_426558008','426558008','http://snomed.info/sct','Measles virus genotype A (organism)','426558008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.292_426640005','426640005','http://snomed.info/sct','Measles virus genotype D2 (organism)','426640005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.292_426654002','426654002','http://snomed.info/sct','Measles virus genotype B2 (organism)','426654002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.292_427073007','427073007','http://snomed.info/sct','Measles virus genotype B3 (organism)','427073007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.292_427182003','427182003','http://snomed.info/sct','Measles virus genotype C2 (organism)','427182003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.292_427263000','427263000','http://snomed.info/sct','Measles virus genotype D10 (organism)','427263000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.292_427290009','427290009','http://snomed.info/sct','Measles virus genotype D8 (organism)','427290009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.292_427353006','427353006','http://snomed.info/sct','Measles virus genotype D7 (organism)','427353006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.292_427706006','427706006','http://snomed.info/sct','Measles virus genotype D5 (organism)','427706006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.292_52584002','52584002','http://snomed.info/sct','Measles morbillivirus (organism)','52584002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.292_698204007','698204007','http://snomed.info/sct','Measles virus genotype D11 (organism)','698204007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.292_732206003','732206003','http://snomed.info/sct','Measles virus genotype F (organism)','732206003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.292_732207007','732207007','http://snomed.info/sct','Measles virus genotype E (organism)','732207007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.292_732208002','732208002','http://snomed.info/sct','Measles virus genotype D1 (organism)','732208002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.292_732209005','732209005','http://snomed.info/sct','Measles virus genotype B1 (organism)','732209005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.292_732210000','732210000','http://snomed.info/sct','Measles virus genotype G1 (organism)','732210000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2060_117169008','117169008','http://snomed.info/sct','Larva of Echinococcus granulosa (organism)','117169008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2060_20079007','20079007','http://snomed.info/sct','Echinococcus oligarthus (organism)','20079007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2060_243672005','243672005','http://snomed.info/sct','Echinococcus granulosus (organism)','243672005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2060_44904003','44904003','http://snomed.info/sct','Echinococcus vogeli (organism)','44904003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2060_47622006','47622006','http://snomed.info/sct','Genus Echinococcus (organism)','47622006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2060_709399000','709399000','http://snomed.info/sct','Antigen of Echinococcus (substance)','709399000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2060_711325008','711325008','http://snomed.info/sct','Echinococcus protein (substance)','711325008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2060_778081000','778081000','http://snomed.info/sct','Larva of Echinococcus (organism)','778081000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2060_86648009','86648009','http://snomed.info/sct','Echinococcus multilocularis (organism)','86648009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.573_409548002','409548002','http://snomed.info/sct','Antigen of Yersinia pestis capsular F1 (substance)','409548002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.573_54365000','54365000','http://snomed.info/sct','Yersinia pestis (organism)','54365000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.573_64517003','64517003','http://snomed.info/sct','Antigen of Yersinia pestis V protein (substance)','64517003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.573_708505009','708505009','http://snomed.info/sct','Deoxyribonucleic acid of Yersinia pestis (substance)','708505009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.573_709155002','709155002','http://snomed.info/sct','Antigen of Yersinia pestis (substance)','709155002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1014_128388007','128388007','http://snomed.info/sct','Salmonella Paratyphi B var. Java (organism)','128388007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1014_32488009','32488009','http://snomed.info/sct','Salmonella Paratyphi C (organism)','32488009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1014_79128009','79128009','http://snomed.info/sct','Salmonella Paratyphi A (organism)','79128009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1014_840687007','840687007','http://snomed.info/sct','Multidrug-resistant Salmonella paratyphi (organism)','840687007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1014_85908006','85908006','http://snomed.info/sct','Salmonella Paratyphi B (organism)','85908006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1895_61949005','61949005','http://snomed.info/sct','Toxoplasma (organism)','61949005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1895_121205001','121205001','http://snomed.info/sct','Deoxyribonucleic acid of Toxoplasma gondii (substance)','121205001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1895_4649006','4649006','http://snomed.info/sct','Toxoplasma gondii (organism)','4649006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1895_608956008','608956008','http://snomed.info/sct','Trophozoite of Toxoplasma gondii (organism)','608956008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_1108201000112100','1108201000112100','http://snomed.info/sct','AmpC beta-lactamase producing Shigella (organism)','1108201000112100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_1108401000112101','1108401000112101','http://snomed.info/sct','Extended spectrum beta-lactamase producing Shigella (organism)','1108401000112101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_121037005','121037005','http://snomed.info/sct','Antigen of Shigella (substance)','121037005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_121038000','121038000','http://snomed.info/sct','Antigen of Shigella boydii (substance)','121038000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_121039008','121039008','http://snomed.info/sct','Antigen of Shigella dysenteriae (substance)','121039008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_121040005','121040005','http://snomed.info/sct','Antigen of Shigella flexneri (substance)','121040005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_121041009','121041009','http://snomed.info/sct','Antigen of Shigella sonnei (substance)','121041009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_124995002','124995002','http://snomed.info/sct','Shigella dysenteriae, serovar 1 (organism)','124995002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_124996001','124996001','http://snomed.info/sct','Shigella dysenteriae, serovar 2 (organism)','124996001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_124997005','124997005','http://snomed.info/sct','Shigella dysenteriae, serovar 3 (organism)','124997005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_124998000','124998000','http://snomed.info/sct','Shigella dysenteriae, serovar 4 (organism)','124998000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_124999008','124999008','http://snomed.info/sct','Shigella dysenteriae, serovar 5 (organism)','124999008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_125000008','125000008','http://snomed.info/sct','Shigella dysenteriae, serovar 6 (organism)','125000008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_125001007','125001007','http://snomed.info/sct','Shigella dysenteriae, serovar 7 (organism)','125001007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_125002000','125002000','http://snomed.info/sct','Shigella dysenteriae, serovar 8 (organism)','125002000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_125003005','125003005','http://snomed.info/sct','Shigella dysenteriae, serovar 9 (organism)','125003005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_125004004','125004004','http://snomed.info/sct','Shigella dysenteriae, serovar 10 (organism)','125004004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_125005003','125005003','http://snomed.info/sct','Shigella flexneri, serovar 1 (organism)','125005003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_125006002','125006002','http://snomed.info/sct','Shigella flexneri, serovar 1a (organism)','125006002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_125007006','125007006','http://snomed.info/sct','Shigella flexneri, serovar 1b (organism)','125007006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_125008001','125008001','http://snomed.info/sct','Shigella flexneri, serovar 2 (organism)','125008001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_125009009','125009009','http://snomed.info/sct','Shigella flexneri, serovar 2a (organism)','125009009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_125010004','125010004','http://snomed.info/sct','Shigella flexneri, serovar 2b (organism)','125010004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_125011000','125011000','http://snomed.info/sct','Shigella flexneri, serovar 3 (organism)','125011000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_125012007','125012007','http://snomed.info/sct','Shigella flexneri, serovar 3a (organism)','125012007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_125013002','125013002','http://snomed.info/sct','Shigella flexneri, serovar 3b (organism)','125013002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_125014008','125014008','http://snomed.info/sct','Shigella flexneri, serovar 3c (organism)','125014008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_125015009','125015009','http://snomed.info/sct','Shigella flexneri, serovar 4 (organism)','125015009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_125016005','125016005','http://snomed.info/sct','Shigella flexneri, serovar 4a (organism)','125016005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_125017001','125017001','http://snomed.info/sct','Shigella flexneri, serovar 4b (organism)','125017001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_125018006','125018006','http://snomed.info/sct','Shigella flexneri, serovar 5 (organism)','125018006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_125019003','125019003','http://snomed.info/sct','Shigella flexneri, serovar 6 (organism)','125019003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_125020009','125020009','http://snomed.info/sct','Shigella flexneri, serovar X (organism)','125020009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_125021008','125021008','http://snomed.info/sct','Shigella flexneri, serovar Y (organism)','125021008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_125022001','125022001','http://snomed.info/sct','Shigella boydii, serovar 1 (organism)','125022001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_125023006','125023006','http://snomed.info/sct','Shigella boydii, serovar 2 (organism)','125023006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_125024000','125024000','http://snomed.info/sct','Shigella boydii, serovar 3 (organism)','125024000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_125025004','125025004','http://snomed.info/sct','Shigella boydii, serovar 4 (organism)','125025004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_125026003','125026003','http://snomed.info/sct','Shigella boydii, serovar 5 (organism)','125026003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_125027007','125027007','http://snomed.info/sct','Shigella boydii, serovar 6 (organism)','125027007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_125028002','125028002','http://snomed.info/sct','Shigella boydii, serovar 7 (organism)','125028002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_125029005','125029005','http://snomed.info/sct','Shigella boydii, serovar 8 (organism)','125029005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_125030000','125030000','http://snomed.info/sct','Shigella boydii, serovar 9 (organism)','125030000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_125031001','125031001','http://snomed.info/sct','Shigella boydii, serovar 10 (organism)','125031001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_125032008','125032008','http://snomed.info/sct','Shigella boydii, serovar 11 (organism)','125032008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_125033003','125033003','http://snomed.info/sct','Shigella boydii, serovar 12 (organism)','125033003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_125034009','125034009','http://snomed.info/sct','Shigella boydii, serovar 13 (organism)','125034009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_125035005','125035005','http://snomed.info/sct','Shigella boydii, serovar 14 (organism)','125035005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_125036006','125036006','http://snomed.info/sct','Shigella boydii, serovar 15 (organism)','125036006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_133131000112102','133131000112102','http://snomed.info/sct','Extended spectrum beta-lactamase producing Shigella flexneri serovar 2a (organism)','133131000112102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_406478008','406478008','http://snomed.info/sct','Provisional shigella 3065-93 (organism)','406478008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_406479000','406479000','http://snomed.info/sct','Shigella dysenteriae strain 96-3162 (organism)','406479000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_406480002','406480002','http://snomed.info/sct','Shigella flexneri provisional strain 88-893 (organism)','406480002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_406481003','406481003','http://snomed.info/sct','Shigella flexneri strain 89-141 (organism)','406481003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_406482005','406482005','http://snomed.info/sct','Shigella dysenteriae strain 93-119 (organism)','406482005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_406483000','406483000','http://snomed.info/sct','Shigella dysenteriae strain 204/96 (organism)','406483000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_406484006','406484006','http://snomed.info/sct','Shigella dysenteriae strain 96-265 (organism)','406484006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_406485007','406485007','http://snomed.info/sct','Provisional shigella E28938 (organism)','406485007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_406486008','406486008','http://snomed.info/sct','Shigella dysenteriae strain E670/74 (organism)','406486008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_406487004','406487004','http://snomed.info/sct','Shigella flexneri serovar 1c strain Y394 (organism)','406487004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_406488009','406488009','http://snomed.info/sct','Shigella boydii 16 (organism)','406488009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_406489001','406489001','http://snomed.info/sct','Shigella boydii 17 (organism)','406489001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_406490005','406490005','http://snomed.info/sct','Shigella boydii 18 (organism)','406490005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_406491009','406491009','http://snomed.info/sct','Shigella boydii serotype 19 (organism)','406491009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_406492002','406492002','http://snomed.info/sct','Shigella boydii serotype 20 (organism)','406492002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_406493007','406493007','http://snomed.info/sct','Shigella boydii serotype undetermined (Subgroup C) (organism)','406493007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_406494001','406494001','http://snomed.info/sct','Shigella dysenteriae 11 (organism)','406494001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_406495000','406495000','http://snomed.info/sct','Shigella dysenteriae 12 (organism)','406495000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_406496004','406496004','http://snomed.info/sct','Shigella dysenteriae 13 (organism)','406496004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_406497008','406497008','http://snomed.info/sct','Shigella dysenteriae 15 (organism)','406497008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_406498003','406498003','http://snomed.info/sct','Shigella dysenteriae 14 (organism)','406498003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_406500002','406500002','http://snomed.info/sct','Shigella flexneri 4c [IV:7,8] (organism)','406500002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_406501003','406501003','http://snomed.info/sct','Shigella flexneri 5a [V:3,4] (organism)','406501003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_406502005','406502005','http://snomed.info/sct','Shigella flexneri 5b [V:7,8] (organism)','406502005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_406503000','406503000','http://snomed.info/sct','Shigella flexneri serotype undetermined (Subgroup B) (organism)','406503000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_406504006','406504006','http://snomed.info/sct','Shigella sonnei (Subgroup D) (organism)','406504006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_4298009','4298009','http://snomed.info/sct','Shigella sonnei (organism)','4298009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_43612004','43612004','http://snomed.info/sct','Shigella dysenteriae (organism)','43612004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_473764841000087103','473764841000087103','http://snomed.info/sct','Shigella flexneri 5b (organism)','473764841000087103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_55462008','55462008','http://snomed.info/sct','Shigella boydii (organism)','55462008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_646165971000087107','646165971000087107','http://snomed.info/sct','Shigella flexneri 5a (organism)','646165971000087107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_702989004','702989004','http://snomed.info/sct','Shigella boydii or Shigella flexneri (finding)','702989004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_708428008','708428008','http://snomed.info/sct','Deoxyribonucleic acid of Shigella (substance)','708428008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_721911002','721911002','http://snomed.info/sct','Extended spectrum beta-lactamase producing Shigella sonnei (organism)','721911002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_721980008','721980008','http://snomed.info/sct','Shigella flexneri serovar 6 biotype Manchester (organism)','721980008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_726499009','726499009','http://snomed.info/sct','Fluoroquinolone resistant Shigella (organism)','726499009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_77352002','77352002','http://snomed.info/sct','Genus Shigella (organism)','77352002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_783138941000087102','783138941000087102','http://snomed.info/sct','Shigella dysenteriae, serovar 16 (organism)','783138941000087102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_85729005','85729005','http://snomed.info/sct','Shigella flexneri (organism)','85729005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.333_718686007','718686007','http://snomed.info/sct','Deoxyribonucleic acid of Shigella species or Enteroinvasive Escherichia coli detected (finding)','718686007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.850_781273009','781273009','http://snomed.info/sct','Borrelia mayonii (organism)','781273009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.850_115421002','115421002','http://snomed.info/sct','Antigen of Borrelia burgdorferi 88-kDa protein (substance)','115421002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.850_115422009','115422009','http://snomed.info/sct','Antigen of Borrelia burgdorferi 29-kDa protein (substance)','115422009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.850_115423004','115423004','http://snomed.info/sct','Antigen of Borrelia burgdorferi 47-kDa protein (substance)','115423004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.850_121004008','121004008','http://snomed.info/sct','Antigen of Borrelia burgdorferi (substance)','121004008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.850_121104006','121104006','http://snomed.info/sct','Deoxyribonucleic acid of Borrelia burgdorferi (substance)','121104006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.850_76327009','76327009','http://snomed.info/sct','Borrelia burgdorferi (organism)','76327009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1013_115428008','115428008','http://snomed.info/sct','Antigen of Salmonella enterica subspecies enterica serovar Typhi flagellar (substance)','115428008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1013_115429000','115429000','http://snomed.info/sct','Antigen of Salmonella enterica subspecies enterica serovar Typhi somatic (substance)','115429000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1013_1201000221106','1201000221106','http://snomed.info/sct','Antigen of Salmonella enterica subspecies enterica serovar Typhi capsular polysaccharide unconjugated (substance)','1201000221106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1013_291000221101','291000221101','http://snomed.info/sct','Antigen of Salmonella enterica subspecies enterica serovar Typhi (substance)','291000221101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1013_5595000','5595000','http://snomed.info/sct','Salmonella enterica subspecies enterica serovar Typhi (organism)','5595000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1013_708426007','708426007','http://snomed.info/sct','Deoxyribonucleic acid of Salmonella enterica enterica serovar Typhi (substance)','708426007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1013_767841007','767841007','http://snomed.info/sct','Antigen of Salmonella enterica subspecies enterica serovar Typhi capsular polysaccharide Vi (substance)','767841007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1013_768659005','768659005','http://snomed.info/sct','Vi capsular polysaccharide antigen of Salmonella Typhi (substance)','768659005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1013_838461003','838461003','http://snomed.info/sct','Antigen of Salmonella enterica subspecies enterica serovar Typhi capsular polysaccharide Vi unconjugated (substance)','838461003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1013_840684000','840684000','http://snomed.info/sct','Multidrug-resistant Salmonella enterica subspecies enterica serovar Typhi (organism)','840684000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.334_116396007','116396007','http://snomed.info/sct','Enteroinvasive Escherichia coli (organism)','116396007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.334_407227005','407227005','http://snomed.info/sct','Enteroinvasive Escherichia coli, serotype O28:nonmotile (organism)','407227005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.334_407229008','407229008','http://snomed.info/sct','Enteroinvasive Escherichia coli, serotype O29:nonmotile (organism)','407229008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.334_407231004','407231004','http://snomed.info/sct','Enteroinvasive Escherichia coli, serotype O112:nonmotile (organism)','407231004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.334_407233001','407233001','http://snomed.info/sct','Enteroinvasive Escherichia coli, serotype O124:nonmotile (organism)','407233001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.334_407234007','407234007','http://snomed.info/sct','Enteroinvasive Escherichia coli, serotype O124:H7 (organism)','407234007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.334_407235008','407235008','http://snomed.info/sct','Enteroinvasive Escherichia coli, serotype O124:H30 (organism)','407235008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.334_407237000','407237000','http://snomed.info/sct','Enteroinvasive Escherichia coli, serotype O136:nonmotile (organism)','407237000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.334_407239002','407239002','http://snomed.info/sct','Enteroinvasive Escherichia coli, serotype O143:nonmotile (organism)','407239002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.334_407241001','407241001','http://snomed.info/sct','Enteroinvasive Escherichia coli, serotype O144:nonmotile (organism)','407241001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.334_407243003','407243003','http://snomed.info/sct','Enteroinvasive Escherichia coli, serotype O152:nonmotile (organism)','407243003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.334_407245005','407245005','http://snomed.info/sct','Enteroinvasive Escherichia coli, serotype O164:nonmotile (organism)','407245005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.334_407246006','407246006','http://snomed.info/sct','Enteroinvasive Escherichia coli, serotype O167:nonmotile (organism)','407246006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.334_733596002','733596002','http://snomed.info/sct','Enteroinvasive Escherichia coli serogroup O:nonmotile (organism)','733596002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.334_718686007','718686007','http://snomed.info/sct','Deoxyribonucleic acid of Shigella species or Enteroinvasive Escherichia coli detected (finding)','718686007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.851_113497007','113497007','http://snomed.info/sct','Borrelia garinii (organism)','113497007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.851_416551001','416551001','http://snomed.info/sct','Borrelia afzelii (organism)','416551001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1137_406605001','406605001','http://snomed.info/sct','Glycopeptide intermediate Staphylococcus aureus (organism)','406605001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1137_406962002','406962002','http://snomed.info/sct','Vancomycin intermediate Staphylococcus aureus (organism)','406962002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1137_406576009','406576009','http://snomed.info/sct','Vancomycin intermediate/resistant Staphylococcus aureus (organism)','406576009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1137_406606000','406606000','http://snomed.info/sct','Glycopeptide intermediate/resistant Staphylococcus aureus (organism)','406606000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.852_113500001','113500001','http://snomed.info/sct','Borrelia miyamotoi (organism)','113500001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.852_24986006','24986006','http://snomed.info/sct','Borrelia turicatae (organism)','24986006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.852_41704008','41704008','http://snomed.info/sct','Borrelia parkeri (organism)','41704008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.852_62748005','62748005','http://snomed.info/sct','Borrelia hermsii (organism)','62748005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2221_407444007','407444007','http://snomed.info/sct','Genus Cytomegalovirus (organism)','407444007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2221_120986001','120986001','http://snomed.info/sct','Antigen of Cytomegalovirus (substance)','120986001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2221_121109001','121109001','http://snomed.info/sct','Deoxyribonucleic acid of Cytomegalovirus (substance)','121109001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2221_243579005','243579005','http://snomed.info/sct','Cytomegalovirus humanbeta5 (organism)','243579005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2221_260207001','260207001','http://snomed.info/sct','Early antigen of Cytomegalovirus (substance)','260207001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1372_117276008','117276008','http://snomed.info/sct','Ribonucleic acid of Japanese encephalitis virus (substance)','117276008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1372_121027000','121027000','http://snomed.info/sct','Antigen of Japanese encephalitis virus (substance)','121027000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1372_243603004','243603004','http://snomed.info/sct','Japanese encephalitis virus (organism)','243603004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1372_407540001','407540001','http://snomed.info/sct','Japanese encephalitis virus group (organism)','407540001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2068_48708001','48708001','http://snomed.info/sct','Angiostrongylus cantonensis (organism)','48708001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2068_609044003','609044003','http://snomed.info/sct','Adult of Angiostrongylus cantonensis (organism)','609044003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2068_609060004','609060004','http://snomed.info/sct','Larva of Angiostrongylus cantonensis (organism)','609060004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2068_708143001','708143001','http://snomed.info/sct','Deoxyribonucleic acid of Angiostrongylus cantonensis (substance)','708143001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2068_708144007','708144007','http://snomed.info/sct','Deoxyribonucleic acid of Angiostrongylus costaricensis (substance)','708144007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2068_7153002','7153002','http://snomed.info/sct','Angiostrongylus (organism)','7153002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2068_72966005','72966005','http://snomed.info/sct','Angiostrongylus costaricensis (organism)','72966005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2066_20984004','20984004','http://snomed.info/sct','Diphyllobothrium houghtonii (organism)','20984004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2066_284086000','284086000','http://snomed.info/sct','Diphyllobothrium mansonoides (organism)','284086000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2066_36549007','36549007','http://snomed.info/sct','Diphyllobothrium ditremum (organism)','36549007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2066_38489008','38489008','http://snomed.info/sct','Diphyllobothrium minus (organism)','38489008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2066_40406002','40406002','http://snomed.info/sct','Diphyllobothrium latum (organism)','40406002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2066_41597005','41597005','http://snomed.info/sct','Diphyllobothrium dendriticum (organism)','41597005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2066_416173001','416173001','http://snomed.info/sct','Diphyllobothrium yonagoensis (organism)','416173001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2066_417706005','417706005','http://snomed.info/sct','Diphyllobothrium lanceolatum (organism)','417706005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2066_43113008','43113008','http://snomed.info/sct','Diphyllobothrium strictum (organism)','43113008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2066_48262003','48262003','http://snomed.info/sct','Diphyllobothrium (organism)','48262003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2066_50743007','50743007','http://snomed.info/sct','Diphyllobothrium cordatum (organism)','50743007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2066_5416001','5416001','http://snomed.info/sct','Diphyllobothrium dalliae (organism)','5416001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2066_608971007','608971007','http://snomed.info/sct','Adult of Diphyllobothrium latum (organism)','608971007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2066_608974004','608974004','http://snomed.info/sct','Larva of Diphyllobothrium latum (organism)','608974004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2066_608975003','608975003','http://snomed.info/sct','Plerocercoid larva of Diphyllobothrium latum (organism)','608975003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2066_608979009','608979009','http://snomed.info/sct','Egg of Diphyllobothrium latum (organism)','608979009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2066_719244000','719244000','http://snomed.info/sct','Egg of genus Diphyllobothrium (organism)','719244000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2066_767167004','767167004','http://snomed.info/sct','Procercoid larva of Diphyllobothrium latum (organism)','767167004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2066_82616007','82616007','http://snomed.info/sct','Diphyllobothrium ursi (organism)','82616007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2066_86438003','86438003','http://snomed.info/sct','Diphyllobothrium pacificum (organism)','86438003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1308_121007001','121007001','http://snomed.info/sct','Antigen of Orthopneumovirus hominis (substance)','121007001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1308_13320001000004109','13320001000004109','http://snomed.info/sct','Human respiratory syncytial virus isolated in sputum by culture (finding)','13320001000004109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1308_417770000','417770000','http://snomed.info/sct','Human respiratory syncytial virus Group A (organism)','417770000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1308_417771001','417771001','http://snomed.info/sct','Human respiratory syncytial virus Group B (organism)','417771001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1308_417772008','417772008','http://snomed.info/sct','Human respiratory syncytial virus GA1 (organism)','417772008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1308_417773003','417773003','http://snomed.info/sct','Human respiratory syncytial virus GA2 (organism)','417773003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1308_417774009','417774009','http://snomed.info/sct','Human respiratory syncytial virus GA3 (organism)','417774009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1308_417790009','417790009','http://snomed.info/sct','Human respiratory syncytial virus GA4 (organism)','417790009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1308_417791008','417791008','http://snomed.info/sct','Human respiratory syncytial virus GA5 (organism)','417791008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1308_417792001','417792001','http://snomed.info/sct','Human respiratory syncytial virus GA6 (organism)','417792001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1308_417793006','417793006','http://snomed.info/sct','Human respiratory syncytial virus GA7 (organism)','417793006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1308_417794000','417794000','http://snomed.info/sct','Human respiratory syncytial virus GB1 (organism)','417794000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1308_417795004','417795004','http://snomed.info/sct','Human respiratory syncytial virus GB2 (organism)','417795004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1308_417796003','417796003','http://snomed.info/sct','Human respiratory syncytial virus GB3 (organism)','417796003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1308_417797007','417797007','http://snomed.info/sct','Human respiratory syncytial virus GB4 (organism)','417797007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1308_440929004','440929004','http://snomed.info/sct','Respiratory syncytial virus A present (finding)','440929004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1308_441048007','441048007','http://snomed.info/sct','Respiratory syncytial virus B present (finding)','441048007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1308_441278007','441278007','http://snomed.info/sct','Respiratory syncytial virus untyped strain present (finding)','441278007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1308_6415009','6415009','http://snomed.info/sct','Human respiratory syncytial virus (organism)','6415009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1308_707779003','707779003','http://snomed.info/sct','Ribonucleic acid of Human respiratory syncytial virus A (substance)','707779003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1308_707780000','707780000','http://snomed.info/sct','Ribonucleic acid of Human respiratory syncytial virus B (substance)','707780000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1308_707781001','707781001','http://snomed.info/sct','Ribonucleic acid of Human respiratory syncytial virus (substance)','707781001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1947_707928001','707928001','http://snomed.info/sct','Ribonucleic acid of Jamestown Canyon virus (substance)','707928001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1947_9194001','9194001','http://snomed.info/sct','Jamestown Canyon virus (organism)','9194001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.606_789472000','789472000','http://snomed.info/sct','Mycobacterium tuberculosis protein (substance)','789472000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.606_117193003','117193003','http://snomed.info/sct','Ribosomal ribonucleic acid of Mycobacterium tuberculosis hominis (substance)','117193003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.606_117285008','117285008','http://snomed.info/sct','Deoxyribonucleic acid of Mycobacterium tuberculosis (substance)','117285008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.606_27142009','27142009','http://snomed.info/sct','Mycobacterium bovis (organism)','27142009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.606_33610009','33610009','http://snomed.info/sct','Attenuated Mycobacterium bovis (organism)','33610009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.606_414789006','414789006','http://snomed.info/sct','Mycobacterium canettii (organism)','414789006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.606_430579009','430579009','http://snomed.info/sct','Mycobacterium caprae (organism)','430579009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.606_51320008','51320008','http://snomed.info/sct','Mycobacterium africanum (organism)','51320008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.606_707646005','707646005','http://snomed.info/sct','Ribosomal ribonucleic acid of Mycobacterium tuberculosis complex (substance)','707646005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.606_707647001','707647001','http://snomed.info/sct','Ribosomal ribonucleic acid of Mycobacterium tuberculosis (substance)','707647001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.606_70801007','70801007','http://snomed.info/sct','Mycobacterium microti (organism)','70801007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.606_708371000','708371000','http://snomed.info/sct','Deoxyribonucleic acid of Mycobacterium tuberculosis complex (substance)','708371000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.606_832924651000087107','832924651000087107','http://snomed.info/sct','Mycobacterium bovis subspecies bovis (organism)','832924651000087107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.606_430914003','430914003','http://snomed.info/sct','Mycobacterium pinnipedii (organism)','430914003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.606_113861009','113861009','http://snomed.info/sct','Mycobacterium tuberculosis (organism)','113861009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.606_243370005','243370005','http://snomed.info/sct','Mycobacterium tuberculosis classical variant (organism)','243370005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.606_243371009','243371009','http://snomed.info/sct','Mycobacterium tuberculosis Asian variant (organism)','243371009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.606_243372002','243372002','http://snomed.info/sct','Mycobacterium tuberculosis African I variant (organism)','243372002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.606_243373007','243373007','http://snomed.info/sct','Mycobacterium tuberculosis African II variant (organism)','243373007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.606_36354002','36354002','http://snomed.info/sct','Mycobacterium tuberculosis hominis (organism)','36354002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.606_113858008','113858008','http://snomed.info/sct','Mycobacterium tuberculosis complex (organism)','113858008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1029_14401000146103','14401000146103','http://snomed.info/sct','Listeria fleischmannii (organism)','14401000146103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1029_14411000146101','14411000146101','http://snomed.info/sct','Listeria weihenstephanensis (organism)','14411000146101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1029_23566007','23566007','http://snomed.info/sct','Genus Listeria (organism)','23566007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1029_243284003','243284003','http://snomed.info/sct','Listeria ivanovii subspecies londoniensis (organism)','243284003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1029_43091008','43091008','http://snomed.info/sct','Listeria seeligeri (organism)','43091008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1029_433053006','433053006','http://snomed.info/sct','Listeria ivanovii subspecies ivanovii (organism)','433053006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1029_48331004','48331004','http://snomed.info/sct','Listeria innocua (organism)','48331004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1029_55032007','55032007','http://snomed.info/sct','Listeria ivanovii (organism)','55032007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1029_67816007','67816007','http://snomed.info/sct','Listeria grayi (organism)','67816007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1029_80757000','80757000','http://snomed.info/sct','Listeria welshimeri (organism)','80757000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1029_117187006','117187006','http://snomed.info/sct','Ribosomal ribonucleic acid of Listeria monocytogenes (substance)','117187006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1029_36094007','36094007','http://snomed.info/sct','Listeria monocytogenes (organism)','36094007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1029_450536000','450536000','http://snomed.info/sct','Listeria monocytogenes serotype 1/2a (organism)','450536000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1029_450537009','450537009','http://snomed.info/sct','Listeria monocytogenes serotype 1/2b (organism)','450537009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1029_450538004','450538004','http://snomed.info/sct','Listeria monocytogenes serotype 1/2c (organism)','450538004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1029_450539007','450539007','http://snomed.info/sct','Listeria monocytogenes serotype 4b (organism)','450539007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1029_450540009','450540009','http://snomed.info/sct','Listeria monocytogenes serotype 3a (organism)','450540009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1029_450541008','450541008','http://snomed.info/sct','Listeria monocytogenes serotype 3b (organism)','450541008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1029_450542001','450542001','http://snomed.info/sct','Listeria monocytogenes serotype 3c (organism)','450542001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1029_450543006','450543006','http://snomed.info/sct','Listeria monocytogenes serotype 4a (organism)','450543006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1029_450544000','450544000','http://snomed.info/sct','Listeria monocytogenes serotype 4c (organism)','450544000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1029_450545004','450545004','http://snomed.info/sct','Listeria monocytogenes serotype 4ab (organism)','450545004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1029_450546003','450546003','http://snomed.info/sct','Listeria monocytogenes serotype 4d (organism)','450546003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1029_450547007','450547007','http://snomed.info/sct','Listeria monocytogenes serotype 4e (organism)','450547007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1029_450548002','450548002','http://snomed.info/sct','Listeria monocytogenes serotype 7 (organism)','450548002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1029_698150000','698150000','http://snomed.info/sct','Listeria monocytogenes serotype 4bx (organism)','698150000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1029_708345004','708345004','http://snomed.info/sct','Deoxyribonucleic acid of Listeria monocytogenes (substance)','708345004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_1055262004','1055262004','http://snomed.info/sct','Agomelatine citric acid (substance)','1055262004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_108388004','108388004','http://snomed.info/sct','Ureide (substance)','108388004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_108389007','108389007','http://snomed.info/sct','Acetylcarbromal (substance)','108389007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_108391004','108391004','http://snomed.info/sct','Quazepam (substance)','108391004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_108447000','108447000','http://snomed.info/sct','Mivacurium chloride (substance)','108447000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_108450002','108450002','http://snomed.info/sct','Rocuronium bromide (substance)','108450002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_108453000','108453000','http://snomed.info/sct','Cisatracurium besilate (substance)','108453000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_108456008','108456008','http://snomed.info/sct','Pipecuronium bromide (substance)','108456008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_108459001','108459001','http://snomed.info/sct','Doxacurium chloride (substance)','108459001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_108482004','108482004','http://snomed.info/sct','Sildenafil citrate (substance)','108482004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_108513001','108513001','http://snomed.info/sct','Ketorolac trometamol (substance)','108513001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_108515008','108515008','http://snomed.info/sct','Diclofenac potassium (substance)','108515008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_108518005','108518005','http://snomed.info/sct','Oxaprozin (substance)','108518005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_108520008','108520008','http://snomed.info/sct','Bromfenac (substance)','108520008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_108521007','108521007','http://snomed.info/sct','Bromfenac sodium (substance)','108521007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_108629001','108629001','http://snomed.info/sct','Nedocromil sodium (substance)','108629001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_108674008','108674008','http://snomed.info/sct','Olsalazine sodium (substance)','108674008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_108849007','108849007','http://snomed.info/sct','Suprofen (substance)','108849007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_111122008','111122008','http://snomed.info/sct','Calcium carbaspirin (substance)','111122008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_111124009','111124009','http://snomed.info/sct','Barbital (substance)','111124009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_111126006','111126006','http://snomed.info/sct','Ethchlorvynol (substance)','111126006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_11136004','11136004','http://snomed.info/sct','Methoxyflurane (substance)','11136004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_115557009','115557009','http://snomed.info/sct','Demoxepam (substance)','115557009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_115558004','115558004','http://snomed.info/sct','Desalkylflurazepam (substance)','115558004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_115559007','115559007','http://snomed.info/sct','Norchlordiazepoxide (substance)','115559007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_1156232002','1156232002','http://snomed.info/sct','Flufenamic acid (substance)','1156232002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_116081000','116081000','http://snomed.info/sct','Celecoxib (substance)','116081000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_116106006','116106006','http://snomed.info/sct','Rapacuronium bromide (substance)','116106006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_11633008','11633008','http://snomed.info/sct','Flurbiprofen sodium (substance)','11633008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_116344009','116344009','http://snomed.info/sct','Amfetamine aspartate (substance)','116344009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_116348007','116348007','http://snomed.info/sct','Dexmedetomidine hydrochloride (substance)','116348007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_116727007','116727007','http://snomed.info/sct','Mefenamate (substance)','116727007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_117153001','117153001','http://snomed.info/sct','Desmethylclobazam (substance)','117153001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_117158005','117158005','http://snomed.info/sct','Alpha hydroxyalprazolam (substance)','117158005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_117159002','117159002','http://snomed.info/sct','Hydroxyethylflurazepam (substance)','117159002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_117160007','117160007','http://snomed.info/sct','Hydroxytriazolam (substance)','117160007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_117178002','117178002','http://snomed.info/sct','Meclofenamate (substance)','117178002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_1173005008','1173005008','http://snomed.info/sct','Drotaverine hydrochloride (substance)','1173005008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_117493005','117493005','http://snomed.info/sct','7-aminoflunitrazepam (substance)','117493005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_1190007','1190007','http://snomed.info/sct','Mephenoxalone (substance)','1190007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_123010001','123010001','http://snomed.info/sct','4-Hydroxyalprazolam (substance)','123010001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_12525000','12525000','http://snomed.info/sct','Tybamate (substance)','12525000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_125710006','125710006','http://snomed.info/sct','Carprofen (substance)','125710006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_129478004','129478004','http://snomed.info/sct','Almotriptan malate (substance)','129478004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_129480005','129480005','http://snomed.info/sct','1-(1-(2-thienyl) cyclohexyl) piperidine (substance)','129480005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_129481009','129481009','http://snomed.info/sct','1-piperidinocyclohexanecarbonitrile (substance)','129481009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_1325004','1325004','http://snomed.info/sct','Metocurine iodide (substance)','1325004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_136501000146105','136501000146105','http://snomed.info/sct','Piketoprofen (substance)','136501000146105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_1450002','1450002','http://snomed.info/sct','Methylpentynol (substance)','1450002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_15322006','15322006','http://snomed.info/sct','Benzoquinonium (substance)','15322006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_15698006','15698006','http://snomed.info/sct','Lysergic acid diethylamide (substance)','15698006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_15785009','15785009','http://snomed.info/sct','Phenazopyridine (substance)','15785009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_15810003','15810003','http://snomed.info/sct','Tuaminoheptane (substance)','15810003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_16125005','16125005','http://snomed.info/sct','Styramate (substance)','16125005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_16211000122103','16211000122103','http://snomed.info/sct','Cloxazolam (substance)','16211000122103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_16285003','16285003','http://snomed.info/sct','Isoamyl salicylate (substance)','16285003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_16311000122105','16311000122105','http://snomed.info/sct','Idrocilamide (substance)','16311000122105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_16748005','16748005','http://snomed.info/sct','Zolamine (substance)','16748005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_18991000122102','18991000122102','http://snomed.info/sct','Loxoprofen (substance)','18991000122102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_19978007','19978007','http://snomed.info/sct','Hexafluorenium (substance)','19978007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_20378006','20378006','http://snomed.info/sct','Methyldimethoxyamphetamine (substance)','20378006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_21303006','21303006','http://snomed.info/sct','Methoxamine hydrochloride (substance)','21303006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_21394008','21394008','http://snomed.info/sct','Adiphenine (substance)','21394008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_22165008','22165008','http://snomed.info/sct','Metamizole sodium (substance)','22165008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_22192002','22192002','http://snomed.info/sct','Salicylamide (substance)','22192002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_229003004','229003004','http://snomed.info/sct','Cocaine freebase (substance)','229003004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_229006007','229006007','http://snomed.info/sct','Hallucinogenic mushrooms (substance)','229006007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_25486007','25486007','http://snomed.info/sct','Sodium thiosalicylate (substance)','25486007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_255637000','255637000','http://snomed.info/sct','Salicylate (substance)','255637000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_255641001','255641001','http://snomed.info/sct','Caffeine (substance)','255641001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_256053009','256053009','http://snomed.info/sct','Tetrachlorosalicylanilide (substance)','256053009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_25796002','25796002','http://snomed.info/sct','Aluminium aspirin (substance)','25796002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_26945002','26945002','http://snomed.info/sct','Phendimetrazine tartrate (substance)','26945002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_273948005','273948005','http://snomed.info/sct','Chloral hydrate (substance)','273948005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_273951003','273951003','http://snomed.info/sct','Phenylbutazone (substance)','273951003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_273952005','273952005','http://snomed.info/sct','Bufexamac (substance)','273952005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_27928002','27928002','http://snomed.info/sct','Flurazepam hydrochloride (substance)','27928002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_288459003','288459003','http://snomed.info/sct','Methylenedioxymethamphetamine (substance)','288459003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_29622009','29622009','http://snomed.info/sct','Octyl salicylate (substance)','29622009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_2964005','2964005','http://snomed.info/sct','Dimethoxyamphetamine (substance)','2964005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_311492009','311492009','http://snomed.info/sct','Ingestible alcohol (substance)','311492009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_31799007','31799007','http://snomed.info/sct','Mephentermine sulfate (substance)','31799007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_31815007','31815007','http://snomed.info/sct','Oxybutynin hydrochloride (substance)','31815007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_32083005','32083005','http://snomed.info/sct','Oxanamide (substance)','32083005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_3209002','3209002','http://snomed.info/sct','Pancuronium sodium (substance)','3209002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_322300008','322300008','http://snomed.info/sct','Nefopam hydrochloride (substance)','322300008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_331143003','331143003','http://snomed.info/sct','Benzydamine hydrochloride (substance)','331143003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_363569003','363569003','http://snomed.info/sct','Almotriptan (substance)','363569003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_372493004','372493004','http://snomed.info/sct','Mivacurium (substance)','372493004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_372494005','372494005','http://snomed.info/sct','Rocuronium (substance)','372494005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_372495006','372495006','http://snomed.info/sct','Cisatracurium (substance)','372495006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_372496007','372496007','http://snomed.info/sct','Doxacurium (substance)','372496007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_372501008','372501008','http://snomed.info/sct','Ketorolac (substance)','372501008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_372519004','372519004','http://snomed.info/sct','Nedocromil (substance)','372519004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_372572000','372572000','http://snomed.info/sct','Sildenafil (substance)','372572000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_372583009','372583009','http://snomed.info/sct','Centrally acting muscle relaxant (substance)','372583009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_372588000','372588000','http://snomed.info/sct','Naproxen (substance)','372588000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_372614000','372614000','http://snomed.info/sct','Sedative (substance)','372614000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_372615004','372615004','http://snomed.info/sct','Barbiturate sedative (substance)','372615004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_372616003','372616003','http://snomed.info/sct','Benzodiazepine sedative (substance)','372616003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_372617007','372617007','http://snomed.info/sct','Carbamate sedative (substance)','372617007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_372620004','372620004','http://snomed.info/sct','Central stimulant (substance)','372620004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_372664007','372664007','http://snomed.info/sct','Benzodiazepine (substance)','372664007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_372665008','372665008','http://snomed.info/sct','Non-steroidal anti-inflammatory agent (substance)','372665008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_372666009','372666009','http://snomed.info/sct','Skeletal muscle relaxant (substance)','372666009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_372702004','372702004','http://snomed.info/sct','Thiosalicylate (substance)','372702004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_372703009','372703009','http://snomed.info/sct','Pentobarbital (substance)','372703009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_372714007','372714007','http://snomed.info/sct','Orphenadrine (substance)','372714007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_372717000','372717000','http://snomed.info/sct','Oxybutynin (substance)','372717000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_372724004','372724004','http://snomed.info/sct','Succinylcholine (substance)','372724004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_372737001','372737001','http://snomed.info/sct','Secobarbital (substance)','372737001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_372748008','372748008','http://snomed.info/sct','Tolmetin (substance)','372748008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_372768002','372768002','http://snomed.info/sct','Flavoxate (substance)','372768002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_372769005','372769005','http://snomed.info/sct','Methoxamine (substance)','372769005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_372790002','372790002','http://snomed.info/sct','Nondepolarizing agent (substance)','372790002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_372819007','372819007','http://snomed.info/sct','Dantrolene (substance)','372819007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_372831009','372831009','http://snomed.info/sct','Amobarbital (substance)','372831009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_372835000','372835000','http://snomed.info/sct','Atracurium (substance)','372835000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_372866006','372866006','http://snomed.info/sct','Chlordiazepoxide (substance)','372866006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_372883002','372883002','http://snomed.info/sct','Vecuronium (substance)','372883002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_372894003','372894003','http://snomed.info/sct','Smooth muscle relaxant (substance)','372894003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_373216001','373216001','http://snomed.info/sct','Non-opioid analgesic (substance)','373216001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_373250005','373250005','http://snomed.info/sct','Depolarizing agent (substance)','373250005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_373295003','373295003','http://snomed.info/sct','Neuromuscular blocking agent (substance)','373295003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_373337007','373337007','http://snomed.info/sct','Methylphenidate (substance)','373337007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_373340007','373340007','http://snomed.info/sct','Phendimetrazine (substance)','373340007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_373343009','373343009','http://snomed.info/sct','Phentermine (substance)','373343009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_373440006','373440006','http://snomed.info/sct','Tizanidine (substance)','373440006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_373469002','373469002','http://snomed.info/sct','Hallucinogenic agent (substance)','373469002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_373476007','373476007','http://snomed.info/sct','Midazolam (substance)','373476007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_373493007','373493007','http://snomed.info/sct','Propiomazine (substance)','373493007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_373506008','373506008','http://snomed.info/sct','Flurbiprofen (substance)','373506008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_373513008','373513008','http://snomed.info/sct','Indometacin (substance)','373513008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_373525006','373525006','http://snomed.info/sct','Fenoprofen (substance)','373525006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_373725008','373725008','http://snomed.info/sct','Pipecuronium (substance)','373725008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_373737005','373737005','http://snomed.info/sct','Hydroxyalprazolam (substance)','373737005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_373738000','373738000','http://snomed.info/sct','Pancuronium (substance)','373738000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_373764006','373764006','http://snomed.info/sct','Pancuronium bromide (substance)','373764006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_373775005','373775005','http://snomed.info/sct','Gastrointestinal smooth muscle relaxant (substance)','373775005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_373778007','373778007','http://snomed.info/sct','Chlorphenesin (substance)','373778007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_373779004','373779004','http://snomed.info/sct','Cyclobenzaprine (substance)','373779004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_373780001','373780001','http://snomed.info/sct','Mescaline (substance)','373780001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_373781002','373781002','http://snomed.info/sct','Metocurine (substance)','373781002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_37765000','37765000','http://snomed.info/sct','Amfepramone hydrochloride (substance)','37765000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_385555005','385555005','http://snomed.info/sct','Dexmethylphenidate hydrochloride (substance)','385555005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_385584001','385584001','http://snomed.info/sct','Valdecoxib (substance)','385584001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_38648002','38648002','http://snomed.info/sct','Mephentermine (substance)','38648002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_386832008','386832008','http://snomed.info/sct','Ketoprofen (substance)','386832008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_386846008','386846008','http://snomed.info/sct','Dronabinol (substance)','386846008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_386859000','386859000','http://snomed.info/sct','Nabumetone (substance)','386859000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_386860005','386860005','http://snomed.info/sct','Etodolac (substance)','386860005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_386890003','386890003','http://snomed.info/sct','Olsalazine (substance)','386890003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_386983007','386983007','http://snomed.info/sct','Alprazolam (substance)','386983007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_386984001','386984001','http://snomed.info/sct','Triazolam (substance)','386984001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_386988003','386988003','http://snomed.info/sct','Methyl salicylate (substance)','386988003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_386994006','386994006','http://snomed.info/sct','Dextro-methamphetamine (substance)','386994006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_386995007','386995007','http://snomed.info/sct','Levo-methamphetamine (substance)','386995007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_387004007','387004007','http://snomed.info/sct','Modafinil (substance)','387004007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_387008005','387008005','http://snomed.info/sct','Rofecoxib (substance)','387008005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_387012004','387012004','http://snomed.info/sct','Zaleplon (substance)','387012004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_387022005','387022005','http://snomed.info/sct','Dexamfetamine saccharate (substance)','387022005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_387026008','387026008','http://snomed.info/sct','Dichloralphenazone (substance)','387026008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_387050005','387050005','http://snomed.info/sct','Substance with prostaglandin-endoperoxide synthase isoform 2 inhibitor mechanism of action (substance)','387050005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_387055000','387055000','http://snomed.info/sct','Meloxicam (substance)','387055000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_387062009','387062009','http://snomed.info/sct','Hydroxyamfetamine hydrobromide (substance)','387062009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_387072007','387072007','http://snomed.info/sct','Salsalate (substance)','387072007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_387085005','387085005','http://snomed.info/sct','Cocaine (substance)','387085005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_387097006','387097006','http://snomed.info/sct','Gallamine triethiodide (substance)','387097006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_387106007','387106007','http://snomed.info/sct','Lorazepam (substance)','387106007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_387109000','387109000','http://snomed.info/sct','Flurazepam (substance)','387109000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_387116004','387116004','http://snomed.info/sct','Diflunisal (substance)','387116004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_387119006','387119006','http://snomed.info/sct','Phenazopyridine hydrochloride (substance)','387119006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_387127002','387127002','http://snomed.info/sct','Phenmetrazine (substance)','387127002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_387133006','387133006','http://snomed.info/sct','Carisoprodol (substance)','387133006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_387153005','387153005','http://snomed.info/sct','Piroxicam (substance)','387153005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_387167001','387167001','http://snomed.info/sct','Orphenadrine citrate (substance)','387167001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_387169003','387169003','http://snomed.info/sct','Methyprylon (substance)','387169003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_387185008','387185008','http://snomed.info/sct','Mefenamic acid (substance)','387185008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_387190006','387190006','http://snomed.info/sct','Paraldehyde (substance)','387190006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_387192003','387192003','http://snomed.info/sct','Medazepam (substance)','387192003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_387207008','387207008','http://snomed.info/sct','Ibuprofen (substance)','387207008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_387248006','387248006','http://snomed.info/sct','Sulfasalazine (substance)','387248006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_387252006','387252006','http://snomed.info/sct','Methylphenobarbital (substance)','387252006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_387253001','387253001','http://snomed.info/sct','Salicylic acid (substance)','387253001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_387262004','387262004','http://snomed.info/sct','Fenfluramine hydrochloride (substance)','387262004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_387264003','387264003','http://snomed.info/sct','Diazepam (substance)','387264003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_387269008','387269008','http://snomed.info/sct','Oxyphenbutazone (substance)','387269008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_387278002','387278002','http://snomed.info/sct','Dexamfetamine (substance)','387278002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_387290000','387290000','http://snomed.info/sct','Hydroxyamfetamine (substance)','387290000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_387300007','387300007','http://snomed.info/sct','Temazepam (substance)','387300007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_387303009','387303009','http://snomed.info/sct','Amfepramone (substance)','387303009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_387329009','387329009','http://snomed.info/sct','Methamphetamine hydrochloride (substance)','387329009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_387342009','387342009','http://snomed.info/sct','Baclofen (substance)','387342009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_387343004','387343004','http://snomed.info/sct','Amobarbital sodium (substance)','387343004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_387383007','387383007','http://snomed.info/sct','Clonazepam (substance)','387383007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_387393000','387393000','http://snomed.info/sct','Pemoline (substance)','387393000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_387395007','387395007','http://snomed.info/sct','Meprobamate (substance)','387395007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_387400008','387400008','http://snomed.info/sct','Chlormezanone (substance)','387400008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_387405003','387405003','http://snomed.info/sct','Cyclandelate (substance)','387405003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_387411000','387411000','http://snomed.info/sct','Sodium salicylate (substance)','387411000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_387417001','387417001','http://snomed.info/sct','Prazepam (substance)','387417001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_387435005','387435005','http://snomed.info/sct','Gallamine (substance)','387435005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_387449001','387449001','http://snomed.info/sct','Nitrazepam (substance)','387449001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_387451002','387451002','http://snomed.info/sct','Fenfluramine (substance)','387451002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_387453004','387453004','http://snomed.info/sct','Dipotassium clorazepate (substance)','387453004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_387455006','387455006','http://snomed.info/sct','Oxazepam (substance)','387455006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_387458008','387458008','http://snomed.info/sct','Aspirin (substance)','387458008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_387459000','387459000','http://snomed.info/sct','Psychostimulant (substance)','387459000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_387462002','387462002','http://snomed.info/sct','Phenmetrazine hydrochloride (substance)','387462002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_387486000','387486000','http://snomed.info/sct','Methocarbamol (substance)','387486000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_387499002','387499002','http://snomed.info/sct','Metamfetamine (substance)','387499002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_387501005','387501005','http://snomed.info/sct','Mesalazine (substance)','387501005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_387509007','387509007','http://snomed.info/sct','Levomepromazine (substance)','387509007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_387513000','387513000','http://snomed.info/sct','Sulindac (substance)','387513000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_387517004','387517004','http://snomed.info/sct','Paracetamol (substance)','387517004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_387523009','387523009','http://snomed.info/sct','Buspirone (substance)','387523009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_387569009','387569009','http://snomed.info/sct','Zolpidem (substance)','387569009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_387570005','387570005','http://snomed.info/sct','Lormetazepam (substance)','387570005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_387571009','387571009','http://snomed.info/sct','Bromazepam (substance)','387571009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_387572002','387572002','http://snomed.info/sct','Clobazam (substance)','387572002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_387573007','387573007','http://snomed.info/sct','Flunitrazepam (substance)','387573007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_387574001','387574001','http://snomed.info/sct','Dimetamfetamine (substance)','387574001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_387576004','387576004','http://snomed.info/sct','Prolintane (substance)','387576004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_391703003','391703003','http://snomed.info/sct','Aceclofenac (substance)','391703003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_391704009','391704009','http://snomed.info/sct','Acemetacin (substance)','391704009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_391798003','391798003','http://snomed.info/sct','Azapropazone (substance)','391798003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_391811002','391811002','http://snomed.info/sct','Balsalazide disodium (substance)','391811002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_391819000','391819000','http://snomed.info/sct','Benorilate (substance)','391819000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_39514001','39514001','http://snomed.info/sct','Decamethonium (substance)','39514001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_395755006','395755006','http://snomed.info/sct','Butobarbital (substance)','395755006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_395774003','395774003','http://snomed.info/sct','Loprazolam (substance)','395774003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_395790003','395790003','http://snomed.info/sct','Levomepromazine maleate (substance)','395790003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_395813009','395813009','http://snomed.info/sct','Orphenadrine hydrochloride (substance)','395813009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_395898001','395898001','http://snomed.info/sct','Tenoxicam (substance)','395898001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_395902007','395902007','http://snomed.info/sct','Tiaprofenic acid (substance)','395902007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_395910008','395910008','http://snomed.info/sct','Tolfenamic acid (substance)','395910008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_395914004','395914004','http://snomed.info/sct','Triclofos sodium (substance)','395914004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_395928005','395928005','http://snomed.info/sct','Zolpidem tartrate (substance)','395928005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_395929002','395929002','http://snomed.info/sct','Zopiclone (substance)','395929002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_395978007','395978007','http://snomed.info/sct','Clomethiazole (substance)','395978007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_396018005','396018005','http://snomed.info/sct','Dexketoprofen (substance)','396018005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_396023005','396023005','http://snomed.info/sct','Diethylamine salicylate (substance)','396023005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_396051001','396051001','http://snomed.info/sct','Felbinac (substance)','396051001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_396052008','396052008','http://snomed.info/sct','Fenbufen (substance)','396052008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_396197001','396197001','http://snomed.info/sct','Benoxaprofen (substance)','396197001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_39815009','39815009','http://snomed.info/sct','Clorazepate (substance)','39815009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_3983008','3983008','http://snomed.info/sct','N,-N-dimethyltryptamine (substance)','3983008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_398705004','398705004','http://snomed.info/sct','Cannabis (substance)','398705004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_404858007','404858007','http://snomed.info/sct','Vardenafil (substance)','404858007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_40601003','40601003','http://snomed.info/sct','Chlordiazepoxide hydrochloride (substance)','40601003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_407030007','407030007','http://snomed.info/sct','Solifenacin (substance)','407030007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_407111005','407111005','http://snomed.info/sct','Tadalafil (substance)','407111005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_409134009','409134009','http://snomed.info/sct','Etoricoxib (substance)','409134009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_409135005','409135005','http://snomed.info/sct','Parecoxib (substance)','409135005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_409420000','409420000','http://snomed.info/sct','Eszopiclone (substance)','409420000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_410917003','410917003','http://snomed.info/sct','Sodium oxybate (substance)','410917003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_412013008','412013008','http://snomed.info/sct','Lornoxicam (substance)','412013008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_412035000','412035000','http://snomed.info/sct','Amfetamine and/or amfetamine derivative (substance)','412035000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_412093009','412093009','http://snomed.info/sct','Cinnamedrine (substance)','412093009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_412124008','412124008','http://snomed.info/sct','Choline magnesium trisalicylate (substance)','412124008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_412246009','412246009','http://snomed.info/sct','Methaqualone hydrochloride (substance)','412246009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_412327005','412327005','http://snomed.info/sct','Salicin extract (substance)','412327005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_412341001','412341001','http://snomed.info/sct','Zomepirac sodium (substance)','412341001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_412366002','412366002','http://snomed.info/sct','Dexfenfluramine (substance)','412366002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_412528004','412528004','http://snomed.info/sct','Vardenafil hydrochloride (substance)','412528004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_414357000','414357000','http://snomed.info/sct','Enoxolone (substance)','414357000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_416512006','416512006','http://snomed.info/sct','Ziconotide (substance)','416512006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_417479000','417479000','http://snomed.info/sct','Terodiline (substance)','417479000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_418037002','418037002','http://snomed.info/sct','Chloral derivative (substance)','418037002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_418770003','418770003','http://snomed.info/sct','Steroidal neuromuscular blocker (substance)','418770003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_418868002','418868002','http://snomed.info/sct','Dexibuprofen (substance)','418868002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_41903005','41903005','http://snomed.info/sct','Hexapradol (substance)','41903005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_419460005','419460005','http://snomed.info/sct','Nepafenac (substance)','419460005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_419484002','419484002','http://snomed.info/sct','Buspirone hydrochloride (substance)','419484002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_419657007','419657007','http://snomed.info/sct','Ketazolam (substance)','419657007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_419768004','419768004','http://snomed.info/sct','Nefopam (substance)','419768004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_419878007','419878007','http://snomed.info/sct','Ramelteon (substance)','419878007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_420177007','420177007','http://snomed.info/sct','Substance with melatonin agonist mechanism of action (substance)','420177007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_420557005','420557005','http://snomed.info/sct','Balsalazide (substance)','420557005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_420762008','420762008','http://snomed.info/sct','Triclofos (substance)','420762008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_420803009','420803009','http://snomed.info/sct','Almotriptan hydrogen malate (substance)','420803009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_421000220103','421000220103','http://snomed.info/sct','Pitolisant hydrochloride (substance)','421000220103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_421012002','421012002','http://snomed.info/sct','Aloxiprin (substance)','421012002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_421319000','421319000','http://snomed.info/sct','Benzydamine (substance)','421319000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_421574004','421574004','http://snomed.info/sct','Piroxicam beta cyclodextrin (substance)','421574004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_42163009','42163009','http://snomed.info/sct','Methylphenidate hydrochloride (substance)','42163009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_421921003','421921003','http://snomed.info/sct','Cannabinoid (substance)','421921003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_422128007','422128007','http://snomed.info/sct','Glycol salicylate (substance)','422128007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_423045006','423045006','http://snomed.info/sct','Firocoxib (substance)','423045006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_424281006','424281006','http://snomed.info/sct','Deracoxib (substance)','424281006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_424521005','424521005','http://snomed.info/sct','Midazolam maleate (substance)','424521005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_424967004','424967004','http://snomed.info/sct','Lumiracoxib (substance)','424967004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_424973003','424973003','http://snomed.info/sct','Tepoxalin (substance)','424973003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_425516000','425516000','http://snomed.info/sct','Ibuprofen lysine (substance)','425516000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_425518004','425518004','http://snomed.info/sct','Thurfyl salicylate (substance)','425518004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_425597005','425597005','http://snomed.info/sct','Lisdexamfetamine (substance)','425597005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_425650004','425650004','http://snomed.info/sct','Diclofenac epolamine (substance)','425650004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_426182008','426182008','http://snomed.info/sct','Vardenafil hydrochloride trihydrate (substance)','426182008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_426324001','426324001','http://snomed.info/sct','Solifenacin succinate (substance)','426324001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_426365001','426365001','http://snomed.info/sct','Buffered aspirin (substance)','426365001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_426428004','426428004','http://snomed.info/sct','Phentermine resin (substance)','426428004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_426714006','426714006','http://snomed.info/sct','Diclofenac diethylammonium (substance)','426714006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_42692007','42692007','http://snomed.info/sct','Naproxen sodium (substance)','42692007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_427427002','427427002','http://snomed.info/sct','Lisdexamfetamine dimesylate (substance)','427427002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_427618005','427618005','http://snomed.info/sct','Dexketoprofen trometamol (substance)','427618005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_427736002','427736002','http://snomed.info/sct','Oxaprozin potassium (substance)','427736002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_428694009','428694009','http://snomed.info/sct','Armodafinil (substance)','428694009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_432255001','432255001','http://snomed.info/sct','Fesoterodine (substance)','432255001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_437750002','437750002','http://snomed.info/sct','Dexmedetomidine (substance)','437750002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_439581000','439581000','http://snomed.info/sct','Pirfenidone (substance)','439581000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_439721004','439721004','http://snomed.info/sct','Salvia divinorum leaves (substance)','439721004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_43989002','43989002','http://snomed.info/sct','3,4-methylenedioxybenzyl methyl ketone (substance)','43989002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_441469003','441469003','http://snomed.info/sct','Fesoterodine fumarate (substance)','441469003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_442011001','442011001','http://snomed.info/sct','Loprazolam mesilate (substance)','442011001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_442254000','442254000','http://snomed.info/sct','Ethyl salicylate (substance)','442254000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_442296001','442296001','http://snomed.info/sct','Benzylisoquinolium compound (substance)','442296001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_444619001','444619001','http://snomed.info/sct','AbobotulinumtoxinA (substance)','444619001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_444627005','444627005','http://snomed.info/sct','OnabotulinumtoxinA (substance)','444627005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_44555003','44555003','http://snomed.info/sct','Methylenedioxyamphetamine (substance)','44555003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_44908000','44908000','http://snomed.info/sct','Chlorzoxazone (substance)','44908000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_45207006','45207006','http://snomed.info/sct','Dexamfetamine sulfate (substance)','45207006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_45483006','45483006','http://snomed.info/sct','Psilocin (substance)','45483006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_47355007','47355007','http://snomed.info/sct','Benzodiazepine nucleus (substance)','47355007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_47901003','47901003','http://snomed.info/sct','5-trimethoxyamphetamine (substance)','47901003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_49399009','49399009','http://snomed.info/sct','Magnesium salicylate (substance)','49399009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_49451008','49451008','http://snomed.info/sct','Ethaverine (substance)','49451008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_52601000','52601000','http://snomed.info/sct','Deproteinated pancreatic extract (substance)','52601000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_53513007','53513007','http://snomed.info/sct','Psilocybin (substance)','53513007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_53845007','53845007','http://snomed.info/sct','Bromisovalum (substance)','53845007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_54717003','54717003','http://snomed.info/sct','Ethinamate (substance)','54717003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_55486005','55486005','http://snomed.info/sct','Phenazone (substance)','55486005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_56325002','56325002','http://snomed.info/sct','Carbromal (substance)','56325002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_57911003','57911003','http://snomed.info/sct','Levomepromazine hydrochloride (substance)','57911003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_58233009','58233009','http://snomed.info/sct','Meclofenamate sodium (substance)','58233009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_58907007','58907007','http://snomed.info/sct','Succinylcholine chloride (substance)','58907007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_59314005','59314005','http://snomed.info/sct','Pipradrol (substance)','59314005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_60526005','60526005','http://snomed.info/sct','Acetyl salicylate (substance)','60526005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_6088007','6088007','http://snomed.info/sct','Benzfetamine hydrochloride (substance)','6088007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_60905001','60905001','http://snomed.info/sct','Salicylanilide (substance)','60905001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_60988002','60988002','http://snomed.info/sct','Tolmetin sodium (substance)','60988002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_62039007','62039007','http://snomed.info/sct','Diclofenac sodium (substance)','62039007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_63083007','63083007','http://snomed.info/sct','Cyclobenzaprine hydrochloride (substance)','63083007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_63545000','63545000','http://snomed.info/sct','Halazepam (substance)','63545000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_63615009','63615009','http://snomed.info/sct','Bromdimethoxyamphetamine (substance)','63615009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_6394006','6394006','http://snomed.info/sct','Phentermine hydrochloride (substance)','6394006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_6524003','6524003','http://snomed.info/sct','Distilled spirits (substance)','6524003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_65302009','65302009','http://snomed.info/sct','Choline salicylate (substance)','65302009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_65458000','65458000','http://snomed.info/sct','Aminophenazone (substance)','65458000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_65868004','65868004','http://snomed.info/sct','Propiomazine hydrochloride (substance)','65868004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_66639008','66639008','http://snomed.info/sct','Secobarbital sodium (substance)','66639008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_66843009','66843009','http://snomed.info/sct','Pentobarbital sodium (substance)','66843009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_67428007','67428007','http://snomed.info/sct','Benzfetamine (substance)','67428007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_6865007','6865007','http://snomed.info/sct','Theophylline calcium salicylate (substance)','6865007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_68669008','68669008','http://snomed.info/sct','Cyclobarbital (substance)','68669008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_69351002','69351002','http://snomed.info/sct','Methoxyphenamine (substance)','69351002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_698012009','698012009','http://snomed.info/sct','Agomelatine (substance)','698012009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_698027009','698027009','http://snomed.info/sct','Citicoline (substance)','698027009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_698050003','698050003','http://snomed.info/sct','Brotizolam (substance)','698050003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_698256004','698256004','http://snomed.info/sct','Clotiazepam (substance)','698256004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_698258003','698258003','http://snomed.info/sct','Bentazepam (substance)','698258003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_698259006','698259006','http://snomed.info/sct','Pinazepam (substance)','698259006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_698845008','698845008','http://snomed.info/sct','Tetrazepam (substance)','698845008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_698872000','698872000','http://snomed.info/sct','Triflusal (substance)','698872000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_699186006','699186006','http://snomed.info/sct','Pirisudanol (substance)','699186006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_699188007','699188007','http://snomed.info/sct','Propyphenazone (substance)','699188007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_702394009','702394009','http://snomed.info/sct','Tasimelteon (substance)','702394009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_702835000','702835000','http://snomed.info/sct','Diacerein (substance)','702835000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_703350008','703350008','http://snomed.info/sct','Apremilast (substance)','703350008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_703368006','703368006','http://snomed.info/sct','IncobotulinumtoxinA (substance)','703368006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_7034005','7034005','http://snomed.info/sct','Diclofenac (substance)','7034005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_703479000','703479000','http://snomed.info/sct','Nimesulide (substance)','703479000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_703571004','703571004','http://snomed.info/sct','Proglumetacin maleate (substance)','703571004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_703572006','703572006','http://snomed.info/sct','Proglumetacin (substance)','703572006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_703591006','703591006','http://snomed.info/sct','Pyritinol (substance)','703591006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_703592004','703592004','http://snomed.info/sct','Pyritinol hydrochloride (substance)','703592004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_703717006','703717006','http://snomed.info/sct','Tolperisone (substance)','703717006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_703718001','703718001','http://snomed.info/sct','Tolperisone hydrochloride (substance)','703718001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_703842006','703842006','http://snomed.info/sct','Amfetamine (substance)','703842006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_703956007','703956007','http://snomed.info/sct','Avanafil (substance)','703956007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_708563000','708563000','http://snomed.info/sct','Tuaminoheptane sulfate (substance)','708563000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_708599005','708599005','http://snomed.info/sct','Methoxyphenamine hydrochloride (substance)','708599005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_71183000','71183000','http://snomed.info/sct','Indometacin sodium trihydrate (substance)','71183000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_712687008','712687008','http://snomed.info/sct','Ethenzamide (substance)','712687008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_712688003','712688003','http://snomed.info/sct','Etofenamate (substance)','712688003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_712712001','712712001','http://snomed.info/sct','Ethyl linoleate (substance)','712712001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_713210000','713210000','http://snomed.info/sct','Dimethylaminoethanol bitartrate (substance)','713210000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_713469005','713469005','http://snomed.info/sct','Alminoprofen (substance)','713469005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_713470006','713470006','http://snomed.info/sct','Pranoprofen (substance)','713470006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_716308007','716308007','http://snomed.info/sct','Pitolisant (substance)','716308007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_717097006','717097006','http://snomed.info/sct','Fepradinol (substance)','717097006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_717166005','717166005','http://snomed.info/sct','Indobufen (substance)','717166005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_71813009','71813009','http://snomed.info/sct','Methaqualone (substance)','71813009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_719933003','719933003','http://snomed.info/sct','Drotaverine (substance)','719933003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_72024007','72024007','http://snomed.info/sct','Tetrahydrocannabinol (substance)','72024007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_724155006','724155006','http://snomed.info/sct','1-hydroxymidazolam (substance)','724155006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_72522000','72522000','http://snomed.info/sct','Mephenesin (substance)','72522000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_725554008','725554008','http://snomed.info/sct','Alpha hydroxytriazolam (substance)','725554008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_725621002','725621002','http://snomed.info/sct','Sulindac sulfide (substance)','725621002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_725665005','725665005','http://snomed.info/sct','Chlorobutanol hemihydrate (substance)','725665005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_725678005','725678005','http://snomed.info/sct','Mephedrone (substance)','725678005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_725681000','725681000','http://snomed.info/sct','Methcathinone (substance)','725681000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_725682007','725682007','http://snomed.info/sct','Methedrone (substance)','725682007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_725688006','725688006','http://snomed.info/sct','Methylenedioxyethylamphetamine (substance)','725688006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_725691006','725691006','http://snomed.info/sct','Methylone (substance)','725691006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_725788000','725788000','http://snomed.info/sct','Bromfenac sodium sesquihydrate (substance)','725788000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_725863000','725863000','http://snomed.info/sct','Ibuprofen sodium (substance)','725863000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_725865007','725865007','http://snomed.info/sct','Ibuprofen sodium dihydrate (substance)','725865007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_72752006','72752006','http://snomed.info/sct','Atracurium besilate (substance)','72752006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_72808007','72808007','http://snomed.info/sct','Trolamine salicylate (substance)','72808007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_7302008','7302008','http://snomed.info/sct','Ambuphylline (substance)','7302008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_73076001','73076001','http://snomed.info/sct','Emylcamate (substance)','73076001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_73213007','73213007','http://snomed.info/sct','Chlorphenesin carbamate (substance)','73213007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_733767000','733767000','http://snomed.info/sct','Gamma-butyrolactone (substance)','733767000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_734520005','734520005','http://snomed.info/sct','Parecoxib sodium (substance)','734520005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_735071007','735071007','http://snomed.info/sct','Metamizole magnesium (substance)','735071007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_735135008','735135008','http://snomed.info/sct','Aspirin DL-lysine (substance)','735135008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_735137000','735137000','http://snomed.info/sct','Deanol pidolate (substance)','735137000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_735241007','735241007','http://snomed.info/sct','Thiocolchicoside (substance)','735241007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_74273006','74273006','http://snomed.info/sct','Cocaine hydrochloride (substance)','74273006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_76190009','76190009','http://snomed.info/sct','Talbutal (substance)','76190009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_763001001','763001001','http://snomed.info/sct','Rapacuronium (substance)','763001001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_763660002','763660002','http://snomed.info/sct','Cannabis resin (substance)','763660002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_763661003','763661003','http://snomed.info/sct','Cannabis leaf (substance)','763661003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_763662005','763662005','http://snomed.info/sct','Cannabis oil (substance)','763662005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_765398008','765398008','http://snomed.info/sct','Dipropylene glycol salicylate (substance)','765398008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_767715008','767715008','http://snomed.info/sct','Dexmethylphenidate (substance)','767715008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_769093001','769093001','http://snomed.info/sct','Loflazepic acid (substance)','769093001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_77036005','77036005','http://snomed.info/sct','2,4,5-trimethoxyamphetamine (substance)','77036005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_772627008','772627008','http://snomed.info/sct','Mizoribine (substance)','772627008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_77353007','77353007','http://snomed.info/sct','Fenoprofen calcium (substance)','77353007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_780831000','780831000','http://snomed.info/sct','Metamizole (substance)','780831000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_781197007','781197007','http://snomed.info/sct','Chloral (substance)','781197007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_781202000','781202000','http://snomed.info/sct','Chloral and/or chloral derivative (substance)','781202000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_782159009','782159009','http://snomed.info/sct','Detomidine (substance)','782159009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_782177004','782177004','http://snomed.info/sct','Xylazine (substance)','782177004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_782179001','782179001','http://snomed.info/sct','Zolazepam (substance)','782179001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_782218008','782218008','http://snomed.info/sct','N-methyl-1-(1,3-benzodioxol-5-yl)-2-butanamine (substance)','782218008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_782296006','782296006','http://snomed.info/sct','Substance with prostaglandin-endoperoxide synthase isoform 1 inhibitor mechanism of action (substance)','782296006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_782570005','782570005','http://snomed.info/sct','4-hydroxybutyric acid (substance)','782570005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_782604006','782604006','http://snomed.info/sct','Terodiline hydrochloride (substance)','782604006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_783274005','783274005','http://snomed.info/sct','Indometacin sodium (substance)','783274005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_783777004','783777004','http://snomed.info/sct','Norflunitrazepam (substance)','783777004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_78552001','78552001','http://snomed.info/sct','Cloral betaine (substance)','78552001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_786882006','786882006','http://snomed.info/sct','Ethylamfetamine (substance)','786882006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_7904003','7904003','http://snomed.info/sct','Deanol (substance)','7904003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_80238005','80238005','http://snomed.info/sct','Prodipidine (substance)','80238005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_81362008','81362008','http://snomed.info/sct','Hexobarbital (substance)','81362008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_81946009','81946009','http://snomed.info/sct','Dantrolene sodium (substance)','81946009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_83143006','83143006','http://snomed.info/sct','Glutethimide (substance)','83143006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_83872005','83872005','http://snomed.info/sct','Phenyramidol (substance)','83872005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_84213009','84213009','http://snomed.info/sct','Midazolam hydrochloride (substance)','84213009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_85242006','85242006','http://snomed.info/sct','Levamphetamine (substance)','85242006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_87090006','87090006','http://snomed.info/sct','Flavoxate hydrochloride (substance)','87090006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_87148003','87148003','http://snomed.info/sct','Amfetamine sulfate (substance)','87148003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_87251002','87251002','http://snomed.info/sct','4-methoxyamphetamine (substance)','87251002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_87472002','87472002','http://snomed.info/sct','Vecuronium bromide (substance)','87472002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_87599003','87599003','http://snomed.info/sct','Metaxalone (substance)','87599003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_87847006','87847006','http://snomed.info/sct','Promoxolane (substance)','87847006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_88543003','88543003','http://snomed.info/sct','Hydroxyphenamate (substance)','88543003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_89422005','89422005','http://snomed.info/sct','Allobarbital (substance)','89422005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_89612008','89612008','http://snomed.info/sct','Petrichloral (substance)','89612008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_9234005','9234005','http://snomed.info/sct','Chlorobutanol (substance)','9234005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_926369003','926369003','http://snomed.info/sct','Remimazolam (substance)','926369003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_926385008','926385008','http://snomed.info/sct','Remimazolam besylate (substance)','926385008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_96172003','96172003','http://snomed.info/sct','Meclofenamic acid (substance)','96172003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_96173008','96173008','http://snomed.info/sct','Flunixin (substance)','96173008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_96174002','96174002','http://snomed.info/sct','Flunixin meglumine (substance)','96174002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_96175001','96175001','http://snomed.info/sct','Orgotein (substance)','96175001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_96176000','96176000','http://snomed.info/sct','Zomepirac (substance)','96176000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_96216001','96216001','http://snomed.info/sct','Detomidine hydrochloride (substance)','96216001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_96222005','96222005','http://snomed.info/sct','Cannabinol (substance)','96222005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_96223000','96223000','http://snomed.info/sct','Cannabidiol (substance)','96223000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_96224006','96224006','http://snomed.info/sct','Carboxy tetrahydrocannabinol (substance)','96224006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_96225007','96225007','http://snomed.info/sct','Delta-9-tetrahydrocannabinol (substance)','96225007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_96226008','96226008','http://snomed.info/sct','Metoserpate hydrochloride (substance)','96226008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_96227004','96227004','http://snomed.info/sct','Zolazepam hydrochloride (substance)','96227004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_96230006','96230006','http://snomed.info/sct','Xylazine hydrochloride (substance)','96230006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_96232003','96232003','http://snomed.info/sct','Nordazepam (substance)','96232003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_96235001','96235001','http://snomed.info/sct','Estazolam (substance)','96235001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_96239007','96239007','http://snomed.info/sct','Amphetaminil (substance)','96239007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_96240009','96240009','http://snomed.info/sct','Clobenzorex (substance)','96240009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_96241008','96241008','http://snomed.info/sct','Fenethylline (substance)','96241008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_96242001','96242001','http://snomed.info/sct','Fenproporex (substance)','96242001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_96243006','96243006','http://snomed.info/sct','Furfenorex (substance)','96243006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_96244000','96244000','http://snomed.info/sct','Hydroxymethoxyphenamine (substance)','96244000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_96245004','96245004','http://snomed.info/sct','Mefenorex (substance)','96245004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_96248002','96248002','http://snomed.info/sct','Pyrovalerone (substance)','96248002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_96249005','96249005','http://snomed.info/sct','Fencamfamin (substance)','96249005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_9643009','9643009','http://snomed.info/sct','Chlorphentermine (substance)','9643009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_9680003','9680003','http://snomed.info/sct','Central depressant (substance)','9680003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_9721008','9721008','http://snomed.info/sct','Phencyclidine (substance)','9721008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_108377005','108377005','http://snomed.info/sct','Dezocine (substance)','108377005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_108890005','108890005','http://snomed.info/sct','Botulinum toxin type A (substance)','108890005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_1163311000','1163311000','http://snomed.info/sct','Botulinum toxin type A and/or botulinum toxin type A derivative (substance)','1163311000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_372784001','372784001','http://snomed.info/sct','Papaverine (substance)','372784001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_373704008','373704008','http://snomed.info/sct','Phenanthrene derivative (substance)','373704008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_396486005','396486005','http://snomed.info/sct','Pholcodine (substance)','396486005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_48070003','48070003','http://snomed.info/sct','Phenylpiperidine derivative (substance)','48070003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_703435003','703435003','http://snomed.info/sct','Pholcodine citrate (substance)','703435003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1546_89851001','89851001','http://snomed.info/sct','Thebaine (substance)','89851001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1822_34726005','34726005','http://snomed.info/sct','Borrelia recurrentis (organism)','34726005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1823_103425002','103425002','http://snomed.info/sct','Borrelia dipodilli (organism)','103425002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1823_103426001','103426001','http://snomed.info/sct','Borrelia merionesi (organism)','103426001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1823_112277009','112277009','http://snomed.info/sct','Genus Borrelia (organism)','112277009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1823_113498002','113498002','http://snomed.info/sct','Borrelia japonica (organism)','113498002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1823_113499005','113499005','http://snomed.info/sct','Borrelia lusitaniae (organism)','113499005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1823_113501002','113501002','http://snomed.info/sct','Borrelia tanukii (organism)','113501002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1823_113502009','113502009','http://snomed.info/sct','Borrelia turdi (organism)','113502009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1823_113503004','113503004','http://snomed.info/sct','Borrelia valaisiana (organism)','113503004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1823_116036004','116036004','http://snomed.info/sct','Borrelia baltazardii (organism)','116036004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1823_11787006','11787006','http://snomed.info/sct','Borrelia hispanica (organism)','11787006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1823_12544007','12544007','http://snomed.info/sct','Borrelia caucasica (organism)','12544007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1823_1296899009','1296899009','http://snomed.info/sct','Borrelia bissettiae (organism)','1296899009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1823_20772005','20772005','http://snomed.info/sct','Borrelia graingeri (organism)','20772005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1823_30765003','30765003','http://snomed.info/sct','Borrelia venezuelensis (organism)','30765003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1823_3293005','3293005','http://snomed.info/sct','Borrelia mazzottii (organism)','3293005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1823_35660000','35660000','http://snomed.info/sct','Borrelia crocidurae (organism)','35660000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1823_36140004','36140004','http://snomed.info/sct','Borrelia harveyi (organism)','36140004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1823_36722009','36722009','http://snomed.info/sct','Borrelia latyschewii (organism)','36722009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1823_39709002','39709002','http://snomed.info/sct','Borrelia duttonii (organism)','39709002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1823_431153001','431153001','http://snomed.info/sct','Borrelia turcica (organism)','431153001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1823_431163009','431163009','http://snomed.info/sct','Borrelia sinica (organism)','431163009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1823_43459001','43459001','http://snomed.info/sct','Borrelia coriaceae (organism)','43459001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1823_450599009','450599009','http://snomed.info/sct','Borrelia spielmanii (organism)','450599009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1823_49343006','49343006','http://snomed.info/sct','Borrelia brasiliensis (organism)','49343006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1823_56575004','56575004','http://snomed.info/sct','Borrelia microti (organism)','56575004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1823_58286007','58286007','http://snomed.info/sct','Borrelia tillae (organism)','58286007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1823_58382007','58382007','http://snomed.info/sct','Borrelia anserina (organism)','58382007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1823_708200000','708200000','http://snomed.info/sct','Deoxyribonucleic acid of Borrelia (substance)','708200000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1823_709185007','709185007','http://snomed.info/sct','Antigen of Borrelia (substance)','709185007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1823_718776004','718776004','http://snomed.info/sct','Borrelia bavariensis (organism)','718776004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1823_8021000087107','8021000087107','http://snomed.info/sct','Borrelia lonestari (organism)','8021000087107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1823_80392006','80392006','http://snomed.info/sct','Borrelia persica (organism)','80392006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1823_88491004','88491004','http://snomed.info/sct','Borrelia dugesii (organism)','88491004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1823_89068003','89068003','http://snomed.info/sct','Borrelia theileri (organism)','89068003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1823_113497007','113497007','http://snomed.info/sct','Borrelia garinii (organism)','113497007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1823_113500001','113500001','http://snomed.info/sct','Borrelia miyamotoi (organism)','113500001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1823_24986006','24986006','http://snomed.info/sct','Borrelia turicatae (organism)','24986006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1823_34726005','34726005','http://snomed.info/sct','Borrelia recurrentis (organism)','34726005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1823_416551001','416551001','http://snomed.info/sct','Borrelia afzelii (organism)','416551001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1823_41704008','41704008','http://snomed.info/sct','Borrelia parkeri (organism)','41704008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1823_62748005','62748005','http://snomed.info/sct','Borrelia hermsii (organism)','62748005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1823_781273009','781273009','http://snomed.info/sct','Borrelia mayonii (organism)','781273009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1823_115421002','115421002','http://snomed.info/sct','Antigen of Borrelia burgdorferi 88-kDa protein (substance)','115421002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1823_115422009','115422009','http://snomed.info/sct','Antigen of Borrelia burgdorferi 29-kDa protein (substance)','115422009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1823_115423004','115423004','http://snomed.info/sct','Antigen of Borrelia burgdorferi 47-kDa protein (substance)','115423004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1823_121004008','121004008','http://snomed.info/sct','Antigen of Borrelia burgdorferi (substance)','121004008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1823_121104006','121104006','http://snomed.info/sct','Deoxyribonucleic acid of Borrelia burgdorferi (substance)','121104006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1823_76327009','76327009','http://snomed.info/sct','Borrelia burgdorferi (organism)','76327009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1941_10823008','10823008','http://snomed.info/sct','Strongyloides (organism)','10823008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1941_12723005','12723005','http://snomed.info/sct','Strongyloides papillosus (organism)','12723005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1941_14875007','14875007','http://snomed.info/sct','Strongyloides tumefaciens (organism)','14875007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1941_17959004','17959004','http://snomed.info/sct','Rhabditis strongyloides (organism)','17959004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1941_18331005','18331005','http://snomed.info/sct','Strongyloides procyonis (organism)','18331005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1941_24709008','24709008','http://snomed.info/sct','Strongyloides venezuelensis (organism)','24709008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1941_2479006','2479006','http://snomed.info/sct','Strongyloides cebus (organism)','2479006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1941_264430002','264430002','http://snomed.info/sct','Strongyloides myopotami (organism)','264430002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1941_284055006','284055006','http://snomed.info/sct','Strongyloides planiceps (organism)','284055006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1941_284056007','284056007','http://snomed.info/sct','Strongyloides felis (organism)','284056007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1941_3132007','3132007','http://snomed.info/sct','Strongyloides cati (organism)','3132007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1941_31397006','31397006','http://snomed.info/sct','Strongyloides ransomi (organism)','31397006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1941_3206009','3206009','http://snomed.info/sct','Strongyloides canis (organism)','3206009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1941_48361007','48361007','http://snomed.info/sct','Strongyloides fulleborni (organism)','48361007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1941_56619006','56619006','http://snomed.info/sct','Strongyloides simiae (organism)','56619006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1941_59422004','59422004','http://snomed.info/sct','Strongyloides fuelleborni (organism)','59422004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1941_609052000','609052000','http://snomed.info/sct','Adult of genus Strongyloides (organism)','609052000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1941_609067001','609067001','http://snomed.info/sct','Larva of genus Strongyloides (organism)','609067001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1941_609069003','609069003','http://snomed.info/sct','Filariform larva of genus Strongyloides (organism)','609069003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1941_609071003','609071003','http://snomed.info/sct','Rhabditiform larva of genus Strongyloides (organism)','609071003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1941_699573009','699573009','http://snomed.info/sct','Egg of genus Strongyloides (organism)','699573009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1941_75261003','75261003','http://snomed.info/sct','Strongyloides avium (organism)','75261003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1941_75482006','75482006','http://snomed.info/sct','Strongyloides westeri (organism)','75482006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1941_90369009','90369009','http://snomed.info/sct','Strongyloides ratti (organism)','90369009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1941_42625000','42625000','http://snomed.info/sct','Strongyloides stercoralis (organism)','42625000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1941_609054004','609054004','http://snomed.info/sct','Adult of Strongyloides stercoralis (organism)','609054004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1941_609070002','609070002','http://snomed.info/sct','Filariform larva of Strongyloides stercoralis (organism)','609070002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1941_609252009','609252009','http://snomed.info/sct','Rhabditiform larva of Strongyloides stercoralis (organism)','609252009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1941_609326000','609326000','http://snomed.info/sct','Larva of Strongyloides stercoralis (organism)','609326000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1941_699572004','699572004','http://snomed.info/sct','Egg of Strongyloides stercoralis (organism)','699572004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1942_42625000','42625000','http://snomed.info/sct','Strongyloides stercoralis (organism)','42625000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1942_609054004','609054004','http://snomed.info/sct','Adult of Strongyloides stercoralis (organism)','609054004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1942_609070002','609070002','http://snomed.info/sct','Filariform larva of Strongyloides stercoralis (organism)','609070002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1942_609252009','609252009','http://snomed.info/sct','Rhabditiform larva of Strongyloides stercoralis (organism)','609252009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1942_609326000','609326000','http://snomed.info/sct','Larva of Strongyloides stercoralis (organism)','609326000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1942_699572004','699572004','http://snomed.info/sct','Egg of Strongyloides stercoralis (organism)','699572004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.170_454431000124102','454431000124102','http://snomed.info/sct','Chlamydia trachomatis nucleic acid detected (finding)','454431000124102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.170_115289001','115289001','http://snomed.info/sct','Chlamydia trachomatis, serotype A (organism)','115289001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.170_115290005','115290005','http://snomed.info/sct','Chlamydia trachomatis, serotype B (organism)','115290005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.170_115291009','115291009','http://snomed.info/sct','Chlamydia trachomatis, serotype Ba (organism)','115291009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.170_115292002','115292002','http://snomed.info/sct','Chlamydia trachomatis, serotype C (organism)','115292002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.170_115293007','115293007','http://snomed.info/sct','Chlamydia trachomatis, serotype D (organism)','115293007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.170_115294001','115294001','http://snomed.info/sct','Chlamydia trachomatis, serotype E (organism)','115294001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.170_115295000','115295000','http://snomed.info/sct','Chlamydia trachomatis, serotype F (organism)','115295000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.170_115296004','115296004','http://snomed.info/sct','Chlamydia trachomatis, serotype I (organism)','115296004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.170_115297008','115297008','http://snomed.info/sct','Chlamydia trachomatis, serotype J (organism)','115297008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.170_115298003','115298003','http://snomed.info/sct','Chlamydia trachomatis, serotype K (organism)','115298003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.170_115299006','115299006','http://snomed.info/sct','Chlamydia trachomatis, serotype L (organism)','115299006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.170_115300003','115300003','http://snomed.info/sct','Chlamydia trachomatis, serotype L1 (organism)','115300003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.170_115301004','115301004','http://snomed.info/sct','Chlamydia trachomatis, serotype L2 (organism)','115301004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.170_115318000','115318000','http://snomed.info/sct','Chlamydia trachomatis, serotype L3 (organism)','115318000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.170_115319008','115319008','http://snomed.info/sct','Chlamydia trachomatis, serotype G (organism)','115319008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.170_115328009','115328009','http://snomed.info/sct','Chlamydia trachomatis, serotype H (organism)','115328009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.170_121002007','121002007','http://snomed.info/sct','Antigen of Chlamydia trachomatis (substance)','121002007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.170_121015003','121015003','http://snomed.info/sct','Antigen of Chlamydia trachomatis serotype F (substance)','121015003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.170_121016002','121016002','http://snomed.info/sct','Antigen of Chlamydia trachomatis serotype G (substance)','121016002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.170_121017006','121017006','http://snomed.info/sct','Antigen of Chlamydia trachomatis serotype K (substance)','121017006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.170_121106008','121106008','http://snomed.info/sct','Ribosomal ribonucleic acid of Chlamydia trachomatis (substance)','121106008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.170_121181000','121181000','http://snomed.info/sct','Deoxyribonucleic acid of Chlamydia trachomatis (substance)','121181000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.170_442505006','442505006','http://snomed.info/sct','Chlamydia trachomatis, serotype Ja (organism)','442505006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.170_59134003','59134003','http://snomed.info/sct','Lymphogranuloma venereum antigen (substance)','59134003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.170_63938009','63938009','http://snomed.info/sct','Chlamydia trachomatis (organism)','63938009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.170_708219005','708219005','http://snomed.info/sct','Deoxyribonucleic acid of Chlamydia trachomatis L2 (substance)','708219005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1261_307305004','307305004','http://snomed.info/sct','Acanthamoeba palestinensis (organism)','307305004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1261_416192004','416192004','http://snomed.info/sct','Acanthamoeba healyi (organism)','416192004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1261_416222004','416222004','http://snomed.info/sct','Acanthamoeba pearcei (organism)','416222004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1261_416324000','416324000','http://snomed.info/sct','Acanthamoeba griffini (organism)','416324000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1261_416649005','416649005','http://snomed.info/sct','Acanthamoeba pustulosa (organism)','416649005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1261_416866009','416866009','http://snomed.info/sct','Acanthamoeba quina (organism)','416866009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1261_417100007','417100007','http://snomed.info/sct','Acanthamoeba royreba (organism)','417100007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1261_417225007','417225007','http://snomed.info/sct','Acanthamoeba tubiashi (organism)','417225007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1261_417253007','417253007','http://snomed.info/sct','Acanthamoeba comandoni (organism)','417253007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1261_417307003','417307003','http://snomed.info/sct','Acanthamoeba stevensoni (organism)','417307003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1261_417363002','417363002','http://snomed.info/sct','Acanthamoeba jacobsi (organism)','417363002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1261_417400000','417400000','http://snomed.info/sct','Acanthamoeba terricola (organism)','417400000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1261_417498003','417498003','http://snomed.info/sct','Acanthamoeba triangularis (organism)','417498003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1261_417752003','417752003','http://snomed.info/sct','Acanthamoeba mauritaniensis (organism)','417752003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1261_444612005','444612005','http://snomed.info/sct','Cyst of genus Acanthamoeba (organism)','444612005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1261_53781001','53781001','http://snomed.info/sct','Acanthamoeba astronyxis (organism)','53781001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1261_699398006','699398006','http://snomed.info/sct','Trophozoite of genus Acanthamoeba (organism)','699398006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1261_708135006','708135006','http://snomed.info/sct','Deoxyribonucleic acid of Acanthamoeba (substance)','708135006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1261_12949005','12949005','http://snomed.info/sct','Acanthamoeba culbertsoni (organism)','12949005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1261_26290001','26290001','http://snomed.info/sct','Acanthamoeba polyphaga (organism)','26290001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1261_307306003','307306003','http://snomed.info/sct','Acanthamoeba hatchetti (organism)','307306003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1261_307307007','307307007','http://snomed.info/sct','Acanthamoeba rhysodes (organism)','307307007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1261_416364001','416364001','http://snomed.info/sct','Acanthamoeba lugdunensis (organism)','416364001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1261_417053001','417053001','http://snomed.info/sct','Acanthamoeba divionensis (organism)','417053001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1261_417278006','417278006','http://snomed.info/sct','Acanthamoeba lenticulata (organism)','417278006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1261_50875003','50875003','http://snomed.info/sct','Acanthamoeba (organism)','50875003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1261_91540007','91540007','http://snomed.info/sct','Acanthamoeba castellanii (organism)','91540007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.287_470061000124106','470061000124106','http://snomed.info/sct','Human alphaherpesvirus 3 clade 9 (organism)','470061000124106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.287_121197005','121197005','http://snomed.info/sct','Deoxyribonucleic acid of Varicella virus (substance)','121197005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.287_19551004','19551004','http://snomed.info/sct','Human alphaherpesvirus 3 (organism)','19551004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.287_260214004','260214004','http://snomed.info/sct','Antigen of Human alphaherpesvirus 3 (substance)','260214004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.287_725469006','725469006','http://snomed.info/sct','Human alphaherpesvirus 3 clade 1 (organism)','725469006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.287_725470007','725470007','http://snomed.info/sct','Human alphaherpesvirus 3 clade 2 (organism)','725470007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.287_725471006','725471006','http://snomed.info/sct','Human alphaherpesvirus 3 clade 3 (organism)','725471006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.287_725472004','725472004','http://snomed.info/sct','Human alphaherpesvirus 3 clade 4 (organism)','725472004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.287_725473009','725473009','http://snomed.info/sct','Human alphaherpesvirus 3 clade 5 (organism)','725473009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1784_460311000124100','460311000124100','http://snomed.info/sct','Deoxyribonucleic acid of Human herpes simplex virus 2 detected (finding)','460311000124100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1784_120995009','120995009','http://snomed.info/sct','Antigen of Human alphaherpesvirus 2 (substance)','120995009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1784_13687007','13687007','http://snomed.info/sct','Human alphaherpesvirus 2 (organism)','13687007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1784_708283000','708283000','http://snomed.info/sct','Deoxyribonucleic acid of Human alphaherpesvirus 2 (substance)','708283000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.169_120977006','120977006','http://snomed.info/sct','Antigen of Neisseria gonorrhoeae (substance)','120977006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.169_121172006','121172006','http://snomed.info/sct','Ribosomal ribonucleic acid of Neisseria gonorrhoeae (substance)','121172006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.169_277501003','277501003','http://snomed.info/sct','Penicillinase-producing Neisseria gonorrhoeae (organism)','277501003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.169_277502005','277502005','http://snomed.info/sct','Tetracycline-resistant Neisseria gonorrhoeae (organism)','277502005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.169_277503000','277503000','http://snomed.info/sct','Cephalosporin-resistant Neisseria gonorrhoeae (organism)','277503000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.169_277504006','277504006','http://snomed.info/sct','Spectinomycin-resistant Neisseria gonorrhoeae (organism)','277504006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.169_409805000','409805000','http://snomed.info/sct','Fluoroquinolone-resistant Neisseria gonorrhoeae (organism)','409805000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.169_414809001','414809001','http://snomed.info/sct','Neisseria gonorrhoeae, beta lactamase negative (organism)','414809001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.169_454421000124100','454421000124100','http://snomed.info/sct','Neisseria gonorrhoeae nucleic acid detected (finding)','454421000124100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.169_469831000124106','469831000124106','http://snomed.info/sct','Neisseria gonorrhoeae subspecies kochii (organism)','469831000124106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.169_68704007','68704007','http://snomed.info/sct','Neisseria gonorrhoeae (organism)','68704007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.169_703483000','703483000','http://snomed.info/sct','Deoxyribonucleic acid of Neisseria gonorrhoeae (substance)','703483000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1783_460311000124100','460311000124100','http://snomed.info/sct','Deoxyribonucleic acid of Human herpes simplex virus 2 detected (finding)','460311000124100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1783_120994008','120994008','http://snomed.info/sct','Antigen of Human alphaherpesvirus 1 (substance)','120994008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1783_121113008','121113008','http://snomed.info/sct','Deoxyribonucleic acid of human herpes simplex virus (substance)','121113008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1783_15302007','15302007','http://snomed.info/sct','Human alphaherpesvirus 1 (organism)','15302007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1783_19965007','19965007','http://snomed.info/sct','Human herpes simplex virus (organism)','19965007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1783_708282005','708282005','http://snomed.info/sct','Deoxyribonucleic acid of Human alphaherpesvirus 1 (substance)','708282005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1783_120995009','120995009','http://snomed.info/sct','Antigen of Human alphaherpesvirus 2 (substance)','120995009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1783_13687007','13687007','http://snomed.info/sct','Human alphaherpesvirus 2 (organism)','13687007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1783_708283000','708283000','http://snomed.info/sct','Deoxyribonucleic acid of Human alphaherpesvirus 2 (substance)','708283000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.444_121003002','121003002','http://snomed.info/sct','Antigen of Chlamydophila psittaci (substance)','121003002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.444_14590003','14590003','http://snomed.info/sct','Chlamydophila psittaci (organism)','14590003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.444_18279000','18279000','http://snomed.info/sct','Chlamydophila psittaci variant ovis (organism)','18279000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.444_41090000','41090000','http://snomed.info/sct','Chlamydophila psittaci variant bovis (organism)','41090000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.444_60927005','60927005','http://snomed.info/sct','Chlamydophila psittaci variant felis (organism)','60927005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.444_708221000','708221000','http://snomed.info/sct','Deoxyribonucleic acid of Chlamydophila psittaci (substance)','708221000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.565_31441007','31441007','http://snomed.info/sct','Kunjin virus (organism)','31441007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.565_57311007','57311007','http://snomed.info/sct','West Nile virus (organism)','57311007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.565_707790008','707790008','http://snomed.info/sct','Ribonucleic acid of West Nile virus (substance)','707790008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.565_709156001','709156001','http://snomed.info/sct','Antigen of West Nile virus (substance)','709156001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_1004145002','1004145002','http://snomed.info/sct','Mycobacterium celeriflavum (organism)','1004145002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_10241000112109','10241000112109','http://snomed.info/sct','Mycobacterium helveticum (organism)','10241000112109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_103474001','103474001','http://snomed.info/sct','Mycobacterium fortuitum complex (organism)','103474001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_103475000','103475000','http://snomed.info/sct','Mycobacterium celatum (organism)','103475000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_103476004','103476004','http://snomed.info/sct','Mycobacterium genavense (organism)','103476004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_1079301000112103','1079301000112103','http://snomed.info/sct','Mycobacterium aquaticum (organism)','1079301000112103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_1079401000112105','1079401000112105','http://snomed.info/sct','Mycobacterium chelonae subspecies bovis (organism)','1079401000112105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_1079501000112109','1079501000112109','http://snomed.info/sct','Mycobacterium grossiae (organism)','1079501000112109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_1079601000112108','1079601000112108','http://snomed.info/sct','Mycobacterium komaniense (organism)','1079601000112108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_1079701000112104','1079701000112104','http://snomed.info/sct','Mycobacterium lehmannii (organism)','1079701000112104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_1079901000112102','1079901000112102','http://snomed.info/sct','Mycobacterium neumannii (organism)','1079901000112102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_1080001000112101','1080001000112101','http://snomed.info/sct','Mycobacterium stephanolepidis (organism)','1080001000112101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_1080101000112100','1080101000112100','http://snomed.info/sct','Mycobacterium persicum (organism)','1080101000112100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_1080201000112106','1080201000112106','http://snomed.info/sct','Mycobacterium shigaense (organism)','1080201000112106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_1080301000112103','1080301000112103','http://snomed.info/sct','Mycobacterium virginiense (organism)','1080301000112103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_1083301000112109','1083301000112109','http://snomed.info/sct','Mycobacterium franklinii (organism)','1083301000112109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_110379001','110379001','http://snomed.info/sct','Mycobacterium, non-tuberculosis (organism)','110379001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_1114801000112105','1114801000112105','http://snomed.info/sct','Mycobacterium attenuatum (organism)','1114801000112105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_1114901000112100','1114901000112100','http://snomed.info/sct','Mycobacterium basiliense (organism)','1114901000112100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_1115001000112100','1115001000112100','http://snomed.info/sct','Mycobacterium decipiens (organism)','1115001000112100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_1115101000112104','1115101000112104','http://snomed.info/sct','Mycobacterium innocens (organism)','1115101000112104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_1115201000112105','1115201000112105','http://snomed.info/sct','Mycobacterium neglectum (organism)','1115201000112105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_1115301000112102','1115301000112102','http://snomed.info/sct','Mycobacterium palauense (organism)','1115301000112102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_1115401000112109','1115401000112109','http://snomed.info/sct','Mycobacterium pseudokansasii (organism)','1115401000112109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_1115501000112108','1115501000112108','http://snomed.info/sct','Mycobacterium syngnathidarum (organism)','1115501000112108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_1115601000112107','1115601000112107','http://snomed.info/sct','Mycobacterium aquiterrae (organism)','1115601000112107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_1115701000112103','1115701000112103','http://snomed.info/sct','Mycobacterium kyogaense (organism)','1115701000112103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_113839004','113839004','http://snomed.info/sct','Mycobacterium alvei (organism)','113839004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_113840002','113840002','http://snomed.info/sct','Mycobacterium avium ss avium (organism)','113840002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_113841003','113841003','http://snomed.info/sct','Mycobacterium avium ss paratuberculosis (organism)','113841003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_113842005','113842005','http://snomed.info/sct','Mycobacterium avium ss silvaticum (organism)','113842005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_113843000','113843000','http://snomed.info/sct','Mycobacterium branderi (organism)','113843000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_113844006','113844006','http://snomed.info/sct','Mycobacterium brumae (organism)','113844006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_113845007','113845007','http://snomed.info/sct','Mycobacterium confluentis (organism)','113845007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_113846008','113846008','http://snomed.info/sct','Mycobacterium conspicuum (organism)','113846008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_113847004','113847004','http://snomed.info/sct','Mycobacterium cookii (organism)','113847004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_113848009','113848009','http://snomed.info/sct','Mycobacterium hassiacum (organism)','113848009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_113849001','113849001','http://snomed.info/sct','Mycobacterium hiberniae (organism)','113849001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_113850001','113850001','http://snomed.info/sct','Mycobacterium hodleri (organism)','113850001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_113851002','113851002','http://snomed.info/sct','Mycobacterium interjectum (organism)','113851002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_113852009','113852009','http://snomed.info/sct','Mycobacterium intermedium (organism)','113852009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_113853004','113853004','http://snomed.info/sct','Mycobacterium lentiflavum (organism)','113853004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_113854005','113854005','http://snomed.info/sct','Mycobacterium madagascariense (organism)','113854005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_113856007','113856007','http://snomed.info/sct','Mycobacterium mucogenicum (organism)','113856007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_113857003','113857003','http://snomed.info/sct','Mycobacterium novocastrense (organism)','113857003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_113859000','113859000','http://snomed.info/sct','Mycobacterium peregrinum (organism)','113859000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_113860005','113860005','http://snomed.info/sct','Mycobacterium triplex (organism)','113860005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_1141732007','1141732007','http://snomed.info/sct','Mycobacterium rutilum (organism)','1141732007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_1148624002','1148624002','http://snomed.info/sct','Mycobacterium bourgelatii (organism)','1148624002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_116488003','116488003','http://snomed.info/sct','Non-photochromogenic mycobacteria (organism)','116488003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_116492005','116492005','http://snomed.info/sct','Photochromogenic mycobacteria (organism)','116492005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_116494006','116494006','http://snomed.info/sct','Rapid growing mycobacteria (organism)','116494006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_116495007','116495007','http://snomed.info/sct','Scotochromogenic mycobacteria (organism)','116495007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_1204092002','1204092002','http://snomed.info/sct','Mycobacterium anyangense (organism)','1204092002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_1269288005','1269288005','http://snomed.info/sct','Mycobacterium vicinigordonae (organism)','1269288005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_127522008','127522008','http://snomed.info/sct','Mycobacterium goodii (organism)','127522008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_127523003','127523003','http://snomed.info/sct','Mycobacterium wolinskyi (organism)','127523003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_1507005','1507005','http://snomed.info/sct','Mycobacterium kansasii (organism)','1507005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_16914000','16914000','http://snomed.info/sct','Mycobacterium piscium (organism)','16914000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_20141004','20141004','http://snomed.info/sct','Mycobacterium scrofulaceum (organism)','20141004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_20498000','20498000','http://snomed.info/sct','Mycobacterium chubuense (organism)','20498000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_20973006','20973006','http://snomed.info/sct','Mycobacterium thermoresistibile (organism)','20973006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_21433000','21433000','http://snomed.info/sct','Mycobacterium nonchromogenicum (organism)','21433000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_21996001','21996001','http://snomed.info/sct','Mycobacterium haemophilum (organism)','21996001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_243368001','243368001','http://snomed.info/sct','Genus Mycobacterium (organism)','243368001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_243376004','243376004','http://snomed.info/sct','Mycobacterium avium brunese (organism)','243376004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_243377008','243377008','http://snomed.info/sct','Mycobacteroides chelonae (organism)','243377008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_243378003','243378003','http://snomed.info/sct','Mycobacterium fortuitum (organism)','243378003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_24618002','24618002','http://snomed.info/sct','Mycobacterium gilvum (organism)','24618002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_26733000','26733000','http://snomed.info/sct','Mycobacterium lepraemurium (organism)','26733000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_27365009','27365009','http://snomed.info/sct','Mycobacterium austroafricanum (organism)','27365009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_29111009','29111009','http://snomed.info/sct','Mycobacterium agri (organism)','29111009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_302561004','302561004','http://snomed.info/sct','Mycobacterium borstelense (organism)','302561004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_32691000087109','32691000087109','http://snomed.info/sct','Mycobacterium crocinum (organism)','32691000087109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_32701000087109','32701000087109','http://snomed.info/sct','Mycobacterium koreense (organism)','32701000087109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_32711000087106','32711000087106','http://snomed.info/sct','Mycobacterium pallens (organism)','32711000087106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_32721000087103','32721000087103','http://snomed.info/sct','Mycobacterium sediminis (organism)','32721000087103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_32731000087101','32731000087101','http://snomed.info/sct','Mycobacterium shinjukuense (organism)','32731000087101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_333873003','333873003','http://snomed.info/sct','Mycobacterium fortuitum subsp fortuitum (organism)','333873003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_36249008','36249008','http://snomed.info/sct','Mycobacterium komossence (organism)','36249008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_385506001','385506001','http://snomed.info/sct','Mycobacterium murale (organism)','385506001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_385507005','385507005','http://snomed.info/sct','Mycobacterium mageritense (organism)','385507005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_385508000','385508000','http://snomed.info/sct','Mycobacterium septicum (organism)','385508000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_385509008','385509008','http://snomed.info/sct','Mycobacterium elephantis (organism)','385509008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_40333002','40333002','http://snomed.info/sct','Mycobacterium triviale (organism)','40333002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_40713003','40713003','http://snomed.info/sct','Mycobacterium ulcerans (organism)','40713003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_41304005','41304005','http://snomed.info/sct','Mycobacterium obuense (organism)','41304005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_415239006','415239006','http://snomed.info/sct','Rapid growing Mycobacterium species not Mycobacterium fortuitum complex (organism)','415239006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_415533006','415533006','http://snomed.info/sct','Slow growing mycobacteria (organism)','415533006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_422214005','422214005','http://snomed.info/sct','Mycobacterium nebraskense (organism)','422214005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_427768005','427768005','http://snomed.info/sct','Mycobacterium kubicae (organism)','427768005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_428319005','428319005','http://snomed.info/sct','Mycobacterium immunogenum (organism)','428319005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_428765006','428765006','http://snomed.info/sct','Mycobacterium terrae complex (organism)','428765006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_428856007','428856007','http://snomed.info/sct','Mycobacterium parascrofulaceum (organism)','428856007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_429414009','429414009','http://snomed.info/sct','Mycobacterium saskatchewanense (organism)','429414009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_429844002','429844002','http://snomed.info/sct','Mycobacterium acapulcensis (organism)','429844002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_429901002','429901002','http://snomed.info/sct','Mycobacterium psychrotolerans (organism)','429901002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_429902009','429902009','http://snomed.info/sct','Mycobacterium pyrenivorans (organism)','429902009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_429903004','429903004','http://snomed.info/sct','Mycobacterium ratisbonense (organism)','429903004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_429904005','429904005','http://snomed.info/sct','Mycobacterium sherrisii (organism)','429904005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_429917008','429917008','http://snomed.info/sct','Mycobacterium frederiksbergense (organism)','429917008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_429918003','429918003','http://snomed.info/sct','Mycobacterium hackensackense (organism)','429918003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_429919006','429919006','http://snomed.info/sct','Mycobacterium heckeshornense (organism)','429919006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_429920000','429920000','http://snomed.info/sct','Mycobacterium heidelbergense (organism)','429920000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_429946001','429946001','http://snomed.info/sct','Mycobacterium holsaticum (organism)','429946001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_429947005','429947005','http://snomed.info/sct','Mycobacterium houstonense (organism)','429947005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_429948000','429948000','http://snomed.info/sct','Mycobacterium lacticola (organism)','429948000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_430006007','430006007','http://snomed.info/sct','Mycobacterium visibilis (organism)','430006007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_430014001','430014001','http://snomed.info/sct','Mycobacterium lacus (organism)','430014001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_430487007','430487007','http://snomed.info/sct','Mycobacterium shottsii (organism)','430487007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_430488002','430488002','http://snomed.info/sct','Mycobacterium silvaticum (organism)','430488002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_430489005','430489005','http://snomed.info/sct','Mycobacterium tusciae (organism)','430489005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_430490001','430490001','http://snomed.info/sct','Mycobacterium vanbaalenii (organism)','430490001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_430580007','430580007','http://snomed.info/sct','Mycobacterium cosmeticum (organism)','430580007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_430581006','430581006','http://snomed.info/sct','Mycobacterium doricum (organism)','430581006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_430667000','430667000','http://snomed.info/sct','Mycobacterium chesapeaki (organism)','430667000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_430737001','430737001','http://snomed.info/sct','Mycobacterium liflandii (organism)','430737001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_430738006','430738006','http://snomed.info/sct','Mycobacterium manitobense (organism)','430738006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_430740001','430740001','http://snomed.info/sct','Mycobacterium montefiorense (organism)','430740001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_430911006','430911006','http://snomed.info/sct','Mycobacterium neworleansense (organism)','430911006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_430912004','430912004','http://snomed.info/sct','Mycobacterium palustre (organism)','430912004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_430913009','430913009','http://snomed.info/sct','Mycobacterium parmense (organism)','430913009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_430995003','430995003','http://snomed.info/sct','Mycobacterium boenickei (organism)','430995003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_430996002','430996002','http://snomed.info/sct','Mycobacterium bohemicum (organism)','430996002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_430997006','430997006','http://snomed.info/sct','Mycobacterium botniense (organism)','430997006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_430998001','430998001','http://snomed.info/sct','Mycobacterium brisbanense (organism)','430998001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_431504009','431504009','http://snomed.info/sct','Mycobacterium intracellulare subspecies chimaera (organism)','431504009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_432476008','432476008','http://snomed.info/sct','Mycobacterium canariasense (organism)','432476008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_432820006','432820006','http://snomed.info/sct','Mycobacterium arupense (organism)','432820006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_432888001','432888001','http://snomed.info/sct','Mycobacterium phocaicum (organism)','432888001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_434966321000087109','434966321000087109','http://snomed.info/sct','Mycobacterium marseillense (organism)','434966321000087109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_44760001','44760001','http://snomed.info/sct','Mycobacterium asiaticum (organism)','44760001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_450469003','450469003','http://snomed.info/sct','Mycobacterium salmoniphilum (organism)','450469003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_450471003','450471003','http://snomed.info/sct','Mycobacterium conceptionense (organism)','450471003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_450472005','450472005','http://snomed.info/sct','Mycobacterium monacense (organism)','450472005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_45662006','45662006','http://snomed.info/sct','Mycobacterium terrae (organism)','45662006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_46101000146107','46101000146107','http://snomed.info/sct','Mycobacterium noviomagense (organism)','46101000146107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_468121000124108','468121000124108','http://snomed.info/sct','Mycobacterium mucogenicum group (organism)','468121000124108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_48134004','48134004','http://snomed.info/sct','Mycobacterium aurum (organism)','48134004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_51459000','51459000','http://snomed.info/sct','Mycobacterium neoaurum (organism)','51459000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_53114006','53114006','http://snomed.info/sct','Mycobacterium smegmatis (organism)','53114006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_5371000146101','5371000146101','http://snomed.info/sct','Mycobacterium arosiense (organism)','5371000146101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_5381000146104','5381000146104','http://snomed.info/sct','Mycobacterium colombiense (organism)','5381000146104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_5401000146104','5401000146104','http://snomed.info/sct','Mycobacterium insubricum (organism)','5401000146104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_5421000146107','5421000146107','http://snomed.info/sct','Mycobacterium pseudoshottsii (organism)','5421000146107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_54925005','54925005','http://snomed.info/sct','Mycobacterium vaccae (organism)','54925005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_58503001','58503001','http://snomed.info/sct','Mycobacterium, avium-intracellulare group (organism)','58503001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_58663006','58663006','http://snomed.info/sct','Mycobacterium xenopi (organism)','58663006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_58768005','58768005','http://snomed.info/sct','Mycobacterium poriferae (organism)','58768005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_5885000','5885000','http://snomed.info/sct','Mycobacterium flavescens (organism)','5885000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_58869008','58869008','http://snomed.info/sct','Mycobacterium marinum (organism)','58869008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_60558000','60558000','http://snomed.info/sct','Mycobacterium thamnophis (organism)','60558000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_61708000','61708000','http://snomed.info/sct','Mycobacterium farcinogenes (organism)','61708000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_6199007','6199007','http://snomed.info/sct','Mycobacterium diernhoferi (organism)','6199007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_62644004','62644004','http://snomed.info/sct','Mycobacterium pulveris (organism)','62644004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_65613000','65613000','http://snomed.info/sct','Mycobacterium szulgai (organism)','65613000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_66838002','66838002','http://snomed.info/sct','Mycobacterium duvalii (organism)','66838002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_66940008','66940008','http://snomed.info/sct','Mycobacterium aichiense (organism)','66940008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_698220002','698220002','http://snomed.info/sct','Mycobacterium kumamotonense (organism)','698220002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_700308009','700308009','http://snomed.info/sct','Mycobacterium seoulense (organism)','700308009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_700309001','700309001','http://snomed.info/sct','Mycobacterium paraseoulense (organism)','700309001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_700310006','700310006','http://snomed.info/sct','Mycobacterium paraffinicum (organism)','700310006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_700311005','700311005','http://snomed.info/sct','Mycobacterium bouchedurhonense (organism)','700311005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_703075004','703075004','http://snomed.info/sct','Mycobacterium avium subspecies hominissuis (organism)','703075004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_70463000','70463000','http://snomed.info/sct','Mycobacterium gastri (organism)','70463000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_707328006','707328006','http://snomed.info/sct','Mycobacterium paraterrae (organism)','707328006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_708319008','708319008','http://snomed.info/sct','Mycobacterium timonense (organism)','708319008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_708324006','708324006','http://snomed.info/sct','Mycobacterium setense (organism)','708324006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_708329001','708329001','http://snomed.info/sct','Mycobacterium senuense (organism)','708329001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_708333008','708333008','http://snomed.info/sct','Mycobacterium paragordonae (organism)','708333008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_708336000','708336000','http://snomed.info/sct','Mycobacterium mantenii (organism)','708336000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_708341008','708341008','http://snomed.info/sct','Mycobacterium llatzerense (organism)','708341008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_708346003','708346003','http://snomed.info/sct','Mycobacterium florentinum (organism)','708346003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_708352002','708352002','http://snomed.info/sct','Mycobacterium algericum (organism)','708352002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_709682006','709682006','http://snomed.info/sct','Mycobacterium iranicum (organism)','709682006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_712909005','712909005','http://snomed.info/sct','Mycobacterium vulneris (organism)','712909005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_712910000','712910000','http://snomed.info/sct','Mycobacterium riyadhense (organism)','712910000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_712911001','712911001','http://snomed.info/sct','Mycobacterium kyorinense (organism)','712911001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_712912008','712912008','http://snomed.info/sct','Mycobacterium heraklionense (organism)','712912008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_712913003','712913003','http://snomed.info/sct','Mycobacterium europaeum (organism)','712913003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_713303008','713303008','http://snomed.info/sct','Mycobacterium rufum (organism)','713303008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_713611009','713611009','http://snomed.info/sct','Mycobacterium chlorophenolicum (organism)','713611009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_716339009','716339009','http://snomed.info/sct','Mycobacterium aubagnense (organism)','716339009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_716340006','716340006','http://snomed.info/sct','Mycobacterium bacteremicum (organism)','716340006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_716341005','716341005','http://snomed.info/sct','Mycobacterium longobardum (organism)','716341005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_716342003','716342003','http://snomed.info/sct','Mycobacterium engbaekii (organism)','716342003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_717083003','717083003','http://snomed.info/sct','Mycobacterium angelicum (organism)','717083003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_717660000','717660000','http://snomed.info/sct','Mycobacterium stomatepiae (organism)','717660000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_718808008','718808008','http://snomed.info/sct','Mycobacterium minnesotense (organism)','718808008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_718809000','718809000','http://snomed.info/sct','Mycobacterium parakoreense (organism)','718809000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_72130005','72130005','http://snomed.info/sct','Mycobacterium rhodesiae (organism)','72130005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_722251009','722251009','http://snomed.info/sct','Mycobacterium simiae complex (organism)','722251009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_72477006','72477006','http://snomed.info/sct','Mycobacterium tokaiense (organism)','72477006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_731111000124105','731111000124105','http://snomed.info/sct','Mycobacterium orygis (organism)','731111000124105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_734247004','734247004','http://snomed.info/sct','Mycobacterium fluoranthenivorans (organism)','734247004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_73576007','73576007','http://snomed.info/sct','Mycobacterium malmoense (organism)','73576007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_74028009','74028009','http://snomed.info/sct','Mycobacterium paratuberculosis (organism)','74028009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_74212009','74212009','http://snomed.info/sct','Mycobacterium senegalense (organism)','74212009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_74349000','74349000','http://snomed.info/sct','Mycobacterium chelonae subspecies chelonae (organism)','74349000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_74917007','74917007','http://snomed.info/sct','Mycobacterium gadium (organism)','74917007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_752713421000087100','752713421000087100','http://snomed.info/sct','Mycobacterium chelonae subspecies niacinogenes (organism)','752713421000087100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_75356003','75356003','http://snomed.info/sct','Mycobacterium fortuitum ss. acetamidolytica (organism)','75356003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_767041006','767041006','http://snomed.info/sct','Mycobacterium paraintracellulare (organism)','767041006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_770693009','770693009','http://snomed.info/sct','Mycobacterium arabiense (organism)','770693009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_772046008','772046008','http://snomed.info/sct','Mycobacterium paraense (organism)','772046008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_78112006','78112006','http://snomed.info/sct','Mycobacterium phlei (organism)','78112006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_78444002','78444002','http://snomed.info/sct','Mycobacterium sphagni (organism)','78444002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_785912007','785912007','http://snomed.info/sct','Mycobacterium eburneum (organism)','785912007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_785916005','785916005','http://snomed.info/sct','Mycobacterium montmartrense (organism)','785916005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_785921008','785921008','http://snomed.info/sct','Mycobacterium talmoniae (organism)','785921008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_79817008','79817008','http://snomed.info/sct','Mycobacterium shimoidei (organism)','79817008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_83723009','83723009','http://snomed.info/sct','Mycobacterium avium (organism)','83723009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_83841006','83841006','http://snomed.info/sct','Mycobacterium intracellulare (organism)','83841006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_840692009','840692009','http://snomed.info/sct','Mycobacterium alsense (organism)','840692009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_84180005','84180005','http://snomed.info/sct','Mycobacterium simiae (organism)','84180005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_89896008','89896008','http://snomed.info/sct','Mycobacterium chitae (organism)','89896008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_909007','909007','http://snomed.info/sct','Mycobacterium parafortuitum (organism)','909007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_91336002','91336002','http://snomed.info/sct','Mycobacterium porcinum (organism)','91336002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_9679001','9679001','http://snomed.info/sct','Mycobacterium moriokaense (organism)','9679001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1302_9939008','9939008','http://snomed.info/sct','Mycobacterium fallax (organism)','9939008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.568_64889004','64889004','http://snomed.info/sct','Haemophilus ducreyi (organism)','64889004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.568_708274005','708274005','http://snomed.info/sct','Deoxyribonucleic acid of Haemophilus ducreyi (substance)','708274005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1141_404679009','404679009','http://snomed.info/sct','Glycopeptide resistant Staphylococcus aureus (organism)','404679009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1141_404680007','404680007','http://snomed.info/sct','Vancomycin resistant Staphylococcus aureus (organism)','404680007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1141_406576009','406576009','http://snomed.info/sct','Vancomycin intermediate/resistant Staphylococcus aureus (organism)','406576009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1141_406606000','406606000','http://snomed.info/sct','Glycopeptide intermediate/resistant Staphylococcus aureus (organism)','406606000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1386_1290571000000108','1290571000000108','http://snomed.info/sct','Deoxyribonucleic acid of monkeypox virus (substance)','1290571000000108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1386_59774002','59774002','http://snomed.info/sct','Monkeypox virus (organism)','59774002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.845_697932005','697932005','http://snomed.info/sct','Middle East respiratory syndrome coronavirus (organism)','697932005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1143_1187591006','1187591006','http://snomed.info/sct','Deoxyribonucleic acid plasmid encoding severe acute respiratory syndrome coronavirus 2 spike protein (substance)','1187591006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1143_1240411000000107','1240411000000107','http://snomed.info/sct','Ribonucleic acid of severe acute respiratory syndrome coronavirus 2 (substance)','1240411000000107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1143_1240581000000104','1240581000000104','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus 2 detected (finding)','1240581000000104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1143_29301000087104','29301000087104','http://snomed.info/sct','Antigen of severe acute respiratory syndrome coronavirus 2 recombinant spike protein (substance)','29301000087104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1143_840533007','840533007','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus 2 (organism)','840533007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1143_871553007','871553007','http://snomed.info/sct','Detection of severe acute respiratory syndrome coronavirus 2 antigen (observable entity)','871553007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1143_871555000','871555000','http://snomed.info/sct','Detection of ribonucleic acid of severe acute respiratory syndrome coronavirus 2 (observable entity)','871555000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1143_871556004','871556004','http://snomed.info/sct','Detection of ribonucleic acid of severe acute respiratory syndrome coronavirus 2 in nasopharyngeal swab (observable entity)','871556004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1143_871557008','871557008','http://snomed.info/sct','Detection of ribonucleic acid of severe acute respiratory syndrome coronavirus 2 in oropharyngeal swab (observable entity)','871557008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1143_871558003','871558003','http://snomed.info/sct','Detection of ribonucleic acid of severe acute respiratory syndrome coronavirus 2 in sputum (observable entity)','871558003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1143_871559006','871559006','http://snomed.info/sct','Detection of ribonucleic acid of severe acute respiratory syndrome coronavirus 2 in bronchoalveolar lavage fluid (observable entity)','871559006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1143_871560001','871560001','http://snomed.info/sct','Detection of ribonucleic acid of severe acute respiratory syndrome coronavirus 2 using polymerase chain reaction (observable entity)','871560001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1143_871562009','871562009','http://snomed.info/sct','Detection of severe acute respiratory syndrome coronavirus 2 (observable entity)','871562009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1143_1157045004','1157045004','http://snomed.info/sct','Antigen of severe acute respiratory syndrome coronavirus 2 protein (substance)','1157045004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1143_1179416004','1179416004','http://snomed.info/sct','Deoxyribonucleic acid of severe acute respiratory syndrome coronavirus 2 (substance)','1179416004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1143_840536004','840536004','http://snomed.info/sct','Antigen of severe acute respiratory syndrome coronavirus 2 (substance)','840536004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1143_467951000124101','467951000124101','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus 2 - B.1.1.7 lineage (organism)','467951000124101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1143_467961000124104','467961000124104','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus 2 - B.1.351 lineage (organism)','467961000124104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1143_467971000124106','467971000124106','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus 2 - P.1 lineage (organism)','467971000124106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_10722007','10722007','http://snomed.info/sct','Human adenovirus 18 (organism)','10722007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_1098002','1098002','http://snomed.info/sct','Human adenovirus 3 (organism)','1098002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_1119343008','1119343008','http://snomed.info/sct','Messenger ribonucleic acid of severe acute respiratory syndrome coronavirus 2 (substance)','1119343008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_1155866009','1155866009','http://snomed.info/sct','Messenger ribonucleic acid of severe acute respiratory syndrome coronavirus 2 encoding spike protein (substance)','1155866009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_120987005','120987005','http://snomed.info/sct','Antigen of Adenovirus (substance)','120987005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_121026009','121026009','http://snomed.info/sct','Antigen of Influenza C virus (substance)','121026009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_121082009','121082009','http://snomed.info/sct','Antigen of Parainfluenza virus (substance)','121082009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_121110006','121110006','http://snomed.info/sct','Deoxyribonucleic acid of Epstein-Barr virus (substance)','121110006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_121177000','121177000','http://snomed.info/sct','Ribosomal ribonucleic acid of Adenovirus (substance)','121177000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_121246006','121246006','http://snomed.info/sct','Deoxyribonucleic acid of Adenovirus (substance)','121246006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_12612001','12612001','http://snomed.info/sct','Human adenovirus 31 (organism)','12612001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_128359006','128359006','http://snomed.info/sct','Human parainfluenza virus 4a (organism)','128359006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_128360001','128360001','http://snomed.info/sct','Human parainfluenza virus 4b (organism)','128360001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_15030000','15030000','http://snomed.info/sct','Human adenovirus 24 (organism)','15030000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_15646009','15646009','http://snomed.info/sct','Human adenovirus 33 (organism)','15646009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_19493000','19493000','http://snomed.info/sct','Human adenovirus 22 (organism)','19493000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_2185006','2185006','http://snomed.info/sct','Human adenovirus 5 (organism)','2185006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_22212008','22212008','http://snomed.info/sct','Human adenovirus 28 (organism)','22212008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_2247004','2247004','http://snomed.info/sct','Human adenovirus 6 (organism)','2247004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_23376009','23376009','http://snomed.info/sct','Human adenovirus 12 (organism)','23376009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_23684001','23684001','http://snomed.info/sct','Human adenovirus 4 (organism)','23684001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_260210008','260210008','http://snomed.info/sct','Antigen of Influenza virus (substance)','260210008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_29576004','29576004','http://snomed.info/sct','Human adenovirus 41 (organism)','29576004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_30131000087101','30131000087101','http://snomed.info/sct','Antigen of severe acute respiratory syndrome coronavirus 2 virus-like particle (substance)','30131000087101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_30490000','30490000','http://snomed.info/sct','Human adenovirus 11 (organism)','30490000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_32522009','32522009','http://snomed.info/sct','Human adenovirus 35 (organism)','32522009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_33974008','33974008','http://snomed.info/sct','Human adenovirus 15 (organism)','33974008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_37443004','37443004','http://snomed.info/sct','Human adenovirus 13 (organism)','37443004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_407370007','407370007','http://snomed.info/sct','Human coronavirus 229E (organism)','407370007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_407482004','407482004','http://snomed.info/sct','Influenza C virus (organism)','407482004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_407489008','407489008','http://snomed.info/sct','Human parainfluenza virus 1 (organism)','407489008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_407491000','407491000','http://snomed.info/sct','Human parainfluenza virus 2 (organism)','407491000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_407493002','407493002','http://snomed.info/sct','Human parainfluenza virus 3 (organism)','407493002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_407498006','407498006','http://snomed.info/sct','Human parainfluenza viruses (organism)','407498006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_41476007','41476007','http://snomed.info/sct','Human adenovirus 30 (organism)','41476007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_417802001','417802001','http://snomed.info/sct','Human adenovirus 42 (organism)','417802001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_417803006','417803006','http://snomed.info/sct','Human adenovirus 43 (organism)','417803006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_417804000','417804000','http://snomed.info/sct','Human adenovirus 44 (organism)','417804000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_417805004','417805004','http://snomed.info/sct','Human adenovirus 45 (organism)','417805004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_417806003','417806003','http://snomed.info/sct','Human adenovirus 46 (organism)','417806003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_417807007','417807007','http://snomed.info/sct','Human adenovirus 47 (organism)','417807007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_417808002','417808002','http://snomed.info/sct','Human adenovirus 48 (organism)','417808002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_417809005','417809005','http://snomed.info/sct','Human adenovirus 49 (organism)','417809005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_417810000','417810000','http://snomed.info/sct','Human adenovirus 50 (organism)','417810000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_417811001','417811001','http://snomed.info/sct','Human adenovirus 51 (organism)','417811001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_417812008','417812008','http://snomed.info/sct','Human adenovirus species A (organism)','417812008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_417813003','417813003','http://snomed.info/sct','Human adenovirus species B (organism)','417813003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_417814009','417814009','http://snomed.info/sct','Human adenovirus species C (organism)','417814009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_417815005','417815005','http://snomed.info/sct','Human adenovirus species D (organism)','417815005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_417816006','417816006','http://snomed.info/sct','Human adenovirus species E (organism)','417816006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_417817002','417817002','http://snomed.info/sct','Human adenovirus species F (organism)','417817002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_42084002','42084002','http://snomed.info/sct','Human adenovirus 23 (organism)','42084002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_448520007','448520007','http://snomed.info/sct','Human adenovirus 53 (organism)','448520007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_46957004','46957004','http://snomed.info/sct','Human adenovirus 8 (organism)','46957004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_49787000','49787000','http://snomed.info/sct','Human adenovirus 19 (organism)','49787000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_53349007','53349007','http://snomed.info/sct','Human adenovirus 1 (organism)','53349007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_54435006','54435006','http://snomed.info/sct','Human adenovirus 10 (organism)','54435006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_5488007','5488007','http://snomed.info/sct','Human adenovirus 25 (organism)','5488007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_62313001','62313001','http://snomed.info/sct','Human adenovirus 16 (organism)','62313001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_65003007','65003007','http://snomed.info/sct','Human adenovirus 34 (organism)','65003007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_66111006','66111006','http://snomed.info/sct','Human adenovirus 9 (organism)','66111006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_66122005','66122005','http://snomed.info/sct','Human adenovirus 29 (organism)','66122005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_68883008','68883008','http://snomed.info/sct','Human adenovirus 40 (organism)','68883008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_68957002','68957002','http://snomed.info/sct','Human adenovirus 7 (organism)','68957002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_704980004','704980004','http://snomed.info/sct','Human adenovirus 57 (organism)','704980004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_707892006','707892006','http://snomed.info/sct','Ribonucleic acid of Human coronavirus 229E (substance)','707892006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_707926002','707926002','http://snomed.info/sct','Ribonucleic acid of Influenza C virus (substance)','707926002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_707927006','707927006','http://snomed.info/sct','Ribonucleic acid of Influenza virus (substance)','707927006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_707935009','707935009','http://snomed.info/sct','Ribonucleic acid of Parainfluenza virus 1 (substance)','707935009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_707936005','707936005','http://snomed.info/sct','Ribonucleic acid of Parainfluenza virus 2 (substance)','707936005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_707937001','707937001','http://snomed.info/sct','Ribonucleic acid of Parainfluenza virus 3 (substance)','707937001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_707938006','707938006','http://snomed.info/sct','Ribonucleic acid of Parainfluenza virus 4 (substance)','707938006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_707939003','707939003','http://snomed.info/sct','Ribonucleic acid of Parainfluenza virus 4a (substance)','707939003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_707940001','707940001','http://snomed.info/sct','Ribonucleic acid of Parainfluenza virus 4b (substance)','707940001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_707941002','707941002','http://snomed.info/sct','Ribonucleic acid of Parainfluenza virus (substance)','707941002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_709344009','709344009','http://snomed.info/sct','Antigen of Human coronavirus 229E (substance)','709344009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_709365003','709365003','http://snomed.info/sct','Antigen of Parainfluenza virus 4 (substance)','709365003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_720170004','720170004','http://snomed.info/sct','Deoxyribonucleic acid of Human adenovirus C (substance)','720170004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_721863005','721863005','http://snomed.info/sct','Antigen of Influenza virus surface protein (substance)','721863005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_725064005','725064005','http://snomed.info/sct','Human adenovirus species G (organism)','725064005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_725065006','725065006','http://snomed.info/sct','Human adenovirus 52 (organism)','725065006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_725066007','725066007','http://snomed.info/sct','Human adenovirus 54 (organism)','725066007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_725067003','725067003','http://snomed.info/sct','Human adenovirus 55 (organism)','725067003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_725068008','725068008','http://snomed.info/sct','Human adenovirus 56 (organism)','725068008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_725894000','725894000','http://snomed.info/sct','Influenza virus (organism)','725894000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_73993004','73993004','http://snomed.info/sct','Human adenovirus 26 (organism)','73993004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_7479004','7479004','http://snomed.info/sct','Human adenovirus 14 (organism)','7479004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_74871001','74871001','http://snomed.info/sct','Human adenovirus (organism)','74871001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_74922007','74922007','http://snomed.info/sct','Human adenovirus 20 (organism)','74922007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_781630008','781630008','http://snomed.info/sct','Influenza D virus (organism)','781630008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_79804005','79804005','http://snomed.info/sct','Human adenovirus 38 (organism)','79804005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_81190003','81190003','http://snomed.info/sct','Human adenovirus 2 (organism)','81190003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_85158000','85158000','http://snomed.info/sct','Human adenovirus 21 (organism)','85158000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_85881001','85881001','http://snomed.info/sct','Human adenovirus 32 (organism)','85881001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_89117003','89117003','http://snomed.info/sct','Human parainfluenza virus 4 (organism)','89117003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_89860009','89860009','http://snomed.info/sct','Human adenovirus 27 (organism)','89860009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_90336009','90336009','http://snomed.info/sct','Human adenovirus 39 (organism)','90336009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_90717001','90717001','http://snomed.info/sct','Human adenovirus 36 (organism)','90717001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_91125002','91125002','http://snomed.info/sct','Human adenovirus 37 (organism)','91125002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_9141005','9141005','http://snomed.info/sct','Human adenovirus 17 (organism)','9141005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_103093008','103093008','http://snomed.info/sct','Antigen of Human immunodeficiency virus protein 24 (substance)','103093008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_103105009','103105009','http://snomed.info/sct','Early antigen of Human gammaherpesvirus 4 (substance)','103105009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_103106005','103106005','http://snomed.info/sct','Antigen of Human gammaherpesvirus 4 capsid protein (substance)','103106005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_103107001','103107001','http://snomed.info/sct','Antigen of Human gammaherpesvirus 4 nuclear (substance)','103107001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_103528003','103528003','http://snomed.info/sct','Human herpesvirus 6 (organism)','103528003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_112368004','112368004','http://snomed.info/sct','Genus Lyssavirus (organism)','112368004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_115282005','115282005','http://snomed.info/sct','Antigen of Human immunodeficiency virus 1 glycoprotein 120 (substance)','115282005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_115283000','115283000','http://snomed.info/sct','Antigen of Human immunodeficiency virus 1 glycoprotein 160 (substance)','115283000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_115309002','115309002','http://snomed.info/sct','Antigen of Human immunodeficiency virus 2 protein 41 (substance)','115309002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_1157045004','1157045004','http://snomed.info/sct','Antigen of severe acute respiratory syndrome coronavirus 2 protein (substance)','1157045004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_116982009','116982009','http://snomed.info/sct','Antigen of Human immunodeficiency virus 1 (substance)','116982009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_116987003','116987003','http://snomed.info/sct','Antigen of Human immunodeficiency virus 1 protein 24 (substance)','116987003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_1179416004','1179416004','http://snomed.info/sct','Deoxyribonucleic acid of severe acute respiratory syndrome coronavirus 2 (substance)','1179416004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_120980007','120980007','http://snomed.info/sct','Antigen of Rabies lyssavirus (substance)','120980007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_121200006','121200006','http://snomed.info/sct','Deoxyribonucleic acid of Human immunodeficiency virus (substance)','121200006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_121201005','121201005','http://snomed.info/sct','Deoxyribonucleic acid of Human immunodeficiency virus 1 (substance)','121201005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_121202003','121202003','http://snomed.info/sct','Ribonucleic acid of Human immunodeficiency virus 1 (substance)','121202003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_12551003','12551003','http://snomed.info/sct','Mokola virus (organism)','12551003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_1293004','1293004','http://snomed.info/sct','Human coxsackievirus A8 (organism)','1293004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_165816005','165816005','http://snomed.info/sct','Human immunodeficiency virus detected (finding)','165816005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_19030005','19030005','http://snomed.info/sct','Human immunodeficiency virus (organism)','19030005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_23831003','23831003','http://snomed.info/sct','Human coxsackievirus A2 (organism)','23831003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_24071003','24071003','http://snomed.info/sct','Human coxsackievirus A6 (organism)','24071003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_243580008','243580008','http://snomed.info/sct','Human betaherpesvirus 7 (organism)','243580008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_24747003','24747003','http://snomed.info/sct','Human coxsackievirus A14 (organism)','24747003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_27555004','27555004','http://snomed.info/sct','Human coxsackievirus B2 (organism)','27555004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_2793000','2793000','http://snomed.info/sct','Human coxsackievirus A12 (organism)','2793000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_30840007','30840007','http://snomed.info/sct','Human coxsackievirus A18 (organism)','30840007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_3096006','3096006','http://snomed.info/sct','Human coxsackievirus A9 (organism)','3096006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_32052006','32052006','http://snomed.info/sct','Lagos bat virus (organism)','32052006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_36115006','36115006','http://snomed.info/sct','Human immunodeficiency virus type 2 (organism)','36115006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_38203008','38203008','http://snomed.info/sct','Human coxsackievirus A10 (organism)','38203008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_38219001','38219001','http://snomed.info/sct','Human coxsackievirus A5 (organism)','38219001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_38889001','38889001','http://snomed.info/sct','Human coxsackievirus A19 (organism)','38889001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_40168006','40168006','http://snomed.info/sct','Human herpesvirus 4 (organism)','40168006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_41988004','41988004','http://snomed.info/sct','Human coxsackievirus B4 (organism)','41988004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_42067008','42067008','http://snomed.info/sct','Human coxsackievirus A16 (organism)','42067008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_426972006','426972006','http://snomed.info/sct','Australian bat lyssavirus (organism)','426972006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_427605002','427605002','http://snomed.info/sct','Human herpesvirus 8 (organism)','427605002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_450617000','450617000','http://snomed.info/sct','West caucasian bat virus (organism)','450617000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_450618005','450618005','http://snomed.info/sct','Irkut virus (organism)','450618005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_450619002','450619002','http://snomed.info/sct','Khujand virus (organism)','450619002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_450620008','450620008','http://snomed.info/sct','Aravan virus (organism)','450620008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_450805000','450805000','http://snomed.info/sct','European bat lyssavirus 1 (organism)','450805000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_450806004','450806004','http://snomed.info/sct','European bat lyssavirus 2 (organism)','450806004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_48171002','48171002','http://snomed.info/sct','Human coxsackievirus B6 (organism)','48171002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_49018005','49018005','http://snomed.info/sct','Human coxsackievirus B (organism)','49018005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_52657009','52657009','http://snomed.info/sct','Human coxsackievirus A11 (organism)','52657009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_53744000','53744000','http://snomed.info/sct','Human coxsackievirus A (organism)','53744000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_55982000','55982000','http://snomed.info/sct','Human coxsackievirus A3 (organism)','55982000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_57757007','57757007','http://snomed.info/sct','Human coxsackievirus (organism)','57757007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_58445002','58445002','http://snomed.info/sct','Human coxsackievirus A17 (organism)','58445002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_59881000','59881000','http://snomed.info/sct','Rabies virus (organism)','59881000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_62408001','62408001','http://snomed.info/sct','Human coxsackievirus B5 (organism)','62408001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_6771007','6771007','http://snomed.info/sct','Human coxsackievirus A20 (organism)','6771007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_698222005','698222005','http://snomed.info/sct','Human coxsackievirus A24 variant (organism)','698222005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_706924008','706924008','http://snomed.info/sct','Ribonucleic acid of Rabies virus (substance)','706924008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_707871006','707871006','http://snomed.info/sct','Ribonucleic acid of Coxsackievirus A7 (substance)','707871006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_707872004','707872004','http://snomed.info/sct','Ribonucleic acid of Coxsackievirus A9 (substance)','707872004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_707873009','707873009','http://snomed.info/sct','Ribonucleic acid of Coxsackievirus B5 (substance)','707873009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_707874003','707874003','http://snomed.info/sct','Ribonucleic acid of Coxsackievirus B6 (substance)','707874003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_707891004','707891004','http://snomed.info/sct','Ribonucleic acid of Human immunodeficiency virus 2 (substance)','707891004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_708286008','708286008','http://snomed.info/sct','Deoxyribonucleic acid of Human herpesvirus 6 (substance)','708286008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_708287004','708287004','http://snomed.info/sct','Deoxyribonucleic acid of Human herpesvirus 6A (substance)','708287004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_708288009','708288009','http://snomed.info/sct','Deoxyribonucleic acid of Human herpesvirus 6B (substance)','708288009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_708289001','708289001','http://snomed.info/sct','Deoxyribonucleic acid of Human herpesvirus 7 (substance)','708289001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_708291009','708291009','http://snomed.info/sct','Deoxyribonucleic acid of Human herpesvirus 8 (substance)','708291009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_708292002','708292002','http://snomed.info/sct','Deoxyribonucleic acid of Human immunodeficiency virus 2 (substance)','708292002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_720113009','720113009','http://snomed.info/sct','Proviral deoxyribonucleic acid of Human immunodeficiency virus 1 (substance)','720113009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_720114003','720114003','http://snomed.info/sct','Proviral deoxyribonucleic acid of Human immunodeficiency virus 2 (substance)','720114003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_72254008','72254008','http://snomed.info/sct','Human coxsackievirus A1 (organism)','72254008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_72296007','72296007','http://snomed.info/sct','Duvenhage virus (organism)','72296007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_72593000','72593000','http://snomed.info/sct','Human coxsackievirus A15 (organism)','72593000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_72597004','72597004','http://snomed.info/sct','Human coxsackievirus A21 (organism)','72597004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_72877003','72877003','http://snomed.info/sct','Human coxsackievirus A24 (organism)','72877003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_74924008','74924008','http://snomed.info/sct','Human coxsackievirus A7 (organism)','74924008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_7543009','7543009','http://snomed.info/sct','Human coxsackievirus A13 (organism)','7543009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_773959421000087107','773959421000087107','http://snomed.info/sct','Human herpesvirus 6B (organism)','773959421000087107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_82059001','82059001','http://snomed.info/sct','Human coxsackievirus B1 (organism)','82059001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_83593001','83593001','http://snomed.info/sct','Human coxsackievirus A22 (organism)','83593001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_840536004','840536004','http://snomed.info/sct','Antigen of severe acute respiratory syndrome coronavirus 2 (substance)','840536004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_86886003','86886003','http://snomed.info/sct','Human coxsackievirus A4 (organism)','86886003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_871881007','871881007','http://snomed.info/sct','Antigen of Human immunodeficiency virus 2 (substance)','871881007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_871882000','871882000','http://snomed.info/sct','Antigen of Human immunodeficiency virus (substance)','871882000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_89293008','89293008','http://snomed.info/sct','Human immunodeficiency virus type I (organism)','89293008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_89585007','89585007','http://snomed.info/sct','Human coxsackievirus B3 (organism)','89585007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_972606591000087101','972606591000087101','http://snomed.info/sct','Human herpesvirus 6A (organism)','972606591000087101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_120986001','120986001','http://snomed.info/sct','Antigen of Cytomegalovirus (substance)','120986001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_120998006','120998006','http://snomed.info/sct','Antigen of Rubella virus (substance)','120998006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_121008006','121008006','http://snomed.info/sct','Antigen of Influenza B virus (substance)','121008006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_121109001','121109001','http://snomed.info/sct','Deoxyribonucleic acid of Cytomegalovirus (substance)','121109001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_121197005','121197005','http://snomed.info/sct','Deoxyribonucleic acid of Varicella virus (substance)','121197005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_243579005','243579005','http://snomed.info/sct','Cytomegalovirus humanbeta5 (organism)','243579005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_25481000087101','25481000087101','http://snomed.info/sct','Antigen of Influenza B virus Yamagata lineage (substance)','25481000087101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_25491000087104','25491000087104','http://snomed.info/sct','Antigen of Influenza B virus Victoria lineage (substance)','25491000087104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_260207001','260207001','http://snomed.info/sct','Early antigen of Cytomegalovirus (substance)','260207001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_407480007','407480007','http://snomed.info/sct','Influenza B virus (organism)','407480007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_425415004','425415004','http://snomed.info/sct','Rubella virus genotype 1B (organism)','425415004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_425872000','425872000','http://snomed.info/sct','Rubella virus genotype 1a (organism)','425872000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_425891000','425891000','http://snomed.info/sct','Rubella virus genotype 2A (organism)','425891000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_426085007','426085007','http://snomed.info/sct','Rubella virus genotype 1E (organism)','426085007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_426209008','426209008','http://snomed.info/sct','Rubella virus genotype 1G (organism)','426209008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_426367009','426367009','http://snomed.info/sct','Rubella virus genotype 1F (organism)','426367009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_426612000','426612000','http://snomed.info/sct','Rubella virus genotype 2B (organism)','426612000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_426959005','426959005','http://snomed.info/sct','Influenza B virus Yamagata lineage (organism)','426959005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_427329000','427329000','http://snomed.info/sct','Rubella virus genotype 2C (organism)','427329000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_427398000','427398000','http://snomed.info/sct','Rubella virus genotype 1C (organism)','427398000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_427559006','427559006','http://snomed.info/sct','Rubella virus genotype 1D (organism)','427559006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_427672003','427672003','http://snomed.info/sct','Influenza B virus Victoria lineage (organism)','427672003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_5210005','5210005','http://snomed.info/sct','Rubella virus (organism)','5210005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_698201004','698201004','http://snomed.info/sct','Rubella virus genotype 1H (organism)','698201004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_698202006','698202006','http://snomed.info/sct','Rubella virus genotype 1I (organism)','698202006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_698203001','698203001','http://snomed.info/sct','Rubella virus genotype 1J (organism)','698203001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_707526006','707526006','http://snomed.info/sct','Ribonucleic acid of Rubella virus (substance)','707526006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_707924004','707924004','http://snomed.info/sct','Ribonucleic acid of Influenza virus A swine origin (substance)','707924004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_707925003','707925003','http://snomed.info/sct','Ribonucleic acid of Influenza B virus (substance)','707925003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_713151006','713151006','http://snomed.info/sct','Influenza B virus/Shanghai/361/2002 (organism)','713151006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_722259006','722259006','http://snomed.info/sct','Influenza B virus Malaysia lineage (organism)','722259006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_11428003','11428003','http://snomed.info/sct','Western equine encephalomyelitis virus (organism)','11428003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_117275007','117275007','http://snomed.info/sct','Ribonucleic acid of Enterovirus (substance)','117275007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_117276008','117276008','http://snomed.info/sct','Ribonucleic acid of Japanese encephalitis virus (substance)','117276008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_117277004','117277004','http://snomed.info/sct','Ribonucleic acid of Measles virus (substance)','117277004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_120994008','120994008','http://snomed.info/sct','Antigen of Human alphaherpesvirus 1 (substance)','120994008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_120997001','120997001','http://snomed.info/sct','Antigen of Measles morbillivirus (substance)','120997001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_121027000','121027000','http://snomed.info/sct','Antigen of Japanese encephalitis virus (substance)','121027000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_121092001','121092001','http://snomed.info/sct','Antigen of Western equine encephalitis virus (substance)','121092001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_121093006','121093006','http://snomed.info/sct','Antigen of Venezuelan equine encephalitis virus (substance)','121093006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_121113008','121113008','http://snomed.info/sct','Deoxyribonucleic acid of human herpes simplex virus (substance)','121113008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_12997006','12997006','http://snomed.info/sct','Human enterovirus 68 (organism)','12997006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_15302007','15302007','http://snomed.info/sct','Human alphaherpesvirus 1 (organism)','15302007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_19965007','19965007','http://snomed.info/sct','Human herpes simplex virus (organism)','19965007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_2423009','2423009','http://snomed.info/sct','Chikungunya virus (organism)','2423009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_243603004','243603004','http://snomed.info/sct','Japanese encephalitis virus (organism)','243603004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_243625005','243625005','http://snomed.info/sct','Lymphocytic choriomeningitis virus and Lassa complex (organism)','243625005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_407540001','407540001','http://snomed.info/sct','Japanese encephalitis virus group (organism)','407540001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_416435006','416435006','http://snomed.info/sct','Measles virus, viral envelope M protein variant (organism)','416435006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_420441008','420441008','http://snomed.info/sct','Human enterovirus 77 (organism)','420441008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_421124007','421124007','http://snomed.info/sct','Human enterovirus 75 (organism)','421124007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_421170000','421170000','http://snomed.info/sct','Human enterovirus 78 (organism)','421170000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_421603003','421603003','http://snomed.info/sct','Human enterovirus 73 (organism)','421603003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_421887001','421887001','http://snomed.info/sct','Human enterovirus 76 (organism)','421887001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_422793002','422793002','http://snomed.info/sct','Human enterovirus B (organism)','422793002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_422982005','422982005','http://snomed.info/sct','Human enterovirus C (organism)','422982005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_423043004','423043004','http://snomed.info/sct','Human enterovirus A (organism)','423043004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_425684000','425684000','http://snomed.info/sct','Measles virus genotype G3 (organism)','425684000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_425966004','425966004','http://snomed.info/sct','Measles virus genotype H1 (organism)','425966004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_425970007','425970007','http://snomed.info/sct','Measles virus genotype D3 (organism)','425970007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_426028006','426028006','http://snomed.info/sct','Measles virus genotype D6 (organism)','426028006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_426091009','426091009','http://snomed.info/sct','Measles virus genotype G2 (organism)','426091009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_426188007','426188007','http://snomed.info/sct','Measles virus genotype C1 (organism)','426188007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_426261008','426261008','http://snomed.info/sct','Measles virus genotype D4 (organism)','426261008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_426424002','426424002','http://snomed.info/sct','Measles virus genotype H2 (organism)','426424002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_426535005','426535005','http://snomed.info/sct','Measles virus genotype D9 (organism)','426535005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_426558008','426558008','http://snomed.info/sct','Measles virus genotype A (organism)','426558008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_426640005','426640005','http://snomed.info/sct','Measles virus genotype D2 (organism)','426640005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_426654002','426654002','http://snomed.info/sct','Measles virus genotype B2 (organism)','426654002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_427073007','427073007','http://snomed.info/sct','Measles virus genotype B3 (organism)','427073007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_427182003','427182003','http://snomed.info/sct','Measles virus genotype C2 (organism)','427182003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_427263000','427263000','http://snomed.info/sct','Measles virus genotype D10 (organism)','427263000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_427290009','427290009','http://snomed.info/sct','Measles virus genotype D8 (organism)','427290009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_427353006','427353006','http://snomed.info/sct','Measles virus genotype D7 (organism)','427353006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_427706006','427706006','http://snomed.info/sct','Measles virus genotype D5 (organism)','427706006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_428234001','428234001','http://snomed.info/sct','Human enterovirus D (organism)','428234001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_45838003','45838003','http://snomed.info/sct','Powassan virus (organism)','45838003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_52584002','52584002','http://snomed.info/sct','Measles morbillivirus (organism)','52584002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_62958000','62958000','http://snomed.info/sct','Venezuelan equine encephalomyelitis virus (organism)','62958000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_68874003','68874003','http://snomed.info/sct','Human enterovirus 71 (organism)','68874003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_69239002','69239002','http://snomed.info/sct','Human enterovirus (organism)','69239002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_698204007','698204007','http://snomed.info/sct','Measles virus genotype D11 (organism)','698204007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_707778006','707778006','http://snomed.info/sct','Ribonucleic acid of Powassan virus (substance)','707778006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_707791007','707791007','http://snomed.info/sct','Ribonucleic acid of Western equine encephalitis virus (substance)','707791007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_707869006','707869006','http://snomed.info/sct','Ribonucleic acid of Chikungunya virus (substance)','707869006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_707884002','707884002','http://snomed.info/sct','Ribonucleic acid of Enterovirus 71 (substance)','707884002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_707930004','707930004','http://snomed.info/sct','Ribonucleic acid of Lymphocytic choriomeningitis virus (substance)','707930004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_708282005','708282005','http://snomed.info/sct','Deoxyribonucleic acid of Human alphaherpesvirus 1 (substance)','708282005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_709330003','709330003','http://snomed.info/sct','Antigen of Enterovirus (substance)','709330003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_721926000','721926000','http://snomed.info/sct','Venezuelan equine encephalitis virus strain AG80-663 (organism)','721926000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_732206003','732206003','http://snomed.info/sct','Measles virus genotype F (organism)','732206003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_732207007','732207007','http://snomed.info/sct','Measles virus genotype E (organism)','732207007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_732208002','732208002','http://snomed.info/sct','Measles virus genotype D1 (organism)','732208002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_732209005','732209005','http://snomed.info/sct','Measles virus genotype B1 (organism)','732209005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_732210000','732210000','http://snomed.info/sct','Measles virus genotype G1 (organism)','732210000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_78434004','78434004','http://snomed.info/sct','Human enterovirus 69 (organism)','78434004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_82518003','82518003','http://snomed.info/sct','Lymphocytic choriomeningitis virus (organism)','82518003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_90779008','90779008','http://snomed.info/sct','Human enterovirus 70 (organism)','90779008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_117278009','117278009','http://snomed.info/sct','Ribonucleic acid of Mumps virus (substance)','117278009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_117283001','117283001','http://snomed.info/sct','Ribonucleic acid of Saint Louis encephalitis virus (substance)','117283001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_121020003','121020003','http://snomed.info/sct','Antigen of Dengue virus (substance)','121020003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_121087003','121087003','http://snomed.info/sct','Antigen of Mumps orthorubulavirus (substance)','121087003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_121091008','121091008','http://snomed.info/sct','Antigen of Saint Louis encephalitis virus (substance)','121091008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_121182007','121182007','http://snomed.info/sct','Deoxyribonucleic acid of Dengue virus (substance)','121182007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_19551004','19551004','http://snomed.info/sct','Human alphaherpesvirus 3 (organism)','19551004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_243601002','243601002','http://snomed.info/sct','Eastern equine encephalitis virus (organism)','243601002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_243604005','243604005','http://snomed.info/sct','Dengue virus subgroup (organism)','243604005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_260214004','260214004','http://snomed.info/sct','Antigen of Human alphaherpesvirus 3 (substance)','260214004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_31441007','31441007','http://snomed.info/sct','Kunjin virus (organism)','31441007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_34212000','34212000','http://snomed.info/sct','Colorado tick fever virus (organism)','34212000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_34348001','34348001','http://snomed.info/sct','Dengue virus (organism)','34348001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_36700002','36700002','http://snomed.info/sct','Dengue virus, type 4 (organism)','36700002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_41328007','41328007','http://snomed.info/sct','Dengue virus, type 2 (organism)','41328007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_50384007','50384007','http://snomed.info/sct','Mumps virus (organism)','50384007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_50471002','50471002','http://snomed.info/sct','Zika virus (organism)','50471002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_57311007','57311007','http://snomed.info/sct','West Nile virus (organism)','57311007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_58432001','58432001','http://snomed.info/sct','Saint Louis encephalitis virus (organism)','58432001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_60588009','60588009','http://snomed.info/sct','Dengue virus, type 1 (organism)','60588009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_707790008','707790008','http://snomed.info/sct','Ribonucleic acid of West Nile virus (substance)','707790008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_707875002','707875002','http://snomed.info/sct','Ribonucleic acid of Dengue virus 1 (substance)','707875002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_707876001','707876001','http://snomed.info/sct','Ribonucleic acid of Dengue virus 2 (substance)','707876001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_707877005','707877005','http://snomed.info/sct','Ribonucleic acid of Dengue virus 3 (substance)','707877005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_707878000','707878000','http://snomed.info/sct','Ribonucleic acid of Dengue virus 4 (substance)','707878000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_707879008','707879008','http://snomed.info/sct','Ribonucleic acid of Eastern equine encephalitis virus (substance)','707879008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_709156001','709156001','http://snomed.info/sct','Antigen of West Nile virus (substance)','709156001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_716627009','716627009','http://snomed.info/sct','Antigen of Mumps orthorubulavirus soluble (substance)','716627009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_716628004','716628004','http://snomed.info/sct','Antigen of Mumps orthorubulavirus particle-bound (substance)','716628004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_717108008','717108008','http://snomed.info/sct','Antigen of Eastern equine encephalitis virus (substance)','717108008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_725443000','725443000','http://snomed.info/sct','Mumps genotype A (organism)','725443000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_725444006','725444006','http://snomed.info/sct','Mumps genotype B (organism)','725444006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_725445007','725445007','http://snomed.info/sct','Mumps genotype C (organism)','725445007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_725446008','725446008','http://snomed.info/sct','Mumps genotype D (organism)','725446008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_725447004','725447004','http://snomed.info/sct','Mumps genotype F (organism)','725447004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_725448009','725448009','http://snomed.info/sct','Mumps genotype G (organism)','725448009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_725449001','725449001','http://snomed.info/sct','Mumps genotype H (organism)','725449001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_725450001','725450001','http://snomed.info/sct','Mumps genotype I (organism)','725450001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_725451002','725451002','http://snomed.info/sct','Mumps genotype J (organism)','725451002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_725452009','725452009','http://snomed.info/sct','Mumps genotype K (organism)','725452009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_725453004','725453004','http://snomed.info/sct','Mumps genotype L (organism)','725453004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_725454005','725454005','http://snomed.info/sct','Mumps genotype N (organism)','725454005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_725469006','725469006','http://snomed.info/sct','Human alphaherpesvirus 3 clade 1 (organism)','725469006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_725470007','725470007','http://snomed.info/sct','Human alphaherpesvirus 3 clade 2 (organism)','725470007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_725471006','725471006','http://snomed.info/sct','Human alphaherpesvirus 3 clade 3 (organism)','725471006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_725472004','725472004','http://snomed.info/sct','Human alphaherpesvirus 3 clade 4 (organism)','725472004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_725473009','725473009','http://snomed.info/sct','Human alphaherpesvirus 3 clade 5 (organism)','725473009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_725593004','725593004','http://snomed.info/sct','Mumps virus genotype unclassified (organism)','725593004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_783725005','783725005','http://snomed.info/sct','Ribonucleic acid of Dengue virus (substance)','783725005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_8467002','8467002','http://snomed.info/sct','Dengue virus, type 3 (organism)','8467002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_121006005','121006005','http://snomed.info/sct','Antigen of Influenza A virus (substance)','121006005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_161000124103','161000124103','http://snomed.info/sct','Influenza A virus subtype H1 swine-like (organism)','161000124103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_181000124108','181000124108','http://snomed.info/sct','Influenza A virus present (finding)','181000124108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_221000124104','221000124104','http://snomed.info/sct','Influenza A virus subtype H1 2009 pandemic strain (organism)','221000124104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_231000124101','231000124101','http://snomed.info/sct','Influenza A virus subtype H1 2009 pandemic strain present (finding)','231000124101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_25371000087106','25371000087106','http://snomed.info/sct','Antigen of Influenza A virus subtype H3N2 (substance)','25371000087106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_359829002','359829002','http://snomed.info/sct','Influenzavirus, type A, avian (organism)','359829002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_359833009','359833009','http://snomed.info/sct','Influenzavirus, type A, porcine (organism)','359833009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_389069008','389069008','http://snomed.info/sct','Avian influenza virus, low pathogenic (organism)','389069008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_389070009','389070009','http://snomed.info/sct','Avian influenza virus, highly pathogenic (organism)','389070009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_407477006','407477006','http://snomed.info/sct','Genus Alphainfluenzavirus (organism)','407477006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_407479009','407479009','http://snomed.info/sct','Influenza A virus (organism)','407479009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_420362005','420362005','http://snomed.info/sct','Influenzavirus type A, avian, H1N1 strain (organism)','420362005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_420508007','420508007','http://snomed.info/sct','Influenzavirus type A, avian, H3N2 strain (organism)','420508007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_421539000','421539000','http://snomed.info/sct','Influenzavirus type A, avian, H1N2 strain (organism)','421539000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_429401000124105','429401000124105','http://snomed.info/sct','Influenza A virus subtype H3N2 variant (organism)','429401000124105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_440927002','440927002','http://snomed.info/sct','Influenza A virus subtype H2 present (finding)','440927002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_441043003','441043003','http://snomed.info/sct','Influenza A virus subtype H1 present (finding)','441043003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_441049004','441049004','http://snomed.info/sct','Influenza A virus subtype H3 present (finding)','441049004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_442269004','442269004','http://snomed.info/sct','Antigen of Influenza A virus subtype H1N1 (substance)','442269004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_442352004','442352004','http://snomed.info/sct','Influenza A virus subtype H1N1 (organism)','442352004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_446396002','446396002','http://snomed.info/sct','Influenza A virus subtype H1 (organism)','446396002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_446524007','446524007','http://snomed.info/sct','Influenza A virus A/Leningrad/621/86 (H1N1) (organism)','446524007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_446525008','446525008','http://snomed.info/sct','Influenza A virus A/Leningrad/624/86 (H1N1) (organism)','446525008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_446645007','446645007','http://snomed.info/sct','Influenza A virus subtype H3 (organism)','446645007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_446646008','446646008','http://snomed.info/sct','Influenza A virus subtype H3N2 (organism)','446646008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_447493004','447493004','http://snomed.info/sct','Influenza A virus A/Bangkok/1/79 (H3N2) (organism)','447493004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_447499000','447499000','http://snomed.info/sct','Influenza A virus A/Bangkok/2/79 (H3N2) (organism)','447499000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_447503006','447503006','http://snomed.info/sct','Influenza A virus A/Port Chalmers/1/73 (H3N2) (organism)','447503006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_447504000','447504000','http://snomed.info/sct','Influenza A virus A/Texas/1/77 (H3N2) (organism)','447504000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_447508002','447508002','http://snomed.info/sct','Influenza A virus A/Leningrad/385/80 (H3N2) (organism)','447508002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_447522002','447522002','http://snomed.info/sct','Influenza A virus A/Mississippi/1/85 (H3N2) (organism)','447522002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_447530001','447530001','http://snomed.info/sct','Influenza A virus A/Philippines/2/82 (H3N2) (organism)','447530001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_447573005','447573005','http://snomed.info/sct','Influenza A virus A/England/42/72 (H3N2) (organism)','447573005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_447578001','447578001','http://snomed.info/sct','Influenza A virus A/Hong Kong/1/68 (H3N2) (organism)','447578001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_447587005','447587005','http://snomed.info/sct','Influenza A virus A/Victoria/3/75 (H3N2) (organism)','447587005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_448803002','448803002','http://snomed.info/sct','Influenza A virus subtype N1 (organism)','448803002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_448835002','448835002','http://snomed.info/sct','Influenza A virus subtype N2 (organism)','448835002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_449024000','449024000','http://snomed.info/sct','Pandemic Influenza A (H1N1) 2009 (organism)','449024000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_450480003','450480003','http://snomed.info/sct','Influenza A virus subtype H3N2v (organism)','450480003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_699872005','699872005','http://snomed.info/sct','Influenza A virus untyped strain present (finding)','699872005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_702482001','702482001','http://snomed.info/sct','Influenza A H1N1 virus 2009 pandemic strain present (finding)','702482001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_707902004','707902004','http://snomed.info/sct','Ribonucleic acid of Influenza A virus H1N1 (substance)','707902004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_707903009','707903009','http://snomed.info/sct','Ribonucleic acid of Influenza A virus H1 (substance)','707903009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_707905002','707905002','http://snomed.info/sct','Ribonucleic acid of Influenza A virus H3 (substance)','707905002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_707913001','707913001','http://snomed.info/sct','Ribonucleic acid of Influenza A virus hemagglutinin (substance)','707913001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_707914007','707914007','http://snomed.info/sct','Ribonucleic acid of Influenza A virus matrix protein (substance)','707914007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_707915008','707915008','http://snomed.info/sct','Ribonucleic acid of Influenza A virus N1 (substance)','707915008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_707916009','707916009','http://snomed.info/sct','Ribonucleic acid of Influenza A virus N2 (substance)','707916009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_707917000','707917000','http://snomed.info/sct','Ribonucleic acid of Influenza A virus neuraminidase (substance)','707917000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_707918005','707918005','http://snomed.info/sct','Ribonucleic acid of Influenza A virus non-structural protein (substance)','707918005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_707919002','707919002','http://snomed.info/sct','Ribonucleic acid of Influenza A virus nucleoprotein (substance)','707919002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_707920008','707920008','http://snomed.info/sct','Ribonucleic acid of Influenza A virus polymerase A (substance)','707920008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_707921007','707921007','http://snomed.info/sct','Ribonucleic acid of Influenza A virus polymerase B2 (substance)','707921007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_707922000','707922000','http://snomed.info/sct','Ribonucleic acid of Influenza A virus polymerase (substance)','707922000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_707923005','707923005','http://snomed.info/sct','Ribonucleic acid of Influenza A virus (substance)','707923005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_709361007','709361007','http://snomed.info/sct','Antigen of Influenza A virus subtype H1 (substance)','709361007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_709362000','709362000','http://snomed.info/sct','Antigen of Influenza A virus subtype H3 (substance)','709362000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_711330007','711330007','http://snomed.info/sct','Influenza A virus subtype H1N1 detected (finding)','711330007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_715333003','715333003','http://snomed.info/sct','Influenza A virus, not subtype H1N1 (organism)','715333003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_720272003','720272003','http://snomed.info/sct','Antigen of Porcine Influenza A virus (substance)','720272003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_720313003','720313003','http://snomed.info/sct','Antigen to Swine influenza virus (substance)','720313003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_772807005','772807005','http://snomed.info/sct','Influenza A virus subtype H3N8 (organism)','772807005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_772809008','772809008','http://snomed.info/sct','Influenza A virus subtype H1N2 (organism)','772809008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_120995009','120995009','http://snomed.info/sct','Antigen of Human alphaherpesvirus 2 (substance)','120995009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_13687007','13687007','http://snomed.info/sct','Human alphaherpesvirus 2 (organism)','13687007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_243617008','243617008','http://snomed.info/sct','California serogroup Orthobunyavirus (organism)','243617008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_28732002','28732002','http://snomed.info/sct','Snowshoe hare virus (organism)','28732002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_30434006','30434006','http://snomed.info/sct','La Crosse virus (organism)','30434006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_61399004','61399004','http://snomed.info/sct','Keystone virus (organism)','61399004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_64979004','64979004','http://snomed.info/sct','California encephalitis virus (organism)','64979004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_707868003','707868003','http://snomed.info/sct','Ribonucleic acid of Orthobunyavirus California serogroup (substance)','707868003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_707928001','707928001','http://snomed.info/sct','Ribonucleic acid of Jamestown Canyon virus (substance)','707928001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_707929009','707929009','http://snomed.info/sct','Ribonucleic acid of La Crosse virus (substance)','707929009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_708283000','708283000','http://snomed.info/sct','Deoxyribonucleic acid of Human alphaherpesvirus 2 (substance)','708283000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_87919008','87919008','http://snomed.info/sct','Trivittatus virus (organism)','87919008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_9194001','9194001','http://snomed.info/sct','Jamestown Canyon virus (organism)','9194001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_1011000124101','1011000124101','http://snomed.info/sct','Influenza A virus subtype H5 asian strain detected (finding)','1011000124101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_421264001','421264001','http://snomed.info/sct','Influenzavirus type A, avian, H5N1 strain (organism)','421264001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_441343005','441343005','http://snomed.info/sct','Influenza A virus subtype H5 present (finding)','441343005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_446397006','446397006','http://snomed.info/sct','Influenza A virus subtype H2 (organism)','446397006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_446647004','446647004','http://snomed.info/sct','Influenza A virus subtype H5 (organism)','446647004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_446648009','446648009','http://snomed.info/sct','Influenza A virus subtype H7 (organism)','446648009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_446649001','446649001','http://snomed.info/sct','Influenza A virus subtype H9 (organism)','446649001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_448325003','448325003','http://snomed.info/sct','Influenza A virus subtype H9N2 (organism)','448325003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_609444009','609444009','http://snomed.info/sct','Influenza A virus subtype H7N9 (organism)','609444009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_700349009','700349009','http://snomed.info/sct','Influenza A virus subtype H10 (organism)','700349009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_700350009','700350009','http://snomed.info/sct','Influenza A virus subtype H10N8 (organism)','700350009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_707904003','707904003','http://snomed.info/sct','Ribonucleic acid of Influenza A virus H2 (substance)','707904003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_707906001','707906001','http://snomed.info/sct','Ribonucleic acid of Influenza A virus H5 Asian lineage (substance)','707906001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_707907005','707907005','http://snomed.info/sct','Ribonucleic acid of Influenza A virus H5 (substance)','707907005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_707908000','707908000','http://snomed.info/sct','Ribonucleic acid of Influenza A virus H5a (substance)','707908000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_707909008','707909008','http://snomed.info/sct','Ribonucleic acid of Influenza A virus H5b (substance)','707909008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_707910003','707910003','http://snomed.info/sct','Ribonucleic acid of Influenza A virus H6 (substance)','707910003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_707911004','707911004','http://snomed.info/sct','Ribonucleic acid of Influenza A virus H7 (substance)','707911004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_707912006','707912006','http://snomed.info/sct','Ribonucleic acid of Influenza A virus H9 (substance)','707912006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_708119004','708119004','http://snomed.info/sct','Influenza A virus subtype H7 present (finding)','708119004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_708120005','708120005','http://snomed.info/sct','Influenza A virus subtype H9 present (finding)','708120005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_708527000','708527000','http://snomed.info/sct','Influenza A virus subtype H5N8 (organism)','708527000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_715346008','715346008','http://snomed.info/sct','Influenza A virus subtype H7N7 (organism)','715346008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_715347004','715347004','http://snomed.info/sct','Influenza A virus subtype H7N3 (organism)','715347004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_715348009','715348009','http://snomed.info/sct','Influenza A virus subtype H7N2 (organism)','715348009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_715349001','715349001','http://snomed.info/sct','Influenza A virus subtype H2N2 (organism)','715349001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_715350001','715350001','http://snomed.info/sct','Influenza A virus subtype H10N7 (organism)','715350001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_715870001','715870001','http://snomed.info/sct','Influenza A virus, not subtype H1 and not subtype H3 (organism)','715870001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_772827006','772827006','http://snomed.info/sct','Influenza A virus subtype H5N1 (organism)','772827006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1715_871771002','871771002','http://snomed.info/sct','Antigen of Influenza A virus subtype H5N1 (substance)','871771002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_12259000','12259000','http://snomed.info/sct','Trypanosoma theileri (organism)','12259000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_17364007','17364007','http://snomed.info/sct','Trypanosoma duttoni (organism)','17364007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_18441007','18441007','http://snomed.info/sct','Naegleria (organism)','18441007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_20027006','20027006','http://snomed.info/sct','Trypanosoma brucei gambiense (organism)','20027006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_22946004','22946004','http://snomed.info/sct','Trypanosoma uniforme (organism)','22946004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_2377007','2377007','http://snomed.info/sct','Trypanosoma evansi (organism)','2377007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_243659009','243659009','http://snomed.info/sct','Trypanosoma brucei (organism)','243659009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_363769000','363769000','http://snomed.info/sct','Entamoeba histolytica/Entamoeba dispar complex (organism)','363769000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_38618000','38618000','http://snomed.info/sct','Trypanosoma melophagium (organism)','38618000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_40740003','40740003','http://snomed.info/sct','Genus Trypanosoma (organism)','40740003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_415984001','415984001','http://snomed.info/sct','Balamuthia (organism)','415984001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_42057003','42057003','http://snomed.info/sct','Trypanosoma nabiasi (organism)','42057003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_46911001','46911001','http://snomed.info/sct','Trypanosoma simiae (organism)','46911001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_48117007','48117007','http://snomed.info/sct','Trypanosoma vivax (organism)','48117007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_4913008','4913008','http://snomed.info/sct','Trypanosoma congolense (organism)','4913008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_49655006','49655006','http://snomed.info/sct','Trypanosoma dimorphon (organism)','49655006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_57221001','57221001','http://snomed.info/sct','Trypanosoma calmetti (organism)','57221001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_61555007','61555007','http://snomed.info/sct','Trypanosoma caprae (organism)','61555007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_64382001','64382001','http://snomed.info/sct','Trypanosoma lewisi (organism)','64382001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_66282002','66282002','http://snomed.info/sct','Trypanosoma equiperdum (organism)','66282002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_699403007','699403007','http://snomed.info/sct','Trophozoite of genus Trypanosoma (organism)','699403007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_699437004','699437004','http://snomed.info/sct','Trophozoite of Trypanosoma brucei gambiense (organism)','699437004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_699438009','699438009','http://snomed.info/sct','Trophozoite of Trypanosoma brucei rhodesiense (organism)','699438009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_708477000','708477000','http://snomed.info/sct','Deoxyribonucleic acid of Trypanosoma brucei (substance)','708477000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_708481000','708481000','http://snomed.info/sct','Deoxyribonucleic acid of Trypanosoma congolense (substance)','708481000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_709167000','709167000','http://snomed.info/sct','Antigen of Trypanosoma (substance)','709167000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_72637009','72637009','http://snomed.info/sct','Trypanosoma rangeli (organism)','72637009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_74238009','74238009','http://snomed.info/sct','Trypanosoma brucei brucei (organism)','74238009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_74384001','74384001','http://snomed.info/sct','Trypanosoma gallinarum (organism)','74384001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_74833009','74833009','http://snomed.info/sct','Trypanosoma avium (organism)','74833009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_79513002','79513002','http://snomed.info/sct','Trypanosoma brucei rhodesiense (organism)','79513002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_82713009','82713009','http://snomed.info/sct','Trypanosoma theodori (organism)','82713009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_88862005','88862005','http://snomed.info/sct','Trypanosoma equinum (organism)','88862005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_9216006','9216006','http://snomed.info/sct','Trypanosoma suis (organism)','9216006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_110389002','110389002','http://snomed.info/sct','Entamoeba histolytica trophozoite (organism)','110389002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_110390006','110390006','http://snomed.info/sct','Entamoeba histolytica cyst (organism)','110390006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_115635005','115635005','http://snomed.info/sct','Balamuthia mandrillaris (organism)','115635005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_117271003','117271003','http://snomed.info/sct','Deoxyribonucleic acid of Entamoeba histolytica (substance)','117271003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_120988000','120988000','http://snomed.info/sct','Antigen of Entamoeba histolytica (substance)','120988000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_121033009','121033009','http://snomed.info/sct','Antigen of Plasmodium falciparum (substance)','121033009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_121034003','121034003','http://snomed.info/sct','Antigen of Plasmodium malariae (substance)','121034003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_121035002','121035002','http://snomed.info/sct','Antigen of Plasmodium ovale (substance)','121035002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_121036001','121036001','http://snomed.info/sct','Antigen of Plasmodium vivax (substance)','121036001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_121205001','121205001','http://snomed.info/sct','Deoxyribonucleic acid of Toxoplasma gondii (substance)','121205001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_12949005','12949005','http://snomed.info/sct','Acanthamoeba culbertsoni (organism)','12949005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_18508006','18508006','http://snomed.info/sct','Plasmodium ovale (organism)','18508006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_20942007','20942007','http://snomed.info/sct','Naegleria fowleri (organism)','20942007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_26290001','26290001','http://snomed.info/sct','Acanthamoeba polyphaga (organism)','26290001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_30020004','30020004','http://snomed.info/sct','Plasmodium falciparum (organism)','30020004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_307306003','307306003','http://snomed.info/sct','Acanthamoeba hatchetti (organism)','307306003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_307307007','307307007','http://snomed.info/sct','Acanthamoeba rhysodes (organism)','307307007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_34706006','34706006','http://snomed.info/sct','Plasmodium (organism)','34706006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_397071003','397071003','http://snomed.info/sct','Malarial red blood cell inclusion (finding)','397071003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_407004008','407004008','http://snomed.info/sct','Antigen of Plasmodium (substance)','407004008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_416364001','416364001','http://snomed.info/sct','Acanthamoeba lugdunensis (organism)','416364001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_417053001','417053001','http://snomed.info/sct','Acanthamoeba divionensis (organism)','417053001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_417278006','417278006','http://snomed.info/sct','Acanthamoeba lenticulata (organism)','417278006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_460691000124102','460691000124102','http://snomed.info/sct','Entamoeba histolytica cyst and trophozoite (finding)','460691000124102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_4649006','4649006','http://snomed.info/sct','Toxoplasma gondii (organism)','4649006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_4716008','4716008','http://snomed.info/sct','Entamoeba histolytica (organism)','4716008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_49918008','49918008','http://snomed.info/sct','Plasmodium knowlesi (organism)','49918008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_50875003','50875003','http://snomed.info/sct','Acanthamoeba (organism)','50875003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_56395006','56395006','http://snomed.info/sct','Plasmodium malariae (organism)','56395006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_59496007','59496007','http://snomed.info/sct','Baylisascaris procyonis (organism)','59496007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_608934005','608934005','http://snomed.info/sct','Trophozoite of genus Plasmodium (organism)','608934005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_608935006','608935006','http://snomed.info/sct','Trophozoite of Plasmodium falciparum (organism)','608935006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_608936007','608936007','http://snomed.info/sct','Trophozoite of Plasmodium malariae (organism)','608936007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_608937003','608937003','http://snomed.info/sct','Trophozoite of Plasmodium ovale (organism)','608937003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_608938008','608938008','http://snomed.info/sct','Trophozoite of Plasmodium vivax (organism)','608938008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_608956008','608956008','http://snomed.info/sct','Trophozoite of Toxoplasma gondii (organism)','608956008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_608962003','608962003','http://snomed.info/sct','Gametocyte of genus Plasmodium (organism)','608962003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_608963008','608963008','http://snomed.info/sct','Gametocyte of Plasmodium falciparum (organism)','608963008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_608964002','608964002','http://snomed.info/sct','Gametocyte of Plasmodium malariae (organism)','608964002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_608965001','608965001','http://snomed.info/sct','Gametocyte of Plasmodium ovale (organism)','608965001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_608966000','608966000','http://snomed.info/sct','Gametocyte of Plasmodium vivax (organism)','608966000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_699546008','699546008','http://snomed.info/sct','Merozoite of genus Plasmodium (organism)','699546008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_699550001','699550001','http://snomed.info/sct','Merozoite of Plasmodium falciparum (organism)','699550001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_699552009','699552009','http://snomed.info/sct','Schizont of genus Plasmodium (organism)','699552009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_699553004','699553004','http://snomed.info/sct','Schizont of Plasmodium falciparum (organism)','699553004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_699555006','699555006','http://snomed.info/sct','Merozoite of Plasmodium ovale (organism)','699555006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_699557003','699557003','http://snomed.info/sct','Schizont of Plasmodium ovale (organism)','699557003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_699559000','699559000','http://snomed.info/sct','Merozoite of Plasmodium vivax (organism)','699559000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_699560005','699560005','http://snomed.info/sct','Schizont of Plasmodium vivax (organism)','699560005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_699561009','699561009','http://snomed.info/sct','Merozoite of Plasmodium malariae (organism)','699561009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_699562002','699562002','http://snomed.info/sct','Schizont of Plasmodium malariae (organism)','699562002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_708396002','708396002','http://snomed.info/sct','Deoxyribonucleic acid of Plasmodium falciparum (substance)','708396002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_708397006','708397006','http://snomed.info/sct','Deoxyribonucleic acid of Plasmodium knowlesi (substance)','708397006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_708399009','708399009','http://snomed.info/sct','Deoxyribonucleic acid of Plasmodium malariae (substance)','708399009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_708401003','708401003','http://snomed.info/sct','Deoxyribonucleic acid of Plasmodium ovale (substance)','708401003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_708402005','708402005','http://snomed.info/sct','Deoxyribonucleic acid of Plasmodium (substance)','708402005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_708405007','708405007','http://snomed.info/sct','Deoxyribonucleic acid of Plasmodium vivax (substance)','708405007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_708485009','708485009','http://snomed.info/sct','Deoxyribonucleic acid of Trypanosoma cruzi (substance)','708485009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_74746009','74746009','http://snomed.info/sct','Plasmodium vivax (organism)','74746009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_788340006','788340006','http://snomed.info/sct','Cyst of Entamoeba histolytica and trophozoite of Entamoeba histolytica (finding)','788340006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_88274000','88274000','http://snomed.info/sct','Trypanosoma cruzi (organism)','88274000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1714_91540007','91540007','http://snomed.info/sct','Acanthamoeba castellanii (organism)','91540007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1959_61399004','61399004','http://snomed.info/sct','Keystone virus (organism)','61399004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.838_213580002','213580002','http://snomed.info/sct','Caseating tuberculoid granuloma (disorder)','213580002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.838_27058005','27058005','http://snomed.info/sct','Necrotizing granulomatous inflammation (morphologic abnormality)','27058005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_1079401000112105','1079401000112105','http://snomed.info/sct','Mycobacterium chelonae subspecies bovis (organism)','1079401000112105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_1079801000112107','1079801000112107','http://snomed.info/sct','Mycolicibacterium malmesburyense (organism)','1079801000112107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_115108002','115108002','http://snomed.info/sct','Family Mycobacteriaceae (organism)','115108002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_116488003','116488003','http://snomed.info/sct','Non-photochromogenic mycobacteria (organism)','116488003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_116492005','116492005','http://snomed.info/sct','Photochromogenic mycobacteria (organism)','116492005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_116494006','116494006','http://snomed.info/sct','Rapid growing mycobacteria (organism)','116494006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_116495007','116495007','http://snomed.info/sct','Scotochromogenic mycobacteria (organism)','116495007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_243365003','243365003','http://snomed.info/sct','Acid-fast bacillus (organism)','243365003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_243377008','243377008','http://snomed.info/sct','Mycobacteroides chelonae (organism)','243377008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_26733000','26733000','http://snomed.info/sct','Mycobacterium lepraemurium (organism)','26733000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_415239006','415239006','http://snomed.info/sct','Rapid growing Mycobacterium species not Mycobacterium fortuitum complex (organism)','415239006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_415533006','415533006','http://snomed.info/sct','Slow growing mycobacteria (organism)','415533006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_417054007','417054007','http://snomed.info/sct','Dapsone resistant mycobacterium leprae (organism)','417054007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_436531000124105','436531000124105','http://snomed.info/sct','Acid-fast bacteria present (finding)','436531000124105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_708333008','708333008','http://snomed.info/sct','Mycobacterium paragordonae (organism)','708333008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_74028009','74028009','http://snomed.info/sct','Mycobacterium paratuberculosis (organism)','74028009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_74349000','74349000','http://snomed.info/sct','Mycobacterium chelonae subspecies chelonae (organism)','74349000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_784294008','784294008','http://snomed.info/sct','Genus Mycolicibacterium (organism)','784294008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_785914008','785914008','http://snomed.info/sct','Mycolicibacterium helvum (organism)','785914008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_785915009','785915009','http://snomed.info/sct','Mycolicibacterium lutetiense (organism)','785915009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_785917001','785917001','http://snomed.info/sct','Mycobacteroides saopaulense (organism)','785917001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_785918006','785918006','http://snomed.info/sct','Genus Mycobacteroides (organism)','785918006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_785920009','785920009','http://snomed.info/sct','Mycolicibacterium sarraceniae (organism)','785920009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_785922001','785922001','http://snomed.info/sct','Mycolicibacterium aromaticivorans (organism)','785922001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_785923006','785923006','http://snomed.info/sct','Mycolicibacterium arcueilense (organism)','785923006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_786827002','786827002','http://snomed.info/sct','Mycolicibacterium oryzae (organism)','786827002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_840681008','840681008','http://snomed.info/sct','Mycolicibacterium litorale (organism)','840681008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_243368001','243368001','http://snomed.info/sct','Genus Mycobacterium (organism)','243368001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_24871004','24871004','http://snomed.info/sct','Mycobacterium gordonae (organism)','24871004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_27142009','27142009','http://snomed.info/sct','Mycobacterium bovis (organism)','27142009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_33610009','33610009','http://snomed.info/sct','Attenuated Mycobacterium bovis (organism)','33610009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_414789006','414789006','http://snomed.info/sct','Mycobacterium canettii (organism)','414789006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_430579009','430579009','http://snomed.info/sct','Mycobacterium caprae (organism)','430579009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_51320008','51320008','http://snomed.info/sct','Mycobacterium africanum (organism)','51320008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_58242002','58242002','http://snomed.info/sct','Mycobacterium leprae (organism)','58242002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_70801007','70801007','http://snomed.info/sct','Mycobacterium microti (organism)','70801007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_832924651000087107','832924651000087107','http://snomed.info/sct','Mycobacterium bovis subspecies bovis (organism)','832924651000087107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_1004145002','1004145002','http://snomed.info/sct','Mycobacterium celeriflavum (organism)','1004145002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_103474001','103474001','http://snomed.info/sct','Mycobacterium fortuitum complex (organism)','103474001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_103475000','103475000','http://snomed.info/sct','Mycobacterium celatum (organism)','103475000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_103476004','103476004','http://snomed.info/sct','Mycobacterium genavense (organism)','103476004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_1079301000112103','1079301000112103','http://snomed.info/sct','Mycobacterium aquaticum (organism)','1079301000112103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_1079501000112109','1079501000112109','http://snomed.info/sct','Mycobacterium grossiae (organism)','1079501000112109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_1079601000112108','1079601000112108','http://snomed.info/sct','Mycobacterium komaniense (organism)','1079601000112108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_1079701000112104','1079701000112104','http://snomed.info/sct','Mycobacterium lehmannii (organism)','1079701000112104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_1079901000112102','1079901000112102','http://snomed.info/sct','Mycobacterium neumannii (organism)','1079901000112102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_1080001000112101','1080001000112101','http://snomed.info/sct','Mycobacterium stephanolepidis (organism)','1080001000112101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_1080101000112100','1080101000112100','http://snomed.info/sct','Mycobacterium persicum (organism)','1080101000112100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_1080201000112106','1080201000112106','http://snomed.info/sct','Mycobacterium shigaense (organism)','1080201000112106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_1080301000112103','1080301000112103','http://snomed.info/sct','Mycobacterium virginiense (organism)','1080301000112103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_1083301000112109','1083301000112109','http://snomed.info/sct','Mycobacterium franklinii (organism)','1083301000112109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_110379001','110379001','http://snomed.info/sct','Mycobacterium, non-tuberculosis (organism)','110379001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_1114801000112105','1114801000112105','http://snomed.info/sct','Mycobacterium attenuatum (organism)','1114801000112105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_1114901000112100','1114901000112100','http://snomed.info/sct','Mycobacterium basiliense (organism)','1114901000112100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_1115001000112100','1115001000112100','http://snomed.info/sct','Mycobacterium decipiens (organism)','1115001000112100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_1115101000112104','1115101000112104','http://snomed.info/sct','Mycobacterium innocens (organism)','1115101000112104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_1115201000112105','1115201000112105','http://snomed.info/sct','Mycobacterium neglectum (organism)','1115201000112105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_1115301000112102','1115301000112102','http://snomed.info/sct','Mycobacterium palauense (organism)','1115301000112102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_1115401000112109','1115401000112109','http://snomed.info/sct','Mycobacterium pseudokansasii (organism)','1115401000112109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_1115501000112108','1115501000112108','http://snomed.info/sct','Mycobacterium syngnathidarum (organism)','1115501000112108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_1115601000112107','1115601000112107','http://snomed.info/sct','Mycobacterium aquiterrae (organism)','1115601000112107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_1115701000112103','1115701000112103','http://snomed.info/sct','Mycobacterium kyogaense (organism)','1115701000112103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_113838007','113838007','http://snomed.info/sct','Mycobacteroides abscessus (organism)','113838007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_113839004','113839004','http://snomed.info/sct','Mycobacterium alvei (organism)','113839004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_113840002','113840002','http://snomed.info/sct','Mycobacterium avium ss avium (organism)','113840002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_113841003','113841003','http://snomed.info/sct','Mycobacterium avium ss paratuberculosis (organism)','113841003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_113842005','113842005','http://snomed.info/sct','Mycobacterium avium ss silvaticum (organism)','113842005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_113843000','113843000','http://snomed.info/sct','Mycobacterium branderi (organism)','113843000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_113844006','113844006','http://snomed.info/sct','Mycobacterium brumae (organism)','113844006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_113845007','113845007','http://snomed.info/sct','Mycobacterium confluentis (organism)','113845007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_113846008','113846008','http://snomed.info/sct','Mycobacterium conspicuum (organism)','113846008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_113847004','113847004','http://snomed.info/sct','Mycobacterium cookii (organism)','113847004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_113848009','113848009','http://snomed.info/sct','Mycobacterium hassiacum (organism)','113848009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_113849001','113849001','http://snomed.info/sct','Mycobacterium hiberniae (organism)','113849001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_113850001','113850001','http://snomed.info/sct','Mycobacterium hodleri (organism)','113850001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_113851002','113851002','http://snomed.info/sct','Mycobacterium interjectum (organism)','113851002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_113852009','113852009','http://snomed.info/sct','Mycobacterium intermedium (organism)','113852009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_113853004','113853004','http://snomed.info/sct','Mycobacterium lentiflavum (organism)','113853004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_113854005','113854005','http://snomed.info/sct','Mycobacterium madagascariense (organism)','113854005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_113856007','113856007','http://snomed.info/sct','Mycobacterium mucogenicum (organism)','113856007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_113857003','113857003','http://snomed.info/sct','Mycobacterium novocastrense (organism)','113857003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_113859000','113859000','http://snomed.info/sct','Mycobacterium peregrinum (organism)','113859000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_113860005','113860005','http://snomed.info/sct','Mycobacterium triplex (organism)','113860005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_1141732007','1141732007','http://snomed.info/sct','Mycobacterium rutilum (organism)','1141732007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_1148624002','1148624002','http://snomed.info/sct','Mycobacterium bourgelatii (organism)','1148624002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_1204092002','1204092002','http://snomed.info/sct','Mycobacterium anyangense (organism)','1204092002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_127522008','127522008','http://snomed.info/sct','Mycobacterium goodii (organism)','127522008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_127523003','127523003','http://snomed.info/sct','Mycobacterium wolinskyi (organism)','127523003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_1507005','1507005','http://snomed.info/sct','Mycobacterium kansasii (organism)','1507005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_16914000','16914000','http://snomed.info/sct','Mycobacterium piscium (organism)','16914000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_20141004','20141004','http://snomed.info/sct','Mycobacterium scrofulaceum (organism)','20141004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_20498000','20498000','http://snomed.info/sct','Mycobacterium chubuense (organism)','20498000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_20973006','20973006','http://snomed.info/sct','Mycobacterium thermoresistibile (organism)','20973006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_21433000','21433000','http://snomed.info/sct','Mycobacterium nonchromogenicum (organism)','21433000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_21996001','21996001','http://snomed.info/sct','Mycobacterium haemophilum (organism)','21996001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_243376004','243376004','http://snomed.info/sct','Mycobacterium avium brunese (organism)','243376004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_243378003','243378003','http://snomed.info/sct','Mycobacterium fortuitum (organism)','243378003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_24618002','24618002','http://snomed.info/sct','Mycobacterium gilvum (organism)','24618002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_27365009','27365009','http://snomed.info/sct','Mycobacterium austroafricanum (organism)','27365009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_29111009','29111009','http://snomed.info/sct','Mycobacterium agri (organism)','29111009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_302561004','302561004','http://snomed.info/sct','Mycobacterium borstelense (organism)','302561004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_333873003','333873003','http://snomed.info/sct','Mycobacterium fortuitum subsp fortuitum (organism)','333873003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_36249008','36249008','http://snomed.info/sct','Mycobacterium komossence (organism)','36249008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_385506001','385506001','http://snomed.info/sct','Mycobacterium murale (organism)','385506001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_385507005','385507005','http://snomed.info/sct','Mycobacterium mageritense (organism)','385507005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_385508000','385508000','http://snomed.info/sct','Mycobacterium septicum (organism)','385508000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_385509008','385509008','http://snomed.info/sct','Mycobacterium elephantis (organism)','385509008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_40333002','40333002','http://snomed.info/sct','Mycobacterium triviale (organism)','40333002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_40713003','40713003','http://snomed.info/sct','Mycobacterium ulcerans (organism)','40713003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_41304005','41304005','http://snomed.info/sct','Mycobacterium obuense (organism)','41304005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_422214005','422214005','http://snomed.info/sct','Mycobacterium nebraskense (organism)','422214005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_427768005','427768005','http://snomed.info/sct','Mycobacterium kubicae (organism)','427768005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_428319005','428319005','http://snomed.info/sct','Mycobacterium immunogenum (organism)','428319005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_428765006','428765006','http://snomed.info/sct','Mycobacterium terrae complex (organism)','428765006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_428856007','428856007','http://snomed.info/sct','Mycobacterium parascrofulaceum (organism)','428856007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_429414009','429414009','http://snomed.info/sct','Mycobacterium saskatchewanense (organism)','429414009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_429844002','429844002','http://snomed.info/sct','Mycobacterium acapulcensis (organism)','429844002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_429901002','429901002','http://snomed.info/sct','Mycobacterium psychrotolerans (organism)','429901002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_429902009','429902009','http://snomed.info/sct','Mycobacterium pyrenivorans (organism)','429902009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_429903004','429903004','http://snomed.info/sct','Mycobacterium ratisbonense (organism)','429903004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_429904005','429904005','http://snomed.info/sct','Mycobacterium sherrisii (organism)','429904005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_429917008','429917008','http://snomed.info/sct','Mycobacterium frederiksbergense (organism)','429917008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_429918003','429918003','http://snomed.info/sct','Mycobacterium hackensackense (organism)','429918003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_429919006','429919006','http://snomed.info/sct','Mycobacterium heckeshornense (organism)','429919006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_429920000','429920000','http://snomed.info/sct','Mycobacterium heidelbergense (organism)','429920000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_429946001','429946001','http://snomed.info/sct','Mycobacterium holsaticum (organism)','429946001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_429947005','429947005','http://snomed.info/sct','Mycobacterium houstonense (organism)','429947005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_429948000','429948000','http://snomed.info/sct','Mycobacterium lacticola (organism)','429948000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_430006007','430006007','http://snomed.info/sct','Mycobacterium visibilis (organism)','430006007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_430014001','430014001','http://snomed.info/sct','Mycobacterium lacus (organism)','430014001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_430487007','430487007','http://snomed.info/sct','Mycobacterium shottsii (organism)','430487007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_430488002','430488002','http://snomed.info/sct','Mycobacterium silvaticum (organism)','430488002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_430489005','430489005','http://snomed.info/sct','Mycobacterium tusciae (organism)','430489005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_430490001','430490001','http://snomed.info/sct','Mycobacterium vanbaalenii (organism)','430490001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_430580007','430580007','http://snomed.info/sct','Mycobacterium cosmeticum (organism)','430580007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_430581006','430581006','http://snomed.info/sct','Mycobacterium doricum (organism)','430581006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_430667000','430667000','http://snomed.info/sct','Mycobacterium chesapeaki (organism)','430667000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_430737001','430737001','http://snomed.info/sct','Mycobacterium liflandii (organism)','430737001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_430738006','430738006','http://snomed.info/sct','Mycobacterium manitobense (organism)','430738006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_430740001','430740001','http://snomed.info/sct','Mycobacterium montefiorense (organism)','430740001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_430911006','430911006','http://snomed.info/sct','Mycobacterium neworleansense (organism)','430911006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_430912004','430912004','http://snomed.info/sct','Mycobacterium palustre (organism)','430912004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_430913009','430913009','http://snomed.info/sct','Mycobacterium parmense (organism)','430913009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_430995003','430995003','http://snomed.info/sct','Mycobacterium boenickei (organism)','430995003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_430996002','430996002','http://snomed.info/sct','Mycobacterium bohemicum (organism)','430996002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_430997006','430997006','http://snomed.info/sct','Mycobacterium botniense (organism)','430997006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_430998001','430998001','http://snomed.info/sct','Mycobacterium brisbanense (organism)','430998001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_431504009','431504009','http://snomed.info/sct','Mycobacterium intracellulare subspecies chimaera (organism)','431504009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_432476008','432476008','http://snomed.info/sct','Mycobacterium canariasense (organism)','432476008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_432820006','432820006','http://snomed.info/sct','Mycobacterium arupense (organism)','432820006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_432888001','432888001','http://snomed.info/sct','Mycobacterium phocaicum (organism)','432888001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_434966321000087109','434966321000087109','http://snomed.info/sct','Mycobacterium marseillense (organism)','434966321000087109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_44760001','44760001','http://snomed.info/sct','Mycobacterium asiaticum (organism)','44760001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_450469003','450469003','http://snomed.info/sct','Mycobacterium salmoniphilum (organism)','450469003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_450471003','450471003','http://snomed.info/sct','Mycobacterium conceptionense (organism)','450471003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_450472005','450472005','http://snomed.info/sct','Mycobacterium monacense (organism)','450472005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_45662006','45662006','http://snomed.info/sct','Mycobacterium terrae (organism)','45662006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_46101000146107','46101000146107','http://snomed.info/sct','Mycobacterium noviomagense (organism)','46101000146107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_468121000124108','468121000124108','http://snomed.info/sct','Mycobacterium mucogenicum group (organism)','468121000124108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_48134004','48134004','http://snomed.info/sct','Mycobacterium aurum (organism)','48134004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_51459000','51459000','http://snomed.info/sct','Mycobacterium neoaurum (organism)','51459000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_53114006','53114006','http://snomed.info/sct','Mycobacterium smegmatis (organism)','53114006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_5371000146101','5371000146101','http://snomed.info/sct','Mycobacterium arosiense (organism)','5371000146101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_5381000146104','5381000146104','http://snomed.info/sct','Mycobacterium colombiense (organism)','5381000146104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_5401000146104','5401000146104','http://snomed.info/sct','Mycobacterium insubricum (organism)','5401000146104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_5421000146107','5421000146107','http://snomed.info/sct','Mycobacterium pseudoshottsii (organism)','5421000146107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_54925005','54925005','http://snomed.info/sct','Mycobacterium vaccae (organism)','54925005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_58503001','58503001','http://snomed.info/sct','Mycobacterium, avium-intracellulare group (organism)','58503001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_58663006','58663006','http://snomed.info/sct','Mycobacterium xenopi (organism)','58663006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_58768005','58768005','http://snomed.info/sct','Mycobacterium poriferae (organism)','58768005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_5885000','5885000','http://snomed.info/sct','Mycobacterium flavescens (organism)','5885000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_58869008','58869008','http://snomed.info/sct','Mycobacterium marinum (organism)','58869008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_60558000','60558000','http://snomed.info/sct','Mycobacterium thamnophis (organism)','60558000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_61708000','61708000','http://snomed.info/sct','Mycobacterium farcinogenes (organism)','61708000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_6199007','6199007','http://snomed.info/sct','Mycobacterium diernhoferi (organism)','6199007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_62644004','62644004','http://snomed.info/sct','Mycobacterium pulveris (organism)','62644004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_65613000','65613000','http://snomed.info/sct','Mycobacterium szulgai (organism)','65613000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_66838002','66838002','http://snomed.info/sct','Mycobacterium duvalii (organism)','66838002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_66940008','66940008','http://snomed.info/sct','Mycobacterium aichiense (organism)','66940008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_698220002','698220002','http://snomed.info/sct','Mycobacterium kumamotonense (organism)','698220002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_700308009','700308009','http://snomed.info/sct','Mycobacterium seoulense (organism)','700308009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_700309001','700309001','http://snomed.info/sct','Mycobacterium paraseoulense (organism)','700309001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_700310006','700310006','http://snomed.info/sct','Mycobacterium paraffinicum (organism)','700310006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_700311005','700311005','http://snomed.info/sct','Mycobacterium bouchedurhonense (organism)','700311005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_703075004','703075004','http://snomed.info/sct','Mycobacterium avium subspecies hominissuis (organism)','703075004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_70463000','70463000','http://snomed.info/sct','Mycobacterium gastri (organism)','70463000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_704995002','704995002','http://snomed.info/sct','Mycobacteroides abscessus subspecies abscessus (organism)','704995002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_705094007','705094007','http://snomed.info/sct','Mycobacteroides abscessus subspecies bolletii (organism)','705094007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_707328006','707328006','http://snomed.info/sct','Mycobacterium paraterrae (organism)','707328006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_708319008','708319008','http://snomed.info/sct','Mycobacterium timonense (organism)','708319008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_708324006','708324006','http://snomed.info/sct','Mycobacterium setense (organism)','708324006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_708329001','708329001','http://snomed.info/sct','Mycobacterium senuense (organism)','708329001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_708336000','708336000','http://snomed.info/sct','Mycobacterium mantenii (organism)','708336000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_708341008','708341008','http://snomed.info/sct','Mycobacterium llatzerense (organism)','708341008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_708346003','708346003','http://snomed.info/sct','Mycobacterium florentinum (organism)','708346003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_708352002','708352002','http://snomed.info/sct','Mycobacterium algericum (organism)','708352002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_709682006','709682006','http://snomed.info/sct','Mycobacterium iranicum (organism)','709682006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_712909005','712909005','http://snomed.info/sct','Mycobacterium vulneris (organism)','712909005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_712910000','712910000','http://snomed.info/sct','Mycobacterium riyadhense (organism)','712910000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_712911001','712911001','http://snomed.info/sct','Mycobacterium kyorinense (organism)','712911001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_712912008','712912008','http://snomed.info/sct','Mycobacterium heraklionense (organism)','712912008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_712913003','712913003','http://snomed.info/sct','Mycobacterium europaeum (organism)','712913003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_713303008','713303008','http://snomed.info/sct','Mycobacterium rufum (organism)','713303008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_713611009','713611009','http://snomed.info/sct','Mycobacterium chlorophenolicum (organism)','713611009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_716339009','716339009','http://snomed.info/sct','Mycobacterium aubagnense (organism)','716339009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_716340006','716340006','http://snomed.info/sct','Mycobacterium bacteremicum (organism)','716340006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_716341005','716341005','http://snomed.info/sct','Mycobacterium longobardum (organism)','716341005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_716342003','716342003','http://snomed.info/sct','Mycobacterium engbaekii (organism)','716342003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_717083003','717083003','http://snomed.info/sct','Mycobacterium angelicum (organism)','717083003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_717660000','717660000','http://snomed.info/sct','Mycobacterium stomatepiae (organism)','717660000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_718808008','718808008','http://snomed.info/sct','Mycobacterium minnesotense (organism)','718808008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_718809000','718809000','http://snomed.info/sct','Mycobacterium parakoreense (organism)','718809000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_72130005','72130005','http://snomed.info/sct','Mycobacterium rhodesiae (organism)','72130005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_722251009','722251009','http://snomed.info/sct','Mycobacterium simiae complex (organism)','722251009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_72477006','72477006','http://snomed.info/sct','Mycobacterium tokaiense (organism)','72477006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_734247004','734247004','http://snomed.info/sct','Mycobacterium fluoranthenivorans (organism)','734247004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_73576007','73576007','http://snomed.info/sct','Mycobacterium malmoense (organism)','73576007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_74212009','74212009','http://snomed.info/sct','Mycobacterium senegalense (organism)','74212009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_74917007','74917007','http://snomed.info/sct','Mycobacterium gadium (organism)','74917007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_752713421000087100','752713421000087100','http://snomed.info/sct','Mycobacterium chelonae subspecies niacinogenes (organism)','752713421000087100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_75356003','75356003','http://snomed.info/sct','Mycobacterium fortuitum ss. acetamidolytica (organism)','75356003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_767041006','767041006','http://snomed.info/sct','Mycobacterium paraintracellulare (organism)','767041006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_770693009','770693009','http://snomed.info/sct','Mycobacterium arabiense (organism)','770693009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_772046008','772046008','http://snomed.info/sct','Mycobacterium paraense (organism)','772046008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_78112006','78112006','http://snomed.info/sct','Mycobacterium phlei (organism)','78112006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_78444002','78444002','http://snomed.info/sct','Mycobacterium sphagni (organism)','78444002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_785848005','785848005','http://snomed.info/sct','Mycobacteroides abscessus subspecies massiliense (organism)','785848005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_785912007','785912007','http://snomed.info/sct','Mycobacterium eburneum (organism)','785912007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_785916005','785916005','http://snomed.info/sct','Mycobacterium montmartrense (organism)','785916005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_785921008','785921008','http://snomed.info/sct','Mycobacterium talmoniae (organism)','785921008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_79817008','79817008','http://snomed.info/sct','Mycobacterium shimoidei (organism)','79817008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_83723009','83723009','http://snomed.info/sct','Mycobacterium avium (organism)','83723009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_83841006','83841006','http://snomed.info/sct','Mycobacterium intracellulare (organism)','83841006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_840692009','840692009','http://snomed.info/sct','Mycobacterium alsense (organism)','840692009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_84180005','84180005','http://snomed.info/sct','Mycobacterium simiae (organism)','84180005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_89896008','89896008','http://snomed.info/sct','Mycobacterium chitae (organism)','89896008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_909007','909007','http://snomed.info/sct','Mycobacterium parafortuitum (organism)','909007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_91336002','91336002','http://snomed.info/sct','Mycobacterium porcinum (organism)','91336002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_9679001','9679001','http://snomed.info/sct','Mycobacterium moriokaense (organism)','9679001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_9939008','9939008','http://snomed.info/sct','Mycobacterium fallax (organism)','9939008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_113861009','113861009','http://snomed.info/sct','Mycobacterium tuberculosis (organism)','113861009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_243370005','243370005','http://snomed.info/sct','Mycobacterium tuberculosis classical variant (organism)','243370005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_243371009','243371009','http://snomed.info/sct','Mycobacterium tuberculosis Asian variant (organism)','243371009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_243372002','243372002','http://snomed.info/sct','Mycobacterium tuberculosis African I variant (organism)','243372002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_243373007','243373007','http://snomed.info/sct','Mycobacterium tuberculosis African II variant (organism)','243373007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_36354002','36354002','http://snomed.info/sct','Mycobacterium tuberculosis hominis (organism)','36354002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_430914003','430914003','http://snomed.info/sct','Mycobacterium pinnipedii (organism)','430914003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.839_113858008','113858008','http://snomed.info/sct','Mycobacterium tuberculosis complex (organism)','113858008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1679_1104701000112104','1104701000112104','http://snomed.info/sct','Metallo-beta-lactamase producing mucoid Pseudomonas aeruginosa (organism)','1104701000112104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1679_1104801000112107','1104801000112107','http://snomed.info/sct','Metallo-beta-lactamase producing non-mucoid Pseudomonas aeruginosa (organism)','1104801000112107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1679_52499004','52499004','http://snomed.info/sct','Pseudomonas aeruginosa (organism)','52499004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1679_541101000124105','541101000124105','http://snomed.info/sct','Extended spectrum beta-lactamase producing Pseudomonas aeruginosa (organism)','541101000124105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1679_708411005','708411005','http://snomed.info/sct','Deoxyribonucleic acid of Pseudomonas aeruginosa (substance)','708411005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1679_710332005','710332005','http://snomed.info/sct','Multidrug-resistant Pseudomonas aeruginosa (organism)','710332005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1679_733537009','733537009','http://snomed.info/sct','Mucoid Pseudomonas aeruginosa (organism)','733537009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1679_733538004','733538004','http://snomed.info/sct','Non-mucoid Pseudomonas aeruginosa (organism)','733538004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1679_772067008','772067008','http://snomed.info/sct','Pseudomonas aeruginosa Liverpool epidemic strain (organism)','772067008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1679_726492000','726492000','http://snomed.info/sct','Carbapenem resistant Pseudomonas aeruginosa (organism)','726492000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1679_737527003','737527003','http://snomed.info/sct','Carbapenemase-producing Pseudomonas aeruginosa (organism)','737527003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1679_1104601000112108','1104601000112108','http://snomed.info/sct','Metallo-beta-lactamase producing Pseudomonas aeruginosa (organism)','1104601000112108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_116636003','116636003','http://snomed.info/sct','Antigen of Rickettsia (substance)','116636003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_117281004','117281004','http://snomed.info/sct','Ribonucleic acid of Rickettsia prowazekii (substance)','117281004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_121187001','121187001','http://snomed.info/sct','Deoxyribonucleic acid of Mycoplasma pneumoniae (substance)','121187001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_121188006','121188006','http://snomed.info/sct','Ribosomal ribonucleic acid of Mycoplasma pneumoniae (substance)','121188006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_28499009','28499009','http://snomed.info/sct','Rickettsia prowazekii (organism)','28499009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_417060007','417060007','http://snomed.info/sct','Tropheryma whipplei (organism)','417060007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_432697004','432697004','http://snomed.info/sct','Brucella pseudintermedia (organism)','432697004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_450401002','450401002','http://snomed.info/sct','Brucella haematophila (organism)','450401002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_708475008','708475008','http://snomed.info/sct','Deoxyribonucleic acid of Tropheryma whipplei (substance)','708475008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_103508002','103508002','http://snomed.info/sct','Coxiella burnetii, phase I (organism)','103508002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_103509005','103509005','http://snomed.info/sct','Coxiella burnetii, phase II (organism)','103509005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_103512008','103512008','http://snomed.info/sct','Bartonella vinsonii (organism)','103512008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_103513003','103513003','http://snomed.info/sct','Bartonella elizabethae (organism)','103513003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_114218009','114218009','http://snomed.info/sct','Rickettsia africae (organism)','114218009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_114223009','114223009','http://snomed.info/sct','Bartonella clarridgeiae (organism)','114223009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_114224003','114224003','http://snomed.info/sct','Bartonella doshiae (organism)','114224003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_114225002','114225002','http://snomed.info/sct','Bartonella grahamii (organism)','114225002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_114226001','114226001','http://snomed.info/sct','Bartonella talpae (organism)','114226001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_114227005','114227005','http://snomed.info/sct','Bartonella taylorii (organism)','114227005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_114228000','114228000','http://snomed.info/sct','Bartonella vinsonii ss berkhoffii (organism)','114228000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_114229008','114229008','http://snomed.info/sct','Bartonella vinsonii ss vinsonii (organism)','114229008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_114230003','114230003','http://snomed.info/sct','Bartonella peromysci (organism)','114230003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_117193003','117193003','http://snomed.info/sct','Ribosomal ribonucleic acid of Mycobacterium tuberculosis hominis (substance)','117193003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_117285008','117285008','http://snomed.info/sct','Deoxyribonucleic acid of Mycobacterium tuberculosis (substance)','117285008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_120979009','120979009','http://snomed.info/sct','Antigen of Rickettsia rickettsii (substance)','120979009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_121191006','121191006','http://snomed.info/sct','Ribonucleic acid of Chlamydia pneumoniae (substance)','121191006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_121196001','121196001','http://snomed.info/sct','Ribonucleic acid of Rickettsia rickettsii (substance)','121196001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_16336005','16336005','http://snomed.info/sct','Ehrlichia ondiri (organism)','16336005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_22533000','22533000','http://snomed.info/sct','Coxiella burnetii (organism)','22533000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_27334000','27334000','http://snomed.info/sct','Genus Ehrlichia (organism)','27334000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_30769009','30769009','http://snomed.info/sct','Rickettsia akari (organism)','30769009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_312329009','312329009','http://snomed.info/sct','Ehrlichia muris (organism)','312329009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_3381000146103','3381000146103','http://snomed.info/sct','Bartonella japonica (organism)','3381000146103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_415341005','415341005','http://snomed.info/sct','Rickettsia felis (organism)','415341005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_415342003','415342003','http://snomed.info/sct','Rickettsia, spotted fever group (organism)','415342003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_417657001','417657001','http://snomed.info/sct','Bartonella vinsonii subsp. arupensis (organism)','417657001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_421964005','421964005','http://snomed.info/sct','Ehrlichia ruminantium (organism)','421964005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_431120006','431120006','http://snomed.info/sct','Bartonella tribocorum (organism)','431120006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_431122003','431122003','http://snomed.info/sct','Bartonella bovis (organism)','431122003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_431123008','431123008','http://snomed.info/sct','Bartonella chomelii (organism)','431123008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_431124002','431124002','http://snomed.info/sct','Bartonella schoenbuchensis (organism)','431124002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_431148006','431148006','http://snomed.info/sct','Bartonella birtlesii (organism)','431148006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_431156009','431156009','http://snomed.info/sct','Bartonella capreoli (organism)','431156009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_431157000','431157000','http://snomed.info/sct','Bartonella alsatica (organism)','431157000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_464881000124108','464881000124108','http://snomed.info/sct','Ehrlichia japonica (organism)','464881000124108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_467101000124102','467101000124102','http://snomed.info/sct','Ehrlichia muris subspecies eauclairensis (organism)','467101000124102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_472821001','472821001','http://snomed.info/sct','Rickettsia heilongjiangensis (organism)','472821001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_53447008','53447008','http://snomed.info/sct','Rickettsia australis (organism)','53447008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_62496009','62496009','http://snomed.info/sct','Genus Bartonella (organism)','62496009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_698215002','698215002','http://snomed.info/sct','Rickettsia species 364D (organism)','698215002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_707646005','707646005','http://snomed.info/sct','Ribosomal ribonucleic acid of Mycobacterium tuberculosis complex (substance)','707646005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_707647001','707647001','http://snomed.info/sct','Ribosomal ribonucleic acid of Mycobacterium tuberculosis (substance)','707647001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_707782008','707782008','http://snomed.info/sct','Ribonucleic acid of Rickettsia spotted fever group (substance)','707782008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_708156008','708156008','http://snomed.info/sct','Deoxyribonucleic acid of Bartonella (substance)','708156008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_708226005','708226005','http://snomed.info/sct','Deoxyribonucleic acid of Coxiella burnetii (substance)','708226005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_708235003','708235003','http://snomed.info/sct','Deoxyribonucleic acid of Ehrlichia chaffeensis (substance)','708235003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_708236002','708236002','http://snomed.info/sct','Deoxyribonucleic acid of Ehrlichia ewingii (substance)','708236002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_708237006','708237006','http://snomed.info/sct','Deoxyribonucleic acid of Ehrlichia (substance)','708237006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_708371000','708371000','http://snomed.info/sct','Deoxyribonucleic acid of Mycobacterium tuberculosis complex (substance)','708371000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_708418004','708418004','http://snomed.info/sct','Deoxyribonucleic acid of Rickettsia rickettsii (substance)','708418004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_708420001','708420001','http://snomed.info/sct','Deoxyribonucleic acid of Rickettsia spotted fever group (substance)','708420001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_709382001','709382001','http://snomed.info/sct','Antigen of Coxiella burnetii (substance)','709382001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_709384000','709384000','http://snomed.info/sct','Antigen of Ehrlichia chaffeensis (substance)','709384000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_709396007','709396007','http://snomed.info/sct','Antigen of Rickettsia spotted fever group (substance)','709396007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_718788002','718788002','http://snomed.info/sct','Bartonella callosciuri (organism)','718788002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_718789005','718789005','http://snomed.info/sct','Bartonella jaculi (organism)','718789005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_718790001','718790001','http://snomed.info/sct','Bartonella koehlerae (organism)','718790001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_718791002','718791002','http://snomed.info/sct','Bartonella senegalensis (organism)','718791002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_72834004','72834004','http://snomed.info/sct','Ehrlichia ovina (organism)','72834004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_76548005','76548005','http://snomed.info/sct','Ehrlichia bovis (organism)','76548005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_79284001','79284001','http://snomed.info/sct','Rickettsia typhi (organism)','79284001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_87643008','87643008','http://snomed.info/sct','Ehrlichia canis (organism)','87643008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_1086701000112101','1086701000112101','http://snomed.info/sct','Brucella microti (organism)','1086701000112101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_1086801000112109','1086801000112109','http://snomed.info/sct','Brucella papionis (organism)','1086801000112109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_115638007','115638007','http://snomed.info/sct','Brucella abortus, biovar 1 (organism)','115638007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_115639004','115639004','http://snomed.info/sct','Brucella abortus, biovar 2 (organism)','115639004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_115640002','115640002','http://snomed.info/sct','Brucella abortus, biovar 3 (organism)','115640002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_115641003','115641003','http://snomed.info/sct','Brucella abortus, biovar 4 (organism)','115641003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_115642005','115642005','http://snomed.info/sct','Brucella abortus, biovar 5 (organism)','115642005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_115643000','115643000','http://snomed.info/sct','Brucella abortus, biovar 6 (organism)','115643000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_115644006','115644006','http://snomed.info/sct','Brucella abortus, biovar 9 (organism)','115644006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_121096003','121096003','http://snomed.info/sct','Antigen of Streptococcus pyogenes (substance)','121096003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_121176009','121176009','http://snomed.info/sct','Ribosomal ribonucleic acid of Streptococcus pyogenes (substance)','121176009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_24224000','24224000','http://snomed.info/sct','Brucella abortus (organism)','24224000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_26181000087102','26181000087102','http://snomed.info/sct','Streptococcus pyogenes type emm183 (organism)','26181000087102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_26191000087100','26191000087100','http://snomed.info/sct','Streptococcus pyogenes type emm169 (organism)','26191000087100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_26211000087101','26211000087101','http://snomed.info/sct','Streptococcus pyogenes type emm161 (organism)','26211000087101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_28461002','28461002','http://snomed.info/sct','Brucella neotomae (organism)','28461002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_35049005','35049005','http://snomed.info/sct','Brucella ovis (organism)','35049005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_38025008','38025008','http://snomed.info/sct','Brucella canis (organism)','38025008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_417031003','417031003','http://snomed.info/sct','Brucella suis biovar 3 (organism)','417031003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_419212009','419212009','http://snomed.info/sct','Brucella maris (organism)','419212009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_420364006','420364006','http://snomed.info/sct','Anaplasma phagocytophilum (organism)','420364006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_427814005','427814005','http://snomed.info/sct','Streptococcus pyogenes type emm28 (organism)','427814005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_427821005','427821005','http://snomed.info/sct','Streptococcus pyogenes type emm48 (organism)','427821005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_427822003','427822003','http://snomed.info/sct','Streptococcus pyogenes type emm4 (organism)','427822003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_427823008','427823008','http://snomed.info/sct','Streptococcus pyogenes type emm73 (organism)','427823008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_428238003','428238003','http://snomed.info/sct','Streptococcus pyogenes type emm2 (organism)','428238003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_428254000','428254000','http://snomed.info/sct','Streptococcus pyogenes type emm58 (organism)','428254000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_428541006','428541006','http://snomed.info/sct','Streptococcus pyogenes type emm14 (organism)','428541006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_428542004','428542004','http://snomed.info/sct','Streptococcus pyogenes type emm77 (organism)','428542004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_428793005','428793005','http://snomed.info/sct','Streptococcus pyogenes type emm12 (organism)','428793005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_428854005','428854005','http://snomed.info/sct','Streptococcus pyogenes type emm1 (organism)','428854005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_428855006','428855006','http://snomed.info/sct','Streptococcus pyogenes type emm90 (organism)','428855006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_429336006','429336006','http://snomed.info/sct','Streptococcus pyogenes type emm5 (organism)','429336006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_429337002','429337002','http://snomed.info/sct','Streptococcus pyogenes type emm89 (organism)','429337002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_430982008','430982008','http://snomed.info/sct','Brucella abortus, vaccinal strain 19 (organism)','430982008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_430983003','430983003','http://snomed.info/sct','Brucella abortus, vaccinal strain RB51 (organism)','430983003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_438977000','438977000','http://snomed.info/sct','Streptococcus pyogenes type emm118 (organism)','438977000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_438978005','438978005','http://snomed.info/sct','Streptococcus pyogenes type emm44 (organism)','438978005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_439294004','439294004','http://snomed.info/sct','Streptococcus pyogenes type emm61 (organism)','439294004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_441723002','441723002','http://snomed.info/sct','Streptococcus pyogenes type emm76 (organism)','441723002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_442785005','442785005','http://snomed.info/sct','Streptococcus pyogenes type emm27 (organism)','442785005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_442786006','442786006','http://snomed.info/sct','Streptococcus pyogenes type emm26 (organism)','442786006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_442794004','442794004','http://snomed.info/sct','Streptococcus pyogenes type emm45 (organism)','442794004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_442799009','442799009','http://snomed.info/sct','Streptococcus pyogenes type emm41 (organism)','442799009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_442800008','442800008','http://snomed.info/sct','Streptococcus pyogenes type emm40 (organism)','442800008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_442801007','442801007','http://snomed.info/sct','Streptococcus pyogenes type emm39 (organism)','442801007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_442802000','442802000','http://snomed.info/sct','Streptococcus pyogenes type emm38 (organism)','442802000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_442809009','442809009','http://snomed.info/sct','Streptococcus pyogenes type emm99 (organism)','442809009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_442810004','442810004','http://snomed.info/sct','Streptococcus pyogenes type emm98 (organism)','442810004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_442812007','442812007','http://snomed.info/sct','Streptococcus pyogenes type emm37 (organism)','442812007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_442813002','442813002','http://snomed.info/sct','Streptococcus pyogenes type emm3 (organism)','442813002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_442814008','442814008','http://snomed.info/sct','Streptococcus pyogenes type emm97 (organism)','442814008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_442815009','442815009','http://snomed.info/sct','Streptococcus pyogenes type emm96 (organism)','442815009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_442816005','442816005','http://snomed.info/sct','Streptococcus pyogenes type emm46 (organism)','442816005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_442820009','442820009','http://snomed.info/sct','Streptococcus pyogenes type emm91 (organism)','442820009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_442821008','442821008','http://snomed.info/sct','Streptococcus pyogenes type emm9 (organism)','442821008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_442824000','442824000','http://snomed.info/sct','Streptococcus pyogenes type emm36 (organism)','442824000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_442825004','442825004','http://snomed.info/sct','Streptococcus pyogenes type emm35 (organism)','442825004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_442826003','442826003','http://snomed.info/sct','Streptococcus pyogenes type emm34 (organism)','442826003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_442827007','442827007','http://snomed.info/sct','Streptococcus pyogenes type emm29 (organism)','442827007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_442834009','442834009','http://snomed.info/sct','Streptococcus pyogenes type emm114 (organism)','442834009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_442835005','442835005','http://snomed.info/sct','Streptococcus pyogenes type emm113 (organism)','442835005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_442838007','442838007','http://snomed.info/sct','Streptococcus pyogenes type emm88 (organism)','442838007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_442839004','442839004','http://snomed.info/sct','Streptococcus pyogenes type emm87 (organism)','442839004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_442846008','442846008','http://snomed.info/sct','Streptococcus pyogenes type emm75 (organism)','442846008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_442850001','442850001','http://snomed.info/sct','Streptococcus pyogenes type emm51 (organism)','442850001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_442851002','442851002','http://snomed.info/sct','Streptococcus pyogenes type emm50 (organism)','442851002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_442852009','442852009','http://snomed.info/sct','Streptococcus pyogenes type emm49 (organism)','442852009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_442853004','442853004','http://snomed.info/sct','Streptococcus pyogenes type emm47 (organism)','442853004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_442856007','442856007','http://snomed.info/sct','Streptococcus pyogenes type emm81 (organism)','442856007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_442857003','442857003','http://snomed.info/sct','Streptococcus pyogenes type emm80 (organism)','442857003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_442862002','442862002','http://snomed.info/sct','Streptococcus pyogenes type emm68 (organism)','442862002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_442863007','442863007','http://snomed.info/sct','Streptococcus pyogenes type emm116 (organism)','442863007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_442872004','442872004','http://snomed.info/sct','Streptococcus pyogenes type emm6 (organism)','442872004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_442873009','442873009','http://snomed.info/sct','Streptococcus pyogenes type emm59 (organism)','442873009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_442879008','442879008','http://snomed.info/sct','Streptococcus pyogenes type emm115 (organism)','442879008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_442882003','442882003','http://snomed.info/sct','Streptococcus pyogenes type emm13 (organism)','442882003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_442895008','442895008','http://snomed.info/sct','Streptococcus pyogenes type emm21 (organism)','442895008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_442896009','442896009','http://snomed.info/sct','Streptococcus pyogenes type emm17 (organism)','442896009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_442897000','442897000','http://snomed.info/sct','Streptococcus pyogenes type emm16 (organism)','442897000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_442904003','442904003','http://snomed.info/sct','Streptococcus pyogenes type emm57 (organism)','442904003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_442905002','442905002','http://snomed.info/sct','Streptococcus pyogenes type emm56 (organism)','442905002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_442906001','442906001','http://snomed.info/sct','Streptococcus pyogenes type emm82 (organism)','442906001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_442922000','442922000','http://snomed.info/sct','Streptococcus pyogenes type emm20 (organism)','442922000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_442923005','442923005','http://snomed.info/sct','Streptococcus pyogenes type emm19 (organism)','442923005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_442929009','442929009','http://snomed.info/sct','Streptococcus pyogenes type emm43 (organism)','442929009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_442930004','442930004','http://snomed.info/sct','Streptococcus pyogenes type emm42 (organism)','442930004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_442932007','442932007','http://snomed.info/sct','Streptococcus pyogenes type emm67 (organism)','442932007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_442933002','442933002','http://snomed.info/sct','Streptococcus pyogenes type emm66 (organism)','442933002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_442934008','442934008','http://snomed.info/sct','Streptococcus pyogenes type emm65 (organism)','442934008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_442935009','442935009','http://snomed.info/sct','Streptococcus pyogenes type emm64 (organism)','442935009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_442940001','442940001','http://snomed.info/sct','Streptococcus pyogenes type emm79 (organism)','442940001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_442947003','442947003','http://snomed.info/sct','Streptococcus pyogenes type emm63 (organism)','442947003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_442948008','442948008','http://snomed.info/sct','Streptococcus pyogenes type emm62 (organism)','442948008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_442953003','442953003','http://snomed.info/sct','Streptococcus pyogenes type emm72 (organism)','442953003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_442954009','442954009','http://snomed.info/sct','Streptococcus pyogenes type emm71 (organism)','442954009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_442955005','442955005','http://snomed.info/sct','Streptococcus pyogenes type emm121 (organism)','442955005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_442956006','442956006','http://snomed.info/sct','Streptococcus pyogenes type emm120 (organism)','442956006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_442961008','442961008','http://snomed.info/sct','Streptococcus pyogenes type emm74 (organism)','442961008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_442962001','442962001','http://snomed.info/sct','Streptococcus pyogenes type emm112 (organism)','442962001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_442966003','442966003','http://snomed.info/sct','Streptococcus pyogenes type emm25 (organism)','442966003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_442967007','442967007','http://snomed.info/sct','Streptococcus pyogenes type emm24 (organism)','442967007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_442968002','442968002','http://snomed.info/sct','Streptococcus pyogenes type emm23 (organism)','442968002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_442969005','442969005','http://snomed.info/sct','Streptococcus pyogenes type emm22 (organism)','442969005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_442974002','442974002','http://snomed.info/sct','Streptococcus pyogenes type emm95 (organism)','442974002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_442975001','442975001','http://snomed.info/sct','Streptococcus pyogenes type emm94 (organism)','442975001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_442976000','442976000','http://snomed.info/sct','Streptococcus pyogenes type emm93 (organism)','442976000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_442977009','442977009','http://snomed.info/sct','Streptococcus pyogenes type emm92 (organism)','442977009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_442985000','442985000','http://snomed.info/sct','Streptococcus pyogenes type emm52 (organism)','442985000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_442988003','442988003','http://snomed.info/sct','Streptococcus pyogenes type emm15 (organism)','442988003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_442991003','442991003','http://snomed.info/sct','Streptococcus pyogenes type emm69 (organism)','442991003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_442995007','442995007','http://snomed.info/sct','Streptococcus pyogenes type emm119 (organism)','442995007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_442996008','442996008','http://snomed.info/sct','Streptococcus pyogenes type emm78 (organism)','442996008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_442998009','442998009','http://snomed.info/sct','Streptococcus pyogenes type emm18 (organism)','442998009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_443007002','443007002','http://snomed.info/sct','Streptococcus pyogenes type emm55 (organism)','443007002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_443008007','443008007','http://snomed.info/sct','Streptococcus pyogenes type emm54 (organism)','443008007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_443009004','443009004','http://snomed.info/sct','Streptococcus pyogenes type emm53 (organism)','443009004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_443010009','443010009','http://snomed.info/sct','Streptococcus pyogenes type emm117 (organism)','443010009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_443026005','443026005','http://snomed.info/sct','Streptococcus pyogenes type emm8 (organism)','443026005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_443027001','443027001','http://snomed.info/sct','Streptococcus pyogenes type emm60 (organism)','443027001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_443028006','443028006','http://snomed.info/sct','Streptococcus pyogenes type emm10 (organism)','443028006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_443031007','443031007','http://snomed.info/sct','Streptococcus pyogenes type emm70 (organism)','443031007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_443032000','443032000','http://snomed.info/sct','Streptococcus pyogenes type emm86 (organism)','443032000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_443033005','443033005','http://snomed.info/sct','Streptococcus pyogenes type emm85 (organism)','443033005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_443034004','443034004','http://snomed.info/sct','Streptococcus pyogenes type emm84 (organism)','443034004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_443035003','443035003','http://snomed.info/sct','Streptococcus pyogenes type emm83 (organism)','443035003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_443052004','443052004','http://snomed.info/sct','Streptococcus pyogenes type emm7 (organism)','443052004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_443053009','443053009','http://snomed.info/sct','Streptococcus pyogenes type emm100 (organism)','443053009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_443054003','443054003','http://snomed.info/sct','Streptococcus pyogenes type emm33 (organism)','443054003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_443055002','443055002','http://snomed.info/sct','Streptococcus pyogenes type emm32 (organism)','443055002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_443056001','443056001','http://snomed.info/sct','Streptococcus pyogenes type emm31 (organism)','443056001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_443057005','443057005','http://snomed.info/sct','Streptococcus pyogenes type emm30 (organism)','443057005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_443059008','443059008','http://snomed.info/sct','Streptococcus pyogenes type emm111 (organism)','443059008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_443060003','443060003','http://snomed.info/sct','Streptococcus pyogenes type emm11 (organism)','443060003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_449411006','449411006','http://snomed.info/sct','Brucella inopinata (organism)','449411006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_470341000124109','470341000124109','http://snomed.info/sct','Brucella suis biovar 1 (organism)','470341000124109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_470351000124106','470351000124106','http://snomed.info/sct','Brucella suis biovar 2 (organism)','470351000124106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_48317004','48317004','http://snomed.info/sct','Brucella suis (organism)','48317004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_58720004','58720004','http://snomed.info/sct','Mycoplasma pneumoniae (organism)','58720004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_698151001','698151001','http://snomed.info/sct','Streptococcus pyogenes type emm101 (organism)','698151001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_698152008','698152008','http://snomed.info/sct','Streptococcus pyogenes type emm102 (organism)','698152008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_698153003','698153003','http://snomed.info/sct','Streptococcus pyogenes type emm103 (organism)','698153003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_698154009','698154009','http://snomed.info/sct','Streptococcus pyogenes type emm104 (organism)','698154009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_698155005','698155005','http://snomed.info/sct','Streptococcus pyogenes type emm105 (organism)','698155005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_698156006','698156006','http://snomed.info/sct','Streptococcus pyogenes type emm106 (organism)','698156006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_698157002','698157002','http://snomed.info/sct','Streptococcus pyogenes type emm107 (organism)','698157002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_698158007','698158007','http://snomed.info/sct','Streptococcus pyogenes type emm108 (organism)','698158007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_698159004','698159004','http://snomed.info/sct','Streptococcus pyogenes type emm109 (organism)','698159004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_698160009','698160009','http://snomed.info/sct','Streptococcus pyogenes type emm110 (organism)','698160009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_698206009','698206009','http://snomed.info/sct','Brucella suis biovar 4 (organism)','698206009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_698207000','698207000','http://snomed.info/sct','Brucella ceti (organism)','698207000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_698208005','698208005','http://snomed.info/sct','Brucella pinnipedialis (organism)','698208005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_698209002','698209002','http://snomed.info/sct','Brucella abortus, biovar 7 (organism)','698209002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_707631003','707631003','http://snomed.info/sct','Ribosomal ribonucleic acid of Brucella abortus (substance)','707631003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_707633000','707633000','http://snomed.info/sct','Ribosomal ribonucleic acid of Brucella suis (substance)','707633000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_708142006','708142006','http://snomed.info/sct','Deoxyribonucleic acid of Anaplasma phagocytophilum (substance)','708142006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_708202008','708202008','http://snomed.info/sct','Deoxyribonucleic acid of Brucella abortus (substance)','708202008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_708203003','708203003','http://snomed.info/sct','Deoxyribonucleic acid of Brucella melitensis (substance)','708203003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_708204009','708204009','http://snomed.info/sct','Deoxyribonucleic acid of Brucella (substance)','708204009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_708205005','708205005','http://snomed.info/sct','Deoxyribonucleic acid of Brucella suis (substance)','708205005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_708448001','708448001','http://snomed.info/sct','Deoxyribonucleic acid of Streptococcus pyogenes (substance)','708448001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_709166009','709166009','http://snomed.info/sct','Antigen of Anaplasma phagocytophilum (substance)','709166009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_709219004','709219004','http://snomed.info/sct','Antigen of Brucella (substance)','709219004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_72829003','72829003','http://snomed.info/sct','Brucella melitensis (organism)','72829003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_80166006','80166006','http://snomed.info/sct','Streptococcus pyogenes (organism)','80166006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_103511001','103511001','http://snomed.info/sct','Bartonella quintana (organism)','103511001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_113861009','113861009','http://snomed.info/sct','Mycobacterium tuberculosis (organism)','113861009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_114217004','114217004','http://snomed.info/sct','Rickettsia aeschlimannii (organism)','114217004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_114219001','114219001','http://snomed.info/sct','Rickettsia helvetica (organism)','114219001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_114220007','114220007','http://snomed.info/sct','Rickettsia japonica (organism)','114220007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_114221006','114221006','http://snomed.info/sct','Rickettsia massiliae (organism)','114221006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_115421002','115421002','http://snomed.info/sct','Antigen of Borrelia burgdorferi 88-kDa protein (substance)','115421002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_115422009','115422009','http://snomed.info/sct','Antigen of Borrelia burgdorferi 29-kDa protein (substance)','115422009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_115423004','115423004','http://snomed.info/sct','Antigen of Borrelia burgdorferi 47-kDa protein (substance)','115423004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_117270002','117270002','http://snomed.info/sct','Ribosomal ribonucleic acid of Streptococcus agalactiae (substance)','117270002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_120978001','120978001','http://snomed.info/sct','Antigen of Streptococcus agalactiae (substance)','120978001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_121004008','121004008','http://snomed.info/sct','Antigen of Borrelia burgdorferi (substance)','121004008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_121104006','121104006','http://snomed.info/sct','Deoxyribonucleic acid of Borrelia burgdorferi (substance)','121104006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_121249004','121249004','http://snomed.info/sct','Deoxyribonucleic acid of Bartonella quintana (substance)','121249004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_18054009','18054009','http://snomed.info/sct','Rickettsia rickettsii (organism)','18054009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_243352007','243352007','http://snomed.info/sct','Bartonella bacilliformis (organism)','243352007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_243360008','243360008','http://snomed.info/sct','Ehrlichia ewingii (organism)','243360008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_243370005','243370005','http://snomed.info/sct','Mycobacterium tuberculosis classical variant (organism)','243370005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_243371009','243371009','http://snomed.info/sct','Mycobacterium tuberculosis Asian variant (organism)','243371009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_243372002','243372002','http://snomed.info/sct','Mycobacterium tuberculosis African I variant (organism)','243372002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_243373007','243373007','http://snomed.info/sct','Mycobacterium tuberculosis African II variant (organism)','243373007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_32691002','32691002','http://snomed.info/sct','Rickettsia conorii (organism)','32691002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_36354002','36354002','http://snomed.info/sct','Mycobacterium tuberculosis hominis (organism)','36354002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_43492007','43492007','http://snomed.info/sct','Streptococcus agalactiae (organism)','43492007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_437822006','437822006','http://snomed.info/sct','Rickettsia honei (organism)','437822006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_437823001','437823001','http://snomed.info/sct','Rickettsia slovaca (organism)','437823001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_59250001','59250001','http://snomed.info/sct','Ehrlichia chaffeensis (organism)','59250001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_698164000','698164000','http://snomed.info/sct','Streptococcus agalactiae serotype Ia (organism)','698164000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_698165004','698165004','http://snomed.info/sct','Streptococcus agalactiae serotype Ia/c (organism)','698165004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_698166003','698166003','http://snomed.info/sct','Streptococcus agalactiae serotype Ib (organism)','698166003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_698167007','698167007','http://snomed.info/sct','Streptococcus agalactiae serotype Ib/c (organism)','698167007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_698168002','698168002','http://snomed.info/sct','Streptococcus agalactiae serotype II (organism)','698168002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_698169005','698169005','http://snomed.info/sct','Streptococcus agalactiae serotype II/c (organism)','698169005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_698170006','698170006','http://snomed.info/sct','Streptococcus agalactiae serotype II/R (organism)','698170006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_698171005','698171005','http://snomed.info/sct','Streptococcus agalactiae serotype III (organism)','698171005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_698172003','698172003','http://snomed.info/sct','Streptococcus agalactiae serotype III/c (organism)','698172003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_698173008','698173008','http://snomed.info/sct','Streptococcus agalactiae serotype III/R (organism)','698173008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_698174002','698174002','http://snomed.info/sct','Streptococcus agalactiae serotype IV (organism)','698174002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_698177009','698177009','http://snomed.info/sct','Streptococcus agalactiae serotype V (organism)','698177009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_698178004','698178004','http://snomed.info/sct','Streptococcus agalactiae serotype V/c (organism)','698178004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_698179007','698179007','http://snomed.info/sct','Streptococcus agalactiae serotype V/R (organism)','698179007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_698180005','698180005','http://snomed.info/sct','Streptococcus agalactiae serotype VII (organism)','698180005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_698181009','698181009','http://snomed.info/sct','Streptococcus agalactiae serotype VIII (organism)','698181009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_707632005','707632005','http://snomed.info/sct','Ribosomal ribonucleic acid of Bartonella quintana (substance)','707632005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_708155007','708155007','http://snomed.info/sct','Deoxyribonucleic acid of Bartonella henselae (substance)','708155007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_708437008','708437008','http://snomed.info/sct','Deoxyribonucleic acid of Streptococcus agalactiae (substance)','708437008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_713924007','713924007','http://snomed.info/sct','Non-hemolytic Streptococcus agalactiae (organism)','713924007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_715357003','715357003','http://snomed.info/sct','Streptococcus agalactiae serotype VI (organism)','715357003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_715358008','715358008','http://snomed.info/sct','Streptococcus agalactiae serotype IX (organism)','715358008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_76327009','76327009','http://snomed.info/sct','Borrelia burgdorferi (organism)','76327009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_77199003','77199003','http://snomed.info/sct','Rickettsia montanensis (organism)','77199003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_85288000','85288000','http://snomed.info/sct','Rickettsia sibirica (organism)','85288000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_85738007','85738007','http://snomed.info/sct','Rickettsia parkeri (organism)','85738007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_113858008','113858008','http://snomed.info/sct','Mycobacterium tuberculosis complex (organism)','113858008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_117187006','117187006','http://snomed.info/sct','Ribosomal ribonucleic acid of Listeria monocytogenes (substance)','117187006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_36094007','36094007','http://snomed.info/sct','Listeria monocytogenes (organism)','36094007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_450536000','450536000','http://snomed.info/sct','Listeria monocytogenes serotype 1/2a (organism)','450536000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_450537009','450537009','http://snomed.info/sct','Listeria monocytogenes serotype 1/2b (organism)','450537009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_450538004','450538004','http://snomed.info/sct','Listeria monocytogenes serotype 1/2c (organism)','450538004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_450539007','450539007','http://snomed.info/sct','Listeria monocytogenes serotype 4b (organism)','450539007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_450540009','450540009','http://snomed.info/sct','Listeria monocytogenes serotype 3a (organism)','450540009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_450541008','450541008','http://snomed.info/sct','Listeria monocytogenes serotype 3b (organism)','450541008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_450542001','450542001','http://snomed.info/sct','Listeria monocytogenes serotype 3c (organism)','450542001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_450543006','450543006','http://snomed.info/sct','Listeria monocytogenes serotype 4a (organism)','450543006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_450544000','450544000','http://snomed.info/sct','Listeria monocytogenes serotype 4c (organism)','450544000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_450545004','450545004','http://snomed.info/sct','Listeria monocytogenes serotype 4ab (organism)','450545004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_450546003','450546003','http://snomed.info/sct','Listeria monocytogenes serotype 4d (organism)','450546003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_450547007','450547007','http://snomed.info/sct','Listeria monocytogenes serotype 4e (organism)','450547007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_450548002','450548002','http://snomed.info/sct','Listeria monocytogenes serotype 7 (organism)','450548002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_698150000','698150000','http://snomed.info/sct','Listeria monocytogenes serotype 4bx (organism)','698150000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_708345004','708345004','http://snomed.info/sct','Deoxyribonucleic acid of Listeria monocytogenes (substance)','708345004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1712_103510000','103510000','http://snomed.info/sct','Bartonella henselae (organism)','103510000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1272_708154006','708154006','http://snomed.info/sct','Deoxyribonucleic acid of Balamuthia mandrillaris (substance)','708154006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1272_115635005','115635005','http://snomed.info/sct','Balamuthia mandrillaris (organism)','115635005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.275_103441001','103441001','http://snomed.info/sct','Haemophilus influenzae type a (organism)','103441001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.275_103442008','103442008','http://snomed.info/sct','Haemophilus influenzae type b (organism)','103442008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.275_103443003','103443003','http://snomed.info/sct','Haemophilus influenzae type c (organism)','103443003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.275_103444009','103444009','http://snomed.info/sct','Haemophilus influenzae type d (organism)','103444009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.275_103445005','103445005','http://snomed.info/sct','Haemophilus influenzae type e (organism)','103445005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.275_103446006','103446006','http://snomed.info/sct','Haemophilus influenzae type f (organism)','103446006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.275_115407004','115407004','http://snomed.info/sct','Haemophilus influenzae, not b (organism)','115407004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.275_120975003','120975003','http://snomed.info/sct','Antigen of Haemophilus influenzae type b (substance)','120975003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.275_121021004','121021004','http://snomed.info/sct','Antigen of Haemophilus influenzae type a (substance)','121021004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.275_121076006','121076006','http://snomed.info/sct','Antigen of Haemophilus influenzae type c (substance)','121076006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.275_121078007','121078007','http://snomed.info/sct','Antigen of Haemophilus influenzae type e (substance)','121078007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.275_121085006','121085006','http://snomed.info/sct','Antigen of Haemophilus influenzae type d (substance)','121085006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.275_121090009','121090009','http://snomed.info/sct','Antigen of Haemophilus influenzae type f (substance)','121090009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.275_121111005','121111005','http://snomed.info/sct','Ribosomal ribonucleic acid of Haemophilus influenzae (substance)','121111005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.275_127505006','127505006','http://snomed.info/sct','Haemophilus influenzae, biotype I (organism)','127505006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.275_127506007','127506007','http://snomed.info/sct','Haemophilus influenzae, biotype II (organism)','127506007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.275_127507003','127507003','http://snomed.info/sct','Haemophilus influenzae, biotype III (organism)','127507003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.275_127508008','127508008','http://snomed.info/sct','Haemophilus influenzae, biotype IV (organism)','127508008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.275_127509000','127509000','http://snomed.info/sct','Haemophilus influenzae, biotype V (organism)','127509000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.275_127510005','127510005','http://snomed.info/sct','Haemophilus influenzae, biotype VI (organism)','127510005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.275_127511009','127511009','http://snomed.info/sct','Haemophilus influenzae, biotype VII (organism)','127511009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.275_127512002','127512002','http://snomed.info/sct','Haemophilus influenzae, biotype VIII (organism)','127512002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.275_44470000','44470000','http://snomed.info/sct','Haemophilus influenzae (organism)','44470000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.275_708275006','708275006','http://snomed.info/sct','Deoxyribonucleic acid of Haemophilus influenzae type a (substance)','708275006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.275_708277003','708277003','http://snomed.info/sct','Deoxyribonucleic acid of Haemophilus influenzae type b (substance)','708277003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.275_708278008','708278008','http://snomed.info/sct','Deoxyribonucleic acid of Haemophilus influenzae (substance)','708278008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.275_709390001','709390001','http://snomed.info/sct','Antigen of Haemophilus influenzae (substance)','709390001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.275_722351007','722351007','http://snomed.info/sct','Haemophilus influenzae, beta lactamase negative (organism)','722351007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.275_722353005','722353005','http://snomed.info/sct','Haemophilus influenzae, beta lactamase positive (organism)','722353005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.275_726495003','726495003','http://snomed.info/sct','Ampicillin resistant Haemophilus influenzae (organism)','726495003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1036_414811005','414811005','http://snomed.info/sct','Neisseria species not Neisseria gonococci (organism)','414811005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1036_59083001','59083001','http://snomed.info/sct','Genus Neisseria (organism)','59083001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1036_715869002','715869002','http://snomed.info/sct','Neisseria species, not Neisseria meningitidis (organism)','715869002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1036_715872009','715872009','http://snomed.info/sct','Neisseria species, not Neisseria gonorrhoeae and not Neisseria meningitidis (organism)','715872009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1674_1085401000112103','1085401000112103','http://snomed.info/sct','Carbapenemase-producing Acinetobacter baumannii-Acinetobacter calcoaceticus complex (organism)','1085401000112103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1674_737526007','737526007','http://snomed.info/sct','Carbapenemase-producing Acinetobacter baumannii (organism)','737526007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_707924004','707924004','http://snomed.info/sct','Ribonucleic acid of Influenza virus A swine origin (substance)','707924004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_121006005','121006005','http://snomed.info/sct','Antigen of Influenza A virus (substance)','121006005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_161000124103','161000124103','http://snomed.info/sct','Influenza A virus subtype H1 swine-like (organism)','161000124103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_181000124108','181000124108','http://snomed.info/sct','Influenza A virus present (finding)','181000124108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_221000124104','221000124104','http://snomed.info/sct','Influenza A virus subtype H1 2009 pandemic strain (organism)','221000124104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_231000124101','231000124101','http://snomed.info/sct','Influenza A virus subtype H1 2009 pandemic strain present (finding)','231000124101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_25371000087106','25371000087106','http://snomed.info/sct','Antigen of Influenza A virus subtype H3N2 (substance)','25371000087106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_359829002','359829002','http://snomed.info/sct','Influenzavirus, type A, avian (organism)','359829002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_359833009','359833009','http://snomed.info/sct','Influenzavirus, type A, porcine (organism)','359833009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_389069008','389069008','http://snomed.info/sct','Avian influenza virus, low pathogenic (organism)','389069008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_389070009','389070009','http://snomed.info/sct','Avian influenza virus, highly pathogenic (organism)','389070009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_407477006','407477006','http://snomed.info/sct','Genus Alphainfluenzavirus (organism)','407477006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_407479009','407479009','http://snomed.info/sct','Influenza A virus (organism)','407479009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_420362005','420362005','http://snomed.info/sct','Influenzavirus type A, avian, H1N1 strain (organism)','420362005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_420508007','420508007','http://snomed.info/sct','Influenzavirus type A, avian, H3N2 strain (organism)','420508007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_421539000','421539000','http://snomed.info/sct','Influenzavirus type A, avian, H1N2 strain (organism)','421539000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_429401000124105','429401000124105','http://snomed.info/sct','Influenza A virus subtype H3N2 variant (organism)','429401000124105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_440927002','440927002','http://snomed.info/sct','Influenza A virus subtype H2 present (finding)','440927002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_441043003','441043003','http://snomed.info/sct','Influenza A virus subtype H1 present (finding)','441043003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_441049004','441049004','http://snomed.info/sct','Influenza A virus subtype H3 present (finding)','441049004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_442269004','442269004','http://snomed.info/sct','Antigen of Influenza A virus subtype H1N1 (substance)','442269004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_442352004','442352004','http://snomed.info/sct','Influenza A virus subtype H1N1 (organism)','442352004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_446396002','446396002','http://snomed.info/sct','Influenza A virus subtype H1 (organism)','446396002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_446524007','446524007','http://snomed.info/sct','Influenza A virus A/Leningrad/621/86 (H1N1) (organism)','446524007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_446525008','446525008','http://snomed.info/sct','Influenza A virus A/Leningrad/624/86 (H1N1) (organism)','446525008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_446645007','446645007','http://snomed.info/sct','Influenza A virus subtype H3 (organism)','446645007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_446646008','446646008','http://snomed.info/sct','Influenza A virus subtype H3N2 (organism)','446646008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_447493004','447493004','http://snomed.info/sct','Influenza A virus A/Bangkok/1/79 (H3N2) (organism)','447493004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_447499000','447499000','http://snomed.info/sct','Influenza A virus A/Bangkok/2/79 (H3N2) (organism)','447499000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_447503006','447503006','http://snomed.info/sct','Influenza A virus A/Port Chalmers/1/73 (H3N2) (organism)','447503006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_447504000','447504000','http://snomed.info/sct','Influenza A virus A/Texas/1/77 (H3N2) (organism)','447504000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_447508002','447508002','http://snomed.info/sct','Influenza A virus A/Leningrad/385/80 (H3N2) (organism)','447508002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_447522002','447522002','http://snomed.info/sct','Influenza A virus A/Mississippi/1/85 (H3N2) (organism)','447522002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_447530001','447530001','http://snomed.info/sct','Influenza A virus A/Philippines/2/82 (H3N2) (organism)','447530001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_447573005','447573005','http://snomed.info/sct','Influenza A virus A/England/42/72 (H3N2) (organism)','447573005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_447578001','447578001','http://snomed.info/sct','Influenza A virus A/Hong Kong/1/68 (H3N2) (organism)','447578001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_447587005','447587005','http://snomed.info/sct','Influenza A virus A/Victoria/3/75 (H3N2) (organism)','447587005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_448803002','448803002','http://snomed.info/sct','Influenza A virus subtype N1 (organism)','448803002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_448835002','448835002','http://snomed.info/sct','Influenza A virus subtype N2 (organism)','448835002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_449024000','449024000','http://snomed.info/sct','Pandemic Influenza A (H1N1) 2009 (organism)','449024000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_450480003','450480003','http://snomed.info/sct','Influenza A virus subtype H3N2v (organism)','450480003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_699872005','699872005','http://snomed.info/sct','Influenza A virus untyped strain present (finding)','699872005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_702482001','702482001','http://snomed.info/sct','Influenza A H1N1 virus 2009 pandemic strain present (finding)','702482001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_707902004','707902004','http://snomed.info/sct','Ribonucleic acid of Influenza A virus H1N1 (substance)','707902004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_707903009','707903009','http://snomed.info/sct','Ribonucleic acid of Influenza A virus H1 (substance)','707903009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_707905002','707905002','http://snomed.info/sct','Ribonucleic acid of Influenza A virus H3 (substance)','707905002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_707913001','707913001','http://snomed.info/sct','Ribonucleic acid of Influenza A virus hemagglutinin (substance)','707913001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_707914007','707914007','http://snomed.info/sct','Ribonucleic acid of Influenza A virus matrix protein (substance)','707914007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_707915008','707915008','http://snomed.info/sct','Ribonucleic acid of Influenza A virus N1 (substance)','707915008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_707916009','707916009','http://snomed.info/sct','Ribonucleic acid of Influenza A virus N2 (substance)','707916009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_707917000','707917000','http://snomed.info/sct','Ribonucleic acid of Influenza A virus neuraminidase (substance)','707917000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_707918005','707918005','http://snomed.info/sct','Ribonucleic acid of Influenza A virus non-structural protein (substance)','707918005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_707919002','707919002','http://snomed.info/sct','Ribonucleic acid of Influenza A virus nucleoprotein (substance)','707919002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_707920008','707920008','http://snomed.info/sct','Ribonucleic acid of Influenza A virus polymerase A (substance)','707920008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_707921007','707921007','http://snomed.info/sct','Ribonucleic acid of Influenza A virus polymerase B2 (substance)','707921007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_707922000','707922000','http://snomed.info/sct','Ribonucleic acid of Influenza A virus polymerase (substance)','707922000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_707923005','707923005','http://snomed.info/sct','Ribonucleic acid of Influenza A virus (substance)','707923005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_709361007','709361007','http://snomed.info/sct','Antigen of Influenza A virus subtype H1 (substance)','709361007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_709362000','709362000','http://snomed.info/sct','Antigen of Influenza A virus subtype H3 (substance)','709362000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_711330007','711330007','http://snomed.info/sct','Influenza A virus subtype H1N1 detected (finding)','711330007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_715333003','715333003','http://snomed.info/sct','Influenza A virus, not subtype H1N1 (organism)','715333003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_720272003','720272003','http://snomed.info/sct','Antigen of Porcine Influenza A virus (substance)','720272003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_720313003','720313003','http://snomed.info/sct','Antigen to Swine influenza virus (substance)','720313003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_772807005','772807005','http://snomed.info/sct','Influenza A virus subtype H3N8 (organism)','772807005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_772809008','772809008','http://snomed.info/sct','Influenza A virus subtype H1N2 (organism)','772809008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_1011000124101','1011000124101','http://snomed.info/sct','Influenza A virus subtype H5 asian strain detected (finding)','1011000124101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_421264001','421264001','http://snomed.info/sct','Influenzavirus type A, avian, H5N1 strain (organism)','421264001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_441343005','441343005','http://snomed.info/sct','Influenza A virus subtype H5 present (finding)','441343005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_446397006','446397006','http://snomed.info/sct','Influenza A virus subtype H2 (organism)','446397006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_446647004','446647004','http://snomed.info/sct','Influenza A virus subtype H5 (organism)','446647004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_446648009','446648009','http://snomed.info/sct','Influenza A virus subtype H7 (organism)','446648009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_446649001','446649001','http://snomed.info/sct','Influenza A virus subtype H9 (organism)','446649001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_448325003','448325003','http://snomed.info/sct','Influenza A virus subtype H9N2 (organism)','448325003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_609444009','609444009','http://snomed.info/sct','Influenza A virus subtype H7N9 (organism)','609444009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_700349009','700349009','http://snomed.info/sct','Influenza A virus subtype H10 (organism)','700349009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_700350009','700350009','http://snomed.info/sct','Influenza A virus subtype H10N8 (organism)','700350009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_707904003','707904003','http://snomed.info/sct','Ribonucleic acid of Influenza A virus H2 (substance)','707904003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_707906001','707906001','http://snomed.info/sct','Ribonucleic acid of Influenza A virus H5 Asian lineage (substance)','707906001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_707907005','707907005','http://snomed.info/sct','Ribonucleic acid of Influenza A virus H5 (substance)','707907005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_707908000','707908000','http://snomed.info/sct','Ribonucleic acid of Influenza A virus H5a (substance)','707908000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_707909008','707909008','http://snomed.info/sct','Ribonucleic acid of Influenza A virus H5b (substance)','707909008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_707910003','707910003','http://snomed.info/sct','Ribonucleic acid of Influenza A virus H6 (substance)','707910003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_707911004','707911004','http://snomed.info/sct','Ribonucleic acid of Influenza A virus H7 (substance)','707911004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_707912006','707912006','http://snomed.info/sct','Ribonucleic acid of Influenza A virus H9 (substance)','707912006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_708119004','708119004','http://snomed.info/sct','Influenza A virus subtype H7 present (finding)','708119004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_708120005','708120005','http://snomed.info/sct','Influenza A virus subtype H9 present (finding)','708120005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_708527000','708527000','http://snomed.info/sct','Influenza A virus subtype H5N8 (organism)','708527000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_715346008','715346008','http://snomed.info/sct','Influenza A virus subtype H7N7 (organism)','715346008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_715347004','715347004','http://snomed.info/sct','Influenza A virus subtype H7N3 (organism)','715347004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_715348009','715348009','http://snomed.info/sct','Influenza A virus subtype H7N2 (organism)','715348009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_715349001','715349001','http://snomed.info/sct','Influenza A virus subtype H2N2 (organism)','715349001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_715350001','715350001','http://snomed.info/sct','Influenza A virus subtype H10N7 (organism)','715350001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_715870001','715870001','http://snomed.info/sct','Influenza A virus, not subtype H1 and not subtype H3 (organism)','715870001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_772827006','772827006','http://snomed.info/sct','Influenza A virus subtype H5N1 (organism)','772827006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.795_871771002','871771002','http://snomed.info/sct','Antigen of Influenza A virus subtype H5N1 (substance)','871771002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1156_1108501000112102','1108501000112102','http://snomed.info/sct','Borderline oxacillin-resistant Staphylococcus aureus (organism)','1108501000112102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1156_113961008','113961008','http://snomed.info/sct','Staphylococcus aureus ss aureus (organism)','113961008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1156_117269003','117269003','http://snomed.info/sct','Ribosomal ribonucleic acid of Staphylococcus aureus (substance)','117269003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1156_3092008','3092008','http://snomed.info/sct','Staphylococcus aureus (organism)','3092008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1156_417943000','417943000','http://snomed.info/sct','Methicillin susceptible Staphylococcus aureus (organism)','417943000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1156_418595000','418595000','http://snomed.info/sct','Staphylococcus aureus enterotoxin G (substance)','418595000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1156_418864000','418864000','http://snomed.info/sct','Staphylococcus aureus enterotoxin C (substance)','418864000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1156_418911003','418911003','http://snomed.info/sct','Staphylococcus aureus enterotoxin (substance)','418911003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1156_418950004','418950004','http://snomed.info/sct','Staphylococcus aureus enterotoxin A (substance)','418950004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1156_419175007','419175007','http://snomed.info/sct','Staphylococcus aureus enterotoxin D (substance)','419175007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1156_444684000','444684000','http://snomed.info/sct','Staphylococcus aureus enterotoxin E (substance)','444684000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1156_44651000087108','44651000087108','http://snomed.info/sct','Staphylococcus aureus complex (organism)','44651000087108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1156_50269000','50269000','http://snomed.info/sct','Staphylococcus aureus ss. anaerobius (organism)','50269000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1156_698216001','698216001','http://snomed.info/sct','Vancomycin susceptible Staphylococcus aureus (organism)','698216001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1156_708429000','708429000','http://snomed.info/sct','Deoxyribonucleic acid of Staphylococcus aureus (substance)','708429000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1156_710564002','710564002','http://snomed.info/sct','Panton-Valentine leukocidin producing Staphylococcus aureus (organism)','710564002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1156_711317006','711317006','http://snomed.info/sct','Staphylococcus aureus toxic shock syndrome toxin 1 (substance)','711317006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1156_782499002','782499002','http://snomed.info/sct','Staphylococcus aureus toxin (substance)','782499002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1156_419488004','419488004','http://snomed.info/sct','Staphylococcus aureus enterotoxin B (substance)','419488004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1398_34212000','34212000','http://snomed.info/sct','Colorado tick fever virus (organism)','34212000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1673_715174007','715174007','http://snomed.info/sct','Carbapenem resistant Acinetobacter baumannii (organism)','715174007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1673_816084004','816084004','http://snomed.info/sct','Carbapenem-resistant Acinetobacter baumannii-calcoaceticus complex (organism)','816084004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1794_417443008','417443008','http://snomed.info/sct','Klebsiella granulomatis (organism)','417443008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.312_120998006','120998006','http://snomed.info/sct','Antigen of Rubella virus (substance)','120998006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.312_425415004','425415004','http://snomed.info/sct','Rubella virus genotype 1B (organism)','425415004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.312_425872000','425872000','http://snomed.info/sct','Rubella virus genotype 1a (organism)','425872000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.312_425891000','425891000','http://snomed.info/sct','Rubella virus genotype 2A (organism)','425891000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.312_426085007','426085007','http://snomed.info/sct','Rubella virus genotype 1E (organism)','426085007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.312_426209008','426209008','http://snomed.info/sct','Rubella virus genotype 1G (organism)','426209008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.312_426367009','426367009','http://snomed.info/sct','Rubella virus genotype 1F (organism)','426367009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.312_426612000','426612000','http://snomed.info/sct','Rubella virus genotype 2B (organism)','426612000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.312_427329000','427329000','http://snomed.info/sct','Rubella virus genotype 2C (organism)','427329000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.312_427398000','427398000','http://snomed.info/sct','Rubella virus genotype 1C (organism)','427398000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.312_427559006','427559006','http://snomed.info/sct','Rubella virus genotype 1D (organism)','427559006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.312_5210005','5210005','http://snomed.info/sct','Rubella virus (organism)','5210005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.312_698201004','698201004','http://snomed.info/sct','Rubella virus genotype 1H (organism)','698201004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.312_698202006','698202006','http://snomed.info/sct','Rubella virus genotype 1I (organism)','698202006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.312_698203001','698203001','http://snomed.info/sct','Rubella virus genotype 1J (organism)','698203001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.312_707526006','707526006','http://snomed.info/sct','Ribonucleic acid of Rubella virus (substance)','707526006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.554_43454006','43454006','http://snomed.info/sct','Treponema pallidum ss. pallidum (organism)','43454006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.554_44106000','44106000','http://snomed.info/sct','Treponema pallidum ss. endemicum (organism)','44106000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.554_6246005','6246005','http://snomed.info/sct','Treponema pallidum ss. pertenue (organism)','6246005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.554_707439008','707439008','http://snomed.info/sct','Antigen of Treponema pallidum (substance)','707439008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.554_708462008','708462008','http://snomed.info/sct','Deoxyribonucleic acid of Treponema pallidum (substance)','708462008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.554_72904005','72904005','http://snomed.info/sct','Treponema pallidum (organism)','72904005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.796_1011000124101','1011000124101','http://snomed.info/sct','Influenza A virus subtype H5 asian strain detected (finding)','1011000124101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.796_421264001','421264001','http://snomed.info/sct','Influenzavirus type A, avian, H5N1 strain (organism)','421264001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.796_441343005','441343005','http://snomed.info/sct','Influenza A virus subtype H5 present (finding)','441343005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.796_446397006','446397006','http://snomed.info/sct','Influenza A virus subtype H2 (organism)','446397006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.796_446647004','446647004','http://snomed.info/sct','Influenza A virus subtype H5 (organism)','446647004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.796_446648009','446648009','http://snomed.info/sct','Influenza A virus subtype H7 (organism)','446648009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.796_446649001','446649001','http://snomed.info/sct','Influenza A virus subtype H9 (organism)','446649001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.796_448325003','448325003','http://snomed.info/sct','Influenza A virus subtype H9N2 (organism)','448325003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.796_609444009','609444009','http://snomed.info/sct','Influenza A virus subtype H7N9 (organism)','609444009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.796_700349009','700349009','http://snomed.info/sct','Influenza A virus subtype H10 (organism)','700349009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.796_700350009','700350009','http://snomed.info/sct','Influenza A virus subtype H10N8 (organism)','700350009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.796_707904003','707904003','http://snomed.info/sct','Ribonucleic acid of Influenza A virus H2 (substance)','707904003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.796_707906001','707906001','http://snomed.info/sct','Ribonucleic acid of Influenza A virus H5 Asian lineage (substance)','707906001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.796_707907005','707907005','http://snomed.info/sct','Ribonucleic acid of Influenza A virus H5 (substance)','707907005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.796_707908000','707908000','http://snomed.info/sct','Ribonucleic acid of Influenza A virus H5a (substance)','707908000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.796_707909008','707909008','http://snomed.info/sct','Ribonucleic acid of Influenza A virus H5b (substance)','707909008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.796_707910003','707910003','http://snomed.info/sct','Ribonucleic acid of Influenza A virus H6 (substance)','707910003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.796_707911004','707911004','http://snomed.info/sct','Ribonucleic acid of Influenza A virus H7 (substance)','707911004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.796_707912006','707912006','http://snomed.info/sct','Ribonucleic acid of Influenza A virus H9 (substance)','707912006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.796_708119004','708119004','http://snomed.info/sct','Influenza A virus subtype H7 present (finding)','708119004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.796_708120005','708120005','http://snomed.info/sct','Influenza A virus subtype H9 present (finding)','708120005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.796_708527000','708527000','http://snomed.info/sct','Influenza A virus subtype H5N8 (organism)','708527000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.796_715346008','715346008','http://snomed.info/sct','Influenza A virus subtype H7N7 (organism)','715346008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.796_715347004','715347004','http://snomed.info/sct','Influenza A virus subtype H7N3 (organism)','715347004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.796_715348009','715348009','http://snomed.info/sct','Influenza A virus subtype H7N2 (organism)','715348009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.796_715349001','715349001','http://snomed.info/sct','Influenza A virus subtype H2N2 (organism)','715349001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.796_715350001','715350001','http://snomed.info/sct','Influenza A virus subtype H10N7 (organism)','715350001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.796_715870001','715870001','http://snomed.info/sct','Influenza A virus, not subtype H1 and not subtype H3 (organism)','715870001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.796_772827006','772827006','http://snomed.info/sct','Influenza A virus subtype H5N1 (organism)','772827006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.796_871771002','871771002','http://snomed.info/sct','Antigen of Influenza A virus subtype H5N1 (substance)','871771002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_103429008','103429008','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O157:H7 (organism)','103429008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_116395006','116395006','http://snomed.info/sct','Enterohemorrhagic Escherichia coli (organism)','116395006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_124994003','124994003','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O157:non-motile (organism)','124994003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_255831002','255831002','http://snomed.info/sct','Verocytotoxin IIII (substance)','255831002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_255832009','255832009','http://snomed.info/sct','Verocytotoxin IIv (substance)','255832009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_255835006','255835006','http://snomed.info/sct','Shiga toxin (substance)','255835006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_285781008','285781008','http://snomed.info/sct','Verocytotoxin (substance)','285781008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_407159005','407159005','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O111:nonmotile (organism)','407159005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_407160000','407160000','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O111:H2 (organism)','407160000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_407166006','407166006','http://snomed.info/sct','Escherichia coli serogroup O157 (organism)','407166006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_407199008','407199008','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O55:H7 (organism)','407199008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_407222004','407222004','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O128:H2 (organism)','407222004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_407225002','407225002','http://snomed.info/sct','Enteropathogenic Escherichia coli, serotype O157:H45 (organism)','407225002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_407251000','407251000','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O1:nonmotile (organism)','407251000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_407253002','407253002','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O2:H6 (organism)','407253002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_407254008','407254008','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O2:H7 (organism)','407254008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_407256005','407256005','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O5:nonmotile (organism)','407256005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_407258006','407258006','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O9:nonmotile (organism)','407258006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_407260008','407260008','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O14:nonmotile (organism)','407260008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_407262000','407262000','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O22:H5 (organism)','407262000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_407263005','407263005','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O22:H8 (organism)','407263005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_407264004','407264004','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O26:nonmotile (organism)','407264004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_407265003','407265003','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O26:H11 (organism)','407265003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_407267006','407267006','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O45:H2 (organism)','407267006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_407269009','407269009','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O48:H21 (organism)','407269009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_407271009','407271009','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O50:H7 (organism)','407271009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_407273007','407273007','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O79:H7 (organism)','407273007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_407275000','407275000','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O83:H1 (organism)','407275000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_407277008','407277008','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O91:nonmotile (organism)','407277008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_407278003','407278003','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O91:H10 (organism)','407278003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_407279006','407279006','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O91:H21 (organism)','407279006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_407281008','407281008','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O103:H2 (organism)','407281008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_407283006','407283006','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O104:nonmotile (organism)','407283006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_407284000','407284000','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O104:H21 (organism)','407284000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_407285004','407285004','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O111:H8 (organism)','407285004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_407287007','407287007','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O113:H21 (organism)','407287007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_407289005','407289005','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O118:H2 (organism)','407289005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_407290001','407290001','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O118:H12 (organism)','407290001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_407291002','407291002','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O118:H16 (organism)','407291002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_407293004','407293004','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O121:H19 (organism)','407293004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_407294005','407294005','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O128:nonmotile (organism)','407294005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_407295006','407295006','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O128:H45 (organism)','407295006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_407297003','407297003','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O137:H41 (organism)','407297003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_407299000','407299000','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O145:nonmotile (organism)','407299000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_407300008','407300008','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O153:H2 (organism)','407300008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_407301007','407301007','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O153:H25 (organism)','407301007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_407303005','407303005','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O163:H19 (organism)','407303005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_407305003','407305003','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O165:nonmotile (organism)','407305003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_407306002','407306002','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O165:H25 (organism)','407306002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_407308001','407308001','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O172:nonmotile (organism)','407308001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_407310004','407310004','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O rough:H9 (organism)','407310004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_448711000124108','448711000124108','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O132 (organism)','448711000124108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_448721000124100','448721000124100','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O78 (organism)','448721000124100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_457907005','457907005','http://snomed.info/sct','Escherichia coli serotype O157:nonmotile (organism)','457907005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_457914007','457914007','http://snomed.info/sct','Escherichia coli serotype O157:H7 (organism)','457914007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_457923005','457923005','http://snomed.info/sct','Escherichia coli serotype O157:H45 (organism)','457923005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_457930004','457930004','http://snomed.info/sct','Escherichia coli serotype O157:H29 (organism)','457930004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_457937001','457937001','http://snomed.info/sct','Escherichia coli serotype O157:H16 (organism)','457937001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_608774005','608774005','http://snomed.info/sct','Shiga toxin 1 (substance)','608774005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_608775006','608775006','http://snomed.info/sct','Shiga toxin 2 (substance)','608775006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_707500001','707500001','http://snomed.info/sct','Escherichia coli serotype O157:H19 (organism)','707500001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_708265008','708265008','http://snomed.info/sct','Deoxyribonucleic acid of Escherichia coli O157:H7 (substance)','708265008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_709385004','709385004','http://snomed.info/sct','Antigen of Escherichia coli O157 (substance)','709385004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_709386003','709386003','http://snomed.info/sct','Antigen of Escherichia coli O157:H7 (substance)','709386003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_709387007','709387007','http://snomed.info/sct','Antigen of Escherichia coli shiga toxin 1 (substance)','709387007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_709388002','709388002','http://snomed.info/sct','Antigen of Escherichia coli shiga toxin 2 (substance)','709388002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_709389005','709389005','http://snomed.info/sct','Antigen of Escherichia coli shiga toxin (substance)','709389005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_712611004','712611004','http://snomed.info/sct','Escherichia coli verotoxin (substance)','712611004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_712667007','712667007','http://snomed.info/sct','Shiga toxin 1 and Shiga toxin 2 detected (finding)','712667007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_713141005','713141005','http://snomed.info/sct','Escherichia coli serotype O157:H12 (organism)','713141005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_713416009','713416009','http://snomed.info/sct','Non-Shiga toxin-producing Escherichia coli, serotype O157:H7 (organism)','713416009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_715877003','715877003','http://snomed.info/sct','Enteropathogenic Escherichia coli, serogroup O157 (organism)','715877003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_733595003','733595003','http://snomed.info/sct','Enterohemorrhagic Escherichia coli serogroup O:nonmotile (organism)','733595003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_735270003','735270003','http://snomed.info/sct','Enterohemorrhagic Escherichia coli not O157:H7 (organism)','735270003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_773751004','773751004','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O123:H2 (organism)','773751004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782208003','782208003','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O28 (organism)','782208003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782209006','782209006','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O40 (organism)','782209006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782210001','782210001','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O50 (organism)','782210001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782217003','782217003','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O127 (organism)','782217003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782219000','782219000','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O17 (organism)','782219000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782220006','782220006','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O21 (organism)','782220006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782221005','782221005','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O22 (organism)','782221005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782223008','782223008','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O24 (organism)','782223008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782225001','782225001','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O49 (organism)','782225001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782226000','782226000','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O1 (organism)','782226000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782227009','782227009','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O2 (organism)','782227009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782228004','782228004','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O3 (organism)','782228004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782229007','782229007','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O5 (organism)','782229007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782231003','782231003','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O6 (organism)','782231003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782232005','782232005','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O8 (organism)','782232005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782233000','782233000','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O9 (organism)','782233000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782234006','782234006','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O11 (organism)','782234006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782236008','782236008','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O12 (organism)','782236008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782237004','782237004','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O14 (organism)','782237004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782239001','782239001','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O149 (organism)','782239001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782240004','782240004','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O151 (organism)','782240004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782241000','782241000','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O152 (organism)','782241000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782242007','782242007','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O153 (organism)','782242007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782243002','782243002','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O156 (organism)','782243002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782244008','782244008','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O162 (organism)','782244008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782245009','782245009','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O163 (organism)','782245009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782246005','782246005','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O165 (organism)','782246005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782247001','782247001','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O55 (organism)','782247001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782248006','782248006','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O69 (organism)','782248006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782249003','782249003','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O175 (organism)','782249003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782250003','782250003','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O177 (organism)','782250003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782252006','782252006','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O178 (organism)','782252006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782253001','782253001','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O181 (organism)','782253001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782254007','782254007','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O186 (organism)','782254007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782255008','782255008','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O74 (organism)','782255008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782256009','782256009','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O76 (organism)','782256009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782257000','782257000','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O77 (organism)','782257000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782258005','782258005','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O79 (organism)','782258005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782259002','782259002','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O80 (organism)','782259002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782260007','782260007','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O104 (organism)','782260007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782261006','782261006','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O109 (organism)','782261006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782262004','782262004','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O110 (organism)','782262004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782263009','782263009','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O112 (organism)','782263009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782265002','782265002','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O113 (organism)','782265002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782266001','782266001','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O115 (organism)','782266001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782267005','782267005','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O118 (organism)','782267005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782268000','782268000','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O70 (organism)','782268000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782269008','782269008','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O71 (organism)','782269008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782270009','782270009','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O73 (organism)','782270009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782274000','782274000','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O128 (organism)','782274000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782275004','782275004','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O130 (organism)','782275004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782276003','782276003','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O131 (organism)','782276003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782277007','782277007','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O137 (organism)','782277007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782278002','782278002','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O141 (organism)','782278002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782279005','782279005','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O146 (organism)','782279005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782280008','782280008','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O83 (organism)','782280008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782281007','782281007','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O88 (organism)','782281007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782282000','782282000','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O91 (organism)','782282000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782287006','782287006','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O169 (organism)','782287006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782288001','782288001','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O174 (organism)','782288001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782289009','782289009','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O119 (organism)','782289009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782290000','782290000','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O123 (organism)','782290000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782291001','782291001','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O126 (organism)','782291001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782292008','782292008','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O137:H6 (organism)','782292008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782293003','782293003','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O141:H49 (organism)','782293003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782294009','782294009','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O146:H21 (organism)','782294009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782297002','782297002','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O149:H49 (organism)','782297002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782298007','782298007','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O151:H2 (organism)','782298007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782299004','782299004','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O169:H11 (organism)','782299004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782300007','782300007','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O174:H2 (organism)','782300007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782301006','782301006','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O174:H21 (organism)','782301006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782302004','782302004','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O175:H10 (organism)','782302004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782303009','782303009','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O178:H19 (organism)','782303009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782304003','782304003','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O181:H4 (organism)','782304003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782305002','782305002','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O186:H2 (organism)','782305002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782306001','782306001','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O130:H11 (organism)','782306001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782307005','782307005','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O131:H27 (organism)','782307005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782308000','782308000','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O146:H28 (organism)','782308000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782312006','782312006','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O156:H25 (organism)','782312006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782313001','782313001','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O162:H33 (organism)','782313001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782314007','782314007','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O70:H11 (organism)','782314007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782315008','782315008','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O71:H7 (organism)','782315008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782317000','782317000','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O71:H11 (organism)','782317000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782318005','782318005','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O1:H20 (organism)','782318005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782319002','782319002','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O3:H8 (organism)','782319002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782320008','782320008','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O6:H34 (organism)','782320008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782323005','782323005','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O8:H19 (organism)','782323005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782324004','782324004','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O11:H16 (organism)','782324004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782328001','782328001','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O103:H11 (organism)','782328001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782341002','782341002','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O103:H25 (organism)','782341002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782342009','782342009','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O104:H7 (organism)','782342009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782343004','782343004','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O17:H45 (organism)','782343004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782344005','782344005','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O21:H55 (organism)','782344005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782345006','782345006','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O24:H41 (organism)','782345006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782346007','782346007','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O28:H9 (organism)','782346007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782347003','782347003','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O40:H10 (organism)','782347003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782348008','782348008','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O49:H21 (organism)','782348008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782349000','782349000','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O69:H11 (organism)','782349000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782350000','782350000','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O151:H16 (organism)','782350000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782351001','782351001','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O152:H2 (organism)','782351001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782352008','782352008','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O109:H21 (organism)','782352008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782353003','782353003','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O110:H28 (organism)','782353003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782354009','782354009','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O111:H11 (organism)','782354009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782355005','782355005','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O112:H2 (organism)','782355005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782356006','782356006','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O115:H10 (organism)','782356006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782357002','782357002','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O123:H11 (organism)','782357002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782358007','782358007','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O126:H27 (organism)','782358007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782359004','782359004','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O126:H40 (organism)','782359004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782360009','782360009','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O127:H16 (organism)','782360009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782361008','782361008','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O128:H45 (organism)','782361008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782362001','782362001','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O73:H18 (organism)','782362001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782363006','782363006','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O74:H52 (organism)','782363006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782364000','782364000','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O76:H7 (organism)','782364000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782365004','782365004','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O76:H19 (organism)','782365004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782366003','782366003','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O77:H45 (organism)','782366003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782367007','782367007','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O88:H25 (organism)','782367007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_782368002','782368002','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O91:H14 (organism)','782368002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_788035006','788035006','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O71:H8 (organism)','788035006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_792851007','792851007','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O121 (organism)','792851007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_792853005','792853005','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O145 (organism)','792853005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_792860004','792860004','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O111 (organism)','792860004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_792861000','792861000','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O103 (organism)','792861000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_792897009','792897009','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O45 (organism)','792897009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_792898004','792898004','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O26 (organism)','792898004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_792899007','792899007','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O157 (organism)','792899007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_838549008','838549008','http://snomed.info/sct','Shiga toxin-producing Escherichia coli (organism)','838549008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_840375007','840375007','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O100 (organism)','840375007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_840376008','840376008','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O108 (organism)','840376008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_840377004','840377004','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O142 (organism)','840377004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_840378009','840378009','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O148 (organism)','840378009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_840379001','840379001','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O150 (organism)','840379001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_840380003','840380003','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O159 (organism)','840380003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_840381004','840381004','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O160 (organism)','840381004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_840382006','840382006','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O176 (organism)','840382006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_840383001','840383001','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O20 (organism)','840383001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_840384007','840384007','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O27 (organism)','840384007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_840385008','840385008','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O29 (organism)','840385008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_840386009','840386009','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O38 (organism)','840386009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_840387000','840387000','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O42 (organism)','840387000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_840388005','840388005','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O44 (organism)','840388005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_840389002','840389002','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O48 (organism)','840389002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_840390006','840390006','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O60 (organism)','840390006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_840391005','840391005','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O63 (organism)','840391005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_840392003','840392003','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O64 (organism)','840392003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_840393008','840393008','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O75 (organism)','840393008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_840394002','840394002','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O81 (organism)','840394002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_840530005','840530005','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O85 (organism)','840530005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_840541007','840541007','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O53 (organism)','840541007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_840543005','840543005','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O144 (organism)','840543005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_840545003','840545003','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O167 (organism)','840545003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_96002002','96002002','http://snomed.info/sct','Verotoxin 1 (substance)','96002002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.435_96003007','96003007','http://snomed.info/sct','Verotoxin 2 (substance)','96003007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2001_243625005','243625005','http://snomed.info/sct','Lymphocytic choriomeningitis virus and Lassa complex (organism)','243625005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2001_707930004','707930004','http://snomed.info/sct','Ribonucleic acid of Lymphocytic choriomeningitis virus (substance)','707930004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2001_82518003','82518003','http://snomed.info/sct','Lymphocytic choriomeningitis virus (organism)','82518003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1155_840535000','840535000','http://snomed.info/sct','Antibody to severe acute respiratory syndrome coronavirus 2 (substance)','840535000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1155_870361009','870361009','http://snomed.info/sct','Immunoglobulin G antibody to severe acute respiratory syndrome coronavirus 2 (substance)','870361009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1155_870362002','870362002','http://snomed.info/sct','Immunoglobulin M antibody to severe acute respiratory syndrome coronavirus 2 (substance)','870362002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1155_871552002','871552002','http://snomed.info/sct','Detection of severe acute respiratory syndrome coronavirus 2 antibody (observable entity)','871552002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1155_897034005','897034005','http://snomed.info/sct','Severe acute respiratory syndrome coronavirus 2 antibody detected (finding)','897034005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1276_115250007','115250007','http://snomed.info/sct','Antigen of Histoplasma capsulatum (substance)','115250007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1276_115285007','115285007','http://snomed.info/sct','Exoantigen of Histoplasma capsulatum (substance)','115285007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1276_115320002','115320002','http://snomed.info/sct','Antigen of Histoplasma capsulatum H protein (substance)','115320002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1276_115321003','115321003','http://snomed.info/sct','Antigen of Histoplasma capsulatum M protein (substance)','115321003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1276_121114002','121114002','http://snomed.info/sct','Deoxyribonucleic acid of Histoplasma capsulatum (substance)','121114002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1276_121115001','121115001','http://snomed.info/sct','Ribosomal ribonucleic acid of Histoplasma capsulatum (substance)','121115001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1276_243509006','243509006','http://snomed.info/sct','Histoplasma capsulatum var capsulatum (organism)','243509006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1276_51208003','51208003','http://snomed.info/sct','Histoplasma farciminosus (organism)','51208003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1276_56596006','56596006','http://snomed.info/sct','Histoplasma capsulatum (organism)','56596006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1276_81951003','81951003','http://snomed.info/sct','Histoplasma (organism)','81951003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.559_121198000','121198000','http://snomed.info/sct','Ribonucleic acid of Yellow fever virus (substance)','121198000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.559_26630006','26630006','http://snomed.info/sct','Yellow fever virus (organism)','26630006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.559_713629004','713629004','http://snomed.info/sct','Antigen of Yellow fever virus (substance)','713629004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1671_447891000124105','447891000124105','http://snomed.info/sct','Multidrug resistant Acinetobacter baumannii (organism)','447891000124105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1671_708137003','708137003','http://snomed.info/sct','Deoxyribonucleic acid of Acinetobacter baumannii (substance)','708137003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1671_715353004','715353004','http://snomed.info/sct','Multiple drug-resistant Acinetobacter baumannii (organism)','715353004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1671_91288006','91288006','http://snomed.info/sct','Acinetobacter baumannii (organism)','91288006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1671_715174007','715174007','http://snomed.info/sct','Carbapenem resistant Acinetobacter baumannii (organism)','715174007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1671_816084004','816084004','http://snomed.info/sct','Carbapenem-resistant Acinetobacter baumannii-calcoaceticus complex (organism)','816084004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1671_1085401000112103','1085401000112103','http://snomed.info/sct','Carbapenemase-producing Acinetobacter baumannii-Acinetobacter calcoaceticus complex (organism)','1085401000112103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1671_737526007','737526007','http://snomed.info/sct','Carbapenemase-producing Acinetobacter baumannii (organism)','737526007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.318_26159005','26159005','http://snomed.info/sct','Clostridium tetani toxin (substance)','26159005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.318_30917009','30917009','http://snomed.info/sct','Clostridium tetani (organism)','30917009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.318_541000221109','541000221109','http://snomed.info/sct','Antigen of Clostridium tetani (substance)','541000221109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.439_115249007','115249007','http://snomed.info/sct','Antigen of Coccidioides immitis (substance)','115249007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.439_115284006','115284006','http://snomed.info/sct','Exoantigen of Coccidioides immitis (substance)','115284006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.439_121107004','121107004','http://snomed.info/sct','Ribosomal ribonucleic acid of Coccidioides immitis (substance)','121107004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.439_23439005','23439005','http://snomed.info/sct','Coccidioides immitis (organism)','23439005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.439_406645005','406645005','http://snomed.info/sct','Coccidioides posadasii (organism)','406645005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.439_414754009','414754009','http://snomed.info/sct','Mold resembling Coccidioides immitis (organism)','414754009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.439_435381000124105','435381000124105','http://snomed.info/sct','Coccidioides immitis/Coccidioides posadasii (organism)','435381000124105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.439_703020006','703020006','http://snomed.info/sct','Coccidioides immitis or Coccidioides posadasii (finding)','703020006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.439_707637004','707637004','http://snomed.info/sct','Ribosomal ribonucleic acid of Coccidioides (substance)','707637004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.439_8672004','8672004','http://snomed.info/sct','Coccidioides (organism)','8672004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1209_1093401000112101','1093401000112101','http://snomed.info/sct','Carbapenemase-producing Enterobacter (organism)','1093401000112101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1209_1093601000112103','1093601000112103','http://snomed.info/sct','Carbapenemase-producing Enterobacter asburiae (organism)','1093601000112103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1209_1094301000112105','1094301000112105','http://snomed.info/sct','Carbapenemase-producing Enterobacter hormaechei (organism)','1094301000112105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1209_1096801000112108','1096801000112108','http://snomed.info/sct','Carbapenemase-producing Klebsiella (organism)','1096801000112108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1209_1098201000112108','1098201000112108','http://snomed.info/sct','Carbapenemase-producing Klebsiella pneumoniae (organism)','1098201000112108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1209_734352006','734352006','http://snomed.info/sct','Carbapenemase-producing Klebsiella aerogenes (organism)','734352006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1209_734353001','734353001','http://snomed.info/sct','Carbapenemase-producing Enterobacter cloacae complex (organism)','734353001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1209_737528008','737528008','http://snomed.info/sct','Carbapenemase-producing Escherichia coli (organism)','737528008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1209_737529000','737529000','http://snomed.info/sct','Carbapenemase-producing Enterobacter cloacae (organism)','737529000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1209_713171002','713171002','http://snomed.info/sct','Klebsiella pneumoniae carbapenemase 2 producing Klebsiella pneumoniae (organism)','713171002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1208_446870005','446870005','http://snomed.info/sct','Carbapenem resistant Klebsiella pneumoniae (organism)','446870005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1208_714007005','714007005','http://snomed.info/sct','Carbapenem resistant Enterobacter cloacae (organism)','714007005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1208_715307006','715307006','http://snomed.info/sct','Carbapenem resistant Escherichia coli (organism)','715307006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1208_719792001','719792001','http://snomed.info/sct','Carbapenem resistant Klebsiella oxytoca (organism)','719792001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1208_734200008','734200008','http://snomed.info/sct','Carbapenem resistant Klebsiella aerogenes (organism)','734200008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1208_734201007','734201007','http://snomed.info/sct','Carbapenem resistant Enterobacter cloacae complex (organism)','734201007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1849_10113002','10113002','http://snomed.info/sct','Leishmania aethiopica (organism)','10113002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1849_15357009','15357009','http://snomed.info/sct','Leishmania rangeli (organism)','15357009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1849_16043006','16043006','http://snomed.info/sct','Leishmania donovani donovani (organism)','16043006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1849_21036002','21036002','http://snomed.info/sct','Leishmania panamensis (organism)','21036002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1849_243653005','243653005','http://snomed.info/sct','Leishmania tropica (organism)','243653005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1849_243654004','243654004','http://snomed.info/sct','Leishmania mexicana (organism)','243654004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1849_243655003','243655003','http://snomed.info/sct','Leishmania infantum (organism)','243655003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1849_243656002','243656002','http://snomed.info/sct','Leishmania chagasi (organism)','243656002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1849_243658001','243658001','http://snomed.info/sct','Leishmania peruviana (organism)','243658001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1849_264412009','264412009','http://snomed.info/sct','Leishmania garnhami (organism)','264412009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1849_264413004','264413004','http://snomed.info/sct','Leishmania guyanensis (organism)','264413004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1849_264415006','264415006','http://snomed.info/sct','Leishmania pifanoi (organism)','264415006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1849_26757000','26757000','http://snomed.info/sct','Leishmania mexicana enriettii (organism)','26757000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1849_27783004','27783004','http://snomed.info/sct','Leishmania mexicana mexicana (organism)','27783004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1849_33698003','33698003','http://snomed.info/sct','Leishmania hertigi (organism)','33698003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1849_35368002','35368002','http://snomed.info/sct','Leishmania donovani chagasi (organism)','35368002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1849_359783009','359783009','http://snomed.info/sct','Leishmania tropica minor (organism)','359783009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1849_389204007','389204007','http://snomed.info/sct','Leishmania tropica complex (organism)','389204007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1849_415989006','415989006','http://snomed.info/sct','Leishmania venezuelensis (organism)','415989006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1849_418644007','418644007','http://snomed.info/sct','Leishmania major-like (organism)','418644007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1849_44391009','44391009','http://snomed.info/sct','Leishmania mexicana garnhami (organism)','44391009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1849_51278002','51278002','http://snomed.info/sct','Leishmania major (organism)','51278002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1849_64604005','64604005','http://snomed.info/sct','Leishmania mexicana pifanoi (organism)','64604005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1849_65564009','65564009','http://snomed.info/sct','Leishmania mexicana complex (organism)','65564009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1849_699395009','699395009','http://snomed.info/sct','Trophozoite of genus Leishmania (organism)','699395009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1849_699412009','699412009','http://snomed.info/sct','Trophozoite of Leishmania tropica (organism)','699412009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1849_699413004','699413004','http://snomed.info/sct','Trophozoite of Leishmania donovani complex (organism)','699413004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1849_699414005','699414005','http://snomed.info/sct','Trophozoite of Leishmania braziliensis complex (organism)','699414005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1849_707643002','707643002','http://snomed.info/sct','Ribosomal ribonucleic acid of Leishmania (substance)','707643002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1849_708342001','708342001','http://snomed.info/sct','Deoxyribonucleic acid of Leishmania (substance)','708342001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1849_709242006','709242006','http://snomed.info/sct','Antigen of Leishmania donovani (substance)','709242006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1849_712933004','712933004','http://snomed.info/sct','Subgenus Leishmania Viannia (organism)','712933004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1849_73729000','73729000','http://snomed.info/sct','Leishmania donovani donovani (sensu lato) (organism)','73729000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1849_7400004','7400004','http://snomed.info/sct','Leishmania braziliensis complex (organism)','7400004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1849_79357004','79357004','http://snomed.info/sct','Leishmania (organism)','79357004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1849_79781008','79781008','http://snomed.info/sct','Leishmania donovani complex (organism)','79781008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1849_83196002','83196002','http://snomed.info/sct','Leishmania braziliensis (organism)','83196002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1849_86390008','86390008','http://snomed.info/sct','Leishmania donovani infantum (organism)','86390008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1849_86476009','86476009','http://snomed.info/sct','Leishmania mexicana venezuelensis (organism)','86476009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1849_89169008','89169008','http://snomed.info/sct','Leishmania mexicana amazonensis (organism)','89169008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1849_9318009','9318009','http://snomed.info/sct','Leishmania mexicana aristidesi (organism)','9318009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.828_16362001','16362001','http://snomed.info/sct','Human poliovirus 3 (organism)','16362001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.828_22580008','22580008','http://snomed.info/sct','Human poliovirus 1 (organism)','22580008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.828_44172002','44172002','http://snomed.info/sct','Human poliovirus (organism)','44172002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.828_55174004','55174004','http://snomed.info/sct','Human poliovirus 2 (organism)','55174004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.828_713616004','713616004','http://snomed.info/sct','Antigen of Human poliovirus (substance)','713616004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_10237005','10237005','http://snomed.info/sct','Human rhinovirus 81 (organism)','10237005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_11014004','11014004','http://snomed.info/sct','Human rhinovirus 102 (organism)','11014004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_112360006','112360006','http://snomed.info/sct','Human rhinovirus 45 (organism)','112360006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_112361005','112361005','http://snomed.info/sct','Human rhinovirus 62 (organism)','112361005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_112362003','112362003','http://snomed.info/sct','Human rhinovirus 101 (organism)','112362003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_117280003','117280003','http://snomed.info/sct','Ribonucleic acid of Rhinovirus (substance)','117280003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_11801001','11801001','http://snomed.info/sct','Human rhinovirus 105 (organism)','11801001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_12139008','12139008','http://snomed.info/sct','Human rhinovirus 97 (organism)','12139008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_12473007','12473007','http://snomed.info/sct','Human rhinovirus 94 (organism)','12473007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_12842000','12842000','http://snomed.info/sct','Human echovirus 21 (organism)','12842000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_14174008','14174008','http://snomed.info/sct','Human rhinovirus 88 (organism)','14174008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_15329002','15329002','http://snomed.info/sct','Human rhinovirus 110 (organism)','15329002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_15652005','15652005','http://snomed.info/sct','Human echovirus 13 (organism)','15652005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_1573008','1573008','http://snomed.info/sct','Human rhinovirus 9 (organism)','1573008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_15738003','15738003','http://snomed.info/sct','Human rhinovirus 90 (organism)','15738003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_16532006','16532006','http://snomed.info/sct','Human rhinovirus 34 (organism)','16532006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_16815003','16815003','http://snomed.info/sct','Human echovirus 5 (organism)','16815003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_17735001','17735001','http://snomed.info/sct','Human rhinovirus 87 (organism)','17735001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_17833003','17833003','http://snomed.info/sct','Human echovirus 31 (organism)','17833003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_17851002','17851002','http://snomed.info/sct','Human rhinovirus 2 (organism)','17851002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_17905002','17905002','http://snomed.info/sct','Human rhinovirus 93 (organism)','17905002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_18113003','18113003','http://snomed.info/sct','Human rhinovirus 32 (organism)','18113003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_1838001','1838001','http://snomed.info/sct','Human rhinovirus (organism)','1838001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_19219004','19219004','http://snomed.info/sct','Human rhinovirus 4 (organism)','19219004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_19319001','19319001','http://snomed.info/sct','Human echovirus 18 (organism)','19319001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_20398001','20398001','http://snomed.info/sct','Human rhinovirus 86 (organism)','20398001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_21206001','21206001','http://snomed.info/sct','Human echovirus 2 (organism)','21206001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_21490000','21490000','http://snomed.info/sct','Human rhinovirus 112 (organism)','21490000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_21722004','21722004','http://snomed.info/sct','Human rhinovirus 92 (organism)','21722004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_21813007','21813007','http://snomed.info/sct','Human echovirus 17 (organism)','21813007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_21938003','21938003','http://snomed.info/sct','Human rhinovirus 8 (organism)','21938003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_22521005','22521005','http://snomed.info/sct','Human rhinovirus 1A (organism)','22521005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_22958004','22958004','http://snomed.info/sct','Human rhinovirus 70 (organism)','22958004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_23912008','23912008','http://snomed.info/sct','Human rhinovirus 74 (organism)','23912008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_243633006','243633006','http://snomed.info/sct','Genus Enterovirus (organism)','243633006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_25009005','25009005','http://snomed.info/sct','Human rhinovirus 36 (organism)','25009005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_2503006','2503006','http://snomed.info/sct','Human rhinovirus 96 (organism)','2503006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_25070008','25070008','http://snomed.info/sct','Human rhinovirus 25 (organism)','25070008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_25330008','25330008','http://snomed.info/sct','Human rhinovirus 77 (organism)','25330008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_26162008','26162008','http://snomed.info/sct','Human rhinovirus 19 (organism)','26162008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_26314008','26314008','http://snomed.info/sct','Human rhinovirus 82 (organism)','26314008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_27028004','27028004','http://snomed.info/sct','Human rhinovirus 91 (organism)','27028004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_27164000','27164000','http://snomed.info/sct','Human rhinovirus 16 (organism)','27164000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_28650002','28650002','http://snomed.info/sct','Human rhinovirus 85 (organism)','28650002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_28775008','28775008','http://snomed.info/sct','Human rhinovirus 30 (organism)','28775008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_29324004','29324004','http://snomed.info/sct','Human rhinovirus 50 (organism)','29324004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_29569009','29569009','http://snomed.info/sct','Human rhinovirus 113 (organism)','29569009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_30154001','30154001','http://snomed.info/sct','Human echovirus 29 (organism)','30154001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_30718009','30718009','http://snomed.info/sct','Human rhinovirus 51 (organism)','30718009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_31183009','31183009','http://snomed.info/sct','Human echovirus 30 (organism)','31183009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_34632007','34632007','http://snomed.info/sct','Human echovirus 27 (organism)','34632007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_34910000','34910000','http://snomed.info/sct','Human rhinovirus 21 (organism)','34910000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_35161000','35161000','http://snomed.info/sct','Human rhinovirus 39 (organism)','35161000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_35320008','35320008','http://snomed.info/sct','Human rhinovirus 65 (organism)','35320008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_36204005','36204005','http://snomed.info/sct','Human echovirus 1 (organism)','36204005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_37137006','37137006','http://snomed.info/sct','Human rhinovirus 43 (organism)','37137006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_37870004','37870004','http://snomed.info/sct','Human echovirus 11 (organism)','37870004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_379004','379004','http://snomed.info/sct','Human rhinovirus 13 (organism)','379004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_38220007','38220007','http://snomed.info/sct','Human rhinovirus 72 (organism)','38220007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_38910005','38910005','http://snomed.info/sct','Human rhinovirus 53 (organism)','38910005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_39164004','39164004','http://snomed.info/sct','Human echovirus (organism)','39164004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_39440005','39440005','http://snomed.info/sct','Human rhinovirus 55 (organism)','39440005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_39456000','39456000','http://snomed.info/sct','Human rhinovirus 7 (organism)','39456000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_40803002','40803002','http://snomed.info/sct','Human rhinovirus 35 (organism)','40803002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_420854009','420854009','http://snomed.info/sct','Human rhinovirus 1 (organism)','420854009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_422298007','422298007','http://snomed.info/sct','Human rhinovirus A (organism)','422298007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_42414003','42414003','http://snomed.info/sct','Human rhinovirus 54 (organism)','42414003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_427004','427004','http://snomed.info/sct','Human echovirus 4 (organism)','427004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_42935008','42935008','http://snomed.info/sct','Human rhinovirus 33 (organism)','42935008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_43277008','43277008','http://snomed.info/sct','Human rhinovirus 107 (organism)','43277008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_43794009','43794009','http://snomed.info/sct','Human echovirus 3 (organism)','43794009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_440925005','440925005','http://snomed.info/sct','Human rhinovirus present (finding)','440925005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_441070005','441070005','http://snomed.info/sct','Human enterovirus present (finding)','441070005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_4433000','4433000','http://snomed.info/sct','Human echovirus 6 (organism)','4433000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_44781001','44781001','http://snomed.info/sct','Human rhinovirus 27 (organism)','44781001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_44802000','44802000','http://snomed.info/sct','Human rhinovirus 24 (organism)','44802000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_450869008','450869008','http://snomed.info/sct','Human rhinovirus B (organism)','450869008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_450870009','450870009','http://snomed.info/sct','Human rhinovirus C (organism)','450870009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_45843005','45843005','http://snomed.info/sct','Human rhinovirus 59 (organism)','45843005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_46301003','46301003','http://snomed.info/sct','Human rhinovirus 31 (organism)','46301003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_46486009','46486009','http://snomed.info/sct','Human rhinovirus 40 (organism)','46486009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_46498004','46498004','http://snomed.info/sct','Human rhinovirus 26 (organism)','46498004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_46506009','46506009','http://snomed.info/sct','Human echovirus 7 (organism)','46506009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_48476000','48476000','http://snomed.info/sct','Human rhinovirus 103 (organism)','48476000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_49323000','49323000','http://snomed.info/sct','Human rhinovirus 5 (organism)','49323000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_50346001','50346001','http://snomed.info/sct','Human echovirus 15 (organism)','50346001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_52857006','52857006','http://snomed.info/sct','Human rhinovirus 79 (organism)','52857006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_53038008','53038008','http://snomed.info/sct','Human echovirus 8 (organism)','53038008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_53778006','53778006','http://snomed.info/sct','Human rhinovirus 63 (organism)','53778006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_55504008','55504008','http://snomed.info/sct','Human rhinovirus 109 (organism)','55504008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_55935007','55935007','http://snomed.info/sct','Human rhinovirus 57 (organism)','55935007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_55969008','55969008','http://snomed.info/sct','Human rhinovirus 10 (organism)','55969008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_57785009','57785009','http://snomed.info/sct','Human rhinovirus 98 (organism)','57785009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_5811004','5811004','http://snomed.info/sct','Human rhinovirus 52 (organism)','5811004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_58657002','58657002','http://snomed.info/sct','Human echovirus 12 (organism)','58657002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_59056002','59056002','http://snomed.info/sct','Human echovirus 32 (organism)','59056002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_60066004','60066004','http://snomed.info/sct','Human echovirus 34 (organism)','60066004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_60087009','60087009','http://snomed.info/sct','Human rhinovirus 22 (organism)','60087009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_60174000','60174000','http://snomed.info/sct','Human rhinovirus 41 (organism)','60174000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_6060001','6060001','http://snomed.info/sct','Human rhinovirus 48 (organism)','6060001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_60847003','60847003','http://snomed.info/sct','Human rhinovirus 114 (organism)','60847003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_61173003','61173003','http://snomed.info/sct','Human rhinovirus 38 (organism)','61173003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_63648009','63648009','http://snomed.info/sct','Human rhinovirus 18 (organism)','63648009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_63828000','63828000','http://snomed.info/sct','Human rhinovirus 6 (organism)','63828000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_63928004','63928004','http://snomed.info/sct','Human rhinovirus 64 (organism)','63928004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_64016000','64016000','http://snomed.info/sct','Human rhinovirus 66 (organism)','64016000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_64409008','64409008','http://snomed.info/sct','Human rhinovirus 108 (organism)','64409008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_65080008','65080008','http://snomed.info/sct','Human rhinovirus 84 (organism)','65080008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_65831002','65831002','http://snomed.info/sct','Human rhinovirus 80 (organism)','65831002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_66581005','66581005','http://snomed.info/sct','Human rhinovirus 42 (organism)','66581005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_66619009','66619009','http://snomed.info/sct','Human echovirus 9 (organism)','66619009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_66942000','66942000','http://snomed.info/sct','Human rhinovirus 73 (organism)','66942000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_67180006','67180006','http://snomed.info/sct','Human rhinovirus 46 (organism)','67180006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_68016006','68016006','http://snomed.info/sct','Human rhinovirus 14 (organism)','68016006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_70075003','70075003','http://snomed.info/sct','Human rhinovirus 115 (organism)','70075003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_703015006','703015006','http://snomed.info/sct','Human coxsackievirus or human echovirus (finding)','703015006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_707881005','707881005','http://snomed.info/sct','Ribonucleic acid of Echovirus 11 (substance)','707881005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_707882003','707882003','http://snomed.info/sct','Ribonucleic acid of Echovirus 30 (substance)','707882003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_707883008','707883008','http://snomed.info/sct','Ribonucleic acid of Echovirus 4 (substance)','707883008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_70855006','70855006','http://snomed.info/sct','Human echovirus 16 (organism)','70855006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_713350004','713350004','http://snomed.info/sct','Human enterovirus not human enterovirus 71 (organism)','713350004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_71490002','71490002','http://snomed.info/sct','Human rhinovirus 67 (organism)','71490002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_716253006','716253006','http://snomed.info/sct','Human echovirus 10 (organism)','716253006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_716254000','716254000','http://snomed.info/sct','Human echovirus 22 (organism)','716254000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_716255004','716255004','http://snomed.info/sct','Human echovirus 23 (organism)','716255004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_7195006','7195006','http://snomed.info/sct','Human rhinovirus 56 (organism)','7195006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_73657004','73657004','http://snomed.info/sct','Human rhinovirus 58 (organism)','73657004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_74246005','74246005','http://snomed.info/sct','Human rhinovirus 20 (organism)','74246005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_74305002','74305002','http://snomed.info/sct','Human echovirus 14 (organism)','74305002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_74533001','74533001','http://snomed.info/sct','Human echovirus 20 (organism)','74533001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_74702001','74702001','http://snomed.info/sct','Human rhinovirus 106 (organism)','74702001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_75565006','75565006','http://snomed.info/sct','Human echovirus 25 (organism)','75565006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_75715004','75715004','http://snomed.info/sct','Human rhinovirus 61 (organism)','75715004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_766968000','766968000','http://snomed.info/sct','Antigen of Human rhinovirus (substance)','766968000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_76892004','76892004','http://snomed.info/sct','Human rhinovirus 11 (organism)','76892004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_76985005','76985005','http://snomed.info/sct','Human rhinovirus 89 (organism)','76985005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_77319008','77319008','http://snomed.info/sct','Human rhinovirus 29 (organism)','77319008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_77379003','77379003','http://snomed.info/sct','Human rhinovirus 37 (organism)','77379003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_7746003','7746003','http://snomed.info/sct','Human echovirus 24 (organism)','7746003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_79101004','79101004','http://snomed.info/sct','Human rhinovirus 47 (organism)','79101004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_79968007','79968007','http://snomed.info/sct','Human echovirus 33 (organism)','79968007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_80785003','80785003','http://snomed.info/sct','Human rhinovirus 49 (organism)','80785003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_81227000','81227000','http://snomed.info/sct','Human rhinovirus 83 (organism)','81227000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_81401002','81401002','http://snomed.info/sct','Human rhinovirus 99 (organism)','81401002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_81754003','81754003','http://snomed.info/sct','Human rhinovirus 111 (organism)','81754003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_81907007','81907007','http://snomed.info/sct','Human rhinovirus 12 (organism)','81907007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_82519006','82519006','http://snomed.info/sct','Human echovirus 19 (organism)','82519006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_82698007','82698007','http://snomed.info/sct','Human rhinovirus 28 (organism)','82698007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_82774008','82774008','http://snomed.info/sct','Human rhinovirus 104 (organism)','82774008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_83804005','83804005','http://snomed.info/sct','Human rhinovirus 17 (organism)','83804005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_84080008','84080008','http://snomed.info/sct','Human rhinovirus 60 (organism)','84080008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_85164007','85164007','http://snomed.info/sct','Human rhinovirus 76 (organism)','85164007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_85348007','85348007','http://snomed.info/sct','Human rhinovirus 78 (organism)','85348007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_8562005','8562005','http://snomed.info/sct','Human rhinovirus 95 (organism)','8562005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_86176002','86176002','http://snomed.info/sct','Human rhinovirus 3 (organism)','86176002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_86976003','86976003','http://snomed.info/sct','Human rhinovirus 44 (organism)','86976003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_88716006','88716006','http://snomed.info/sct','Human rhinovirus 75 (organism)','88716006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_88900000','88900000','http://snomed.info/sct','Human rhinovirus 68 (organism)','88900000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_90929002','90929002','http://snomed.info/sct','Human rhinovirus 100 (organism)','90929002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_91072000','91072000','http://snomed.info/sct','Human echovirus 26 (organism)','91072000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_9119005','9119005','http://snomed.info/sct','Human rhinovirus 23 (organism)','9119005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_9243001','9243001','http://snomed.info/sct','Human rhinovirus 71 (organism)','9243001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_933001','933001','http://snomed.info/sct','Human rhinovirus 15 (organism)','933001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_9959007','9959007','http://snomed.info/sct','Human rhinovirus 69 (organism)','9959007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_1293004','1293004','http://snomed.info/sct','Human coxsackievirus A8 (organism)','1293004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_23831003','23831003','http://snomed.info/sct','Human coxsackievirus A2 (organism)','23831003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_24071003','24071003','http://snomed.info/sct','Human coxsackievirus A6 (organism)','24071003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_24747003','24747003','http://snomed.info/sct','Human coxsackievirus A14 (organism)','24747003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_27555004','27555004','http://snomed.info/sct','Human coxsackievirus B2 (organism)','27555004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_2793000','2793000','http://snomed.info/sct','Human coxsackievirus A12 (organism)','2793000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_30840007','30840007','http://snomed.info/sct','Human coxsackievirus A18 (organism)','30840007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_3096006','3096006','http://snomed.info/sct','Human coxsackievirus A9 (organism)','3096006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_38203008','38203008','http://snomed.info/sct','Human coxsackievirus A10 (organism)','38203008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_38219001','38219001','http://snomed.info/sct','Human coxsackievirus A5 (organism)','38219001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_38889001','38889001','http://snomed.info/sct','Human coxsackievirus A19 (organism)','38889001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_41988004','41988004','http://snomed.info/sct','Human coxsackievirus B4 (organism)','41988004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_42067008','42067008','http://snomed.info/sct','Human coxsackievirus A16 (organism)','42067008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_48171002','48171002','http://snomed.info/sct','Human coxsackievirus B6 (organism)','48171002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_49018005','49018005','http://snomed.info/sct','Human coxsackievirus B (organism)','49018005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_52657009','52657009','http://snomed.info/sct','Human coxsackievirus A11 (organism)','52657009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_53744000','53744000','http://snomed.info/sct','Human coxsackievirus A (organism)','53744000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_55982000','55982000','http://snomed.info/sct','Human coxsackievirus A3 (organism)','55982000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_57757007','57757007','http://snomed.info/sct','Human coxsackievirus (organism)','57757007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_58445002','58445002','http://snomed.info/sct','Human coxsackievirus A17 (organism)','58445002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_62408001','62408001','http://snomed.info/sct','Human coxsackievirus B5 (organism)','62408001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_6771007','6771007','http://snomed.info/sct','Human coxsackievirus A20 (organism)','6771007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_698222005','698222005','http://snomed.info/sct','Human coxsackievirus A24 variant (organism)','698222005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_707871006','707871006','http://snomed.info/sct','Ribonucleic acid of Coxsackievirus A7 (substance)','707871006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_707872004','707872004','http://snomed.info/sct','Ribonucleic acid of Coxsackievirus A9 (substance)','707872004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_707873009','707873009','http://snomed.info/sct','Ribonucleic acid of Coxsackievirus B5 (substance)','707873009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_707874003','707874003','http://snomed.info/sct','Ribonucleic acid of Coxsackievirus B6 (substance)','707874003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_72254008','72254008','http://snomed.info/sct','Human coxsackievirus A1 (organism)','72254008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_72593000','72593000','http://snomed.info/sct','Human coxsackievirus A15 (organism)','72593000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_72597004','72597004','http://snomed.info/sct','Human coxsackievirus A21 (organism)','72597004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_72877003','72877003','http://snomed.info/sct','Human coxsackievirus A24 (organism)','72877003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_74924008','74924008','http://snomed.info/sct','Human coxsackievirus A7 (organism)','74924008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_7543009','7543009','http://snomed.info/sct','Human coxsackievirus A13 (organism)','7543009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_82059001','82059001','http://snomed.info/sct','Human coxsackievirus B1 (organism)','82059001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_83593001','83593001','http://snomed.info/sct','Human coxsackievirus A22 (organism)','83593001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_86886003','86886003','http://snomed.info/sct','Human coxsackievirus A4 (organism)','86886003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_89585007','89585007','http://snomed.info/sct','Human coxsackievirus B3 (organism)','89585007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_117275007','117275007','http://snomed.info/sct','Ribonucleic acid of Enterovirus (substance)','117275007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_12997006','12997006','http://snomed.info/sct','Human enterovirus 68 (organism)','12997006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_420441008','420441008','http://snomed.info/sct','Human enterovirus 77 (organism)','420441008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_421124007','421124007','http://snomed.info/sct','Human enterovirus 75 (organism)','421124007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_421170000','421170000','http://snomed.info/sct','Human enterovirus 78 (organism)','421170000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_421603003','421603003','http://snomed.info/sct','Human enterovirus 73 (organism)','421603003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_421887001','421887001','http://snomed.info/sct','Human enterovirus 76 (organism)','421887001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_422793002','422793002','http://snomed.info/sct','Human enterovirus B (organism)','422793002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_422982005','422982005','http://snomed.info/sct','Human enterovirus C (organism)','422982005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_423043004','423043004','http://snomed.info/sct','Human enterovirus A (organism)','423043004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_428234001','428234001','http://snomed.info/sct','Human enterovirus D (organism)','428234001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_68874003','68874003','http://snomed.info/sct','Human enterovirus 71 (organism)','68874003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_69239002','69239002','http://snomed.info/sct','Human enterovirus (organism)','69239002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_707884002','707884002','http://snomed.info/sct','Ribonucleic acid of Enterovirus 71 (substance)','707884002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_709330003','709330003','http://snomed.info/sct','Antigen of Enterovirus (substance)','709330003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_78434004','78434004','http://snomed.info/sct','Human enterovirus 69 (organism)','78434004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1722_90779008','90779008','http://snomed.info/sct','Human enterovirus 70 (organism)','90779008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1608_13126002','13126002','http://snomed.info/sct','Vaccinia virus (organism)','13126002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1608_708497005','708497005','http://snomed.info/sct','Deoxyribonucleic acid of Vaccinia virus (substance)','708497005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1608_789154000','789154000','http://snomed.info/sct','Antigen of Vaccinia virus (substance)','789154000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.382_117187006','117187006','http://snomed.info/sct','Ribosomal ribonucleic acid of Listeria monocytogenes (substance)','117187006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.382_36094007','36094007','http://snomed.info/sct','Listeria monocytogenes (organism)','36094007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.382_450536000','450536000','http://snomed.info/sct','Listeria monocytogenes serotype 1/2a (organism)','450536000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.382_450537009','450537009','http://snomed.info/sct','Listeria monocytogenes serotype 1/2b (organism)','450537009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.382_450538004','450538004','http://snomed.info/sct','Listeria monocytogenes serotype 1/2c (organism)','450538004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.382_450539007','450539007','http://snomed.info/sct','Listeria monocytogenes serotype 4b (organism)','450539007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.382_450540009','450540009','http://snomed.info/sct','Listeria monocytogenes serotype 3a (organism)','450540009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.382_450541008','450541008','http://snomed.info/sct','Listeria monocytogenes serotype 3b (organism)','450541008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.382_450542001','450542001','http://snomed.info/sct','Listeria monocytogenes serotype 3c (organism)','450542001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.382_450543006','450543006','http://snomed.info/sct','Listeria monocytogenes serotype 4a (organism)','450543006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.382_450544000','450544000','http://snomed.info/sct','Listeria monocytogenes serotype 4c (organism)','450544000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.382_450545004','450545004','http://snomed.info/sct','Listeria monocytogenes serotype 4ab (organism)','450545004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.382_450546003','450546003','http://snomed.info/sct','Listeria monocytogenes serotype 4d (organism)','450546003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.382_450547007','450547007','http://snomed.info/sct','Listeria monocytogenes serotype 4e (organism)','450547007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.382_450548002','450548002','http://snomed.info/sct','Listeria monocytogenes serotype 7 (organism)','450548002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.382_698150000','698150000','http://snomed.info/sct','Listeria monocytogenes serotype 4bx (organism)','698150000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.382_708345004','708345004','http://snomed.info/sct','Deoxyribonucleic acid of Listeria monocytogenes (substance)','708345004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1282_609305000','609305000','http://snomed.info/sct','Trophozoite of Naegleria fowleri (organism)','609305000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1282_708384009','708384009','http://snomed.info/sct','Deoxyribonucleic acid of Naegleria fowleri (substance)','708384009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1282_20942007','20942007','http://snomed.info/sct','Naegleria fowleri (organism)','20942007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_10111000','10111000','http://snomed.info/sct','Vibrio aestuarianus (organism)','10111000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_115041002','115041002','http://snomed.info/sct','Genus Salinivibrio (organism)','115041002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_115042009','115042009','http://snomed.info/sct','Salinivibrio costicola (organism)','115042009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_115043004','115043004','http://snomed.info/sct','Genus Listonella (organism)','115043004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_115045006','115045006','http://snomed.info/sct','Listonella pelagia (organism)','115045006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_115046007','115046007','http://snomed.info/sct','Genus Photobacterium (organism)','115046007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_115048008','115048008','http://snomed.info/sct','Photobacterium angustum (organism)','115048008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_115049000','115049000','http://snomed.info/sct','Photobacterium damselae subsp piscicida (organism)','115049000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_115050000','115050000','http://snomed.info/sct','Aliivibrio fischeri (organism)','115050000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_115051001','115051001','http://snomed.info/sct','Photobacterium histaminum (organism)','115051001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_115052008','115052008','http://snomed.info/sct','Photobacterium leiognathi (organism)','115052008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_115053003','115053003','http://snomed.info/sct','Photobacterium phosphoreum (organism)','115053003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_115054009','115054009','http://snomed.info/sct','Vibrio splendidus biogroup I (organism)','115054009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_115056006','115056006','http://snomed.info/sct','Vibrio diabolicus (organism)','115056006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_115058007','115058007','http://snomed.info/sct','Vibrionaceae iliopsicarius (organism)','115058007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_115060009','115060009','http://snomed.info/sct','Vibrio mytili (organism)','115060009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_115061008','115061008','http://snomed.info/sct','Vibrio navarrensis (organism)','115061008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_115062001','115062001','http://snomed.info/sct','Vibrio panaeicida (organism)','115062001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_115063006','115063006','http://snomed.info/sct','Vibrio scophthalmi (organism)','115063006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_115065004','115065004','http://snomed.info/sct','Vibrio tapetis (organism)','115065004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_115077009','115077009','http://snomed.info/sct','Family Vibrionaceae (organism)','115077009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_11736008','11736008','http://snomed.info/sct','Vibrio parahaemolyticus (organism)','11736008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_11776003','11776003','http://snomed.info/sct','Vibrio mimicus (organism)','11776003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_13330009','13330009','http://snomed.info/sct','Vibrio ordalii (organism)','13330009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_14111000181109','14111000181109','http://snomed.info/sct','Vibrio europaeus (organism)','14111000181109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_14611000146103','14611000146103','http://snomed.info/sct','Vibrio ostreicida (organism)','14611000146103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_1566003','1566003','http://snomed.info/sct','Vibrio gazogenes (organism)','1566003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_181511005','181511005','http://snomed.info/sct','Centers for Disease Control and Prevention group EF5 (organism)','181511005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_243324003','243324003','http://snomed.info/sct','Vibrio mediterranei (organism)','243324003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_243327005','243327005','http://snomed.info/sct','Vibrio splendidus (organism)','243327005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_27095005','27095005','http://snomed.info/sct','Vibrio nigripulchritudo (organism)','27095005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_28382009','28382009','http://snomed.info/sct','Vibrio metschnikovii (organism)','28382009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_33896001','33896001','http://snomed.info/sct','Vibrio orientalis (organism)','33896001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_3402008','3402008','http://snomed.info/sct','Vibrio alginolyticus ss. iophagus (organism)','3402008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_34872001','34872001','http://snomed.info/sct','Genus Vibrio (organism)','34872001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_36764009','36764009','http://snomed.info/sct','Vibrio cincinnatiensis (organism)','36764009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_37261000087100','37261000087100','http://snomed.info/sct','Vibrio marisflavi (organism)','37261000087100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_387798006','387798006','http://snomed.info/sct','Photobacterium damselae (organism)','387798006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_387799003','387799003','http://snomed.info/sct','Photobacterium damselae subsp damselae (organism)','387799003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_398367007','398367007','http://snomed.info/sct','Non-cholerae vibrio (organism)','398367007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_398506000','398506000','http://snomed.info/sct','Vibrio cholerae, non-O1 (organism)','398506000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_406683006','406683006','http://snomed.info/sct','Vibrio chitinovora (organism)','406683006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_40822006','40822006','http://snomed.info/sct','Allomonas enterica (organism)','40822006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_415819003','415819003','http://snomed.info/sct','Vibrio cholerae, non-O1/non-O139 (organism)','415819003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_415820009','415820009','http://snomed.info/sct','Vibrio cholerae, non-O139 (organism)','415820009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_42225005','42225005','http://snomed.info/sct','Vibrio logei (organism)','42225005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_426109002','426109002','http://snomed.info/sct','Vibrio ichthyoenteri (organism)','426109002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_427593005','427593005','http://snomed.info/sct','Listonella anguillarum (organism)','427593005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_427632007','427632007','http://snomed.info/sct','Photobacterium iliopiscarium (organism)','427632007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_431444000','431444000','http://snomed.info/sct','Genus Grimontia (organism)','431444000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_43199008','43199008','http://snomed.info/sct','Vibrio fluvialis (organism)','43199008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_432517005','432517005','http://snomed.info/sct','Genus Catenococcus (organism)','432517005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_432889009','432889009','http://snomed.info/sct','Photobacterium indicum (organism)','432889009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_432890000','432890000','http://snomed.info/sct','Photobacterium lipolyticum (organism)','432890000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_432891001','432891001','http://snomed.info/sct','Photobacterium profundum (organism)','432891001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_432961005','432961005','http://snomed.info/sct','Genus Enterovibrio (organism)','432961005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_433610005','433610005','http://snomed.info/sct','Enterovibrio norvegicus (organism)','433610005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_433669003','433669003','http://snomed.info/sct','Grimontia hollisae (organism)','433669003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_434128003','434128003','http://snomed.info/sct','Catenococcus thiocycli (organism)','434128003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_437774004','437774004','http://snomed.info/sct','Salinivibrio costicola subspecies costicola (organism)','437774004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_438166007','438166007','http://snomed.info/sct','Salinivibrio costicola subspecies vallismortis (organism)','438166007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_438312008','438312008','http://snomed.info/sct','Vibrio kanaloae (organism)','438312008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_438313003','438313003','http://snomed.info/sct','Vibrio lentus (organism)','438313003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_438331002','438331002','http://snomed.info/sct','Vibrio pomeroyi (organism)','438331002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_438332009','438332009','http://snomed.info/sct','Vibrio ponticus (organism)','438332009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_438379009','438379009','http://snomed.info/sct','Vibrio agarivorans (organism)','438379009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_438392007','438392007','http://snomed.info/sct','Vibrio neonatus (organism)','438392007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_438429007','438429007','http://snomed.info/sct','Vibrio rotiferianus (organism)','438429007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_438430002','438430002','http://snomed.info/sct','Vibrio ruber (organism)','438430002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_438450003','438450003','http://snomed.info/sct','Vibrio pectenicida (organism)','438450003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_438451004','438451004','http://snomed.info/sct','Vibrio penaeicida (organism)','438451004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_438640005','438640005','http://snomed.info/sct','Vibrio ezurae (organism)','438640005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_438641009','438641009','http://snomed.info/sct','Vibrio fortis (organism)','438641009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_438727005','438727005','http://snomed.info/sct','Vibrio hepatarius (organism)','438727005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_438799000','438799000','http://snomed.info/sct','Vibrio rumoiensis (organism)','438799000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_438880003','438880003','http://snomed.info/sct','Vibrio hispanicus (organism)','438880003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_439045009','439045009','http://snomed.info/sct','Vibrio superstes (organism)','439045009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_439046005','439046005','http://snomed.info/sct','Vibrio tasmaniensis (organism)','439046005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_439130004','439130004','http://snomed.info/sct','Vibrio aerogenes (organism)','439130004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_439503000','439503000','http://snomed.info/sct','Vibrio gallicus (organism)','439503000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_439504006','439504006','http://snomed.info/sct','Vibrio halioticoli (organism)','439504006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_439618009','439618009','http://snomed.info/sct','Vibrio chagasii (organism)','439618009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_439619001','439619001','http://snomed.info/sct','Vibrio coralliilyticus (organism)','439619001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_439665003','439665003','http://snomed.info/sct','Vibrio crassostreae (organism)','439665003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_439666002','439666002','http://snomed.info/sct','Vibrio cyclitrophicus (organism)','439666002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_439689005','439689005','http://snomed.info/sct','Vibrio neptunius (organism)','439689005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_439690001','439690001','http://snomed.info/sct','Vibrio pacinii (organism)','439690001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_440318006','440318006','http://snomed.info/sct','Vibrio brasiliensis (organism)','440318006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_440319003','440319003','http://snomed.info/sct','Vibrio calviensis (organism)','440319003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_440486001','440486001','http://snomed.info/sct','Vibrio xuii (organism)','440486001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_440487005','440487005','http://snomed.info/sct','Genus Aliivibrio (organism)','440487005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_441080009','441080009','http://snomed.info/sct','Aliivibrio wodanis (organism)','441080009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_450598001','450598001','http://snomed.info/sct','Vibrio cholerae serogroup O75 (organism)','450598001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_45749000','45749000','http://snomed.info/sct','Vibrio alginolyticus (organism)','45749000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_468411000124107','468411000124107','http://snomed.info/sct','Vibrio metoecus (organism)','468411000124107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_468421000124104','468421000124104','http://snomed.info/sct','Vibrio cidicii (organism)','468421000124104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_49525008','49525008','http://snomed.info/sct','Vibrio diazotrophicus (organism)','49525008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_55697000','55697000','http://snomed.info/sct','Vibrio nereis (organism)','55697000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_55905000','55905000','http://snomed.info/sct','Vibrio vulnificus (organism)','55905000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_56843006','56843006','http://snomed.info/sct','Vibrio proteolyticus (organism)','56843006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_58124000','58124000','http://snomed.info/sct','Vibrio salmonicida (organism)','58124000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_6161000146104','6161000146104','http://snomed.info/sct','Vibrio gigantis (organism)','6161000146104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_62281007','62281007','http://snomed.info/sct','Genus Allomonas (organism)','62281007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_6387008','6387008','http://snomed.info/sct','Vibrio furnissii (organism)','6387008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_703004001','703004001','http://snomed.info/sct','Vibrio fluvialis or Vibrio furnissii (finding)','703004001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_705160007','705160007','http://snomed.info/sct','Vibrio owensii (organism)','705160007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_708501000','708501000','http://snomed.info/sct','Deoxyribonucleic acid of Vibrio parahaemolyticus (substance)','708501000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_708503002','708503002','http://snomed.info/sct','Deoxyribonucleic acid of Vibrio (substance)','708503002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_708568009','708568009','http://snomed.info/sct','Vibrio azureus (organism)','708568009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_710346005','710346005','http://snomed.info/sct','Nontoxigenic Vibrio cholerae, O1 (organism)','710346005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_712766009','712766009','http://snomed.info/sct','Vibrio parahaemolyticus or Vibrio alginolyticus (finding)','712766009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_71296005','71296005','http://snomed.info/sct','Vibrio tubiashii (organism)','71296005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_715335005','715335005','http://snomed.info/sct','Vibrio cholerae serogroup O141 (organism)','715335005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_722806003','722806003','http://snomed.info/sct','Vibrio vulnificus biotype 1 (organism)','722806003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_722807007','722807007','http://snomed.info/sct','Vibrio vulnificus biotype 2 (organism)','722807007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_722808002','722808002','http://snomed.info/sct','Vibrio vulnificus biotype 3 (organism)','722808002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_76238007','76238007','http://snomed.info/sct','Vibrio splindidus (organism)','76238007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_80981004','80981004','http://snomed.info/sct','Vibrio natriegens (organism)','80981004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_84003007','84003007','http://snomed.info/sct','Vibrio harveyi (organism)','84003007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_90557000','90557000','http://snomed.info/sct','Vibrio campbellii (organism)','90557000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.386_75953000','75953000','http://snomed.info/sct','Vibrio cholerae (organism)','75953000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.661_311429008','311429008','http://snomed.info/sct','Silica dust (substance)','311429008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.661_426540002','426540002','http://snomed.info/sct','Silicate dust (substance)','426540002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.661_55972001','55972001','http://snomed.info/sct','Silicate salt (substance)','55972001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.661_61986006','61986006','http://snomed.info/sct','Deposition of coal and silica (morphologic abnormality)','61986006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.661_62753000','62753000','http://snomed.info/sct','Deposition of silica (morphologic abnormality)','62753000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.661_67693000','67693000','http://snomed.info/sct','Deposition of iron and silica (morphologic abnormality)','67693000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.661_83581005','83581005','http://snomed.info/sct','Silicon dioxide (substance)','83581005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_19874008','19874008','http://snomed.info/sct','Mayaro virus (organism)','19874008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_28335002','28335002','http://snomed.info/sct','Rift Valley fever virus (organism)','28335002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_28375005','28375005','http://snomed.info/sct','Genus Flavivirus (organism)','28375005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_30681002','30681002','http://snomed.info/sct','Sindbis virus (organism)','30681002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_314824006','314824006','http://snomed.info/sct','Tentative flavivirus (organism)','314824006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_314825007','314825007','http://snomed.info/sct','Tentative mosquito borne flavivirus (organism)','314825007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_31989009','31989009','http://snomed.info/sct','Murray Valley encephalitis virus (organism)','31989009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_32137001','32137001','http://snomed.info/sct','Kyasanur Forest disease virus (organism)','32137001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_32458000','32458000','http://snomed.info/sct','Ross River virus (organism)','32458000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_33660003','33660003','http://snomed.info/sct','Oropouche virus (organism)','33660003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_51253001','51253001','http://snomed.info/sct','Toscana virus (organism)','51253001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_56932004','56932004','http://snomed.info/sct','Barmah Forest virus (organism)','56932004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_588234111000087104','588234111000087104','http://snomed.info/sct','Highlands J virus (organism)','588234111000087104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_6895004','6895004','http://snomed.info/sct','Tahyna virus (organism)','6895004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_707639001','707639001','http://snomed.info/sct','Ribosomal ribonucleic acid of Flavivirus (substance)','707639001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_707887009','707887009','http://snomed.info/sct','Ribonucleic acid of Flavivirus (substance)','707887009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_709177003','709177003','http://snomed.info/sct','Antigen of Rift valley fever virus (substance)','709177003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_709341001','709341001','http://snomed.info/sct','Antigen of Flavivirus (substance)','709341001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_71518008','71518008','http://snomed.info/sct','Rocio virus (organism)','71518008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_764947004','764947004','http://snomed.info/sct','Heartland virus (organism)','764947004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_764948009','764948009','http://snomed.info/sct','Bourbon virus (organism)','764948009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_764949001','764949001','http://snomed.info/sct','Alkhurma virus (organism)','764949001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_85183000','85183000','http://snomed.info/sct','Usutu virus (organism)','85183000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_8905000','8905000','http://snomed.info/sct','O''nyong-nyong virus (organism)','8905000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_103105009','103105009','http://snomed.info/sct','Early antigen of Human gammaherpesvirus 4 (substance)','103105009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_103106005','103106005','http://snomed.info/sct','Antigen of Human gammaherpesvirus 4 capsid protein (substance)','103106005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_103107001','103107001','http://snomed.info/sct','Antigen of Human gammaherpesvirus 4 nuclear (substance)','103107001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_103528003','103528003','http://snomed.info/sct','Human herpesvirus 6 (organism)','103528003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_121192004','121192004','http://snomed.info/sct','Dengue virus types 1-4 ribonucleic acid (substance)','121192004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_121198000','121198000','http://snomed.info/sct','Ribonucleic acid of Yellow fever virus (substance)','121198000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_243580008','243580008','http://snomed.info/sct','Human betaherpesvirus 7 (organism)','243580008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_26630006','26630006','http://snomed.info/sct','Yellow fever virus (organism)','26630006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_40168006','40168006','http://snomed.info/sct','Human herpesvirus 4 (organism)','40168006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_427605002','427605002','http://snomed.info/sct','Human herpesvirus 8 (organism)','427605002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_708286008','708286008','http://snomed.info/sct','Deoxyribonucleic acid of Human herpesvirus 6 (substance)','708286008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_708287004','708287004','http://snomed.info/sct','Deoxyribonucleic acid of Human herpesvirus 6A (substance)','708287004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_708288009','708288009','http://snomed.info/sct','Deoxyribonucleic acid of Human herpesvirus 6B (substance)','708288009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_708289001','708289001','http://snomed.info/sct','Deoxyribonucleic acid of Human herpesvirus 7 (substance)','708289001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_708291009','708291009','http://snomed.info/sct','Deoxyribonucleic acid of Human herpesvirus 8 (substance)','708291009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_713629004','713629004','http://snomed.info/sct','Antigen of Yellow fever virus (substance)','713629004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_773959421000087107','773959421000087107','http://snomed.info/sct','Human herpesvirus 6B (organism)','773959421000087107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_972606591000087101','972606591000087101','http://snomed.info/sct','Human herpesvirus 6A (organism)','972606591000087101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_121093006','121093006','http://snomed.info/sct','Antigen of Venezuelan equine encephalitis virus (substance)','121093006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_62958000','62958000','http://snomed.info/sct','Venezuelan equine encephalomyelitis virus (organism)','62958000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_721926000','721926000','http://snomed.info/sct','Venezuelan equine encephalitis virus strain AG80-663 (organism)','721926000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_11428003','11428003','http://snomed.info/sct','Western equine encephalomyelitis virus (organism)','11428003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_117275007','117275007','http://snomed.info/sct','Ribonucleic acid of Enterovirus (substance)','117275007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_117276008','117276008','http://snomed.info/sct','Ribonucleic acid of Japanese encephalitis virus (substance)','117276008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_117277004','117277004','http://snomed.info/sct','Ribonucleic acid of Measles virus (substance)','117277004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_117278009','117278009','http://snomed.info/sct','Ribonucleic acid of Mumps virus (substance)','117278009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_117283001','117283001','http://snomed.info/sct','Ribonucleic acid of Saint Louis encephalitis virus (substance)','117283001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_120994008','120994008','http://snomed.info/sct','Antigen of Human alphaherpesvirus 1 (substance)','120994008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_120997001','120997001','http://snomed.info/sct','Antigen of Measles morbillivirus (substance)','120997001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_121020003','121020003','http://snomed.info/sct','Antigen of Dengue virus (substance)','121020003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_121027000','121027000','http://snomed.info/sct','Antigen of Japanese encephalitis virus (substance)','121027000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_121087003','121087003','http://snomed.info/sct','Antigen of Mumps orthorubulavirus (substance)','121087003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_121091008','121091008','http://snomed.info/sct','Antigen of Saint Louis encephalitis virus (substance)','121091008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_121092001','121092001','http://snomed.info/sct','Antigen of Western equine encephalitis virus (substance)','121092001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_121113008','121113008','http://snomed.info/sct','Deoxyribonucleic acid of human herpes simplex virus (substance)','121113008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_121182007','121182007','http://snomed.info/sct','Deoxyribonucleic acid of Dengue virus (substance)','121182007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_12997006','12997006','http://snomed.info/sct','Human enterovirus 68 (organism)','12997006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_15302007','15302007','http://snomed.info/sct','Human alphaherpesvirus 1 (organism)','15302007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_19551004','19551004','http://snomed.info/sct','Human alphaherpesvirus 3 (organism)','19551004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_19965007','19965007','http://snomed.info/sct','Human herpes simplex virus (organism)','19965007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_2423009','2423009','http://snomed.info/sct','Chikungunya virus (organism)','2423009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_243601002','243601002','http://snomed.info/sct','Eastern equine encephalitis virus (organism)','243601002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_243603004','243603004','http://snomed.info/sct','Japanese encephalitis virus (organism)','243603004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_243604005','243604005','http://snomed.info/sct','Dengue virus subgroup (organism)','243604005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_243625005','243625005','http://snomed.info/sct','Lymphocytic choriomeningitis virus and Lassa complex (organism)','243625005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_260214004','260214004','http://snomed.info/sct','Antigen of Human alphaherpesvirus 3 (substance)','260214004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_31441007','31441007','http://snomed.info/sct','Kunjin virus (organism)','31441007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_34212000','34212000','http://snomed.info/sct','Colorado tick fever virus (organism)','34212000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_34348001','34348001','http://snomed.info/sct','Dengue virus (organism)','34348001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_36700002','36700002','http://snomed.info/sct','Dengue virus, type 4 (organism)','36700002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_407540001','407540001','http://snomed.info/sct','Japanese encephalitis virus group (organism)','407540001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_41328007','41328007','http://snomed.info/sct','Dengue virus, type 2 (organism)','41328007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_416435006','416435006','http://snomed.info/sct','Measles virus, viral envelope M protein variant (organism)','416435006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_420441008','420441008','http://snomed.info/sct','Human enterovirus 77 (organism)','420441008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_421124007','421124007','http://snomed.info/sct','Human enterovirus 75 (organism)','421124007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_421170000','421170000','http://snomed.info/sct','Human enterovirus 78 (organism)','421170000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_421603003','421603003','http://snomed.info/sct','Human enterovirus 73 (organism)','421603003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_421887001','421887001','http://snomed.info/sct','Human enterovirus 76 (organism)','421887001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_422793002','422793002','http://snomed.info/sct','Human enterovirus B (organism)','422793002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_422982005','422982005','http://snomed.info/sct','Human enterovirus C (organism)','422982005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_423043004','423043004','http://snomed.info/sct','Human enterovirus A (organism)','423043004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_425684000','425684000','http://snomed.info/sct','Measles virus genotype G3 (organism)','425684000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_425966004','425966004','http://snomed.info/sct','Measles virus genotype H1 (organism)','425966004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_425970007','425970007','http://snomed.info/sct','Measles virus genotype D3 (organism)','425970007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_426028006','426028006','http://snomed.info/sct','Measles virus genotype D6 (organism)','426028006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_426091009','426091009','http://snomed.info/sct','Measles virus genotype G2 (organism)','426091009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_426188007','426188007','http://snomed.info/sct','Measles virus genotype C1 (organism)','426188007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_426261008','426261008','http://snomed.info/sct','Measles virus genotype D4 (organism)','426261008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_426424002','426424002','http://snomed.info/sct','Measles virus genotype H2 (organism)','426424002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_426535005','426535005','http://snomed.info/sct','Measles virus genotype D9 (organism)','426535005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_426558008','426558008','http://snomed.info/sct','Measles virus genotype A (organism)','426558008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_426640005','426640005','http://snomed.info/sct','Measles virus genotype D2 (organism)','426640005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_426654002','426654002','http://snomed.info/sct','Measles virus genotype B2 (organism)','426654002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_427073007','427073007','http://snomed.info/sct','Measles virus genotype B3 (organism)','427073007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_427182003','427182003','http://snomed.info/sct','Measles virus genotype C2 (organism)','427182003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_427263000','427263000','http://snomed.info/sct','Measles virus genotype D10 (organism)','427263000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_427290009','427290009','http://snomed.info/sct','Measles virus genotype D8 (organism)','427290009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_427353006','427353006','http://snomed.info/sct','Measles virus genotype D7 (organism)','427353006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_427706006','427706006','http://snomed.info/sct','Measles virus genotype D5 (organism)','427706006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_428234001','428234001','http://snomed.info/sct','Human enterovirus D (organism)','428234001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_45838003','45838003','http://snomed.info/sct','Powassan virus (organism)','45838003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_50384007','50384007','http://snomed.info/sct','Mumps virus (organism)','50384007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_50471002','50471002','http://snomed.info/sct','Zika virus (organism)','50471002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_52584002','52584002','http://snomed.info/sct','Measles morbillivirus (organism)','52584002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_57311007','57311007','http://snomed.info/sct','West Nile virus (organism)','57311007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_58432001','58432001','http://snomed.info/sct','Saint Louis encephalitis virus (organism)','58432001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_60588009','60588009','http://snomed.info/sct','Dengue virus, type 1 (organism)','60588009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_68874003','68874003','http://snomed.info/sct','Human enterovirus 71 (organism)','68874003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_69239002','69239002','http://snomed.info/sct','Human enterovirus (organism)','69239002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_698204007','698204007','http://snomed.info/sct','Measles virus genotype D11 (organism)','698204007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_707778006','707778006','http://snomed.info/sct','Ribonucleic acid of Powassan virus (substance)','707778006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_707790008','707790008','http://snomed.info/sct','Ribonucleic acid of West Nile virus (substance)','707790008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_707791007','707791007','http://snomed.info/sct','Ribonucleic acid of Western equine encephalitis virus (substance)','707791007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_707869006','707869006','http://snomed.info/sct','Ribonucleic acid of Chikungunya virus (substance)','707869006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_707875002','707875002','http://snomed.info/sct','Ribonucleic acid of Dengue virus 1 (substance)','707875002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_707876001','707876001','http://snomed.info/sct','Ribonucleic acid of Dengue virus 2 (substance)','707876001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_707877005','707877005','http://snomed.info/sct','Ribonucleic acid of Dengue virus 3 (substance)','707877005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_707878000','707878000','http://snomed.info/sct','Ribonucleic acid of Dengue virus 4 (substance)','707878000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_707879008','707879008','http://snomed.info/sct','Ribonucleic acid of Eastern equine encephalitis virus (substance)','707879008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_707884002','707884002','http://snomed.info/sct','Ribonucleic acid of Enterovirus 71 (substance)','707884002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_707930004','707930004','http://snomed.info/sct','Ribonucleic acid of Lymphocytic choriomeningitis virus (substance)','707930004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_708282005','708282005','http://snomed.info/sct','Deoxyribonucleic acid of Human alphaherpesvirus 1 (substance)','708282005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_709156001','709156001','http://snomed.info/sct','Antigen of West Nile virus (substance)','709156001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_709330003','709330003','http://snomed.info/sct','Antigen of Enterovirus (substance)','709330003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_716627009','716627009','http://snomed.info/sct','Antigen of Mumps orthorubulavirus soluble (substance)','716627009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_716628004','716628004','http://snomed.info/sct','Antigen of Mumps orthorubulavirus particle-bound (substance)','716628004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_717108008','717108008','http://snomed.info/sct','Antigen of Eastern equine encephalitis virus (substance)','717108008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_725443000','725443000','http://snomed.info/sct','Mumps genotype A (organism)','725443000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_725444006','725444006','http://snomed.info/sct','Mumps genotype B (organism)','725444006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_725445007','725445007','http://snomed.info/sct','Mumps genotype C (organism)','725445007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_725446008','725446008','http://snomed.info/sct','Mumps genotype D (organism)','725446008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_725447004','725447004','http://snomed.info/sct','Mumps genotype F (organism)','725447004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_725448009','725448009','http://snomed.info/sct','Mumps genotype G (organism)','725448009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_725449001','725449001','http://snomed.info/sct','Mumps genotype H (organism)','725449001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_725450001','725450001','http://snomed.info/sct','Mumps genotype I (organism)','725450001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_725451002','725451002','http://snomed.info/sct','Mumps genotype J (organism)','725451002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_725452009','725452009','http://snomed.info/sct','Mumps genotype K (organism)','725452009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_725453004','725453004','http://snomed.info/sct','Mumps genotype L (organism)','725453004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_725454005','725454005','http://snomed.info/sct','Mumps genotype N (organism)','725454005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_725469006','725469006','http://snomed.info/sct','Human alphaherpesvirus 3 clade 1 (organism)','725469006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_725470007','725470007','http://snomed.info/sct','Human alphaherpesvirus 3 clade 2 (organism)','725470007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_725471006','725471006','http://snomed.info/sct','Human alphaherpesvirus 3 clade 3 (organism)','725471006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_725472004','725472004','http://snomed.info/sct','Human alphaherpesvirus 3 clade 4 (organism)','725472004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_725473009','725473009','http://snomed.info/sct','Human alphaherpesvirus 3 clade 5 (organism)','725473009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_725593004','725593004','http://snomed.info/sct','Mumps virus genotype unclassified (organism)','725593004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_732206003','732206003','http://snomed.info/sct','Measles virus genotype F (organism)','732206003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_732207007','732207007','http://snomed.info/sct','Measles virus genotype E (organism)','732207007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_732208002','732208002','http://snomed.info/sct','Measles virus genotype D1 (organism)','732208002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_732209005','732209005','http://snomed.info/sct','Measles virus genotype B1 (organism)','732209005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_732210000','732210000','http://snomed.info/sct','Measles virus genotype G1 (organism)','732210000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_783725005','783725005','http://snomed.info/sct','Ribonucleic acid of Dengue virus (substance)','783725005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_78434004','78434004','http://snomed.info/sct','Human enterovirus 69 (organism)','78434004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_82518003','82518003','http://snomed.info/sct','Lymphocytic choriomeningitis virus (organism)','82518003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_8467002','8467002','http://snomed.info/sct','Dengue virus, type 3 (organism)','8467002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_90779008','90779008','http://snomed.info/sct','Human enterovirus 70 (organism)','90779008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_120995009','120995009','http://snomed.info/sct','Antigen of Human alphaherpesvirus 2 (substance)','120995009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_13687007','13687007','http://snomed.info/sct','Human alphaherpesvirus 2 (organism)','13687007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_243617008','243617008','http://snomed.info/sct','California serogroup Orthobunyavirus (organism)','243617008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_28732002','28732002','http://snomed.info/sct','Snowshoe hare virus (organism)','28732002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_30434006','30434006','http://snomed.info/sct','La Crosse virus (organism)','30434006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_61399004','61399004','http://snomed.info/sct','Keystone virus (organism)','61399004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_64979004','64979004','http://snomed.info/sct','California encephalitis virus (organism)','64979004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_707868003','707868003','http://snomed.info/sct','Ribonucleic acid of Orthobunyavirus California serogroup (substance)','707868003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_707928001','707928001','http://snomed.info/sct','Ribonucleic acid of Jamestown Canyon virus (substance)','707928001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_707929009','707929009','http://snomed.info/sct','Ribonucleic acid of La Crosse virus (substance)','707929009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_708283000','708283000','http://snomed.info/sct','Deoxyribonucleic acid of Human alphaherpesvirus 2 (substance)','708283000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_87919008','87919008','http://snomed.info/sct','Trivittatus virus (organism)','87919008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1564_9194001','9194001','http://snomed.info/sct','Jamestown Canyon virus (organism)','9194001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1685_397582004','397582004','http://snomed.info/sct','Hepatitis G virus (organism)','397582004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1685_720111006','720111006','http://snomed.info/sct','Ribonucleic acid of Hepatitis G virus (substance)','720111006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1961_28732002','28732002','http://snomed.info/sct','Snowshoe hare virus (organism)','28732002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.300_103479006','103479006','http://snomed.info/sct','Neisseria meningitidis serogroup A (organism)','103479006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.300_103480009','103480009','http://snomed.info/sct','Neisseria meningitidis serogroup B (organism)','103480009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.300_103481008','103481008','http://snomed.info/sct','Neisseria meningitidis serogroup C (organism)','103481008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.300_103482001','103482001','http://snomed.info/sct','Neisseria meningitidis serogroup Y (organism)','103482001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.300_103483006','103483006','http://snomed.info/sct','Neisseria meningitidis serogroup W (organism)','103483006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.300_120981006','120981006','http://snomed.info/sct','Antigen of Neisseria meningitidis W135 (substance)','120981006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.300_120982004','120982004','http://snomed.info/sct','Antigen of Neisseria meningitidis serogroup Y (substance)','120982004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.300_120983009','120983009','http://snomed.info/sct','Antigen of Neisseria meningitidis serogroup C (substance)','120983009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.300_121077002','121077002','http://snomed.info/sct','Antigen of Neisseria meningitidis (substance)','121077002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.300_121079004','121079004','http://snomed.info/sct','Antigen of Neisseria meningitidis serogroup A (substance)','121079004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.300_121080001','121080001','http://snomed.info/sct','Antigen of Neisseria meningitidis serogroup B (substance)','121080001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.300_121173001','121173001','http://snomed.info/sct','Ribosomal ribonucleic acid of Neisseria meningitidis (substance)','121173001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.300_125041003','125041003','http://snomed.info/sct','Neisseria meningitidis serogroup X (organism)','125041003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.300_125042005','125042005','http://snomed.info/sct','Neisseria meningitidis serogroup Z (organism)','125042005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.300_17872004','17872004','http://snomed.info/sct','Neisseria meningitidis (organism)','17872004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.300_414810006','414810006','http://snomed.info/sct','Neisseria meningitidis non-groupable (organism)','414810006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.300_698162001','698162001','http://snomed.info/sct','Neisseria meningitidis serogroup E (organism)','698162001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.300_708385005','708385005','http://snomed.info/sct','Deoxyribonucleic acid of Neisseria meningitidis (substance)','708385005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.300_709393004','709393004','http://snomed.info/sct','Antigen of Neisseria meningitidis D (substance)','709393004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.300_709394005','709394005','http://snomed.info/sct','Antigen of Neisseria meningitidis X (substance)','709394005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.300_709395006','709395006','http://snomed.info/sct','Antigen of Neisseria meningitidis Z (substance)','709395006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.300_715979001','715979001','http://snomed.info/sct','Antigen of Neisseria meningitidis capsular polysaccharide (substance)','715979001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.300_716269004','716269004','http://snomed.info/sct','Antigen of Neisseria meningitidis serogroup A capsular polysaccharide (substance)','716269004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.300_716270003','716270003','http://snomed.info/sct','Antigen of Neisseria meningitidis serogroup C capsular polysaccharide (substance)','716270003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.300_716271004','716271004','http://snomed.info/sct','Antigen of Neisseria meningitidis serogroup Y capsular polysaccharide (substance)','716271004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.300_716272006','716272006','http://snomed.info/sct','Antigen of Neisseria meningitidis serogroup W135 capsular polysaccharide (substance)','716272006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.300_717209006','717209006','http://snomed.info/sct','Neisseria meningitidis serogroup Y or Neisseria meningitidis serogroup W135 (finding)','717209006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.300_722355003','722355003','http://snomed.info/sct','Neisseria meningitidis, beta lactamase negative (organism)','722355003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.300_722356002','722356002','http://snomed.info/sct','Neisseria meningitidis, beta lactamase positive (organism)','722356002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.300_771325005','771325005','http://snomed.info/sct','Antigen of Neisseria meningitidis E (substance)','771325005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.542_470011000124108','470011000124108','http://snomed.info/sct','Rickettsia sibirica subspecies mongolotimonae (organism)','470011000124108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.542_114218009','114218009','http://snomed.info/sct','Rickettsia africae (organism)','114218009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.542_120979009','120979009','http://snomed.info/sct','Antigen of Rickettsia rickettsii (substance)','120979009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.542_121196001','121196001','http://snomed.info/sct','Ribonucleic acid of Rickettsia rickettsii (substance)','121196001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.542_30769009','30769009','http://snomed.info/sct','Rickettsia akari (organism)','30769009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.542_415341005','415341005','http://snomed.info/sct','Rickettsia felis (organism)','415341005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.542_415342003','415342003','http://snomed.info/sct','Rickettsia, spotted fever group (organism)','415342003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.542_472821001','472821001','http://snomed.info/sct','Rickettsia heilongjiangensis (organism)','472821001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.542_53447008','53447008','http://snomed.info/sct','Rickettsia australis (organism)','53447008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.542_698215002','698215002','http://snomed.info/sct','Rickettsia species 364D (organism)','698215002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.542_707782008','707782008','http://snomed.info/sct','Ribonucleic acid of Rickettsia spotted fever group (substance)','707782008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.542_708418004','708418004','http://snomed.info/sct','Deoxyribonucleic acid of Rickettsia rickettsii (substance)','708418004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.542_708420001','708420001','http://snomed.info/sct','Deoxyribonucleic acid of Rickettsia spotted fever group (substance)','708420001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.542_709396007','709396007','http://snomed.info/sct','Antigen of Rickettsia spotted fever group (substance)','709396007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.542_114217004','114217004','http://snomed.info/sct','Rickettsia aeschlimannii (organism)','114217004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.542_114219001','114219001','http://snomed.info/sct','Rickettsia helvetica (organism)','114219001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.542_114220007','114220007','http://snomed.info/sct','Rickettsia japonica (organism)','114220007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.542_114221006','114221006','http://snomed.info/sct','Rickettsia massiliae (organism)','114221006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.542_18054009','18054009','http://snomed.info/sct','Rickettsia rickettsii (organism)','18054009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.542_32691002','32691002','http://snomed.info/sct','Rickettsia conorii (organism)','32691002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.542_437822006','437822006','http://snomed.info/sct','Rickettsia honei (organism)','437822006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.542_437823001','437823001','http://snomed.info/sct','Rickettsia slovaca (organism)','437823001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.542_77199003','77199003','http://snomed.info/sct','Rickettsia montanensis (organism)','77199003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.542_85288000','85288000','http://snomed.info/sct','Rickettsia sibirica (organism)','85288000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.542_85738007','85738007','http://snomed.info/sct','Rickettsia parkeri (organism)','85738007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1288_116399000','116399000','http://snomed.info/sct','Burkholderia pseudomallei (organism)','116399000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1288_708207002','708207002','http://snomed.info/sct','Deoxyribonucleic acid of Burkholderia pseudomallei (substance)','708207002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1288_709222002','709222002','http://snomed.info/sct','Antigen of Burkholderia pseudomallei (substance)','709222002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_10231000087103','10231000087103','http://snomed.info/sct','Candida pseudohaemulonii (organism)','10231000087103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_109531000146104','109531000146104','http://snomed.info/sct','Candida silvicola (organism)','109531000146104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_112402002','112402002','http://snomed.info/sct','Cryptococcus uniguttulatus (organism)','112402002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_115952006','115952006','http://snomed.info/sct','Candida dubliniensis (organism)','115952006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_115953001','115953001','http://snomed.info/sct','Candida pelliculosa (organism)','115953001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_121013005','121013005','http://snomed.info/sct','Antigen of Candida (substance)','121013005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_121075005','121075005','http://snomed.info/sct','Antigen of Candida albicans (substance)','121075005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_14191000146104','14191000146104','http://snomed.info/sct','Candida hyderabadensis (organism)','14191000146104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_14201000146102','14201000146102','http://snomed.info/sct','Candida rugopelliculosa (organism)','14201000146102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_16557001','16557001','http://snomed.info/sct','Candida guilliermondii (organism)','16557001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_1662009','1662009','http://snomed.info/sct','Candida scottii (organism)','1662009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_17579001','17579001','http://snomed.info/sct','Genus Cryptococcus (organism)','17579001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_20849004','20849004','http://snomed.info/sct','Candida stellatoidea (organism)','20849004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_243448008','243448008','http://snomed.info/sct','Candida albicans var albicans (organism)','243448008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_243450000','243450000','http://snomed.info/sct','Candida claussenii (organism)','243450000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_243451001','243451001','http://snomed.info/sct','Candida galacta (organism)','243451001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_243452008','243452008','http://snomed.info/sct','Candida haemulonii (organism)','243452008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_243454009','243454009','http://snomed.info/sct','Candida ingens (organism)','243454009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_243455005','243455005','http://snomed.info/sct','Candida intermedia (organism)','243455005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_243456006','243456006','http://snomed.info/sct','Candida melinii (organism)','243456006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_243457002','243457002','http://snomed.info/sct','Candida mogii (organism)','243457002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_243458007','243458007','http://snomed.info/sct','Candida norvegensis (organism)','243458007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_243459004','243459004','http://snomed.info/sct','Candida pulcherrima (organism)','243459004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_243461008','243461008','http://snomed.info/sct','Candida reukaufii (organism)','243461008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_243463006','243463006','http://snomed.info/sct','Candida solani (organism)','243463006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_243465004','243465004','http://snomed.info/sct','Candida viswanathii (organism)','243465004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_243466003','243466003','http://snomed.info/sct','Candida zeylanoides (organism)','243466003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_283867004','283867004','http://snomed.info/sct','Candida ciferrii (organism)','283867004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_283868009','283868009','http://snomed.info/sct','Diutina catenulata (organism)','283868009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_283870000','283870000','http://snomed.info/sct','Candida pintolopesii (organism)','283870000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_283871001','283871001','http://snomed.info/sct','Candida inconspicua (organism)','283871001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_283873003','283873003','http://snomed.info/sct','Candida guilliermondii var guilliermondii (organism)','283873003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_283874009','283874009','http://snomed.info/sct','Candida guilliermondii var membranaefaciens (organism)','283874009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_29991000087107','29991000087107','http://snomed.info/sct','Candida conglobata (organism)','29991000087107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_30021000087102','30021000087102','http://snomed.info/sct','Candida fluviatilis (organism)','30021000087102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_30471000087109','30471000087109','http://snomed.info/sct','Candida glaebosa (organism)','30471000087109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_30481000087106','30481000087106','http://snomed.info/sct','Candida lyxosophila (organism)','30481000087106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_30491000087108','30491000087108','http://snomed.info/sct','Candida neerlandica (organism)','30491000087108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_30501000087100','30501000087100','http://snomed.info/sct','Candida picinguabensis (organism)','30501000087100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_30511000087103','30511000087103','http://snomed.info/sct','Candida pseudoglaebosa (organism)','30511000087103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_30521000087106','30521000087106','http://snomed.info/sct','Candida railenensis (organism)','30521000087106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_30781000087103','30781000087103','http://snomed.info/sct','Cryptococcus amylolentus (organism)','30781000087103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_3265006','3265006','http://snomed.info/sct','Genus Candida (organism)','3265006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_3461000146104','3461000146104','http://snomed.info/sct','Candida alai (organism)','3461000146104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_3471000146105','3471000146105','http://snomed.info/sct','Candida allociferrii (organism)','3471000146105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_3481000146107','3481000146107','http://snomed.info/sct','Candida ambrosiae (organism)','3481000146107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_3501000146104','3501000146104','http://snomed.info/sct','Candida blattae (organism)','3501000146104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_3511000146102','3511000146102','http://snomed.info/sct','Candida bohiensis (organism)','3511000146102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_3521000146107','3521000146107','http://snomed.info/sct','Candida bracarensis (organism)','3521000146107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_3531000146109','3531000146109','http://snomed.info/sct','Candida buenavistaensis (organism)','3531000146109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_3551000146103','3551000146103','http://snomed.info/sct','Candida castellii (organism)','3551000146103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_3571000146106','3571000146106','http://snomed.info/sct','Candida citrea (organism)','3571000146106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_3581000146108','3581000146108','http://snomed.info/sct','Candida frijolesensis (organism)','3581000146108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_3591000146105','3591000146105','http://snomed.info/sct','Candida haemulonii var. vulnera (organism)','3591000146105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_3601000146100','3601000146100','http://snomed.info/sct','Candida infanticola (organism)','3601000146100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_3611000146103','3611000146103','http://snomed.info/sct','Candida labiduridarum (organism)','3611000146103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_3621000146108','3621000146108','http://snomed.info/sct','Candida lactis-condensi (organism)','3621000146108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_3631000146105','3631000146105','http://snomed.info/sct','Candida mesenterica (organism)','3631000146105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_3651000146104','3651000146104','http://snomed.info/sct','Candida multigemmis (organism)','3651000146104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_3661000146101','3661000146101','http://snomed.info/sct','Candida nemodendra (organism)','3661000146101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_3671000146107','3671000146107','http://snomed.info/sct','Candida nitratophila (organism)','3671000146107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_3681000146109','3681000146109','http://snomed.info/sct','Candida nivariensis (organism)','3681000146109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_3691000146106','3691000146106','http://snomed.info/sct','Candida orthopsilosis (organism)','3691000146106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_3701000146106','3701000146106','http://snomed.info/sct','Candida peltata (organism)','3701000146106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_3711000146108','3711000146108','http://snomed.info/sct','Candida pini (organism)','3711000146108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_37220005','37220005','http://snomed.info/sct','Histoplasma duboisii (organism)','37220005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_3731000146101','3731000146101','http://snomed.info/sct','Candida shehatae (organism)','3731000146101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_3741000146109','3741000146109','http://snomed.info/sct','Candida succiphila (organism)','3741000146109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_3751000146107','3751000146107','http://snomed.info/sct','Candida thermophila (organism)','3751000146107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_3981000146104','3981000146104','http://snomed.info/sct','Candida cylindracea (organism)','3981000146104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_3991000146102','3991000146102','http://snomed.info/sct','Candida deformans (organism)','3991000146102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_4001000146106','4001000146106','http://snomed.info/sct','Candida duobushaemulonii (organism)','4001000146106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_4011000146108','4011000146108','http://snomed.info/sct','Candida ernobii (organism)','4011000146108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_4021000146103','4021000146103','http://snomed.info/sct','Candida fabianii (organism)','4021000146103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_4031000146101','4031000146101','http://snomed.info/sct','Candida friedrichii (organism)','4031000146101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_4041000146109','4041000146109','http://snomed.info/sct','Candida shehatae var. insectosa (organism)','4041000146109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_4051000146107','4051000146107','http://snomed.info/sct','Candida sojae (organism)','4051000146107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_4061000146105','4061000146105','http://snomed.info/sct','Candida soli (organism)','4061000146105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_4071000146104','4071000146104','http://snomed.info/sct','Candida spandovensis (organism)','4071000146104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_415888004','415888004','http://snomed.info/sct','Candida famata (organism)','415888004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_415889007','415889007','http://snomed.info/sct','Candida maltosa (organism)','415889007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_415890003','415890003','http://snomed.info/sct','Candida membranifaciens (organism)','415890003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_415891004','415891004','http://snomed.info/sct','Candida mongoliae (organism)','415891004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_415892006','415892006','http://snomed.info/sct','Candida sophia-reginae (organism)','415892006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_4171000146100','4171000146100','http://snomed.info/sct','Cryptococcus flavus (organism)','4171000146100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_4201000146104','4201000146104','http://snomed.info/sct','Cryptococcus flavescens (organism)','4201000146104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_4211000146102','4211000146102','http://snomed.info/sct','Cryptococcus macerans (organism)','4211000146102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_4221000146107','4221000146107','http://snomed.info/sct','Cryptococcus magnus (organism)','4221000146107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_4261000146100','4261000146100','http://snomed.info/sct','Cryptococcus vishniacii var vishniacii (organism)','4261000146100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_442875002','442875002','http://snomed.info/sct','Candida sorbophila (organism)','442875002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_444877006','444877006','http://snomed.info/sct','Candida glabrata (organism)','444877006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_446236002','446236002','http://snomed.info/sct','Candida freyschussii (organism)','446236002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_446237006','446237006','http://snomed.info/sct','Candida kefyr (organism)','446237006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_446238001','446238001','http://snomed.info/sct','Candida colliculosa (organism)','446238001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_446283000','446283000','http://snomed.info/sct','Candida sake (organism)','446283000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_446284006','446284006','http://snomed.info/sct','Candida sphaerica (organism)','446284006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_446349005','446349005','http://snomed.info/sct','Candida boidinii (organism)','446349005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_45362004','45362004','http://snomed.info/sct','Candida vini (organism)','45362004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_465751000124107','465751000124107','http://snomed.info/sct','Candida asparagi (organism)','465751000124107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_465771000124102','465771000124102','http://snomed.info/sct','Candida heveicola (organism)','465771000124102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_466201000124109','466201000124109','http://snomed.info/sct','Cryptococcus deuterogattii (organism)','466201000124109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_47608006','47608006','http://snomed.info/sct','Candida lusitaniae (organism)','47608006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_47885008','47885008','http://snomed.info/sct','Candida tropicalis (organism)','47885008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_52343001','52343001','http://snomed.info/sct','Cryptococcus gastricus (organism)','52343001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_53326005','53326005','http://snomed.info/sct','Candida albicans (organism)','53326005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_541251000124101','541251000124101','http://snomed.info/sct','Candida subhashii (organism)','541251000124101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_541271000124106','541271000124106','http://snomed.info/sct','Candida phangngaensis (organism)','541271000124106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_541281000124109','541281000124109','http://snomed.info/sct','Candida mucifera (organism)','541281000124109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_541311000124106','541311000124106','http://snomed.info/sct','Candida lactosa (organism)','541311000124106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_54326003','54326003','http://snomed.info/sct','Candida globosa (organism)','54326003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_61302002','61302002','http://snomed.info/sct','Candida parapsilosis (organism)','61302002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_703263004','703263004','http://snomed.info/sct','Candida sake or Candida famata or Yarrowia lipolytica (finding)','703263004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_707226007','707226007','http://snomed.info/sct','Candida dattila (organism)','707226007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_707283002','707283002','http://snomed.info/sct','Candida hellenica (organism)','707283002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_707634006','707634006','http://snomed.info/sct','Ribosomal ribonucleic acid of Candida (substance)','707634006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_708211008','708211008','http://snomed.info/sct','Deoxyribonucleic acid of Candida albicans (substance)','708211008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_708212001','708212001','http://snomed.info/sct','Deoxyribonucleic acid of Candida glabrata (substance)','708212001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_708213006','708213006','http://snomed.info/sct','Deoxyribonucleic acid of Candida lusitaniae (substance)','708213006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_708214000','708214000','http://snomed.info/sct','Deoxyribonucleic acid of Candida parapsilosis (substance)','708214000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_708215004','708215004','http://snomed.info/sct','Deoxyribonucleic acid of Candida tropicalis (substance)','708215004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_711239005','711239005','http://snomed.info/sct','Antigen of Candida albicans protein (substance)','711239005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_712760003','712760003','http://snomed.info/sct','Candida metapsilosis (organism)','712760003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_712928003','712928003','http://snomed.info/sct','Candida sorbosivorans (organism)','712928003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_712929006','712929006','http://snomed.info/sct','Candida saitoana (organism)','712929006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_713871000','713871000','http://snomed.info/sct','Candida fermentati (organism)','713871000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_714001006','714001006','http://snomed.info/sct','Cryptococcus, not Cryptococcus neoformans (organism)','714001006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_714313009','714313009','http://snomed.info/sct','Candida species not Candida albicans (organism)','714313009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_716257007','716257007','http://snomed.info/sct','Candida firmetaria (organism)','716257007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_717967000','717967000','http://snomed.info/sct','Candida duobushaemulonis (organism)','717967000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_717976007','717976007','http://snomed.info/sct','Cryptococcus aerius (organism)','717976007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_717979000','717979000','http://snomed.info/sct','Candida parapsilosis complex (organism)','717979000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_720214007','720214007','http://snomed.info/sct','Deoxyribonucleic acid of Candida krusei (substance)','720214007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_721951004','721951004','http://snomed.info/sct','Candida blankii (organism)','721951004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_722565531000087105','722565531000087105','http://snomed.info/sct','Candida melibiosica (organism)','722565531000087105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_733432001','733432001','http://snomed.info/sct','Cryptococcus lactativorus (organism)','733432001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_733433006','733433006','http://snomed.info/sct','Cryptococcus cereanus (organism)','733433006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_735366009','735366009','http://snomed.info/sct','Candida bituminiphila (organism)','735366009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_735367000','735367000','http://snomed.info/sct','Candida stellimalicola (organism)','735367000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_735368005','735368005','http://snomed.info/sct','Candida africana (organism)','735368005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_735369002','735369002','http://snomed.info/sct','Candida thasaenensis (organism)','735369002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_735370001','735370001','http://snomed.info/sct','Candida steatolytica (organism)','735370001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_735371002','735371002','http://snomed.info/sct','Candida quercitrusa (organism)','735371002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_735372009','735372009','http://snomed.info/sct','Candida patagonica (organism)','735372009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_735373004','735373004','http://snomed.info/sct','Candida gropengiesseri (organism)','735373004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_735375006','735375006','http://snomed.info/sct','Candida diddensiae (organism)','735375006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_735377003','735377003','http://snomed.info/sct','Candida steatolytica variant inositophila (organism)','735377003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_735378008','735378008','http://snomed.info/sct','Candida steatolytica variant steatolytica (organism)','735378008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_770378004','770378004','http://snomed.info/sct','Cryptococcus ater (organism)','770378004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_782948004','782948004','http://snomed.info/sct','Candida species not Candida glabrata (organism)','782948004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_7831000146104','7831000146104','http://snomed.info/sct','Candida cacao (organism)','7831000146104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_784007004','784007004','http://snomed.info/sct','Deoxyribonucleic acid of Candida (substance)','784007004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_788046009','788046009','http://snomed.info/sct','Candida maris (organism)','788046009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_809322241000087104','809322241000087104','http://snomed.info/sct','Candida palmioleophila (organism)','809322241000087104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_903925371000087108','903925371000087108','http://snomed.info/sct','Candida norvegica (organism)','903925371000087108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_982172491000087106','982172491000087106','http://snomed.info/sct','Candida tenuis (organism)','982172491000087106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_115250007','115250007','http://snomed.info/sct','Antigen of Histoplasma capsulatum (substance)','115250007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_115285007','115285007','http://snomed.info/sct','Exoantigen of Histoplasma capsulatum (substance)','115285007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_115320002','115320002','http://snomed.info/sct','Antigen of Histoplasma capsulatum H protein (substance)','115320002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_115321003','115321003','http://snomed.info/sct','Antigen of Histoplasma capsulatum M protein (substance)','115321003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_121114002','121114002','http://snomed.info/sct','Deoxyribonucleic acid of Histoplasma capsulatum (substance)','121114002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_121115001','121115001','http://snomed.info/sct','Ribosomal ribonucleic acid of Histoplasma capsulatum (substance)','121115001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_243509006','243509006','http://snomed.info/sct','Histoplasma capsulatum var capsulatum (organism)','243509006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_3491000146109','3491000146109','http://snomed.info/sct','Candida auris (organism)','3491000146109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_51208003','51208003','http://snomed.info/sct','Histoplasma farciminosus (organism)','51208003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_56596006','56596006','http://snomed.info/sct','Histoplasma capsulatum (organism)','56596006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_81951003','81951003','http://snomed.info/sct','Histoplasma (organism)','81951003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_103094002','103094002','http://snomed.info/sct','Antigen of Cryptococcus (substance)','103094002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_115249007','115249007','http://snomed.info/sct','Antigen of Coccidioides immitis (substance)','115249007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_115251006','115251006','http://snomed.info/sct','Antigen of Blastomyces dermatitidis (substance)','115251006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_115284006','115284006','http://snomed.info/sct','Exoantigen of Coccidioides immitis (substance)','115284006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_115286008','115286008','http://snomed.info/sct','Exoantigen of Blastomyces dermatitidis (substance)','115286008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_117175004','117175004','http://snomed.info/sct','Ribosomal ribonucleic acid of Blastomyces dermatitidis (substance)','117175004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_121107004','121107004','http://snomed.info/sct','Ribosomal ribonucleic acid of Coccidioides immitis (substance)','121107004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_16461009','16461009','http://snomed.info/sct','Blastomyces parvus (organism)','16461009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_23439005','23439005','http://snomed.info/sct','Coccidioides immitis (organism)','23439005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_406645005','406645005','http://snomed.info/sct','Coccidioides posadasii (organism)','406645005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_414754009','414754009','http://snomed.info/sct','Mold resembling Coccidioides immitis (organism)','414754009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_435381000124105','435381000124105','http://snomed.info/sct','Coccidioides immitis/Coccidioides posadasii (organism)','435381000124105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_457661000124101','457661000124101','http://snomed.info/sct','Blastomyces dermatitidis or Blastomyces gilchristii (finding)','457661000124101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_65205008','65205008','http://snomed.info/sct','Blastomyces (organism)','65205008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_65615007','65615007','http://snomed.info/sct','Blastomyces dermatitidis (organism)','65615007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_703020006','703020006','http://snomed.info/sct','Coccidioides immitis or Coccidioides posadasii (finding)','703020006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_707637004','707637004','http://snomed.info/sct','Ribosomal ribonucleic acid of Coccidioides (substance)','707637004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_788043001','788043001','http://snomed.info/sct','Blastomyces gilchristii (organism)','788043001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_8672004','8672004','http://snomed.info/sct','Coccidioides (organism)','8672004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_120992007','120992007','http://snomed.info/sct','Antigen of Cryptococcus neoformans (substance)','120992007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_121108009','121108009','http://snomed.info/sct','Ribosomal ribonucleic acid of Cryptococcus neoformans (substance)','121108009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_243468002','243468002','http://snomed.info/sct','Cryptococcus neoformans var neoformans (organism)','243468002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_415904003','415904003','http://snomed.info/sct','Cryptococcus neoformans var. grubii (organism)','415904003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_450862004','450862004','http://snomed.info/sct','Cryptococcus gattii (organism)','450862004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_467051000124102','467051000124102','http://snomed.info/sct','Cryptococcus gattii genotype VGII (organism)','467051000124102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_467061000124100','467061000124100','http://snomed.info/sct','Cryptococcus gattii genotype VGIIa (organism)','467061000124100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_467071000124107','467071000124107','http://snomed.info/sct','Cryptococcus gattii genotype VGIIb (organism)','467071000124107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_467081000124105','467081000124105','http://snomed.info/sct','Cryptococcus gattii genotype VGIIc (organism)','467081000124105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_467091000124108','467091000124108','http://snomed.info/sct','Cryptococcus gattii genotype VGIV (organism)','467091000124108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_67168003','67168003','http://snomed.info/sct','Cryptococcus neoformans (organism)','67168003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_736943009','736943009','http://snomed.info/sct','Cryptococcus neoformans variant grubii genotype VNII (organism)','736943009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_736944003','736944003','http://snomed.info/sct','Cryptococcus neoformans variant grubii genotype VNI (organism)','736944003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_736945002','736945002','http://snomed.info/sct','Cryptococcus gattii genotype VGIII (organism)','736945002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_736946001','736946001','http://snomed.info/sct','Cryptococcus gattii genotype VGI (organism)','736946001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1563_763168008','763168008','http://snomed.info/sct','Cryptococcus neoformans variant grubii and Cryptococcus neoformans variant neoformans hybrid (organism)','763168008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1962_87919008','87919008','http://snomed.info/sct','Trivittatus virus (organism)','87919008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.389_16439004','16439004','http://snomed.info/sct','Trichinella spiralis (organism)','16439004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.389_37900004','37900004','http://snomed.info/sct','Trichinella (organism)','37900004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.389_609055003','609055003','http://snomed.info/sct','Adult of genus Trichinella (organism)','609055003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.389_609056002','609056002','http://snomed.info/sct','Adult of Trichinella spiralis (organism)','609056002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.389_609074006','609074006','http://snomed.info/sct','Larva of genus Trichinella (organism)','609074006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.389_609075007','609075007','http://snomed.info/sct','Larva of Trichinella spiralis (organism)','609075007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.389_766910001','766910001','http://snomed.info/sct','Trichinella murrelli (organism)','766910001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.389_766911002','766911002','http://snomed.info/sct','Trichinella pseudospiralis (organism)','766911002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.389_766912009','766912009','http://snomed.info/sct','Trichinella T6 (organism)','766912009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.389_767450004','767450004','http://snomed.info/sct','Trichinella nativa (organism)','767450004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.389_767451000','767451000','http://snomed.info/sct','Trichinella nelsoni (organism)','767451000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.269_117278009','117278009','http://snomed.info/sct','Ribonucleic acid of Mumps virus (substance)','117278009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.269_121087003','121087003','http://snomed.info/sct','Antigen of Mumps orthorubulavirus (substance)','121087003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.269_50384007','50384007','http://snomed.info/sct','Mumps virus (organism)','50384007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.269_716627009','716627009','http://snomed.info/sct','Antigen of Mumps orthorubulavirus soluble (substance)','716627009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.269_716628004','716628004','http://snomed.info/sct','Antigen of Mumps orthorubulavirus particle-bound (substance)','716628004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.269_725443000','725443000','http://snomed.info/sct','Mumps genotype A (organism)','725443000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.269_725444006','725444006','http://snomed.info/sct','Mumps genotype B (organism)','725444006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.269_725445007','725445007','http://snomed.info/sct','Mumps genotype C (organism)','725445007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.269_725446008','725446008','http://snomed.info/sct','Mumps genotype D (organism)','725446008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.269_725447004','725447004','http://snomed.info/sct','Mumps genotype F (organism)','725447004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.269_725448009','725448009','http://snomed.info/sct','Mumps genotype G (organism)','725448009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.269_725449001','725449001','http://snomed.info/sct','Mumps genotype H (organism)','725449001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.269_725450001','725450001','http://snomed.info/sct','Mumps genotype I (organism)','725450001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.269_725451002','725451002','http://snomed.info/sct','Mumps genotype J (organism)','725451002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.269_725452009','725452009','http://snomed.info/sct','Mumps genotype K (organism)','725452009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.269_725453004','725453004','http://snomed.info/sct','Mumps genotype L (organism)','725453004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.269_725454005','725454005','http://snomed.info/sct','Mumps genotype N (organism)','725454005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.269_725593004','725593004','http://snomed.info/sct','Mumps virus genotype unclassified (organism)','725593004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1960_30434006','30434006','http://snomed.info/sct','La Crosse virus (organism)','30434006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1960_707929009','707929009','http://snomed.info/sct','Ribonucleic acid of La Crosse virus (substance)','707929009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1043_3491000146109','3491000146109','http://snomed.info/sct','Candida auris (organism)','3491000146109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1681_737527003','737527003','http://snomed.info/sct','Carbapenemase-producing Pseudomonas aeruginosa (organism)','737527003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1681_1104601000112108','1104601000112108','http://snomed.info/sct','Metallo-beta-lactamase producing Pseudomonas aeruginosa (organism)','1104601000112108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1680_726492000','726492000','http://snomed.info/sct','Carbapenem resistant Pseudomonas aeruginosa (organism)','726492000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_312330004','312330004','http://snomed.info/sct','Rickettsia peacockii (organism)','312330004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_79437004','79437004','http://snomed.info/sct','Rickettsia rhipicephali (organism)','79437004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_103497003','103497003','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 3 (organism)','103497003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_103498008','103498008','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 14 (organism)','103498008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_103499000','103499000','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 7F (organism)','103499000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_103500009','103500009','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 9N (organism)','103500009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_115303001','115303001','http://snomed.info/sct','Streptococcus pneumoniae capsular polysaccharide virulence factor (substance)','115303001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_115304007','115304007','http://snomed.info/sct','Antigen of Streptococcus pneumoniae Danish serotype 6A capsular polysaccharide (substance)','115304007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_115432002','115432002','http://snomed.info/sct','Antigen of Streptococcus pneumoniae Danish serotype 6B capsular polysaccharide (substance)','115432002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_115434001','115434001','http://snomed.info/sct','Antigen of Streptococcus pneumoniae Danish serotype 12F capsular polysaccharide (substance)','115434001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_115435000','115435000','http://snomed.info/sct','Antigen of Streptococcus pneumoniae Danish serotype 18C capsular polysaccharide (substance)','115435000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_115436004','115436004','http://snomed.info/sct','Antigen of Streptococcus pneumoniae Danish serotype 19F capsular polysaccharide (substance)','115436004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_115437008','115437008','http://snomed.info/sct','Antigen of Streptococcus pneumoniae Danish serotype 23F capsular polysaccharide (substance)','115437008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_115439006','115439006','http://snomed.info/sct','Antigen of Streptococcus pneumoniae Danish serotype 7F capsular polysaccharide (substance)','115439006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_115440008','115440008','http://snomed.info/sct','Antigen of Streptococcus pneumoniae Danish serotype 9N capsular polysaccharide (substance)','115440008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_115578007','115578007','http://snomed.info/sct','Antigen of Streptococcus pneumoniae capsular polysaccharide (substance)','115578007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_116396007','116396007','http://snomed.info/sct','Enteroinvasive Escherichia coli (organism)','116396007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_116500005','116500005','http://snomed.info/sct','Streptococcus pneumoniae serogroup 12 (organism)','116500005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_120985002','120985002','http://snomed.info/sct','Antigen of Streptococcus pneumoniae (substance)','120985002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_121175008','121175008','http://snomed.info/sct','Ribosomal ribonucleic acid of Streptococcus pneumoniae (substance)','121175008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_127541006','127541006','http://snomed.info/sct','Streptococcus pneumoniae serogroup 19 (organism)','127541006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_131361001','131361001','http://snomed.info/sct','Streptococcus pneumoniae serogroup 17 (organism)','131361001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_131362008','131362008','http://snomed.info/sct','Streptococcus pneumoniae serogroup 16 (organism)','131362008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_131363003','131363003','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 29 (organism)','131363003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_1841000221107','1841000221107','http://snomed.info/sct','Antigen of Streptococcus pneumoniae Danish serotype 19A capsular polysaccharide unconjugated (substance)','1841000221107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_311000221102','311000221102','http://snomed.info/sct','Antigen of Streptococcus pneumoniae Danish serotype 2 capsular polysaccharide unconjugated (substance)','311000221102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_321000221107','321000221107','http://snomed.info/sct','Antigen of Streptococcus pneumoniae Danish serotype 5 capsular polysaccharide unconjugated (substance)','321000221107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_331000221105','331000221105','http://snomed.info/sct','Antigen of Streptococcus pneumoniae Danish serotype 9V capsular polysaccharide unconjugated (substance)','331000221105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_341000221103','341000221103','http://snomed.info/sct','Antigen of Streptococcus pneumoniae Danish serotype 10A capsular polysaccharide unconjugated (substance)','341000221103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_351000221101','351000221101','http://snomed.info/sct','Antigen of Streptococcus pneumoniae Danish serotype 11A capsular polysaccharide unconjugated (substance)','351000221101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_361000221104','361000221104','http://snomed.info/sct','Antigen of Streptococcus pneumoniae Danish serotype 15B capsular polysaccharide unconjugated (substance)','361000221104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_363767003','363767003','http://snomed.info/sct','Streptococcus pneumoniae serogroup 22 (organism)','363767003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_363768008','363768008','http://snomed.info/sct','Streptococcus pneumoniae serogroup 11 (organism)','363768008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_371000221108','371000221108','http://snomed.info/sct','Antigen of Streptococcus pneumoniae Danish serotype 17F capsular polysaccharide unconjugated (substance)','371000221108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_391000221109','391000221109','http://snomed.info/sct','Antigen of Streptococcus pneumoniae Danish serotype 22F capsular polysaccharide unconjugated (substance)','391000221109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_401000221106','401000221106','http://snomed.info/sct','Antigen of Streptococcus pneumoniae Danish serotype 33F capsular polysaccharide unconjugated (substance)','401000221106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_407227005','407227005','http://snomed.info/sct','Enteroinvasive Escherichia coli, serotype O28:nonmotile (organism)','407227005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_407229008','407229008','http://snomed.info/sct','Enteroinvasive Escherichia coli, serotype O29:nonmotile (organism)','407229008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_407231004','407231004','http://snomed.info/sct','Enteroinvasive Escherichia coli, serotype O112:nonmotile (organism)','407231004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_407233001','407233001','http://snomed.info/sct','Enteroinvasive Escherichia coli, serotype O124:nonmotile (organism)','407233001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_407234007','407234007','http://snomed.info/sct','Enteroinvasive Escherichia coli, serotype O124:H7 (organism)','407234007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_407235008','407235008','http://snomed.info/sct','Enteroinvasive Escherichia coli, serotype O124:H30 (organism)','407235008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_407237000','407237000','http://snomed.info/sct','Enteroinvasive Escherichia coli, serotype O136:nonmotile (organism)','407237000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_407239002','407239002','http://snomed.info/sct','Enteroinvasive Escherichia coli, serotype O143:nonmotile (organism)','407239002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_407241001','407241001','http://snomed.info/sct','Enteroinvasive Escherichia coli, serotype O144:nonmotile (organism)','407241001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_407243003','407243003','http://snomed.info/sct','Enteroinvasive Escherichia coli, serotype O152:nonmotile (organism)','407243003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_407245005','407245005','http://snomed.info/sct','Enteroinvasive Escherichia coli, serotype O164:nonmotile (organism)','407245005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_407246006','407246006','http://snomed.info/sct','Enteroinvasive Escherichia coli, serotype O167:nonmotile (organism)','407246006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_409806004','409806004','http://snomed.info/sct','Multiple drug-resistant Streptococcus pneumoniae (organism)','409806004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_409807008','409807008','http://snomed.info/sct','Penicillin resistant Streptococcus pneumoniae (organism)','409807008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_411000221109','411000221109','http://snomed.info/sct','Antigen of Streptococcus pneumoniae Danish serotype 1 capsular polysaccharide conjugated (substance)','411000221109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_415607008','415607008','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 1 (organism)','415607008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_415608003','415608003','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 10A (organism)','415608003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_415609006','415609006','http://snomed.info/sct','Streptococcus pneumoniae serogroup 15 (organism)','415609006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_415610001','415610001','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 15B (organism)','415610001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_415611002','415611002','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 19A (organism)','415611002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_415613004','415613004','http://snomed.info/sct','Streptococcus pneumoniae serogroup 23 (organism)','415613004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_415614005','415614005','http://snomed.info/sct','Streptococcus pneumoniae serogroup 33 (organism)','415614005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_415616007','415616007','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 4 (organism)','415616007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_415618008','415618008','http://snomed.info/sct','Streptococcus pneumoniae serogroup 6 (organism)','415618008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_415619000','415619000','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 7A (organism)','415619000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_415621005','415621005','http://snomed.info/sct','Streptococcus pneumoniae serogroup 10 (organism)','415621005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_417270004','417270004','http://snomed.info/sct','Streptococcus pneumoniae serogroup 9 (organism)','417270004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_418147001','418147001','http://snomed.info/sct','Streptococcus pneumoniae serogroup 18 (organism)','418147001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_418217008','418217008','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 23F (organism)','418217008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_418322006','418322006','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 9V (organism)','418322006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_418451009','418451009','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 18C (organism)','418451009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_418759005','418759005','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 8 (organism)','418759005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_418883007','418883007','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 9L (organism)','418883007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_418902003','418902003','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 6B (organism)','418902003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_419071000','419071000','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 11A (organism)','419071000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_419167001','419167001','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 9A (organism)','419167001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_419305002','419305002','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 12F (organism)','419305002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_419527005','419527005','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 2 (organism)','419527005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_419871001','419871001','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 5 (organism)','419871001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_419915004','419915004','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 19F (organism)','419915004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_420138009','420138009','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 17F (organism)','420138009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_420148006','420148006','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 33F (organism)','420148006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_420216004','420216004','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 22F (organism)','420216004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_427741005','427741005','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 23B (organism)','427741005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_428124003','428124003','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 10B (organism)','428124003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_428366009','428366009','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 13 (organism)','428366009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_429569005','429569005','http://snomed.info/sct','Streptococcus pneumoniae serogroup 35 (organism)','429569005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_431000221101','431000221101','http://snomed.info/sct','Antigen of Streptococcus pneumoniae Danish serotype 4 capsular polysaccharide conjugated (substance)','431000221101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_441000221108','441000221108','http://snomed.info/sct','Antigen of Streptococcus pneumoniae Danish serotype 5 capsular polysaccharide conjugated (substance)','441000221108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_441523000','441523000','http://snomed.info/sct','Streptococcus pneumoniae serogroup 7 (organism)','441523000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_441566007','441566007','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 22A (organism)','441566007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_441602004','441602004','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 10F (organism)','441602004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_442049002','442049002','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 33A (organism)','442049002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_443155000','443155000','http://snomed.info/sct','Streptococcus pneumoniae serogroup 28 (organism)','443155000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_443156004','443156004','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 6A (organism)','443156004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_443239003','443239003','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 15A (organism)','443239003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_443240001','443240001','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 15C (organism)','443240001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_443670000','443670000','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 31 (organism)','443670000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_444352000','444352000','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 28A (organism)','444352000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_444353005','444353005','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 28F (organism)','444353005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_461000221107','461000221107','http://snomed.info/sct','Antigen of Streptococcus pneumoniae Danish serotype 6B capsular polysaccharide conjugated (substance)','461000221107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_471000221103','471000221103','http://snomed.info/sct','Antigen of Streptococcus pneumoniae Danish serotype 7F capsular polysaccharide conjugated (substance)','471000221103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_481000221100','481000221100','http://snomed.info/sct','Antigen of Streptococcus pneumoniae Danish serotype 9V capsular polysaccharide conjugated (substance)','481000221100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_491000221102','491000221102','http://snomed.info/sct','Antigen of Streptococcus pneumoniae Danish serotype 14 capsular polysaccharide conjugated (substance)','491000221102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_501000221107','501000221107','http://snomed.info/sct','Antigen of Streptococcus pneumoniae Danish serotype 18C capsular polysaccharide conjugated (substance)','501000221107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_521000221100','521000221100','http://snomed.info/sct','Antigen of Streptococcus pneumoniae Danish serotype 19F capsular polysaccharide conjugated (substance)','521000221100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_531000221102','531000221102','http://snomed.info/sct','Antigen of Streptococcus pneumoniae Danish serotype 23F capsular polysaccharide conjugated (substance)','531000221102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_58720004','58720004','http://snomed.info/sct','Mycoplasma pneumoniae (organism)','58720004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_698095005','698095005','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 6C (organism)','698095005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_698096006','698096006','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 7C (organism)','698096006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_698097002','698097002','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 21 (organism)','698097002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_698098007','698098007','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 23A (organism)','698098007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_698099004','698099004','http://snomed.info/sct','Streptococcus pneumoniae serogroup 24 (organism)','698099004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_698102004','698102004','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 7B (organism)','698102004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_698103009','698103009','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 10C (organism)','698103009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_698104003','698104003','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 11B (organism)','698104003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_698105002','698105002','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 11C (organism)','698105002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_698106001','698106001','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 11D (organism)','698106001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_698107005','698107005','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 11F (organism)','698107005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_698108000','698108000','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 12A (organism)','698108000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_698109008','698109008','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 12B (organism)','698109008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_698110003','698110003','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 15F (organism)','698110003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_698111004','698111004','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 16A (organism)','698111004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_698112006','698112006','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 16F (organism)','698112006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_698113001','698113001','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 17A (organism)','698113001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_698114007','698114007','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 18A (organism)','698114007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_698115008','698115008','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 18B (organism)','698115008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_698116009','698116009','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 18F (organism)','698116009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_698117000','698117000','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 19B (organism)','698117000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_698118005','698118005','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 19C (organism)','698118005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_698119002','698119002','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 24A (organism)','698119002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_698120008','698120008','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 24B (organism)','698120008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_698121007','698121007','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 24F (organism)','698121007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_698122000','698122000','http://snomed.info/sct','Streptococcus pneumoniae serogroup 25 (organism)','698122000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_698123005','698123005','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 25A (organism)','698123005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_698124004','698124004','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 25F (organism)','698124004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_698125003','698125003','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 27 (organism)','698125003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_698126002','698126002','http://snomed.info/sct','Streptococcus pneumoniae serogroup 32 (organism)','698126002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_698127006','698127006','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 32A (organism)','698127006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_698128001','698128001','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 32F (organism)','698128001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_698129009','698129009','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 33B (organism)','698129009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_698130004','698130004','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 33C (organism)','698130004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_698131000','698131000','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 33D (organism)','698131000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_698132007','698132007','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 35A (organism)','698132007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_698133002','698133002','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 35B (organism)','698133002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_698134008','698134008','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 35C (organism)','698134008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_698135009','698135009','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 35F (organism)','698135009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_698136005','698136005','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 36 (organism)','698136005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_698137001','698137001','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 37 (organism)','698137001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_698138006','698138006','http://snomed.info/sct','Streptococcus pneumoniae serogroup 41 (organism)','698138006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_698139003','698139003','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 41A (organism)','698139003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_698140001','698140001','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 41F (organism)','698140001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_698146007','698146007','http://snomed.info/sct','Streptococcus pneumoniae serogroup 47 (organism)','698146007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_698147003','698147003','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 47A (organism)','698147003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_698148008','698148008','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 47F (organism)','698148008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_708447006','708447006','http://snomed.info/sct','Deoxyribonucleic acid of Streptococcus pneumoniae (substance)','708447006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_714078004','714078004','http://snomed.info/sct','Antigen of Streptococcus pneumoniae capsular polysaccharide conjugated (substance)','714078004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_719028004','719028004','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 6D (organism)','719028004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_733596002','733596002','http://snomed.info/sct','Enteroinvasive Escherichia coli serogroup O:nonmotile (organism)','733596002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_763388000','763388000','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 6E (organism)','763388000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_763389008','763389008','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 6F (organism)','763389008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_763390004','763390004','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 6G (organism)','763390004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_763391000','763391000','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 6H (organism)','763391000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_763392007','763392007','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 11E (organism)','763392007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_763393002','763393002','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 33E (organism)','763393002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_763395009','763395009','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 20A (organism)','763395009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_763396005','763396005','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 20B (organism)','763396005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_767201007','767201007','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 34 (organism)','767201007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_767202000','767202000','http://snomed.info/sct','Streptococcus pneumoniae serogroup 20 (organism)','767202000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_767204004','767204004','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 38 (organism)','767204004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_767208001','767208001','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 39 (organism)','767208001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_767274003','767274003','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 40 (organism)','767274003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_767275002','767275002','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 48 (organism)','767275002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_767281005','767281005','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 46 (organism)','767281005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_767282003','767282003','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 45 (organism)','767282003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_767283008','767283008','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 44 (organism)','767283008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_767284002','767284002','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 43 (organism)','767284002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_767285001','767285001','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 42 (organism)','767285001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_767555007','767555007','http://snomed.info/sct','Antigen of Streptococcus pneumoniae Danish serotype 7A capsular polysaccharide (substance)','767555007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_767556008','767556008','http://snomed.info/sct','Antigen of Streptococcus pneumoniae Danish serotype 8 capsular polysaccharide (substance)','767556008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_767567009','767567009','http://snomed.info/sct','Antigen of Streptococcus pneumoniae Danish serotype 14 capsular polysaccharide (substance)','767567009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_767569007','767569007','http://snomed.info/sct','Antigen of Streptococcus pneumoniae Danish serotype 3 capsular polysaccharide (substance)','767569007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_767571007','767571007','http://snomed.info/sct','Antigen of Streptococcus pneumoniae Danish serotype 1 capsular polysaccharide (substance)','767571007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_767572000','767572000','http://snomed.info/sct','Antigen of Streptococcus pneumoniae Danish serotype 4 capsular polysaccharide (substance)','767572000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_838460002','838460002','http://snomed.info/sct','Antigen of Streptococcus pneumoniae serogroup 20 capsular polysaccharide unconjugated (substance)','838460002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_9861002','9861002','http://snomed.info/sct','Streptococcus pneumoniae (organism)','9861002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_103441001','103441001','http://snomed.info/sct','Haemophilus influenzae type a (organism)','103441001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_103442008','103442008','http://snomed.info/sct','Haemophilus influenzae type b (organism)','103442008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_103443003','103443003','http://snomed.info/sct','Haemophilus influenzae type c (organism)','103443003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_103444009','103444009','http://snomed.info/sct','Haemophilus influenzae type d (organism)','103444009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_103445005','103445005','http://snomed.info/sct','Haemophilus influenzae type e (organism)','103445005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_103446006','103446006','http://snomed.info/sct','Haemophilus influenzae type f (organism)','103446006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_115407004','115407004','http://snomed.info/sct','Haemophilus influenzae, not b (organism)','115407004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_120975003','120975003','http://snomed.info/sct','Antigen of Haemophilus influenzae type b (substance)','120975003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_121021004','121021004','http://snomed.info/sct','Antigen of Haemophilus influenzae type a (substance)','121021004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_121076006','121076006','http://snomed.info/sct','Antigen of Haemophilus influenzae type c (substance)','121076006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_121078007','121078007','http://snomed.info/sct','Antigen of Haemophilus influenzae type e (substance)','121078007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_121085006','121085006','http://snomed.info/sct','Antigen of Haemophilus influenzae type d (substance)','121085006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_121090009','121090009','http://snomed.info/sct','Antigen of Haemophilus influenzae type f (substance)','121090009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_121111005','121111005','http://snomed.info/sct','Ribosomal ribonucleic acid of Haemophilus influenzae (substance)','121111005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_127505006','127505006','http://snomed.info/sct','Haemophilus influenzae, biotype I (organism)','127505006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_127506007','127506007','http://snomed.info/sct','Haemophilus influenzae, biotype II (organism)','127506007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_127507003','127507003','http://snomed.info/sct','Haemophilus influenzae, biotype III (organism)','127507003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_127508008','127508008','http://snomed.info/sct','Haemophilus influenzae, biotype IV (organism)','127508008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_127509000','127509000','http://snomed.info/sct','Haemophilus influenzae, biotype V (organism)','127509000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_127510005','127510005','http://snomed.info/sct','Haemophilus influenzae, biotype VI (organism)','127510005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_127511009','127511009','http://snomed.info/sct','Haemophilus influenzae, biotype VII (organism)','127511009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_127512002','127512002','http://snomed.info/sct','Haemophilus influenzae, biotype VIII (organism)','127512002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_44470000','44470000','http://snomed.info/sct','Haemophilus influenzae (organism)','44470000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_708275006','708275006','http://snomed.info/sct','Deoxyribonucleic acid of Haemophilus influenzae type a (substance)','708275006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_708277003','708277003','http://snomed.info/sct','Deoxyribonucleic acid of Haemophilus influenzae type b (substance)','708277003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_708278008','708278008','http://snomed.info/sct','Deoxyribonucleic acid of Haemophilus influenzae (substance)','708278008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_709390001','709390001','http://snomed.info/sct','Antigen of Haemophilus influenzae (substance)','709390001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_722351007','722351007','http://snomed.info/sct','Haemophilus influenzae, beta lactamase negative (organism)','722351007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_722353005','722353005','http://snomed.info/sct','Haemophilus influenzae, beta lactamase positive (organism)','722353005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_726495003','726495003','http://snomed.info/sct','Ampicillin resistant Haemophilus influenzae (organism)','726495003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_114217004','114217004','http://snomed.info/sct','Rickettsia aeschlimannii (organism)','114217004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_114219001','114219001','http://snomed.info/sct','Rickettsia helvetica (organism)','114219001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_114220007','114220007','http://snomed.info/sct','Rickettsia japonica (organism)','114220007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_114221006','114221006','http://snomed.info/sct','Rickettsia massiliae (organism)','114221006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_117270002','117270002','http://snomed.info/sct','Ribosomal ribonucleic acid of Streptococcus agalactiae (substance)','117270002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_120978001','120978001','http://snomed.info/sct','Antigen of Streptococcus agalactiae (substance)','120978001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_18054009','18054009','http://snomed.info/sct','Rickettsia rickettsii (organism)','18054009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_243360008','243360008','http://snomed.info/sct','Ehrlichia ewingii (organism)','243360008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_32691002','32691002','http://snomed.info/sct','Rickettsia conorii (organism)','32691002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_43492007','43492007','http://snomed.info/sct','Streptococcus agalactiae (organism)','43492007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_437822006','437822006','http://snomed.info/sct','Rickettsia honei (organism)','437822006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_437823001','437823001','http://snomed.info/sct','Rickettsia slovaca (organism)','437823001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_59250001','59250001','http://snomed.info/sct','Ehrlichia chaffeensis (organism)','59250001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_698164000','698164000','http://snomed.info/sct','Streptococcus agalactiae serotype Ia (organism)','698164000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_698165004','698165004','http://snomed.info/sct','Streptococcus agalactiae serotype Ia/c (organism)','698165004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_698166003','698166003','http://snomed.info/sct','Streptococcus agalactiae serotype Ib (organism)','698166003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_698167007','698167007','http://snomed.info/sct','Streptococcus agalactiae serotype Ib/c (organism)','698167007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_698168002','698168002','http://snomed.info/sct','Streptococcus agalactiae serotype II (organism)','698168002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_698169005','698169005','http://snomed.info/sct','Streptococcus agalactiae serotype II/c (organism)','698169005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_698170006','698170006','http://snomed.info/sct','Streptococcus agalactiae serotype II/R (organism)','698170006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_698171005','698171005','http://snomed.info/sct','Streptococcus agalactiae serotype III (organism)','698171005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_698172003','698172003','http://snomed.info/sct','Streptococcus agalactiae serotype III/c (organism)','698172003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_698173008','698173008','http://snomed.info/sct','Streptococcus agalactiae serotype III/R (organism)','698173008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_698174002','698174002','http://snomed.info/sct','Streptococcus agalactiae serotype IV (organism)','698174002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_698177009','698177009','http://snomed.info/sct','Streptococcus agalactiae serotype V (organism)','698177009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_698178004','698178004','http://snomed.info/sct','Streptococcus agalactiae serotype V/c (organism)','698178004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_698179007','698179007','http://snomed.info/sct','Streptococcus agalactiae serotype V/R (organism)','698179007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_698180005','698180005','http://snomed.info/sct','Streptococcus agalactiae serotype VII (organism)','698180005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_698181009','698181009','http://snomed.info/sct','Streptococcus agalactiae serotype VIII (organism)','698181009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_708437008','708437008','http://snomed.info/sct','Deoxyribonucleic acid of Streptococcus agalactiae (substance)','708437008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_713924007','713924007','http://snomed.info/sct','Non-hemolytic Streptococcus agalactiae (organism)','713924007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_715357003','715357003','http://snomed.info/sct','Streptococcus agalactiae serotype VI (organism)','715357003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_715358008','715358008','http://snomed.info/sct','Streptococcus agalactiae serotype IX (organism)','715358008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_77199003','77199003','http://snomed.info/sct','Rickettsia montanensis (organism)','77199003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_85288000','85288000','http://snomed.info/sct','Rickettsia sibirica (organism)','85288000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_85738007','85738007','http://snomed.info/sct','Rickettsia parkeri (organism)','85738007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_718686007','718686007','http://snomed.info/sct','Deoxyribonucleic acid of Shigella species or Enteroinvasive Escherichia coli detected (finding)','718686007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_117187006','117187006','http://snomed.info/sct','Ribosomal ribonucleic acid of Listeria monocytogenes (substance)','117187006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_36094007','36094007','http://snomed.info/sct','Listeria monocytogenes (organism)','36094007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_450536000','450536000','http://snomed.info/sct','Listeria monocytogenes serotype 1/2a (organism)','450536000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_450537009','450537009','http://snomed.info/sct','Listeria monocytogenes serotype 1/2b (organism)','450537009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_450538004','450538004','http://snomed.info/sct','Listeria monocytogenes serotype 1/2c (organism)','450538004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_450539007','450539007','http://snomed.info/sct','Listeria monocytogenes serotype 4b (organism)','450539007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_450540009','450540009','http://snomed.info/sct','Listeria monocytogenes serotype 3a (organism)','450540009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_450541008','450541008','http://snomed.info/sct','Listeria monocytogenes serotype 3b (organism)','450541008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_450542001','450542001','http://snomed.info/sct','Listeria monocytogenes serotype 3c (organism)','450542001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_450543006','450543006','http://snomed.info/sct','Listeria monocytogenes serotype 4a (organism)','450543006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_450544000','450544000','http://snomed.info/sct','Listeria monocytogenes serotype 4c (organism)','450544000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_450545004','450545004','http://snomed.info/sct','Listeria monocytogenes serotype 4ab (organism)','450545004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_450546003','450546003','http://snomed.info/sct','Listeria monocytogenes serotype 4d (organism)','450546003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_450547007','450547007','http://snomed.info/sct','Listeria monocytogenes serotype 4e (organism)','450547007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_450548002','450548002','http://snomed.info/sct','Listeria monocytogenes serotype 7 (organism)','450548002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_698150000','698150000','http://snomed.info/sct','Listeria monocytogenes serotype 4bx (organism)','698150000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_708345004','708345004','http://snomed.info/sct','Deoxyribonucleic acid of Listeria monocytogenes (substance)','708345004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1562_103510000','103510000','http://snomed.info/sct','Bartonella henselae (organism)','103510000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_1119221002','1119221002','http://snomed.info/sct','Antigen of Streptococcus pneumoniae Danish serotype 2 capsular polysaccharide (substance)','1119221002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_1119222009','1119222009','http://snomed.info/sct','Antigen of Streptococcus pneumoniae Danish serotype 5 capsular polysaccharide (substance)','1119222009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_1119223004','1119223004','http://snomed.info/sct','Antigen of Streptococcus pneumoniae Danish serotype 9V capsular polysaccharide (substance)','1119223004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_1119224005','1119224005','http://snomed.info/sct','Antigen of Streptococcus pneumoniae Danish serotype 10A capsular polysaccharide (substance)','1119224005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_1119225006','1119225006','http://snomed.info/sct','Antigen of Streptococcus pneumoniae Danish serotype 11A capsular polysaccharide (substance)','1119225006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_1119226007','1119226007','http://snomed.info/sct','Antigen of Streptococcus pneumoniae Danish serotype 15B capsular polysaccharide (substance)','1119226007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_1119227003','1119227003','http://snomed.info/sct','Antigen of Streptococcus pneumoniae Danish serotype 17F capsular polysaccharide (substance)','1119227003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_1119228008','1119228008','http://snomed.info/sct','Antigen of Streptococcus pneumoniae Danish serotype 19A capsular polysaccharide (substance)','1119228008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_1119229000','1119229000','http://snomed.info/sct','Antigen of Streptococcus pneumoniae serogroup 20 capsular polysaccharide (substance)','1119229000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_1119230005','1119230005','http://snomed.info/sct','Antigen of Streptococcus pneumoniae Danish serotype 33F capsular polysaccharide (substance)','1119230005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_1119231009','1119231009','http://snomed.info/sct','Antigen of Streptococcus pneumoniae Danish serotype 19A capsular polysaccharide conjugated (substance)','1119231009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_127121000119101','127121000119101','http://snomed.info/sct','Sepsis without acute organ dysfunction caused by Streptococcus pneumoniae (disorder)','127121000119101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_468341000124103','468341000124103','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 35D (organism)','468341000124103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_103497003','103497003','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 3 (organism)','103497003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_103498008','103498008','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 14 (organism)','103498008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_103499000','103499000','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 7F (organism)','103499000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_103500009','103500009','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 9N (organism)','103500009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_115303001','115303001','http://snomed.info/sct','Streptococcus pneumoniae capsular polysaccharide virulence factor (substance)','115303001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_115304007','115304007','http://snomed.info/sct','Antigen of Streptococcus pneumoniae Danish serotype 6A capsular polysaccharide (substance)','115304007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_115432002','115432002','http://snomed.info/sct','Antigen of Streptococcus pneumoniae Danish serotype 6B capsular polysaccharide (substance)','115432002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_115434001','115434001','http://snomed.info/sct','Antigen of Streptococcus pneumoniae Danish serotype 12F capsular polysaccharide (substance)','115434001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_115435000','115435000','http://snomed.info/sct','Antigen of Streptococcus pneumoniae Danish serotype 18C capsular polysaccharide (substance)','115435000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_115436004','115436004','http://snomed.info/sct','Antigen of Streptococcus pneumoniae Danish serotype 19F capsular polysaccharide (substance)','115436004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_115437008','115437008','http://snomed.info/sct','Antigen of Streptococcus pneumoniae Danish serotype 23F capsular polysaccharide (substance)','115437008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_115439006','115439006','http://snomed.info/sct','Antigen of Streptococcus pneumoniae Danish serotype 7F capsular polysaccharide (substance)','115439006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_115440008','115440008','http://snomed.info/sct','Antigen of Streptococcus pneumoniae Danish serotype 9N capsular polysaccharide (substance)','115440008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_115578007','115578007','http://snomed.info/sct','Antigen of Streptococcus pneumoniae capsular polysaccharide (substance)','115578007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_116500005','116500005','http://snomed.info/sct','Streptococcus pneumoniae serogroup 12 (organism)','116500005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_120985002','120985002','http://snomed.info/sct','Antigen of Streptococcus pneumoniae (substance)','120985002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_121175008','121175008','http://snomed.info/sct','Ribosomal ribonucleic acid of Streptococcus pneumoniae (substance)','121175008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_127541006','127541006','http://snomed.info/sct','Streptococcus pneumoniae serogroup 19 (organism)','127541006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_131361001','131361001','http://snomed.info/sct','Streptococcus pneumoniae serogroup 17 (organism)','131361001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_131362008','131362008','http://snomed.info/sct','Streptococcus pneumoniae serogroup 16 (organism)','131362008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_131363003','131363003','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 29 (organism)','131363003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_1841000221107','1841000221107','http://snomed.info/sct','Antigen of Streptococcus pneumoniae Danish serotype 19A capsular polysaccharide unconjugated (substance)','1841000221107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_311000221102','311000221102','http://snomed.info/sct','Antigen of Streptococcus pneumoniae Danish serotype 2 capsular polysaccharide unconjugated (substance)','311000221102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_321000221107','321000221107','http://snomed.info/sct','Antigen of Streptococcus pneumoniae Danish serotype 5 capsular polysaccharide unconjugated (substance)','321000221107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_331000221105','331000221105','http://snomed.info/sct','Antigen of Streptococcus pneumoniae Danish serotype 9V capsular polysaccharide unconjugated (substance)','331000221105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_341000221103','341000221103','http://snomed.info/sct','Antigen of Streptococcus pneumoniae Danish serotype 10A capsular polysaccharide unconjugated (substance)','341000221103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_351000221101','351000221101','http://snomed.info/sct','Antigen of Streptococcus pneumoniae Danish serotype 11A capsular polysaccharide unconjugated (substance)','351000221101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_361000221104','361000221104','http://snomed.info/sct','Antigen of Streptococcus pneumoniae Danish serotype 15B capsular polysaccharide unconjugated (substance)','361000221104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_363767003','363767003','http://snomed.info/sct','Streptococcus pneumoniae serogroup 22 (organism)','363767003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_363768008','363768008','http://snomed.info/sct','Streptococcus pneumoniae serogroup 11 (organism)','363768008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_371000221108','371000221108','http://snomed.info/sct','Antigen of Streptococcus pneumoniae Danish serotype 17F capsular polysaccharide unconjugated (substance)','371000221108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_391000221109','391000221109','http://snomed.info/sct','Antigen of Streptococcus pneumoniae Danish serotype 22F capsular polysaccharide unconjugated (substance)','391000221109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_401000221106','401000221106','http://snomed.info/sct','Antigen of Streptococcus pneumoniae Danish serotype 33F capsular polysaccharide unconjugated (substance)','401000221106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_409806004','409806004','http://snomed.info/sct','Multiple drug-resistant Streptococcus pneumoniae (organism)','409806004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_409807008','409807008','http://snomed.info/sct','Penicillin resistant Streptococcus pneumoniae (organism)','409807008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_411000221109','411000221109','http://snomed.info/sct','Antigen of Streptococcus pneumoniae Danish serotype 1 capsular polysaccharide conjugated (substance)','411000221109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_415607008','415607008','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 1 (organism)','415607008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_415608003','415608003','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 10A (organism)','415608003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_415609006','415609006','http://snomed.info/sct','Streptococcus pneumoniae serogroup 15 (organism)','415609006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_415610001','415610001','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 15B (organism)','415610001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_415611002','415611002','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 19A (organism)','415611002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_415613004','415613004','http://snomed.info/sct','Streptococcus pneumoniae serogroup 23 (organism)','415613004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_415614005','415614005','http://snomed.info/sct','Streptococcus pneumoniae serogroup 33 (organism)','415614005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_415616007','415616007','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 4 (organism)','415616007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_415618008','415618008','http://snomed.info/sct','Streptococcus pneumoniae serogroup 6 (organism)','415618008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_415619000','415619000','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 7A (organism)','415619000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_415621005','415621005','http://snomed.info/sct','Streptococcus pneumoniae serogroup 10 (organism)','415621005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_417270004','417270004','http://snomed.info/sct','Streptococcus pneumoniae serogroup 9 (organism)','417270004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_418147001','418147001','http://snomed.info/sct','Streptococcus pneumoniae serogroup 18 (organism)','418147001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_418217008','418217008','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 23F (organism)','418217008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_418322006','418322006','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 9V (organism)','418322006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_418451009','418451009','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 18C (organism)','418451009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_418759005','418759005','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 8 (organism)','418759005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_418883007','418883007','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 9L (organism)','418883007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_418902003','418902003','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 6B (organism)','418902003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_419071000','419071000','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 11A (organism)','419071000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_419167001','419167001','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 9A (organism)','419167001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_419305002','419305002','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 12F (organism)','419305002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_419527005','419527005','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 2 (organism)','419527005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_419871001','419871001','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 5 (organism)','419871001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_419915004','419915004','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 19F (organism)','419915004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_420138009','420138009','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 17F (organism)','420138009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_420148006','420148006','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 33F (organism)','420148006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_420216004','420216004','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 22F (organism)','420216004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_427741005','427741005','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 23B (organism)','427741005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_428124003','428124003','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 10B (organism)','428124003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_428366009','428366009','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 13 (organism)','428366009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_429569005','429569005','http://snomed.info/sct','Streptococcus pneumoniae serogroup 35 (organism)','429569005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_431000221101','431000221101','http://snomed.info/sct','Antigen of Streptococcus pneumoniae Danish serotype 4 capsular polysaccharide conjugated (substance)','431000221101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_441000221108','441000221108','http://snomed.info/sct','Antigen of Streptococcus pneumoniae Danish serotype 5 capsular polysaccharide conjugated (substance)','441000221108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_441523000','441523000','http://snomed.info/sct','Streptococcus pneumoniae serogroup 7 (organism)','441523000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_441566007','441566007','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 22A (organism)','441566007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_441602004','441602004','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 10F (organism)','441602004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_442049002','442049002','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 33A (organism)','442049002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_443155000','443155000','http://snomed.info/sct','Streptococcus pneumoniae serogroup 28 (organism)','443155000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_443156004','443156004','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 6A (organism)','443156004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_443239003','443239003','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 15A (organism)','443239003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_443240001','443240001','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 15C (organism)','443240001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_443670000','443670000','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 31 (organism)','443670000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_444352000','444352000','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 28A (organism)','444352000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_444353005','444353005','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 28F (organism)','444353005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_461000221107','461000221107','http://snomed.info/sct','Antigen of Streptococcus pneumoniae Danish serotype 6B capsular polysaccharide conjugated (substance)','461000221107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_471000221103','471000221103','http://snomed.info/sct','Antigen of Streptococcus pneumoniae Danish serotype 7F capsular polysaccharide conjugated (substance)','471000221103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_481000221100','481000221100','http://snomed.info/sct','Antigen of Streptococcus pneumoniae Danish serotype 9V capsular polysaccharide conjugated (substance)','481000221100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_491000221102','491000221102','http://snomed.info/sct','Antigen of Streptococcus pneumoniae Danish serotype 14 capsular polysaccharide conjugated (substance)','491000221102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_501000221107','501000221107','http://snomed.info/sct','Antigen of Streptococcus pneumoniae Danish serotype 18C capsular polysaccharide conjugated (substance)','501000221107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_521000221100','521000221100','http://snomed.info/sct','Antigen of Streptococcus pneumoniae Danish serotype 19F capsular polysaccharide conjugated (substance)','521000221100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_531000221102','531000221102','http://snomed.info/sct','Antigen of Streptococcus pneumoniae Danish serotype 23F capsular polysaccharide conjugated (substance)','531000221102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_698095005','698095005','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 6C (organism)','698095005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_698096006','698096006','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 7C (organism)','698096006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_698097002','698097002','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 21 (organism)','698097002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_698098007','698098007','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 23A (organism)','698098007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_698099004','698099004','http://snomed.info/sct','Streptococcus pneumoniae serogroup 24 (organism)','698099004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_698102004','698102004','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 7B (organism)','698102004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_698103009','698103009','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 10C (organism)','698103009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_698104003','698104003','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 11B (organism)','698104003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_698105002','698105002','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 11C (organism)','698105002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_698106001','698106001','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 11D (organism)','698106001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_698107005','698107005','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 11F (organism)','698107005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_698108000','698108000','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 12A (organism)','698108000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_698109008','698109008','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 12B (organism)','698109008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_698110003','698110003','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 15F (organism)','698110003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_698111004','698111004','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 16A (organism)','698111004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_698112006','698112006','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 16F (organism)','698112006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_698113001','698113001','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 17A (organism)','698113001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_698114007','698114007','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 18A (organism)','698114007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_698115008','698115008','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 18B (organism)','698115008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_698116009','698116009','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 18F (organism)','698116009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_698117000','698117000','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 19B (organism)','698117000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_698118005','698118005','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 19C (organism)','698118005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_698119002','698119002','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 24A (organism)','698119002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_698120008','698120008','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 24B (organism)','698120008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_698121007','698121007','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 24F (organism)','698121007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_698122000','698122000','http://snomed.info/sct','Streptococcus pneumoniae serogroup 25 (organism)','698122000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_698123005','698123005','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 25A (organism)','698123005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_698124004','698124004','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 25F (organism)','698124004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_698125003','698125003','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 27 (organism)','698125003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_698126002','698126002','http://snomed.info/sct','Streptococcus pneumoniae serogroup 32 (organism)','698126002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_698127006','698127006','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 32A (organism)','698127006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_698128001','698128001','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 32F (organism)','698128001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_698129009','698129009','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 33B (organism)','698129009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_698130004','698130004','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 33C (organism)','698130004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_698131000','698131000','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 33D (organism)','698131000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_698132007','698132007','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 35A (organism)','698132007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_698133002','698133002','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 35B (organism)','698133002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_698134008','698134008','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 35C (organism)','698134008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_698135009','698135009','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 35F (organism)','698135009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_698136005','698136005','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 36 (organism)','698136005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_698137001','698137001','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 37 (organism)','698137001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_698138006','698138006','http://snomed.info/sct','Streptococcus pneumoniae serogroup 41 (organism)','698138006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_698139003','698139003','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 41A (organism)','698139003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_698140001','698140001','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 41F (organism)','698140001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_698146007','698146007','http://snomed.info/sct','Streptococcus pneumoniae serogroup 47 (organism)','698146007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_698147003','698147003','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 47A (organism)','698147003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_698148008','698148008','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 47F (organism)','698148008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_708447006','708447006','http://snomed.info/sct','Deoxyribonucleic acid of Streptococcus pneumoniae (substance)','708447006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_714078004','714078004','http://snomed.info/sct','Antigen of Streptococcus pneumoniae capsular polysaccharide conjugated (substance)','714078004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_719028004','719028004','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 6D (organism)','719028004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_763388000','763388000','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 6E (organism)','763388000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_763389008','763389008','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 6F (organism)','763389008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_763390004','763390004','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 6G (organism)','763390004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_763391000','763391000','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 6H (organism)','763391000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_763392007','763392007','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 11E (organism)','763392007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_763393002','763393002','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 33E (organism)','763393002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_763395009','763395009','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 20A (organism)','763395009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_763396005','763396005','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 20B (organism)','763396005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_767201007','767201007','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 34 (organism)','767201007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_767202000','767202000','http://snomed.info/sct','Streptococcus pneumoniae serogroup 20 (organism)','767202000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_767204004','767204004','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 38 (organism)','767204004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_767208001','767208001','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 39 (organism)','767208001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_767274003','767274003','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 40 (organism)','767274003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_767275002','767275002','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 48 (organism)','767275002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_767281005','767281005','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 46 (organism)','767281005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_767282003','767282003','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 45 (organism)','767282003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_767283008','767283008','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 44 (organism)','767283008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_767284002','767284002','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 43 (organism)','767284002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_767285001','767285001','http://snomed.info/sct','Streptococcus pneumoniae Danish serotype 42 (organism)','767285001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_767555007','767555007','http://snomed.info/sct','Antigen of Streptococcus pneumoniae Danish serotype 7A capsular polysaccharide (substance)','767555007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_767556008','767556008','http://snomed.info/sct','Antigen of Streptococcus pneumoniae Danish serotype 8 capsular polysaccharide (substance)','767556008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_767567009','767567009','http://snomed.info/sct','Antigen of Streptococcus pneumoniae Danish serotype 14 capsular polysaccharide (substance)','767567009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_767569007','767569007','http://snomed.info/sct','Antigen of Streptococcus pneumoniae Danish serotype 3 capsular polysaccharide (substance)','767569007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_767571007','767571007','http://snomed.info/sct','Antigen of Streptococcus pneumoniae Danish serotype 1 capsular polysaccharide (substance)','767571007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_767572000','767572000','http://snomed.info/sct','Antigen of Streptococcus pneumoniae Danish serotype 4 capsular polysaccharide (substance)','767572000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_838460002','838460002','http://snomed.info/sct','Antigen of Streptococcus pneumoniae serogroup 20 capsular polysaccharide unconjugated (substance)','838460002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.306_9861002','9861002','http://snomed.info/sct','Streptococcus pneumoniae (organism)','9861002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.549_117283001','117283001','http://snomed.info/sct','Ribonucleic acid of Saint Louis encephalitis virus (substance)','117283001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.549_121091008','121091008','http://snomed.info/sct','Antigen of Saint Louis encephalitis virus (substance)','121091008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.549_58432001','58432001','http://snomed.info/sct','Saint Louis encephalitis virus (organism)','58432001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.945_112368004','112368004','http://snomed.info/sct','Genus Lyssavirus (organism)','112368004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.945_120980007','120980007','http://snomed.info/sct','Antigen of Rabies lyssavirus (substance)','120980007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.945_12551003','12551003','http://snomed.info/sct','Mokola virus (organism)','12551003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.945_32052006','32052006','http://snomed.info/sct','Lagos bat virus (organism)','32052006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.945_426972006','426972006','http://snomed.info/sct','Australian bat lyssavirus (organism)','426972006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.945_450617000','450617000','http://snomed.info/sct','West caucasian bat virus (organism)','450617000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.945_450618005','450618005','http://snomed.info/sct','Irkut virus (organism)','450618005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.945_450619002','450619002','http://snomed.info/sct','Khujand virus (organism)','450619002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.945_450620008','450620008','http://snomed.info/sct','Aravan virus (organism)','450620008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.945_450805000','450805000','http://snomed.info/sct','European bat lyssavirus 1 (organism)','450805000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.945_450806004','450806004','http://snomed.info/sct','European bat lyssavirus 2 (organism)','450806004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.945_59881000','59881000','http://snomed.info/sct','Rabies virus (organism)','59881000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.945_706924008','706924008','http://snomed.info/sct','Ribonucleic acid of Rabies virus (substance)','706924008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.945_72296007','72296007','http://snomed.info/sct','Duvenhage virus (organism)','72296007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1733_112281009','112281009','http://snomed.info/sct','Clostridium perfringens, type E (organism)','112281009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1733_19610005','19610005','http://snomed.info/sct','Clostridium perfringens, type C (organism)','19610005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1733_22782003','22782003','http://snomed.info/sct','Clostridium perfringens, type A (organism)','22782003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1733_61957008','61957008','http://snomed.info/sct','Clostridium perfringens, type D (organism)','61957008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1733_74081001','74081001','http://snomed.info/sct','Clostridium perfringens, type B (organism)','74081001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1733_8331005','8331005','http://snomed.info/sct','Clostridium perfringens (organism)','8331005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2029_103512008','103512008','http://snomed.info/sct','Bartonella vinsonii (organism)','103512008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2029_103513003','103513003','http://snomed.info/sct','Bartonella elizabethae (organism)','103513003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2029_114223009','114223009','http://snomed.info/sct','Bartonella clarridgeiae (organism)','114223009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2029_114224003','114224003','http://snomed.info/sct','Bartonella doshiae (organism)','114224003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2029_114225002','114225002','http://snomed.info/sct','Bartonella grahamii (organism)','114225002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2029_114226001','114226001','http://snomed.info/sct','Bartonella talpae (organism)','114226001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2029_114227005','114227005','http://snomed.info/sct','Bartonella taylorii (organism)','114227005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2029_114228000','114228000','http://snomed.info/sct','Bartonella vinsonii ss berkhoffii (organism)','114228000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2029_114229008','114229008','http://snomed.info/sct','Bartonella vinsonii ss vinsonii (organism)','114229008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2029_114230003','114230003','http://snomed.info/sct','Bartonella peromysci (organism)','114230003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2029_3381000146103','3381000146103','http://snomed.info/sct','Bartonella japonica (organism)','3381000146103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2029_35825008','35825008','http://snomed.info/sct','Cat scratch disease antigen (substance)','35825008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2029_417657001','417657001','http://snomed.info/sct','Bartonella vinsonii subsp. arupensis (organism)','417657001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2029_431120006','431120006','http://snomed.info/sct','Bartonella tribocorum (organism)','431120006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2029_431122003','431122003','http://snomed.info/sct','Bartonella bovis (organism)','431122003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2029_431123008','431123008','http://snomed.info/sct','Bartonella chomelii (organism)','431123008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2029_431124002','431124002','http://snomed.info/sct','Bartonella schoenbuchensis (organism)','431124002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2029_431148006','431148006','http://snomed.info/sct','Bartonella birtlesii (organism)','431148006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2029_431156009','431156009','http://snomed.info/sct','Bartonella capreoli (organism)','431156009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2029_431157000','431157000','http://snomed.info/sct','Bartonella alsatica (organism)','431157000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2029_62496009','62496009','http://snomed.info/sct','Genus Bartonella (organism)','62496009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2029_708156008','708156008','http://snomed.info/sct','Deoxyribonucleic acid of Bartonella (substance)','708156008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2029_718788002','718788002','http://snomed.info/sct','Bartonella callosciuri (organism)','718788002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2029_718789005','718789005','http://snomed.info/sct','Bartonella jaculi (organism)','718789005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2029_718790001','718790001','http://snomed.info/sct','Bartonella koehlerae (organism)','718790001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2029_718791002','718791002','http://snomed.info/sct','Bartonella senegalensis (organism)','718791002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2029_103511001','103511001','http://snomed.info/sct','Bartonella quintana (organism)','103511001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2029_121249004','121249004','http://snomed.info/sct','Deoxyribonucleic acid of Bartonella quintana (substance)','121249004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2029_243352007','243352007','http://snomed.info/sct','Bartonella bacilliformis (organism)','243352007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2029_707632005','707632005','http://snomed.info/sct','Ribosomal ribonucleic acid of Bartonella quintana (substance)','707632005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2029_708155007','708155007','http://snomed.info/sct','Deoxyribonucleic acid of Bartonella henselae (substance)','708155007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2029_103510000','103510000','http://snomed.info/sct','Bartonella henselae (organism)','103510000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1734_116557000','116557000','http://snomed.info/sct','Clostridium perfringens enterotoxin (substance)','116557000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1734_116558005','116558005','http://snomed.info/sct','Clostridium perfringens alpha toxin (substance)','116558005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1734_116559002','116559002','http://snomed.info/sct','Clostridium perfringens beta toxin (substance)','116559002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1734_116560007','116560007','http://snomed.info/sct','Clostridium perfringens epsilon toxin (substance)','116560007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1734_116561006','116561006','http://snomed.info/sct','Clostridium perfringens iota toxin (substance)','116561006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1734_71422000','71422000','http://snomed.info/sct','Clostridium perfringens toxin (substance)','71422000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1975_15700002','15700002','http://snomed.info/sct','Baylisascaris (organism)','15700002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1975_59496007','59496007','http://snomed.info/sct','Baylisascaris procyonis (organism)','59496007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2305_83410001','83410001','http://snomed.info/sct','Gram-negative diplococcus (organism)','83410001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.370_112351003','112351003','http://snomed.info/sct','Vibrio cholerae serotype Inaba (organism)','112351003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.370_125048009','125048009','http://snomed.info/sct','Vibrio cholerae serogroup O139 (organism)','125048009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.370_24763006','24763006','http://snomed.info/sct','Vibrio cholerae serotype Hikojima (organism)','24763006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.370_255821009','255821009','http://snomed.info/sct','Cholera toxin (substance)','255821009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.370_302572009','302572009','http://snomed.info/sct','Vibrio cholerae O1 El Tor Inaba (organism)','302572009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.370_302573004','302573004','http://snomed.info/sct','Vibrio cholerae O1 El Tor Ogawa (organism)','302573004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.370_302574005','302574005','http://snomed.info/sct','Vibrio cholerae O1 El Tor Hikojima (organism)','302574005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.370_302575006','302575006','http://snomed.info/sct','Vibrio cholerae O1 classical Inaba (organism)','302575006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.370_302576007','302576007','http://snomed.info/sct','Vibrio cholerae O1 classical Ogawa (organism)','302576007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.370_302577003','302577003','http://snomed.info/sct','Vibrio cholerae O1 classical Hikojima (organism)','302577003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.370_571000221104','571000221104','http://snomed.info/sct','Antigen of Vibrio cholerae (substance)','571000221104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.370_58735003','58735003','http://snomed.info/sct','Vibrio cholerae, El Tor biotype (organism)','58735003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.370_62987004','62987004','http://snomed.info/sct','Vibrio cholerae, O1 (organism)','62987004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.370_66635002','66635002','http://snomed.info/sct','Vibrio cholerae serotype Ogawa (organism)','66635002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.370_708500004','708500004','http://snomed.info/sct','Deoxyribonucleic acid of Vibrio cholerae (substance)','708500004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.370_709157005','709157005','http://snomed.info/sct','Antigen of Vibrio cholerae toxin (substance)','709157005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.370_710347001','710347001','http://snomed.info/sct','Toxigenic Vibrio cholerae, O1 (organism)','710347001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.370_76436009','76436009','http://snomed.info/sct','Vibrio cholerae, classical biotype (organism)','76436009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.370_75953000','75953000','http://snomed.info/sct','Vibrio cholerae (organism)','75953000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.371_121019009','121019009','http://snomed.info/sct','Antigen of Cryptosporidium (substance)','121019009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.371_14974007','14974007','http://snomed.info/sct','Cryptosporidium bovis (organism)','14974007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.371_416762004','416762004','http://snomed.info/sct','Cryptosporidium canis (organism)','416762004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.371_416961000','416961000','http://snomed.info/sct','Cryptosporidium felis (organism)','416961000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.371_417722006','417722006','http://snomed.info/sct','Cryptosporidium hominis (organism)','417722006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.371_42491000284109','42491000284109','http://snomed.info/sct','Cryptosporidium ubiquitum (organism)','42491000284109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.371_42501000284100','42501000284100','http://snomed.info/sct','Cryptosporidium cuniculus (organism)','42501000284100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.371_46665004','46665004','http://snomed.info/sct','Cryptosporidium meleagridis (organism)','46665004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.371_470041000124107','470041000124107','http://snomed.info/sct','Cryptosporidium fayeri (organism)','470041000124107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.371_4779006','4779006','http://snomed.info/sct','Cryptosporidium muris (organism)','4779006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.371_48809002','48809002','http://snomed.info/sct','Cryptosporidium tyzzeri (organism)','48809002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.371_50617004','50617004','http://snomed.info/sct','Cryptosporidium wrairi (organism)','50617004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.371_51504002','51504002','http://snomed.info/sct','Cryptosporidium parvum (organism)','51504002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.371_608927008','608927008','http://snomed.info/sct','Trophozoite of genus Cryptosporidium (organism)','608927008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.371_608957004','608957004','http://snomed.info/sct','Oocyst of genus Cryptosporidium (organism)','608957004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.371_65521002','65521002','http://snomed.info/sct','Cryptosporidium crotalis (organism)','65521002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.371_708227001','708227001','http://snomed.info/sct','Deoxyribonucleic acid of Cryptosporidium hominis (substance)','708227001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.371_708228006','708228006','http://snomed.info/sct','Deoxyribonucleic acid of Cryptosporidium parvum (substance)','708228006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.371_708229003','708229003','http://snomed.info/sct','Deoxyribonucleic acid of Cryptosporidium (substance)','708229003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.371_70892006','70892006','http://snomed.info/sct','Cryptosporidium agni (organism)','70892006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.371_709314006','709314006','http://snomed.info/sct','Antigen of Cryptosporidium parvum (substance)','709314006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.371_7307002','7307002','http://snomed.info/sct','Cryptosporidium baileyi (organism)','7307002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.371_83744009','83744009','http://snomed.info/sct','Cryptosporidium nasorum (organism)','83744009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.371_83821001','83821001','http://snomed.info/sct','Genus Cryptosporidium (organism)','83821001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.494_16336005','16336005','http://snomed.info/sct','Ehrlichia ondiri (organism)','16336005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.494_27334000','27334000','http://snomed.info/sct','Genus Ehrlichia (organism)','27334000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.494_312329009','312329009','http://snomed.info/sct','Ehrlichia muris (organism)','312329009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.494_421964005','421964005','http://snomed.info/sct','Ehrlichia ruminantium (organism)','421964005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.494_464881000124108','464881000124108','http://snomed.info/sct','Ehrlichia japonica (organism)','464881000124108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.494_467101000124102','467101000124102','http://snomed.info/sct','Ehrlichia muris subspecies eauclairensis (organism)','467101000124102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.494_708235003','708235003','http://snomed.info/sct','Deoxyribonucleic acid of Ehrlichia chaffeensis (substance)','708235003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.494_708236002','708236002','http://snomed.info/sct','Deoxyribonucleic acid of Ehrlichia ewingii (substance)','708236002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.494_708237006','708237006','http://snomed.info/sct','Deoxyribonucleic acid of Ehrlichia (substance)','708237006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.494_709384000','709384000','http://snomed.info/sct','Antigen of Ehrlichia chaffeensis (substance)','709384000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.494_72834004','72834004','http://snomed.info/sct','Ehrlichia ovina (organism)','72834004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.494_76548005','76548005','http://snomed.info/sct','Ehrlichia bovis (organism)','76548005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.494_87643008','87643008','http://snomed.info/sct','Ehrlichia canis (organism)','87643008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.494_243360008','243360008','http://snomed.info/sct','Ehrlichia ewingii (organism)','243360008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.494_59250001','59250001','http://snomed.info/sct','Ehrlichia chaffeensis (organism)','59250001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.495_19038003','19038003','http://snomed.info/sct','Anaplasma marginale (organism)','19038003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.495_20128003','20128003','http://snomed.info/sct','Anaplasma centrale (organism)','20128003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.495_33043009','33043009','http://snomed.info/sct','Anaplasma caudatum (organism)','33043009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.495_3351007','3351007','http://snomed.info/sct','Genus Anaplasma (organism)','3351007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.495_420668004','420668004','http://snomed.info/sct','Anaplasma bovis (organism)','420668004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.495_423848007','423848007','http://snomed.info/sct','Anaplasma platys (organism)','423848007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.495_46208006','46208006','http://snomed.info/sct','Anaplasma ovis (organism)','46208006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.495_707630002','707630002','http://snomed.info/sct','Ribosomal ribonucleic acid of Anaplasma marginale (substance)','707630002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.495_708141004','708141004','http://snomed.info/sct','Deoxyribonucleic acid of Anaplasma marginale (substance)','708141004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.495_709215005','709215005','http://snomed.info/sct','Antigen of Anaplasma marginale (substance)','709215005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.495_420364006','420364006','http://snomed.info/sct','Anaplasma phagocytophilum (organism)','420364006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.495_708142006','708142006','http://snomed.info/sct','Deoxyribonucleic acid of Anaplasma phagocytophilum (substance)','708142006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.495_709166009','709166009','http://snomed.info/sct','Antigen of Anaplasma phagocytophilum (substance)','709166009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.375_103560006','103560006','http://snomed.info/sct','Cyclospora (organism)','103560006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.375_103561005','103561005','http://snomed.info/sct','Cyclospora cayetanensis (organism)','103561005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.375_608958009','608958009','http://snomed.info/sct','Oocyst of Cyclospora cayetanensis (organism)','608958009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.375_699434006','699434006','http://snomed.info/sct','Oocyst of genus Cyclospora (organism)','699434006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.375_708230008','708230008','http://snomed.info/sct','Deoxyribonucleic acid of Cyclospora cercopitheci (substance)','708230008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.375_708231007','708231007','http://snomed.info/sct','Deoxyribonucleic acid of Cyclospora cayetanensis (substance)','708231007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.375_708232000','708232000','http://snomed.info/sct','Deoxyribonucleic acid of Cyclospora colobi (substance)','708232000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.375_708233005','708233005','http://snomed.info/sct','Deoxyribonucleic acid of Cyclospora papionis (substance)','708233005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.375_709315007','709315007','http://snomed.info/sct','Antigen of Cyclospora (substance)','709315007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1212_541051000124105','541051000124105','http://snomed.info/sct','Carbapenem resistant Providencia (organism)','541051000124105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1212_541071000124100','541071000124100','http://snomed.info/sct','Carbapenem resistant Proteus vulgaris (organism)','541071000124100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1212_541111000124108','541111000124108','http://snomed.info/sct','Carbapenem resistant Morganella morganii (organism)','541111000124108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1212_712662001','712662001','http://snomed.info/sct','Carbapenem resistant Enterobacteriaceae (organism)','712662001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1212_719793006','719793006','http://snomed.info/sct','Carbapenem resistant Proteus mirabilis (organism)','719793006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1212_816049003','816049003','http://snomed.info/sct','Carbapenem-resistant Serratia marcescens (organism)','816049003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1212_446870005','446870005','http://snomed.info/sct','Carbapenem resistant Klebsiella pneumoniae (organism)','446870005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1212_714007005','714007005','http://snomed.info/sct','Carbapenem resistant Enterobacter cloacae (organism)','714007005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1212_715307006','715307006','http://snomed.info/sct','Carbapenem resistant Escherichia coli (organism)','715307006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1212_719792001','719792001','http://snomed.info/sct','Carbapenem resistant Klebsiella oxytoca (organism)','719792001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1212_734200008','734200008','http://snomed.info/sct','Carbapenem resistant Klebsiella aerogenes (organism)','734200008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1212_734201007','734201007','http://snomed.info/sct','Carbapenem resistant Enterobacter cloacae complex (organism)','734201007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_413643004','413643004','http://snomed.info/sct','Beta-hemolytic Streptococcus, group A (organism)','413643004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_414577006','414577006','http://snomed.info/sct','Large-colony-forming beta-hemolytic group A streptococci (organism)','414577006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_415534000','415534000','http://snomed.info/sct','Small-colony-forming beta-hemolytic group A streptococci (organism)','415534000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_121096003','121096003','http://snomed.info/sct','Antigen of Streptococcus pyogenes (substance)','121096003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_121176009','121176009','http://snomed.info/sct','Ribosomal ribonucleic acid of Streptococcus pyogenes (substance)','121176009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_26181000087102','26181000087102','http://snomed.info/sct','Streptococcus pyogenes type emm183 (organism)','26181000087102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_26191000087100','26191000087100','http://snomed.info/sct','Streptococcus pyogenes type emm169 (organism)','26191000087100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_26211000087101','26211000087101','http://snomed.info/sct','Streptococcus pyogenes type emm161 (organism)','26211000087101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_427814005','427814005','http://snomed.info/sct','Streptococcus pyogenes type emm28 (organism)','427814005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_427821005','427821005','http://snomed.info/sct','Streptococcus pyogenes type emm48 (organism)','427821005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_427822003','427822003','http://snomed.info/sct','Streptococcus pyogenes type emm4 (organism)','427822003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_427823008','427823008','http://snomed.info/sct','Streptococcus pyogenes type emm73 (organism)','427823008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_428238003','428238003','http://snomed.info/sct','Streptococcus pyogenes type emm2 (organism)','428238003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_428254000','428254000','http://snomed.info/sct','Streptococcus pyogenes type emm58 (organism)','428254000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_428541006','428541006','http://snomed.info/sct','Streptococcus pyogenes type emm14 (organism)','428541006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_428542004','428542004','http://snomed.info/sct','Streptococcus pyogenes type emm77 (organism)','428542004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_428793005','428793005','http://snomed.info/sct','Streptococcus pyogenes type emm12 (organism)','428793005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_428854005','428854005','http://snomed.info/sct','Streptococcus pyogenes type emm1 (organism)','428854005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_428855006','428855006','http://snomed.info/sct','Streptococcus pyogenes type emm90 (organism)','428855006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_429336006','429336006','http://snomed.info/sct','Streptococcus pyogenes type emm5 (organism)','429336006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_429337002','429337002','http://snomed.info/sct','Streptococcus pyogenes type emm89 (organism)','429337002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_438977000','438977000','http://snomed.info/sct','Streptococcus pyogenes type emm118 (organism)','438977000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_438978005','438978005','http://snomed.info/sct','Streptococcus pyogenes type emm44 (organism)','438978005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_439294004','439294004','http://snomed.info/sct','Streptococcus pyogenes type emm61 (organism)','439294004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_441723002','441723002','http://snomed.info/sct','Streptococcus pyogenes type emm76 (organism)','441723002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_442785005','442785005','http://snomed.info/sct','Streptococcus pyogenes type emm27 (organism)','442785005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_442786006','442786006','http://snomed.info/sct','Streptococcus pyogenes type emm26 (organism)','442786006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_442794004','442794004','http://snomed.info/sct','Streptococcus pyogenes type emm45 (organism)','442794004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_442799009','442799009','http://snomed.info/sct','Streptococcus pyogenes type emm41 (organism)','442799009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_442800008','442800008','http://snomed.info/sct','Streptococcus pyogenes type emm40 (organism)','442800008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_442801007','442801007','http://snomed.info/sct','Streptococcus pyogenes type emm39 (organism)','442801007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_442802000','442802000','http://snomed.info/sct','Streptococcus pyogenes type emm38 (organism)','442802000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_442809009','442809009','http://snomed.info/sct','Streptococcus pyogenes type emm99 (organism)','442809009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_442810004','442810004','http://snomed.info/sct','Streptococcus pyogenes type emm98 (organism)','442810004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_442812007','442812007','http://snomed.info/sct','Streptococcus pyogenes type emm37 (organism)','442812007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_442813002','442813002','http://snomed.info/sct','Streptococcus pyogenes type emm3 (organism)','442813002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_442814008','442814008','http://snomed.info/sct','Streptococcus pyogenes type emm97 (organism)','442814008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_442815009','442815009','http://snomed.info/sct','Streptococcus pyogenes type emm96 (organism)','442815009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_442816005','442816005','http://snomed.info/sct','Streptococcus pyogenes type emm46 (organism)','442816005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_442820009','442820009','http://snomed.info/sct','Streptococcus pyogenes type emm91 (organism)','442820009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_442821008','442821008','http://snomed.info/sct','Streptococcus pyogenes type emm9 (organism)','442821008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_442824000','442824000','http://snomed.info/sct','Streptococcus pyogenes type emm36 (organism)','442824000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_442825004','442825004','http://snomed.info/sct','Streptococcus pyogenes type emm35 (organism)','442825004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_442826003','442826003','http://snomed.info/sct','Streptococcus pyogenes type emm34 (organism)','442826003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_442827007','442827007','http://snomed.info/sct','Streptococcus pyogenes type emm29 (organism)','442827007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_442834009','442834009','http://snomed.info/sct','Streptococcus pyogenes type emm114 (organism)','442834009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_442835005','442835005','http://snomed.info/sct','Streptococcus pyogenes type emm113 (organism)','442835005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_442838007','442838007','http://snomed.info/sct','Streptococcus pyogenes type emm88 (organism)','442838007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_442839004','442839004','http://snomed.info/sct','Streptococcus pyogenes type emm87 (organism)','442839004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_442846008','442846008','http://snomed.info/sct','Streptococcus pyogenes type emm75 (organism)','442846008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_442850001','442850001','http://snomed.info/sct','Streptococcus pyogenes type emm51 (organism)','442850001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_442851002','442851002','http://snomed.info/sct','Streptococcus pyogenes type emm50 (organism)','442851002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_442852009','442852009','http://snomed.info/sct','Streptococcus pyogenes type emm49 (organism)','442852009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_442853004','442853004','http://snomed.info/sct','Streptococcus pyogenes type emm47 (organism)','442853004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_442856007','442856007','http://snomed.info/sct','Streptococcus pyogenes type emm81 (organism)','442856007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_442857003','442857003','http://snomed.info/sct','Streptococcus pyogenes type emm80 (organism)','442857003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_442862002','442862002','http://snomed.info/sct','Streptococcus pyogenes type emm68 (organism)','442862002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_442863007','442863007','http://snomed.info/sct','Streptococcus pyogenes type emm116 (organism)','442863007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_442872004','442872004','http://snomed.info/sct','Streptococcus pyogenes type emm6 (organism)','442872004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_442873009','442873009','http://snomed.info/sct','Streptococcus pyogenes type emm59 (organism)','442873009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_442879008','442879008','http://snomed.info/sct','Streptococcus pyogenes type emm115 (organism)','442879008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_442882003','442882003','http://snomed.info/sct','Streptococcus pyogenes type emm13 (organism)','442882003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_442895008','442895008','http://snomed.info/sct','Streptococcus pyogenes type emm21 (organism)','442895008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_442896009','442896009','http://snomed.info/sct','Streptococcus pyogenes type emm17 (organism)','442896009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_442897000','442897000','http://snomed.info/sct','Streptococcus pyogenes type emm16 (organism)','442897000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_442904003','442904003','http://snomed.info/sct','Streptococcus pyogenes type emm57 (organism)','442904003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_442905002','442905002','http://snomed.info/sct','Streptococcus pyogenes type emm56 (organism)','442905002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_442906001','442906001','http://snomed.info/sct','Streptococcus pyogenes type emm82 (organism)','442906001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_442922000','442922000','http://snomed.info/sct','Streptococcus pyogenes type emm20 (organism)','442922000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_442923005','442923005','http://snomed.info/sct','Streptococcus pyogenes type emm19 (organism)','442923005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_442929009','442929009','http://snomed.info/sct','Streptococcus pyogenes type emm43 (organism)','442929009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_442930004','442930004','http://snomed.info/sct','Streptococcus pyogenes type emm42 (organism)','442930004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_442932007','442932007','http://snomed.info/sct','Streptococcus pyogenes type emm67 (organism)','442932007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_442933002','442933002','http://snomed.info/sct','Streptococcus pyogenes type emm66 (organism)','442933002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_442934008','442934008','http://snomed.info/sct','Streptococcus pyogenes type emm65 (organism)','442934008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_442935009','442935009','http://snomed.info/sct','Streptococcus pyogenes type emm64 (organism)','442935009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_442940001','442940001','http://snomed.info/sct','Streptococcus pyogenes type emm79 (organism)','442940001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_442947003','442947003','http://snomed.info/sct','Streptococcus pyogenes type emm63 (organism)','442947003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_442948008','442948008','http://snomed.info/sct','Streptococcus pyogenes type emm62 (organism)','442948008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_442953003','442953003','http://snomed.info/sct','Streptococcus pyogenes type emm72 (organism)','442953003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_442954009','442954009','http://snomed.info/sct','Streptococcus pyogenes type emm71 (organism)','442954009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_442955005','442955005','http://snomed.info/sct','Streptococcus pyogenes type emm121 (organism)','442955005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_442956006','442956006','http://snomed.info/sct','Streptococcus pyogenes type emm120 (organism)','442956006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_442961008','442961008','http://snomed.info/sct','Streptococcus pyogenes type emm74 (organism)','442961008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_442962001','442962001','http://snomed.info/sct','Streptococcus pyogenes type emm112 (organism)','442962001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_442966003','442966003','http://snomed.info/sct','Streptococcus pyogenes type emm25 (organism)','442966003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_442967007','442967007','http://snomed.info/sct','Streptococcus pyogenes type emm24 (organism)','442967007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_442968002','442968002','http://snomed.info/sct','Streptococcus pyogenes type emm23 (organism)','442968002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_442969005','442969005','http://snomed.info/sct','Streptococcus pyogenes type emm22 (organism)','442969005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_442974002','442974002','http://snomed.info/sct','Streptococcus pyogenes type emm95 (organism)','442974002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_442975001','442975001','http://snomed.info/sct','Streptococcus pyogenes type emm94 (organism)','442975001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_442976000','442976000','http://snomed.info/sct','Streptococcus pyogenes type emm93 (organism)','442976000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_442977009','442977009','http://snomed.info/sct','Streptococcus pyogenes type emm92 (organism)','442977009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_442985000','442985000','http://snomed.info/sct','Streptococcus pyogenes type emm52 (organism)','442985000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_442988003','442988003','http://snomed.info/sct','Streptococcus pyogenes type emm15 (organism)','442988003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_442991003','442991003','http://snomed.info/sct','Streptococcus pyogenes type emm69 (organism)','442991003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_442995007','442995007','http://snomed.info/sct','Streptococcus pyogenes type emm119 (organism)','442995007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_442996008','442996008','http://snomed.info/sct','Streptococcus pyogenes type emm78 (organism)','442996008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_442998009','442998009','http://snomed.info/sct','Streptococcus pyogenes type emm18 (organism)','442998009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_443007002','443007002','http://snomed.info/sct','Streptococcus pyogenes type emm55 (organism)','443007002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_443008007','443008007','http://snomed.info/sct','Streptococcus pyogenes type emm54 (organism)','443008007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_443009004','443009004','http://snomed.info/sct','Streptococcus pyogenes type emm53 (organism)','443009004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_443010009','443010009','http://snomed.info/sct','Streptococcus pyogenes type emm117 (organism)','443010009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_443026005','443026005','http://snomed.info/sct','Streptococcus pyogenes type emm8 (organism)','443026005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_443027001','443027001','http://snomed.info/sct','Streptococcus pyogenes type emm60 (organism)','443027001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_443028006','443028006','http://snomed.info/sct','Streptococcus pyogenes type emm10 (organism)','443028006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_443031007','443031007','http://snomed.info/sct','Streptococcus pyogenes type emm70 (organism)','443031007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_443032000','443032000','http://snomed.info/sct','Streptococcus pyogenes type emm86 (organism)','443032000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_443033005','443033005','http://snomed.info/sct','Streptococcus pyogenes type emm85 (organism)','443033005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_443034004','443034004','http://snomed.info/sct','Streptococcus pyogenes type emm84 (organism)','443034004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_443035003','443035003','http://snomed.info/sct','Streptococcus pyogenes type emm83 (organism)','443035003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_443052004','443052004','http://snomed.info/sct','Streptococcus pyogenes type emm7 (organism)','443052004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_443053009','443053009','http://snomed.info/sct','Streptococcus pyogenes type emm100 (organism)','443053009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_443054003','443054003','http://snomed.info/sct','Streptococcus pyogenes type emm33 (organism)','443054003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_443055002','443055002','http://snomed.info/sct','Streptococcus pyogenes type emm32 (organism)','443055002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_443056001','443056001','http://snomed.info/sct','Streptococcus pyogenes type emm31 (organism)','443056001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_443057005','443057005','http://snomed.info/sct','Streptococcus pyogenes type emm30 (organism)','443057005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_443059008','443059008','http://snomed.info/sct','Streptococcus pyogenes type emm111 (organism)','443059008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_443060003','443060003','http://snomed.info/sct','Streptococcus pyogenes type emm11 (organism)','443060003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_698151001','698151001','http://snomed.info/sct','Streptococcus pyogenes type emm101 (organism)','698151001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_698152008','698152008','http://snomed.info/sct','Streptococcus pyogenes type emm102 (organism)','698152008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_698153003','698153003','http://snomed.info/sct','Streptococcus pyogenes type emm103 (organism)','698153003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_698154009','698154009','http://snomed.info/sct','Streptococcus pyogenes type emm104 (organism)','698154009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_698155005','698155005','http://snomed.info/sct','Streptococcus pyogenes type emm105 (organism)','698155005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_698156006','698156006','http://snomed.info/sct','Streptococcus pyogenes type emm106 (organism)','698156006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_698157002','698157002','http://snomed.info/sct','Streptococcus pyogenes type emm107 (organism)','698157002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_698158007','698158007','http://snomed.info/sct','Streptococcus pyogenes type emm108 (organism)','698158007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_698159004','698159004','http://snomed.info/sct','Streptococcus pyogenes type emm109 (organism)','698159004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_698160009','698160009','http://snomed.info/sct','Streptococcus pyogenes type emm110 (organism)','698160009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_708448001','708448001','http://snomed.info/sct','Deoxyribonucleic acid of Streptococcus pyogenes (substance)','708448001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1575_80166006','80166006','http://snomed.info/sct','Streptococcus pyogenes (organism)','80166006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1009003','1009003','http://snomed.info/sct','Salmonella Oakland (organism)','1009003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_10096007','10096007','http://snomed.info/sct','Salmonella Leoben (organism)','10096007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_10112007','10112007','http://snomed.info/sct','Salmonella Alamo (organism)','10112007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_10183008','10183008','http://snomed.info/sct','Salmonella Pensacola (organism)','10183008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_102401000112103','102401000112103','http://snomed.info/sct','Escherichia coli serotype O177:H25 (organism)','102401000112103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_10248003','10248003','http://snomed.info/sct','Salmonella Travis (organism)','10248003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_10280001','10280001','http://snomed.info/sct','Salmonella Tabligbo (organism)','10280001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_103429008','103429008','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O157:H7 (organism)','103429008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_10343005','10343005','http://snomed.info/sct','Salmonella Adelaide (organism)','10343005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_10353006','10353006','http://snomed.info/sct','Salmonella Bournemouth (organism)','10353006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1037005','1037005','http://snomed.info/sct','Salmonella Aragua (organism)','1037005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_10409000','10409000','http://snomed.info/sct','Salmonella II 6,7:g,t:e,n,x:z42 (organism)','10409000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_10454004','10454004','http://snomed.info/sct','Salmonella Newlands (organism)','10454004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_10457006','10457006','http://snomed.info/sct','Salmonella Dakota (organism)','10457006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_10556004','10556004','http://snomed.info/sct','Salmonella Norwich (organism)','10556004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1056000','1056000','http://snomed.info/sct','Salmonella II, 4,12:l,z28:- (organism)','1056000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_105766000','105766000','http://snomed.info/sct','Salmonella group O:51 (organism)','105766000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_105767009','105767009','http://snomed.info/sct','Salmonella group O:52 (organism)','105767009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_105768004','105768004','http://snomed.info/sct','Salmonella group O:53 (organism)','105768004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_105769007','105769007','http://snomed.info/sct','Salmonella group O:54 (organism)','105769007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_105770008','105770008','http://snomed.info/sct','Salmonella group O:55 (organism)','105770008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_105771007','105771007','http://snomed.info/sct','Salmonella group O:56 (organism)','105771007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_105772000','105772000','http://snomed.info/sct','Salmonella group O:57 (organism)','105772000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_105773005','105773005','http://snomed.info/sct','Salmonella group O:58 (organism)','105773005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_105774004','105774004','http://snomed.info/sct','Salmonella group O:59 (organism)','105774004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_105775003','105775003','http://snomed.info/sct','Salmonella group O:60 (organism)','105775003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_105776002','105776002','http://snomed.info/sct','Salmonella group O:61 (organism)','105776002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_105777006','105777006','http://snomed.info/sct','Salmonella group O:62 (organism)','105777006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_105778001','105778001','http://snomed.info/sct','Salmonella group O:63 (organism)','105778001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_105779009','105779009','http://snomed.info/sct','Salmonella group O:65 (organism)','105779009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_105780007','105780007','http://snomed.info/sct','Salmonella group O:66 (organism)','105780007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_105781006','105781006','http://snomed.info/sct','Salmonella group O:67 (organism)','105781006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_106544002','106544002','http://snomed.info/sct','Family Enterobacteriaceae (organism)','106544002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_10704009','10704009','http://snomed.info/sct','Salmonella Roan (organism)','10704009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_10749007','10749007','http://snomed.info/sct','Salmonella Kaitaan (organism)','10749007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_10762006','10762006','http://snomed.info/sct','Salmonella Omifisan (organism)','10762006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1079101000112100','1079101000112100','http://snomed.info/sct','Escherichia coli serotype O27:H30 (organism)','1079101000112100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1080401000112105','1080401000112105','http://snomed.info/sct','Escherichia coli serotype O1:K1:nonmotile (organism)','1080401000112105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1080501000112109','1080501000112109','http://snomed.info/sct','Escherichia coli serotype O110:nonmotile (organism)','1080501000112109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1080601000112108','1080601000112108','http://snomed.info/sct','Escherichia coli serotype O148:nonmotile (organism)','1080601000112108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1080701000112104','1080701000112104','http://snomed.info/sct','Escherichia coli serotype O186:nonmotile (organism)','1080701000112104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1080801000112107','1080801000112107','http://snomed.info/sct','Escherichia coli serotype O2:nonmotile (organism)','1080801000112107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1080901000112102','1080901000112102','http://snomed.info/sct','Escherichia coli serotype O28ab:nonmotile (organism)','1080901000112102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1081001000112105','1081001000112105','http://snomed.info/sct','Escherichia coli serotype O75:nonmotile (organism)','1081001000112105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1081002','1081002','http://snomed.info/sct','Salmonella II 9,12,(46),27:g,t:e,n,x (organism)','1081002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1082201000112107','1082201000112107','http://snomed.info/sct','Escherichia coli serotype O71:H8 (organism)','1082201000112107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1083004','1083004','http://snomed.info/sct','Salmonella Wyldegreen (organism)','1083004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1083201000112101','1083201000112101','http://snomed.info/sct','Escherichia coli serotype O22:H27 (organism)','1083201000112101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1084101000112109','1084101000112109','http://snomed.info/sct','Escherichia coli serotype O170:H49 (organism)','1084101000112109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1084801000112102','1084801000112102','http://snomed.info/sct','Escherichia coli serotype O182:H25 (organism)','1084801000112102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_10851004','10851004','http://snomed.info/sct','Salmonella Clerkenwell (organism)','10851004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1085101000112108','1085101000112108','http://snomed.info/sct','Escherichia coli serogroup O182 (organism)','1085101000112108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_10874000','10874000','http://snomed.info/sct','Salmonella Bassadji (organism)','10874000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1088501000112107','1088501000112107','http://snomed.info/sct','Extended spectrum beta-lactamase producing Cedecea davisae (organism)','1088501000112107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1088601000112106','1088601000112106','http://snomed.info/sct','Extended spectrum beta-lactamase producing Cedecea (organism)','1088601000112106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1088801000112105','1088801000112105','http://snomed.info/sct','Extended spectrum beta-lactamase producing Cedecea lapagei (organism)','1088801000112105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1089001000112109','1089001000112109','http://snomed.info/sct','Extended spectrum beta-lactamase producing Cedecea neteri (organism)','1089001000112109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1089101000112105','1089101000112105','http://snomed.info/sct','Carbapenemase-producing Citrobacter amalonaticus (organism)','1089101000112105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1089301000112107','1089301000112107','http://snomed.info/sct','Carbapenemase-producing Citrobacter braakii (organism)','1089301000112107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1089401000112100','1089401000112100','http://snomed.info/sct','Extended spectrum beta-lactamase producing Citrobacter braakii (organism)','1089401000112100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1089501000112101','1089501000112101','http://snomed.info/sct','Carbapenemase-producing Citrobacter (organism)','1089501000112101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1089601000112102','1089601000112102','http://snomed.info/sct','Extended spectrum beta-lactamase producing Citrobacter (organism)','1089601000112102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1089701000112106','1089701000112106','http://snomed.info/sct','Carbapenemase-producing Citrobacter farmeri (organism)','1089701000112106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1089901000112108','1089901000112108','http://snomed.info/sct','Carbapenemase-producing Citrobacter freundii (organism)','1089901000112108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1090401000112109','1090401000112109','http://snomed.info/sct','Carbapenemase-producing Citrobacter koseri (organism)','1090401000112109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1090501000112108','1090501000112108','http://snomed.info/sct','Extended spectrum beta-lactamase producing Citrobacter koseri (organism)','1090501000112108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1091201000112104','1091201000112104','http://snomed.info/sct','Carbapenemase-producing Citrobacter werkmanii (organism)','1091201000112104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1091401000112100','1091401000112100','http://snomed.info/sct','Carbapenemase-producing Citrobacter youngae (organism)','1091401000112100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1092401000112105','1092401000112105','http://snomed.info/sct','Carbapenemase-producing Cronobacter sakazakii (organism)','1092401000112105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1092501000112109','1092501000112109','http://snomed.info/sct','Extended spectrum beta-lactamase producing Cronobacter sakazakii (organism)','1092501000112109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1093401000112101','1093401000112101','http://snomed.info/sct','Carbapenemase-producing Enterobacter (organism)','1093401000112101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1093501000112102','1093501000112102','http://snomed.info/sct','Extended spectrum beta-lactamase producing Enterobacter (organism)','1093501000112102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1093601000112103','1093601000112103','http://snomed.info/sct','Carbapenemase-producing Enterobacter asburiae (organism)','1093601000112103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1094001000112107','1094001000112107','http://snomed.info/sct','Extended spectrum beta-lactamase producing Enterobacter cloacae complex (organism)','1094001000112107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1094301000112105','1094301000112105','http://snomed.info/sct','Carbapenemase-producing Enterobacter hormaechei (organism)','1094301000112105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1094401000112103','1094401000112103','http://snomed.info/sct','Extended spectrum beta-lactamase producing Enterobacter hormaechei (organism)','1094401000112103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1095001000112106','1095001000112106','http://snomed.info/sct','AmpC beta-lactamase producing Escherichia coli (organism)','1095001000112106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1095301000112109','1095301000112109','http://snomed.info/sct','Extended spectrum beta-lactamase producing Escherichia fergusonii (organism)','1095301000112109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1095501000112103','1095501000112103','http://snomed.info/sct','Extended spectrum beta-lactamase producing Escherichia hermannii (organism)','1095501000112103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1096801000112108','1096801000112108','http://snomed.info/sct','Carbapenemase-producing Klebsiella (organism)','1096801000112108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_10969007','10969007','http://snomed.info/sct','Buttiauxella agrestis (organism)','10969007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1096901000112103','1096901000112103','http://snomed.info/sct','AmpC beta-lactamase producing Klebsiella (organism)','1096901000112103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1097001000112104','1097001000112104','http://snomed.info/sct','Extended spectrum beta-lactamase producing Klebsiella aerogenes (organism)','1097001000112104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1097401000112108','1097401000112108','http://snomed.info/sct','AmpC beta-lactamase producing Klebsiella oxytoca (organism)','1097401000112108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1098101000112102','1098101000112102','http://snomed.info/sct','AmpC beta-lactamase producing Klebsiella pneumoniae (organism)','1098101000112102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1098201000112108','1098201000112108','http://snomed.info/sct','Carbapenemase-producing Klebsiella pneumoniae (organism)','1098201000112108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1098701000112101','1098701000112101','http://snomed.info/sct','AmpC beta-lactamase producing Klebsiella variicola (organism)','1098701000112101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1098901000112104','1098901000112104','http://snomed.info/sct','Extended spectrum beta-lactamase producing Klebsiella variicola (organism)','1098901000112104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1099001000112108','1099001000112108','http://snomed.info/sct','Carbapenemase-producing Kluyvera (organism)','1099001000112108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1099101000112109','1099101000112109','http://snomed.info/sct','Extended spectrum beta-lactamase producing Kluyvera (organism)','1099101000112109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1099201000112103','1099201000112103','http://snomed.info/sct','Carbapenemase-producing Kluyvera ascorbata (organism)','1099201000112103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1099301000112106','1099301000112106','http://snomed.info/sct','Extended spectrum beta-lactamase producing Kluyvera ascorbata (organism)','1099301000112106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1099601000112101','1099601000112101','http://snomed.info/sct','Carbapenemase-producing Kluyvera georgiana (organism)','1099601000112101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1099701000112105','1099701000112105','http://snomed.info/sct','Extended spectrum beta-lactamase producing Kluyvera georgiana (organism)','1099701000112105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_10999003','10999003','http://snomed.info/sct','Salmonella Potto (organism)','10999003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1100001000112108','1100001000112108','http://snomed.info/sct','Carbapenemase-producing Leclercia (organism)','1100001000112108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1100101000112109','1100101000112109','http://snomed.info/sct','Extended spectrum beta-lactamase producing Leclercia (organism)','1100101000112109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1100201000112103','1100201000112103','http://snomed.info/sct','Carbapenemase-producing Leclercia adecarboxylata (organism)','1100201000112103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1103301000112100','1103301000112100','http://snomed.info/sct','Extended spectrum beta-lactamase producing Proteus penneri (organism)','1103301000112100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_110378009','110378009','http://snomed.info/sct','Salmonella enterica (organism)','110378009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1105401000112106','1105401000112106','http://snomed.info/sct','Carbapenemase-producing Raoultella ornithinolytica (organism)','1105401000112106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1105501000112105','1105501000112105','http://snomed.info/sct','Extended spectrum beta-lactamase producing Raoultella ornithinolytica (organism)','1105501000112105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1105601000112109','1105601000112109','http://snomed.info/sct','Carbapenemase-producing Raoultella planticola (organism)','1105601000112109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1106001000112106','1106001000112106','http://snomed.info/sct','Carbapenemase-producing Salmonella (organism)','1106001000112106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1106101000112107','1106101000112107','http://snomed.info/sct','Extended spectrum beta-lactamase producing Salmonella (organism)','1106101000112107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_11062005','11062005','http://snomed.info/sct','Salmonella Sherbrooke (organism)','11062005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1107201000112104','1107201000112104','http://snomed.info/sct','Carbapenemase-producing Serratia marcescens (organism)','1107201000112104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1108201000112100','1108201000112100','http://snomed.info/sct','AmpC beta-lactamase producing Shigella (organism)','1108201000112100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1108401000112101','1108401000112101','http://snomed.info/sct','Extended spectrum beta-lactamase producing Shigella (organism)','1108401000112101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_11097007','11097007','http://snomed.info/sct','Salmonella Zega (organism)','11097007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1111901000112103','1111901000112103','http://snomed.info/sct','Escherichia coli serogroup O1:K1 (organism)','1111901000112103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1112001000112105','1112001000112105','http://snomed.info/sct','Escherichia coli serogroup O28ab (organism)','1112001000112105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1112501000112102','1112501000112102','http://snomed.info/sct','AmpC beta-lactamase producing Salmonella (organism)','1112501000112102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1113201000112106','1113201000112106','http://snomed.info/sct','Escherichia coli serotype O183:H18 (organism)','1113201000112106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1113401000112105','1113401000112105','http://snomed.info/sct','Klebsiella pneumoniae complex (organism)','1113401000112105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1113801000112107','1113801000112107','http://snomed.info/sct','Escherichia coli serotype O118:H14 (organism)','1113801000112107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_11139006','11139006','http://snomed.info/sct','Salmonella Suberu (organism)','11139006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1114101000112103','1114101000112103','http://snomed.info/sct','Escherichia coli serotype O86:H2 (organism)','1114101000112103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1116301000112107','1116301000112107','http://snomed.info/sct','Escherichia coli serotype O16:H5 (organism)','1116301000112107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_11166006','11166006','http://snomed.info/sct','Salmonella II, group O:58 (organism)','11166006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1117301000112105','1117301000112105','http://snomed.info/sct','Escherichia coli serotype O168:H8 (organism)','1117301000112105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_11188006','11188006','http://snomed.info/sct','Salmonella Herzliya (organism)','11188006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_112283007','112283007','http://snomed.info/sct','Escherichia coli (organism)','112283007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_112285000','112285000','http://snomed.info/sct','Salmonella Nitra (organism)','112285000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_112286004','112286004','http://snomed.info/sct','Salmonella Altendorf (organism)','112286004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_112287008','112287008','http://snomed.info/sct','Salmonella Sandiego (organism)','112287008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_112288003','112288003','http://snomed.info/sct','Salmonella Mura (organism)','112288003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_112290002','112290002','http://snomed.info/sct','Salmonella Goma (organism)','112290002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_112291003','112291003','http://snomed.info/sct','Salmonella Inganda (organism)','112291003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_112292005','112292005','http://snomed.info/sct','Salmonella VI 6,7:z41:1,7 (organism)','112292005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_112294006','112294006','http://snomed.info/sct','Salmonella Hidalgo (organism)','112294006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_112295007','112295007','http://snomed.info/sct','Salmonella Be (organism)','112295007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_112296008','112296008','http://snomed.info/sct','Salmonella Virginia (organism)','112296008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_112297004','112297004','http://snomed.info/sct','Salmonella Cocody (organism)','112297004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_112298009','112298009','http://snomed.info/sct','Salmonella Cochin (organism)','112298009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_112299001','112299001','http://snomed.info/sct','Salmonella Benfica (organism)','112299001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_112300009','112300009','http://snomed.info/sct','Salmonella Yaba (organism)','112300009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_112301008','112301008','http://snomed.info/sct','Salmonella Adabraka (organism)','112301008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_112302001','112302001','http://snomed.info/sct','Salmonella Coquilhatville (organism)','112302001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_112305004','112305004','http://snomed.info/sct','Salmonella Dessau (organism)','112305004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_112306003','112306003','http://snomed.info/sct','Salmonella II 1,13,22:b:z42 (organism)','112306003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_112307007','112307007','http://snomed.info/sct','Salmonella Midway (organism)','112307007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_112308002','112308002','http://snomed.info/sct','Salmonella Lindern (organism)','112308002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_112309005','112309005','http://snomed.info/sct','Salmonella Orientalis (organism)','112309005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_112311001','112311001','http://snomed.info/sct','Salmonella Irenea (organism)','112311001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_112312008','112312008','http://snomed.info/sct','Salmonella II 17:b:z6 (organism)','112312008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_112314009','112314009','http://snomed.info/sct','Salmonella Pomona (organism)','112314009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_112319004','112319004','http://snomed.info/sct','Salmonella Sedgwick (organism)','112319004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_112325000','112325000','http://snomed.info/sct','Salmonella II 56:l,z28:- (organism)','112325000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_112891000112108','112891000112108','http://snomed.info/sct','Escherichia coli serotype O177:H11 (organism)','112891000112108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_11325004','11325004','http://snomed.info/sct','Salmonella Aqua (organism)','11325004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_11342005','11342005','http://snomed.info/sct','Salmonella Othmarschen (organism)','11342005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_113611000146106','113611000146106','http://snomed.info/sct','Enterobacter bugandensis (organism)','113611000146106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_11379008','11379008','http://snomed.info/sct','Salmonella Ughelli (organism)','11379008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114261007','114261007','http://snomed.info/sct','Buttiauxella noackiae (organism)','114261007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114262000','114262000','http://snomed.info/sct','Citrobacter braakii (organism)','114262000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114263005','114263005','http://snomed.info/sct','Citrobacter farmeri (organism)','114263005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114264004','114264004','http://snomed.info/sct','Citrobacter koseri (organism)','114264004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114265003','114265003','http://snomed.info/sct','Citrobacter sedlakii (organism)','114265003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114266002','114266002','http://snomed.info/sct','Salmonella II 3,10:z39:1,[5],7 (organism)','114266002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114267006','114267006','http://snomed.info/sct','Salmonella Pietersburg (organism)','114267006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114268001','114268001','http://snomed.info/sct','Salmonella Goelzau var 15+ (organism)','114268001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114269009','114269009','http://snomed.info/sct','Salmonella enterica subspecies enterica serovar Butantan var O:15+ (organism)','114269009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114271009','114271009','http://snomed.info/sct','Salmonella Souza var 15+ (organism)','114271009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114272002','114272002','http://snomed.info/sct','Salmonella Vejle var 15+ (organism)','114272002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114273007','114273007','http://snomed.info/sct','Salmonella Muenster var 15+ (organism)','114273007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114274001','114274001','http://snomed.info/sct','Salmonella Anatum var 15+ (organism)','114274001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114275000','114275000','http://snomed.info/sct','Salmonella Nyborg var 15+ (organism)','114275000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114277008','114277008','http://snomed.info/sct','Salmonella Amsterdam var. 15+ (organism)','114277008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114278003','114278003','http://snomed.info/sct','Salmonella Westhampton var 15+ (organism)','114278003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114280009','114280009','http://snomed.info/sct','Salmonella London var 15+ (organism)','114280009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114281008','114281008','http://snomed.info/sct','Salmonella Give var 15+ (organism)','114281008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114282001','114282001','http://snomed.info/sct','Salmonella Uganda var 15+ (organism)','114282001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114283006','114283006','http://snomed.info/sct','Salmonella Weltevreden var 15+ (organism)','114283006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114284000','114284000','http://snomed.info/sct','Salmonella Amager var 15+ (organism)','114284000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114285004','114285004','http://snomed.info/sct','Salmonella Orion var 15+ (organism)','114285004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114286003','114286003','http://snomed.info/sct','Salmonella Stockholm var 15+ (organism)','114286003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114287007','114287007','http://snomed.info/sct','Salmonella Lexington var 15+ (organism)','114287007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114288002','114288002','http://snomed.info/sct','Salmonella Oxford var 15+,34+ (organism)','114288002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114289005','114289005','http://snomed.info/sct','Salmonella Muenster var 15+,34+ (organism)','114289005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114290001','114290001','http://snomed.info/sct','Salmonella Anatum var 15+, 34+ (organism)','114290001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114291002','114291002','http://snomed.info/sct','Salmonella Meleagridis var 15+, 34+ (organism)','114291002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114292009','114292009','http://snomed.info/sct','Salmonella Westhampton var 15+, 34+ (organism)','114292009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114293004','114293004','http://snomed.info/sct','Salmonella Give var 15+, 34+ (organism)','114293004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114294005','114294005','http://snomed.info/sct','Salmonella Orion var 15+, 34+ (organism)','114294005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114295006','114295006','http://snomed.info/sct','Salmonella Lexington var 15+, 34+ (organism)','114295006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114296007','114296007','http://snomed.info/sct','Salmonella Niumi (organism)','114296007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114298008','114298008','http://snomed.info/sct','Salmonella Alkmaar (organism)','114298008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114299000','114299000','http://snomed.info/sct','Salmonella Eastglam (organism)','114299000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114300008','114300008','http://snomed.info/sct','Salmonella Bida (organism)','114300008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114301007','114301007','http://snomed.info/sct','Salmonella Hayindogo (organism)','114301007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114302000','114302000','http://snomed.info/sct','Salmonella Petahtikve (organism)','114302000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114303005','114303005','http://snomed.info/sct','Salmonella Oersterbro (organism)','114303005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114305003','114305003','http://snomed.info/sct','Salmonella Fulda (organism)','114305003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114306002','114306002','http://snomed.info/sct','Salmonella Kindia (organism)','114306002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114307006','114307006','http://snomed.info/sct','Salmonella Kinson (organism)','114307006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114308001','114308001','http://snomed.info/sct','Salmonella Kainji (organism)','114308001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114309009','114309009','http://snomed.info/sct','Salmonella Honkong (organism)','114309009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114310004','114310004','http://snomed.info/sct','Salmonella Ochiogu (organism)','114310004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114312007','114312007','http://snomed.info/sct','Salmonella Thies (organism)','114312007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114313002','114313002','http://snomed.info/sct','Salmonella Slade (organism)','114313002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114314008','114314008','http://snomed.info/sct','Salmonella II 11:a:d:e,n,z15 (organism)','114314008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114315009','114315009','http://snomed.info/sct','Salmonella VI 11:a:1,5 (organism)','114315009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114316005','114316005','http://snomed.info/sct','Salmonella II 11:a:z6:z42 (organism)','114316005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114317001','114317001','http://snomed.info/sct','Salmonella VI 11:b:1,7 (organism)','114317001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114318006','114318006','http://snomed.info/sct','Salmonella VI 11:b:e,n,x (organism)','114318006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114319003','114319003','http://snomed.info/sct','Salmonella Brindisi (organism)','114319003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114320009','114320009','http://snomed.info/sct','Salmonella II 11:c:e,n,z15 (organism)','114320009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114321008','114321008','http://snomed.info/sct','Salmonella Woodinville (organism)','114321008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114322001','114322001','http://snomed.info/sct','Salmonella Ati (organism)','114322001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114323006','114323006','http://snomed.info/sct','Salmonella Abuja (organism)','114323006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114324000','114324000','http://snomed.info/sct','Salmonella Missouri (organism)','114324000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114325004','114325004','http://snomed.info/sct','Salmonella II 11:g,[m],s,t:z39 (organism)','114325004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114326003','114326003','http://snomed.info/sct','Salmonella IV 11:g,z51:- (organism)','114326003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114327007','114327007','http://snomed.info/sct','Salmonella Moers (organism)','114327007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114328002','114328002','http://snomed.info/sct','Salmonella II 11:m,t:e,n,x (organism)','114328002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114329005','114329005','http://snomed.info/sct','Salmonella Mannheim (organism)','114329005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114330000','114330000','http://snomed.info/sct','Salmonella IIIb 11:k:z53 (organism)','114330000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114331001','114331001','http://snomed.info/sct','Salmonella IIIb 11:l,v:z (organism)','114331001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114332008','114332008','http://snomed.info/sct','Salmonella IIIb 11:l,v:z53 (organism)','114332008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114333003','114333003','http://snomed.info/sct','Salmonella Tours (organism)','114333003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114334009','114334009','http://snomed.info/sct','Salmonella Connecticut (organism)','114334009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114335005','114335005','http://snomed.info/sct','Salmonella II 11:l,z28:e,n,x (organism)','114335005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114337002','114337002','http://snomed.info/sct','Salmonella Euston (organism)','114337002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114338007','114338007','http://snomed.info/sct','Salmonella Maroua (organism)','114338007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114339004','114339004','http://snomed.info/sct','Salmonella II 11:z:e,n,x (organism)','114339004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114340002','114340002','http://snomed.info/sct','Salmonella II 11:z:z39 (organism)','114340002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114341003','114341003','http://snomed.info/sct','Salmonella IIIa 11:z4,z23:- (organism)','114341003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114342005','114342005','http://snomed.info/sct','Salmonella IV 11:z4,z23:- (organism)','114342005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114344006','114344006','http://snomed.info/sct','Salmonella II 1,13,23:a:1,5 (organism)','114344006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114345007','114345007','http://snomed.info/sct','Salmonella II 1,13,23:a:e,n,x (organism)','114345007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114346008','114346008','http://snomed.info/sct','Salmonella II 1,13,23:a:z42 (organism)','114346008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114347004','114347004','http://snomed.info/sct','Salmonella II 1,13,23:b:[1,5]:z42 (organism)','114347004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114348009','114348009','http://snomed.info/sct','Salmonella Sanktjohann (organism)','114348009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114349001','114349001','http://snomed.info/sct','Salmonella Vridi (organism)','114349001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114350001','114350001','http://snomed.info/sct','Salmonella II 1,13,22:g,m,t:[1,5] (organism)','114350001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114351002','114351002','http://snomed.info/sct','Salmonella II 1,13,23:g,m,[s],t:[e,n,x] (organism)','114351002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114352009','114352009','http://snomed.info/sct','Salmonella II 1,13,23:g,t:1,5 (organism)','114352009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114354005','114354005','http://snomed.info/sct','Salmonella II 1,13,23:m,t:1,5 (organism)','114354005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114355006','114355006','http://snomed.info/sct','Salmonella II 1,13,23:m,t:e,n,x (organism)','114355006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114356007','114356007','http://snomed.info/sct','Salmonella II 13,22:m,t:z42:z39 (organism)','114356007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114357003','114357003','http://snomed.info/sct','Salmonella II 1,13,23:m,t:z42 (organism)','114357003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114358008','114358008','http://snomed.info/sct','Salmonella V 1,13,22:i:- (organism)','114358008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114359000','114359000','http://snomed.info/sct','Salmonella IIIb 13,22:l,v:1,5,7 (organism)','114359000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114360005','114360005','http://snomed.info/sct','Salmonella II 13,23:l,w:e,n,x (organism)','114360005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114361009','114361009','http://snomed.info/sct','Salmonella II 1,13,23:l,z28:z42 (organism)','114361009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114362002','114362002','http://snomed.info/sct','Salmonella V 13,22:r:- (organism)','114362002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114363007','114363007','http://snomed.info/sct','Salmonella II 1,13,23:z:1,5 (organism)','114363007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114364001','114364001','http://snomed.info/sct','Salmonella II 1,13,23:z:z42 (organism)','114364001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114365000','114365000','http://snomed.info/sct','Salmonella II 13,22:z:- (organism)','114365000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114366004','114366004','http://snomed.info/sct','Salmonella IIIa 13,22:z4,z23:- (organism)','114366004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114367008','114367008','http://snomed.info/sct','Salmonella IIIa 13,23:z4,z23,[z32]:- (organism)','114367008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114368003','114368003','http://snomed.info/sct','Salmonella II 1,13,22:z10:z6 (organism)','114368003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114369006','114369006','http://snomed.info/sct','Salmonella II 13,22:z29:1,5 (organism)','114369006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114370007','114370007','http://snomed.info/sct','Salmonella II 13,22:z29:e,n,x (organism)','114370007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114371006','114371006','http://snomed.info/sct','Salmonella II 13,22:z39:1,7 (organism)','114371006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114372004','114372004','http://snomed.info/sct','Salmonella II 1,13,23:z39:1,5,7 (organism)','114372004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114373009','114373009','http://snomed.info/sct','Salmonella II 1,13,23:[z42]:1,[5],7 (organism)','114373009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114374003','114374003','http://snomed.info/sct','Salmonella II 1,13,23:e,n,x:1,[5],7 (organism)','114374003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114375002','114375002','http://snomed.info/sct','Salmonella VI [1],6,14:a:1,5 (organism)','114375002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114376001','114376001','http://snomed.info/sct','Salmonella VI 1,6,14,25:a:e,n,x (organism)','114376001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114377005','114377005','http://snomed.info/sct','Salmonella Woodhull (organism)','114377005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114378000','114378000','http://snomed.info/sct','Salmonella Sylvania (organism)','114378000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114379008','114379008','http://snomed.info/sct','Salmonella II 1,6,14:m,t:1,5 (organism)','114379008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114380006','114380006','http://snomed.info/sct','Salmonella II 6,14:m,t:e,n,x (organism)','114380006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114381005','114381005','http://snomed.info/sct','Salmonella II 6,14,[24]:k:1,6 (organism)','114381005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114382003','114382003','http://snomed.info/sct','Salmonella IIIb 6,14:l,v:z53 (organism)','114382003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114383008','114383008','http://snomed.info/sct','Salmonella Istoria (organism)','114383008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114385001','114385001','http://snomed.info/sct','Salmonella Kanifing (organism)','114385001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114386000','114386000','http://snomed.info/sct','Salmonella Arapahoe (organism)','114386000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114387009','114387009','http://snomed.info/sct','Salmonella VI 1,6,14,25:z10:1,(2),7 (organism)','114387009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114388004','114388004','http://snomed.info/sct','Salmonella II 1,6,14:z10:1,5 (organism)','114388004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114389007','114389007','http://snomed.info/sct','Salmonella Laredo (organism)','114389007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114390003','114390003','http://snomed.info/sct','Salmonella II 1,6,14:z10:z6:z42 (organism)','114390003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114391004','114391004','http://snomed.info/sct','Salmonella IIIb 6,14:z10:z53 (organism)','114391004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114392006','114392006','http://snomed.info/sct','Salmonella IIIb 6,14:z52:e,n,x,z15 (organism)','114392006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114393001','114393001','http://snomed.info/sct','Salmonella Vegesack (organism)','114393001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114394007','114394007','http://snomed.info/sct','Salmonella Yoruba (organism)','114394007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114395008','114395008','http://snomed.info/sct','Salmonella Sculcoates (organism)','114395008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114396009','114396009','http://snomed.info/sct','Salmonella II 16:e,n,x:1,(5),7 (organism)','114396009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114397000','114397000','http://snomed.info/sct','Salmonella II 16:e,n,x:1,6:z42 (organism)','114397000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114398005','114398005','http://snomed.info/sct','Salmonella II 16:g,[m],[s],t:[1,5]:[z42] (organism)','114398005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114399002','114399002','http://snomed.info/sct','Salmonella II g,[m],[s],t:[e,n,x] (organism)','114399002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114400009','114400009','http://snomed.info/sct','Salmonella Cardoner (organism)','114400009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114401008','114401008','http://snomed.info/sct','Salmonella II 16:m,t:[z42] (organism)','114401008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114402001','114402001','http://snomed.info/sct','Salmonella Agbara (organism)','114402001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114403006','114403006','http://snomed.info/sct','Salmonella Zigong (organism)','114403006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114405004','114405004','http://snomed.info/sct','Salmonella II 16:l,z28:z42 (organism)','114405004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114406003','114406003','http://snomed.info/sct','Salmonella Ivory (organism)','114406003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114407007','114407007','http://snomed.info/sct','Salmonella Brunflo (organism)','114407007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114408002','114408002','http://snomed.info/sct','Salmonella Gerland (organism)','114408002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114409005','114409005','http://snomed.info/sct','Salmonella II 16:z:e,n,x (organism)','114409005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114410000','114410000','http://snomed.info/sct','Salmonella II 16:z4,z23:- (organism)','114410000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114412008','114412008','http://snomed.info/sct','Salmonella II 16:z4,z24:- (organism)','114412008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114413003','114413003','http://snomed.info/sct','Salmonella IV 16:z4,z32:- (organism)','114413003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114414009','114414009','http://snomed.info/sct','Salmonella Badgary (organism)','114414009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114415005','114415005','http://snomed.info/sct','Salmonella II 16:z29:1,5 (organism)','114415005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114416006','114416006','http://snomed.info/sct','Salmonella II 16:z29:e,n,x (organism)','114416006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114417002','114417002','http://snomed.info/sct','Salmonella Trier (organism)','114417002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114418007','114418007','http://snomed.info/sct','Salmonella II 16:z35:e,n,x (organism)','114418007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114419004','114419004','http://snomed.info/sct','Salmonella IV 16:z36:- (organism)','114419004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114420005','114420005','http://snomed.info/sct','Salmonella II 16:z36:e,n,z15 (organism)','114420005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114421009','114421009','http://snomed.info/sct','Salmonella Grancanaria (organism)','114421009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114422002','114422002','http://snomed.info/sct','Salmonella II 16:z42:1,(5),7 (organism)','114422002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114423007','114423007','http://snomed.info/sct','Salmonella II 16:l,w:z6 (organism)','114423007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114424001','114424001','http://snomed.info/sct','Salmonella II 16:z42:1,6 (organism)','114424001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114425000','114425000','http://snomed.info/sct','Salmonella Dahra (organism)','114425000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114426004','114426004','http://snomed.info/sct','Salmonella II 17:b:e,n,x,z15 (organism)','114426004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114427008','114427008','http://snomed.info/sct','Salmonella Luedinghausen (organism)','114427008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114428003','114428003','http://snomed.info/sct','Salmonella Karlshamn (organism)','114428003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114429006','114429006','http://snomed.info/sct','Salmonella II 17:e,n,x,z15:1,6 (organism)','114429006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114430001','114430001','http://snomed.info/sct','Salmonella II 17:e,n,x,z15:1,[5],7 (organism)','114430001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114431002','114431002','http://snomed.info/sct','Salmonella II 17:g,m,s,t:- (organism)','114431002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114432009','114432009','http://snomed.info/sct','Salmonella Lowestoft (organism)','114432009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114433004','114433004','http://snomed.info/sct','Salmonella II 17:g,t:[e,n,x,z15] (organism)','114433004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114434005','114434005','http://snomed.info/sct','Salmonella Zaria (organism)','114434005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114435006','114435006','http://snomed.info/sct','Salmonella IIIb 17:k:z (organism)','114435006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114436007','114436007','http://snomed.info/sct','Salmonella II 17:k:- (organism)','114436007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114437003','114437003','http://snomed.info/sct','Salmonella Lancaster (organism)','114437003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114438008','114438008','http://snomed.info/sct','Salmonella Tendeba (organism)','114438008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114439000','114439000','http://snomed.info/sct','Salmonella Hadejia (organism)','114439000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114440003','114440003','http://snomed.info/sct','Salmonella II 17:z:1,7 (organism)','114440003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114441004','114441004','http://snomed.info/sct','Salmonella II 17:z:l,w:z42 (organism)','114441004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114442006','114442006','http://snomed.info/sct','Citrobacter werkmanii (organism)','114442006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114443001','114443001','http://snomed.info/sct','Citrobacter youngae (organism)','114443001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114444007','114444007','http://snomed.info/sct','Citrobacter rodentium (organism)','114444007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114447000','114447000','http://snomed.info/sct','Edwardsiella tarda, biogroup 1 (organism)','114447000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114451003','114451003','http://snomed.info/sct','Enterobacter cancerogenus (organism)','114451003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114452005','114452005','http://snomed.info/sct','Enterobacter amnigenus biogroup I (organism)','114452005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114453000','114453000','http://snomed.info/sct','Enterobacter amnigenus biogroup II (organism)','114453000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114454006','114454006','http://snomed.info/sct','Enterobacter hormaechei (organism)','114454006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114455007','114455007','http://snomed.info/sct','Pluralibacter pyrinus (organism)','114455007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114456008','114456008','http://snomed.info/sct','Enterobacter kobei (organism)','114456008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114458009','114458009','http://snomed.info/sct','Klebsiella group 47 (organism)','114458009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114462003','114462003','http://snomed.info/sct','Salmonella Koessen (organism)','114462003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114463008','114463008','http://snomed.info/sct','Salmonella Huettwillen (organism)','114463008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114464002','114464002','http://snomed.info/sct','Salmonella II 1,4,12,27:a:z39 (organism)','114464002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114465001','114465001','http://snomed.info/sct','Salmonella II 4,12:b:1,5 (organism)','114465001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114467009','114467009','http://snomed.info/sct','Salmonella Tripoli (organism)','114467009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114468004','114468004','http://snomed.info/sct','Salmonella II 4,12:d:e,n,x (organism)','114468004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114470008','114470008','http://snomed.info/sct','Salmonella II 4,12:e,n,x:1,2,7 (organism)','114470008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114471007','114471007','http://snomed.info/sct','Salmonella II 1,4,12,27:e,n,x:1,[5]7 (organism)','114471007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114472000','114472000','http://snomed.info/sct','Salmonella II 1,4,[5],12:f,g,t:z6:z42 (organism)','114472000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114473005','114473005','http://snomed.info/sct','Salmonella II 1,4,12,27:g,[m],[s],t:e,n,x (organism)','114473005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114474004','114474004','http://snomed.info/sct','Salmonella II 1,4,12,27:g,[m],t:[1,5] (organism)','114474004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114475003','114475003','http://snomed.info/sct','Salmonella II 4,12:g,m,t:z39 (organism)','114475003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114476002','114476002','http://snomed.info/sct','Salmonella II 4,12:g,z62:- (organism)','114476002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114477006','114477006','http://snomed.info/sct','Salmonella Madras (organism)','114477006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114478001','114478001','http://snomed.info/sct','Salmonella Farsta (organism)','114478001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114479009','114479009','http://snomed.info/sct','Salmonella Tumodi (organism)','114479009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114481006','114481006','http://snomed.info/sct','Salmonella II 1,4,12,27:k:1,6 (organism)','114481006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114482004','114482004','http://snomed.info/sct','Salmonella II 4,12:l,w:e,n,x (organism)','114482004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114483009','114483009','http://snomed.info/sct','Salmonella Haduna (organism)','114483009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114484003','114484003','http://snomed.info/sct','Salmonella Finaghy (organism)','114484003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114485002','114485002','http://snomed.info/sct','Salmonella II 1,4,12,27:z:1,5 (organism)','114485002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114486001','114486001','http://snomed.info/sct','Salmonella Loubomo (organism)','114486001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114487005','114487005','http://snomed.info/sct','Salmonella II 4,12:z:1,7 (organism)','114487005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114488000','114488000','http://snomed.info/sct','Salmonella II 1,4,12,27:z:e,n,x (organism)','114488000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114489008','114489008','http://snomed.info/sct','Salmonella II 4,12,:z:z39 (organism)','114489008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114490004','114490004','http://snomed.info/sct','Salmonella Vuadens (organism)','114490004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114491000','114491000','http://snomed.info/sct','Salmonella II 1,4,12:z29:e,n,x (organism)','114491000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114492007','114492007','http://snomed.info/sct','Salmonella II 1,4,12,27:z39:1,[5],7 (organism)','114492007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114493002','114493002','http://snomed.info/sct','Salmonella Maska (organism)','114493002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114494008','114494008','http://snomed.info/sct','Salmonella II 6,7,14:a:1,5 (organism)','114494008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114496005','114496005','http://snomed.info/sct','Salmonella II 6,7:a:z42 (organism)','114496005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114497001','114497001','http://snomed.info/sct','Salmonella II 6,7:b:[e,n,x]:z42 (organism)','114497001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114498006','114498006','http://snomed.info/sct','Salmonella Schwabach (organism)','114498006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114499003','114499003','http://snomed.info/sct','Salmonella Namibia (organism)','114499003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114501006','114501006','http://snomed.info/sct','Salmonella II 6,7:d:z42 (organism)','114501006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114502004','114502004','http://snomed.info/sct','Salmonella Nola (organism)','114502004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114504003','114504003','http://snomed.info/sct','Salmonella IV 6,7:g:z51:- (organism)','114504003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114506001','114506001','http://snomed.info/sct','Salmonella Winston (organism)','114506001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114507005','114507005','http://snomed.info/sct','Salmonella Oakey (organism)','114507005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114508000','114508000','http://snomed.info/sct','Salmonella II 6,7:m,t:- (organism)','114508000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114509008','114509008','http://snomed.info/sct','Salmonella Strathcona (organism)','114509008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114510003','114510003','http://snomed.info/sct','Salmonella II 6,7:l,z28:1,5:[z42] (organism)','114510003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114511004','114511004','http://snomed.info/sct','Salmonella II 6,7:l,z28:e,n,x (organism)','114511004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114512006','114512006','http://snomed.info/sct','Salmonella Chile (organism)','114512006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114513001','114513001','http://snomed.info/sct','Salmonella Poitiers (organism)','114513001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114514007','114514007','http://snomed.info/sct','Salmonella II 6,7:z:1,5 (organism)','114514007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114516009','114516009','http://snomed.info/sct','Salmonella Planckendael (organism)','114516009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114517000','114517000','http://snomed.info/sct','Salmonella IV 6,7:z4,z23:- (organism)','114517000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114518005','114518005','http://snomed.info/sct','Salmonella II 6,7:z4,z24:z42 (organism)','114518005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114519002','114519002','http://snomed.info/sct','Salmonella IV 6,7:z4,z24:- (organism)','114519002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114520008','114520008','http://snomed.info/sct','Salmonella II 6,7:z6:1,7 (organism)','114520008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114523005','114523005','http://snomed.info/sct','Salmonella II 6,7:z29:[z42] (organism)','114523005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114524004','114524004','http://snomed.info/sct','Salmonella Tienba (organism)','114524004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114525003','114525003','http://snomed.info/sct','Salmonella Tampico (organism)','114525003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114526002','114526002','http://snomed.info/sct','Salmonella II 6,7:z36:z42 (organism)','114526002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114527006','114527006','http://snomed.info/sct','Salmonella IV 6,7:z36:- (organism)','114527006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114528001','114528001','http://snomed.info/sct','Salmonella II 6,7:z39:1,5,7 (organism)','114528001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114530004','114530004','http://snomed.info/sct','Salmonella II 6,7:l,w:z42 (organism)','114530004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114531000','114531000','http://snomed.info/sct','Salmonella II 6,7:z:z42 (organism)','114531000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114532007','114532007','http://snomed.info/sct','Salmonella II 6,7:z42:1,7 (organism)','114532007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114533002','114533002','http://snomed.info/sct','Salmonella Ohio var 14+ (organism)','114533002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114534008','114534008','http://snomed.info/sct','Salmonella Amersfoort var 14+ (organism)','114534008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114535009','114535009','http://snomed.info/sct','Salmonella Rissen var 14+ (organism)','114535009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114536005','114536005','http://snomed.info/sct','Salmonella Oranienburg var 14+ (organism)','114536005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114537001','114537001','http://snomed.info/sct','Salmonella Gdansk var 14+ (organism)','114537001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114538006','114538006','http://snomed.info/sct','Salmonella Lille var 14+ (organism)','114538006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114539003','114539003','http://snomed.info/sct','Salmonella Livingstone var 14+ (organism)','114539003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114540001','114540001','http://snomed.info/sct','Salmonella II 6,7:l,z28:z6 (organism)','114540001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114541002','114541002','http://snomed.info/sct','Salmonella Valdosta (organism)','114541002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114542009','114542009','http://snomed.info/sct','Salmonella II 6,8:a:z39 (organism)','114542009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114543004','114543004','http://snomed.info/sct','Salmonella II 6,8:a:z52 (organism)','114543004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114544005','114544005','http://snomed.info/sct','Salmonella II 6,8:b:1,5 (organism)','114544005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114545006','114545006','http://snomed.info/sct','Salmonella Portanigra (organism)','114545006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114546007','114546007','http://snomed.info/sct','Salmonella II 6,8:f,g:e,n,z15 (organism)','114546007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114547003','114547003','http://snomed.info/sct','Salmonella II 6,8:m,t:1,5 (organism)','114547003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114548008','114548008','http://snomed.info/sct','Salmonella II 6,8:m,t:e,n,x (organism)','114548008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114550000','114550000','http://snomed.info/sct','Salmonella Magherafelt (organism)','114550000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114551001','114551001','http://snomed.info/sct','Salmonella Kallo (organism)','114551001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114552008','114552008','http://snomed.info/sct','Salmonella II 6,8:l,w:z6:z42 (organism)','114552008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114553003','114553003','http://snomed.info/sct','Salmonella II 6,8:l,z28:e,n,x (organism)','114553003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114554009','114554009','http://snomed.info/sct','Salmonella Bsilla (organism)','114554009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114555005','114555005','http://snomed.info/sct','Salmonella Noya (organism)','114555005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114556006','114556006','http://snomed.info/sct','Salmonella Benue (organism)','114556006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114557002','114557002','http://snomed.info/sct','Salmonella Phaliron (organism)','114557002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114558007','114558007','http://snomed.info/sct','Salmonella Daula (organism)','114558007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114559004','114559004','http://snomed.info/sct','Salmonella Breda (organism)','114559004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114560009','114560009','http://snomed.info/sct','Salmonella Ramiremont (organism)','114560009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114561008','114561008','http://snomed.info/sct','Salmonella II 6,8:z29:1,2 (organism)','114561008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114562001','114562001','http://snomed.info/sct','Salmonella Kolda (organism)','114562001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114563006','114563006','http://snomed.info/sct','Salmonella Sindelfingen (organism)','114563006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114564000','114564000','http://snomed.info/sct','Salmonella Dunkwa (organism)','114564000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114565004','114565004','http://snomed.info/sct','Salmonella II 1,9,12:a:z42 (organism)','114565004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114566003','114566003','http://snomed.info/sct','Salmonella II 1,9,12:b:e,n,x (organism)','114566003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114567007','114567007','http://snomed.info/sct','Salmonella II 1,9,12:b:z6 (organism)','114567007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114568002','114568002','http://snomed.info/sct','Salmonella II 1,9,12:b:z39 (organism)','114568002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114570006','114570006','http://snomed.info/sct','Salmonella Eschberg (organism)','114570006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114571005','114571005','http://snomed.info/sct','Salmonella II 9,12:d:e,n,x (organism)','114571005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114572003','114572003','http://snomed.info/sct','Salmonella Bangui (organism)','114572003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114573008','114573008','http://snomed.info/sct','Salmonella II 9,12:d:z39 (organism)','114573008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114574002','114574002','http://snomed.info/sct','Salmonella II 9,12:e,n,x:1,[5],7 (organism)','114574002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114575001','114575001','http://snomed.info/sct','Salmonella II 1,9,12:g,m,s,t:e,n,x (organism)','114575001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114576000','114576000','http://snomed.info/sct','Salmonella II 9,12:g,s,t:e,n,x (organism)','114576000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114577009','114577009','http://snomed.info/sct','Salmonella II 1,9,12:g,z62:[e,n,x] (organism)','114577009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114578004','114578004','http://snomed.info/sct','Salmonella II 1,9,12:m,t:1,5 (organism)','114578004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114579007','114579007','http://snomed.info/sct','Salmonella II 1,9,12:m,t:z39 (organism)','114579007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114580005','114580005','http://snomed.info/sct','Salmonella Kotu (organism)','114580005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114581009','114581009','http://snomed.info/sct','Salmonella II 9,12:l,z28:1,5:[z42] (organism)','114581009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114582002','114582002','http://snomed.info/sct','Salmonella Powell (organism)','114582002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114583007','114583007','http://snomed.info/sct','Salmonella II 1,9,12:y:z39 (organism)','114583007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114584001','114584001','http://snomed.info/sct','Salmonella II 1,9,12:z:1,7 (organism)','114584001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114585000','114585000','http://snomed.info/sct','Salmonella II 1,9,12:z:z6 (organism)','114585000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114586004','114586004','http://snomed.info/sct','Salmonella II 9,12:z:z39 (organism)','114586004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114588003','114588003','http://snomed.info/sct','Salmonella Natal (organism)','114588003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114589006','114589006','http://snomed.info/sct','Salmonella Franken (organism)','114589006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114590002','114590002','http://snomed.info/sct','Salmonella Treguier (organism)','114590002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114591003','114591003','http://snomed.info/sct','Salmonella Ruanda (organism)','114591003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114592005','114592005','http://snomed.info/sct','Salmonella II 9,12:z29:1,5 (organism)','114592005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114593000','114593000','http://snomed.info/sct','Salmonella II 1,9,12:z39:1,7 (organism)','114593000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114595007','114595007','http://snomed.info/sct','Salmonella II 1,9,12:l,w:e,n,x (organism)','114595007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114596008','114596008','http://snomed.info/sct','Salmonella Cheltenham (organism)','114596008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114597004','114597004','http://snomed.info/sct','Salmonella II 9,46:b:e,n,x (organism)','114597004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114599001','114599001','http://snomed.info/sct','Salmonella Macclesfield (organism)','114599001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114600003','114600003','http://snomed.info/sct','Salmonella II 9,46:g,[m],[s],t:[e,n,x] (organism)','114600003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114601004','114601004','http://snomed.info/sct','Salmonella II 9,46:g,z62:- (organism)','114601004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114602006','114602006','http://snomed.info/sct','Salmonella Ackwepe (organism)','114602006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114603001','114603001','http://snomed.info/sct','Salmonella Nordrhein (organism)','114603001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114604007','114604007','http://snomed.info/sct','Salmonella Deckstein (organism)','114604007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114605008','114605008','http://snomed.info/sct','Salmonella Irchel (organism)','114605008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114606009','114606009','http://snomed.info/sct','Salmonella Nantes (organism)','114606009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114607000','114607000','http://snomed.info/sct','Salmonella II 9,46:z:1,5 (organism)','114607000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114608005','114608005','http://snomed.info/sct','Salmonella II 9,46:z:e,n,x (organism)','114608005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114609002','114609002','http://snomed.info/sct','Salmonella II 9,46:z4,z24:z39:z42 (organism)','114609002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114612004','114612004','http://snomed.info/sct','Salmonella II 1,9,12,46,27:a:z6 (organism)','114612004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114613009','114613009','http://snomed.info/sct','Salmonella II 1,9,12,46,27:c:z39 (organism)','114613009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114615002','114615002','http://snomed.info/sct','Salmonella II 3,10:a:e,n,x (organism)','114615002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114616001','114616001','http://snomed.info/sct','Salmonella II 3,10:a:l,v (organism)','114616001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114618000','114618000','http://snomed.info/sct','Salmonella Lamberhurst (organism)','114618000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114619008','114619008','http://snomed.info/sct','Salmonella II 3,10,[15]:g,m,s,t:[1,5] (organism)','114619008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114620002','114620002','http://snomed.info/sct','Salmonella II 3,10:g,t:- (organism)','114620002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114621003','114621003','http://snomed.info/sct','Salmonella II 3,10:m,t:1,5 (organism)','114621003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114622005','114622005','http://snomed.info/sct','Salmonella II 3,10:m,t:e,n,x (organism)','114622005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114623000','114623000','http://snomed.info/sct','Salmonella Tibati (organism)','114623000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114624006','114624006','http://snomed.info/sct','Salmonella Hoboken (organism)','114624006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114625007','114625007','http://snomed.info/sct','Salmonella Serrekunda (organism)','114625007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114626008','114626008','http://snomed.info/sct','Salmonella II 3,10:l,v:z6 (organism)','114626008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114627004','114627004','http://snomed.info/sct','Salmonella II 3,10:l,z28:e,n,x (organism)','114627004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114628009','114628009','http://snomed.info/sct','Salmonella II 3,10:z:1,5 (organism)','114628009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114629001','114629001','http://snomed.info/sct','Salmonella Harleystreet (organism)','114629001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114630006','114630006','http://snomed.info/sct','Salmonella II 3,10:z:e,n,x (organism)','114630006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114631005','114631005','http://snomed.info/sct','Salmonella II 3,10:z:z39 (organism)','114631005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114632003','114632003','http://snomed.info/sct','Salmonella Wagadugu (organism)','114632003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114633008','114633008','http://snomed.info/sct','Salmonella Okerara (organism)','114633008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114635001','114635001','http://snomed.info/sct','Salmonella II 3,10:z38:z42 (organism)','114635001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114636000','114636000','http://snomed.info/sct','Salmonella II 17:z10:- (organism)','114636000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114638004','114638004','http://snomed.info/sct','Salmonella Aachen (organism)','114638004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114639007','114639007','http://snomed.info/sct','Salmonella IV 17:z36:- (organism)','114639007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114640009','114640009','http://snomed.info/sct','Salmonella II 17:c:z39 (organism)','114640009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114641008','114641008','http://snomed.info/sct','Salmonella IIIb 18:l,v:z53 (organism)','114641008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114642001','114642001','http://snomed.info/sct','Salmonella Potengi (organism)','114642001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114644000','114644000','http://snomed.info/sct','Salmonella IIIb 18:z10:e,n,x,z15 (organism)','114644000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114645004','114645004','http://snomed.info/sct','Salmonella Leer (organism)','114645004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114646003','114646003','http://snomed.info/sct','Salmonella II 18:z10:z6 (organism)','114646003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114647007','114647007','http://snomed.info/sct','Salmonella II 18:z36:- (organism)','114647007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114648002','114648002','http://snomed.info/sct','Salmonella Delmenhorst (organism)','114648002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114649005','114649005','http://snomed.info/sct','Salmonella Tennenlohe (organism)','114649005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114651009','114651009','http://snomed.info/sct','Salmonella IIIb 21:c:e,n,x,z15 (organism)','114651009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114652002','114652002','http://snomed.info/sct','Salmonella II 21:g,[m],[s],t:- (organism)','114652002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114653007','114653007','http://snomed.info/sct','Salmonella IV 21:g,z51:- (organism)','114653007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114654001','114654001','http://snomed.info/sct','Salmonella II 21:m,t:- (organism)','114654001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114655000','114655000','http://snomed.info/sct','Salmonella Surrey (organism)','114655000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114656004','114656004','http://snomed.info/sct','Salmonella Jambur (organism)','114656004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114657008','114657008','http://snomed.info/sct','Salmonella Mountmagnet (organism)','114657008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114658003','114658003','http://snomed.info/sct','Salmonella IIIb 21:r:z (organism)','114658003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114659006','114659006','http://snomed.info/sct','Salmonella Ibaragi (organism)','114659006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114661002','114661002','http://snomed.info/sct','Salmonella IV 21:z4,z32:- (organism)','114661002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114662009','114662009','http://snomed.info/sct','Salmonella II 21:z10:[z6] (organism)','114662009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114663004','114663004','http://snomed.info/sct','Salmonella IIIb 21:z10:z53 (organism)','114663004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114664005','114664005','http://snomed.info/sct','Salmonella IV 21:z36:- (organism)','114664005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114665006','114665006','http://snomed.info/sct','Salmonella IV 21:z4,z23:- (organism)','114665006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114666007','114666007','http://snomed.info/sct','Salmonella II 28:a:e,n,x (organism)','114666007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114667003','114667003','http://snomed.info/sct','Salmonella Dibra (organism)','114667003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114668008','114668008','http://snomed.info/sct','Salmonella Soumbedioune (organism)','114668008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114669000','114669000','http://snomed.info/sct','Salmonella II 28:b:e,n,x (organism)','114669000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114670004','114670004','http://snomed.info/sct','Salmonella Freefalls (organism)','114670004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114671000','114671000','http://snomed.info/sct','Salmonella II 28:b:z6 (organism)','114671000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114672007','114672007','http://snomed.info/sct','Salmonella Yardley (organism)','114672007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114673002','114673002','http://snomed.info/sct','Salmonella II 28:g,(m),[s],t:1,5 (organism)','114673002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114674008','114674008','http://snomed.info/sct','Salmonella II 28:g,m,t:z39 (organism)','114674008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114675009','114675009','http://snomed.info/sct','Salmonella Morillons (organism)','114675009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114676005','114676005','http://snomed.info/sct','Salmonella Douala (organism)','114676005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114677001','114677001','http://snomed.info/sct','Salmonella Catalunia (organism)','114677001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114678006','114678006','http://snomed.info/sct','Salmonella Penilla (organism)','114678006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114679003','114679003','http://snomed.info/sct','Salmonella II 28:I,z28:1,5 (organism)','114679003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114681001','114681001','http://snomed.info/sct','Salmonella Vanier (organism)','114681001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114682008','114682008','http://snomed.info/sct','Salmonella II 28:z:1,5 (organism)','114682008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114683003','114683003','http://snomed.info/sct','Salmonella Doel (organism)','114683003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114684009','114684009','http://snomed.info/sct','Salmonella II 28:z:z39 (organism)','114684009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114685005','114685005','http://snomed.info/sct','Salmonella Cannobio (organism)','114685005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114686006','114686006','http://snomed.info/sct','Salmonella Libreville (organism)','114686006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114687002','114687002','http://snomed.info/sct','Salmonella IIIb 28:z10:z (organism)','114687002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114688007','114688007','http://snomed.info/sct','Salmonella II 28:z29:1,5 (organism)','114688007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114689004','114689004','http://snomed.info/sct','Salmonella II 28:z29:e,n,x (organism)','114689004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114690008','114690008','http://snomed.info/sct','Salmonella Konolfingen (organism)','114690008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114691007','114691007','http://snomed.info/sct','Salmonella Santander (organism)','114691007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114692000','114692000','http://snomed.info/sct','Salmonella II 30:a:z39 (organism)','114692000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114693005','114693005','http://snomed.info/sct','Salmonella Torhout (organism)','114693005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114694004','114694004','http://snomed.info/sct','Salmonella II 30:g,t:- (organism)','114694004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114695003','114695003','http://snomed.info/sct','Salmonella II 30:m,t:- (organism)','114695003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114696002','114696002','http://snomed.info/sct','Salmonella Mjordan (organism)','114696002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114697006','114697006','http://snomed.info/sct','Salmonella Ockenheim (organism)','114697006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114698001','114698001','http://snomed.info/sct','Salmonella II 30:l,z28:z6 (organism)','114698001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114699009','114699009','http://snomed.info/sct','Salmonella Grandhaven (organism)','114699009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114700005','114700005','http://snomed.info/sct','Salmonella Stoneferry (organism)','114700005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114701009','114701009','http://snomed.info/sct','Salmonella Senneville (organism)','114701009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114702002','114702002','http://snomed.info/sct','Salmonella II 30:z10:e,n,x,z15 (organism)','114702002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114703007','114703007','http://snomed.info/sct','Salmonella Gouloumbo (organism)','114703007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114704001','114704001','http://snomed.info/sct','Salmonella II 35:d:1,5 (organism)','114704001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114705000','114705000','http://snomed.info/sct','Salmonella II 35:g,t:1,5 (organism)','114705000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114706004','114706004','http://snomed.info/sct','Salmonella II 35:m,t- (organism)','114706004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114707008','114707008','http://snomed.info/sct','Salmonella IIIb 35:i:z35 (organism)','114707008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114708003','114708003','http://snomed.info/sct','Salmonella IIIb 35:k:z53 (organism)','114708003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114709006','114709006','http://snomed.info/sct','Salmonella IIIb 35:k:e,n,x,z15 (organism)','114709006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114710001','114710001','http://snomed.info/sct','Salmonella IIIb 35:l,v:z35:[z67] (organism)','114710001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114711002','114711002','http://snomed.info/sct','Salmonella IIIb 35:r:z (organism)','114711002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114712009','114712009','http://snomed.info/sct','Salmonella II 35:z29:e,n,x (organism)','114712009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114713004','114713004','http://snomed.info/sct','Salmonella Oran (organism)','114713004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114714005','114714005','http://snomed.info/sct','Salmonella II 38:d:1,5 (organism)','114714005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114715006','114715006','http://snomed.info/sct','Salmonella II 38:g,t:- (organism)','114715006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114716007','114716007','http://snomed.info/sct','Salmonella Rothenburgsort (organism)','114716007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114717003','114717003','http://snomed.info/sct','Salmonella IIIb 38:k: e,n,x,z15 (organism)','114717003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114718008','114718008','http://snomed.info/sct','Salmonella IIIb 38:(k):z35 (organism)','114718008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114719000','114719000','http://snomed.info/sct','Salmonella Taylor (organism)','114719000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114720006','114720006','http://snomed.info/sct','Salmonella IIIb 38:r:z:[z57] (organism)','114720006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114721005','114721005','http://snomed.info/sct','Salmonella Stachus (organism)','114721005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114723008','114723008','http://snomed.info/sct','Salmonella Neunkirchen (organism)','114723008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114724002','114724002','http://snomed.info/sct','Salmonella IIIb 38:z53:- (organism)','114724002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114725001','114725001','http://snomed.info/sct','Salmonella IIIb 38:z61:[z53] (organism)','114725001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114726000','114726000','http://snomed.info/sct','Salmonella II 39:e,n,x:1,7 (organism)','114726000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114727009','114727009','http://snomed.info/sct','Salmonella II 39:[g],m,t:[e,n,x] (organism)','114727009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114728004','114728004','http://snomed.info/sct','Salmonella Cumberland (organism)','114728004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114729007','114729007','http://snomed.info/sct','Salmonella Alma (organism)','114729007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114730002','114730002','http://snomed.info/sct','Salmonella II 39:l,v:1,5 (organism)','114730002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114731003','114731003','http://snomed.info/sct','Salmonella II 39:l,z28:e,n,x (organism)','114731003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114732005','114732005','http://snomed.info/sct','Salmonella II 39:l,z28:z39 (organism)','114732005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114733000','114733000','http://snomed.info/sct','Salmonella Hegau (organism)','114733000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114734006','114734006','http://snomed.info/sct','Salmonella II 39:-:1,7 (organism)','114734006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114735007','114735007','http://snomed.info/sct','Salmonella II 40:a:z39 (organism)','114735007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114736008','114736008','http://snomed.info/sct','Salmonella II 1,40:c:e,n,x,z15 (organism)','114736008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114737004','114737004','http://snomed.info/sct','Salmonella II 40:d:- (organism)','114737004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114738009','114738009','http://snomed.info/sct','Salmonella II 1.40:e,n,x :1,[5],7 (organism)','114738009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114739001','114739001','http://snomed.info/sct','Salmonella II 1,40:e,n,x,z15 :1,6 (organism)','114739001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114740004','114740004','http://snomed.info/sct','Salmonella II 1,40:g,[m],[s],[t]:e,n,x (organism)','114740004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114741000','114741000','http://snomed.info/sct','Salmonella II 1,40:g,[m],[s],t:1,5 (organism)','114741000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114742007','114742007','http://snomed.info/sct','Salmonella II 1,40:g,t:e,n,x,z15 (organism)','114742007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114743002','114743002','http://snomed.info/sct','Salmonella II 40:g,t:z39 (organism)','114743002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114744008','114744008','http://snomed.info/sct','Salmonella IV 1,40:g,t:- (organism)','114744008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114745009','114745009','http://snomed.info/sct','Salmonella II 1,40:g,[m],[s],t:z42 (organism)','114745009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114746005','114746005','http://snomed.info/sct','Salmonella IIIa 40:g,z51:- (organism)','114746005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114747001','114747001','http://snomed.info/sct','Salmonella IV 1,40:g,z51:- (organism)','114747001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114748006','114748006','http://snomed.info/sct','Salmonella II 1,40:k:e,n,x,z15 (organism)','114748006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114749003','114749003','http://snomed.info/sct','Salmonella II 40:k:z6 (organism)','114749003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114750003','114750003','http://snomed.info/sct','Salmonella Canary (organism)','114750003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114751004','114751004','http://snomed.info/sct','Salmonella II 40:l,v:e,n,x (organism)','114751004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114752006','114752006','http://snomed.info/sct','Salmonella Tiko (organism)','114752006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114753001','114753001','http://snomed.info/sct','Salmonella II 1,40:l,z28:1,5:z42 (organism)','114753001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114754007','114754007','http://snomed.info/sct','Salmonella II 1,40:l,z28:z39 (organism)','114754007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114755008','114755008','http://snomed.info/sct','Salmonella II 1,40:z:1,5 (organism)','114755008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114756009','114756009','http://snomed.info/sct','Salmonella II 1,40:z:z39 (organism)','114756009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114757000','114757000','http://snomed.info/sct','Salmonella II 40:z:z42 (organism)','114757000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114758005','114758005','http://snomed.info/sct','Salmonella IV 1,40:z4,z23:- (organism)','114758005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114759002','114759002','http://snomed.info/sct','Salmonella II 40:z4,z24:z39 (organism)','114759002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114760007','114760007','http://snomed.info/sct','Salmonella II 1,40:z35:e,n,x,z15 (organism)','114760007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114761006','114761006','http://snomed.info/sct','Salmonella Yekepa (organism)','114761006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114762004','114762004','http://snomed.info/sct','Salmonella V 1,40:z35:- (organism)','114762004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114763009','114763009','http://snomed.info/sct','Salmonella II 1,40:z39:1,5:z42 (organism)','114763009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114764003','114764003','http://snomed.info/sct','Salmonella II 1,40:z39:1,6 (organism)','114764003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114765002','114765002','http://snomed.info/sct','Salmonella IIIb 40:z39:1,6 (organism)','114765002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114766001','114766001','http://snomed.info/sct','Salmonella II 40:z39:1,7 (organism)','114766001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114767005','114767005','http://snomed.info/sct','Salmonella II 1,40:z42:1,6 (organism)','114767005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114768000','114768000','http://snomed.info/sct','Salmonella V 1,40:z81:- (organism)','114768000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114770009','114770009','http://snomed.info/sct','Salmonella Burundi (organism)','114770009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114771008','114771008','http://snomed.info/sct','Salmonella Vaugirard (organism)','114771008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114772001','114772001','http://snomed.info/sct','Salmonella VI 41:b:1,7 (organism)','114772001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114773006','114773006','http://snomed.info/sct','Salmonella Sica (organism)','114773006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114774000','114774000','http://snomed.info/sct','Salmonella II 41:d:z6 (organism)','114774000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114775004','114775004','http://snomed.info/sct','Salmonella II 41:g,t:- (organism)','114775004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114776003','114776003','http://snomed.info/sct','Salmonella Samaru (organism)','114776003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114777007','114777007','http://snomed.info/sct','Salmonella Verona (organism)','114777007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114778002','114778002','http://snomed.info/sct','Salmonella Ferlo (organism)','114778002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114779005','114779005','http://snomed.info/sct','Salmonella II 41:k:1,6 (organism)','114779005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114780008','114780008','http://snomed.info/sct','Salmonella II 41:k:z6 (organism)','114780008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114781007','114781007','http://snomed.info/sct','Salmonella II 41:z:1,5 (organism)','114781007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114782000','114782000','http://snomed.info/sct','Salmonella Bofflens (organism)','114782000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114783005','114783005','http://snomed.info/sct','Salmonella II 41:z10:1,2 (organism)','114783005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114784004','114784004','http://snomed.info/sct','Salmonella II 41:z10:e,n,x,z (organism)','114784004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114785003','114785003','http://snomed.info/sct','Salmonella II 41:z10:e,n,x,z15 (organism)','114785003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114786002','114786002','http://snomed.info/sct','Salmonella IV 41:z29:- (organism)','114786002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114787006','114787006','http://snomed.info/sct','Salmonella Ahoutoue (organism)','114787006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114788001','114788001','http://snomed.info/sct','Salmonella IV 41:z52:- (organism)','114788001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114789009','114789009','http://snomed.info/sct','Salmonella II 41:g,m,s,t:z6 (organism)','114789009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114790000','114790000','http://snomed.info/sct','Salmonella II 42:b:1,5 (organism)','114790000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114791001','114791001','http://snomed.info/sct','Salmonella Orbe (organism)','114791001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114792008','114792008','http://snomed.info/sct','Salmonella II 42:b:e,n,x,z15 (organism)','114792008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114793003','114793003','http://snomed.info/sct','Salmonella II 42:b:z6 (organism)','114793003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114794009','114794009','http://snomed.info/sct','Salmonella II 42:d:z6 (organism)','114794009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114795005','114795005','http://snomed.info/sct','Salmonella II 42:e,n,x:1,6 (organism)','114795005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114796006','114796006','http://snomed.info/sct','Salmonella II 42:g,t:- (organism)','114796006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114797002','114797002','http://snomed.info/sct','Salmonella IV 1,42:g,z51:- (organism)','114797002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114798007','114798007','http://snomed.info/sct','Salmonella Borromea (organism)','114798007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114799004','114799004','http://snomed.info/sct','Salmonella IIIb 42:k:e,n,x,z15 (organism)','114799004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114800000','114800000','http://snomed.info/sct','Salmonella II 42:l,v:e,n,x,z15 (organism)','114800000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114801001','114801001','http://snomed.info/sct','Salmonella II 1,42:l,w:e,n,x (organism)','114801001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114802008','114802008','http://snomed.info/sct','Salmonella II 42:r:- (organism)','114802008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114803003','114803003','http://snomed.info/sct','Salmonella Spalentor (organism)','114803003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114804009','114804009','http://snomed.info/sct','Salmonella II 42:z:1,5 (organism)','114804009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114805005','114805005','http://snomed.info/sct','Salmonella II 42:z:e,n,x,z15 (organism)','114805005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114807002','114807002','http://snomed.info/sct','Salmonella II 42:z:z6 (organism)','114807002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114808007','114808007','http://snomed.info/sct','Salmonella Broc (organism)','114808007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114809004','114809004','http://snomed.info/sct','Salmonella IV 1,42:z4,z24:- (organism)','114809004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114810009','114810009','http://snomed.info/sct','Salmonella II 42:z10:1,2 (organism)','114810009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114811008','114811008','http://snomed.info/sct','Salmonella IIIb 42:z10:z67 (organism)','114811008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114812001','114812001','http://snomed.info/sct','Salmonella Hennekamp (organism)','114812001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114813006','114813006','http://snomed.info/sct','Salmonella Tema (organism)','114813006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114814000','114814000','http://snomed.info/sct','Salmonella II 43:a:1,5 (organism)','114814000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114815004','114815004','http://snomed.info/sct','Salmonella Niederoderwitz (organism)','114815004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114816003','114816003','http://snomed.info/sct','Salmonella II 43:b:z42 (organism)','114816003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114817007','114817007','http://snomed.info/sct','Salmonella Orleans (organism)','114817007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114818002','114818002','http://snomed.info/sct','Salmonella II 43:g,m,[s],t:[z42] (organism)','114818002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114819005','114819005','http://snomed.info/sct','Salmonella II 43:g,t:[1,5] (organism)','114819005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114820004','114820004','http://snomed.info/sct','Salmonella IIIa 43:g,z51:- (organism)','114820004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114821000','114821000','http://snomed.info/sct','Salmonella Voulte (organism)','114821000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114822007','114822007','http://snomed.info/sct','Salmonella Sudan (organism)','114822007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114823002','114823002','http://snomed.info/sct','Salmonella II 43:l,z13,z28:1,5 (organism)','114823002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114824008','114824008','http://snomed.info/sct','Salmonella Arusha (organism)','114824008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114825009','114825009','http://snomed.info/sct','Salmonella II 43:z4,z23:- (organism)','114825009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114826005','114826005','http://snomed.info/sct','Salmonella IV 43:z4,z23:- (organism)','114826005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114827001','114827001','http://snomed.info/sct','Salmonella IV 43:z4,z32:- (organism)','114827001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114828006','114828006','http://snomed.info/sct','Salmonella Makiling (organism)','114828006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114829003','114829003','http://snomed.info/sct','Salmonella IV 43:z36,z38:- (organism)','114829003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114830008','114830008','http://snomed.info/sct','Salmonella II 43:z42:1,5,7 (organism)','114830008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114831007','114831007','http://snomed.info/sct','Salmonella IV 44:a:- (organism)','114831007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114832000','114832000','http://snomed.info/sct','Salmonella Splott (organism)','114832000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114833005','114833005','http://snomed.info/sct','Salmonella IIIb 44:g,t:1,5:z42 (organism)','114833005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114834004','114834004','http://snomed.info/sct','Salmonella Maritzburg (organism)','114834004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114835003','114835003','http://snomed.info/sct','Salmonella V 44:r:- (organism)','114835003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114836002','114836002','http://snomed.info/sct','Salmonella Bolama (organism)','114836002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114837006','114837006','http://snomed.info/sct','Salmonella Ploufragan (organism)','114837006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114838001','114838001','http://snomed.info/sct','Salmonella IV 1,44:z4,z32:- (organism)','114838001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114839009','114839009','http://snomed.info/sct','Salmonella Llobregat (organism)','114839009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114841005','114841005','http://snomed.info/sct','Salmonella IV 44:z29:- (organism)','114841005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114842003','114842003','http://snomed.info/sct','Salmonella II 1,44:z39:e,n,x,z15 (organism)','114842003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114843008','114843008','http://snomed.info/sct','Salmonella V 44:z39:- (organism)','114843008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114845001','114845001','http://snomed.info/sct','Salmonella II 44:z29:e,n,x:z42 (organism)','114845001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114846000','114846000','http://snomed.info/sct','Salmonella VI 45:a:e,n,x (organism)','114846000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114847009','114847009','http://snomed.info/sct','Salmonella II 45:a:z10 (organism)','114847009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114848004','114848004','http://snomed.info/sct','Salmonella Warmsen (organism)','114848004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114849007','114849007','http://snomed.info/sct','Salmonella II 45:g,m,s,t:1,5 (organism)','114849007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114850007','114850007','http://snomed.info/sct','Salmonella II 45:g,m,s,t:e,n,x (organism)','114850007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114851006','114851006','http://snomed.info/sct','Salmonella II 45:g,m,t:e,n,x,z15 (organism)','114851006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114852004','114852004','http://snomed.info/sct','Salmonella Verviers (organism)','114852004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114853009','114853009','http://snomed.info/sct','Salmonella Imo (organism)','114853009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114854003','114854003','http://snomed.info/sct','Salmonella Kofandoka (organism)','114854003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114855002','114855002','http://snomed.info/sct','Salmonella II 45:z:1,5 (organism)','114855002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114856001','114856001','http://snomed.info/sct','Salmonella Yopougon (organism)','114856001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114857005','114857005','http://snomed.info/sct','Salmonella II 45:z:z39 (organism)','114857005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114858000','114858000','http://snomed.info/sct','Salmonella IIIa 45:z4,z23:- (organism)','114858000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114859008','114859008','http://snomed.info/sct','Salmonella Transvaal (organism)','114859008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114860003','114860003','http://snomed.info/sct','Salmonella Aprad (organism)','114860003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114861004','114861004','http://snomed.info/sct','Salmonella IV 45:z36,z38:- (organism)','114861004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114862006','114862006','http://snomed.info/sct','Salmonella II 47:a:1,5 (organism)','114862006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114863001','114863001','http://snomed.info/sct','Salmonella Wenatchee (organism)','114863001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114864007','114864007','http://snomed.info/sct','Salmonella II 47:b:1,5 (organism)','114864007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114865008','114865008','http://snomed.info/sct','Salmonella II 47:b:e,n,x,z15 (organism)','114865008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114866009','114866009','http://snomed.info/sct','Salmonella II 47:b:z6 (organism)','114866009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114867000','114867000','http://snomed.info/sct','Salmonella II 47:d:z39 (organism)','114867000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114868005','114868005','http://snomed.info/sct','Salmonella II 47:e,n,x,z15:1,6 (organism)','114868005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114869002','114869002','http://snomed.info/sct','Salmonella IIIa 47:g,z51:- (organism)','114869002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114870001','114870001','http://snomed.info/sct','Salmonella IIIb 47:l,v:z (organism)','114870001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114871002','114871002','http://snomed.info/sct','Salmonella IV 47:l,v:- (organism)','114871002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114872009','114872009','http://snomed.info/sct','Salmonella IIIb 47:r:e,n,x,z15 (organism)','114872009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114873004','114873004','http://snomed.info/sct','Salmonella II 47:z:z6 (organism)','114873004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114874005','114874005','http://snomed.info/sct','Salmonella Binche (organism)','114874005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114875006','114875006','http://snomed.info/sct','Salmonella IIIa 47:z4,z23:- (organism)','114875006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114876007','114876007','http://snomed.info/sct','Salmonella Namoda (organism)','114876007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114877003','114877003','http://snomed.info/sct','Salmonella II 47:z29:e,n,x,z15 (organism)','114877003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114878008','114878008','http://snomed.info/sct','Salmonella IV 47:z36:- (organism)','114878008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114879000','114879000','http://snomed.info/sct','Salmonella V 48:b:- (organism)','114879000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_11488000','11488000','http://snomed.info/sct','Salmonella Sundsvall (organism)','11488000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114880002','114880002','http://snomed.info/sct','Salmonella II 48:d:1,2 (organism)','114880002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114881003','114881003','http://snomed.info/sct','Salmonella II 48:d:z6 (organism)','114881003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114882005','114882005','http://snomed.info/sct','Salmonella Buckeye (organism)','114882005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114883000','114883000','http://snomed.info/sct','Salmonella II 48:e,n,x,z15:z6 (organism)','114883000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114884006','114884006','http://snomed.info/sct','Salmonella II 48:g,m,t:- (organism)','114884006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114885007','114885007','http://snomed.info/sct','Salmonella IV 48:g,z51:- (organism)','114885007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114886008','114886008','http://snomed.info/sct','Salmonella IIIb 48:i:z61 (organism)','114886008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114887004','114887004','http://snomed.info/sct','Salmonella V 48:i:- (organism)','114887004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114888009','114888009','http://snomed.info/sct','Salmonella II 48:k:z39 (organism)','114888009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114889001','114889001','http://snomed.info/sct','Salmonella Australia (organism)','114889001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114890005','114890005','http://snomed.info/sct','Salmonella II 48:z:1,5 (organism)','114890005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114891009','114891009','http://snomed.info/sct','Salmonella IIIb 48:z:1,5,7 (organism)','114891009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114892002','114892002','http://snomed.info/sct','Salmonella IV 48:z4,z23:- (organism)','114892002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114893007','114893007','http://snomed.info/sct','Salmonella II 48:z10:[1,5] (organism)','114893007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114894001','114894001','http://snomed.info/sct','Salmonella VI 48:z10:1,5 (organism)','114894001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114896004','114896004','http://snomed.info/sct','Salmonella IV 48:z29:- (organism)','114896004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114897008','114897008','http://snomed.info/sct','Salmonella IIIb 48:z35:z52 (organism)','114897008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114898003','114898003','http://snomed.info/sct','Salmonella V 48:z35:- (organism)','114898003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114899006','114899006','http://snomed.info/sct','Salmonella V 48:z39:- (organism)','114899006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114900001','114900001','http://snomed.info/sct','Salmonella V 48:z41:- (organism)','114900001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114901002','114901002','http://snomed.info/sct','Salmonella V 48:z65:- (organism)','114901002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114902009','114902009','http://snomed.info/sct','Salmonella V 48:z81:- (organism)','114902009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114903004','114903004','http://snomed.info/sct','Salmonella IV 50:a:- (organism)','114903004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114905006','114905006','http://snomed.info/sct','Salmonella IV 50:b:- (organism)','114905006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114906007','114906007','http://snomed.info/sct','Salmonella Hemingford (organism)','114906007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114907003','114907003','http://snomed.info/sct','Salmonella IV 50:d:- (organism)','114907003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114908008','114908008','http://snomed.info/sct','Salmonella II 50:e,n,x:1,7 (organism)','114908008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114909000','114909000','http://snomed.info/sct','Salmonella II 50: g,[m],s,t:[1,5] (organism)','114909000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114910005','114910005','http://snomed.info/sct','Salmonella IV 50:g,z51:- (organism)','114910005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114911009','114911009','http://snomed.info/sct','Salmonella II 50:g,z62:e,n,x (organism)','114911009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114913007','114913007','http://snomed.info/sct','Salmonella II 50:k:e,n,x:z42 (organism)','114913007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114914001','114914001','http://snomed.info/sct','Salmonella II 50:k:z6 (organism)','114914001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114915000','114915000','http://snomed.info/sct','Salmonella VI 50:l,v:z67 (organism)','114915000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114916004','114916004','http://snomed.info/sct','Salmonella IIIb 50:z:z52 (organism)','114916004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114918003','114918003','http://snomed.info/sct','Salmonella IIIa 50:z4,z32:- (organism)','114918003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114919006','114919006','http://snomed.info/sct','Salmonella IV 50:z4,z32:- (organism)','114919006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114920000','114920000','http://snomed.info/sct','Salmonella IIIb 50:z10:z (organism)','114920000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114921001','114921001','http://snomed.info/sct','Salmonella II 50:z10:z6:z42 (organism)','114921001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114922008','114922008','http://snomed.info/sct','Salmonella Ivorycoast (organism)','114922008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114924009','114924009','http://snomed.info/sct','Salmonella IIIb 50:z52:z53 (organism)','114924009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114925005','114925005','http://snomed.info/sct','Salmonella IV 51:a:- (organism)','114925005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114926006','114926006','http://snomed.info/sct','Salmonella Karaya (organism)','114926006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114927002','114927002','http://snomed.info/sct','Salmonella IV 51:b:- (organism)','114927002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114928007','114928007','http://snomed.info/sct','Salmonella II 51:c:- (organism)','114928007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114929004','114929004','http://snomed.info/sct','Salmonella II 51:g,s,t:e,n,x (organism)','114929004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114930009','114930009','http://snomed.info/sct','Salmonella Harcourt (organism)','114930009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114932001','114932001','http://snomed.info/sct','Salmonella Moundou (organism)','114932001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114933006','114933006','http://snomed.info/sct','Salmonella II 51:l,z28:z6 (organism)','114933006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114934000','114934000','http://snomed.info/sct','Salmonella II 51:l,z28:z39 (organism)','114934000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114937007','114937007','http://snomed.info/sct','Salmonella IIIa 51:z4,z32:- (organism)','114937007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114938002','114938002','http://snomed.info/sct','Salmonella Bergues (organism)','114938002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114939005','114939005','http://snomed.info/sct','Salmonella II 51:-:1,7 (organism)','114939005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114940007','114940007','http://snomed.info/sct','Salmonella II 52:d:z39 (organism)','114940007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114941006','114941006','http://snomed.info/sct','Salmonella Bordeaux (organism)','114941006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114943009','114943009','http://snomed.info/sct','Salmonella II 52:z:z39 (organism)','114943009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114944003','114944003','http://snomed.info/sct','Salmonella IIIb 52:z:z52 (organism)','114944003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114945002','114945002','http://snomed.info/sct','Salmonella II 52:z39:1,5,7 (organism)','114945002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114946001','114946001','http://snomed.info/sct','Salmonella II 52:z44:1,5,7 (organism)','114946001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114947005','114947005','http://snomed.info/sct','Salmonella II 53:c:1,5 (organism)','114947005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114948000','114948000','http://snomed.info/sct','Salmonella IIIb 53:k:z53 (organism)','114948000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114949008','114949008','http://snomed.info/sct','Salmonella II 53:l,z28:e,n,x (organism)','114949008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114950008','114950008','http://snomed.info/sct','Salmonella II 53:l,z28:z6 (organism)','114950008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114951007','114951007','http://snomed.info/sct','Salmonella II 53:l,z28:z39 (organism)','114951007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114952000','114952000','http://snomed.info/sct','Salmonella IIIb 53:r:z68 (organism)','114952000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114954004','114954004','http://snomed.info/sct','Salmonella IIIb 53:z10:z (organism)','114954004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114955003','114955003','http://snomed.info/sct','Salmonella IV 1,53:z36,z38:- (organism)','114955003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114956002','114956002','http://snomed.info/sct','Salmonella Leda (organism)','114956002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114957006','114957006','http://snomed.info/sct','Salmonella Newholland (organism)','114957006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114958001','114958001','http://snomed.info/sct','Salmonella Barry (organism)','114958001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114959009','114959009','http://snomed.info/sct','Salmonella II 55:k:z39 (organism)','114959009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114960004','114960004','http://snomed.info/sct','Salmonella II 56:b- (organism)','114960004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114961000','114961000','http://snomed.info/sct','Salmonella II 56:z:z6 (organism)','114961000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114962007','114962007','http://snomed.info/sct','Salmonella II 57:a:z42 (organism)','114962007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114963002','114963002','http://snomed.info/sct','Salmonella Batonrouge (organism)','114963002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114964008','114964008','http://snomed.info/sct','Salmonella IIIb 57:c:e,n,x,z15 (organism)','114964008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114965009','114965009','http://snomed.info/sct','Salmonella IIIb 57:k:e,n,x,z15 (organism)','114965009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114966005','114966005','http://snomed.info/sct','Salmonella IIIb 57:z10:z (organism)','114966005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114967001','114967001','http://snomed.info/sct','Salmonella II 57:z29:z42 (organism)','114967001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114968006','114968006','http://snomed.info/sct','Salmonella II 57:z39:e,n,x,z15 (organism)','114968006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114969003','114969003','http://snomed.info/sct','Salmonella II 57:z42:1,6:z53 (organism)','114969003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114970002','114970002','http://snomed.info/sct','Salmonella IIIb 58:k:z (organism)','114970002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114971003','114971003','http://snomed.info/sct','Salmonella II 58:l,z13,z28:1,5 (organism)','114971003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114972005','114972005','http://snomed.info/sct','Salmonella II 58:l,z13,z28:z6 (organism)','114972005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114973000','114973000','http://snomed.info/sct','Salmonella II 58:z6:1,6 (organism)','114973000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114974006','114974006','http://snomed.info/sct','Salmonella IIIb 58:z10:e,n,x,z15 (organism)','114974006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114975007','114975007','http://snomed.info/sct','Salmonella IIIb 58:z10:z53 (organism)','114975007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114976008','114976008','http://snomed.info/sct','Salmonella II 58:z39:e,n,x,z15 (organism)','114976008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114977004','114977004','http://snomed.info/sct','Salmonella IIIb 59:c:e,n,x,z15 (organism)','114977004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114978009','114978009','http://snomed.info/sct','Salmonella IIIb 59:i:e,n,x,z15 (organism)','114978009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114979001','114979001','http://snomed.info/sct','Salmonella II 59:k:(z) (organism)','114979001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114980003','114980003','http://snomed.info/sct','Salmonella IIIb 59:r:z35 (organism)','114980003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114981004','114981004','http://snomed.info/sct','Salmonella II 1,59:z:z6 (organism)','114981004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114982006','114982006','http://snomed.info/sct','Salmonella IIIb 59:z52:z53 (organism)','114982006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114983001','114983001','http://snomed.info/sct','Salmonella II 60:b:- (organism)','114983001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114984007','114984007','http://snomed.info/sct','Salmonella II 60:g,m,t:z6 (organism)','114984007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114985008','114985008','http://snomed.info/sct','Salmonella IIIb 60:i:z (organism)','114985008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114986009','114986009','http://snomed.info/sct','Salmonella II 60:z:e,n,x (organism)','114986009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114987000','114987000','http://snomed.info/sct','Salmonella IIIb 60:z10:z53 (organism)','114987000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114988005','114988005','http://snomed.info/sct','Salmonella II 60:z29:e,n,x (organism)','114988005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114989002','114989002','http://snomed.info/sct','Salmonella V 60:z41:- (organism)','114989002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114990006','114990006','http://snomed.info/sct','Salmonella IIIb 61:k:z35 (organism)','114990006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114991005','114991005','http://snomed.info/sct','Salmonella IIIb 61:r:z (organism)','114991005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114992003','114992003','http://snomed.info/sct','Salmonella V 61:z35:- (organism)','114992003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114993008','114993008','http://snomed.info/sct','Salmonella IIIa 62:z29:- (organism)','114993008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114994002','114994002','http://snomed.info/sct','Salmonella IIIa 62:z36:- (organism)','114994002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114995001','114995001','http://snomed.info/sct','Salmonella II 65:g,t:- (organism)','114995001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114996000','114996000','http://snomed.info/sct','Salmonella IIIb 65:r:z35 (organism)','114996000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114997009','114997009','http://snomed.info/sct','Salmonella IIIb 65:z52:e,n,x,z15 (organism)','114997009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_114999007','114999007','http://snomed.info/sct','Salmonella V 66:z35:- (organism)','114999007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_115000007','115000007','http://snomed.info/sct','Salmonella V 66:z39:- (organism)','115000007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_115001006','115001006','http://snomed.info/sct','Salmonella V 66:z41:- (organism)','115001006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_115002004','115002004','http://snomed.info/sct','Salmonella V 66:z65:- (organism)','115002004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_115003009','115003009','http://snomed.info/sct','Salmonella V 66:z81:- (organism)','115003009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_115024004','115024004','http://snomed.info/sct','Genus Pragia (organism)','115024004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_115025003','115025003','http://snomed.info/sct','Pragia fontium (organism)','115025003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_11521007','11521007','http://snomed.info/sct','Salmonella Hillingdon (organism)','11521007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_115408009','115408009','http://snomed.info/sct','Salmonella, serogroup D (organism)','115408009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_115409001','115409001','http://snomed.info/sct','Salmonella, serogroup E (organism)','115409001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_115410006','115410006','http://snomed.info/sct','Salmonella, serogroup G (organism)','115410006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1156339009','1156339009','http://snomed.info/sct','Franconibacter pulveris (organism)','1156339009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_115655006','115655006','http://snomed.info/sct','Salmonella II 6,7:-:1,6 (organism)','115655006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_115661009','115661009','http://snomed.info/sct','Salmonella Palamaner (organism)','115661009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_11577009','11577009','http://snomed.info/sct','Salmonella Lawndale (organism)','11577009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_11579007','11579007','http://snomed.info/sct','Salmonella Cullingworth (organism)','11579007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_116018004','116018004','http://snomed.info/sct','Salmonella Bethune (organism)','116018004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_116046002','116046002','http://snomed.info/sct','Hafnia alvei biogroup I (organism)','116046002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_116048001','116048001','http://snomed.info/sct','Salmonella, serogroup C (organism)','116048001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_116049009','116049009','http://snomed.info/sct','Salmonella serotype B, 5:-:1,2 (organism)','116049009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_116053006','116053006','http://snomed.info/sct','Salmonella Damman (organism)','116053006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_116054000','116054000','http://snomed.info/sct','Salmonella Omuna (organism)','116054000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_116056003','116056003','http://snomed.info/sct','Salmonella II 3,10,15:g,m,s,t:- (organism)','116056003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_116057007','116057007','http://snomed.info/sct','Salmonella Bloomsbury (organism)','116057007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_116058002','116058002','http://snomed.info/sct','Salmonella Wilmington (organism)','116058002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_116059005','116059005','http://snomed.info/sct','Salmonella Asylanta (organism)','116059005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_116376004','116376004','http://snomed.info/sct','Salmonella serotype C2,6,8:z10:- (organism)','116376004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_116377008','116377008','http://snomed.info/sct','Salmonella serotype C1,7:l,w:- (organism)','116377008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_116394005','116394005','http://snomed.info/sct','Enterotoxigenic Escherichia coli (organism)','116394005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_116395006','116395006','http://snomed.info/sct','Enterohemorrhagic Escherichia coli (organism)','116395006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_116396007','116396007','http://snomed.info/sct','Enteroinvasive Escherichia coli (organism)','116396007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_116397003','116397003','http://snomed.info/sct','Enteroaggregative Escherichia coli (organism)','116397003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_116398008','116398008','http://snomed.info/sct','Escherichia coli, diarrheagenic strain (organism)','116398008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_11738009','11738009','http://snomed.info/sct','Salmonella Sterrenbos (organism)','11738009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_11750003','11750003','http://snomed.info/sct','Salmonella Lisboa (organism)','11750003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1179032006','1179032006','http://snomed.info/sct','Salmonella group D (organism)','1179032006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1179072002','1179072002','http://snomed.info/sct','Salmonella group C (organism)','1179072002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1179074001','1179074001','http://snomed.info/sct','Salmonella group E (organism)','1179074001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_11827001','11827001','http://snomed.info/sct','Salmonella II 1,40:a:z6 (organism)','11827001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_11893007','11893007','http://snomed.info/sct','Salmonella Irigny (organism)','11893007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_11901002','11901002','http://snomed.info/sct','Salmonella Kiambu (organism)','11901002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_11903004','11903004','http://snomed.info/sct','Salmonella Mesbit (organism)','11903004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_11926006','11926006','http://snomed.info/sct','Salmonella Hannover (organism)','11926006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_11958001','11958001','http://snomed.info/sct','Salmonella Niamey (organism)','11958001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_12040007','12040007','http://snomed.info/sct','Salmonella Huddinge (organism)','12040007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_12162005','12162005','http://snomed.info/sct','Genus Tatumella (organism)','12162005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_12248009','12248009','http://snomed.info/sct','Salmonella II 56:z10:e,n,x (organism)','12248009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_12278000','12278000','http://snomed.info/sct','Salmonella Indiana (organism)','12278000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_12334006','12334006','http://snomed.info/sct','Salmonella Bijlmer (organism)','12334006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_12370009','12370009','http://snomed.info/sct','Salmonella Bornum (organism)','12370009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1245005','1245005','http://snomed.info/sct','Salmonella Kiel (organism)','1245005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_12470005','12470005','http://snomed.info/sct','Salmonella Bandia (organism)','12470005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_124994003','124994003','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O157:non-motile (organism)','124994003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_124995002','124995002','http://snomed.info/sct','Shigella dysenteriae, serovar 1 (organism)','124995002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_124996001','124996001','http://snomed.info/sct','Shigella dysenteriae, serovar 2 (organism)','124996001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_124997005','124997005','http://snomed.info/sct','Shigella dysenteriae, serovar 3 (organism)','124997005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_124998000','124998000','http://snomed.info/sct','Shigella dysenteriae, serovar 4 (organism)','124998000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_124999008','124999008','http://snomed.info/sct','Shigella dysenteriae, serovar 5 (organism)','124999008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_125000008','125000008','http://snomed.info/sct','Shigella dysenteriae, serovar 6 (organism)','125000008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_125001007','125001007','http://snomed.info/sct','Shigella dysenteriae, serovar 7 (organism)','125001007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_125002000','125002000','http://snomed.info/sct','Shigella dysenteriae, serovar 8 (organism)','125002000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_125003005','125003005','http://snomed.info/sct','Shigella dysenteriae, serovar 9 (organism)','125003005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_125004004','125004004','http://snomed.info/sct','Shigella dysenteriae, serovar 10 (organism)','125004004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_125005003','125005003','http://snomed.info/sct','Shigella flexneri, serovar 1 (organism)','125005003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_125006002','125006002','http://snomed.info/sct','Shigella flexneri, serovar 1a (organism)','125006002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_125007006','125007006','http://snomed.info/sct','Shigella flexneri, serovar 1b (organism)','125007006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_125008001','125008001','http://snomed.info/sct','Shigella flexneri, serovar 2 (organism)','125008001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_125009009','125009009','http://snomed.info/sct','Shigella flexneri, serovar 2a (organism)','125009009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_125010004','125010004','http://snomed.info/sct','Shigella flexneri, serovar 2b (organism)','125010004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_125011000','125011000','http://snomed.info/sct','Shigella flexneri, serovar 3 (organism)','125011000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_125012007','125012007','http://snomed.info/sct','Shigella flexneri, serovar 3a (organism)','125012007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_125013002','125013002','http://snomed.info/sct','Shigella flexneri, serovar 3b (organism)','125013002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_125014008','125014008','http://snomed.info/sct','Shigella flexneri, serovar 3c (organism)','125014008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_125015009','125015009','http://snomed.info/sct','Shigella flexneri, serovar 4 (organism)','125015009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_125016005','125016005','http://snomed.info/sct','Shigella flexneri, serovar 4a (organism)','125016005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_125017001','125017001','http://snomed.info/sct','Shigella flexneri, serovar 4b (organism)','125017001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_125018006','125018006','http://snomed.info/sct','Shigella flexneri, serovar 5 (organism)','125018006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_125019003','125019003','http://snomed.info/sct','Shigella flexneri, serovar 6 (organism)','125019003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_125020009','125020009','http://snomed.info/sct','Shigella flexneri, serovar X (organism)','125020009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_125021008','125021008','http://snomed.info/sct','Shigella flexneri, serovar Y (organism)','125021008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_125022001','125022001','http://snomed.info/sct','Shigella boydii, serovar 1 (organism)','125022001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_125023006','125023006','http://snomed.info/sct','Shigella boydii, serovar 2 (organism)','125023006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_125024000','125024000','http://snomed.info/sct','Shigella boydii, serovar 3 (organism)','125024000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_125025004','125025004','http://snomed.info/sct','Shigella boydii, serovar 4 (organism)','125025004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_125026003','125026003','http://snomed.info/sct','Shigella boydii, serovar 5 (organism)','125026003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_125027007','125027007','http://snomed.info/sct','Shigella boydii, serovar 6 (organism)','125027007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_125028002','125028002','http://snomed.info/sct','Shigella boydii, serovar 7 (organism)','125028002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_125029005','125029005','http://snomed.info/sct','Shigella boydii, serovar 8 (organism)','125029005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_125030000','125030000','http://snomed.info/sct','Shigella boydii, serovar 9 (organism)','125030000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_125031001','125031001','http://snomed.info/sct','Shigella boydii, serovar 10 (organism)','125031001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_125032008','125032008','http://snomed.info/sct','Shigella boydii, serovar 11 (organism)','125032008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_125033003','125033003','http://snomed.info/sct','Shigella boydii, serovar 12 (organism)','125033003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_125034009','125034009','http://snomed.info/sct','Shigella boydii, serovar 13 (organism)','125034009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_125035005','125035005','http://snomed.info/sct','Shigella boydii, serovar 14 (organism)','125035005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_125036006','125036006','http://snomed.info/sct','Shigella boydii, serovar 15 (organism)','125036006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_12517002','12517002','http://snomed.info/sct','Salmonella Eschweiler (organism)','12517002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1255582003','1255582003','http://snomed.info/sct','Trabulsiella odontotermitis (organism)','1255582003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1255584002','1255584002','http://snomed.info/sct','Kosakonia sacchari (organism)','1255584002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_12662006','12662006','http://snomed.info/sct','Salmonella Amunigun (organism)','12662006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1269432003','1269432003','http://snomed.info/sct','Escherichia coli serogroup O16 (organism)','1269432003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_127498002','127498002','http://snomed.info/sct','Salmonella serotype B,5:r:- (organism)','127498002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_127499005','127499005','http://snomed.info/sct','Salmonella serotype B,:r:- (organism)','127499005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_12767007','12767007','http://snomed.info/sct','Salmonella Crossness (organism)','12767007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_12837008','12837008','http://snomed.info/sct','Salmonella Aschersleben (organism)','12837008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_128388007','128388007','http://snomed.info/sct','Salmonella Paratyphi B var. Java (organism)','128388007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1285009006','1285009006','http://snomed.info/sct','Enterobacter roggenkampii (organism)','1285009006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1285010001','1285010001','http://snomed.info/sct','Enterobacter soli (organism)','1285010001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1291002','1291002','http://snomed.info/sct','Salmonella Frankfurt (organism)','1291002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_12924006','12924006','http://snomed.info/sct','Salmonella Breukelen (organism)','12924006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_12964005','12964005','http://snomed.info/sct','Salmonella Souza (organism)','12964005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1296573006','1296573006','http://snomed.info/sct','Rosenbergiella australiborealis (organism)','1296573006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1296576003','1296576003','http://snomed.info/sct','Rosenbergiella epipactidis (organism)','1296576003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1296577007','1296577007','http://snomed.info/sct','Rosenbergiella collisarenosi (organism)','1296577007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1296580008','1296580008','http://snomed.info/sct','Pseudocitrobacter vendiensis (organism)','1296580008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_13009006','13009006','http://snomed.info/sct','Salmonella Madelia (organism)','13009006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_131260002','131260002','http://snomed.info/sct','Escherichia coli serogroup O26 (organism)','131260002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_131261003','131261003','http://snomed.info/sct','Escherichia coli serogroup O111 (organism)','131261003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_131282009','131282009','http://snomed.info/sct','Salmonella serotype B, :-:1,2 (organism)','131282009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_131283004','131283004','http://snomed.info/sct','Salmonella serotype B, 5:d:- (organism)','131283004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_131284005','131284005','http://snomed.info/sct','Salmonella serotype C2,6,8:eh:- (organism)','131284005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_13179007','13179007','http://snomed.info/sct','Salmonella Montreal (organism)','13179007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_133131000112102','133131000112102','http://snomed.info/sct','Extended spectrum beta-lactamase producing Shigella flexneri serovar 2a (organism)','133131000112102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_133191000112101','133191000112101','http://snomed.info/sct','Escherichia coli serotype O93:H46 (organism)','133191000112101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_13411008','13411008','http://snomed.info/sct','Salmonella Freetown (organism)','13411008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_13421000','13421000','http://snomed.info/sct','Salmonella Ried (organism)','13421000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_13491009','13491009','http://snomed.info/sct','Salmonella Brefet (organism)','13491009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_13511005','13511005','http://snomed.info/sct','Salmonella Bodjonegoro (organism)','13511005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_13552001','13552001','http://snomed.info/sct','Salmonella II 1,40:(z42):1,(5),7 (organism)','13552001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_13615007','13615007','http://snomed.info/sct','Salmonella Regent (organism)','13615007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_13679006','13679006','http://snomed.info/sct','Salmonella Ahanou (organism)','13679006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_13682001','13682001','http://snomed.info/sct','Salmonella Hessarek (organism)','13682001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_13794000','13794000','http://snomed.info/sct','Salmonella Gambaga (organism)','13794000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_13865001','13865001','http://snomed.info/sct','Salmonella Tokoin (organism)','13865001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_13998005','13998005','http://snomed.info/sct','Salmonella IV 53:z4,z23:-- (organism)','13998005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_14007002','14007002','http://snomed.info/sct','Salmonella Vom (organism)','14007002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_14078008','14078008','http://snomed.info/sct','Salmonella Loanda (organism)','14078008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_14145004','14145004','http://snomed.info/sct','Salmonella Gdansk (organism)','14145004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_14219002','14219002','http://snomed.info/sct','Salmonella Kahla (organism)','14219002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_14262001','14262001','http://snomed.info/sct','Salmonella Hilversum (organism)','14262001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_14368004','14368004','http://snomed.info/sct','Salmonella Bergen (organism)','14368004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_14385002','14385002','http://snomed.info/sct','Enterobacter cloacae (organism)','14385002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_14424002','14424002','http://snomed.info/sct','Salmonella Tees (organism)','14424002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_14528002','14528002','http://snomed.info/sct','Salmonella IV 44:z4,z24:- (organism)','14528002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_14566004','14566004','http://snomed.info/sct','Genus Edwardsiella (organism)','14566004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_14581000181105','14581000181105','http://snomed.info/sct','Phytobacter ursingii (organism)','14581000181105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_14642002','14642002','http://snomed.info/sct','Salmonella II 1,9,12,(46),27:z4,z24:1,5 (organism)','14642002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_14694000','14694000','http://snomed.info/sct','Salmonella IV 11:z4,z32:- (organism)','14694000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_14882006','14882006','http://snomed.info/sct','Salmonella II 43:e,n,x,z15:1,6 (organism)','14882006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_14943005','14943005','http://snomed.info/sct','Genus Yokenella (organism)','14943005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_14961000146107','14961000146107','http://snomed.info/sct','Escherichia marmotae (organism)','14961000146107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_14966006','14966006','http://snomed.info/sct','Salmonella Riverside (organism)','14966006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_14993009','14993009','http://snomed.info/sct','Salmonella Mampeza (organism)','14993009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_15001007','15001007','http://snomed.info/sct','Salmonella Stockholm (organism)','15001007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_15055006','15055006','http://snomed.info/sct','Salmonella Riggil (organism)','15055006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_15063007','15063007','http://snomed.info/sct','Salmonella II Humber (organism)','15063007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_15091004','15091004','http://snomed.info/sct','Salmonella Messina (organism)','15091004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_15168000','15168000','http://snomed.info/sct','Salmonella II 41:l,z13,z28:e,n,x,z15 (organism)','15168000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_15189009','15189009','http://snomed.info/sct','Salmonella II 6,7:g,[m],s,t:[z42] (organism)','15189009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_15288005','15288005','http://snomed.info/sct','Salmonella Banco (organism)','15288005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_15319009','15319009','http://snomed.info/sct','Salmonella Ealing (organism)','15319009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_15337005','15337005','http://snomed.info/sct','Salmonella Isaszeg (organism)','15337005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1546007','1546007','http://snomed.info/sct','Tatumella ptyseos (organism)','1546007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_15549007','15549007','http://snomed.info/sct','Salmonella Bamboye (organism)','15549007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_15553009','15553009','http://snomed.info/sct','Salmonella Tchamba (organism)','15553009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_15578008','15578008','http://snomed.info/sct','Salmonella Dahlem (organism)','15578008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_15691000','15691000','http://snomed.info/sct','Salmonella Korbol (organism)','15691000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_15728008','15728008','http://snomed.info/sct','Salmonella Leith (organism)','15728008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1574002','1574002','http://snomed.info/sct','Salmonella Santiago (organism)','1574002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_15789003','15789003','http://snomed.info/sct','Salmonella Vilvoorde (organism)','15789003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_158005','158005','http://snomed.info/sct','Salmonella Irumu (organism)','158005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_15839003','15839003','http://snomed.info/sct','Salmonella II 1,40:z6:1,5 (organism)','15839003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_15844005','15844005','http://snomed.info/sct','Salmonella Maracaibo (organism)','15844005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_16049005','16049005','http://snomed.info/sct','Salmonella II 16:b:z39 (organism)','16049005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_16109000','16109000','http://snomed.info/sct','Salmonella Coeln (organism)','16109000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_16158001','16158001','http://snomed.info/sct','Salmonella Austin (organism)','16158001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_16168006','16168006','http://snomed.info/sct','Salmonella II 58:b:1,5 (organism)','16168006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_16194002','16194002','http://snomed.info/sct','Salmonella Solna (organism)','16194002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1621003','1621003','http://snomed.info/sct','Salmonella IV 45:z4,z23:- (organism)','1621003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_16346007','16346007','http://snomed.info/sct','Salmonella Lubumbashi (organism)','16346007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_16363006','16363006','http://snomed.info/sct','Salmonella II 42:z6:1,6 (organism)','16363006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_16380005','16380005','http://snomed.info/sct','Salmonella Wuppertal (organism)','16380005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_16582001','16582001','http://snomed.info/sct','Salmonella Eboko (organism)','16582001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_16723007','16723007','http://snomed.info/sct','Salmonella Rottnest (organism)','16723007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_16732009','16732009','http://snomed.info/sct','Salmonella II, group O:56 (organism)','16732009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_16762003','16762003','http://snomed.info/sct','Salmonella II 42:z10:z6 (organism)','16762003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_16820003','16820003','http://snomed.info/sct','Salmonella Goldcoast (organism)','16820003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_16845000','16845000','http://snomed.info/sct','Salmonella Keve (organism)','16845000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_16888008','16888008','http://snomed.info/sct','Salmonella Brandenburg (organism)','16888008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_16981003','16981003','http://snomed.info/sct','Salmonella II 53:d:1,5 (organism)','16981003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_17007007','17007007','http://snomed.info/sct','Salmonella Llandoff (organism)','17007007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_17019004','17019004','http://snomed.info/sct','Salmonella Blijdorp (organism)','17019004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_17031002','17031002','http://snomed.info/sct','Erwinia tracheiphila (organism)','17031002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_17036007','17036007','http://snomed.info/sct','Salmonella Djibouti (organism)','17036007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_17233007','17233007','http://snomed.info/sct','Salmonella Simi (organism)','17233007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_17323002','17323002','http://snomed.info/sct','Salmonella Wimborne (organism)','17323002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_17330008','17330008','http://snomed.info/sct','Salmonella Mississippi (organism)','17330008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_17464006','17464006','http://snomed.info/sct','Salmonella Amina (organism)','17464006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_17611002','17611002','http://snomed.info/sct','Salmonella Fayed (organism)','17611002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_17680008','17680008','http://snomed.info/sct','Salmonella II 9,46:m,t:e,n,x (organism)','17680008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_17688001','17688001','http://snomed.info/sct','Klebsiella pneumoniae ss. rhinoscleromatis (organism)','17688001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_17801007','17801007','http://snomed.info/sct','Salmonella Toulon (organism)','17801007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_17834009','17834009','http://snomed.info/sct','Salmonella Ord (organism)','17834009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_17939003','17939003','http://snomed.info/sct','Salmonella Lomita (organism)','17939003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1804009','1804009','http://snomed.info/sct','Salmonella Brijbhumi (organism)','1804009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_18088003','18088003','http://snomed.info/sct','Salmonella Korlebu (organism)','18088003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1812001','1812001','http://snomed.info/sct','Salmonella Jerusalem (organism)','1812001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_18129006','18129006','http://snomed.info/sct','Salmonella Ghana (organism)','18129006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_18163008','18163008','http://snomed.info/sct','Salmonella Senftenberg (organism)','18163008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_18238001','18238001','http://snomed.info/sct','Salmonella IV 48:z4,z32:- (organism)','18238001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_18271002','18271002','http://snomed.info/sct','Salmonella Bobo (organism)','18271002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_18400002','18400002','http://snomed.info/sct','Klebsiella pneumoniae ss. pneumoniae (organism)','18400002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_18562005','18562005','http://snomed.info/sct','Salmonella II 48:a:z6 (organism)','18562005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_18578007','18578007','http://snomed.info/sct','Salmonella Ashanti (organism)','18578007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_18711009','18711009','http://snomed.info/sct','Salmonella Saugus (organism)','18711009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_18717008','18717008','http://snomed.info/sct','Salmonella Edmonton (organism)','18717008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_18810002','18810002','http://snomed.info/sct','Salmonella Wohlen (organism)','18810002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_18828000','18828000','http://snomed.info/sct','Salmonella II 8:z29:e,n,x:z42 (organism)','18828000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1888009','1888009','http://snomed.info/sct','Salmonella Wingrove (organism)','1888009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_18913004','18913004','http://snomed.info/sct','Salmonella Bonames (organism)','18913004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_19118002','19118002','http://snomed.info/sct','Salmonella Ahepe (organism)','19118002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_19190005','19190005','http://snomed.info/sct','Salmonella Flottbek (organism)','19190005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_19191009','19191009','http://snomed.info/sct','Salmonella Diguel (organism)','19191009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1921001','1921001','http://snomed.info/sct','Salmonella Donna (organism)','1921001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1934000','1934000','http://snomed.info/sct','Salmonella Ridge (organism)','1934000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_19368001','19368001','http://snomed.info/sct','Salmonella Babelsberg (organism)','19368001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_19374001','19374001','http://snomed.info/sct','Salmonella enteritidis, phage type 4 (organism)','19374001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_19430004','19430004','http://snomed.info/sct','Salmonella Fitzroy (organism)','19430004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_19439003','19439003','http://snomed.info/sct','Salmonella Giza (organism)','19439003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_1957006','1957006','http://snomed.info/sct','Salmonella Hydra (organism)','1957006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_19605006','19605006','http://snomed.info/sct','Salmonella IV 57:z4,z23:- (organism)','19605006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_19687000','19687000','http://snomed.info/sct','Salmonella II 40:z:z39 (organism)','19687000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_19828009','19828009','http://snomed.info/sct','Salmonella Neukoelln (organism)','19828009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_19857008','19857008','http://snomed.info/sct','Salmonella II 11:-:1,5 (organism)','19857008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_19890008','19890008','http://snomed.info/sct','Salmonella II 16:b:z42 (organism)','19890008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_19891007','19891007','http://snomed.info/sct','Salmonella II 50:l,z28:z42 (organism)','19891007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_19912000','19912000','http://snomed.info/sct','Salmonella II 28:g,m,t:e,n,x (organism)','19912000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_19958004','19958004','http://snomed.info/sct','Salmonella Marylebone (organism)','19958004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_19981002','19981002','http://snomed.info/sct','Salmonella II 6,7:k:(z6) (organism)','19981002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_20031000','20031000','http://snomed.info/sct','Salmonella Berkeley (organism)','20031000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_2007003','2007003','http://snomed.info/sct','Salmonella Aesch (organism)','2007003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_20073008','20073008','http://snomed.info/sct','Salmonella Manhattan (organism)','20073008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_200997501000087101','200997501000087101','http://snomed.info/sct','Centers for Disease Control and Prevention (CDC) Enteric group 137 (organism)','200997501000087101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_20209004','20209004','http://snomed.info/sct','Salmonella Landwasser (organism)','20209004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_20266009','20266009','http://snomed.info/sct','Salmonella Glidji (organism)','20266009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_20268005','20268005','http://snomed.info/sct','Salmonella Taunton (organism)','20268005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_20314003','20314003','http://snomed.info/sct','Salmonella Staoueli (organism)','20314003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_20442000','20442000','http://snomed.info/sct','Salmonella Borreze (organism)','20442000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_2047005','2047005','http://snomed.info/sct','Salmonella Hoghton (organism)','2047005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_20523001','20523001','http://snomed.info/sct','Genus Hafnia (organism)','20523001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_20537005','20537005','http://snomed.info/sct','Salmonella Bokanjac (organism)','20537005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_20542002','20542002','http://snomed.info/sct','Salmonella IV 50:z4,z24:- (organism)','20542002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_20567004','20567004','http://snomed.info/sct','Salmonella Kortrijk (organism)','20567004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_20855009','20855009','http://snomed.info/sct','Salmonella Pullorum (organism)','20855009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_20862000','20862000','http://snomed.info/sct','Salmonella Soerenga (organism)','20862000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_20872002','20872002','http://snomed.info/sct','Salmonella Mbao (organism)','20872002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_20905000','20905000','http://snomed.info/sct','Salmonella Sunnycove (organism)','20905000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_20950003','20950003','http://snomed.info/sct','Salmonella Bellevue (organism)','20950003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_21081003','21081003','http://snomed.info/sct','Salmonella Burgas (organism)','21081003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_2111007','2111007','http://snomed.info/sct','Salmonella Tamilnadu (organism)','2111007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_21146003','21146003','http://snomed.info/sct','Salmonella Saphra (organism)','21146003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_21164005','21164005','http://snomed.info/sct','Salmonella Bulgaria (organism)','21164005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_21176005','21176005','http://snomed.info/sct','Salmonella Rogy (organism)','21176005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_21207005','21207005','http://snomed.info/sct','Salmonella Cuckmere (organism)','21207005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_21218005','21218005','http://snomed.info/sct','Salmonella Lokstedt (organism)','21218005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_21242009','21242009','http://snomed.info/sct','Salmonella Mango (organism)','21242009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_21329006','21329006','http://snomed.info/sct','Salmonella Djama (organism)','21329006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_21395009','21395009','http://snomed.info/sct','Salmonella Grampian (organism)','21395009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_21436008','21436008','http://snomed.info/sct','Salmonella Cyprus (organism)','21436008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_21469008','21469008','http://snomed.info/sct','Salmonella Szentes (organism)','21469008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_21618001','21618001','http://snomed.info/sct','Salmonella Morocco (organism)','21618001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_21786003','21786003','http://snomed.info/sct','Salmonella Bruck (organism)','21786003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_21816004','21816004','http://snomed.info/sct','Salmonella Zaire (organism)','21816004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_21838002','21838002','http://snomed.info/sct','Salmonella Annedal (organism)','21838002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_21865009','21865009','http://snomed.info/sct','Salmonella Bracknell (organism)','21865009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_2191008','2191008','http://snomed.info/sct','Salmonella Ekpoui (organism)','2191008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_21953006','21953006','http://snomed.info/sct','Salmonella II 47:z6:1,6 (organism)','21953006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_21975008','21975008','http://snomed.info/sct','Salmonella Wien (organism)','21975008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_22001003','22001003','http://snomed.info/sct','Salmonella Lockleaze (organism)','22001003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_2203005','2203005','http://snomed.info/sct','Salmonella Meskin (organism)','2203005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_22117007','22117007','http://snomed.info/sct','Salmonella Georgia (organism)','22117007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_22254006','22254006','http://snomed.info/sct','Salmonella II 41:c:z6 (organism)','22254006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_22300006','22300006','http://snomed.info/sct','Salmonella Hillsborough (organism)','22300006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_22307009','22307009','http://snomed.info/sct','Salmonella Budapest (organism)','22307009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_22367006','22367006','http://snomed.info/sct','Salmonella Chingola (organism)','22367006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_22590000','22590000','http://snomed.info/sct','Salmonella Maricopa (organism)','22590000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_22729005','22729005','http://snomed.info/sct','Salmonella Bukavu (organism)','22729005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_22752009','22752009','http://snomed.info/sct','Salmonella Grumpensis (organism)','22752009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_22831005','22831005','http://snomed.info/sct','Salmonella II 30:g,m,s:e,n,x (organism)','22831005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_2286000','2286000','http://snomed.info/sct','Salmonella Agbeni (organism)','2286000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_22899009','22899009','http://snomed.info/sct','Salmonella Falkensee (organism)','22899009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_2291004','2291004','http://snomed.info/sct','Salmonella London (organism)','2291004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_23032006','23032006','http://snomed.info/sct','Salmonella Angoda (organism)','23032006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_23033001','23033001','http://snomed.info/sct','Salmonella Yalding (organism)','23033001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_23057001','23057001','http://snomed.info/sct','Salmonella II 40:b:- (organism)','23057001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_23131001','23131001','http://snomed.info/sct','Salmonella Ajiobo (organism)','23131001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_23271001','23271001','http://snomed.info/sct','Salmonella Doulassame (organism)','23271001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_23333007','23333007','http://snomed.info/sct','Salmonella Sao (organism)','23333007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_23342000','23342000','http://snomed.info/sct','Salmonella II 9,46:z39:1,7 (organism)','23342000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_2345009','2345009','http://snomed.info/sct','Cedecea lapagei (organism)','2345009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_2356009','2356009','http://snomed.info/sct','Salmonella Patience (organism)','2356009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_23665004','23665004','http://snomed.info/sct','Salmonella Dakar (organism)','23665004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_23727001','23727001','http://snomed.info/sct','Salmonella Wil (organism)','23727001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_23790005','23790005','http://snomed.info/sct','Salmonella Kokoli (organism)','23790005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_23836008','23836008','http://snomed.info/sct','Salmonella Pontypridd (organism)','23836008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_23837004','23837004','http://snomed.info/sct','Salmonella Tchad (organism)','23837004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_23865002','23865002','http://snomed.info/sct','Salmonella Amounderness (organism)','23865002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_2399004','2399004','http://snomed.info/sct','Salmonella Quiniela (organism)','2399004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_24009000','24009000','http://snomed.info/sct','Salmonella Zuilen (organism)','24009000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_24090006','24090006','http://snomed.info/sct','Salmonella Senegal (organism)','24090006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_24231000181102','24231000181102','http://snomed.info/sct','Erwinia teleogrylli (organism)','24231000181102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_24239004','24239004','http://snomed.info/sct','Salmonella II 1,40:z:z6 (organism)','24239004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_24241000181109','24241000181109','http://snomed.info/sct','Erwinia typographi (organism)','24241000181109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_24270007','24270007','http://snomed.info/sct','Salmonella Magumeri (organism)','24270007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_24289007','24289007','http://snomed.info/sct','Salmonella Lagos (organism)','24289007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_243292007','243292007','http://snomed.info/sct','Cedecea species 3 (organism)','243292007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_243293002','243293002','http://snomed.info/sct','Cedecea species 5 (organism)','243293002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_243300006','243300006','http://snomed.info/sct','Kluyvera bacillosporus (organism)','243300006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_243308004','243308004','http://snomed.info/sct','Genus Trabulsiella (organism)','243308004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_243309007','243309007','http://snomed.info/sct','Trabulsiella guamensis (organism)','243309007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_2434007','2434007','http://snomed.info/sct','Salmonella Uganda (organism)','2434007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_2440000','2440000','http://snomed.info/sct','Salmonella Inglis (organism)','2440000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_2445005','2445005','http://snomed.info/sct','Salmonella Olten (organism)','2445005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_24564002','24564002','http://snomed.info/sct','Salmonella Livulu (organism)','24564002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_24666009','24666009','http://snomed.info/sct','Salmonella Worthington (organism)','24666009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_24680002','24680002','http://snomed.info/sct','Salmonella Matopeni (organism)','24680002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_24896001','24896001','http://snomed.info/sct','Salmonella Harvestehude (organism)','24896001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_24951009','24951009','http://snomed.info/sct','Salmonella Wagenia (organism)','24951009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_25000009','25000009','http://snomed.info/sct','Salmonella Bassa (organism)','25000009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_25037003','25037003','http://snomed.info/sct','Salmonella Emmastad (organism)','25037003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_25040003','25040003','http://snomed.info/sct','Salmonella Lene (organism)','25040003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_2527008','2527008','http://snomed.info/sct','Salmonella II, 1,4,12,27:l,v:z39 (organism)','2527008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_25382005','25382005','http://snomed.info/sct','Salmonella Sharon (organism)','25382005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_25487003','25487003','http://snomed.info/sct','Salmonella Eingedi (organism)','25487003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_25520000','25520000','http://snomed.info/sct','Salmonella Ruiru (organism)','25520000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_25535004','25535004','http://snomed.info/sct','Salmonella Beaudesert (organism)','25535004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_25695005','25695005','http://snomed.info/sct','Salmonella Umbilo (organism)','25695005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_25767003','25767003','http://snomed.info/sct','Salmonella Liverpool (organism)','25767003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_25802000','25802000','http://snomed.info/sct','Citrobacter intermedius (organism)','25802000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_25812007','25812007','http://snomed.info/sct','Salmonella Thiaroye (organism)','25812007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_25939003','25939003','http://snomed.info/sct','Salmonella Lindi (organism)','25939003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_2599003','2599003','http://snomed.info/sct','Salmonella Massenya (organism)','2599003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_26003002','26003002','http://snomed.info/sct','Salmonella Bedford (organism)','26003002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_26031006','26031006','http://snomed.info/sct','Salmonella Kibusi (organism)','26031006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_26080001','26080001','http://snomed.info/sct','Salmonella Avignon (organism)','26080001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_26153006','26153006','http://snomed.info/sct','Salmonella Heves (organism)','26153006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_26207009','26207009','http://snomed.info/sct','Salmonella II 43:a:z6 (organism)','26207009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_26225002','26225002','http://snomed.info/sct','Salmonella II 3,10:a:z39 (organism)','26225002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_26321000181102','26321000181102','http://snomed.info/sct','Genus Scandinavium (organism)','26321000181102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_26371000087101','26371000087101','http://snomed.info/sct','Escherichia coli serotype O153:H21 (organism)','26371000087101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_26391000087102','26391000087102','http://snomed.info/sct','Escherichia coli serotype O66:H25 (organism)','26391000087102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_26421000087105','26421000087105','http://snomed.info/sct','Escherichia coli serotype O6:H31 (organism)','26421000087105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_26443001','26443001','http://snomed.info/sct','Salmonella Lattenkamp (organism)','26443001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_26451000087103','26451000087103','http://snomed.info/sct','Escherichia coli serogroup O19 (organism)','26451000087103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_26455007','26455007','http://snomed.info/sct','Salmonella Nima (organism)','26455007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_26463008','26463008','http://snomed.info/sct','Salmonella Hartford (organism)','26463008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_26481000087106','26481000087106','http://snomed.info/sct','Escherichia coli serotype O108:H11 (organism)','26481000087106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_26494008','26494008','http://snomed.info/sct','Salmonella II 53:z:1,5 (organism)','26494008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_26592005','26592005','http://snomed.info/sct','Salmonella Tamale (organism)','26592005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_26621003','26621003','http://snomed.info/sct','Salmonella IV 48:z36,z38:- (organism)','26621003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_26622005','26622005','http://snomed.info/sct','Salmonella Gnesta (organism)','26622005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_26685005','26685005','http://snomed.info/sct','Salmonella Stuivenberg (organism)','26685005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_26793003','26793003','http://snomed.info/sct','Salmonella II 6,8:z29:1,5 (organism)','26793003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_26894001','26894001','http://snomed.info/sct','Salmonella Redlands (organism)','26894001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_26911000181107','26911000181107','http://snomed.info/sct','Scandinavium goeteborgense (organism)','26911000181107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_26964008','26964008','http://snomed.info/sct','Salmonella Welikade (organism)','26964008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_27008003','27008003','http://snomed.info/sct','Salmonella Niakhar (organism)','27008003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_27067005','27067005','http://snomed.info/sct','Salmonella II 43:z29:e,n,x (organism)','27067005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_27268008','27268008','http://snomed.info/sct','Genus Salmonella (organism)','27268008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_27353005','27353005','http://snomed.info/sct','Salmonella Bambylor (organism)','27353005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_27408007','27408007','http://snomed.info/sct','Salmonella Yundum (organism)','27408007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_27522009','27522009','http://snomed.info/sct','Salmonella II 21:z:- (organism)','27522009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_27543005','27543005','http://snomed.info/sct','Salmonella Afula (organism)','27543005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_27987009','27987009','http://snomed.info/sct','Salmonella Adamstua (organism)','27987009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_280003','280003','http://snomed.info/sct','Salmonella Limete (organism)','280003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_28013002','28013002','http://snomed.info/sct','Salmonella Kristianstad (organism)','28013002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_28090003','28090003','http://snomed.info/sct','Salmonella Yarm (organism)','28090003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_28106004','28106004','http://snomed.info/sct','Salmonella Lome (organism)','28106004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_28124002','28124002','http://snomed.info/sct','Salmonella Utah (organism)','28124002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_28141000','28141000','http://snomed.info/sct','Salmonella Bolombo (organism)','28141000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_2820001','2820001','http://snomed.info/sct','Salmonella Saintpaul (organism)','2820001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_28206007','28206007','http://snomed.info/sct','Salmonella Cannstatt (organism)','28206007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_28285008','28285008','http://snomed.info/sct','Salmonella Finkenwerder (organism)','28285008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_28418000','28418000','http://snomed.info/sct','Salmonella Rossleben (organism)','28418000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_28501001','28501001','http://snomed.info/sct','Obesumbacterium proteus (organism)','28501001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_28623007','28623007','http://snomed.info/sct','Salmonella Treforest (organism)','28623007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_28717009','28717009','http://snomed.info/sct','Salmonella Waycross (organism)','28717009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_2872006','2872006','http://snomed.info/sct','Salmonella Frintrop (organism)','2872006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_28865004','28865004','http://snomed.info/sct','Salmonella Umhlali (organism)','28865004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_28879007','28879007','http://snomed.info/sct','Salmonella Gwale (organism)','28879007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_28932006','28932006','http://snomed.info/sct','Salmonella Wayne (organism)','28932006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_29019008','29019008','http://snomed.info/sct','Salmonella Singapore (organism)','29019008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_29049005','29049005','http://snomed.info/sct','Salmonella Niloese (organism)','29049005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_29083003','29083003','http://snomed.info/sct','Salmonella Nikolaifleet (organism)','29083003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_29090008','29090008','http://snomed.info/sct','Salmonella Zanzibar (organism)','29090008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_29115000','29115000','http://snomed.info/sct','Salmonella Kisarawe (organism)','29115000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_29173000','29173000','http://snomed.info/sct','Salmonella Tado (organism)','29173000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_29189002','29189002','http://snomed.info/sct','Salmonella Tschangu (organism)','29189002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_29192003','29192003','http://snomed.info/sct','Salmonella Benin (organism)','29192003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_29305002','29305002','http://snomed.info/sct','Salmonella Teshie (organism)','29305002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_2932003','2932003','http://snomed.info/sct','Salmonella Bispebjerg (organism)','2932003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_29335009','29335009','http://snomed.info/sct','Salmonella Sokode (organism)','29335009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_29429005','29429005','http://snomed.info/sct','Salmonella Handen (organism)','29429005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_29449001','29449001','http://snomed.info/sct','Salmonella Ndjamena (organism)','29449001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_29469006','29469006','http://snomed.info/sct','Salmonella Tennyson (organism)','29469006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_29511003','29511003','http://snomed.info/sct','Lelliottia nimipressuralis (organism)','29511003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_29528000','29528000','http://snomed.info/sct','Salmonella Reubeuss (organism)','29528000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_29742006','29742006','http://snomed.info/sct','Salmonella Gafsa (organism)','29742006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_29811007','29811007','http://snomed.info/sct','Salmonella Jukestown (organism)','29811007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_29948004','29948004','http://snomed.info/sct','Salmonella II 30:z6:1,6 (organism)','29948004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_29955002','29955002','http://snomed.info/sct','Salmonella Tsevie (organism)','29955002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_30228001','30228001','http://snomed.info/sct','Salmonella Neudorf (organism)','30228001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_302568005','302568005','http://snomed.info/sct','Erwinia psidii (organism)','302568005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_302569002','302569002','http://snomed.info/sct','Escherichia alkalescens (organism)','302569002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_302624001','302624001','http://snomed.info/sct','Salmonella II 4,12,27:i:z35 (organism)','302624001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_302625000','302625000','http://snomed.info/sct','Salmonella Winneba (organism)','302625000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_302636007','302636007','http://snomed.info/sct','Salmonella Stuttgart (organism)','302636007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_302637003','302637003','http://snomed.info/sct','Salmonella Cardiff (organism)','302637003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_302653000','302653000','http://snomed.info/sct','Salmonella Daarle (organism)','302653000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_302654006','302654006','http://snomed.info/sct','Salmonella II 6,8:z29:e,n,x (organism)','302654006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_302660006','302660006','http://snomed.info/sct','Salmonella II 1,9,12:g,m,[s],t:[1,5,7]:[z42] (organism)','302660006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_302665001','302665001','http://snomed.info/sct','Salmonella II 1,9,12:z42:1,[5],7 (organism)','302665001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_302667009','302667009','http://snomed.info/sct','Salmonella Kolar (organism)','302667009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_302669007','302669007','http://snomed.info/sct','Salmonella Waedenswil (organism)','302669007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_302673005','302673005','http://snomed.info/sct','Salmonella Ngaparou (organism)','302673005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_302674004','302674004','http://snomed.info/sct','Salmonella Mahina (organism)','302674004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_302688000','302688000','http://snomed.info/sct','Salmonella Svedvi (organism)','302688000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_302691000','302691000','http://snomed.info/sct','Salmonella Simsbury (organism)','302691000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_302700002','302700002','http://snomed.info/sct','Salmonella 13,22:a:e,n,x (organism)','302700002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_302702005','302702005','http://snomed.info/sct','Salmonella 1,13,23:g,m,s,t:1,5 (organism)','302702005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_302703000','302703000','http://snomed.info/sct','Salmonella II 1,13,23:g,m,s,t:z42 (organism)','302703000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_302708009','302708009','http://snomed.info/sct','Salmonella Kuntair (organism)','302708009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_302718004','302718004','http://snomed.info/sct','Salmonella Brooklyn (organism)','302718004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_302721002','302721002','http://snomed.info/sct','Salmonella Bouake (organism)','302721002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_302722009','302722009','http://snomed.info/sct','Salmonella II 21:b:1,5 (organism)','302722009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_302740008','302740008','http://snomed.info/sct','Salmonella Odienne (organism)','302740008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_302746002','302746002','http://snomed.info/sct','Salmonella II 45:z29:e,n,x (organism)','302746002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_302751008','302751008','http://snomed.info/sct','Salmonella Krugersdorp (organism)','302751008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_302754000','302754000','http://snomed.info/sct','Salmonella II 56:l,v:z39 (organism)','302754000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_30290002','30290002','http://snomed.info/sct','Salmonella Mara (organism)','30290002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_303216008','303216008','http://snomed.info/sct','Salmonella Mbandaka var 25 (organism)','303216008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_303349001','303349001','http://snomed.info/sct','Escherichia coli enteroadherent (organism)','303349001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_30335006','30335006','http://snomed.info/sct','Salmonella Tounouma (organism)','30335006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_30362003','30362003','http://snomed.info/sct','Salmonella Ayinde (organism)','30362003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_30430002','30430002','http://snomed.info/sct','Salmonella IV 45:g,z51:- (organism)','30430002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_30451000087103','30451000087103','http://snomed.info/sct','Cronobacter condimenti (organism)','30451000087103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_30461000087100','30461000087100','http://snomed.info/sct','Cronobacter dublinensis subspecies dublinensis (organism)','30461000087100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_30552009','30552009','http://snomed.info/sct','Salmonella II 58:a:(z6) (organism)','30552009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_30569006','30569006','http://snomed.info/sct','Salmonella II 47:a:e,n,x,z15 (organism)','30569006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_30601000087101','30601000087101','http://snomed.info/sct','Citrobacter pasteurii (organism)','30601000087101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_30665007','30665007','http://snomed.info/sct','Salmonella Christiansborg (organism)','30665007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_30686007','30686007','http://snomed.info/sct','Salmonella Ochsenwerder (organism)','30686007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_30741000112108','30741000112108','http://snomed.info/sct','AmpC beta-lactamase producing Salmonella Typhimurium (organism)','30741000112108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_30761000112109','30761000112109','http://snomed.info/sct','Escherichia coli serotype Orough:H21 (organism)','30761000112109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_30771000087100','30771000087100','http://snomed.info/sct','Cronobacter dublinensis subspecies lactaridi (organism)','30771000087100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_30791000112101','30791000112101','http://snomed.info/sct','Escherichia coli serotype O181:H49 (organism)','30791000112101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_30854004','30854004','http://snomed.info/sct','Cedecea davisae (organism)','30854004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_30864008','30864008','http://snomed.info/sct','Salmonella Chittagong (organism)','30864008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_30892003','30892003','http://snomed.info/sct','Salmonella Athinai (organism)','30892003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_31044005','31044005','http://snomed.info/sct','Salmonella Bessi (organism)','31044005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_31093000','31093000','http://snomed.info/sct','Salmonella Ekotedo (organism)','31093000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_312000','312000','http://snomed.info/sct','Salmonella Amba (organism)','312000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_31210009','31210009','http://snomed.info/sct','Salmonella IV 43:g,z51:- (organism)','31210009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_31239009','31239009','http://snomed.info/sct','Salmonella Rhydyfelin (organism)','31239009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_31351000087100','31351000087100','http://snomed.info/sct','Enterobacter siamensis (organism)','31351000087100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_31451000087109','31451000087109','http://snomed.info/sct','Erwinia piriflorinigrans (organism)','31451000087109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_31454000','31454000','http://snomed.info/sct','Salmonella II 41:-:1,6 (organism)','31454000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_31469004','31469004','http://snomed.info/sct','Salmonella Langensalza (organism)','31469004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_31517006','31517006','http://snomed.info/sct','Salmonella Richmond (organism)','31517006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_3154009','3154009','http://snomed.info/sct','Salmonella Oyonnax (organism)','3154009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_31556000','31556000','http://snomed.info/sct','Genus Leminorella (organism)','31556000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_31557009','31557009','http://snomed.info/sct','Salmonella Pretoria (organism)','31557009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_31564006','31564006','http://snomed.info/sct','Salmonella Claibornei (organism)','31564006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_31591000087103','31591000087103','http://snomed.info/sct','Enterobacter hormaechei subspecies hormaechei (organism)','31591000087103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_31592001','31592001','http://snomed.info/sct','Salmonella Mendoza (organism)','31592001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_31601000087106','31601000087106','http://snomed.info/sct','Enterobacter hormaechei subspecies oharae (organism)','31601000087106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_31602000','31602000','http://snomed.info/sct','Salmonella Businga (organism)','31602000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_31608001','31608001','http://snomed.info/sct','Salmonella Gatuni (organism)','31608001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_31611000087108','31611000087108','http://snomed.info/sct','Enterobacter hormaechei subspecies steigerwaltii (organism)','31611000087108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_31631000087103','31631000087103','http://snomed.info/sct','Franconibacter helveticus (organism)','31631000087103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_31669006','31669006','http://snomed.info/sct','Salmonella Reinickendorf (organism)','31669006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_31718003','31718003','http://snomed.info/sct','Salmonella II 6,8:g,m,t:(e,n,x) (organism)','31718003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_31745002','31745002','http://snomed.info/sct','Salmonella Lishabi (organism)','31745002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_31832006','31832006','http://snomed.info/sct','Salmonella II 1,40:m,t:z42 (organism)','31832006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_31859003','31859003','http://snomed.info/sct','Salmonella Egusitoo (organism)','31859003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_31900005','31900005','http://snomed.info/sct','Salmonella Umhlatazana (organism)','31900005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_32054007','32054007','http://snomed.info/sct','Salmonella Kubacha (organism)','32054007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_3210007','3210007','http://snomed.info/sct','Salmonella II 1,44:e,n,x:1,6 (organism)','3210007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_32122000','32122000','http://snomed.info/sct','Salmonella Nessa (organism)','32122000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_32211000087100','32211000087100','http://snomed.info/sct','Kosakonia arachidis (organism)','32211000087100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_32244000','32244000','http://snomed.info/sct','Salmonella Tyresoe (organism)','32244000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_32275009','32275009','http://snomed.info/sct','Salmonella Godesberg (organism)','32275009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_32310005','32310005','http://snomed.info/sct','Salmonella Konstanz (organism)','32310005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_32320000','32320000','http://snomed.info/sct','Salmonella Wilhelmsburg (organism)','32320000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_32365009','32365009','http://snomed.info/sct','Salmonella Tornow (organism)','32365009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_32379001','32379001','http://snomed.info/sct','Salmonella Fischerstrasse (organism)','32379001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_32488009','32488009','http://snomed.info/sct','Salmonella Paratyphi C (organism)','32488009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_32531009','32531009','http://snomed.info/sct','Salmonella II 9,46:e,n,x:1,5,7 (organism)','32531009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_32547006','32547006','http://snomed.info/sct','Kluyvera cryocrescens (organism)','32547006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_32549009','32549009','http://snomed.info/sct','Salmonella Djermaia (organism)','32549009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_32624003','32624003','http://snomed.info/sct','Salmonella Carrau (organism)','32624003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_32681008','32681008','http://snomed.info/sct','Salmonella Orion (organism)','32681008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_32692009','32692009','http://snomed.info/sct','Salmonella II 28:g,s,t:e,n,x (organism)','32692009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_32716002','32716002','http://snomed.info/sct','Salmonella Vaertan (organism)','32716002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_32771001','32771001','http://snomed.info/sct','Salmonella Ituri (organism)','32771001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_32854006','32854006','http://snomed.info/sct','Salmonella Sanktgeorg (organism)','32854006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_3288007','3288007','http://snomed.info/sct','Salmonella II 65:-:1,6 (organism)','3288007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_32995008','32995008','http://snomed.info/sct','Salmonella Mons (organism)','32995008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_33108006','33108006','http://snomed.info/sct','Salmonella Birkenhead (organism)','33108006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_33115003','33115003','http://snomed.info/sct','Enterobacter asburiae (organism)','33115003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_3312002','3312002','http://snomed.info/sct','Salmonella Fresno (organism)','3312002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_33136001','33136001','http://snomed.info/sct','Salmonella Elisabethville (organism)','33136001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_3316004','3316004','http://snomed.info/sct','Salmonella Hithergreen (organism)','3316004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_33172008','33172008','http://snomed.info/sct','Salmonella Curacao (organism)','33172008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_33296009','33296009','http://snomed.info/sct','Salmonella Taksony (organism)','33296009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_3335004','3335004','http://snomed.info/sct','Salmonella Greiz (organism)','3335004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_33613006','33613006','http://snomed.info/sct','Salmonella Holcomb (organism)','33613006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_33691000087101','33691000087101','http://snomed.info/sct','Carbapenemase-producing Klebsiella variicola (organism)','33691000087101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_3373000','3373000','http://snomed.info/sct','Salmonella Ibadan (organism)','3373000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_33765004','33765004','http://snomed.info/sct','Salmonella Lomnava (organism)','33765004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_33827003','33827003','http://snomed.info/sct','Salmonella Battle (organism)','33827003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_3386009','3386009','http://snomed.info/sct','Salmonella Doncaster (organism)','3386009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_33909002','33909002','http://snomed.info/sct','Salmonella Makiso (organism)','33909002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_34033001','34033001','http://snomed.info/sct','Salmonella Nuatja (organism)','34033001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_34051000','34051000','http://snomed.info/sct','Salmonella Sandow (organism)','34051000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_34107006','34107006','http://snomed.info/sct','Salmonella Wentworth (organism)','34107006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_34153004','34153004','http://snomed.info/sct','Salmonella Brazzaville (organism)','34153004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_34192006','34192006','http://snomed.info/sct','Salmonella II 52:c:k (organism)','34192006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_34237005','34237005','http://snomed.info/sct','Salmonella Miyazaki (organism)','34237005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_34256000','34256000','http://snomed.info/sct','Salmonella Ayton (organism)','34256000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_34328008','34328008','http://snomed.info/sct','Salmonella II 16:m,t:e,n,x (organism)','34328008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_34434000','34434000','http://snomed.info/sct','Salmonella Zwickau (organism)','34434000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_34464008','34464008','http://snomed.info/sct','Salmonella Texas (organism)','34464008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_34473000','34473000','http://snomed.info/sct','Salmonella Wangata (organism)','34473000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_3451006','3451006','http://snomed.info/sct','Genus Buttiauxella (organism)','3451006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_34520002','34520002','http://snomed.info/sct','Salmonella Coogee (organism)','34520002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_34547007','34547007','http://snomed.info/sct','Salmonella Eastbourne (organism)','34547007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_34732000','34732000','http://snomed.info/sct','Salmonella Okefoko (organism)','34732000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_34778008','34778008','http://snomed.info/sct','Salmonella Maryland (organism)','34778008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_35053007','35053007','http://snomed.info/sct','Salmonella II 16:d:1,5 (organism)','35053007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_35091007','35091007','http://snomed.info/sct','Salmonella Trimdon (organism)','35091007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_35197009','35197009','http://snomed.info/sct','Salmonella Biafra (organism)','35197009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_35203007','35203007','http://snomed.info/sct','Salmonella Croft (organism)','35203007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_35225001','35225001','http://snomed.info/sct','Salmonella Braenderup (organism)','35225001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_35244008','35244008','http://snomed.info/sct','Salmonella Mocamedes (organism)','35244008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_35373008','35373008','http://snomed.info/sct','Salmonella Istanbul (organism)','35373008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_3540008','3540008','http://snomed.info/sct','Salmonella Aequatoria (organism)','3540008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_35454005','35454005','http://snomed.info/sct','Salmonella Oslo (organism)','35454005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_35504002','35504002','http://snomed.info/sct','Salmonella Borbeck (organism)','35504002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_35529008','35529008','http://snomed.info/sct','Salmonella Brancaster (organism)','35529008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_35647006','35647006','http://snomed.info/sct','Salmonella Avonmouth (organism)','35647006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_3567002','3567002','http://snomed.info/sct','Salmonella Angers (organism)','3567002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_3596001','3596001','http://snomed.info/sct','Salmonella Poano (organism)','3596001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_35972009','35972009','http://snomed.info/sct','Salmonella Brunei (organism)','35972009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_35996004','35996004','http://snomed.info/sct','Salmonella Fyris (organism)','35996004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_36050001','36050001','http://snomed.info/sct','Salmonella Granlo (organism)','36050001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_36077005','36077005','http://snomed.info/sct','Salmonella Sarajane (organism)','36077005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_361397004','361397004','http://snomed.info/sct','Salmonella Atento (organism)','361397004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_36210005','36210005','http://snomed.info/sct','Salmonella II 6,7:l,w:1,5,7 (organism)','36210005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_3624003','3624003','http://snomed.info/sct','Salmonella Waral (organism)','3624003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_36247005','36247005','http://snomed.info/sct','Salmonella Santhiaba (organism)','36247005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_36282006','36282006','http://snomed.info/sct','Salmonella Yolo (organism)','36282006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_36324007','36324007','http://snomed.info/sct','Salmonella II 30:z39:1,7 (organism)','36324007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_363760001','363760001','http://snomed.info/sct','Salmonella IIIb 48:k:1,5,(7) (organism)','363760001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_36510009','36510009','http://snomed.info/sct','Salmonella Teddington (organism)','36510009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_36588009','36588009','http://snomed.info/sct','Salmonella Sangera (organism)','36588009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_36604000','36604000','http://snomed.info/sct','Salmonella Djugu (organism)','36604000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_36702005','36702005','http://snomed.info/sct','Salmonella II 13,23:d:e,n,x (organism)','36702005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_36807005','36807005','http://snomed.info/sct','Salmonella Canton (organism)','36807005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_36819002','36819002','http://snomed.info/sct','Salmonella II 13,22:k:1,5:z42 (organism)','36819002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_370576005','370576005','http://snomed.info/sct','Salmonella Gallinarum (organism)','370576005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_370577001','370577001','http://snomed.info/sct','Salmonella Choleraesuis var. Kunzendorf (organism)','370577001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_370578006','370578006','http://snomed.info/sct','Salmonella Typhimurium var. Copenhagen (organism)','370578006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_3708006','3708006','http://snomed.info/sct','Salmonella Uno (organism)','3708006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_37091006','37091006','http://snomed.info/sct','Salmonella Derby (organism)','37091006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_37093009','37093009','http://snomed.info/sct','Salmonella Hissar (organism)','37093009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_37261005','37261005','http://snomed.info/sct','Salmonella Anatum (organism)','37261005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_37265001','37265001','http://snomed.info/sct','Salmonella II 6,8:l,v:e,n,x (organism)','37265001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_37286001','37286001','http://snomed.info/sct','Salmonella Penarth (organism)','37286001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_37297001','37297001','http://snomed.info/sct','Salmonella Hermannswerder (organism)','37297001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_37339002','37339002','http://snomed.info/sct','Salmonella II 1,53:d:z39 (organism)','37339002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_37420008','37420008','http://snomed.info/sct','Salmonella Westminster (organism)','37420008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_37549003','37549003','http://snomed.info/sct','Salmonella Neftenbach (organism)','37549003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_37669003','37669003','http://snomed.info/sct','Salmonella Langford (organism)','37669003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_37944001','37944001','http://snomed.info/sct','Salmonella Adjame (organism)','37944001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_37971001','37971001','http://snomed.info/sct','Salmonella Bullbay (organism)','37971001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_3801008','3801008','http://snomed.info/sct','Salmonella Ursenbach (organism)','3801008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_38130005','38130005','http://snomed.info/sct','Salmonella Adamstown (organism)','38130005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_38171004','38171004','http://snomed.info/sct','Salmonella II 13,23:-:1,6 (organism)','38171004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_38211003','38211003','http://snomed.info/sct','Salmonella II 1,9,12,(46),27:l,z13,z28:z39 (organism)','38211003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_3835006','3835006','http://snomed.info/sct','Salmonella Colobane (organism)','3835006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_38358008','38358008','http://snomed.info/sct','Salmonella Alfort (organism)','38358008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_3837003','3837003','http://snomed.info/sct','Salmonella Sendai (organism)','3837003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_3846009','3846009','http://snomed.info/sct','Salmonella Gamaba (organism)','3846009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_38514007','38514007','http://snomed.info/sct','Salmonella II 50:z10:z6 (organism)','38514007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_38604007','38604007','http://snomed.info/sct','Salmonella II 39:a:z39 (organism)','38604007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_38643006','38643006','http://snomed.info/sct','Plesiomonas shigelloides (organism)','38643006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_38658003','38658003','http://snomed.info/sct','Salmonella Amsterdam (organism)','38658003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_38676005','38676005','http://snomed.info/sct','Salmonella Bootle (organism)','38676005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_38701009','38701009','http://snomed.info/sct','Salmonella Heerlen (organism)','38701009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_38762004','38762004','http://snomed.info/sct','Salmonella Allerton (organism)','38762004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_38788001','38788001','http://snomed.info/sct','Salmonella Havana (organism)','38788001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_38849007','38849007','http://snomed.info/sct','Salmonella Florida (organism)','38849007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_38865008','38865008','http://snomed.info/sct','Genus Erwinia (organism)','38865008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_39015005','39015005','http://snomed.info/sct','Salmonella Amoutive (organism)','39015005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_39045008','39045008','http://snomed.info/sct','Salmonella Eimsbuettel (organism)','39045008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_39185004','39185004','http://snomed.info/sct','Salmonella Casamance (organism)','39185004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_39215001','39215001','http://snomed.info/sct','Salmonella Vejle (organism)','39215001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_39531008','39531008','http://snomed.info/sct','Salmonella II 9,46:z10:z39 (organism)','39531008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_39603007','39603007','http://snomed.info/sct','Salmonella Parkroyal (organism)','39603007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_39664003','39664003','http://snomed.info/sct','Salmonella Kottbus (organism)','39664003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_3970007','3970007','http://snomed.info/sct','Salmonella Quentin (organism)','3970007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_397502001','397502001','http://snomed.info/sct','Salmonella enterica subsp. arizonae (organism)','397502001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_397577006','397577006','http://snomed.info/sct','Salmonella categorized by O antigen (organism)','397577006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_39761002','39761002','http://snomed.info/sct','Salmonella Shamba (organism)','39761002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_39775009','39775009','http://snomed.info/sct','Salmonella Sanktmarx (organism)','39775009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398331000','398331000','http://snomed.info/sct','Salmonella IIIb 61:(k):z53 (organism)','398331000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398333002','398333002','http://snomed.info/sct','Salmonella IIIb 51:l,v:z (organism)','398333002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398334008','398334008','http://snomed.info/sct','Salmonella I, group O:9 (organism)','398334008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398335009','398335009','http://snomed.info/sct','Salmonella IIIb 61:z52:z35 (organism)','398335009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398336005','398336005','http://snomed.info/sct','Salmonella IIIb 60:k:z35 (organism)','398336005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398337001','398337001','http://snomed.info/sct','Salmonella I, group O:51 (organism)','398337001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398339003','398339003','http://snomed.info/sct','Salmonella IIIb 61:c:1,5,(7) (organism)','398339003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398340001','398340001','http://snomed.info/sct','Salmonella IIIb 60:z10:z (organism)','398340001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398341002','398341002','http://snomed.info/sct','Salmonella V, group O:60 (organism)','398341002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398342009','398342009','http://snomed.info/sct','Salmonella I, group O:3,10 (organism)','398342009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398343004','398343004','http://snomed.info/sct','Salmonella IIIb, group O:57 (organism)','398343004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398344005','398344005','http://snomed.info/sct','Salmonella IIIa 62:z4,z32:- (organism)','398344005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398345006','398345006','http://snomed.info/sct','Salmonella II, group O:59 (organism)','398345006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398346007','398346007','http://snomed.info/sct','Salmonella IIIb 61:z52:1,5,7 (organism)','398346007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398347003','398347003','http://snomed.info/sct','Salmonella IIIb, group O:16 (organism)','398347003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398348008','398348008','http://snomed.info/sct','Salmonella group O:9,46 (organism)','398348008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398349000','398349000','http://snomed.info/sct','Salmonella group O:13 (organism)','398349000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398350000','398350000','http://snomed.info/sct','Salmonella IIIa 51:g,z51:- (organism)','398350000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398351001','398351001','http://snomed.info/sct','Salmonella VI, group O:6,14 (organism)','398351001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398353003','398353003','http://snomed.info/sct','Salmonella IIIb 60:r:z (organism)','398353003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398354009','398354009','http://snomed.info/sct','Salmonella I, group O:16 (organism)','398354009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398356006','398356006','http://snomed.info/sct','Salmonella IIIa 59:z4:z23:- (organism)','398356006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398357002','398357002','http://snomed.info/sct','Salmonella IIIa, group O:56 (organism)','398357002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398358007','398358007','http://snomed.info/sct','Salmonella IIIa 63:z4,z32:- (organism)','398358007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398359004','398359004','http://snomed.info/sct','Salmonella IIIb 61:i:z (organism)','398359004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398360009','398360009','http://snomed.info/sct','Salmonella IIIb 6,14:k:z (organism)','398360009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398361008','398361008','http://snomed.info/sct','Salmonella V, group O:66 (organism)','398361008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398362001','398362001','http://snomed.info/sct','Salmonella I, group O:54 (organism)','398362001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398363006','398363006','http://snomed.info/sct','Salmonella IIIa 63:z36:- (organism)','398363006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398364000','398364000','http://snomed.info/sct','Salmonella group O:8 (organism)','398364000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398366003','398366003','http://snomed.info/sct','Salmonella II, group O:55 (organism)','398366003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398368002','398368002','http://snomed.info/sct','Salmonella IIIb 60:l,v:z (organism)','398368002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398369005','398369005','http://snomed.info/sct','Salmonella IIIb 61:l,v:z35 (organism)','398369005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398370006','398370006','http://snomed.info/sct','Salmonella IIIb 59:(k):e,n,x,z15 (organism)','398370006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398371005','398371005','http://snomed.info/sct','Salmonella enterica subsp. houtenae (organism)','398371005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398372003','398372003','http://snomed.info/sct','Salmonella IIIb 57:c:z:z60 (organism)','398372003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398373008','398373008','http://snomed.info/sct','Salmonella IIIb 61:k:1,5,(7) (organism)','398373008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398374002','398374002','http://snomed.info/sct','Salmonella IIIb 59:(k):z (organism)','398374002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398375001','398375001','http://snomed.info/sct','Salmonella IIIb, group O:58 (organism)','398375001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398376000','398376000','http://snomed.info/sct','Salmonella II 9,12:l,v:e,n,x (organism)','398376000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398377009','398377009','http://snomed.info/sct','Salmonella IIIb, group O:51 (organism)','398377009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398379007','398379007','http://snomed.info/sct','Salmonella IIIb 59:(k):z35 (organism)','398379007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398380005','398380005','http://snomed.info/sct','Salmonella IIIb, group O:60 (organism)','398380005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398382002','398382002','http://snomed.info/sct','Salmonella IIIb 60:i:z35 (organism)','398382002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398383007','398383007','http://snomed.info/sct','Salmonella IV, group O:6,14 (organism)','398383007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398385000','398385000','http://snomed.info/sct','Salmonella IIIb 59:l,v:z (organism)','398385000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398386004','398386004','http://snomed.info/sct','Salmonella II 3,10:z29:e,n,x (organism)','398386004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398387008','398387008','http://snomed.info/sct','Salmonella IIIb 61:c:z35 (organism)','398387008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398388003','398388003','http://snomed.info/sct','Salmonella IIIb 53:z10:z35 (organism)','398388003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398389006','398389006','http://snomed.info/sct','Salmonella IIIa, group O:7 (organism)','398389006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398390002','398390002','http://snomed.info/sct','Salmonella II, group O:3,10 (organism)','398390002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398391003','398391003','http://snomed.info/sct','Salmonella II 1,4,[5],12,27:a:e,n,x (organism)','398391003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398392005','398392005','http://snomed.info/sct','Salmonella IIIb 58:r:e,n,x,z15 (organism)','398392005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398393000','398393000','http://snomed.info/sct','Salmonella bongori (organism)','398393000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398395007','398395007','http://snomed.info/sct','Salmonella IIIb 52:k:z53 (organism)','398395007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398396008','398396008','http://snomed.info/sct','Salmonella IV 51:z4,z23:- (organism)','398396008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398397004','398397004','http://snomed.info/sct','Salmonella IIIb 65:z52:z35 (organism)','398397004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398398009','398398009','http://snomed.info/sct','Salmonella IIIb 52:k:z35 (organism)','398398009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398399001','398399001','http://snomed.info/sct','Salmonella group O:9,46,27 (organism)','398399001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398400008','398400008','http://snomed.info/sct','Salmonella IIIa, group O:51 (organism)','398400008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398401007','398401007','http://snomed.info/sct','Salmonella II, group O:4 (organism)','398401007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398402000','398402000','http://snomed.info/sct','Salmonella IIIa 56:z4,z23,z32:- (organism)','398402000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398403005','398403005','http://snomed.info/sct','Salmonella II 3,10:z4,z24:- (organism)','398403005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398404004','398404004','http://snomed.info/sct','Salmonella IIIa 63:g:z51:- (organism)','398404004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398406002','398406002','http://snomed.info/sct','Salmonella IIIa 62:g:z51:- (organism)','398406002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398407006','398407006','http://snomed.info/sct','Salmonella IIIb 60:r:e,n,x,z15 (organism)','398407006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398409009','398409009','http://snomed.info/sct','Salmonella Nchanga var 15+ (organism)','398409009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398410004','398410004','http://snomed.info/sct','Salmonella Southbank var 15+, 34+ (organism)','398410004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398411000','398411000','http://snomed.info/sct','Salmonella IIIa 59:z29:- (organism)','398411000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398412007','398412007','http://snomed.info/sct','Salmonella IIIb 60:z10:z35 (organism)','398412007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398413002','398413002','http://snomed.info/sct','Salmonella IV, group O:7 (organism)','398413002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398414008','398414008','http://snomed.info/sct','Salmonella II 1,9,12:a:e,n,x (organism)','398414008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398415009','398415009','http://snomed.info/sct','Salmonella IIIa 1,13,23:z4,z24:- (organism)','398415009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398416005','398416005','http://snomed.info/sct','Salmonella IIIb 65:l,v:z35 (organism)','398416005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398417001','398417001','http://snomed.info/sct','Salmonella IIIb 61:r:1,5,7 (organism)','398417001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398418006','398418006','http://snomed.info/sct','Salmonella IIIb 53:i:z (organism)','398418006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398419003','398419003','http://snomed.info/sct','Salmonella IIIa 56:z29:- (organism)','398419003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398420009','398420009','http://snomed.info/sct','Salmonella I, group O:2 (organism)','398420009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398421008','398421008','http://snomed.info/sct','Salmonella IIIa, group O:11 (organism)','398421008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398422001','398422001','http://snomed.info/sct','Salmonella II 3,10:e,n,x:1,7 (organism)','398422001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398423006','398423006','http://snomed.info/sct','Salmonella IIIb 61:l,v:1,5,7:[z57] (organism)','398423006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398424000','398424000','http://snomed.info/sct','Salmonella IIIb 59:l,v:z53 (organism)','398424000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398425004','398425004','http://snomed.info/sct','Salmonella IIIa 6,7,14:z39:1,2 (organism)','398425004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398426003','398426003','http://snomed.info/sct','Salmonella group O:2 (organism)','398426003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398427007','398427007','http://snomed.info/sct','Salmonella I, group O:57 (organism)','398427007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398428002','398428002','http://snomed.info/sct','Salmonella enterica subsp. diarizonae (organism)','398428002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398429005','398429005','http://snomed.info/sct','Salmonella group O:11 (organism)','398429005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398430000','398430000','http://snomed.info/sct','Salmonella I, group O:53 (organism)','398430000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398431001','398431001','http://snomed.info/sct','Salmonella IIIb 59:z10:z53 (organism)','398431001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398433003','398433003','http://snomed.info/sct','Salmonella IIIb 60:z52:z35 (organism)','398433003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398434009','398434009','http://snomed.info/sct','Salmonella IIIb 65:i:e,n,x,z15 (organism)','398434009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398435005','398435005','http://snomed.info/sct','Salmonella IIIb 51:k:z35 (organism)','398435005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398436006','398436006','http://snomed.info/sct','Salmonella group O:3,10 (organism)','398436006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398437002','398437002','http://snomed.info/sct','Salmonella IIIb 65:c:z53 (organism)','398437002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398438007','398438007','http://snomed.info/sct','Salmonella II 1,4,12,27:b:[e,n,x] (organism)','398438007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398439004','398439004','http://snomed.info/sct','Salmonella IIIa, group O:62 (organism)','398439004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398440002','398440002','http://snomed.info/sct','Salmonella IIIb 58:r:z53:(57) (organism)','398440002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398441003','398441003','http://snomed.info/sct','Salmonella II 3,10:g,m,s,t:[1,5] var 15+ (organism)','398441003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398442005','398442005','http://snomed.info/sct','Salmonella IIIb 61:z52:z (organism)','398442005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398444006','398444006','http://snomed.info/sct','Salmonella IIIa 59:z36:- (organism)','398444006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398445007','398445007','http://snomed.info/sct','Salmonella I, group O:11 (organism)','398445007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398448009','398448009','http://snomed.info/sct','Salmonella Meleagridis var 15+ (organism)','398448009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398449001','398449001','http://snomed.info/sct','Salmonella IIIa 6,7:(k):z:(z55) (organism)','398449001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398450001','398450001','http://snomed.info/sct','Salmonella IIIb 53:k:z (organism)','398450001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398451002','398451002','http://snomed.info/sct','Salmonella IV, group O:11 (organism)','398451002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398453004','398453004','http://snomed.info/sct','Salmonella IIIb 60:r:z35 (organism)','398453004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398456007','398456007','http://snomed.info/sct','Salmonella IIIb 60:(k):z53 (organism)','398456007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398457003','398457003','http://snomed.info/sct','Salmonella IIIb 53:z52:z53 (organism)','398457003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398458008','398458008','http://snomed.info/sct','Salmonella IIIb 60:z52:z (organism)','398458008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398459000','398459000','http://snomed.info/sct','Salmonella IIIa 53:g,z51:- (organism)','398459000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398460005','398460005','http://snomed.info/sct','Salmonella II, group O:9,46 (organism)','398460005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398461009','398461009','http://snomed.info/sct','Salmonella IIIb 53:z52:z35 (organism)','398461009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398462002','398462002','http://snomed.info/sct','Salmonella II, group O:8 (organism)','398462002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398465000','398465000','http://snomed.info/sct','Salmonella II 1,9,12,46,27:z10:1,5 (organism)','398465000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398466004','398466004','http://snomed.info/sct','Salmonella enterica subspecies enterica serovar Butantan var O:15, 34+ (organism)','398466004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398467008','398467008','http://snomed.info/sct','Salmonella group O:4 (organism)','398467008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398469006','398469006','http://snomed.info/sct','Salmonella IIIb 53:l,v:e,n,x,z15 (organism)','398469006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398470007','398470007','http://snomed.info/sct','Salmonella IIIa, group O:63 (organism)','398470007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398471006','398471006','http://snomed.info/sct','Salmonella IIIb 52:l,v:z53 (organism)','398471006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398472004','398472004','http://snomed.info/sct','Salmonella IIIb 53:l,v:z35 (organism)','398472004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398473009','398473009','http://snomed.info/sct','Salmonella Newlands var 15+, 34+ (organism)','398473009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398474003','398474003','http://snomed.info/sct','Salmonella IIIb 59:k:z53 (organism)','398474003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398476001','398476001','http://snomed.info/sct','Salmonella I, group O:52 (organism)','398476001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398477005','398477005','http://snomed.info/sct','Salmonella IIIb, group O:13 (organism)','398477005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398478000','398478000','http://snomed.info/sct','Salmonella Jedburgh var 15+ (organism)','398478000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398480006','398480006','http://snomed.info/sct','Salmonella I, group O:67 (organism)','398480006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398481005','398481005','http://snomed.info/sct','Salmonella IIIb 60:k:z (organism)','398481005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398483008','398483008','http://snomed.info/sct','Salmonella Lomalinda (organism)','398483008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398484002','398484002','http://snomed.info/sct','Salmonella IIIb 61:z10:z35 (organism)','398484002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398485001','398485001','http://snomed.info/sct','Salmonella IIIb (6),14:l,v:z35 (organism)','398485001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398486000','398486000','http://snomed.info/sct','Salmonella IIIb 1,6,14,25:z52:z35 (organism)','398486000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398488004','398488004','http://snomed.info/sct','Salmonella enterica subsp. salamae (organism)','398488004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398490003','398490003','http://snomed.info/sct','Salmonella I, group O:6,14 (organism)','398490003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398491004','398491004','http://snomed.info/sct','Salmonella IIIb 65:l,v:z53 (organism)','398491004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398492006','398492006','http://snomed.info/sct','Salmonella group O:6,14 (organism)','398492006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398493001','398493001','http://snomed.info/sct','Salmonella II, group O:60 (organism)','398493001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398494007','398494007','http://snomed.info/sct','Salmonella IIIb (6),14:l,v:z (organism)','398494007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398495008','398495008','http://snomed.info/sct','Salmonella IIIb 60:z52:z53 (organism)','398495008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398496009','398496009','http://snomed.info/sct','Salmonella IIIb 65:z52:z53 (organism)','398496009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398497000','398497000','http://snomed.info/sct','Salmonella IIIb 61:z52:z53 (organism)','398497000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398498005','398498005','http://snomed.info/sct','Salmonella IIIb (6),14:k:z53 (organism)','398498005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398499002','398499002','http://snomed.info/sct','Salmonella Shangani var 15+ (organism)','398499002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398500006','398500006','http://snomed.info/sct','Salmonella IIIb 65:z10:z (organism)','398500006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398502003','398502003','http://snomed.info/sct','Salmonella IIIb 61:r:z35 (organism)','398502003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398508004','398508004','http://snomed.info/sct','Salmonella enterica subsp. enterica (organism)','398508004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398509007','398509007','http://snomed.info/sct','Salmonella IIIb, group O:6,14 (organism)','398509007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398510002','398510002','http://snomed.info/sct','Salmonella IIIb 58:z52:z35 (organism)','398510002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398511003','398511003','http://snomed.info/sct','Salmonella I, group O:13 (organism)','398511003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398512005','398512005','http://snomed.info/sct','Salmonella IIIb 65:(k):z35 (organism)','398512005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398514006','398514006','http://snomed.info/sct','Salmonella IV, group O:51 (organism)','398514006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398515007','398515007','http://snomed.info/sct','Salmonella Zanzibar var 15+ (organism)','398515007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398516008','398516008','http://snomed.info/sct','Salmonella IIIa, group O:53 (organism)','398516008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398517004','398517004','http://snomed.info/sct','Salmonella IIIb 60:z52:1,5,7 (organism)','398517004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398519001','398519001','http://snomed.info/sct','Salmonella IIIb 65:l,v:z (organism)','398519001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398520007','398520007','http://snomed.info/sct','Salmonella IIIb 57:i:z (organism)','398520007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398521006','398521006','http://snomed.info/sct','Salmonella IIIa 53:z4,z23,z32:- (organism)','398521006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398522004','398522004','http://snomed.info/sct','Salmonella IIIb (6),14:r:z (organism)','398522004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398525002','398525002','http://snomed.info/sct','Salmonella IIIb 58:i:e,n,x,z15 (organism)','398525002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398526001','398526001','http://snomed.info/sct','Salmonella IV, group O:16 (organism)','398526001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398527005','398527005','http://snomed.info/sct','Salmonella IIIb 65:c:z (organism)','398527005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398528000','398528000','http://snomed.info/sct','Salmonella II, group O:11 (organism)','398528000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398529008','398529008','http://snomed.info/sct','Salmonella V, group O:13 (organism)','398529008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398531004','398531004','http://snomed.info/sct','Salmonella IIIb 53:z:1,5,(7) (organism)','398531004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398532006','398532006','http://snomed.info/sct','Salmonella IIIa 1,13,23:g,z51:- (organism)','398532006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398533001','398533001','http://snomed.info/sct','Salmonella I, group O:9,46 (organism)','398533001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398534007','398534007','http://snomed.info/sct','Salmonella II, group O:7 (organism)','398534007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398535008','398535008','http://snomed.info/sct','Salmonella IIIb 61:i:z35 (organism)','398535008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398537000','398537000','http://snomed.info/sct','Salmonella 3,10:R1,z40:1,7 (organism)','398537000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398538005','398538005','http://snomed.info/sct','Salmonella IIIb 61:l,v:z (organism)','398538005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398539002','398539002','http://snomed.info/sct','Salmonella IIIa, group O:59 (organism)','398539002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398540000','398540000','http://snomed.info/sct','Salmonella IIIb 58:l,v:e,n,x,z15 (organism)','398540000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398541001','398541001','http://snomed.info/sct','Salmonella IIIb, group O:59 (organism)','398541001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398542008','398542008','http://snomed.info/sct','Salmonella I, group O:7 (organism)','398542008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398543003','398543003','http://snomed.info/sct','Salmonella group O:16 (organism)','398543003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398544009','398544009','http://snomed.info/sct','Salmonella IIIb, group O:53 (organism)','398544009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398546006','398546006','http://snomed.info/sct','Salmonella IIIa 63:z4,z23:- (organism)','398546006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398547002','398547002','http://snomed.info/sct','Salmonella group O:1,3,19 (organism)','398547002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398548007','398548007','http://snomed.info/sct','Salmonella IIIa 62:z4,z23:- (organism)','398548007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398549004','398549004','http://snomed.info/sct','Salmonella Lutetia (organism)','398549004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398550004','398550004','http://snomed.info/sct','Salmonella Zaiman (organism)','398550004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398551000','398551000','http://snomed.info/sct','Salmonella IIIb 53:r:z35 (organism)','398551000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398552007','398552007','http://snomed.info/sct','Salmonella Florian (organism)','398552007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398553002','398553002','http://snomed.info/sct','Salmonella IIIb 61:i:e,n,x,z15 (organism)','398553002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398555009','398555009','http://snomed.info/sct','Salmonella II, group O:16 (organism)','398555009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398556005','398556005','http://snomed.info/sct','Salmonella IIIa, group O:13 (organism)','398556005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398558006','398558006','http://snomed.info/sct','Salmonella IIIb 65:z10:e,n,x,z15 (organism)','398558006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398559003','398559003','http://snomed.info/sct','Salmonella group O:9 (organism)','398559003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398561007','398561007','http://snomed.info/sct','Salmonella II, group O:9 (organism)','398561007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398562000','398562000','http://snomed.info/sct','Salmonella IIIb (6),14:z10:e,n,x,z15 (organism)','398562000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398563005','398563005','http://snomed.info/sct','Salmonella IIIb 61:i:z53 (organism)','398563005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398564004','398564004','http://snomed.info/sct','Salmonella IIIb, group O:65 (organism)','398564004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398566002','398566002','http://snomed.info/sct','Salmonella IIIb, group O:52 (organism)','398566002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398567006','398567006','http://snomed.info/sct','Salmonella I, group O:4 (organism)','398567006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398569009','398569009','http://snomed.info/sct','Salmonella IIIa 6,7:1,v:z53 (organism)','398569009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398572002','398572002','http://snomed.info/sct','Salmonella II, group O:13 (organism)','398572002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398573007','398573007','http://snomed.info/sct','Salmonella IIIb 53:k:e,n,x,z15 (organism)','398573007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398574001','398574001','http://snomed.info/sct','Salmonella IIIa 53:z29:- (organism)','398574001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398576004','398576004','http://snomed.info/sct','Salmonella I, group O:1,3,19 (organism)','398576004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398577008','398577008','http://snomed.info/sct','Salmonella IIIb 53:r:z (organism)','398577008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398578003','398578003','http://snomed.info/sct','Salmonella II 1,13,22:g,t:1,5 (organism)','398578003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398580009','398580009','http://snomed.info/sct','Salmonella IIIb 65:c:1,5,7 (organism)','398580009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398581008','398581008','http://snomed.info/sct','Salmonella IIIb 65:(k):z53 (organism)','398581008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398582001','398582001','http://snomed.info/sct','Salmonella IIIa 56:z4,z23:- (organism)','398582001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398583006','398583006','http://snomed.info/sct','Salmonella Ohlstedt var 15+ (organism)','398583006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398584000','398584000','http://snomed.info/sct','Salmonella I, group O:8 (organism)','398584000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398586003','398586003','http://snomed.info/sct','Salmonella II, group O:9,46,27 (organism)','398586003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398587007','398587007','http://snomed.info/sct','Salmonella IIIb 60:i:e,n,x,z15 (organism)','398587007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398588002','398588002','http://snomed.info/sct','Salmonella IIIb, group O:61 (organism)','398588002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398590001','398590001','http://snomed.info/sct','Salmonella IIIb 57:i:e,n,x,z15 (organism)','398590001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398592009','398592009','http://snomed.info/sct','Salmonella IIIb 61:r:z53 (organism)','398592009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398593004','398593004','http://snomed.info/sct','Salmonella group O:7 (organism)','398593004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398594005','398594005','http://snomed.info/sct','Salmonella Yaba var 15+ (organism)','398594005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398595006','398595006','http://snomed.info/sct','Salmonella IIIb 59:i:z (organism)','398595006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398596007','398596007','http://snomed.info/sct','Salmonella IIIb 58:z52:z (organism)','398596007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398597003','398597003','http://snomed.info/sct','Salmonella IIIb 53:(k):z35 (organism)','398597003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398601003','398601003','http://snomed.info/sct','Salmonella IIIa 6,7:-:1,6 (organism)','398601003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398602005','398602005','http://snomed.info/sct','Salmonella II, group O:6,14 (organism)','398602005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398603000','398603000','http://snomed.info/sct','Salmonella IIIb 58:r:z (organism)','398603000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398604006','398604006','http://snomed.info/sct','Salmonella IIIb 65:z52:z (organism)','398604006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398605007','398605007','http://snomed.info/sct','Salmonella IIIb 59:i:z35 (organism)','398605007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398607004','398607004','http://snomed.info/sct','Salmonella V, group O:61 (organism)','398607004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398608009','398608009','http://snomed.info/sct','Salmonella VI, group O:7 (organism)','398608009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398609001','398609001','http://snomed.info/sct','Salmonella VI, group O:11 (organism)','398609001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398610006','398610006','http://snomed.info/sct','Salmonella IIIb 6,14:b:e,n,x (organism)','398610006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398612003','398612003','http://snomed.info/sct','Salmonella IIIb 60:r:z53 (organism)','398612003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398613008','398613008','http://snomed.info/sct','Salmonella IIIb 59:z10:z57 (organism)','398613008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398615001','398615001','http://snomed.info/sct','Salmonella IIIb 65:(k):z (organism)','398615001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398616000','398616000','http://snomed.info/sct','Salmonella IIIa 51:z4,z24:- (organism)','398616000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398618004','398618004','http://snomed.info/sct','Salmonella IIIb, group O:11 (organism)','398618004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398619007','398619007','http://snomed.info/sct','Salmonella IIIb 65:i,v:e,n,x,z15 (organism)','398619007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398620001','398620001','http://snomed.info/sct','Salmonella enterica subsp. indica (organism)','398620001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_398622009','398622009','http://snomed.info/sct','Salmonella Everleigh (organism)','398622009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_39877005','39877005','http://snomed.info/sct','Salmonella Lexington (organism)','39877005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_39901006','39901006','http://snomed.info/sct','Salmonella Garoli (organism)','39901006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_4005005','4005005','http://snomed.info/sct','Salmonella Jamaica (organism)','4005005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_40114001','40114001','http://snomed.info/sct','Salmonella Panama (organism)','40114001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_40157006','40157006','http://snomed.info/sct','Salmonella Marienthal (organism)','40157006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_40216007','40216007','http://snomed.info/sct','Salmonella Anna (organism)','40216007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_40280008','40280008','http://snomed.info/sct','Salmonella II 1,6,14:z42:1,6 (organism)','40280008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_40288001','40288001','http://snomed.info/sct','Salmonella Moroto (organism)','40288001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_40305002','40305002','http://snomed.info/sct','Salmonella Kasenyi (organism)','40305002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_40311004','40311004','http://snomed.info/sct','Salmonella Farmsen (organism)','40311004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_40314007','40314007','http://snomed.info/sct','Salmonella IV 43:z4:z24:- (organism)','40314007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_40369005','40369005','http://snomed.info/sct','Salmonella Abony (organism)','40369005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_40399001','40399001','http://snomed.info/sct','Salmonella Oudwijk (organism)','40399001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404249008','404249008','http://snomed.info/sct','Salmonella II 16 g,[m],[s],t:[e,n,x] (organism)','404249008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404250008','404250008','http://snomed.info/sct','Salmonella IIIb 16:(k):z35 (organism)','404250008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404251007','404251007','http://snomed.info/sct','Salmonella IIIb 16:i:z35 (organism)','404251007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404252000','404252000','http://snomed.info/sct','Salmonella IIIb 16:k:z (organism)','404252000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404253005','404253005','http://snomed.info/sct','Salmonella IIIb 16:k:z53 (organism)','404253005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404254004','404254004','http://snomed.info/sct','Salmonella IIIb 16:l,v:1,5,7 (organism)','404254004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404255003','404255003','http://snomed.info/sct','Salmonella IIIb 16:l,v:z35 (organism)','404255003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404256002','404256002','http://snomed.info/sct','Salmonella IIIb 16:l,v:z53 (organism)','404256002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404257006','404257006','http://snomed.info/sct','Salmonella IIIb 16:l,v:z:(z61) (organism)','404257006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404258001','404258001','http://snomed.info/sct','Salmonella IIIb 16:z10:1,5,7 (organism)','404258001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404259009','404259009','http://snomed.info/sct','Salmonella IIIb 16:z10:e,n,x,z15 (organism)','404259009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404260004','404260004','http://snomed.info/sct','Salmonella IIIb 16:z52:z35 (organism)','404260004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404261000','404261000','http://snomed.info/sct','Salmonella IV 16:z4,z23:- (organism)','404261000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404262007','404262007','http://snomed.info/sct','Salmonella II 16:g,t:1,5 (organism)','404262007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_40427007','40427007','http://snomed.info/sct','Salmonella Hann (organism)','40427007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404275007','404275007','http://snomed.info/sct','Salmonella group O:17 (organism)','404275007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404276008','404276008','http://snomed.info/sct','Salmonella I, group O:17 (organism)','404276008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404277004','404277004','http://snomed.info/sct','Salmonella II, group O:17 (organism)','404277004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404278009','404278009','http://snomed.info/sct','Salmonella IIIa, group O:17 (organism)','404278009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404279001','404279001','http://snomed.info/sct','Salmonella IIIb, group O:17 (organism)','404279001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404280003','404280003','http://snomed.info/sct','Salmonella IV, group O:17 (organism)','404280003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404281004','404281004','http://snomed.info/sct','Salmonella IIIb 17:i:z35 (organism)','404281004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404282006','404282006','http://snomed.info/sct','Salmonella IIIb 17:l,v:e,n,x,z15 (organism)','404282006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404283001','404283001','http://snomed.info/sct','Salmonella IIIb 17:l,v:z35 (organism)','404283001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404284007','404284007','http://snomed.info/sct','Salmonella IIIb 17:r:z (organism)','404284007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404285008','404285008','http://snomed.info/sct','Salmonella IIIb 17:z10:e,n,x,z15 (organism)','404285008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404286009','404286009','http://snomed.info/sct','Salmonella IIIb 17:z10:z (organism)','404286009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404287000','404287000','http://snomed.info/sct','Salmonella IIIa 17:z29:- (organism)','404287000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404288005','404288005','http://snomed.info/sct','Salmonella IIIa 17:z36:- (organism)','404288005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404289002','404289002','http://snomed.info/sct','Salmonella IIIa 17:z4,z23,z32:- (organism)','404289002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404290006','404290006','http://snomed.info/sct','Salmonella IIIa 17:z4,z23:- (organism)','404290006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404291005','404291005','http://snomed.info/sct','Salmonella IIIa 17:z4,z24:- (organism)','404291005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404292003','404292003','http://snomed.info/sct','Salmonella IIIa 17:z4,z32:- (organism)','404292003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404293008','404293008','http://snomed.info/sct','Salmonella IV 17:z29:- (organism)','404293008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404294002','404294002','http://snomed.info/sct','Salmonella group O:18 (organism)','404294002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404295001','404295001','http://snomed.info/sct','Salmonella I, group O:18 (organism)','404295001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404296000','404296000','http://snomed.info/sct','Salmonella II, group O:18 (organism)','404296000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404297009','404297009','http://snomed.info/sct','Salmonella IIIa, group O:18 (organism)','404297009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404298004','404298004','http://snomed.info/sct','Salmonella IIIb, group O:18 (organism)','404298004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404299007','404299007','http://snomed.info/sct','Salmonella IV, group O:18 (organism)','404299007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404300004','404300004','http://snomed.info/sct','Salmonella IIIa 18:z4,z23:- (organism)','404300004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404301000','404301000','http://snomed.info/sct','Salmonella II 18:z4,z23:- (organism)','404301000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404302007','404302007','http://snomed.info/sct','Salmonella II 18:z4,z24:- (organism)','404302007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404303002','404303002','http://snomed.info/sct','Salmonella IIIb 18:(k):z53 (organism)','404303002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404304008','404304008','http://snomed.info/sct','Salmonella IIIb 18:(k):z54 (organism)','404304008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404305009','404305009','http://snomed.info/sct','Salmonella IIIa 18:g,z51:- (organism)','404305009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404306005','404306005','http://snomed.info/sct','Salmonella IIIb 18:l,v:e,n,x,z15 (organism)','404306005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404307001','404307001','http://snomed.info/sct','Salmonella IIIb 18:l,v:z (organism)','404307001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404308006','404308006','http://snomed.info/sct','Salmonella IIIb 18:r:z (organism)','404308006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404309003','404309003','http://snomed.info/sct','Salmonella IIIa 18:z4,z32:- (organism)','404309003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404310008','404310008','http://snomed.info/sct','Salmonella group O:21 (organism)','404310008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404311007','404311007','http://snomed.info/sct','Salmonella I, group O:21 (organism)','404311007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404312000','404312000','http://snomed.info/sct','Salmonella II, group O:21 (organism)','404312000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404313005','404313005','http://snomed.info/sct','Salmonella IIIa, group O:21 (organism)','404313005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404314004','404314004','http://snomed.info/sct','Salmonella IIIb, group O:21 (organism)','404314004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404315003','404315003','http://snomed.info/sct','Salmonella IV, group O:21 (organism)','404315003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404316002','404316002','http://snomed.info/sct','Salmonella IIIa 21:z4,z23:- (organism)','404316002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404317006','404317006','http://snomed.info/sct','Salmonella Baguida (organism)','404317006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404318001','404318001','http://snomed.info/sct','Salmonella II 21:z4,z24:- (organism)','404318001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404319009','404319009','http://snomed.info/sct','Salmonella IIIa 21:z4,z24:- (organism)','404319009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404320003','404320003','http://snomed.info/sct','Salmonella IIIa 21:g,z51:- (organism)','404320003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404321004','404321004','http://snomed.info/sct','Salmonella IIIb 21:i:1,5,7 (organism)','404321004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404322006','404322006','http://snomed.info/sct','Salmonella IIIb 21:i:e,n,x,z15 (organism)','404322006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404323001','404323001','http://snomed.info/sct','Salmonella IIIb 21:k:e,n,x,z15 (organism)','404323001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404324007','404324007','http://snomed.info/sct','Salmonella IIIb 21:k:z (organism)','404324007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404325008','404325008','http://snomed.info/sct','Salmonella IIIb 21:l,v:z (organism)','404325008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404326009','404326009','http://snomed.info/sct','Salmonella IIIb 21:l,v:z57 (organism)','404326009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404327000','404327000','http://snomed.info/sct','Salmonella IIIb 21:z10:e,n,x,z15 (organism)','404327000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404328005','404328005','http://snomed.info/sct','Salmonella IIIb 21:z10:z (organism)','404328005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404329002','404329002','http://snomed.info/sct','Salmonella IIIa 21:z29:- (organism)','404329002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404330007','404330007','http://snomed.info/sct','Salmonella IIIb 21:z65:e,n,x,z15 (organism)','404330007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404331006','404331006','http://snomed.info/sct','Salmonella Rhone (organism)','404331006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404332004','404332004','http://snomed.info/sct','Salmonella II 21:c:e,n,x (organism)','404332004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404333009','404333009','http://snomed.info/sct','Salmonella group O:28 (organism)','404333009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404334003','404334003','http://snomed.info/sct','Salmonella I, group O:28 (organism)','404334003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404335002','404335002','http://snomed.info/sct','Salmonella II, group O:28 (organism)','404335002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404336001','404336001','http://snomed.info/sct','Salmonella IIIb, group O:28 (organism)','404336001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404337005','404337005','http://snomed.info/sct','Salmonella II 28:r:e,n,z15 (organism)','404337005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404338000','404338000','http://snomed.info/sct','Salmonella group O:30 (organism)','404338000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404339008','404339008','http://snomed.info/sct','Salmonella I, group O:30 (organism)','404339008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404340005','404340005','http://snomed.info/sct','Salmonella II, group O:30 (organism)','404340005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404341009','404341009','http://snomed.info/sct','Salmonella group O:35 (organism)','404341009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404342002','404342002','http://snomed.info/sct','Salmonella I, group O:35 (organism)','404342002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404343007','404343007','http://snomed.info/sct','Salmonella II, group O:35 (organism)','404343007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404344001','404344001','http://snomed.info/sct','Salmonella IIIa, group O:35 (organism)','404344001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404345000','404345000','http://snomed.info/sct','Salmonella IIIb, group O:35 (organism)','404345000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404346004','404346004','http://snomed.info/sct','Salmonella IIIa 35:z4,z23:- (organism)','404346004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404347008','404347008','http://snomed.info/sct','Salmonella Alachua (organism)','404347008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404348003','404348003','http://snomed.info/sct','Salmonella IIIb 35:(k):z (organism)','404348003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404349006','404349006','http://snomed.info/sct','Salmonella IIIb 35:(k):z35 (organism)','404349006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404350006','404350006','http://snomed.info/sct','Salmonella IIIa 35:g,z51:- (organism)','404350006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404351005','404351005','http://snomed.info/sct','Salmonella IIIb 35:i:e,n,x,z15 (organism)','404351005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404352003','404352003','http://snomed.info/sct','Salmonella IIIb 35:i:z (organism)','404352003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404353008','404353008','http://snomed.info/sct','Salmonella IIIb 35:k:z (organism)','404353008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404354002','404354002','http://snomed.info/sct','Salmonella IIIb 35:l,v:1,5,7 (organism)','404354002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404355001','404355001','http://snomed.info/sct','Salmonella IIIb 35:r:e,n,x,z15 (organism)','404355001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404356000','404356000','http://snomed.info/sct','Salmonella IIIb 35:r:z35 (organism)','404356000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404357009','404357009','http://snomed.info/sct','Salmonella IIIb 35:r:z61 (organism)','404357009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404358004','404358004','http://snomed.info/sct','Salmonella IIIb35:z10:z35 (organism)','404358004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404359007','404359007','http://snomed.info/sct','Salmonella IIIa 35:z29:- (organism)','404359007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404360002','404360002','http://snomed.info/sct','Salmonella IIIa 35:z36:- (organism)','404360002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404361003','404361003','http://snomed.info/sct','Salmonella IIIa 35:z4,z32:- (organism)','404361003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404362005','404362005','http://snomed.info/sct','Salmonella IIIb 35:z52:1,5,7 (organism)','404362005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404363000','404363000','http://snomed.info/sct','Salmonella IIIb 35:z52:e,n,x,z15 (organism)','404363000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404364006','404364006','http://snomed.info/sct','Salmonella IIIb 35:z52:z (organism)','404364006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404365007','404365007','http://snomed.info/sct','Salmonella IIIb 35:z52:z35 (organism)','404365007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404366008','404366008','http://snomed.info/sct','Salmonella group O:38 (organism)','404366008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404367004','404367004','http://snomed.info/sct','Salmonella I, group O:38 (organism)','404367004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404368009','404368009','http://snomed.info/sct','Salmonella II, group O:38 (organism)','404368009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404369001','404369001','http://snomed.info/sct','Salmonella IIIa, group O:38 (organism)','404369001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404370000','404370000','http://snomed.info/sct','Salmonella IIIb, group O:38 (organism)','404370000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404371001','404371001','http://snomed.info/sct','Salmonella IV, group O:38 (organism)','404371001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404372008','404372008','http://snomed.info/sct','Salmonella IIIb 38:(k):1,5,7 (organism)','404372008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404373003','404373003','http://snomed.info/sct','Salmonella IIIb 38:(k):z (organism)','404373003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404374009','404374009','http://snomed.info/sct','Salmonella IIIb 38:(k):z35:(z56) (organism)','404374009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404375005','404375005','http://snomed.info/sct','Salmonella IIIb 38:(k):z54 (organism)','404375005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404376006','404376006','http://snomed.info/sct','Salmonella IIIb 38:(k):z55 (organism)','404376006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404377002','404377002','http://snomed.info/sct','Salmonella IIIa 38:g,z51:- (organism)','404377002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404378007','404378007','http://snomed.info/sct','Salmonella IIIb 38:i:z53 (organism)','404378007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404379004','404379004','http://snomed.info/sct','Salmonella IIIb 38:k:z (organism)','404379004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404380001','404380001','http://snomed.info/sct','Salmonella IIIb 38:k:z53 (organism)','404380001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404381002','404381002','http://snomed.info/sct','Salmonella IIIb 38:l,v:z (organism)','404381002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404382009','404382009','http://snomed.info/sct','Salmonella IIIb 38:l,v:z35 (organism)','404382009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404383004','404383004','http://snomed.info/sct','Salmonella IIIb 38:l,v:z35:[z54] (organism)','404383004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404384005','404384005','http://snomed.info/sct','Salmonella IIIb 38:r:1,5,7 (organism)','404384005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404385006','404385006','http://snomed.info/sct','Salmonella IIIb 38:r:z35 (organism)','404385006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404387003','404387003','http://snomed.info/sct','Salmonella IIIb 38:z10:z (organism)','404387003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404388008','404388008','http://snomed.info/sct','Salmonella IIIb 38:z10:z53 (organism)','404388008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404389000','404389000','http://snomed.info/sct','Salmonella IIIb 38:z52:z35 (organism)','404389000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404390009','404390009','http://snomed.info/sct','Salmonella IIIb 38:z52:z53 (organism)','404390009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404391008','404391008','http://snomed.info/sct','Salmonella group O:39 (organism)','404391008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404392001','404392001','http://snomed.info/sct','Salmonella I, group O:39 (organism)','404392001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404393006','404393006','http://snomed.info/sct','Salmonella II, group O:39 (organism)','404393006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404394000','404394000','http://snomed.info/sct','Salmonella group O:40 (organism)','404394000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404395004','404395004','http://snomed.info/sct','Salmonella I, group O:40 (organism)','404395004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404396003','404396003','http://snomed.info/sct','Salmonella II, group O:40 (organism)','404396003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404397007','404397007','http://snomed.info/sct','Salmonella IIIa, group O:40 (organism)','404397007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404398002','404398002','http://snomed.info/sct','Salmonella IIIb, group O:40 (organism)','404398002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404399005','404399005','http://snomed.info/sct','Salmonella IV, group O:40 (organism)','404399005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404400003','404400003','http://snomed.info/sct','Salmonella V, group O:40 (organism)','404400003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404401004','404401004','http://snomed.info/sct','Salmonella IIIb, 40:g,z51:e,n,x,z15 (organism)','404401004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404402006','404402006','http://snomed.info/sct','Salmonella IIIb 40:i:1,5,7 (organism)','404402006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404403001','404403001','http://snomed.info/sct','Salmonella IIIb 40:k:z:z57 (organism)','404403001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404404007','404404007','http://snomed.info/sct','Salmonella IIIb 40:k:z53 (organism)','404404007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404405008','404405008','http://snomed.info/sct','Salmonella IIIb 40:l,v:z (organism)','404405008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404406009','404406009','http://snomed.info/sct','Salmonella IIIb 40:l,v:z53 (organism)','404406009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404407000','404407000','http://snomed.info/sct','Salmonella IIIb 40:z10:z35 (organism)','404407000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404408005','404408005','http://snomed.info/sct','Salmonella IIIa 40:z29:- (organism)','404408005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404409002','404409002','http://snomed.info/sct','Salmonella IIIa 40:z36:- (organism)','404409002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404410007','404410007','http://snomed.info/sct','Salmonella IIIa 40:z4,z23:- (organism)','404410007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404411006','404411006','http://snomed.info/sct','Salmonella IV 40:z4,z32:- (organism)','404411006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404412004','404412004','http://snomed.info/sct','Salmonella IIIa 40:z4,z32:- (organism)','404412004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404413009','404413009','http://snomed.info/sct','Salmonella group O:41 (organism)','404413009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404414003','404414003','http://snomed.info/sct','Salmonella I, group O:41 (organism)','404414003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404415002','404415002','http://snomed.info/sct','Salmonella II, group O:41 (organism)','404415002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404416001','404416001','http://snomed.info/sct','Salmonella IIIa, group O:41 (organism)','404416001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404417005','404417005','http://snomed.info/sct','Salmonella IIIb, group O:41 (organism)','404417005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404418000','404418000','http://snomed.info/sct','Salmonella IV, group O:41 (organism)','404418000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404419008','404419008','http://snomed.info/sct','Salmonella VI, group O:41 (organism)','404419008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404420002','404420002','http://snomed.info/sct','Salmonella II 41:z10:z6 (organism)','404420002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404421003','404421003','http://snomed.info/sct','Salmonella IIIb 41:(k):z35 (organism)','404421003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404422005','404422005','http://snomed.info/sct','Salmonella IIIb 41:c:e,n,x,z15 (organism)','404422005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404423000','404423000','http://snomed.info/sct','Salmonella IIIa 41:g,z51:- (organism)','404423000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404424006','404424006','http://snomed.info/sct','Salmonella IIIa 41:z29:- (organism)','404424006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404425007','404425007','http://snomed.info/sct','Salmonella IIIa 41:z36:- (organism)','404425007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404426008','404426008','http://snomed.info/sct','Salmonella IIIa 41:z4,z23,z32:- (organism)','404426008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404427004','404427004','http://snomed.info/sct','Salmonella IIIa 41:z4,z23:- (organism)','404427004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404428009','404428009','http://snomed.info/sct','Salmonella IIIa 41:z4,z24:- (organism)','404428009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404429001','404429001','http://snomed.info/sct','Salmonella IIIa 41:z4,z32:- (organism)','404429001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404430006','404430006','http://snomed.info/sct','Salmonella group O:42 (organism)','404430006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404431005','404431005','http://snomed.info/sct','Salmonella I, group O:42 (organism)','404431005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404432003','404432003','http://snomed.info/sct','Salmonella II, group O:42 (organism)','404432003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404433008','404433008','http://snomed.info/sct','Salmonella IIIa, group O:42 (organism)','404433008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404434002','404434002','http://snomed.info/sct','Salmonella IIIb, group O:42 (organism)','404434002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404435001','404435001','http://snomed.info/sct','Salmonella IV, group O:42 (organism)','404435001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404436000','404436000','http://snomed.info/sct','Salmonella Melbourne (organism)','404436000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404437009','404437009','http://snomed.info/sct','Salmonella IIIb 42:(k):z35 (organism)','404437009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404438004','404438004','http://snomed.info/sct','Salmonella IIIa 42:g,z51:- (organism)','404438004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404439007','404439007','http://snomed.info/sct','Salmonella IIIb 42:k:z (organism)','404439007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404440009','404440009','http://snomed.info/sct','Salmonella IIIb 42:l,v:1,5,7 (organism)','404440009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404441008','404441008','http://snomed.info/sct','Salmonella IIIb 42:l,v:e,n,x,z15 (organism)','404441008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404442001','404442001','http://snomed.info/sct','Salmonella IIIb 42:l,v:z (organism)','404442001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404443006','404443006','http://snomed.info/sct','Salmonella IIIb 42:l,v:z53 (organism)','404443006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404444000','404444000','http://snomed.info/sct','Salmonella IIIa 42:r:- (organism)','404444000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404445004','404445004','http://snomed.info/sct','Salmonella IIIb 42:r:z (organism)','404445004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404446003','404446003','http://snomed.info/sct','Salmonella IIIb 42:r:z53 (organism)','404446003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404447007','404447007','http://snomed.info/sct','Salmonella IIIb 42:z10:z (organism)','404447007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404448002','404448002','http://snomed.info/sct','Salmonella IIIb 42:z10:z35 (organism)','404448002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404449005','404449005','http://snomed.info/sct','Salmonella IIIa 42:z4,z23:- (organism)','404449005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404450005','404450005','http://snomed.info/sct','Salmonella IIIa 42:z4,z24:- (organism)','404450005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404451009','404451009','http://snomed.info/sct','Salmonella IIIb 42:z52:z (organism)','404451009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404452002','404452002','http://snomed.info/sct','Salmonella group O:43 (organism)','404452002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404453007','404453007','http://snomed.info/sct','Salmonella I, group O:43 (organism)','404453007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404454001','404454001','http://snomed.info/sct','Salmonella II, group O:43 (organism)','404454001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404455000','404455000','http://snomed.info/sct','Salmonella IIIa, group O:43 (organism)','404455000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404456004','404456004','http://snomed.info/sct','Salmonella IIIb, group O:43 (organism)','404456004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404457008','404457008','http://snomed.info/sct','Salmonella IV, group O:43 (organism)','404457008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404458003','404458003','http://snomed.info/sct','Salmonella IIIb 43:k:z (organism)','404458003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404459006','404459006','http://snomed.info/sct','Salmonella IIIb 43:l,v:z53 (organism)','404459006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404460001','404460001','http://snomed.info/sct','Salmonella IIIb 43:r:e,n,x,z15 (organism)','404460001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404461002','404461002','http://snomed.info/sct','Salmonella IIIb 43:r:z (organism)','404461002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404462009','404462009','http://snomed.info/sct','Salmonella IIIb 43:r:z53 (organism)','404462009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404463004','404463004','http://snomed.info/sct','Salmonella IIIa 43:z36:- (organism)','404463004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404464005','404464005','http://snomed.info/sct','Salmonella IIIa 43:z4,z23:- (organism)','404464005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404465006','404465006','http://snomed.info/sct','Salmonella IIIb 43:z52:z53 (organism)','404465006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404466007','404466007','http://snomed.info/sct','Salmonella IV 43:z29:- (organism)','404466007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404467003','404467003','http://snomed.info/sct','Salmonella group O:44 (organism)','404467003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404468008','404468008','http://snomed.info/sct','Salmonella I, group O:44 (organism)','404468008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404469000','404469000','http://snomed.info/sct','Salmonella II, group O:44 (organism)','404469000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404470004','404470004','http://snomed.info/sct','Salmonella IIIa, group O:44 (organism)','404470004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404471000','404471000','http://snomed.info/sct','Salmonella IIIb, group O:44 (organism)','404471000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404472007','404472007','http://snomed.info/sct','Salmonella IV, group O:44 (organism)','404472007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404473002','404473002','http://snomed.info/sct','Salmonella V, group O:44 (organism)','404473002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404474008','404474008','http://snomed.info/sct','Salmonella IIIa 44:z4,z23,z32:- (organism)','404474008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404475009','404475009','http://snomed.info/sct','Salmonella IIIa 44:z4,z24:- (organism)','404475009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404476005','404476005','http://snomed.info/sct','Salmonella IIIa 44:z4,z32:- (organism)','404476005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404477001','404477001','http://snomed.info/sct','Salmonella II 44:z4,z23:- (organism)','404477001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404478006','404478006','http://snomed.info/sct','Salmonella IIIa 44:z4,z23:- (organism)','404478006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404479003','404479003','http://snomed.info/sct','Salmonella IV 44:z4,z23:- (organism)','404479003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404480000','404480000','http://snomed.info/sct','Salmonella Kua (organism)','404480000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404481001','404481001','http://snomed.info/sct','Salmonella Zinder (organism)','404481001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404482008','404482008','http://snomed.info/sct','Salmonella group O:45 (organism)','404482008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404483003','404483003','http://snomed.info/sct','Salmonella I, group O:45 (organism)','404483003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404484009','404484009','http://snomed.info/sct','Salmonella II, group O:45 (organism)','404484009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404485005','404485005','http://snomed.info/sct','Salmonella IIIa, group O:45 (organism)','404485005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404486006','404486006','http://snomed.info/sct','Salmonella IV, group O:45 (organism)','404486006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404487002','404487002','http://snomed.info/sct','Salmonella VI, group O:45 (organism)','404487002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404488007','404488007','http://snomed.info/sct','Salmonella IIIa 45:z4,z24:- (organism)','404488007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404489004','404489004','http://snomed.info/sct','Salmonella IIIa 45:z4,z32:- (organism)','404489004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404490008','404490008','http://snomed.info/sct','Salmonella group O:47 (organism)','404490008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404491007','404491007','http://snomed.info/sct','Salmonella I, group O:47 (organism)','404491007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404492000','404492000','http://snomed.info/sct','Salmonella II, group O:47 (organism)','404492000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404493005','404493005','http://snomed.info/sct','Salmonella IIIa, group O:47 (organism)','404493005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404494004','404494004','http://snomed.info/sct','Salmonella IIIb, group O:47 (organism)','404494004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404495003','404495003','http://snomed.info/sct','Salmonella IV, group O:47 (organism)','404495003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404528006','404528006','http://snomed.info/sct','Salmonella IIIb 47:c:1,5,7 (organism)','404528006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404529003','404529003','http://snomed.info/sct','Salmonella IIIb 47:c:e,n,x,z15:(z15) (organism)','404529003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404530008','404530008','http://snomed.info/sct','Salmonella IIIb 47:c:z (organism)','404530008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404531007','404531007','http://snomed.info/sct','Salmonella IIIb 47:c:z35 (organism)','404531007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404532000','404532000','http://snomed.info/sct','Salmonella IIIb 47:i:e,n,x,z15 (organism)','404532000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404533005','404533005','http://snomed.info/sct','Salmonella IIIb 47:i:z (organism)','404533005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404534004','404534004','http://snomed.info/sct','Salmonella IIIb 47:i:z35 (organism)','404534004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404535003','404535003','http://snomed.info/sct','Salmonella IIIb 47:i:z53:(z57) (organism)','404535003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404536002','404536002','http://snomed.info/sct','Salmonella IIIb 47:k:1,5,7 (organism)','404536002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404537006','404537006','http://snomed.info/sct','Salmonella IIIb 47:k:e,n,x,z15 (organism)','404537006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404538001','404538001','http://snomed.info/sct','Salmonella IIIb 47:k:z (organism)','404538001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404539009','404539009','http://snomed.info/sct','Salmonella IIIb 47:k:z35 (organism)','404539009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404540006','404540006','http://snomed.info/sct','Salmonella IIIb 47:k:z53 (organism)','404540006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404541005','404541005','http://snomed.info/sct','Salmonella IIIb 47:l,v:1,5,(7) (organism)','404541005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404542003','404542003','http://snomed.info/sct','Salmonella IIIb 47:l,v:e,n,x,z15 (organism)','404542003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404543008','404543008','http://snomed.info/sct','Salmonella IIIb47:l,v:z35 (organism)','404543008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404544002','404544002','http://snomed.info/sct','Salmonella IIIb 47:l,v:z53 (organism)','404544002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404545001','404545001','http://snomed.info/sct','Salmonella IIIb 47:l,v:z57 (organism)','404545001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404546000','404546000','http://snomed.info/sct','Salmonella IIIa 47:r:- (organism)','404546000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404547009','404547009','http://snomed.info/sct','Salmonella IIIb 47:r:1,5,7 (organism)','404547009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404548004','404548004','http://snomed.info/sct','Salmonella IIIb 47:r:z (organism)','404548004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404549007','404549007','http://snomed.info/sct','Salmonella IIIb 47:r:z35 (organism)','404549007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404550007','404550007','http://snomed.info/sct','Salmonella IIIb 47:r:z53:(z60) (organism)','404550007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404551006','404551006','http://snomed.info/sct','Salmonella IIIb 47:z10:1,5,7 (organism)','404551006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404552004','404552004','http://snomed.info/sct','Salmonella IIIb 47:z10:z (organism)','404552004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404553009','404553009','http://snomed.info/sct','Salmonella IIIb 47:z10:z35 (organism)','404553009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404554003','404554003','http://snomed.info/sct','Salmonella IIIb 47:z52:1,5,7 (organism)','404554003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404555002','404555002','http://snomed.info/sct','Salmonella IIIb 47:z52:e,n,x,z15 (organism)','404555002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404556001','404556001','http://snomed.info/sct','Salmonella IIIb 47:z52:z (organism)','404556001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404557005','404557005','http://snomed.info/sct','Salmonella IIIb 47:z52:z35 (organism)','404557005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404559008','404559008','http://snomed.info/sct','Salmonella group O:48 (organism)','404559008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404560003','404560003','http://snomed.info/sct','Salmonella I, group O:48 (organism)','404560003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404561004','404561004','http://snomed.info/sct','Salmonella II, group O:48 (organism)','404561004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404562006','404562006','http://snomed.info/sct','Salmonella IIIa, group O:48 (organism)','404562006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404563001','404563001','http://snomed.info/sct','Salmonella IIIb, group O:48 (organism)','404563001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404564007','404564007','http://snomed.info/sct','Salmonella IV, group O:48 (organism)','404564007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404565008','404565008','http://snomed.info/sct','Salmonella V, group O:48 (organism)','404565008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404566009','404566009','http://snomed.info/sct','Salmonella VI, group O:48 (organism)','404566009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404567000','404567000','http://snomed.info/sct','Salmonella IIIa 48:z4,z24:- (organism)','404567000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404568005','404568005','http://snomed.info/sct','Salmonella IIIb 48:(k):z53 (organism)','404568005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404569002','404569002','http://snomed.info/sct','Salmonella IIIb 48:c:z (organism)','404569002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404570001','404570001','http://snomed.info/sct','Salmonella IIIb 48:i:z (organism)','404570001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404571002','404571002','http://snomed.info/sct','Salmonella IIIb 48:i:z35:(z57) (organism)','404571002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404572009','404572009','http://snomed.info/sct','Salmonella IIIb 48:i:z53 (organism)','404572009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404573004','404573004','http://snomed.info/sct','Salmonella IIIb 48:k:z (organism)','404573004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404574005','404574005','http://snomed.info/sct','Salmonella IIIb 48:k:z35 (organism)','404574005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404575006','404575006','http://snomed.info/sct','Salmonella IIIb 48:k:z53 (organism)','404575006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404576007','404576007','http://snomed.info/sct','Salmonella IIIb 48:l,v:1,5,(7) (organism)','404576007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404577003','404577003','http://snomed.info/sct','Salmonella IIIb 48:l,v:z (organism)','404577003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404578008','404578008','http://snomed.info/sct','Salmonella IIIb 48:r:e,n,x,z15 (organism)','404578008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404579000','404579000','http://snomed.info/sct','Salmonella IIIb 48:r:z (organism)','404579000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404580002','404580002','http://snomed.info/sct','Salmonella IIIb 48:z10:e,n,x,z15 (organism)','404580002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404581003','404581003','http://snomed.info/sct','Salmonella IIIb 48:z10:z (organism)','404581003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404582005','404582005','http://snomed.info/sct','Salmonella IIIa 48:z36:- (organism)','404582005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404583000','404583000','http://snomed.info/sct','Salmonella IIIa 48:z4,z23,z32:- (organism)','404583000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404584006','404584006','http://snomed.info/sct','Salmonella IIIa 48:z4,z23:- (organism)','404584006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404585007','404585007','http://snomed.info/sct','Salmonella IIIb 48:z52:e,n,x,z15 (organism)','404585007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404586008','404586008','http://snomed.info/sct','Salmonella IIIb 48:z52:z (organism)','404586008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404587004','404587004','http://snomed.info/sct','Salmonella IIIa 48:g,z51:- (organism)','404587004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404588009','404588009','http://snomed.info/sct','Salmonella group O:50 (organism)','404588009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404589001','404589001','http://snomed.info/sct','Salmonella I, group O:50 (organism)','404589001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404590005','404590005','http://snomed.info/sct','Salmonella II, group O:50 (organism)','404590005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404591009','404591009','http://snomed.info/sct','Salmonella IIIa, group O:50 (organism)','404591009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404592002','404592002','http://snomed.info/sct','Salmonella IIIb, group O:50 (organism)','404592002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404593007','404593007','http://snomed.info/sct','Salmonella IV, group O:50 (organism)','404593007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404594001','404594001','http://snomed.info/sct','Salmonella VI, group O:50 (organism)','404594001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404595000','404595000','http://snomed.info/sct','Salmonella II 50:m,t:z6:z42 (organism)','404595000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404596004','404596004','http://snomed.info/sct','Salmonella II 50:z42:1,7 (organism)','404596004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404597008','404597008','http://snomed.info/sct','Salmonella II 50:z:e,n,x (organism)','404597008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404598003','404598003','http://snomed.info/sct','Salmonella IIIb 50:(k):z (organism)','404598003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404599006','404599006','http://snomed.info/sct','Salmonella IIIb 50:(k):z35 (organism)','404599006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404600009','404600009','http://snomed.info/sct','Salmonella IIIb 50:i:1,5,7 (organism)','404600009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404601008','404601008','http://snomed.info/sct','Salmonella IIIb 50:i:e,n,x,z15 (organism)','404601008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404602001','404602001','http://snomed.info/sct','Salmonella IIIb 50:i:z (organism)','404602001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404603006','404603006','http://snomed.info/sct','Salmonella IIIb 50:k:1,5,7 (organism)','404603006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404604000','404604000','http://snomed.info/sct','Salmonella IIIb 50:k:z (organism)','404604000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404605004','404605004','http://snomed.info/sct','Salmonella IIIb 50:k:z35 (organism)','404605004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404606003','404606003','http://snomed.info/sct','Salmonella IIIb 50:k:z53 (organism)','404606003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404607007','404607007','http://snomed.info/sct','Salmonella IIIb 50:l,v:e,n,x,z15 (organism)','404607007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404608002','404608002','http://snomed.info/sct','Salmonella IIIb 50:l,v:z (organism)','404608002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404609005','404609005','http://snomed.info/sct','Salmonella IIIb 50:l,v:z35 (organism)','404609005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404610000','404610000','http://snomed.info/sct','Salmonella IIIb 50:r:1,5,(7) (organism)','404610000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404611001','404611001','http://snomed.info/sct','Salmonella IIIb 50:r:e,n,x,z15 (organism)','404611001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404612008','404612008','http://snomed.info/sct','Salmonella IIIb 50:r:z (organism)','404612008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404613003','404613003','http://snomed.info/sct','Salmonella IIIb 50:r:z35 (organism)','404613003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404614009','404614009','http://snomed.info/sct','Salmonella IIIb 50:r:z53 (organism)','404614009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404615005','404615005','http://snomed.info/sct','Salmonella IIIb 50:z10:z53 (organism)','404615005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404617002','404617002','http://snomed.info/sct','Salmonella IIIa 50:z29:- (organism)','404617002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404618007','404618007','http://snomed.info/sct','Salmonella IIIa 50:z36:- (organism)','404618007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404619004','404619004','http://snomed.info/sct','Salmonella IIIa 50:z4,z23,z32:- (organism)','404619004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404620005','404620005','http://snomed.info/sct','Salmonella IIIb 50:z52:1,5,7 (organism)','404620005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404622002','404622002','http://snomed.info/sct','Salmonella IIIb 50:z52:z35 (organism)','404622002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404623007','404623007','http://snomed.info/sct','Salmonella IV 50:z4,z23:- (organism)','404623007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_404624001','404624001','http://snomed.info/sct','Salmonella IIIa 50:z4,z23:- (organism)','404624001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_40465000','40465000','http://snomed.info/sct','Salmonella Surat (organism)','40465000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_40618004','40618004','http://snomed.info/sct','Salmonella Visby (organism)','40618004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_40637008','40637008','http://snomed.info/sct','Salmonella Ontario (organism)','40637008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_40645003','40645003','http://snomed.info/sct','Salmonella Louisiana (organism)','40645003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_406478008','406478008','http://snomed.info/sct','Provisional shigella 3065-93 (organism)','406478008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_406479000','406479000','http://snomed.info/sct','Shigella dysenteriae strain 96-3162 (organism)','406479000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_406480002','406480002','http://snomed.info/sct','Shigella flexneri provisional strain 88-893 (organism)','406480002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_406481003','406481003','http://snomed.info/sct','Shigella flexneri strain 89-141 (organism)','406481003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_406482005','406482005','http://snomed.info/sct','Shigella dysenteriae strain 93-119 (organism)','406482005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_406483000','406483000','http://snomed.info/sct','Shigella dysenteriae strain 204/96 (organism)','406483000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_406484006','406484006','http://snomed.info/sct','Shigella dysenteriae strain 96-265 (organism)','406484006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_406485007','406485007','http://snomed.info/sct','Provisional shigella E28938 (organism)','406485007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_406486008','406486008','http://snomed.info/sct','Shigella dysenteriae strain E670/74 (organism)','406486008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_406487004','406487004','http://snomed.info/sct','Shigella flexneri serovar 1c strain Y394 (organism)','406487004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_406488009','406488009','http://snomed.info/sct','Shigella boydii 16 (organism)','406488009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_406489001','406489001','http://snomed.info/sct','Shigella boydii 17 (organism)','406489001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_406490005','406490005','http://snomed.info/sct','Shigella boydii 18 (organism)','406490005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_406491009','406491009','http://snomed.info/sct','Shigella boydii serotype 19 (organism)','406491009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_406492002','406492002','http://snomed.info/sct','Shigella boydii serotype 20 (organism)','406492002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_406493007','406493007','http://snomed.info/sct','Shigella boydii serotype undetermined (Subgroup C) (organism)','406493007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_406494001','406494001','http://snomed.info/sct','Shigella dysenteriae 11 (organism)','406494001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_406495000','406495000','http://snomed.info/sct','Shigella dysenteriae 12 (organism)','406495000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_406496004','406496004','http://snomed.info/sct','Shigella dysenteriae 13 (organism)','406496004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_406497008','406497008','http://snomed.info/sct','Shigella dysenteriae 15 (organism)','406497008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_406498003','406498003','http://snomed.info/sct','Shigella dysenteriae 14 (organism)','406498003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_406500002','406500002','http://snomed.info/sct','Shigella flexneri 4c [IV:7,8] (organism)','406500002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_406501003','406501003','http://snomed.info/sct','Shigella flexneri 5a [V:3,4] (organism)','406501003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_406502005','406502005','http://snomed.info/sct','Shigella flexneri 5b [V:7,8] (organism)','406502005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_406503000','406503000','http://snomed.info/sct','Shigella flexneri serotype undetermined (Subgroup B) (organism)','406503000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_406504006','406504006','http://snomed.info/sct','Shigella sonnei (Subgroup D) (organism)','406504006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_406627005','406627005','http://snomed.info/sct','Enterotoxigenic Escherichia coli serogroup O6 (organism)','406627005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_406628000','406628000','http://snomed.info/sct','Enterotoxigenic Escherichia coli, serotype O6:nonmotile (organism)','406628000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_406629008','406629008','http://snomed.info/sct','Enterotoxigenic Escherichia coli, serotype O6:H16 (organism)','406629008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_40681000','40681000','http://snomed.info/sct','Salmonella Goeteborg (organism)','40681000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_40685009','40685009','http://snomed.info/sct','Salmonella Demerara (organism)','40685009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_40697005','40697005','http://snomed.info/sct','Salmonella Berta (organism)','40697005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_40703006','40703006','http://snomed.info/sct','Salmonella Geraldton (organism)','40703006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407156003','407156003','http://snomed.info/sct','Enterotoxigenic Escherichia coli, serotype O8 (organism)','407156003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407157007','407157007','http://snomed.info/sct','Enterotoxigenic Escherichia coli, serotype O8:H9 (organism)','407157007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407158002','407158002','http://snomed.info/sct','Enteropathogenic Escherichia coli, serotype O111:nonmotile (organism)','407158002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407159005','407159005','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O111:nonmotile (organism)','407159005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407160000','407160000','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O111:H2 (organism)','407160000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407161001','407161001','http://snomed.info/sct','Enteropathogenic Escherichia coli, serotype O111:H2 (organism)','407161001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407162008','407162008','http://snomed.info/sct','Escherichia coli serogroup O15 (organism)','407162008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407163003','407163003','http://snomed.info/sct','Enterotoxigenic Escherichia coli, serotype O15:H11 (organism)','407163003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407164009','407164009','http://snomed.info/sct','Escherichia coli serogroup O20 (organism)','407164009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407165005','407165005','http://snomed.info/sct','Enterotoxigenic Escherichia coli, serotype O20:nonmotile (organism)','407165005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407166006','407166006','http://snomed.info/sct','Escherichia coli serogroup O157 (organism)','407166006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407167002','407167002','http://snomed.info/sct','Escherichia coli serogroup O25 (organism)','407167002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407168007','407168007','http://snomed.info/sct','Enterotoxigenic Escherichia coli, serotype O25:nonmotile (organism)','407168007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407169004','407169004','http://snomed.info/sct','Enterotoxigenic Escherichia coli, serotype O25:H42 (organism)','407169004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407170003','407170003','http://snomed.info/sct','Escherichia coli serogroup O27 (organism)','407170003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407171004','407171004','http://snomed.info/sct','Enterotoxigenic Escherichia coli, serotype O27:nonmotile (organism)','407171004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407172006','407172006','http://snomed.info/sct','Enterotoxigenic Escherichia coli, serotype O27:H7 (organism)','407172006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407173001','407173001','http://snomed.info/sct','Enterotoxigenic Escherichia coli, serotype O27:H20 (organism)','407173001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407174007','407174007','http://snomed.info/sct','Escherichia coli serogroup O49 (organism)','407174007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407175008','407175008','http://snomed.info/sct','Enterotoxigenic Escherichia coli, serotype O49:nonmotile (organism)','407175008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407176009','407176009','http://snomed.info/sct','Escherichia coli serogroup O63 (organism)','407176009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407177000','407177000','http://snomed.info/sct','Enterotoxigenic Escherichia coli, serotype O63:H12 (organism)','407177000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407178005','407178005','http://snomed.info/sct','Escherichia coli serogroup O78 (organism)','407178005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407179002','407179002','http://snomed.info/sct','Enterotoxigenic Escherichia coli, serotype O78:H11 (organism)','407179002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407180004','407180004','http://snomed.info/sct','Enterotoxigenic Escherichia coli, serotype O78:H12 (organism)','407180004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407181000','407181000','http://snomed.info/sct','Escherichia coli serogroup O128 (organism)','407181000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407182007','407182007','http://snomed.info/sct','Enterotoxigenic Escherichia coli, serotype O128:H7 (organism)','407182007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407183002','407183002','http://snomed.info/sct','Escherichia coli serogroup O148 (organism)','407183002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407184008','407184008','http://snomed.info/sct','Enterotoxigenic Escherichia coli, serotype O148:H28 (organism)','407184008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407185009','407185009','http://snomed.info/sct','Escherichia coli serogroup O153 (organism)','407185009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407186005','407186005','http://snomed.info/sct','Enterotoxigenic Escherichia coli, serotype O153:H45 (organism)','407186005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407187001','407187001','http://snomed.info/sct','Escherichia coli serogroup O159 (organism)','407187001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407188006','407188006','http://snomed.info/sct','Enterotoxigenic Escherichia coli, serotype O159:nonmotile (organism)','407188006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407189003','407189003','http://snomed.info/sct','Enterotoxigenic Escherichia coli, serotype O159:H4 (organism)','407189003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407190007','407190007','http://snomed.info/sct','Enterotoxigenic Escherichia coli, serotype O159:H20 (organism)','407190007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407191006','407191006','http://snomed.info/sct','Escherichia coli serogroup O167 (organism)','407191006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407192004','407192004','http://snomed.info/sct','Enterotoxigenic Escherichia coli, serotype O167:H5 (organism)','407192004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407193009','407193009','http://snomed.info/sct','Escherichia coli serogroup O169 (organism)','407193009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407194003','407194003','http://snomed.info/sct','Enterotoxigenic Escherichia coli, serotype O169:H41 (organism)','407194003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407195002','407195002','http://snomed.info/sct','Escherichia coli serogroup O55 (organism)','407195002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407196001','407196001','http://snomed.info/sct','Enteropathogenic Escherichia coli, serotype O55:nonmotile (organism)','407196001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407197005','407197005','http://snomed.info/sct','Enteropathogenic Escherichia coli, serotype O55:H6 (organism)','407197005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407198000','407198000','http://snomed.info/sct','Enteropathogenic Escherichia coli, serotype O55:H7 (organism)','407198000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407199008','407199008','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O55:H7 (organism)','407199008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407200006','407200006','http://snomed.info/sct','Escherichia coli serogroup O86 (organism)','407200006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407201005','407201005','http://snomed.info/sct','Enteropathogenic Escherichia coli, serotype O86:nonmotile (organism)','407201005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407202003','407202003','http://snomed.info/sct','Enteropathogenic Escherichia coli, serotype O86:H34 (organism)','407202003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407203008','407203008','http://snomed.info/sct','Enteropathogenic Escherichia coli, serotype O111:H12 (organism)','407203008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407204002','407204002','http://snomed.info/sct','Enteropathogenic Escherichia coli, serotype O111:H21 (organism)','407204002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407205001','407205001','http://snomed.info/sct','Escherichia coli serogroup O114 (organism)','407205001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407206000','407206000','http://snomed.info/sct','Enteropathogenic Escherichia coli, serotype O114:nonmotile (organism)','407206000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407207009','407207009','http://snomed.info/sct','Enteropathogenic Escherichia coli, serotype O114:H2 (organism)','407207009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407208004','407208004','http://snomed.info/sct','Escherichia coli serogroup O119 (organism)','407208004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407209007','407209007','http://snomed.info/sct','Enteropathogenic Escherichia coli, serotype O119:H6 (organism)','407209007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407210002','407210002','http://snomed.info/sct','Escherichia coli serogroup O125 (organism)','407210002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407211003','407211003','http://snomed.info/sct','Enteropathogenic Escherichia coli, serotype O125:H21 (organism)','407211003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407212005','407212005','http://snomed.info/sct','Escherichia coli serogroup O126 (organism)','407212005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407213000','407213000','http://snomed.info/sct','Enteropathogenic Escherichia coli, serotype O126:nonmotile (organism)','407213000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407214006','407214006','http://snomed.info/sct','Enteropathogenic Escherichia coli, serotype O126:H27 (organism)','407214006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407215007','407215007','http://snomed.info/sct','Escherichia coli serogroup O127 (organism)','407215007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407216008','407216008','http://snomed.info/sct','Enteropathogenic Escherichia coli, serotype O127:nonmotile (organism)','407216008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407217004','407217004','http://snomed.info/sct','Enteropathogenic Escherichia coli, serotype O127:H6 (organism)','407217004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407218009','407218009','http://snomed.info/sct','Enteropathogenic Escherichia coli, serotype O127:H9 (organism)','407218009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407219001','407219001','http://snomed.info/sct','Enteropathogenic Escherichia coli, serotype O127:H21 (organism)','407219001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407220007','407220007','http://snomed.info/sct','Enteropathogenic Escherichia coli, serotype O128:H12 (organism)','407220007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407221006','407221006','http://snomed.info/sct','Enteropathogenic Escherichia coli, serotype O128:H2 (organism)','407221006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407222004','407222004','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O128:H2 (organism)','407222004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407223009','407223009','http://snomed.info/sct','Escherichia coli serogroup O142 (organism)','407223009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407224003','407224003','http://snomed.info/sct','Enteropathogenic Escherichia coli, serotype O142:H6 (organism)','407224003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407225002','407225002','http://snomed.info/sct','Enteropathogenic Escherichia coli, serotype O157:H45 (organism)','407225002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407226001','407226001','http://snomed.info/sct','Escherichia coli serogroup O28 (organism)','407226001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407227005','407227005','http://snomed.info/sct','Enteroinvasive Escherichia coli, serotype O28:nonmotile (organism)','407227005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407228000','407228000','http://snomed.info/sct','Escherichia coli serogroup O29 (organism)','407228000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407229008','407229008','http://snomed.info/sct','Enteroinvasive Escherichia coli, serotype O29:nonmotile (organism)','407229008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407230003','407230003','http://snomed.info/sct','Escherichia coli serogroup O112 (organism)','407230003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407231004','407231004','http://snomed.info/sct','Enteroinvasive Escherichia coli, serotype O112:nonmotile (organism)','407231004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407232006','407232006','http://snomed.info/sct','Escherichia coli serogroup O124 (organism)','407232006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407233001','407233001','http://snomed.info/sct','Enteroinvasive Escherichia coli, serotype O124:nonmotile (organism)','407233001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407234007','407234007','http://snomed.info/sct','Enteroinvasive Escherichia coli, serotype O124:H7 (organism)','407234007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407235008','407235008','http://snomed.info/sct','Enteroinvasive Escherichia coli, serotype O124:H30 (organism)','407235008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407236009','407236009','http://snomed.info/sct','Escherichia coli serogroup O136 (organism)','407236009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407237000','407237000','http://snomed.info/sct','Enteroinvasive Escherichia coli, serotype O136:nonmotile (organism)','407237000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407238005','407238005','http://snomed.info/sct','Escherichia coli serogroup O143 (organism)','407238005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407239002','407239002','http://snomed.info/sct','Enteroinvasive Escherichia coli, serotype O143:nonmotile (organism)','407239002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407240000','407240000','http://snomed.info/sct','Escherichia coli serogroup O144 (organism)','407240000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407241001','407241001','http://snomed.info/sct','Enteroinvasive Escherichia coli, serotype O144:nonmotile (organism)','407241001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407242008','407242008','http://snomed.info/sct','Escherichia coli serogroup O152 (organism)','407242008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407243003','407243003','http://snomed.info/sct','Enteroinvasive Escherichia coli, serotype O152:nonmotile (organism)','407243003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407244009','407244009','http://snomed.info/sct','Escherichia coli serogroup O164 (organism)','407244009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407245005','407245005','http://snomed.info/sct','Enteroinvasive Escherichia coli, serotype O164:nonmotile (organism)','407245005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407246006','407246006','http://snomed.info/sct','Enteroinvasive Escherichia coli, serotype O167:nonmotile (organism)','407246006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407250004','407250004','http://snomed.info/sct','Escherichia coli serogroup O1 (organism)','407250004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407251000','407251000','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O1:nonmotile (organism)','407251000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407252007','407252007','http://snomed.info/sct','Escherichia coli serogroup O2 (organism)','407252007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407253002','407253002','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O2:H6 (organism)','407253002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407254008','407254008','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O2:H7 (organism)','407254008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407255009','407255009','http://snomed.info/sct','Escherichia coli serogroup O5 (organism)','407255009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407256005','407256005','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O5:nonmotile (organism)','407256005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407257001','407257001','http://snomed.info/sct','Escherichia coli serogroup O9 (organism)','407257001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407258006','407258006','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O9:nonmotile (organism)','407258006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407259003','407259003','http://snomed.info/sct','Escherichia coli serogroup O14 (organism)','407259003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407260008','407260008','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O14:nonmotile (organism)','407260008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407261007','407261007','http://snomed.info/sct','Escherichia coli serogroup O22 (organism)','407261007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407262000','407262000','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O22:H5 (organism)','407262000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407263005','407263005','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O22:H8 (organism)','407263005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407264004','407264004','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O26:nonmotile (organism)','407264004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407265003','407265003','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O26:H11 (organism)','407265003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407266002','407266002','http://snomed.info/sct','Escherichia coli serogroup O45 (organism)','407266002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407267006','407267006','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O45:H2 (organism)','407267006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407268001','407268001','http://snomed.info/sct','Escherichia coli serogroup O48 (organism)','407268001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407269009','407269009','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O48:H21 (organism)','407269009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407270005','407270005','http://snomed.info/sct','Escherichia coli serogroup O50 (organism)','407270005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407271009','407271009','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O50:H7 (organism)','407271009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407272002','407272002','http://snomed.info/sct','Escherichia coli serogroup O79 (organism)','407272002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407273007','407273007','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O79:H7 (organism)','407273007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407274001','407274001','http://snomed.info/sct','Escherichia coli serogroup O83 (organism)','407274001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407275000','407275000','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O83:H1 (organism)','407275000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407276004','407276004','http://snomed.info/sct','Escherichia coli serogroup O91 (organism)','407276004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407277008','407277008','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O91:nonmotile (organism)','407277008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407278003','407278003','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O91:H10 (organism)','407278003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407279006','407279006','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O91:H21 (organism)','407279006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407280009','407280009','http://snomed.info/sct','Escherichia coli serogroup O103 (organism)','407280009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407281008','407281008','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O103:H2 (organism)','407281008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407282001','407282001','http://snomed.info/sct','Escherichia coli serogroup O104 (organism)','407282001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407283006','407283006','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O104:nonmotile (organism)','407283006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407284000','407284000','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O104:H21 (organism)','407284000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407285004','407285004','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O111:H8 (organism)','407285004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407286003','407286003','http://snomed.info/sct','Escherichia coli serogroup O113 (organism)','407286003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407287007','407287007','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O113:H21 (organism)','407287007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407288002','407288002','http://snomed.info/sct','Escherichia coli serogroup O118 (organism)','407288002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407289005','407289005','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O118:H2 (organism)','407289005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407290001','407290001','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O118:H12 (organism)','407290001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407291002','407291002','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O118:H16 (organism)','407291002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407292009','407292009','http://snomed.info/sct','Escherichia coli serogroup O121 (organism)','407292009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407293004','407293004','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O121:H19 (organism)','407293004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407294005','407294005','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O128:nonmotile (organism)','407294005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407295006','407295006','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O128:H45 (organism)','407295006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407296007','407296007','http://snomed.info/sct','Escherichia coli serogroup O137 (organism)','407296007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407297003','407297003','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O137:H41 (organism)','407297003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407298008','407298008','http://snomed.info/sct','Escherichia coli serogroup O145 (organism)','407298008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407299000','407299000','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O145:nonmotile (organism)','407299000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407300008','407300008','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O153:H2 (organism)','407300008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407301007','407301007','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O153:H25 (organism)','407301007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407302000','407302000','http://snomed.info/sct','Escherichia coli serogroup O163 (organism)','407302000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407303005','407303005','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O163:H19 (organism)','407303005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407304004','407304004','http://snomed.info/sct','Escherichia coli serogroup O165 (organism)','407304004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407305003','407305003','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O165:nonmotile (organism)','407305003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407306002','407306002','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O165:H25 (organism)','407306002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407307006','407307006','http://snomed.info/sct','Escherichia coli serogroup O172 (organism)','407307006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407308001','407308001','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O172:nonmotile (organism)','407308001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407309009','407309009','http://snomed.info/sct','Escherichia coli serogroup Orough (organism)','407309009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_407310004','407310004','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O rough:H9 (organism)','407310004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_40746009','40746009','http://snomed.info/sct','Salmonella IV Roterberg (organism)','40746009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_40821004','40821004','http://snomed.info/sct','Salmonella Nchanga (organism)','40821004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_40886007','40886007','http://snomed.info/sct','Klebsiella oxytoca (organism)','40886007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_409800005','409800005','http://snomed.info/sct','Extended spectrum beta-lactamase producing Escherichia coli (organism)','409800005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_409801009','409801009','http://snomed.info/sct','Extended spectrum beta-lactamase producing Klebsiella pneumoniae (organism)','409801009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_40998003','40998003','http://snomed.info/sct','Salmonella Etterbeek (organism)','40998003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_41176000','41176000','http://snomed.info/sct','Salmonella Nigeria (organism)','41176000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_41227004','41227004','http://snomed.info/sct','Salmonella Tshiongwe (organism)','41227004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_41331008','41331008','http://snomed.info/sct','Salmonella Schleissheim (organism)','41331008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_413793007','413793007','http://snomed.info/sct','Centers for Disease Control and Prevention Enteric Group 58 (organism)','413793007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_414097009','414097009','http://snomed.info/sct','Enteroaggregative Escherichia coli Serotype O111:H21 (organism)','414097009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_414098004','414098004','http://snomed.info/sct','Enteroaggregative Escherichia coli Serotype O125 (organism)','414098004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_414099007','414099007','http://snomed.info/sct','Enteroaggregative Escherichia coli Serotype O126:H27 (organism)','414099007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_414100004','414100004','http://snomed.info/sct','Enteroaggregative Escherichia coli Serotype O44:H18 (organism)','414100004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_414102007','414102007','http://snomed.info/sct','Enterobacter cloacae complex (organism)','414102007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_414103002','414103002','http://snomed.info/sct','Enteropathogenic Escherichia coli, serotype O44 (organism)','414103002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_414132004','414132004','http://snomed.info/sct','Escherichia coli not O157 (organism)','414132004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_4145004','4145004','http://snomed.info/sct','Salmonella Ohlstedt (organism)','4145004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_41467000','41467000','http://snomed.info/sct','Salmonella Sada (organism)','41467000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_41533007','41533007','http://snomed.info/sct','Salmonella Israel (organism)','41533007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_416057009','416057009','http://snomed.info/sct','Salmonella Choleraesuis var. Decatur (organism)','416057009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_416096003','416096003','http://snomed.info/sct','Raoultella terrigena (organism)','416096003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_416156003','416156003','http://snomed.info/sct','Kluyvera georgiana (organism)','416156003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_416229008','416229008','http://snomed.info/sct','Kosakonia cowanii (organism)','416229008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_416264004','416264004','http://snomed.info/sct','Raoultella planticola (organism)','416264004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_416444007','416444007','http://snomed.info/sct','Buttiauxella warmboldiae (organism)','416444007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_416530004','416530004','http://snomed.info/sct','Escherichia coli O4:K12:H5 (organism)','416530004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_41655009','41655009','http://snomed.info/sct','Salmonella II 6,14:k:(e,n,x) (organism)','41655009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_416641008','416641008','http://snomed.info/sct','Salmonella IIIa 53:z4,z24:- (organism)','416641008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_416740004','416740004','http://snomed.info/sct','Escherichia coli O1:K1:H7 (organism)','416740004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_41677008','41677008','http://snomed.info/sct','Salmonella Fufu (organism)','41677008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_416812001','416812001','http://snomed.info/sct','Escherichia coli O:K:H group (organism)','416812001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_416828006','416828006','http://snomed.info/sct','Salmonella Saintemarie (organism)','416828006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_416832000','416832000','http://snomed.info/sct','Raoultella ornithinolytica (organism)','416832000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_416844002','416844002','http://snomed.info/sct','Buttiauxella brennerae (organism)','416844002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_416852004','416852004','http://snomed.info/sct','Buttiauxella gaviniae (organism)','416852004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_416989002','416989002','http://snomed.info/sct','Diffuse adherence Escherichia coli (organism)','416989002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_416990006','416990006','http://snomed.info/sct','Citrobacter gillenii (organism)','416990006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_417035007','417035007','http://snomed.info/sct','Buttiauxella izardii (organism)','417035007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_417189006','417189006','http://snomed.info/sct','Escherichia coli O6:K2:H1 (organism)','417189006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_417207000','417207000','http://snomed.info/sct','Escherichia coli, inactive (organism)','417207000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_417210007','417210007','http://snomed.info/sct','Salmonella IIIb 16:k:e,n,x,z15 (organism)','417210007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_417216001','417216001','http://snomed.info/sct','Escherichia coli O15:K52:H1 (organism)','417216001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_417443008','417443008','http://snomed.info/sct','Klebsiella granulomatis (organism)','417443008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_417454003','417454003','http://snomed.info/sct','Non-motile Salmonella (organism)','417454003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_417468005','417468005','http://snomed.info/sct','Genus Raoultella (organism)','417468005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_417520001','417520001','http://snomed.info/sct','Buttiauxella ferragutiae (organism)','417520001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_417581000','417581000','http://snomed.info/sct','Citrobacter murliniae (organism)','417581000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_417653002','417653002','http://snomed.info/sct','Salmonella Subterranea (organism)','417653002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_417719009','417719009','http://snomed.info/sct','Salmonella IIIa 53:z4,z23:- (organism)','417719009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_419388003','419388003','http://snomed.info/sct','Escherichia albertii (organism)','419388003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_42016005','42016005','http://snomed.info/sct','Salmonella Volta (organism)','42016005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_42061009','42061009','http://snomed.info/sct','Salmonella Jaffna (organism)','42061009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_421099007','421099007','http://snomed.info/sct','Genus Averyella (organism)','421099007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_421390000','421390000','http://snomed.info/sct','Averyella dalhousiensis (organism)','421390000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_42173006','42173006','http://snomed.info/sct','Salmonella Bukuru (organism)','42173006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_422953009','422953009','http://snomed.info/sct','Escherichia coli serogroup O174 (organism)','422953009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_42302007','42302007','http://snomed.info/sct','Salmonella Karamoja (organism)','42302007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_42355001','42355001','http://snomed.info/sct','Salmonella Loenga (organism)','42355001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_42391008','42391008','http://snomed.info/sct','Salmonella Vitkin (organism)','42391008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_42410007','42410007','http://snomed.info/sct','Salmonella Duisburg (organism)','42410007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_424672005','424672005','http://snomed.info/sct','Escherichia coli serogroup O178 (organism)','424672005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_42485005','42485005','http://snomed.info/sct','Salmonella Bakau (organism)','42485005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_425004001','425004001','http://snomed.info/sct','Escherichia coli serogroup O166 (organism)','425004001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_42597008','42597008','http://snomed.info/sct','Salmonella Gallen (organism)','42597008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_42614009','42614009','http://snomed.info/sct','Salmonella Uzaramo (organism)','42614009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_42615005','42615005','http://snomed.info/sct','Salmonella Toucra (organism)','42615005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_426314009','426314009','http://snomed.info/sct','Alterococcus agarolyticus (organism)','426314009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_426369007','426369007','http://snomed.info/sct','Genus Alterococcus (organism)','426369007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_42648005','42648005','http://snomed.info/sct','Salmonella Shubra (organism)','42648005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_4267007','4267007','http://snomed.info/sct','Salmonella Stourbridge (organism)','4267007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_42675003','42675003','http://snomed.info/sct','Salmonella Gustavia (organism)','42675003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_42709001','42709001','http://snomed.info/sct','Salmonella Mikawasima (organism)','42709001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_42715001','42715001','http://snomed.info/sct','Salmonella Perth (organism)','42715001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_427294000','427294000','http://snomed.info/sct','Escherichia coli serogroup O158 (organism)','427294000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_42781000','42781000','http://snomed.info/sct','Salmonella Yaounde (organism)','42781000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_4280005','4280005','http://snomed.info/sct','Edwardsiella hoshinae (organism)','4280005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_42816009','42816009','http://snomed.info/sct','Salmonella Labadi (organism)','42816009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_42921006','42921006','http://snomed.info/sct','Salmonella Mountpleasant (organism)','42921006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_42929008','42929008','http://snomed.info/sct','Genus Plesiomonas (organism)','42929008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_42971009','42971009','http://snomed.info/sct','Salmonella Dougi (organism)','42971009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_4298009','4298009','http://snomed.info/sct','Shigella sonnei (organism)','4298009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_42992009','42992009','http://snomed.info/sct','Salmonella II 1,13,23:g,m,s,t:1,5 (organism)','42992009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_43078007','43078007','http://snomed.info/sct','Salmonella Paris (organism)','43078007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_43109001','43109001','http://snomed.info/sct','Salmonella Pasing (organism)','43109001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_431095008','431095008','http://snomed.info/sct','Genus Buchnera (organism)','431095008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_4311001','4311001','http://snomed.info/sct','Salmonella Coleypark (organism)','4311001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_431272005','431272005','http://snomed.info/sct','Erwinia persicina (organism)','431272005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_431273000','431273000','http://snomed.info/sct','Erwinia papayae (organism)','431273000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_431385006','431385006','http://snomed.info/sct','Erwinia toletana (organism)','431385006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_431386007','431386007','http://snomed.info/sct','Erwinia aphidicola (organism)','431386007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_43182007','43182007','http://snomed.info/sct','Salmonella Skansen (organism)','43182007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_431976004','431976004','http://snomed.info/sct','Klebsiella variicola (organism)','431976004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_431977008','431977008','http://snomed.info/sct','Kluyvera intermedia (organism)','431977008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_432096007','432096007','http://snomed.info/sct','Escherichia coli serogroup O88 (organism)','432096007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_432735003','432735003','http://snomed.info/sct','Erwinia billingiae (organism)','432735003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_432736002','432736002','http://snomed.info/sct','Erwinia pyrifoliae (organism)','432736002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_432763001','432763001','http://snomed.info/sct','Enterobacter ludwigii (organism)','432763001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_433047006','433047006','http://snomed.info/sct','Klebsiella singaporensis (organism)','433047006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_43352009','43352009','http://snomed.info/sct','Salmonella Mathura (organism)','43352009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_433530002','433530002','http://snomed.info/sct','Buchnera aphidicola (organism)','433530002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_43409005','43409005','http://snomed.info/sct','Salmonella Massakory (organism)','43409005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_43551001','43551001','http://snomed.info/sct','Salmonella Naware (organism)','43551001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_43575001','43575001','http://snomed.info/sct','Salmonella Bahrenfeld (organism)','43575001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_43587008','43587008','http://snomed.info/sct','Salmonella Madison (organism)','43587008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_43590002','43590002','http://snomed.info/sct','Genus Leclercia (organism)','43590002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_4361005','4361005','http://snomed.info/sct','Salmonella Thompson (organism)','4361005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_43612004','43612004','http://snomed.info/sct','Shigella dysenteriae (organism)','43612004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_43637009','43637009','http://snomed.info/sct','Salmonella II 9,12:a:z39 (organism)','43637009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_43640009','43640009','http://snomed.info/sct','Salmonella Pakistan (organism)','43640009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_43662009','43662009','http://snomed.info/sct','Salmonella Tafo (organism)','43662009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_438096004','438096004','http://snomed.info/sct','Genus Saccharobacter (organism)','438096004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_43833005','43833005','http://snomed.info/sct','Salmonella Fallowfield (organism)','43833005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_43942004','43942004','http://snomed.info/sct','Salmonella Koenigstuhl (organism)','43942004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_44010000','44010000','http://snomed.info/sct','Salmonella Djakarta (organism)','44010000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_44012008','44012008','http://snomed.info/sct','Salmonella Faji (organism)','44012008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_440321008','440321008','http://snomed.info/sct','Genus Wigglesworthia (organism)','440321008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_440790000','440790000','http://snomed.info/sct','Saccharobacter fermentatus (organism)','440790000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_44109007','44109007','http://snomed.info/sct','Salmonella Diourbel (organism)','44109007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_4411000146103','4411000146103','http://snomed.info/sct','Erwinia tasmaniensis (organism)','4411000146103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_441147004','441147004','http://snomed.info/sct','Wigglesworthia glossinidia (organism)','441147004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_441713006','441713006','http://snomed.info/sct','Salmonella enterica subspecies enterica serovar 6,7:b:- (organism)','441713006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_441745001','441745001','http://snomed.info/sct','Salmonella enterica subspecies enterica serovar 4,[5],12:b:- (organism)','441745001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_441800005','441800005','http://snomed.info/sct','Salmonella enterica subspecies enterica serovar 4,[5],12:i:- (organism)','441800005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_441840004','441840004','http://snomed.info/sct','Salmonella enterica subspecies enterica serovar 4,5,12:e,h:- (organism)','441840004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_441843002','441843002','http://snomed.info/sct','Salmonella enterica subspecies enterica serovar 4,[5],12:d:- (organism)','441843002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_441853001','441853001','http://snomed.info/sct','Salmonella enterica subspecies enterica serovar 6,7:k:- (organism)','441853001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_441860007','441860007','http://snomed.info/sct','Salmonella enterica subspecies enterica serovar 9,12:l,z28:- (organism)','441860007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_441896006','441896006','http://snomed.info/sct','Salmonella enterica subspecies enterica serovar 4,5,12:b:- (organism)','441896006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_441926004','441926004','http://snomed.info/sct','Salmonella enterica subspecies enterica serovar 6,7:y:- (organism)','441926004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_441979009','441979009','http://snomed.info/sct','Salmonella enterica subspecies enterica serovar 9,12:-:1,5 (organism)','441979009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_442019004','442019004','http://snomed.info/sct','Escherichia coli serogroup O179 (organism)','442019004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_442071007','442071007','http://snomed.info/sct','Salmonella enterica subspecies enterica serovar 4,12:i:- (organism)','442071007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_442103008','442103008','http://snomed.info/sct','Salmonella enterica subspecies enterica serovar 6,7:-:1,5 (organism)','442103008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_442104002','442104002','http://snomed.info/sct','Salmonella enterica subspecies enterica serovar 3,10:-:1,6 (organism)','442104002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_442106000','442106000','http://snomed.info/sct','Salmonella enterica subspecies enterica serovar 13,23:z:- (organism)','442106000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_442109007','442109007','http://snomed.info/sct','Escherichia coli serogroup O130 (organism)','442109007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_442114006','442114006','http://snomed.info/sct','Salmonella enterica subspecies enterica serovar 6,7:-:1,2 (organism)','442114006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_442115007','442115007','http://snomed.info/sct','Salmonella enterica subspecies enterica serovar 6,7:-:e,n,z15 (organism)','442115007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_442122004','442122004','http://snomed.info/sct','Salmonella enterica subspecies enterica serovar 3,15:-:1,6 (organism)','442122004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_442153002','442153002','http://snomed.info/sct','Salmonella enterica subspecies enterica serovar 9,12:-:1,7 (organism)','442153002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_442161007','442161007','http://snomed.info/sct','Salmonella enterica subspecies enterica serovar 6,8:-:1,2 (organism)','442161007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_442282007','442282007','http://snomed.info/sct','Escherichia coli serogroup O69 (organism)','442282007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_442369002','442369002','http://snomed.info/sct','Salmonella enterica subspecies enterica serovar 4,[5],12:-:1,7 (organism)','442369002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_442455001','442455001','http://snomed.info/sct','Salmonella enterica subspecies enterica serovar 4,5,12:i:- (organism)','442455001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_443022007','443022007','http://snomed.info/sct','Escherichia coli serotype O26:H10 (organism)','443022007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_443091009','443091009','http://snomed.info/sct','Escherichia coli serogroup O84 (organism)','443091009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_443189004','443189004','http://snomed.info/sct','Enteropathogenic Escherichia coli serogroup O18 (organism)','443189004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_44451005','44451005','http://snomed.info/sct','Salmonella Roodepoort (organism)','44451005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_444664004','444664004','http://snomed.info/sct','Genus Cronobacter (organism)','444664004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_444771000124108','444771000124108','http://snomed.info/sct','Escherichia coli not producing Shiga toxin (organism)','444771000124108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_44536003','44536003','http://snomed.info/sct','Salmonella II, group O:53 (organism)','44536003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_445559002','445559002','http://snomed.info/sct','Cronobacter dublinensis (organism)','445559002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_445560007','445560007','http://snomed.info/sct','Cronobacter malonaticus (organism)','445560007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_445561006','445561006','http://snomed.info/sct','Cronobacter muytjensii (organism)','445561006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_445562004','445562004','http://snomed.info/sct','Cronobacter sakazakii (organism)','445562004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_445639005','445639005','http://snomed.info/sct','Cronobacter turicensis (organism)','445639005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_44580003','44580003','http://snomed.info/sct','Salmonella India (organism)','44580003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_44601000087107','44601000087107','http://snomed.info/sct','Carbapenemase-producing Citrobacter freundii complex (organism)','44601000087107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_44629007','44629007','http://snomed.info/sct','Salmonella II 57:g,m,s,t:z42 (organism)','44629007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_446870005','446870005','http://snomed.info/sct','Carbapenem resistant Klebsiella pneumoniae (organism)','446870005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_44768008','44768008','http://snomed.info/sct','Salmonella Putten (organism)','44768008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_44834009','44834009','http://snomed.info/sct','Salmonella Korovi (organism)','44834009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_44844006','44844006','http://snomed.info/sct','Salmonella Zerifin (organism)','44844006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_448711000124108','448711000124108','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O132 (organism)','448711000124108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_448721000124100','448721000124100','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O78 (organism)','448721000124100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_4492008','4492008','http://snomed.info/sct','Salmonella Groenekan (organism)','4492008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_44942009','44942009','http://snomed.info/sct','Salmonella Trotha (organism)','44942009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_44994006','44994006','http://snomed.info/sct','Salmonella Millesi (organism)','44994006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_450477004','450477004','http://snomed.info/sct','Escherichia coli serogroup O6 (organism)','450477004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_450478009','450478009','http://snomed.info/sct','Escherichia coli serogroup O8 (organism)','450478009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_450479001','450479001','http://snomed.info/sct','Escherichia coli serotype O104:H4 (organism)','450479001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_45054004','45054004','http://snomed.info/sct','Salmonella II 43:z29:z42 (organism)','45054004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_45091005','45091005','http://snomed.info/sct','Salmonella Enschede (organism)','45091005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_45264001','45264001','http://snomed.info/sct','Salmonella Jubilee (organism)','45264001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_45354007','45354007','http://snomed.info/sct','Leminorella richardii (organism)','45354007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_45488002','45488002','http://snomed.info/sct','Salmonella Magwa (organism)','45488002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_45512008','45512008','http://snomed.info/sct','Salmonella Hindmarsh (organism)','45512008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_45548005','45548005','http://snomed.info/sct','Salmonella Corvallis (organism)','45548005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_45578001','45578001','http://snomed.info/sct','Salmonella Tananarive (organism)','45578001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_45645001','45645001','http://snomed.info/sct','Salmonella Napoli (organism)','45645001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_45651006','45651006','http://snomed.info/sct','Salmonella Schwarzengrund (organism)','45651006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_457124003','457124003','http://snomed.info/sct','Escherichia coli serotype Orough:nonmotile (organism)','457124003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_457125002','457125002','http://snomed.info/sct','Escherichia coli serotype Orough:H8 (organism)','457125002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_457126001','457126001','http://snomed.info/sct','Escherichia coli serotype Orough:H7 (organism)','457126001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_457127005','457127005','http://snomed.info/sct','Escherichia coli serotype Orough:H49 (organism)','457127005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_457128000','457128000','http://snomed.info/sct','Escherichia coli serotype Orough:H45 (organism)','457128000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_457129008','457129008','http://snomed.info/sct','Escherichia coli serotype Orough:H34 (organism)','457129008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_457130003','457130003','http://snomed.info/sct','Escherichia coli serotype Orough:H28 (organism)','457130003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_457131004','457131004','http://snomed.info/sct','Escherichia coli serotype Orough:H25 (organism)','457131004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_457132006','457132006','http://snomed.info/sct','Escherichia coli serotype Orough:H9 (organism)','457132006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_457133001','457133001','http://snomed.info/sct','Escherichia coli serotype Orough:H2 (organism)','457133001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_457134007','457134007','http://snomed.info/sct','Escherichia coli serotype Orough:H19 (organism)','457134007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_457135008','457135008','http://snomed.info/sct','Escherichia coli serotype Orough:H18 (organism)','457135008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_457136009','457136009','http://snomed.info/sct','Escherichia coli serotype Orough:H16 (organism)','457136009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_457137000','457137000','http://snomed.info/sct','Escherichia coli serotype Orough:H14 (organism)','457137000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_457138005','457138005','http://snomed.info/sct','Escherichia coli serotype Orough:H10 (organism)','457138005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_457139002','457139002','http://snomed.info/sct','Escherichia coli serotype Orough:H11 (organism)','457139002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_457140000','457140000','http://snomed.info/sct','Escherichia coli serogroup O181 (organism)','457140000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_45714007','45714007','http://snomed.info/sct','Salmonella Nordufer (organism)','45714007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_457141001','457141001','http://snomed.info/sct','Escherichia coli serotype O181:H28 (organism)','457141001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_457142008','457142008','http://snomed.info/sct','Escherichia coli serotype O179:H8 (organism)','457142008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_457143003','457143003','http://snomed.info/sct','Escherichia coli serotype O178:H19 (organism)','457143003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_457144009','457144009','http://snomed.info/sct','Escherichia coli serotype O178:H7 (organism)','457144009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_457145005','457145005','http://snomed.info/sct','Escherichia coli serogroup O177 (organism)','457145005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_457146006','457146006','http://snomed.info/sct','Escherichia coli serotype O177:nonmotile (organism)','457146006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_457297005','457297005','http://snomed.info/sct','Escherichia coli serogroup O175 (organism)','457297005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_457298000','457298000','http://snomed.info/sct','Escherichia coli serotype O175:H16 (organism)','457298000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_457299008','457299008','http://snomed.info/sct','Escherichia coli serotype O175:H21 (organism)','457299008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_457300000','457300000','http://snomed.info/sct','Escherichia coli serotype O175:H27 (organism)','457300000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_457301001','457301001','http://snomed.info/sct','Escherichia coli serotype O20:nonmotile (organism)','457301001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_457310009','457310009','http://snomed.info/sct','Escherichia coli serotype O153:nonmotile (organism)','457310009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_457317007','457317007','http://snomed.info/sct','Escherichia coli serotype O153:H7 (organism)','457317007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_457324008','457324008','http://snomed.info/sct','Escherichia coli serotype O153:H25 (organism)','457324008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_457331007','457331007','http://snomed.info/sct','Escherichia coli serotype O153:H2 (organism)','457331007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_457338001','457338001','http://snomed.info/sct','Escherichia coli serotype O153:H45 (organism)','457338001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_457345001','457345001','http://snomed.info/sct','Escherichia coli serotype O152:nonmotile (organism)','457345001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_457354003','457354003','http://snomed.info/sct','Escherichia coli serogroup O150 (organism)','457354003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_457367000','457367000','http://snomed.info/sct','Escherichia coli serotype O150:H11 (organism)','457367000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_457374005','457374005','http://snomed.info/sct','Escherichia coli serogroup O149 (organism)','457374005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_457387004','457387004','http://snomed.info/sct','Escherichia coli serotype O148:H28 (organism)','457387004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_457394001','457394001','http://snomed.info/sct','Escherichia coli serogroup O146 (organism)','457394001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_457407001','457407001','http://snomed.info/sct','Escherichia coli serotype O146:nonmotile (organism)','457407001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_457414004','457414004','http://snomed.info/sct','Escherichia coli serotype O146:H28 (organism)','457414004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_457421004','457421004','http://snomed.info/sct','Escherichia coli serotype O146:H21 (organism)','457421004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_457428005','457428005','http://snomed.info/sct','Escherichia coli serotype O146:H11 (organism)','457428005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_457435002','457435002','http://snomed.info/sct','Escherichia coli serotype O145:nonmotile (organism)','457435002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_457444001','457444001','http://snomed.info/sct','Escherichia coli serotype O145:H34 (organism)','457444001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_457451005','457451005','http://snomed.info/sct','Escherichia coli serotype O145:H28 (organism)','457451005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_457458004','457458004','http://snomed.info/sct','Escherichia coli serotype O145:H25 (organism)','457458004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_457465007','457465007','http://snomed.info/sct','Escherichia coli serotype O145:H16 (organism)','457465007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_457520000','457520000','http://snomed.info/sct','Escherichia coli serotype O174:H28 (organism)','457520000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_457527002','457527002','http://snomed.info/sct','Escherichia coli serotype O174:H21 (organism)','457527002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_457534000','457534000','http://snomed.info/sct','Escherichia coli serotype O174:H2 (organism)','457534000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_457541006','457541006','http://snomed.info/sct','Escherichia coli O172:nonmotile (organism)','457541006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_457550008','457550008','http://snomed.info/sct','Escherichia coli serotype O172:H11 (organism)','457550008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_457557006','457557006','http://snomed.info/sct','Escherichia coli serotype O172:H2 (organism)','457557006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_457564008','457564008','http://snomed.info/sct','Escherichia coli serotype O172:H16 (organism)','457564008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_457571003','457571003','http://snomed.info/sct','Escherichia coli serogroup O168 (organism)','457571003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_457811000','457811000','http://snomed.info/sct','Escherichia coli serotype O168:H14 (organism)','457811000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_457818006','457818006','http://snomed.info/sct','Escherichia coli serotype O166:H15 (organism)','457818006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_457825004','457825004','http://snomed.info/sct','Escherichia coli serotype O165:nonmotile (organism)','457825004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_457832008','457832008','http://snomed.info/sct','Escherichia coli serotype O165:H25 (organism)','457832008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_457839004','457839004','http://snomed.info/sct','Escherichia coli serotype O165:H7 (organism)','457839004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_457846008','457846008','http://snomed.info/sct','Escherichia coli serogroup O162 (organism)','457846008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_457859000','457859000','http://snomed.info/sct','Escherichia coli serotype O163:H19 (organism)','457859000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_457866004','457866004','http://snomed.info/sct','Escherichia coli serotype O162:H6 (organism)','457866004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_457873009','457873009','http://snomed.info/sct','Escherichia coli serotype O162:H11 (organism)','457873009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_457880006','457880006','http://snomed.info/sct','Escherichia coli serogroup O160 (organism)','457880006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_457893001','457893001','http://snomed.info/sct','Escherichia coli serotype O160:nonmotile (organism)','457893001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_457900007','457900007','http://snomed.info/sct','Escherichia coli serotype O160:H18 (organism)','457900007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_457907005','457907005','http://snomed.info/sct','Escherichia coli serotype O157:nonmotile (organism)','457907005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_457914007','457914007','http://snomed.info/sct','Escherichia coli serotype O157:H7 (organism)','457914007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_457923005','457923005','http://snomed.info/sct','Escherichia coli serotype O157:H45 (organism)','457923005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_457930004','457930004','http://snomed.info/sct','Escherichia coli serotype O157:H29 (organism)','457930004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_457937001','457937001','http://snomed.info/sct','Escherichia coli serotype O157:H16 (organism)','457937001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_457944005','457944005','http://snomed.info/sct','Escherichia coli serogroup O156 (organism)','457944005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_457957002','457957002','http://snomed.info/sct','Escherichia coli serotype O156:nonmotile (organism)','457957002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_457964000','457964000','http://snomed.info/sct','Escherichia coli serotype O156:H8 (organism)','457964000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_457971005','457971005','http://snomed.info/sct','Escherichia coli serotype O156:H25 (organism)','457971005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_457978004','457978004','http://snomed.info/sct','Escherichia coli serotype O156:H23 (organism)','457978004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_457991003','457991003','http://snomed.info/sct','Escherichia coli serogroup O141 (organism)','457991003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458004003','458004003','http://snomed.info/sct','Escherichia coli serotype O141:nonmotile (organism)','458004003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458011004','458011004','http://snomed.info/sct','Escherichia coli serotype O141:H49 (organism)','458011004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458018005','458018005','http://snomed.info/sct','Escherichia coli serotype O141:H14 (organism)','458018005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_45802005','45802005','http://snomed.info/sct','Salmonella Tejas (organism)','45802005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458025003','458025003','http://snomed.info/sct','Escherichia coli serogroup O140 (organism)','458025003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458045006','458045006','http://snomed.info/sct','Escherichia coli serotype O2:H7 (organism)','458045006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458046007','458046007','http://snomed.info/sct','Escherichia coli serotype O2:H6 (organism)','458046007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458047003','458047003','http://snomed.info/sct','Escherichia coli serotype O140:H32 (organism)','458047003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458048008','458048008','http://snomed.info/sct','Escherichia coli serotype O136:nonmotile (organism)','458048008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458049000','458049000','http://snomed.info/sct','Escherichia coli serotype O136:H16 (organism)','458049000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458050000','458050000','http://snomed.info/sct','Escherichia coli serotype O136:H12 (organism)','458050000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458051001','458051001','http://snomed.info/sct','Escherichia coli serogroup O132 (organism)','458051001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458052008','458052008','http://snomed.info/sct','Escherichia coli serotype O132:H31 (organism)','458052008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458053003','458053003','http://snomed.info/sct','Escherichia coli serotype O130:H11 (organism)','458053003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458054009','458054009','http://snomed.info/sct','Escherichia coli serotype O128:nonmotile (organism)','458054009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458055005','458055005','http://snomed.info/sct','Escherichia coli serotype O128:H28 (organism)','458055005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458056006','458056006','http://snomed.info/sct','Escherichia coli serotype O128:H2 (organism)','458056006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458057002','458057002','http://snomed.info/sct','Escherichia coli serotype O128:H7 (organism)','458057002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458058007','458058007','http://snomed.info/sct','Escherichia coli serotype O128:H12 (organism)','458058007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458059004','458059004','http://snomed.info/sct','Escherichia coli serotype O128:H45 (organism)','458059004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458060009','458060009','http://snomed.info/sct','Escherichia coli serotype O126:H8 (organism)','458060009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458061008','458061008','http://snomed.info/sct','Escherichia coli serotype O126:nonmotile (organism)','458061008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458062001','458062001','http://snomed.info/sct','Escherichia coli serotype O137:H41 (organism)','458062001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458063006','458063006','http://snomed.info/sct','Escherichia coli serotype O14:nonmotile (organism)','458063006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458064000','458064000','http://snomed.info/sct','Escherichia coli serotype O142:H6 (organism)','458064000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458065004','458065004','http://snomed.info/sct','Escherichia coli serotype O143:nonmotile (organism)','458065004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458066003','458066003','http://snomed.info/sct','Escherichia coli serotype O126:H27 (organism)','458066003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458067007','458067007','http://snomed.info/sct','Escherichia coli serotype O125:H21 (organism)','458067007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458068002','458068002','http://snomed.info/sct','Escherichia coli serotype O124:nonmotile (organism)','458068002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458069005','458069005','http://snomed.info/sct','Escherichia coli serotype O124:H30 (organism)','458069005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458070006','458070006','http://snomed.info/sct','Escherichia coli serotype O124:H7 (organism)','458070006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458071005','458071005','http://snomed.info/sct','Escherichia coli serogroup O123 (organism)','458071005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458072003','458072003','http://snomed.info/sct','Escherichia coli serotype O123:nonmotile (organism)','458072003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458073008','458073008','http://snomed.info/sct','Escherichia coli serotype O123:H2 (organism)','458073008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458074002','458074002','http://snomed.info/sct','Escherichia coli serotype O123:H11 (organism)','458074002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458075001','458075001','http://snomed.info/sct','Escherichia coli serotype O121:H19 (organism)','458075001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458076000','458076000','http://snomed.info/sct','Escherichia coli serotype O121:nonmotile (organism)','458076000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458077009','458077009','http://snomed.info/sct','Escherichia coli serotype O121:H7 (organism)','458077009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458078004','458078004','http://snomed.info/sct','Escherichia coli serotype O119:H6 (organism)','458078004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458079007','458079007','http://snomed.info/sct','Escherichia coli serotype O119:nonmotile (organism)','458079007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458080005','458080005','http://snomed.info/sct','Escherichia coli serotype O119:H4 (organism)','458080005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458081009','458081009','http://snomed.info/sct','Escherichia coli serotype O119:H28 (organism)','458081009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458082002','458082002','http://snomed.info/sct','Escherichia coli serotype O118:H12 (organism)','458082002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458083007','458083007','http://snomed.info/sct','Escherichia coli serotype O118:nonmotile (organism)','458083007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458089006','458089006','http://snomed.info/sct','Escherichia coli serogroup O3 (organism)','458089006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458090002','458090002','http://snomed.info/sct','Escherichia coli serogroup O7 (organism)','458090002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458091003','458091003','http://snomed.info/sct','Escherichia coli serogroup O11 (organism)','458091003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458092005','458092005','http://snomed.info/sct','Escherichia coli serotype O2:H45 (organism)','458092005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458093000','458093000','http://snomed.info/sct','Escherichia coli serotype O3:H4 (organism)','458093000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458094006','458094006','http://snomed.info/sct','Escherichia coli serotype O5:nonmotile (organism)','458094006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458095007','458095007','http://snomed.info/sct','Escherichia coli serotype O6:H16 (organism)','458095007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458096008','458096008','http://snomed.info/sct','Escherichia coli serotype O6:H34 (organism)','458096008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458097004','458097004','http://snomed.info/sct','Escherichia coli serotype O6:nonmotile (organism)','458097004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458099001','458099001','http://snomed.info/sct','Escherichia coli serotype O7:H18 (organism)','458099001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458100009','458100009','http://snomed.info/sct','Escherichia coli serotype O7:H15 (organism)','458100009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458101008','458101008','http://snomed.info/sct','Escherichia coli serotype O7:H7 (organism)','458101008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458102001','458102001','http://snomed.info/sct','Escherichia coli serotype O7:nonmotile (organism)','458102001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458103006','458103006','http://snomed.info/sct','Escherichia coli serotype O8:H16 (organism)','458103006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458104000','458104000','http://snomed.info/sct','Escherichia coli serotype O8:H19 (organism)','458104000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458105004','458105004','http://snomed.info/sct','Escherichia coli serotype O8:H28 (organism)','458105004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458106003','458106003','http://snomed.info/sct','Escherichia coli serotype O8:H8 (organism)','458106003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458107007','458107007','http://snomed.info/sct','Escherichia coli serotype O8:H9 (organism)','458107007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458108002','458108002','http://snomed.info/sct','Escherichia coli serotype O11:H26 (organism)','458108002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458109005','458109005','http://snomed.info/sct','Escherichia coli serotype O14:H11 (organism)','458109005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458110000','458110000','http://snomed.info/sct','Escherichia coli serogroup O18 (organism)','458110000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458111001','458111001','http://snomed.info/sct','Escherichia coli serotype O14:H23 (organism)','458111001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458112008','458112008','http://snomed.info/sct','Escherichia coli serotype O14:H28 (organism)','458112008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458113003','458113003','http://snomed.info/sct','Escherichia coli serotype O14:H7 (organism)','458113003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458114009','458114009','http://snomed.info/sct','Escherichia coli serotype O18:H7 (organism)','458114009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458115005','458115005','http://snomed.info/sct','Escherichia coli serogroup O21 (organism)','458115005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458116006','458116006','http://snomed.info/sct','Escherichia coli serotype O21:nonmotile (organism)','458116006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458117002','458117002','http://snomed.info/sct','Escherichia coli serotype O22:H5 (organism)','458117002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458118007','458118007','http://snomed.info/sct','Escherichia coli serotype O22:H8 (organism)','458118007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458119004','458119004','http://snomed.info/sct','Escherichia coli serogroup O24 (organism)','458119004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458120005','458120005','http://snomed.info/sct','Escherichia coli serotype O24:H25 (organism)','458120005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458121009','458121009','http://snomed.info/sct','Escherichia coli serotype O25:H42 (organism)','458121009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458122002','458122002','http://snomed.info/sct','Escherichia coli serotype O25:nonmotile (organism)','458122002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458123007','458123007','http://snomed.info/sct','Escherichia coli serotype O25:H156 (organism)','458123007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458124001','458124001','http://snomed.info/sct','Escherichia coli serotype O25:H1 (organism)','458124001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458125000','458125000','http://snomed.info/sct','Escherichia coli serotype O26:H11 (organism)','458125000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458126004','458126004','http://snomed.info/sct','Escherichia coli serotype O26:nonmotile (organism)','458126004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458127008','458127008','http://snomed.info/sct','Escherichia coli serotype O26:H46 (organism)','458127008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458128003','458128003','http://snomed.info/sct','Escherichia coli serotype O26:H2 (organism)','458128003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458129006','458129006','http://snomed.info/sct','Escherichia coli serotype O27:H20 (organism)','458129006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458130001','458130001','http://snomed.info/sct','Escherichia coli serotype O27:H7 (organism)','458130001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458131002','458131002','http://snomed.info/sct','Escherichia coli serotype O27:nonmotile (organism)','458131002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458132009','458132009','http://snomed.info/sct','Escherichia coli serotype O28:H174 (organism)','458132009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458133004','458133004','http://snomed.info/sct','Escherichia coli serotype O28:H25 (organism)','458133004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458134005','458134005','http://snomed.info/sct','Escherichia coli serotype O28:nonmotile (organism)','458134005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458135006','458135006','http://snomed.info/sct','Escherichia coli serotype O29:nonmotile (organism)','458135006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458136007','458136007','http://snomed.info/sct','Escherichia coli serogroup O38 (organism)','458136007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458137003','458137003','http://snomed.info/sct','Escherichia coli serotype O38:H26 (organism)','458137003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458138008','458138008','http://snomed.info/sct','Escherichia coli serogroup O42 (organism)','458138008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458139000','458139000','http://snomed.info/sct','Escherichia coli serotype O42:H25 (organism)','458139000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458140003','458140003','http://snomed.info/sct','Escherichia coli serogroup O43 (organism)','458140003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458141004','458141004','http://snomed.info/sct','Escherichia coli serotype O43:H2 (organism)','458141004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458142006','458142006','http://snomed.info/sct','Escherichia coli serotype O45:H2 (organism)','458142006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458143001','458143001','http://snomed.info/sct','Escherichia coli serotype O45:H77 (organism)','458143001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458144007','458144007','http://snomed.info/sct','Escherichia coli serotype O45:H8 (organism)','458144007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458145008','458145008','http://snomed.info/sct','Escherchia coli serotype O45:nonmotile (organism)','458145008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458146009','458146009','http://snomed.info/sct','Escherichia coli serotype O48:H21 (organism)','458146009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458147000','458147000','http://snomed.info/sct','Escherichia coli serotype O49:nonmotile (organism)','458147000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458148005','458148005','http://snomed.info/sct','Escherichia coli serotype O49:H19 (organism)','458148005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458149002','458149002','http://snomed.info/sct','Escherichia coli serotype O50:H7 (organism)','458149002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458150002','458150002','http://snomed.info/sct','Escherichia coli serotype O50:H2 (organism)','458150002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458151003','458151003','http://snomed.info/sct','Escherichia coli serotype O50:H8 (organism)','458151003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458152005','458152005','http://snomed.info/sct','Escherichia coli serogroup O52 (organism)','458152005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458153000','458153000','http://snomed.info/sct','Escherichia coli serotype O52:H45 (organism)','458153000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458154006','458154006','http://snomed.info/sct','Escherichia coli serogroup O53 (organism)','458154006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458155007','458155007','http://snomed.info/sct','Escherichia coli serotype O53:H7 (organism)','458155007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458156008','458156008','http://snomed.info/sct','Escherichia coli serotype O55:H12 (organism)','458156008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458157004','458157004','http://snomed.info/sct','Escherichia coli serotype O55:H7 (organism)','458157004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458158009','458158009','http://snomed.info/sct','Escherichia coli serotype O55:H6 (organism)','458158009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458159001','458159001','http://snomed.info/sct','Escherichia coli serotype O55:nonmotile (organism)','458159001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458160006','458160006','http://snomed.info/sct','Escherichia coli serogroup O60 (organism)','458160006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458161005','458161005','http://snomed.info/sct','Escherichia coli serotype O60:H19 (organism)','458161005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458162003','458162003','http://snomed.info/sct','Escherichia coli serotype O63:H12 (organism)','458162003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458163008','458163008','http://snomed.info/sct','Escherichia coli serotype O63:H6 (organism)','458163008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458164002','458164002','http://snomed.info/sct','Escherichia coli serotype O69:H11 (organism)','458164002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_458165001','458165001','http://snomed.info/sct','Escherichia coli serotype O69:nonmotile (organism)','458165001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_45866006','45866006','http://snomed.info/sct','Salmonella Butare (organism)','45866006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_459069004','459069004','http://snomed.info/sct','Escherichia coli serotype O118:H16 (organism)','459069004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_459070003','459070003','http://snomed.info/sct','Escherichia coli serotype O118:H2 (organism)','459070003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_459071004','459071004','http://snomed.info/sct','Escherichia coli serogroup O117 (organism)','459071004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_459072006','459072006','http://snomed.info/sct','Escherichia coli serotype O117:H7 (organism)','459072006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_459073001','459073001','http://snomed.info/sct','Escherichia coli serotype O117:H4 (organism)','459073001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_459074007','459074007','http://snomed.info/sct','Escherichia coli serogroup O116 (organism)','459074007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_459075008','459075008','http://snomed.info/sct','Escherichia coli serotype O116:nonmotile (organism)','459075008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_459076009','459076009','http://snomed.info/sct','Escherichia coli serotype O116:H21 (organism)','459076009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_459077000','459077000','http://snomed.info/sct','Escherichia coli serogroup O115 (organism)','459077000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_459078005','459078005','http://snomed.info/sct','Escherichia coli serotype O115:H25 (organism)','459078005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_459079002','459079002','http://snomed.info/sct','Escherichia coli serotype O114:H2 (organism)','459079002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_459080004','459080004','http://snomed.info/sct','Escherichia coli serotype O114:nonmotile (organism)','459080004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_459081000','459081000','http://snomed.info/sct','Escherichia coli serotype O113:H21 (organism)','459081000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_459082007','459082007','http://snomed.info/sct','Escherichia coli serotype O113:H8 (organism)','459082007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_459083002','459083002','http://snomed.info/sct','Escherichia coli serotype O113:nonmotile (organism)','459083002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_459084008','459084008','http://snomed.info/sct','Escherichia coli serotype O112:nonmotile (organism)','459084008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_459085009','459085009','http://snomed.info/sct','Escherichia coli serotype O112:H19 (organism)','459085009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_459086005','459086005','http://snomed.info/sct','Escherichia coli serotype O111:H2 (organism)','459086005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_459087001','459087001','http://snomed.info/sct','Escherichia coli serotype O111:nonmotile (organism)','459087001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_459088006','459088006','http://snomed.info/sct','Escherichia coli serotype O111:H8 (organism)','459088006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_459089003','459089003','http://snomed.info/sct','Escherichia coli serotype O111:H12 (organism)','459089003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_459090007','459090007','http://snomed.info/sct','Escherichia coli serotype O111:H11 (organism)','459090007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_459091006','459091006','http://snomed.info/sct','Escherichia coli serotype O111:H21 (organism)','459091006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_459092004','459092004','http://snomed.info/sct','Escherichia coli serogroup O110 (organism)','459092004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_459093009','459093009','http://snomed.info/sct','Escherichia coli serotype O110:H28 (organism)','459093009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_459094003','459094003','http://snomed.info/sct','Escherichia coli serotype O110:H2 (organism)','459094003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_459095002','459095002','http://snomed.info/sct','Escherichia coli serotype O110:H19 (organism)','459095002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_459096001','459096001','http://snomed.info/sct','Escherichia coli serogroup O109 (organism)','459096001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_459097005','459097005','http://snomed.info/sct','Escherichia coli serotype O109:H25 (organism)','459097005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_459098000','459098000','http://snomed.info/sct','Escherichia coli serotype O104:H7 (organism)','459098000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_459099008','459099008','http://snomed.info/sct','Escherichia coli serotype O104:H21 (organism)','459099008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_459100000','459100000','http://snomed.info/sct','Escherichia coli serotype O104:nonmotile (organism)','459100000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_459101001','459101001','http://snomed.info/sct','Escherichia coli serotype O103:H2 (organism)','459101001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_459102008','459102008','http://snomed.info/sct','Escherichia coli serotype O103:nonmotile (organism)','459102008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_459103003','459103003','http://snomed.info/sct','Escherichia coli serotype O103:H4 (organism)','459103003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_459104009','459104009','http://snomed.info/sct','Escherichia coli serotype O103:H25 (organism)','459104009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_459105005','459105005','http://snomed.info/sct','Escherichia coli serotype O103:H11 (organism)','459105005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_459106006','459106006','http://snomed.info/sct','Escherichia coli serogroup O101 (organism)','459106006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_459107002','459107002','http://snomed.info/sct','Escherichia coli serogroup O100 (organism)','459107002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_459108007','459108007','http://snomed.info/sct','Escherichia coli serotype O100:nonmotile (organism)','459108007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_459109004','459109004','http://snomed.info/sct','Escherichia coli serogroup O98 (organism)','459109004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_459110009','459110009','http://snomed.info/sct','Escherichia coli serotype O98:H8 (organism)','459110009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_459111008','459111008','http://snomed.info/sct','Escherichia coli serotype O98:nonmotile (organism)','459111008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_459112001','459112001','http://snomed.info/sct','Escherichia coli serotype O91:nonmotile (organism)','459112001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_459113006','459113006','http://snomed.info/sct','Escherichia coli serotype O91:H21 (organism)','459113006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_459114000','459114000','http://snomed.info/sct','Escherichia coli serotype O91:H10 (organism)','459114000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_459115004','459115004','http://snomed.info/sct','Escherichia coli serotype O91:H49 (organism)','459115004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_459116003','459116003','http://snomed.info/sct','Escherichia coli serotype O91:H14 (organism)','459116003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_459117007','459117007','http://snomed.info/sct','Escherichia coli serotype O9:nonmotile (organism)','459117007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_459118002','459118002','http://snomed.info/sct','Escherichia coli serotype O88:H25 (organism)','459118002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_459119005','459119005','http://snomed.info/sct','Escherichia coli serotype O86:H34 (organism)','459119005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_459120004','459120004','http://snomed.info/sct','Escherichia coli serotype O86:nonmotile (organism)','459120004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_459121000','459121000','http://snomed.info/sct','Escherichia coli serogroup O85 (organism)','459121000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_459122007','459122007','http://snomed.info/sct','Escherichia coli serotype O85:H43 (organism)','459122007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_459123002','459123002','http://snomed.info/sct','Escherichia coli serotype O85:H1 (organism)','459123002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_459124008','459124008','http://snomed.info/sct','Escherichia coli serotype O84:nonmotile (organism)','459124008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_459125009','459125009','http://snomed.info/sct','Escherichia coli serotype O84:H2 (organism)','459125009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_459126005','459126005','http://snomed.info/sct','Escherichia coli serotype O84:H16 (organism)','459126005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_459127001','459127001','http://snomed.info/sct','Escherichia coli serotype O83:H1 (organism)','459127001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_459128006','459128006','http://snomed.info/sct','Escherichia coli serogroup O82 (organism)','459128006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_459129003','459129003','http://snomed.info/sct','Escherichia coli serotype O82:H8 (organism)','459129003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_459130008','459130008','http://snomed.info/sct','Escherichia coli serogroup O80 (organism)','459130008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_459131007','459131007','http://snomed.info/sct','Escherichia coli serotype O80:nonmotile (organism)','459131007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_459132000','459132000','http://snomed.info/sct','Escherichia coli serotype O79:H7 (organism)','459132000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_459133005','459133005','http://snomed.info/sct','Escherichia coli serotype O79:H19 (organism)','459133005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_459134004','459134004','http://snomed.info/sct','Escherichia coli serotype O78:H11 (organism)','459134004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_459135003','459135003','http://snomed.info/sct','Escherichia coli serotype O78:H12 (organism)','459135003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_459136002','459136002','http://snomed.info/sct','Escherichia coli serogroup O76 (organism)','459136002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_459137006','459137006','http://snomed.info/sct','Escherichia coli serotype O76:H7 (organism)','459137006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_459138001','459138001','http://snomed.info/sct','Escherichia coli serotype O76:H21 (organism)','459138001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_459139009','459139009','http://snomed.info/sct','Escherichia coli serotype O76:H2 (organism)','459139009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_459140006','459140006','http://snomed.info/sct','Escherichia coli serotype O76:H19 (organism)','459140006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_459141005','459141005','http://snomed.info/sct','Escherichia coli serogroup O74 (organism)','459141005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_459142003','459142003','http://snomed.info/sct','Escherichia coli serotype O74:H25 (organism)','459142003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_459143008','459143008','http://snomed.info/sct','Escherichia coli serogroup O73 (organism)','459143008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_459144002','459144002','http://snomed.info/sct','Escherichia coli serotype O73:H45 (organism)','459144002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_459145001','459145001','http://snomed.info/sct','Escherichia coli serotype O73:H18 (organism)','459145001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_459146000','459146000','http://snomed.info/sct','Escherichia coli serogroup O71 (organism)','459146000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_459147009','459147009','http://snomed.info/sct','Escherichia coli serotype O71:nonmotile (organism)','459147009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_459148004','459148004','http://snomed.info/sct','Escherichia coli serotype O71:H28 (organism)','459148004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_459149007','459149007','http://snomed.info/sct','Escherichia coli serogroup O70 (organism)','459149007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_459150007','459150007','http://snomed.info/sct','Escherichia coli serotype O70:H11 (organism)','459150007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_45938004','45938004','http://snomed.info/sct','Salmonella Saloniki (organism)','45938004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_45958003','45958003','http://snomed.info/sct','Salmonella Blukwa (organism)','45958003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_45998001','45998001','http://snomed.info/sct','Salmonella Maron (organism)','45998001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_4614004','4614004','http://snomed.info/sct','Salmonella Galiema (organism)','4614004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_46180006','46180006','http://snomed.info/sct','Salmonella Brezany (organism)','46180006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_46189007','46189007','http://snomed.info/sct','Salmonella Camberene (organism)','46189007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_46292001','46292001','http://snomed.info/sct','Salmonella Catanzaro (organism)','46292001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_46323004','46323004','http://snomed.info/sct','Salmonella Shikmonah (organism)','46323004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_46340008','46340008','http://snomed.info/sct','Salmonella IV 44:z36,(z38):- (organism)','46340008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_46375008','46375008','http://snomed.info/sct','Salmonella Utrecht (organism)','46375008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_46399008','46399008','http://snomed.info/sct','Salmonella Apapa (organism)','46399008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_46438002','46438002','http://snomed.info/sct','Salmonella II 43:d:z42 (organism)','46438002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_46474006','46474006','http://snomed.info/sct','Salmonella II 43:d:z39 (organism)','46474006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_46614007','46614007','http://snomed.info/sct','Salmonella Ona (organism)','46614007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_46667007','46667007','http://snomed.info/sct','Salmonella Oranienburg (organism)','46667007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_46735003','46735003','http://snomed.info/sct','Salmonella Obogu (organism)','46735003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_46765008','46765008','http://snomed.info/sct','Salmonella Nanergou (organism)','46765008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_46793007','46793007','http://snomed.info/sct','Salmonella Landau (organism)','46793007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_46818008','46818008','http://snomed.info/sct','Salmonella II 1,6,14:k:z6,z42 (organism)','46818008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_46867005','46867005','http://snomed.info/sct','Salmonella Jericho (organism)','46867005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_4687003','4687003','http://snomed.info/sct','Salmonella Essen (organism)','4687003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_46953000','46953000','http://snomed.info/sct','Salmonella Klouto (organism)','46953000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_47008007','47008007','http://snomed.info/sct','Salmonella II 1,40:g,t:z42 (organism)','47008007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_47039009','47039009','http://snomed.info/sct','Salmonella Jodhpur (organism)','47039009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_47143006','47143006','http://snomed.info/sct','Salmonella Benguella (organism)','47143006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_47223005','47223005','http://snomed.info/sct','Salmonella Kassberg (organism)','47223005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_47229009','47229009','http://snomed.info/sct','Salmonella Altona (organism)','47229009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_473764841000087103','473764841000087103','http://snomed.info/sct','Shigella flexneri 5b (organism)','473764841000087103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_47420006','47420006','http://snomed.info/sct','Salmonella Bere (organism)','47420006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_47441000','47441000','http://snomed.info/sct','Salmonella Stanleyville (organism)','47441000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_47508001','47508001','http://snomed.info/sct','Salmonella Johannesburg (organism)','47508001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_47569006','47569006','http://snomed.info/sct','Salmonella Clackamas (organism)','47569006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_47579008','47579008','http://snomed.info/sct','Salmonella Brazos (organism)','47579008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_47679004','47679004','http://snomed.info/sct','Salmonella Fortlamy (organism)','47679004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_47685006','47685006','http://snomed.info/sct','Salmonella Leeuwarden (organism)','47685006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_47688008','47688008','http://snomed.info/sct','Salmonella Telaviv (organism)','47688008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_4769009','4769009','http://snomed.info/sct','Salmonella Seremban (organism)','4769009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_47732006','47732006','http://snomed.info/sct','Salmonella Kano (organism)','47732006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_47767006','47767006','http://snomed.info/sct','Salmonella Overvecht (organism)','47767006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_47887000','47887000','http://snomed.info/sct','Salmonella II 17:g,t:z39 (organism)','47887000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_4794005','4794005','http://snomed.info/sct','Salmonella Jedburgh (organism)','4794005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_47991006','47991006','http://snomed.info/sct','Salmonella II 35:g,m,s,t:- (organism)','47991006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_48020001','48020001','http://snomed.info/sct','Salmonella Moscow (organism)','48020001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_48054000','48054000','http://snomed.info/sct','Salmonella Narashino (organism)','48054000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_48058002','48058002','http://snomed.info/sct','Salmonella Rostock (organism)','48058002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_48126005','48126005','http://snomed.info/sct','Salmonella Quinhon (organism)','48126005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_48229006','48229006','http://snomed.info/sct','Salmonella Meekatharra (organism)','48229006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_48254006','48254006','http://snomed.info/sct','Salmonella II 6,7:a:z6 (organism)','48254006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_48339002','48339002','http://snomed.info/sct','Salmonella Vinohrady (organism)','48339002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_48365003','48365003','http://snomed.info/sct','Salmonella II 30 c:z39 (organism)','48365003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_48465004','48465004','http://snomed.info/sct','Salmonella Nyborg (organism)','48465004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_48501000087101','48501000087101','http://snomed.info/sct','Enterobacter chengduensis (organism)','48501000087101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_48511000087104','48511000087104','http://snomed.info/sct','Enterobacter chuandaensis (organism)','48511000087104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_48521000087107','48521000087107','http://snomed.info/sct','Enterobacter sichuanensis (organism)','48521000087107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_48578002','48578002','http://snomed.info/sct','Salmonella Ablogame (organism)','48578002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_48584004','48584004','http://snomed.info/sct','Salmonella Akanji (organism)','48584004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_48642004','48642004','http://snomed.info/sct','Salmonella II 1,13,23:g,[s],t:z42 (organism)','48642004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_48652000','48652000','http://snomed.info/sct','Salmonella Agodi (organism)','48652000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_4867001','4867001','http://snomed.info/sct','Salmonella Malakal (organism)','4867001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_4868006','4868006','http://snomed.info/sct','Salmonella Nottingham (organism)','4868006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_48703005','48703005','http://snomed.info/sct','Salmonella II 6,8:y:1,6:z42 (organism)','48703005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_48704004','48704004','http://snomed.info/sct','Salmonella Ceyco (organism)','48704004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_48823000','48823000','http://snomed.info/sct','Salmonella Carno (organism)','48823000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_48831005','48831005','http://snomed.info/sct','Salmonella Naestved (organism)','48831005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_48884009','48884009','http://snomed.info/sct','Salmonella Weslaco (organism)','48884009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_48932004','48932004','http://snomed.info/sct','Salmonella Kandla (organism)','48932004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_48936001','48936001','http://snomed.info/sct','Salmonella II 18:y:e,n,x,z15 (organism)','48936001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_48950006','48950006','http://snomed.info/sct','Salmonella II 9,12:m,t:e,n,x (organism)','48950006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_49029009','49029009','http://snomed.info/sct','Salmonella Epicrates (organism)','49029009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_49079007','49079007','http://snomed.info/sct','Salmonella Michigan (organism)','49079007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_49114009','49114009','http://snomed.info/sct','Salmonella Vogan (organism)','49114009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_4918004','4918004','http://snomed.info/sct','Salmonella Hiduddify (organism)','4918004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_49270001','49270001','http://snomed.info/sct','Salmonella Jalisco (organism)','49270001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_49297008','49297008','http://snomed.info/sct','Salmonella Ferruch (organism)','49297008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_49392000','49392000','http://snomed.info/sct','Salmonella Somone (organism)','49392000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_49452001','49452001','http://snomed.info/sct','Salmonella Cotham (organism)','49452001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_49491006','49491006','http://snomed.info/sct','Salmonella Hadar (organism)','49491006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_49603005','49603005','http://snomed.info/sct','Salmonella Assinie (organism)','49603005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_49666004','49666004','http://snomed.info/sct','Salmonella Brazil (organism)','49666004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_49721001','49721001','http://snomed.info/sct','Salmonella Alabama (organism)','49721001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_49831004','49831004','http://snomed.info/sct','Salmonella Deversoir (organism)','49831004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_50027009','50027009','http://snomed.info/sct','Salmonella Soahanina (organism)','50027009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_50097002','50097002','http://snomed.info/sct','Erwinia amylovora (organism)','50097002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_50111004','50111004','http://snomed.info/sct','Salmonella Alagbon (organism)','50111004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_50113001','50113001','http://snomed.info/sct','Salmonella Accra (organism)','50113001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_50136005','50136005','http://snomed.info/sct','Salmonella Typhimurium (organism)','50136005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_50161008','50161008','http://snomed.info/sct','Salmonella II 53:d:z42 (organism)','50161008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_50273002','50273002','http://snomed.info/sct','Salmonella Dallgow (organism)','50273002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_50351007','50351007','http://snomed.info/sct','Salmonella Memphis (organism)','50351007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_50428006','50428006','http://snomed.info/sct','Salmonella Urbana (organism)','50428006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_50541000087103','50541000087103','http://snomed.info/sct','Extensively drug resistant Shigella flexneri (organism)','50541000087103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_50551000087100','50551000087100','http://snomed.info/sct','Extensively drug resistant Shigella sonnei (organism)','50551000087100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_50732004','50732004','http://snomed.info/sct','Genus Obesumbacterium (organism)','50732004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_50772008','50772008','http://snomed.info/sct','Salmonella Dan (organism)','50772008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_50785006','50785006','http://snomed.info/sct','Salmonella Alger (organism)','50785006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_50823007','50823007','http://snomed.info/sct','Salmonella Akuafo (organism)','50823007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_50831002','50831002','http://snomed.info/sct','Salmonella II 40:m,t:z39 (organism)','50831002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_50853000','50853000','http://snomed.info/sct','Salmonella Goulfey (organism)','50853000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_509004','509004','http://snomed.info/sct','Salmonella Odozi (organism)','509004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_51008005','51008005','http://snomed.info/sct','Salmonella Kingston (organism)','51008005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_51024006','51024006','http://snomed.info/sct','Salmonella Sljeme (organism)','51024006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_51128007','51128007','http://snomed.info/sct','Salmonella Friedenau (organism)','51128007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_51130009','51130009','http://snomed.info/sct','Salmonella Nakuru (organism)','51130009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_51171000087109','51171000087109','http://snomed.info/sct','Extended spectrum beta-lactamase producing Salmonella Paratyphi A (organism)','51171000087109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_51190006','51190006','http://snomed.info/sct','Salmonella Glasgow (organism)','51190006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_51196000','51196000','http://snomed.info/sct','Salmonella Bonariensis (organism)','51196000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_51210001','51210001','http://snomed.info/sct','Salmonella Banalia (organism)','51210001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_51271000087100','51271000087100','http://snomed.info/sct','Carbapenemase-producing Klebsiella oxytoca (organism)','51271000087100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_51312006','51312006','http://snomed.info/sct','Salmonella Leipzig (organism)','51312006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_51446008','51446008','http://snomed.info/sct','Salmonella Apeyeme (organism)','51446008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_51480006','51480006','http://snomed.info/sct','Salmonella Westeinde (organism)','51480006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_51488004','51488004','http://snomed.info/sct','Salmonella Abortusequi (organism)','51488004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_51518009','51518009','http://snomed.info/sct','Salmonella Giessen (organism)','51518009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_51584000','51584000','http://snomed.info/sct','Salmonella Stormont (organism)','51584000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_51705004','51705004','http://snomed.info/sct','Salmonella Eppendorf (organism)','51705004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_51706003','51706003','http://snomed.info/sct','Salmonella Lansing (organism)','51706003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_51716006','51716006','http://snomed.info/sct','Salmonella Nyeko (organism)','51716006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_51799003','51799003','http://snomed.info/sct','Salmonella Overschie (organism)','51799003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_51820003','51820003','http://snomed.info/sct','Salmonella Lechler (organism)','51820003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_51825008','51825008','http://snomed.info/sct','Salmonella Oritamerin (organism)','51825008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_51944002','51944002','http://snomed.info/sct','Salmonella IV 18:z36,z38,- (organism)','51944002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_51985007','51985007','http://snomed.info/sct','Salmonella Rissen (organism)','51985007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_52004009','52004009','http://snomed.info/sct','Salmonella II 43:d:e,n,x,z15 (organism)','52004009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_52204003','52204003','http://snomed.info/sct','Salmonella Romanby (organism)','52204003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_52237001','52237001','http://snomed.info/sct','Salmonella Osnabrueck (organism)','52237001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_52277009','52277009','http://snomed.info/sct','Salmonella Ikeja (organism)','52277009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_52294006','52294006','http://snomed.info/sct','Salmonella II 58:d:z6 (organism)','52294006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_52400005','52400005','http://snomed.info/sct','Salmonella Idikan (organism)','52400005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_52488001','52488001','http://snomed.info/sct','Salmonella Nowawes (organism)','52488001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_52492008','52492008','http://snomed.info/sct','Salmonella Kisangani (organism)','52492008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_52511000','52511000','http://snomed.info/sct','Salmonella Amersfoort (organism)','52511000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_52648003','52648003','http://snomed.info/sct','Salmonella Tarshyne (organism)','52648003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_52730003','52730003','http://snomed.info/sct','Salmonella Typhisuis (organism)','52730003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_52941007','52941007','http://snomed.info/sct','Salmonella Plymouth (organism)','52941007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_52981000','52981000','http://snomed.info/sct','Salmonella Camberwell (organism)','52981000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_52995002','52995002','http://snomed.info/sct','Salmonella Gatineau (organism)','52995002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_53013003','53013003','http://snomed.info/sct','Pseudescherichia vulneris (organism)','53013003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_53230005','53230005','http://snomed.info/sct','Salmonella Goettingen (organism)','53230005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_5325008','5325008','http://snomed.info/sct','Salmonella Menden (organism)','5325008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_53285009','53285009','http://snomed.info/sct','Salmonella Nessziona (organism)','53285009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_53308007','53308007','http://snomed.info/sct','Salmonella Bahati (organism)','53308007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_53391009','53391009','http://snomed.info/sct','Salmonella Fass (organism)','53391009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_53459007','53459007','http://snomed.info/sct','Salmonella Kalumburu (organism)','53459007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_53477002','53477002','http://snomed.info/sct','Salmonella Shoreditch (organism)','53477002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_53501002','53501002','http://snomed.info/sct','Salmonella II 13,23:k:z41 (organism)','53501002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_53510005','53510005','http://snomed.info/sct','Salmonella Orlando (organism)','53510005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_53653001','53653001','http://snomed.info/sct','Salmonella II 6,7:b:z39 (organism)','53653001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_53656009','53656009','http://snomed.info/sct','Salmonella Leiden (organism)','53656009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_53684004','53684004','http://snomed.info/sct','Salmonella Blockley (organism)','53684004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_5369001','5369001','http://snomed.info/sct','Salmonella Ezra (organism)','5369001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_5372008','5372008','http://snomed.info/sct','Salmonella Eko (organism)','5372008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_53723000','53723000','http://snomed.info/sct','Salmonella Vellore (organism)','53723000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_53814008','53814008','http://snomed.info/sct','Salmonella Emek (organism)','53814008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_53903009','53903009','http://snomed.info/sct','Salmonella Barmbek (organism)','53903009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_54021004','54021004','http://snomed.info/sct','Salmonella Lode (organism)','54021004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_541005','541005','http://snomed.info/sct','Salmonella Ahuza (organism)','541005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_54131009','54131009','http://snomed.info/sct','Salmonella Praha (organism)','54131009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_541421000124109','541421000124109','http://snomed.info/sct','Citrobacter portucalensis (organism)','541421000124109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_54227005','54227005','http://snomed.info/sct','Salmonella Dadzie (organism)','54227005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_54260008','54260008','http://snomed.info/sct','Salmonella Redhill (organism)','54260008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_54295006','54295006','http://snomed.info/sct','Salmonella Lawra (organism)','54295006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_54309009','54309009','http://snomed.info/sct','Salmonella Ebrie (organism)','54309009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_54354005','54354005','http://snomed.info/sct','Salmonella Kaapstad (organism)','54354005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_54469007','54469007','http://snomed.info/sct','Salmonella Schwerin (organism)','54469007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_54528001','54528001','http://snomed.info/sct','Salmonella Yeerongpilly (organism)','54528001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_54551001','54551001','http://snomed.info/sct','Salmonella II 6,7:z:z39 (organism)','54551001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_5461002','5461002','http://snomed.info/sct','Salmonella Chester (organism)','5461002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_54693005','54693005','http://snomed.info/sct','Salmonella Lerum (organism)','54693005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_54697006','54697006','http://snomed.info/sct','Salmonella Techimani (organism)','54697006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_54749003','54749003','http://snomed.info/sct','Salmonella Farcha (organism)','54749003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_54836002','54836002','http://snomed.info/sct','Salmonella Wedding (organism)','54836002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_54984007','54984007','http://snomed.info/sct','Salmonella Fischerkietz (organism)','54984007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_55107007','55107007','http://snomed.info/sct','Salmonella Malaysia (organism)','55107007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_55144007','55144007','http://snomed.info/sct','Salmonella Rumford (organism)','55144007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_551661000124103','551661000124103','http://snomed.info/sct','Shiga toxin-producing Escherichia albertii (organism)','551661000124103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_55246000','55246000','http://snomed.info/sct','Salmonella Echa (organism)','55246000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_55274005','55274005','http://snomed.info/sct','Salmonella Edinburg (organism)','55274005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_55290005','55290005','http://snomed.info/sct','Salmonella Bonn (organism)','55290005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_55395003','55395003','http://snomed.info/sct','Salmonella Saarbruecken (organism)','55395003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_55453006','55453006','http://snomed.info/sct','Salmonella II 47:z:e,n,x,z15 (organism)','55453006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_55462008','55462008','http://snomed.info/sct','Shigella boydii (organism)','55462008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_55485009','55485009','http://snomed.info/sct','Salmonella Mishmarhaemek (organism)','55485009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_55505009','55505009','http://snomed.info/sct','Salmonella Sheffield (organism)','55505009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_55580001','55580001','http://snomed.info/sct','Salmonella Daytona (organism)','55580001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_55653004','55653004','http://snomed.info/sct','Salmonella Ipeko (organism)','55653004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_55744003','55744003','http://snomed.info/sct','Citrobacter amalonaticus (organism)','55744003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_55851000','55851000','http://snomed.info/sct','Genus Budvicia (organism)','55851000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_55928004','55928004','http://snomed.info/sct','Salmonella II 47:g,t:e,n,x (organism)','55928004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_55932005','55932005','http://snomed.info/sct','Salmonella Cubana (organism)','55932005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_5595000','5595000','http://snomed.info/sct','Salmonella enterica subspecies enterica serovar Typhi (organism)','5595000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_55975004','55975004','http://snomed.info/sct','Salmonella Cleveland (organism)','55975004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_56040008','56040008','http://snomed.info/sct','Salmonella Bietri (organism)','56040008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_56064009','56064009','http://snomed.info/sct','Salmonella Okatie (organism)','56064009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_56077000','56077000','http://snomed.info/sct','Salmonella Newport (organism)','56077000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_56088006','56088006','http://snomed.info/sct','Salmonella Eberswalde (organism)','56088006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_56093009','56093009','http://snomed.info/sct','Salmonella Winnipeg (organism)','56093009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_5610000','5610000','http://snomed.info/sct','Salmonella Azteca (organism)','5610000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_5612008','5612008','http://snomed.info/sct','Salmonella Enugu (organism)','5612008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_56122007','56122007','http://snomed.info/sct','Salmonella Ogbete (organism)','56122007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_56415008','56415008','http://snomed.info/sct','Klebsiella pneumoniae (organism)','56415008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_56428001','56428001','http://snomed.info/sct','Salmonella Aflao (organism)','56428001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_56626006','56626006','http://snomed.info/sct','Salmonella Palime (organism)','56626006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_56632001','56632001','http://snomed.info/sct','Salmonella Durham (organism)','56632001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_56737002','56737002','http://snomed.info/sct','Salmonella Raus (organism)','56737002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_56813009','56813009','http://snomed.info/sct','Enterobacter cloacae subspecies dissolvens (organism)','56813009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_56929002','56929002','http://snomed.info/sct','Salmonella Assen (organism)','56929002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_56950006','56950006','http://snomed.info/sct','Salmonella II 48:k:e,n,x,z15 (organism)','56950006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_56955001','56955001','http://snomed.info/sct','Salmonella Westerstede (organism)','56955001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_57024000','57024000','http://snomed.info/sct','Salmonella Charlottenburg (organism)','57024000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_57053004','57053004','http://snomed.info/sct','Salmonella Saboya (organism)','57053004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_57072004','57072004','http://snomed.info/sct','Salmonella Solt (organism)','57072004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_57101009','57101009','http://snomed.info/sct','Salmonella Poona (organism)','57101009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_5711000087108','5711000087108','http://snomed.info/sct','Cronobacter dublinensis subspecies lausannensis (organism)','5711000087108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_57116007','57116007','http://snomed.info/sct','Salmonella Africana (organism)','57116007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_57247005','57247005','http://snomed.info/sct','Salmonella II 45:z29:z42 (organism)','57247005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_57255003','57255003','http://snomed.info/sct','Salmonella Ago (organism)','57255003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_57322006','57322006','http://snomed.info/sct','Salmonella Aberdeen (organism)','57322006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_57389000','57389000','http://snomed.info/sct','Salmonella Basingstoke (organism)','57389000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_57428009','57428009','http://snomed.info/sct','Salmonella Campinense (organism)','57428009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_57459006','57459006','http://snomed.info/sct','Leclercia adecarboxylata (organism)','57459006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_57475009','57475009','http://snomed.info/sct','Salmonella II 57:d:1,5 (organism)','57475009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_57506006','57506006','http://snomed.info/sct','Salmonella Bergedorf (organism)','57506006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_57508007','57508007','http://snomed.info/sct','Salmonella II 9,12:l,v:z39 (organism)','57508007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_57585007','57585007','http://snomed.info/sct','Salmonella Inverness (organism)','57585007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_57587004','57587004','http://snomed.info/sct','Salmonella Carnac (organism)','57587004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_57636007','57636007','http://snomed.info/sct','Salmonella II 1,9,12:z29:e,n,x (organism)','57636007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_57664002','57664002','http://snomed.info/sct','Salmonella Durban (organism)','57664002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_57683009','57683009','http://snomed.info/sct','Salmonella Rochdale (organism)','57683009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_5778005','5778005','http://snomed.info/sct','Salmonella Muguga (organism)','5778005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_57786005','57786005','http://snomed.info/sct','Salmonella Takoradi (organism)','57786005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_57804003','57804003','http://snomed.info/sct','Salmonella Fann (organism)','57804003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_57861008','57861008','http://snomed.info/sct','Salmonella Tambacounda (organism)','57861008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_57887008','57887008','http://snomed.info/sct','Salmonella IV 1,53:g,z51:- (organism)','57887008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_57924003','57924003','http://snomed.info/sct','Salmonella Oldenburg (organism)','57924003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_58006000','58006000','http://snomed.info/sct','Salmonella Carswell (organism)','58006000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_58041001','58041001','http://snomed.info/sct','Salmonella II 9,12:e,n,x:1,6 (organism)','58041001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_58045005','58045005','http://snomed.info/sct','Salmonella Hillegersberg (organism)','58045005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_58052007','58052007','http://snomed.info/sct','Salmonella Louga (organism)','58052007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_581003','581003','http://snomed.info/sct','Salmonella Canada (organism)','581003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_58134009','58134009','http://snomed.info/sct','Salmonella II 43:g,z62:e,n,x (organism)','58134009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_58146008','58146008','http://snomed.info/sct','Salmonella Yoff (organism)','58146008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_58215003','58215003','http://snomed.info/sct','Salmonella Machaga (organism)','58215003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_5837001','5837001','http://snomed.info/sct','Salmonella IV 40:z4,z24:- (organism)','5837001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_58393009','58393009','http://snomed.info/sct','Salmonella Yokoe (organism)','58393009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_58493008','58493008','http://snomed.info/sct','Kluyvera ascorbata (organism)','58493008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_5864000','5864000','http://snomed.info/sct','Salmonella Baildon (organism)','5864000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_58683007','58683007','http://snomed.info/sct','Genus Enterobacter (organism)','58683007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_58723002','58723002','http://snomed.info/sct','Salmonella Larochelle (organism)','58723002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_58761004','58761004','http://snomed.info/sct','Salmonella Victoriaborg (organism)','58761004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_58845009','58845009','http://snomed.info/sct','Salmonella Ilala (organism)','58845009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_58933004','58933004','http://snomed.info/sct','Salmonella Remete (organism)','58933004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_58946009','58946009','http://snomed.info/sct','Salmonella Kumasi (organism)','58946009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_58973005','58973005','http://snomed.info/sct','Salmonella Willemstad (organism)','58973005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_58979009','58979009','http://snomed.info/sct','Salmonella Wisbech (organism)','58979009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_5908004','5908004','http://snomed.info/sct','Salmonella Haelsingborg (organism)','5908004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_59099007','59099007','http://snomed.info/sct','Salmonella Menston (organism)','59099007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_59107001','59107001','http://snomed.info/sct','Salmonella Fluntern (organism)','59107001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_59130007','59130007','http://snomed.info/sct','Salmonella Augustenborg (organism)','59130007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_59235005','59235005','http://snomed.info/sct','Salmonella II 9,12:l,z28:e,n,x (organism)','59235005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_5929008','5929008','http://snomed.info/sct','Salmonella Virchow (organism)','5929008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_59316007','59316007','http://snomed.info/sct','Salmonella Losangeles (organism)','59316007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_5937000','5937000','http://snomed.info/sct','Salmonella Abadina (organism)','5937000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_59384004','59384004','http://snomed.info/sct','Salmonella Selby (organism)','59384004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_59551003','59551003','http://snomed.info/sct','Salmonella Colindale (organism)','59551003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_5956005','5956005','http://snomed.info/sct','Salmonella Kouka (organism)','5956005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_5957001','5957001','http://snomed.info/sct','Salmonella Binningen (organism)','5957001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_59598006','59598006','http://snomed.info/sct','Salmonella Gaminara (organism)','59598006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_59727006','59727006','http://snomed.info/sct','Salmonella II 1,9,12,(46),27:y:z39 (organism)','59727006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_59785000','59785000','http://snomed.info/sct','Salmonella Guarapiranga (organism)','59785000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_59794006','59794006','http://snomed.info/sct','Salmonella Yerba (organism)','59794006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_59827003','59827003','http://snomed.info/sct','Salmonella Agege (organism)','59827003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_59834001','59834001','http://snomed.info/sct','Salmonella Gbadago (organism)','59834001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_59839006','59839006','http://snomed.info/sct','Salmonella Mpouto (organism)','59839006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_60073009','60073009','http://snomed.info/sct','Salmonella Agama (organism)','60073009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_60142007','60142007','http://snomed.info/sct','Salmonella Ndolo (organism)','60142007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_60230009','60230009','http://snomed.info/sct','Salmonella Broughton (organism)','60230009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_60242004','60242004','http://snomed.info/sct','Salmonella Salford (organism)','60242004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_60425007','60425007','http://snomed.info/sct','Salmonella II 3,10:l,z28:z39 (organism)','60425007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_60462009','60462009','http://snomed.info/sct','Salmonella Vleuten (organism)','60462009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_60512001','60512001','http://snomed.info/sct','Salmonella II 3,10:l,v:e,n,x (organism)','60512001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_60527001','60527001','http://snomed.info/sct','Salmonella Neumuenster (organism)','60527001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_6065006','6065006','http://snomed.info/sct','Salmonella Malstatt (organism)','6065006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_60651003','60651003','http://snomed.info/sct','Salmonella Meleagridis (organism)','60651003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_60677006','60677006','http://snomed.info/sct','Salmonella Spartel (organism)','60677006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_60711005','60711005','http://snomed.info/sct','Salmonella II 30:b:z6 (organism)','60711005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_60789003','60789003','http://snomed.info/sct','Salmonella Onarimon (organism)','60789003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_60794003','60794003','http://snomed.info/sct','Salmonella Elomrane (organism)','60794003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_60834008','60834008','http://snomed.info/sct','Salmonella Tilburg (organism)','60834008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_6086006','6086006','http://snomed.info/sct','Salmonella Kinondoni (organism)','6086006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_608886002','608886002','http://snomed.info/sct','Escherichia coli serogroup O44 (organism)','608886002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_60913000','60913000','http://snomed.info/sct','Salmonella II 6,8:d:z6,z42 (organism)','60913000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_609333000','609333000','http://snomed.info/sct','Escherichia coli serotype O144:nonmotile (organism)','609333000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_609353001','609353001','http://snomed.info/sct','Escherichia coli serotype O1:nonmotile (organism)','609353001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_609354007','609354007','http://snomed.info/sct','Escherichia coli serotype O127:H21 (organism)','609354007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_609355008','609355008','http://snomed.info/sct','Escherichia coli serotype O127:H6 (organism)','609355008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_609356009','609356009','http://snomed.info/sct','Escherichia coli serotype O127:H9 (organism)','609356009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_609357000','609357000','http://snomed.info/sct','Escherichia coli serotype O127:nonmotile (organism)','609357000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_609358005','609358005','http://snomed.info/sct','Escherichia coli serotype O15:H11 (organism)','609358005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_609359002','609359002','http://snomed.info/sct','Escherichia coli serotype O159:H20 (organism)','609359002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_609360007','609360007','http://snomed.info/sct','Escherichia coli serotype O159:H4 (organism)','609360007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_609361006','609361006','http://snomed.info/sct','Escherichia coli serotype O159:nonmotile (organism)','609361006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_609364003','609364003','http://snomed.info/sct','Escherichia coli serotype O164:nonmotile (organism)','609364003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_609365002','609365002','http://snomed.info/sct','Escherichia coli serotype O167:nonmotile (organism)','609365002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_609366001','609366001','http://snomed.info/sct','Escherichia coli serotype O167:H5 (organism)','609366001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_609367005','609367005','http://snomed.info/sct','Escherichia coli serotype O169:H41 (organism)','609367005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_61079001','61079001','http://snomed.info/sct','Salmonella Haouaria (organism)','61079001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_61161003','61161003','http://snomed.info/sct','Genus Kluyvera (organism)','61161003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_61191008','61191008','http://snomed.info/sct','Salmonella Ikayi (organism)','61191008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_61227007','61227007','http://snomed.info/sct','Salmonella II 1,9,12,(46),27:z10:e,n,x (organism)','61227007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_612331000124107','612331000124107','http://snomed.info/sct','Salmonella V 48:a:- (organism)','612331000124107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_61304001','61304001','http://snomed.info/sct','Salmonella Hatfield (organism)','61304001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_61329007','61329007','http://snomed.info/sct','Salmonella Kodjovi (organism)','61329007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_61355008','61355008','http://snomed.info/sct','Salmonella Logone (organism)','61355008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_61375004','61375004','http://snomed.info/sct','Salmonella II 1,40:c:z39 (organism)','61375004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_61388001','61388001','http://snomed.info/sct','Salmonella Teltow (organism)','61388001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_61491002','61491002','http://snomed.info/sct','Salmonella Kpeme (organism)','61491002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_61531002','61531002','http://snomed.info/sct','Salmonella Mayday (organism)','61531002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_61549002','61549002','http://snomed.info/sct','Salmonella Taset (organism)','61549002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_6156002','6156002','http://snomed.info/sct','Salmonella Sanga (organism)','6156002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_61807004','61807004','http://snomed.info/sct','Salmonella Warnemuende (organism)','61807004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_6184007','6184007','http://snomed.info/sct','Salmonella Fulica (organism)','6184007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_62024006','62024006','http://snomed.info/sct','Salmonella II 50:b:z6 (organism)','62024006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_62099009','62099009','http://snomed.info/sct','Salmonella Westhampton (organism)','62099009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_62136003','62136003','http://snomed.info/sct','Salmonella Dublin (organism)','62136003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_62146001','62146001','http://snomed.info/sct','Salmonella Wuiti (organism)','62146001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_62209006','62209006','http://snomed.info/sct','Salmonella II 58:c:z6 (organism)','62209006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_62272001','62272001','http://snomed.info/sct','Salmonella Newyork (organism)','62272001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_62308000','62308000','http://snomed.info/sct','Salmonella Baiboukoum (organism)','62308000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_62314007','62314007','http://snomed.info/sct','Salmonella Mornington (organism)','62314007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_62325003','62325003','http://snomed.info/sct','Salmonella Kisii (organism)','62325003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_6233000','6233000','http://snomed.info/sct','Salmonella Warragul (organism)','6233000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_62340001','62340001','http://snomed.info/sct','Salmonella Kivu (organism)','62340001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_62365004','62365004','http://snomed.info/sct','Salmonella Farakan (organism)','62365004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_62367007','62367007','http://snomed.info/sct','Salmonella Lovelace (organism)','62367007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_62414008','62414008','http://snomed.info/sct','Salmonella Gassi (organism)','62414008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_62441003','62441003','http://snomed.info/sct','Salmonella Drogana (organism)','62441003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_62532006','62532006','http://snomed.info/sct','Salmonella Veneziana (organism)','62532006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_62592009','62592009','http://snomed.info/sct','Klebsiella aerogenes (organism)','62592009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_62626007','62626007','http://snomed.info/sct','Salmonella Volkmarsdorf (organism)','62626007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_6265002','6265002','http://snomed.info/sct','Citrobacter freundii (organism)','6265002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_62656003','62656003','http://snomed.info/sct','Salmonella Schoeneberg (organism)','62656003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_62686005','62686005','http://snomed.info/sct','Salmonella Mono (organism)','62686005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_6272001','6272001','http://snomed.info/sct','Salmonella II 56:d:- (organism)','6272001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_62773005','62773005','http://snomed.info/sct','Salmonella Mandera (organism)','62773005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_62866008','62866008','http://snomed.info/sct','Salmonella Kirkee (organism)','62866008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_63015008','63015008','http://snomed.info/sct','Salmonella Ilugun (organism)','63015008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_6302004','6302004','http://snomed.info/sct','Salmonella Shipley (organism)','6302004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_63058007','63058007','http://snomed.info/sct','Salmonella Halle (organism)','63058007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_63060009','63060009','http://snomed.info/sct','Salmonella Huvudsta (organism)','63060009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_63142006','63142006','http://snomed.info/sct','Salmonella Hato (organism)','63142006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_6327006','6327006','http://snomed.info/sct','Salmonella Glostrup (organism)','6327006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_6328001','6328001','http://snomed.info/sct','Salmonella Banjul (organism)','6328001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_63396002','63396002','http://snomed.info/sct','Salmonella Reading (organism)','63396002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_63485009','63485009','http://snomed.info/sct','Salmonella Southbank (organism)','63485009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_6350000','6350000','http://snomed.info/sct','Salmonella Joal (organism)','6350000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_63734000','63734000','http://snomed.info/sct','Salmonella Mowanjum (organism)','63734000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_63800006','63800006','http://snomed.info/sct','Salmonella Steinplatz (organism)','63800006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_63877008','63877008','http://snomed.info/sct','Salmonella Champaign (organism)','63877008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_64078005','64078005','http://snomed.info/sct','Salmonella Lindenburg (organism)','64078005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_64080004','64080004','http://snomed.info/sct','Salmonella Warnow (organism)','64080004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_64155002','64155002','http://snomed.info/sct','Salmonella Kunduchi (organism)','64155002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_6432008','6432008','http://snomed.info/sct','Salmonella Brive (organism)','6432008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_64341001','64341001','http://snomed.info/sct','Salmonella II 56:e,n,x:1,7 (organism)','64341001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_64354008','64354008','http://snomed.info/sct','Salmonella Czernyring (organism)','64354008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_64456006','64456006','http://snomed.info/sct','Salmonella Bristol (organism)','64456006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_64506004','64506004','http://snomed.info/sct','Salmonella Oerlikon (organism)','64506004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_64539001','64539001','http://snomed.info/sct','Salmonella Abobo (organism)','64539001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_64578002','64578002','http://snomed.info/sct','Salmonella Herston (organism)','64578002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_6458008','6458008','http://snomed.info/sct','Salmonella Yovokome (organism)','6458008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_6459000','6459000','http://snomed.info/sct','Salmonella Riogrande (organism)','6459000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_646165971000087107','646165971000087107','http://snomed.info/sct','Shigella flexneri 5a (organism)','646165971000087107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_64619006','64619006','http://snomed.info/sct','Salmonella Thayngen (organism)','64619006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_64636003','64636003','http://snomed.info/sct','Salmonella Telelkebir (organism)','64636003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_64674006','64674006','http://snomed.info/sct','Salmonella Lyon (organism)','64674006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_64705003','64705003','http://snomed.info/sct','Salmonella Mokola (organism)','64705003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_64735005','64735005','http://snomed.info/sct','Genus Escherichia (organism)','64735005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_64768003','64768003','http://snomed.info/sct','Salmonella Togba (organism)','64768003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_64802006','64802006','http://snomed.info/sct','Salmonella Miami (organism)','64802006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_64842001','64842001','http://snomed.info/sct','Salmonella Haardt (organism)','64842001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_64847007','64847007','http://snomed.info/sct','Salmonella Lezennes (organism)','64847007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_64863004','64863004','http://snomed.info/sct','Salmonella Ljubljana (organism)','64863004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_64900004','64900004','http://snomed.info/sct','Salmonella Ordonez (organism)','64900004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_64975005','64975005','http://snomed.info/sct','Salmonella Chicago (organism)','64975005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_65132007','65132007','http://snomed.info/sct','Salmonella Monschaui (organism)','65132007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_65186004','65186004','http://snomed.info/sct','Klebsiella pneumoniae ss. ozaenae (organism)','65186004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_65211006','65211006','http://snomed.info/sct','Salmonella Luciana (organism)','65211006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_65214003','65214003','http://snomed.info/sct','Salmonella Haferbreite (organism)','65214003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_65252002','65252002','http://snomed.info/sct','Salmonella II 1,13,22:z39:1,5,(7) (organism)','65252002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_65303004','65303004','http://snomed.info/sct','Salmonella Sloterdijk (organism)','65303004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_65422007','65422007','http://snomed.info/sct','Salmonella Kintambo (organism)','65422007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_65463001','65463001','http://snomed.info/sct','Salmonella Bilu (organism)','65463001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_65525006','65525006','http://snomed.info/sct','Salmonella Gera (organism)','65525006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_656008','656008','http://snomed.info/sct','Salmonella Os (organism)','656008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_65633001','65633001','http://snomed.info/sct','Salmonella Kermel (organism)','65633001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_65650004','65650004','http://snomed.info/sct','Salmonella II 42:m,t:(e,n,x,z15) (organism)','65650004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_65700004','65700004','http://snomed.info/sct','Salmonella Calabar (organism)','65700004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_65779004','65779004','http://snomed.info/sct','Salmonella Papuana (organism)','65779004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_65805004','65805004','http://snomed.info/sct','Salmonella Kamoru (organism)','65805004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_65807007','65807007','http://snomed.info/sct','Salmonella Sangalkam (organism)','65807007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_65829006','65829006','http://snomed.info/sct','Salmonella Onireke (organism)','65829006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_65830001','65830001','http://snomed.info/sct','Salmonella Ngor (organism)','65830001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_65834005','65834005','http://snomed.info/sct','Salmonella II 43:e,n,x,z15:1,(5),7 (organism)','65834005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_65850002','65850002','http://snomed.info/sct','Salmonella Ball (organism)','65850002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_65987009','65987009','http://snomed.info/sct','Salmonella II 3,10:g,m,s,t:[1,5] (organism)','65987009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_66105008','66105008','http://snomed.info/sct','Salmonella Nieukerk (organism)','66105008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_66161002','66161002','http://snomed.info/sct','Salmonella Linguere (organism)','66161002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_66197006','66197006','http://snomed.info/sct','Salmonella Goverdhan (organism)','66197006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_66385002','66385002','http://snomed.info/sct','Salmonella IV Argentina (organism)','66385002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_66442007','66442007','http://snomed.info/sct','Salmonella Luke (organism)','66442007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_66450003','66450003','http://snomed.info/sct','Salmonella Gambia (organism)','66450003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_66496006','66496006','http://snomed.info/sct','Salmonella Mapo (organism)','66496006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_66544006','66544006','http://snomed.info/sct','Salmonella Brevik (organism)','66544006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_66570007','66570007','http://snomed.info/sct','Salmonella II 28:e,n,x:1,7 (organism)','66570007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_66585001','66585001','http://snomed.info/sct','Salmonella Kalina (organism)','66585001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_6663003','6663003','http://snomed.info/sct','Salmonella Morningside (organism)','6663003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_66713000','66713000','http://snomed.info/sct','Salmonella Livingstone (organism)','66713000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_66714006','66714006','http://snomed.info/sct','Salmonella Pharr (organism)','66714006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_66749004','66749004','http://snomed.info/sct','Salmonella II 1,13,23:z29:e,n,x (organism)','66749004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_6675008','6675008','http://snomed.info/sct','Salmonella Kibi (organism)','6675008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_66773007','66773007','http://snomed.info/sct','Salmonella IV, group O:53 (organism)','66773007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_66778003','66778003','http://snomed.info/sct','Salmonella Elokate (organism)','66778003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_66788002','66788002','http://snomed.info/sct','Salmonella IV 6,14:z4,z23:- (organism)','66788002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_66863002','66863002','http://snomed.info/sct','Salmonella Dabou (organism)','66863002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_67035008','67035008','http://snomed.info/sct','Salmonella Oxford (organism)','67035008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_67092009','67092009','http://snomed.info/sct','Salmonella Morehead (organism)','67092009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_67207001','67207001','http://snomed.info/sct','Salmonella Koumra (organism)','67207001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_67210008','67210008','http://snomed.info/sct','Salmonella Ohio (organism)','67210008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_67231006','67231006','http://snomed.info/sct','Salmonella Nimes (organism)','67231006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_67259007','67259007','http://snomed.info/sct','Salmonella Inpraw (organism)','67259007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_67282009','67282009','http://snomed.info/sct','Salmonella Bury (organism)','67282009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_67336004','67336004','http://snomed.info/sct','Salmonella Legon (organism)','67336004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_67346002','67346002','http://snomed.info/sct','Salmonella Kuru (organism)','67346002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_67392004','67392004','http://snomed.info/sct','Salmonella Hvittingfoss (organism)','67392004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_67457006','67457006','http://snomed.info/sct','Salmonella Goelzau (organism)','67457006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_67513009','67513009','http://snomed.info/sct','Salmonella Njala (organism)','67513009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_67643004','67643004','http://snomed.info/sct','Salmonella Chincol (organism)','67643004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_67646007','67646007','http://snomed.info/sct','Salmonella Alexanderplatz (organism)','67646007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_6768004','6768004','http://snomed.info/sct','Salmonella Lodz (organism)','6768004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_67775006','67775006','http://snomed.info/sct','Salmonella Cairina (organism)','67775006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_67810001','67810001','http://snomed.info/sct','Salmonella Lika (organism)','67810001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_67851004','67851004','http://snomed.info/sct','Salmonella Sipane (organism)','67851004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_67874000','67874000','http://snomed.info/sct','Salmonella Birmingham (organism)','67874000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_67936007','67936007','http://snomed.info/sct','Salmonella II 39:c:e,n,x (organism)','67936007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_68108004','68108004','http://snomed.info/sct','Salmonella Findorff (organism)','68108004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_68218004','68218004','http://snomed.info/sct','Salmonella Kimberley (organism)','68218004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_68227003','68227003','http://snomed.info/sct','Edwardsiella ictaluri (organism)','68227003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_68452003','68452003','http://snomed.info/sct','Salmonella Alexanderpolder (organism)','68452003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_6851005','6851005','http://snomed.info/sct','Salmonella Vietnam (organism)','6851005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_68520000','68520000','http://snomed.info/sct','Salmonella II 6,7:z42:e,n,x:1,6 (organism)','68520000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_68541006','68541006','http://snomed.info/sct','Salmonella II 13,22:l,z28:1,5 (organism)','68541006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_68632005','68632005','http://snomed.info/sct','Salmonella Isuge (organism)','68632005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_68807006','68807006','http://snomed.info/sct','Salmonella Preston (organism)','68807006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_68821008','68821008','http://snomed.info/sct','Salmonella II 52:d:e,n,x,z15 (organism)','68821008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_68891004','68891004','http://snomed.info/sct','Salmonella II 3,10:l,z28:1,5 (organism)','68891004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_68916009','68916009','http://snomed.info/sct','Salmonella Muenster (organism)','68916009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_68937001','68937001','http://snomed.info/sct','Salmonella Itami (organism)','68937001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_69006005','69006005','http://snomed.info/sct','Salmonella Kabete (organism)','69006005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_69027000','69027000','http://snomed.info/sct','Salmonella Sya (organism)','69027000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_69033009','69033009','http://snomed.info/sct','Salmonella Escanaba (organism)','69033009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_69040005','69040005','http://snomed.info/sct','Salmonella Cremieu (organism)','69040005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_69053008','69053008','http://snomed.info/sct','Salmonella Ardwick (organism)','69053008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_69111005','69111005','http://snomed.info/sct','Salmonella Madjorio (organism)','69111005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_69117009','69117009','http://snomed.info/sct','Salmonella Shomolu (organism)','69117009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_69123004','69123004','http://snomed.info/sct','Salmonella Togo (organism)','69123004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_69176009','69176009','http://snomed.info/sct','Salmonella Uhlenhorst (organism)','69176009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_69247002','69247002','http://snomed.info/sct','Salmonella II 17:y:- (organism)','69247002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_69252007','69252007','http://snomed.info/sct','Salmonella Ank (organism)','69252007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_69261007','69261007','http://snomed.info/sct','Salmonella Sambre (organism)','69261007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_6938001','6938001','http://snomed.info/sct','Salmonella Carmel (organism)','6938001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_69432009','69432009','http://snomed.info/sct','Salmonella Zadar (organism)','69432009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_69573008','69573008','http://snomed.info/sct','Salmonella Egusi (organism)','69573008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_6959008','6959008','http://snomed.info/sct','Salmonella Windermere (organism)','6959008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_69669000','69669000','http://snomed.info/sct','Salmonella Shangani (organism)','69669000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_69712009','69712009','http://snomed.info/sct','Salmonella Kambole (organism)','69712009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_69716007','69716007','http://snomed.info/sct','Salmonella Redba (organism)','69716007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_69738009','69738009','http://snomed.info/sct','Salmonella Tonev (organism)','69738009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_69775004','69775004','http://snomed.info/sct','Salmonella Bargny (organism)','69775004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_698020006','698020006','http://snomed.info/sct','Escherichia coli serogroup O28ac (organism)','698020006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_698022003','698022003','http://snomed.info/sct','Escherichia coli serotype O28ac:H25 (organism)','698022003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_69847009','69847009','http://snomed.info/sct','Salmonella Cairns (organism)','69847009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_69937007','69937007','http://snomed.info/sct','Genus Cedecea (organism)','69937007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_70004000','70004000','http://snomed.info/sct','Salmonella Honelis (organism)','70004000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_70194005','70194005','http://snomed.info/sct','Salmonella Dieuppeul (organism)','70194005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_70223004','70223004','http://snomed.info/sct','Salmonella Weybridge (organism)','70223004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_7031002','7031002','http://snomed.info/sct','Salmonella California (organism)','7031002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_70344002','70344002','http://snomed.info/sct','Salmonella Cerro (organism)','70344002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_70426009','70426009','http://snomed.info/sct','Salmonella II, group O:52 (organism)','70426009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_70456000','70456000','http://snomed.info/sct','Salmonella Ahmadi (organism)','70456000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_705173006','705173006','http://snomed.info/sct','Escherichia coli serotype O181:nonmotile (organism)','705173006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_705174000','705174000','http://snomed.info/sct','Escherichia coli serotype O169:H11 (organism)','705174000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_705177007','705177007','http://snomed.info/sct','Escherichia coli serogroup O186 (organism)','705177007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_70605000','70605000','http://snomed.info/sct','Salmonella Manchester (organism)','70605000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_70671008','70671008','http://snomed.info/sct','Salmonella Hisingen (organism)','70671008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_70689009','70689009','http://snomed.info/sct','Salmonella Yarrabah (organism)','70689009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_706993007','706993007','http://snomed.info/sct','Escherichia coli serotype O186:H2 (organism)','706993007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_706994001','706994001','http://snomed.info/sct','Escherichia coli serotype O1:H20 (organism)','706994001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_706995000','706995000','http://snomed.info/sct','Escherichia coli serotype O71:H7 (organism)','706995000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_706996004','706996004','http://snomed.info/sct','Escherichia coli serotype O71:H11 (organism)','706996004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_706997008','706997008','http://snomed.info/sct','Escherichia coli serotype O112:H2 (organism)','706997008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_706998003','706998003','http://snomed.info/sct','Escherichia coli serotype O126:H40 (organism)','706998003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_707335003','707335003','http://snomed.info/sct','Cronobacter universalis (organism)','707335003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_707499005','707499005','http://snomed.info/sct','Escherichia coli serotype O25:H4 (organism)','707499005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_707500001','707500001','http://snomed.info/sct','Escherichia coli serotype O157:H19 (organism)','707500001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_707501002','707501002','http://snomed.info/sct','Escherichia coli serogroup O176 (organism)','707501002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_707502009','707502009','http://snomed.info/sct','Escherichia coli serotype O176:nonmotile (organism)','707502009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_70760001','70760001','http://snomed.info/sct','Salmonella Potosi (organism)','70760001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_708449009','708449009','http://snomed.info/sct','Erwinia oleae (organism)','708449009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_709136002','709136002','http://snomed.info/sct','Salmonella Maumee (organism)','709136002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_709311003','709311003','http://snomed.info/sct','Escherichia coli serogroup O32 (organism)','709311003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_709312005','709312005','http://snomed.info/sct','Escherichia coli serogroup O185 (organism)','709312005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_70939003','70939003','http://snomed.info/sct','Salmonella II 53:z:z6 (organism)','70939003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_70940001','70940001','http://snomed.info/sct','Salmonella Sanjuan (organism)','70940001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_709679001','709679001','http://snomed.info/sct','Escherichia coli serotype O132:H34 (organism)','709679001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_709680003','709680003','http://snomed.info/sct','Escherichia coli serotype O1:H7 (organism)','709680003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_709683001','709683001','http://snomed.info/sct','Escherichia coli serotype O86:H18 (organism)','709683001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_710253004','710253004','http://snomed.info/sct','Escherichia coli O18ac:H7:K1 (organism)','710253004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_71026007','71026007','http://snomed.info/sct','Salmonella Gelsenkirchen (organism)','71026007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_710886005','710886005','http://snomed.info/sct','Escherichia coli 987P (organism)','710886005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_710887001','710887001','http://snomed.info/sct','Escherichia coli F41 (organism)','710887001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_710888006','710888006','http://snomed.info/sct','Escherichia coli K88 (organism)','710888006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_710889003','710889003','http://snomed.info/sct','Escherichia coli K99 (organism)','710889003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_711005','711005','http://snomed.info/sct','Salmonella Tunis (organism)','711005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_71107002','71107002','http://snomed.info/sct','Salmonella Seegefeld (organism)','71107002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_71121000','71121000','http://snomed.info/sct','Salmonella Adeoyo (organism)','71121000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_71236007','71236007','http://snomed.info/sct','Salmonella Middlesbrough (organism)','71236007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_712662001','712662001','http://snomed.info/sct','Carbapenem resistant Enterobacteriaceae (organism)','712662001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_712764007','712764007','http://snomed.info/sct','Salmonella species not Salmonella typhi (organism)','712764007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_712806004','712806004','http://snomed.info/sct','Salmonella Enteritidis phage type 14b (organism)','712806004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_71285002','71285002','http://snomed.info/sct','Salmonella Ruzizi (organism)','71285002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_713141005','713141005','http://snomed.info/sct','Escherichia coli serotype O157:H12 (organism)','713141005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_71316008','71316008','http://snomed.info/sct','Salmonella Guinea (organism)','71316008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_713171002','713171002','http://snomed.info/sct','Klebsiella pneumoniae carbapenemase 2 producing Klebsiella pneumoniae (organism)','713171002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_713416009','713416009','http://snomed.info/sct','Non-Shiga toxin-producing Escherichia coli, serotype O157:H7 (organism)','713416009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_71357001','71357001','http://snomed.info/sct','Salmonella Chomedey (organism)','71357001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_713925008','713925008','http://snomed.info/sct','Multiple drug-resistant Escherichia coli (organism)','713925008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_713926009','713926009','http://snomed.info/sct','Multiple drug-resistant Klebsiella pneumoniae subsp. ozaenae (organism)','713926009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_713928005','713928005','http://snomed.info/sct','Extended spectrum beta-lactamase producing Klebsiella oxytoca (organism)','713928005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_713929002','713929002','http://snomed.info/sct','Extended spectrum beta-lactamase producing Proteus mirabilis (organism)','713929002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_714007005','714007005','http://snomed.info/sct','Carbapenem resistant Enterobacter cloacae (organism)','714007005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_714315002','714315002','http://snomed.info/sct','Multiple drug-resistant Klebsiella pneumoniae (organism)','714315002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_714316001','714316001','http://snomed.info/sct','Multiple drug-resistant Enterobacter asburiae (organism)','714316001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_714317005','714317005','http://snomed.info/sct','Multiple drug-resistant Enterobacter cloacae (organism)','714317005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_71443004','71443004','http://snomed.info/sct','Salmonella Sinstorf (organism)','71443004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_715049006','715049006','http://snomed.info/sct','Salmonella group O:6,7 (organism)','715049006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_715050006','715050006','http://snomed.info/sct','Salmonella group O:3,15 (organism)','715050006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_71520006','71520006','http://snomed.info/sct','Salmonella Antsalova (organism)','71520006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_715206000','715206000','http://snomed.info/sct','Multiple drug-resistant Citrobacter freundii (organism)','715206000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_715306002','715306002','http://snomed.info/sct','Escherichia coli serogroup O108 (organism)','715306002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_715307006','715307006','http://snomed.info/sct','Carbapenem resistant Escherichia coli (organism)','715307006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_715308001','715308001','http://snomed.info/sct','Multiple drug-resistant Klebsiella aerogenes (organism)','715308001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_715309009','715309009','http://snomed.info/sct','Escherichia coli serogroup O64 (organism)','715309009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_715310004','715310004','http://snomed.info/sct','Escherichia coli serogroup O66 (organism)','715310004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_715336006','715336006','http://snomed.info/sct','Shimwellia pseudoproteus (organism)','715336006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_71541000','71541000','http://snomed.info/sct','Salmonella Westphalia (organism)','71541000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_715876007','715876007','http://snomed.info/sct','Escherichia coli serotype O103:H21 (organism)','715876007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_715877003','715877003','http://snomed.info/sct','Enteropathogenic Escherichia coli, serogroup O157 (organism)','715877003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_71605006','71605006','http://snomed.info/sct','Salmonella Toowong (organism)','71605006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_71614001','71614001','http://snomed.info/sct','Salmonella Ouakam (organism)','71614001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_716344002','716344002','http://snomed.info/sct','Genus Pluralibacter (organism)','716344002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_716346000','716346000','http://snomed.info/sct','Pluralibacter gergoviae (organism)','716346000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_71672005','71672005','http://snomed.info/sct','Salmonella Malika (organism)','71672005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_71681000112102','71681000112102','http://snomed.info/sct','Escherichia coli serotype O150:H8 (organism)','71681000112102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_71711000','71711000','http://snomed.info/sct','Salmonella Minna (organism)','71711000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_71733003','71733003','http://snomed.info/sct','Salmonella Molesey (organism)','71733003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_717357002','717357002','http://snomed.info/sct','Escherichia coli serotype O128ab:H2 (organism)','717357002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_717644004','717644004','http://snomed.info/sct','Hafnia paralvei (organism)','717644004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_717652001','717652001','http://snomed.info/sct','Genus Lelliottia (organism)','717652001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_71768003','71768003','http://snomed.info/sct','Salmonella Give (organism)','71768003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_717974005','717974005','http://snomed.info/sct','Siccibacter turicensis (organism)','717974005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_71865006','71865006','http://snomed.info/sct','Salmonella Heidelberg (organism)','71865006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_718796007','718796007','http://snomed.info/sct','Genus Gibbsiella (organism)','718796007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_718797003','718797003','http://snomed.info/sct','Gibbsiella quercinecans (organism)','718797003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_718798008','718798008','http://snomed.info/sct','Hafnia psychrotolerans (organism)','718798008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_718819006','718819006','http://snomed.info/sct','Genus Rosenbergiella (organism)','718819006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_718820000','718820000','http://snomed.info/sct','Rosenbergiella nectarea (organism)','718820000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_719772008','719772008','http://snomed.info/sct','Hydrogen sulfide producing Escherichia coli (organism)','719772008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_719792001','719792001','http://snomed.info/sct','Carbapenem resistant Klebsiella oxytoca (organism)','719792001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_719793006','719793006','http://snomed.info/sct','Carbapenem resistant Proteus mirabilis (organism)','719793006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_71991008','71991008','http://snomed.info/sct','Salmonella Nanga (organism)','71991008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_72029002','72029002','http://snomed.info/sct','Salmonella Rittersbach (organism)','72029002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_72033009','72033009','http://snomed.info/sct','Salmonella Albany (organism)','72033009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_720607001','720607001','http://snomed.info/sct','Klebsiella species, not Klebsiella pneumoniae and not Klebsiella oxytoca (organism)','720607001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_72072008','72072008','http://snomed.info/sct','Salmonella Belem (organism)','72072008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_720961001','720961001','http://snomed.info/sct','Salmonella Drac (organism)','720961001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_721062001','721062001','http://snomed.info/sct','Salmonella enterica subspecies enterica serovar O rough: nonmotile (organism)','721062001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_72119007','72119007','http://snomed.info/sct','Salmonella Kingabwa (organism)','72119007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_72132002','72132002','http://snomed.info/sct','Salmonella Weston (organism)','72132002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_721885004','721885004','http://snomed.info/sct','Centers for Disease Control and Prevention (CDC) Enteric group 69 (organism)','721885004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_721892009','721892009','http://snomed.info/sct','Escherichia coli not O157:H7 (organism)','721892009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_721893004','721893004','http://snomed.info/sct','Escherichia coli serotype O153:H6 (organism)','721893004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_721894005','721894005','http://snomed.info/sct','Escherichia coli serotype O181:H16 (organism)','721894005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_721909006','721909006','http://snomed.info/sct','Extended spectrum beta-lactamase producing Citrobacter freundii (organism)','721909006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_721910001','721910001','http://snomed.info/sct','Extended spectrum beta-lactamase producing Enterobacter cloacae (organism)','721910001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_721911002','721911002','http://snomed.info/sct','Extended spectrum beta-lactamase producing Shigella sonnei (organism)','721911002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_721950003','721950003','http://snomed.info/sct','Enterobacter cloacae subspecies cloacae (organism)','721950003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_721980008','721980008','http://snomed.info/sct','Shigella flexneri serovar 6 biotype Manchester (organism)','721980008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_723344008','723344008','http://snomed.info/sct','Genus Siccibacter (organism)','723344008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_723345009','723345009','http://snomed.info/sct','Siccibacter colletis (organism)','723345009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_72414009','72414009','http://snomed.info/sct','Salmonella II 13,23:l,z28:1,5 (organism)','72414009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_72461005','72461005','http://snomed.info/sct','Escherichia fergusonii (organism)','72461005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_72514007','72514007','http://snomed.info/sct','Salmonella Karachi (organism)','72514007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_72539003','72539003','http://snomed.info/sct','Salmonella II 13,23:l,z28:z6 (organism)','72539003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_725506000','725506000','http://snomed.info/sct','Escherichia coli serogroup O75 (organism)','725506000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_726498001','726498001','http://snomed.info/sct','Fluoroquinolone resistant Salmonella (organism)','726498001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_726499009','726499009','http://snomed.info/sct','Fluoroquinolone resistant Shigella (organism)','726499009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_726500000','726500000','http://snomed.info/sct','Extended spectrum beta-lactamase producing Enterobacteriaceae (organism)','726500000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_72706004','72706004','http://snomed.info/sct','Salmonella II 58:z10:1,6 (organism)','72706004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_72828006','72828006','http://snomed.info/sct','Salmonella Kidderminster (organism)','72828006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_72895000','72895000','http://snomed.info/sct','Salmonella Strasbourg (organism)','72895000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_72958001','72958001','http://snomed.info/sct','Salmonella Dumfries (organism)','72958001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_7303003','7303003','http://snomed.info/sct','Salmonella II 28:m,t:(e,n,x) (organism)','7303003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_73087009','73087009','http://snomed.info/sct','Salmonella IV 38:z4,z23:- (organism)','73087009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_73249008','73249008','http://snomed.info/sct','Salmonella Victoria (organism)','73249008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_73321004','73321004','http://snomed.info/sct','Salmonella Fareham (organism)','73321004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_733501004','733501004','http://snomed.info/sct','Salmonella II rough:l,z28:z6 (organism)','733501004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_733593005','733593005','http://snomed.info/sct','Escherichia coli serogroup O (organism)','733593005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_733594004','733594004','http://snomed.info/sct','Escherichia coli serogroup O:nonmotile (organism)','733594004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_733595003','733595003','http://snomed.info/sct','Enterohemorrhagic Escherichia coli serogroup O:nonmotile (organism)','733595003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_733596002','733596002','http://snomed.info/sct','Enteroinvasive Escherichia coli serogroup O:nonmotile (organism)','733596002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_734200008','734200008','http://snomed.info/sct','Carbapenem resistant Klebsiella aerogenes (organism)','734200008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_734201007','734201007','http://snomed.info/sct','Carbapenem resistant Enterobacter cloacae complex (organism)','734201007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_734351004','734351004','http://snomed.info/sct','Carbapenemase-producing Enterobacteriaceae (organism)','734351004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_734352006','734352006','http://snomed.info/sct','Carbapenemase-producing Klebsiella aerogenes (organism)','734352006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_734353001','734353001','http://snomed.info/sct','Carbapenemase-producing Enterobacter cloacae complex (organism)','734353001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_734436009','734436009','http://snomed.info/sct','Salmonella Lamphun (organism)','734436009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_73525009','73525009','http://snomed.info/sct','Salmonella Enteritidis (organism)','73525009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_735270003','735270003','http://snomed.info/sct','Enterohemorrhagic Escherichia coli not O157:H7 (organism)','735270003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_73541005','73541005','http://snomed.info/sct','Salmonella Bochum (organism)','73541005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_737528008','737528008','http://snomed.info/sct','Carbapenemase-producing Escherichia coli (organism)','737528008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_737529000','737529000','http://snomed.info/sct','Carbapenemase-producing Enterobacter cloacae (organism)','737529000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_738504009','738504009','http://snomed.info/sct','Enterobacter mori (organism)','738504009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_738514000','738514000','http://snomed.info/sct','Escherichia coli serogroup O77 (organism)','738514000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_738773001','738773001','http://snomed.info/sct','Escherichia coli serogroup O134 (organism)','738773001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_73981008','73981008','http://snomed.info/sct','Salmonella Inchpark (organism)','73981008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_74092000','74092000','http://snomed.info/sct','Salmonella Fortune (organism)','74092000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_74115000','74115000','http://snomed.info/sct','Salmonella Widemarsh (organism)','74115000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_74122008','74122008','http://snomed.info/sct','Salmonella Portland (organism)','74122008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_74357002','74357002','http://snomed.info/sct','Leminorella grimontii (organism)','74357002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_74464001','74464001','http://snomed.info/sct','Salmonella Doorn (organism)','74464001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_74613008','74613008','http://snomed.info/sct','Salmonella Trachau (organism)','74613008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_74630005','74630005','http://snomed.info/sct','Salmonella Hofit (organism)','74630005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_74649009','74649009','http://snomed.info/sct','Salmonella Macallen (organism)','74649009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_7467004','7467004','http://snomed.info/sct','Salmonella Gwoza (organism)','7467004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_74672006','74672006','http://snomed.info/sct','Edwardsiella tarda (organism)','74672006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_74705004','74705004','http://snomed.info/sct','Salmonella Suelldorf (organism)','74705004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_74707007','74707007','http://snomed.info/sct','Salmonella Tudu (organism)','74707007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_74731002','74731002','http://snomed.info/sct','Salmonella II, group O:57 (organism)','74731002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_748001','748001','http://snomed.info/sct','Salmonella Chandans (organism)','748001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_749009','749009','http://snomed.info/sct','Salmonella Truro (organism)','749009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_74936002','74936002','http://snomed.info/sct','Salmonella Abidjan (organism)','74936002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_74958000','74958000','http://snomed.info/sct','Salmonella Gori (organism)','74958000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_75032006','75032006','http://snomed.info/sct','Genus Klebsiella (organism)','75032006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_75048007','75048007','http://snomed.info/sct','Salmonella Nashua (organism)','75048007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_75090001','75090001','http://snomed.info/sct','Salmonella Kimuenza (organism)','75090001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_75104004','75104004','http://snomed.info/sct','Salmonella Bradford (organism)','75104004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_75114008','75114008','http://snomed.info/sct','Salmonella Mim (organism)','75114008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_7516004','7516004','http://snomed.info/sct','Salmonella Malmoe (organism)','7516004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_75173009','75173009','http://snomed.info/sct','Salmonella Pisa (organism)','75173009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_75196009','75196009','http://snomed.info/sct','Salmonella enterica subspecies enterica serovar Butantan (organism)','75196009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_75293006','75293006','http://snomed.info/sct','Salmonella II 18:m,t:1,5 (organism)','75293006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_75329000','75329000','http://snomed.info/sct','Salmonella Casablanca (organism)','75329000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_75343005','75343005','http://snomed.info/sct','Salmonella Aminatu (organism)','75343005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_75347006','75347006','http://snomed.info/sct','Salmonella Cannonhill (organism)','75347006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_75380004','75380004','http://snomed.info/sct','Salmonella Bangkok (organism)','75380004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_75447005','75447005','http://snomed.info/sct','Salmonella Straengnaes (organism)','75447005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_75464008','75464008','http://snomed.info/sct','Budvicia aquatica (organism)','75464008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_75486009','75486009','http://snomed.info/sct','Salmonella Stratford (organism)','75486009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_75515002','75515002','http://snomed.info/sct','Salmonella Madiago (organism)','75515002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_75676000','75676000','http://snomed.info/sct','Salmonella Wippra (organism)','75676000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_75848006','75848006','http://snomed.info/sct','Salmonella Abaetetuba (organism)','75848006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_75881007','75881007','http://snomed.info/sct','Salmonella Fischerhuette (organism)','75881007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_75923007','75923007','http://snomed.info/sct','Salmonella Albert (organism)','75923007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_75972000','75972000','http://snomed.info/sct','Genus Citrobacter (organism)','75972000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_760000','760000','http://snomed.info/sct','Salmonella Djelfa (organism)','760000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_76027002','76027002','http://snomed.info/sct','Salmonella Chichiri (organism)','76027002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_76073000','76073000','http://snomed.info/sct','Salmonella Aba (organism)','76073000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_761001','761001','http://snomed.info/sct','Salmonella Runby (organism)','761001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_76212007','76212007','http://snomed.info/sct','Salmonella Milwaukee (organism)','76212007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_76337004','76337004','http://snomed.info/sct','Salmonella Langenhorn (organism)','76337004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_76347001','76347001','http://snomed.info/sct','Salmonella Tomelilla (organism)','76347001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_76350003','76350003','http://snomed.info/sct','Salmonella Nyanza (organism)','76350003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_76354007','76354007','http://snomed.info/sct','Salmonella Atakpame (organism)','76354007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_76356009','76356009','http://snomed.info/sct','Salmonella Morotai (organism)','76356009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_76384004','76384004','http://snomed.info/sct','Salmonella II 6,7:(g),m,(s),t:1,5 (organism)','76384004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_76425002','76425002','http://snomed.info/sct','Salmonella II 3,10:b:z39 (organism)','76425002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_765102008','765102008','http://snomed.info/sct','Genus Franconibacter (organism)','765102008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_76657005','76657005','http://snomed.info/sct','Salmonella Heron (organism)','76657005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_76694001','76694001','http://snomed.info/sct','Hafnia alvei (organism)','76694001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_76702004','76702004','http://snomed.info/sct','Salmonella Freiburg (organism)','76702004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_76778004','76778004','http://snomed.info/sct','Salmonella Zongo (organism)','76778004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_768157006','768157006','http://snomed.info/sct','Enterobacter xiangfangensis (organism)','768157006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_76921003','76921003','http://snomed.info/sct','Salmonella Gatow (organism)','76921003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_76968008','76968008','http://snomed.info/sct','Salmonella Fajara (organism)','76968008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_76983003','76983003','http://snomed.info/sct','Salmonella Southampton (organism)','76983003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_77022000','77022000','http://snomed.info/sct','Salmonella Oskarshamn (organism)','77022000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_770390002','770390002','http://snomed.info/sct','Extended spectrum beta-lactamase producing Klebsiella (organism)','770390002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_770392005','770392005','http://snomed.info/sct','Carbapenemase-producing Raoultella (organism)','770392005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_77046007','77046007','http://snomed.info/sct','Salmonella II, group O:65 (organism)','77046007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_77114009','77114009','http://snomed.info/sct','Salmonella Dresden (organism)','77114009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_77117002','77117002','http://snomed.info/sct','Salmonella II 16:z6:1,6 (organism)','77117002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_77145008','77145008','http://snomed.info/sct','Salmonella Steinwerder (organism)','77145008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_771467000','771467000','http://snomed.info/sct','Genus Metakosakonia (organism)','771467000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_771468005','771468005','http://snomed.info/sct','Metakosakonia massiliensis (organism)','771468005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_7717005','7717005','http://snomed.info/sct','Salmonella Adana (organism)','7717005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_77211008','77211008','http://snomed.info/sct','Salmonella Stellingen (organism)','77211008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_77231007','77231007','http://snomed.info/sct','Salmonella Doba (organism)','77231007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_7730006','7730006','http://snomed.info/sct','Salmonella Rawash (organism)','7730006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_77349005','77349005','http://snomed.info/sct','Salmonella Poeseldorf (organism)','77349005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_77352002','77352002','http://snomed.info/sct','Genus Shigella (organism)','77352002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_773751004','773751004','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O123:H2 (organism)','773751004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_77393005','77393005','http://snomed.info/sct','Salmonella Tione (organism)','77393005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_77447006','77447006','http://snomed.info/sct','Salmonella II 48:b:z6 (organism)','77447006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_7747007','7747007','http://snomed.info/sct','Salmonella Kikoma (organism)','7747007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_77511007','77511007','http://snomed.info/sct','Salmonella Bazenheid (organism)','77511007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_77576006','77576006','http://snomed.info/sct','Salmonella Duesseldorf (organism)','77576006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_77584005','77584005','http://snomed.info/sct','Salmonella Muenchen (organism)','77584005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_77787000','77787000','http://snomed.info/sct','Salmonella Antonio (organism)','77787000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_77822004','77822004','http://snomed.info/sct','Salmonella Amager (organism)','77822004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_77834007','77834007','http://snomed.info/sct','Salmonella Toronto (organism)','77834007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_77842008','77842008','http://snomed.info/sct','Salmonella Amherstiana (organism)','77842008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_77843003','77843003','http://snomed.info/sct','Salmonella Mgulani (organism)','77843003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_77961006','77961006','http://snomed.info/sct','Salmonella Chagoua (organism)','77961006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_78008003','78008003','http://snomed.info/sct','Salmonella II 6,7:d:1,7 (organism)','78008003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_78040004','78040004','http://snomed.info/sct','Salmonella IV 40:m,t:- (organism)','78040004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_78041000','78041000','http://snomed.info/sct','Salmonella II, group O:51 (organism)','78041000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_78045009','78045009','http://snomed.info/sct','Salmonella Mundonobo (organism)','78045009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_781054004','781054004','http://snomed.info/sct','Klebsiella quasipneumoniae (organism)','781054004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_781055003','781055003','http://snomed.info/sct','Klebsiella quasipneumoniae subspecies similipneumoniae (organism)','781055003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_781056002','781056002','http://snomed.info/sct','Klebsiella quasipneumoniae subspecies quasipneumoniae (organism)','781056002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_78139003','78139003','http://snomed.info/sct','Salmonella Arechavaleta (organism)','78139003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782208003','782208003','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O28 (organism)','782208003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782209006','782209006','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O40 (organism)','782209006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782210001','782210001','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O50 (organism)','782210001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782217003','782217003','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O127 (organism)','782217003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782219000','782219000','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O17 (organism)','782219000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782220006','782220006','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O21 (organism)','782220006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782221005','782221005','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O22 (organism)','782221005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782223008','782223008','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O24 (organism)','782223008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782225001','782225001','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O49 (organism)','782225001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782226000','782226000','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O1 (organism)','782226000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782227009','782227009','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O2 (organism)','782227009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782228004','782228004','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O3 (organism)','782228004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782229007','782229007','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O5 (organism)','782229007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782231003','782231003','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O6 (organism)','782231003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782232005','782232005','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O8 (organism)','782232005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782233000','782233000','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O9 (organism)','782233000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782234006','782234006','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O11 (organism)','782234006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782236008','782236008','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O12 (organism)','782236008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782237004','782237004','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O14 (organism)','782237004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782239001','782239001','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O149 (organism)','782239001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782240004','782240004','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O151 (organism)','782240004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782241000','782241000','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O152 (organism)','782241000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782242007','782242007','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O153 (organism)','782242007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782243002','782243002','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O156 (organism)','782243002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782244008','782244008','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O162 (organism)','782244008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782245009','782245009','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O163 (organism)','782245009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782246005','782246005','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O165 (organism)','782246005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782247001','782247001','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O55 (organism)','782247001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782248006','782248006','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O69 (organism)','782248006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782249003','782249003','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O175 (organism)','782249003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782250003','782250003','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O177 (organism)','782250003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782252006','782252006','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O178 (organism)','782252006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782253001','782253001','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O181 (organism)','782253001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782254007','782254007','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O186 (organism)','782254007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782255008','782255008','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O74 (organism)','782255008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782256009','782256009','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O76 (organism)','782256009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782257000','782257000','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O77 (organism)','782257000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782258005','782258005','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O79 (organism)','782258005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782259002','782259002','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O80 (organism)','782259002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782260007','782260007','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O104 (organism)','782260007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782261006','782261006','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O109 (organism)','782261006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782262004','782262004','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O110 (organism)','782262004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782263009','782263009','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O112 (organism)','782263009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782265002','782265002','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O113 (organism)','782265002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782266001','782266001','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O115 (organism)','782266001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782267005','782267005','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O118 (organism)','782267005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782268000','782268000','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O70 (organism)','782268000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782269008','782269008','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O71 (organism)','782269008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782270009','782270009','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O73 (organism)','782270009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782274000','782274000','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O128 (organism)','782274000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782275004','782275004','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O130 (organism)','782275004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782276003','782276003','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O131 (organism)','782276003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782277007','782277007','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O137 (organism)','782277007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782278002','782278002','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O141 (organism)','782278002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782279005','782279005','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O146 (organism)','782279005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782280008','782280008','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O83 (organism)','782280008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782281007','782281007','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O88 (organism)','782281007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782282000','782282000','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O91 (organism)','782282000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782287006','782287006','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O169 (organism)','782287006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782288001','782288001','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O174 (organism)','782288001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782289009','782289009','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O119 (organism)','782289009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782290000','782290000','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O123 (organism)','782290000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782291001','782291001','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O126 (organism)','782291001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782292008','782292008','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O137:H6 (organism)','782292008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782293003','782293003','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O141:H49 (organism)','782293003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782294009','782294009','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O146:H21 (organism)','782294009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782297002','782297002','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O149:H49 (organism)','782297002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782298007','782298007','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O151:H2 (organism)','782298007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782299004','782299004','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O169:H11 (organism)','782299004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782300007','782300007','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O174:H2 (organism)','782300007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782301006','782301006','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O174:H21 (organism)','782301006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782302004','782302004','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O175:H10 (organism)','782302004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782303009','782303009','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O178:H19 (organism)','782303009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782304003','782304003','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O181:H4 (organism)','782304003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782305002','782305002','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O186:H2 (organism)','782305002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782306001','782306001','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O130:H11 (organism)','782306001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782307005','782307005','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O131:H27 (organism)','782307005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782308000','782308000','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O146:H28 (organism)','782308000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782312006','782312006','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O156:H25 (organism)','782312006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782313001','782313001','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O162:H33 (organism)','782313001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782314007','782314007','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O70:H11 (organism)','782314007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782315008','782315008','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O71:H7 (organism)','782315008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782317000','782317000','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O71:H11 (organism)','782317000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782318005','782318005','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O1:H20 (organism)','782318005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782319002','782319002','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O3:H8 (organism)','782319002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782320008','782320008','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O6:H34 (organism)','782320008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782321007','782321007','http://snomed.info/sct','Phytobacter diazotrophicus (organism)','782321007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782322000','782322000','http://snomed.info/sct','Genus Phytobacter (organism)','782322000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782323005','782323005','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O8:H19 (organism)','782323005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782324004','782324004','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O11:H16 (organism)','782324004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782328001','782328001','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O103:H11 (organism)','782328001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782341002','782341002','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O103:H25 (organism)','782341002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782342009','782342009','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O104:H7 (organism)','782342009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782343004','782343004','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O17:H45 (organism)','782343004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782344005','782344005','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O21:H55 (organism)','782344005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782345006','782345006','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O24:H41 (organism)','782345006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782346007','782346007','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O28:H9 (organism)','782346007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782347003','782347003','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O40:H10 (organism)','782347003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782348008','782348008','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O49:H21 (organism)','782348008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782349000','782349000','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O69:H11 (organism)','782349000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782350000','782350000','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O151:H16 (organism)','782350000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782351001','782351001','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O152:H2 (organism)','782351001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782352008','782352008','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O109:H21 (organism)','782352008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782353003','782353003','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O110:H28 (organism)','782353003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782354009','782354009','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O111:H11 (organism)','782354009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782355005','782355005','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O112:H2 (organism)','782355005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782356006','782356006','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O115:H10 (organism)','782356006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782357002','782357002','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O123:H11 (organism)','782357002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782358007','782358007','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O126:H27 (organism)','782358007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782359004','782359004','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O126:H40 (organism)','782359004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782360009','782360009','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O127:H16 (organism)','782360009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782361008','782361008','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O128:H45 (organism)','782361008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782362001','782362001','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O73:H18 (organism)','782362001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782363006','782363006','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O74:H52 (organism)','782363006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782364000','782364000','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O76:H7 (organism)','782364000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782365004','782365004','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O76:H19 (organism)','782365004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782366003','782366003','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O77:H45 (organism)','782366003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782367007','782367007','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O88:H25 (organism)','782367007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782368002','782368002','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O91:H14 (organism)','782368002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_78243006','78243006','http://snomed.info/sct','Salmonella Newmexico (organism)','78243006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_782522004','782522004','http://snomed.info/sct','Citrobacter freundii complex (organism)','782522004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_78256004','78256004','http://snomed.info/sct','Salmonella Vancouver (organism)','78256004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_78280000','78280000','http://snomed.info/sct','Salmonella Kimpese (organism)','78280000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_78287002','78287002','http://snomed.info/sct','Salmonella II 35:l,z28:- (organism)','78287002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_7830000','7830000','http://snomed.info/sct','Salmonella Hallfold (organism)','7830000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_783138941000087102','783138941000087102','http://snomed.info/sct','Shigella dysenteriae, serovar 16 (organism)','783138941000087102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_783344000','783344000','http://snomed.info/sct','Salmonella enterica subspecies enterica serovar 4,5,12:-:- (organism)','783344000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_78367001','78367001','http://snomed.info/sct','Salmonella Bingerville (organism)','78367001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_784384000','784384000','http://snomed.info/sct','Escherichia coli serotype O rough:H5 (organism)','784384000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_78448004','78448004','http://snomed.info/sct','Salmonella Moero (organism)','78448004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_78474005','78474005','http://snomed.info/sct','Salmonella Gateshead (organism)','78474005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_78528008','78528008','http://snomed.info/sct','Salmonella Warengo (organism)','78528008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_78550009','78550009','http://snomed.info/sct','Salmonella Ipswich (organism)','78550009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_785853000','785853000','http://snomed.info/sct','Escherichia coli serotype O8:H12 (organism)','785853000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_785854006','785854006','http://snomed.info/sct','Escherichia coli serotype O121:H1 (organism)','785854006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_785855007','785855007','http://snomed.info/sct','Escherichia coli serogroup O81 (organism)','785855007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_785856008','785856008','http://snomed.info/sct','Escherichia coli serotype O81:H27 (organism)','785856008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_785859001','785859001','http://snomed.info/sct','Salmonella Farmingdale (organism)','785859001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_78780001','78780001','http://snomed.info/sct','Salmonella Colorado (organism)','78780001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_787906003','787906003','http://snomed.info/sct','Salmonella Enteritidis phage type 8 (organism)','787906003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_788035006','788035006','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O71:H8 (organism)','788035006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_78853000','78853000','http://snomed.info/sct','Salmonella II 1,40:g,t:1,5 (organism)','78853000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_78893002','78893002','http://snomed.info/sct','Salmonella Maiduguri (organism)','78893002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_78907006','78907006','http://snomed.info/sct','Salmonella Good (organism)','78907006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_789648002','789648002','http://snomed.info/sct','Genus Pseudocitrobacter (organism)','789648002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_78970007','78970007','http://snomed.info/sct','Salmonella Seattle (organism)','78970007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_79128009','79128009','http://snomed.info/sct','Salmonella Paratyphi A (organism)','79128009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_79153007','79153007','http://snomed.info/sct','Salmonella Tennessee (organism)','79153007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_79238006','79238006','http://snomed.info/sct','Salmonella Dapango (organism)','79238006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_79264000','79264000','http://snomed.info/sct','Salmonella Pramiso (organism)','79264000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_79270006','79270006','http://snomed.info/sct','Salmonella II 6,7:z:z6 (organism)','79270006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_792851007','792851007','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O121 (organism)','792851007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_792853005','792853005','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O145 (organism)','792853005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_792860004','792860004','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O111 (organism)','792860004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_792861000','792861000','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O103 (organism)','792861000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_792897009','792897009','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O45 (organism)','792897009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_792898004','792898004','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O26 (organism)','792898004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_792899007','792899007','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O157 (organism)','792899007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_79344007','79344007','http://snomed.info/sct','Salmonella Leopoldville (organism)','79344007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_7943004','7943004','http://snomed.info/sct','Salmonella Lekke (organism)','7943004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_79475004','79475004','http://snomed.info/sct','Salmonella Tamberma (organism)','79475004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_79570007','79570007','http://snomed.info/sct','Salmonella Kokomlemle (organism)','79570007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_79596009','79596009','http://snomed.info/sct','Salmonella Ligna (organism)','79596009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_79617006','79617006','http://snomed.info/sct','Salmonella Jos (organism)','79617006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_7963006','7963006','http://snomed.info/sct','Salmonella IV, group O:57 (organism)','7963006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_79905007','79905007','http://snomed.info/sct','Salmonella Anecho (organism)','79905007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_79910006','79910006','http://snomed.info/sct','Salmonella Caen (organism)','79910006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_79946002','79946002','http://snomed.info/sct','Erwinia mallotivora (organism)','79946002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_800007','800007','http://snomed.info/sct','Salmonella Offa (organism)','800007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_80014004','80014004','http://snomed.info/sct','Salmonella Concord (organism)','80014004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_80047008','80047008','http://snomed.info/sct','Salmonella Tinda (organism)','80047008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_80058004','80058004','http://snomed.info/sct','Salmonella Shannon (organism)','80058004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_80087003','80087003','http://snomed.info/sct','Salmonella Teko (organism)','80087003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_80177000','80177000','http://snomed.info/sct','Salmonella Bignona (organism)','80177000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_80232006','80232006','http://snomed.info/sct','Salmonella Choleraesuis (organism)','80232006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_80268001','80268001','http://snomed.info/sct','Salmonella Montevideo (organism)','80268001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_8031000146105','8031000146105','http://snomed.info/sct','Genus Kosakonia (organism)','8031000146105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_80326003','80326003','http://snomed.info/sct','Salmonella Mampong (organism)','80326003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_8044005','8044005','http://snomed.info/sct','Salmonella Bareilly (organism)','8044005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_80456008','80456008','http://snomed.info/sct','Salmonella Rubislaw (organism)','80456008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_80508000','80508000','http://snomed.info/sct','Salmonella Boecker (organism)','80508000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_8051001','8051001','http://snomed.info/sct','Salmonella Homosassa (organism)','8051001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_8052008','8052008','http://snomed.info/sct','Salmonella Agoueve (organism)','8052008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_80563006','80563006','http://snomed.info/sct','Salmonella Kampala (organism)','80563006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_80579007','80579007','http://snomed.info/sct','Salmonella Linton (organism)','80579007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_8058007','8058007','http://snomed.info/sct','Salmonella Sinthia (organism)','8058007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_80627004','80627004','http://snomed.info/sct','Salmonella Agona (organism)','80627004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_80728004','80728004','http://snomed.info/sct','Salmonella Baguirmi (organism)','80728004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_8077009','8077009','http://snomed.info/sct','Salmonella II 1,9,12,(46),27:z10:z39 (organism)','8077009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_80841005','80841005','http://snomed.info/sct','Salmonella Cayar (organism)','80841005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_8101000146104','8101000146104','http://snomed.info/sct','Genus Shimwellia (organism)','8101000146104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_81030003','81030003','http://snomed.info/sct','Salmonella Masembe (organism)','81030003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_81265007','81265007','http://snomed.info/sct','Salmonella Albuquerque (organism)','81265007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_81340008','81340008','http://snomed.info/sct','Salmonella Bolton (organism)','81340008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_81490006','81490006','http://snomed.info/sct','Salmonella Balcones (organism)','81490006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_81493008','81493008','http://snomed.info/sct','Salmonella Moussoro (organism)','81493008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_81528009','81528009','http://snomed.info/sct','Salmonella II 38:b:1,2 (organism)','81528009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_81567003','81567003','http://snomed.info/sct','Salmonella II 41:b:1,5 (organism)','81567003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_81603009','81603009','http://snomed.info/sct','Salmonella Epinay (organism)','81603009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_816049003','816049003','http://snomed.info/sct','Carbapenem-resistant Serratia marcescens (organism)','816049003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_816085003','816085003','http://snomed.info/sct','Multidrug-resistant Enterobacter cloacae complex (organism)','816085003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_81614007','81614007','http://snomed.info/sct','Salmonella Litchfield (organism)','81614007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_81662001','81662001','http://snomed.info/sct','Salmonella Uithof (organism)','81662001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_81684001','81684001','http://snomed.info/sct','Salmonella Berlin (organism)','81684001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_81740006','81740006','http://snomed.info/sct','Salmonella Nijmegen (organism)','81740006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_81781003','81781003','http://snomed.info/sct','Salmonella Thetford (organism)','81781003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_81807008','81807008','http://snomed.info/sct','Salmonella Marshall (organism)','81807008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_8181000146108','8181000146108','http://snomed.info/sct','Kosakonia radicincitans (organism)','8181000146108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_81834006','81834006','http://snomed.info/sct','Salmonella Sekondi (organism)','81834006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_81938008','81938008','http://snomed.info/sct','Salmonella Bovismorbificans (organism)','81938008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_81978001','81978001','http://snomed.info/sct','Salmonella Bron (organism)','81978001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_81994008','81994008','http://snomed.info/sct','Salmonella Guerin (organism)','81994008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_82071007','82071007','http://snomed.info/sct','Salmonella Infantis (organism)','82071007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_82098006','82098006','http://snomed.info/sct','Salmonella Niarembe (organism)','82098006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_82140000','82140000','http://snomed.info/sct','Salmonella Uccle (organism)','82140000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_82241007','82241007','http://snomed.info/sct','Salmonella Encino (organism)','82241007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_82243005','82243005','http://snomed.info/sct','Salmonella Kaolack (organism)','82243005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_82364007','82364007','http://snomed.info/sct','Salmonella Bredeney (organism)','82364007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_8249007','8249007','http://snomed.info/sct','Salmonella Denver (organism)','8249007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_82496003','82496003','http://snomed.info/sct','Salmonella Winterthur (organism)','82496003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_82586009','82586009','http://snomed.info/sct','Salmonella II 45:m,t:1,5 (organism)','82586009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_82647001','82647001','http://snomed.info/sct','Salmonella Blegdam (organism)','82647001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_82666001','82666001','http://snomed.info/sct','Salmonella Dugbe (organism)','82666001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_82781001','82781001','http://snomed.info/sct','Salmonella Sara (organism)','82781001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_82784009','82784009','http://snomed.info/sct','Salmonella Gege (organism)','82784009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_82829005','82829005','http://snomed.info/sct','Salmonella Wichita (organism)','82829005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_82938006','82938006','http://snomed.info/sct','Salmonella Fanti (organism)','82938006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_82957002','82957002','http://snomed.info/sct','Salmonella Rechovot (organism)','82957002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_82997004','82997004','http://snomed.info/sct','Salmonella Hull (organism)','82997004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_8301000146102','8301000146102','http://snomed.info/sct','Tatumella terrea (organism)','8301000146102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_83013006','83013006','http://snomed.info/sct','Salmonella Chailey (organism)','83013006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_83016003','83016003','http://snomed.info/sct','Salmonella Kuessel (organism)','83016003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_830231008','830231008','http://snomed.info/sct','Escherichia coli serogroup O93 (organism)','830231008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_8307000','8307000','http://snomed.info/sct','Salmonella Lille (organism)','8307000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_8311000146100','8311000146100','http://snomed.info/sct','Tatumella punctata (organism)','8311000146100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_83138004','83138004','http://snomed.info/sct','Salmonella Nagoya (organism)','83138004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_83141008','83141008','http://snomed.info/sct','Salmonella Kedougou (organism)','83141008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_83148002','83148002','http://snomed.info/sct','Salmonella Bama (organism)','83148002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_8321000146105','8321000146105','http://snomed.info/sct','Tatumella citrea (organism)','8321000146105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_83230004','83230004','http://snomed.info/sct','Salmonella Belfast (organism)','83230004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_83254009','83254009','http://snomed.info/sct','Salmonella Angouleme (organism)','83254009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_83285000','83285000','http://snomed.info/sct','Enteropathogenic Escherichia coli (organism)','83285000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_83318007','83318007','http://snomed.info/sct','Salmonella Abortusovis (organism)','83318007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_8339007','8339007','http://snomed.info/sct','Salmonella Jangwani (organism)','8339007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_83479005','83479005','http://snomed.info/sct','Salmonella II 1,40:g,t:e,n,x (organism)','83479005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_83560005','83560005','http://snomed.info/sct','Salmonella Moualine (organism)','83560005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_8361000146103','8361000146103','http://snomed.info/sct','Shimwellia blattae (organism)','8361000146103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_83753002','83753002','http://snomed.info/sct','Salmonella Tiergarten (organism)','83753002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_83767006','83767006','http://snomed.info/sct','Cedecea neteri (organism)','83767006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_8379003','8379003','http://snomed.info/sct','Salmonella Tucson (organism)','8379003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_83795006','83795006','http://snomed.info/sct','Salmonella Koketime (organism)','83795006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_838549008','838549008','http://snomed.info/sct','Shiga toxin-producing Escherichia coli (organism)','838549008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_83893008','83893008','http://snomed.info/sct','Salmonella Juba (organism)','83893008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_83952001','83952001','http://snomed.info/sct','Salmonella IV 41:z4,z23:- (organism)','83952001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_840375007','840375007','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O100 (organism)','840375007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_840376008','840376008','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O108 (organism)','840376008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_840377004','840377004','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O142 (organism)','840377004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_840378009','840378009','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O148 (organism)','840378009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_840379001','840379001','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O150 (organism)','840379001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_840380003','840380003','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O159 (organism)','840380003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_840381004','840381004','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O160 (organism)','840381004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_840382006','840382006','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O176 (organism)','840382006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_840383001','840383001','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O20 (organism)','840383001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_840384007','840384007','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O27 (organism)','840384007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_840385008','840385008','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O29 (organism)','840385008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_840386009','840386009','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O38 (organism)','840386009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_840387000','840387000','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O42 (organism)','840387000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_840388005','840388005','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O44 (organism)','840388005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_840389002','840389002','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O48 (organism)','840389002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_840390006','840390006','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O60 (organism)','840390006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_840391005','840391005','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O63 (organism)','840391005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_840392003','840392003','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O64 (organism)','840392003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_840393008','840393008','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O75 (organism)','840393008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_840394002','840394002','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O81 (organism)','840394002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_84044008','84044008','http://snomed.info/sct','Salmonella Minnesota (organism)','84044008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_840530005','840530005','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O85 (organism)','840530005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_840541007','840541007','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O53 (organism)','840541007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_840543005','840543005','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O144 (organism)','840543005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_840545003','840545003','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O167 (organism)','840545003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_840682001','840682001','http://snomed.info/sct','Pseudocitrobacter faecalis (organism)','840682001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_840683006','840683006','http://snomed.info/sct','Multidrug-resistant Salmonella (organism)','840683006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_840684000','840684000','http://snomed.info/sct','Multidrug-resistant Salmonella enterica subspecies enterica serovar Typhi (organism)','840684000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_840687007','840687007','http://snomed.info/sct','Multidrug-resistant Salmonella paratyphi (organism)','840687007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_840691002','840691002','http://snomed.info/sct','Genus Pseudescherichia (organism)','840691002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_84106001','84106001','http://snomed.info/sct','Salmonella Banana (organism)','84106001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_84156006','84156006','http://snomed.info/sct','Salmonella Dembe (organism)','84156006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_84173008','84173008','http://snomed.info/sct','Salmonella Usumbura (organism)','84173008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_84205008','84205008','http://snomed.info/sct','Salmonella II 16:z:z42 (organism)','84205008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_84221003','84221003','http://snomed.info/sct','Lelliottia amnigena (organism)','84221003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_84273002','84273002','http://snomed.info/sct','Salmonella Rideau (organism)','84273002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_8428008','8428008','http://snomed.info/sct','Salmonella Ullevi (organism)','8428008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_84287002','84287002','http://snomed.info/sct','Salmonella Duval (organism)','84287002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_84293005','84293005','http://snomed.info/sct','Salmonella Leatherhead (organism)','84293005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_8432002','8432002','http://snomed.info/sct','Salmonella Sternschanze (organism)','8432002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_84346001','84346001','http://snomed.info/sct','Salmonella Bardo (organism)','84346001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_84358001','84358001','http://snomed.info/sct','Salmonella II 48:z29:- (organism)','84358001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_8448001','8448001','http://snomed.info/sct','Salmonella Rovaniemi (organism)','8448001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_84518004','84518004','http://snomed.info/sct','Salmonella Newrochelle (organism)','84518004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_84543005','84543005','http://snomed.info/sct','Salmonella Gombe (organism)','84543005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_8455004','8455004','http://snomed.info/sct','Salmonella Kentucky (organism)','8455004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_84972004','84972004','http://snomed.info/sct','Salmonella Remo (organism)','84972004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_85047006','85047006','http://snomed.info/sct','Salmonella Balili (organism)','85047006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_85143008','85143008','http://snomed.info/sct','Salmonella Telhashomer (organism)','85143008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_85186008','85186008','http://snomed.info/sct','Salmonella Friedrichsfelde (organism)','85186008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_85277006','85277006','http://snomed.info/sct','Salmonella Tallahassee (organism)','85277006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_85312005','85312005','http://snomed.info/sct','Salmonella II 57:g,t:- (organism)','85312005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_85385004','85385004','http://snomed.info/sct','Salmonella II 45:z29:1,5 (organism)','85385004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_85398008','85398008','http://snomed.info/sct','Salmonella Adime (organism)','85398008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_85424004','85424004','http://snomed.info/sct','Salmonella Tilene (organism)','85424004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_8544001','8544001','http://snomed.info/sct','Salmonella Potsdam (organism)','8544001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_85465004','85465004','http://snomed.info/sct','Salmonella Kaneshie (organism)','85465004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_85523008','85523008','http://snomed.info/sct','Salmonella II 51:z:29:e,n,x,z15 (organism)','85523008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_85538009','85538009','http://snomed.info/sct','Salmonella Garba (organism)','85538009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_85576003','85576003','http://snomed.info/sct','Salmonella Ramsey (organism)','85576003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_85588001','85588001','http://snomed.info/sct','Salmonella Gabon (organism)','85588001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_85698004','85698004','http://snomed.info/sct','Salmonella Wernigerode (organism)','85698004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_85729005','85729005','http://snomed.info/sct','Shigella flexneri (organism)','85729005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_85786000','85786000','http://snomed.info/sct','Escherichia hermannii (organism)','85786000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_85819008','85819008','http://snomed.info/sct','Salmonella Luckenwalde (organism)','85819008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_858577007','858577007','http://snomed.info/sct','Extended spectrum beta-lactamase producing Raoultella (organism)','858577007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_858578002','858578002','http://snomed.info/sct','Extended spectrum beta-lactamase producing Raoultella planticola (organism)','858578002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_85893005','85893005','http://snomed.info/sct','Salmonella Tomegbe (organism)','85893005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_85908006','85908006','http://snomed.info/sct','Salmonella Paratyphi B (organism)','85908006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_86097004','86097004','http://snomed.info/sct','Salmonella II 1,42:l,z13,z28:z6 (organism)','86097004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_86311006','86311006','http://snomed.info/sct','Salmonella Stendal (organism)','86311006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_86397006','86397006','http://snomed.info/sct','Salmonella Anfo (organism)','86397006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_86467002','86467002','http://snomed.info/sct','Salmonella Itutaba (organism)','86467002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_86511007','86511007','http://snomed.info/sct','Salmonella Cotia (organism)','86511007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_86585006','86585006','http://snomed.info/sct','Salmonella IV 38:g,z51:- (organism)','86585006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_86656007','86656007','http://snomed.info/sct','Salmonella Krefeld (organism)','86656007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_86669006','86669006','http://snomed.info/sct','Salmonella Overchurch (organism)','86669006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_86698005','86698005','http://snomed.info/sct','Salmonella Haga (organism)','86698005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_86837000','86837000','http://snomed.info/sct','Salmonella Mkamba (organism)','86837000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_86876004','86876004','http://snomed.info/sct','Salmonella Entebbe (organism)','86876004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_86879006','86879006','http://snomed.info/sct','Salmonella Blitta (organism)','86879006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_86966001','86966001','http://snomed.info/sct','Salmonella Zehlendorf (organism)','86966001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_86968000','86968000','http://snomed.info/sct','Salmonella II 9,12:a:1,5 (organism)','86968000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_86992008','86992008','http://snomed.info/sct','Salmonella Washington (organism)','86992008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_87019006','87019006','http://snomed.info/sct','Salmonella Ngili (organism)','87019006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_870643006','870643006','http://snomed.info/sct','Escherichia coli serogroup O171 (organism)','870643006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_87089002','87089002','http://snomed.info/sct','Salmonella Bousso (organism)','87089002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_87110008','87110008','http://snomed.info/sct','Salmonella Landala (organism)','87110008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_8716004','8716004','http://snomed.info/sct','Salmonella Gokul (organism)','8716004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_871877007','871877007','http://snomed.info/sct','Escherichia coli serogroup O170 (organism)','871877007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_8730009','8730009','http://snomed.info/sct','Salmonella Sinchew (organism)','8730009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_8741006','8741006','http://snomed.info/sct','Salmonella Madigan (organism)','8741006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_87566000','87566000','http://snomed.info/sct','Salmonella Quebec (organism)','87566000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_87578001','87578001','http://snomed.info/sct','Salmonella Kapemba (organism)','87578001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_87619005','87619005','http://snomed.info/sct','Salmonella Marseille (organism)','87619005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_87630008','87630008','http://snomed.info/sct','Salmonella Norton (organism)','87630008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_87693007','87693007','http://snomed.info/sct','Salmonella Derkle (organism)','87693007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_87906009','87906009','http://snomed.info/sct','Salmonella Anderlecht (organism)','87906009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_87933008','87933008','http://snomed.info/sct','Salmonella Barranquilla (organism)','87933008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_87975009','87975009','http://snomed.info/sct','Salmonella Kitenge (organism)','87975009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_88022005','88022005','http://snomed.info/sct','Salmonella Javiana (organism)','88022005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_88079003','88079003','http://snomed.info/sct','Salmonella II 35:g,t:z42 (organism)','88079003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_88085005','88085005','http://snomed.info/sct','Salmonella Antarctica (organism)','88085005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_88091007','88091007','http://snomed.info/sct','Salmonella Stanley (organism)','88091007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_88121001','88121001','http://snomed.info/sct','Salmonella Brisbane (organism)','88121001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_88149008','88149008','http://snomed.info/sct','Salmonella Matadi (organism)','88149008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_88248006','88248006','http://snomed.info/sct','Salmonella Congo (organism)','88248006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_88255008','88255008','http://snomed.info/sct','Salmonella Haifa (organism)','88255008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_88455006','88455006','http://snomed.info/sct','Salmonella Kande (organism)','88455006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_88461009','88461009','http://snomed.info/sct','Salmonella II 44:g,t:z42 (organism)','88461009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_88494007','88494007','http://snomed.info/sct','Salmonella Gloucester (organism)','88494007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_8860008','8860008','http://snomed.info/sct','Salmonella Ramatgan (organism)','8860008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_88601003','88601003','http://snomed.info/sct','Salmonella II 50:l,w:e,n,x,z15:z42 (organism)','88601003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_88649009','88649009','http://snomed.info/sct','Salmonella Colombo (organism)','88649009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_88931007','88931007','http://snomed.info/sct','Salmonella Yehuda (organism)','88931007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_88944002','88944002','http://snomed.info/sct','Salmonella Galil (organism)','88944002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_89032008','89032008','http://snomed.info/sct','Salmonella Isangi (organism)','89032008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_89085001','89085001','http://snomed.info/sct','Salmonella Lingwala (organism)','89085001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_8922003','8922003','http://snomed.info/sct','Salmonella Shanghai (organism)','8922003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_89271003','89271003','http://snomed.info/sct','Salmonella Harrisonburg (organism)','89271003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_89368009','89368009','http://snomed.info/sct','Salmonella Antwerpen (organism)','89368009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_89423000','89423000','http://snomed.info/sct','Salmonella Kralingen (organism)','89423000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_89425007','89425007','http://snomed.info/sct','Salmonella Maastricht (organism)','89425007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_89477001','89477001','http://snomed.info/sct','Yokenella regensburgei (organism)','89477001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_895553009','895553009','http://snomed.info/sct','Klebsiella variicola subspecies variicola (organism)','895553009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_895554003','895554003','http://snomed.info/sct','Klebsiella variicola subspecies tropicalensis (organism)','895554003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_895555002','895555002','http://snomed.info/sct','Klebsiella africanensis (organism)','895555002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_89556001','89556001','http://snomed.info/sct','Salmonella Alminko (organism)','89556001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_89640003','89640003','http://snomed.info/sct','Salmonella Kalamu (organism)','89640003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_89680007','89680007','http://snomed.info/sct','Salmonella II 48:a:z39 (organism)','89680007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_89716000','89716000','http://snomed.info/sct','Salmonella Brikama (organism)','89716000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_89806001','89806001','http://snomed.info/sct','Salmonella Kotte (organism)','89806001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_89839003','89839003','http://snomed.info/sct','Salmonella Buzu (organism)','89839003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_89885000','89885000','http://snomed.info/sct','Salmonella Chiredzi (organism)','89885000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_9004006','9004006','http://snomed.info/sct','Salmonella Aderike (organism)','9004006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_90157005','90157005','http://snomed.info/sct','Salmonella Worb (organism)','90157005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_90363005','90363005','http://snomed.info/sct','Salmonella Ligeo (organism)','90363005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_90403009','90403009','http://snomed.info/sct','Salmonella Wa (organism)','90403009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_90538009','90538009','http://snomed.info/sct','Salmonella Caracas (organism)','90538009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_90559002','90559002','http://snomed.info/sct','Salmonella II 6,7:g,m,(s),t:e,n,x (organism)','90559002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_90683001','90683001','http://snomed.info/sct','Salmonella Driffield (organism)','90683001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_90712007','90712007','http://snomed.info/sct','Salmonella Aarhus (organism)','90712007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_90726003','90726003','http://snomed.info/sct','Salmonella Lamin (organism)','90726003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_90756007','90756007','http://snomed.info/sct','Salmonella Presov (organism)','90756007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_90970000','90970000','http://snomed.info/sct','Salmonella Diogoye (organism)','90970000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_90973003','90973003','http://snomed.info/sct','Salmonella Guildford (organism)','90973003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_91112005','91112005','http://snomed.info/sct','Salmonella Calvinia (organism)','91112005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_91123009','91123009','http://snomed.info/sct','Salmonella Uppsala (organism)','91123009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_91124003','91124003','http://snomed.info/sct','Salmonella Tanzania (organism)','91124003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_91144009','91144009','http://snomed.info/sct','Salmonella Schalkwijk (organism)','91144009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_91354003','91354003','http://snomed.info/sct','Salmonella Kenya (organism)','91354003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_91398003','91398003','http://snomed.info/sct','Salmonella Kaduna (organism)','91398003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_91407001','91407001','http://snomed.info/sct','Salmonella Harburg (organism)','91407001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_91477002','91477002','http://snomed.info/sct','Salmonella Fomeco (organism)','91477002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_91661006','91661006','http://snomed.info/sct','Salmonella Weltevreden (organism)','91661006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_9179000','9179000','http://snomed.info/sct','Salmonella Bronx (organism)','9179000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_9357001','9357001','http://snomed.info/sct','Salmonella Ottawa (organism)','9357001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_9393004','9393004','http://snomed.info/sct','Salmonella Molade (organism)','9393004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_9433002','9433002','http://snomed.info/sct','Salmonella Allandale (organism)','9433002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_9439003','9439003','http://snomed.info/sct','Salmonella Horsham (organism)','9439003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_9453003','9453003','http://snomed.info/sct','Salmonella Graz (organism)','9453003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_9459004','9459004','http://snomed.info/sct','Salmonella Toricada (organism)','9459004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_9479007','9479007','http://snomed.info/sct','Salmonella Wandsworth (organism)','9479007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_9506004','9506004','http://snomed.info/sct','Salmonella Mbandaka (organism)','9506004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_9541000','9541000','http://snomed.info/sct','Salmonella II 42:z10:e,n,x,z15 (organism)','9541000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_9691005','9691005','http://snomed.info/sct','Salmonella Onderstepoort (organism)','9691005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_9818000','9818000','http://snomed.info/sct','Salmonella Charity (organism)','9818000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_9852002','9852002','http://snomed.info/sct','Salmonella Dahomey (organism)','9852002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1211_9952003','9952003','http://snomed.info/sct','Salmonella Tanger (organism)','9952003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1973_120990004','120990004','http://snomed.info/sct','Antigen of Hepatitis delta virus (substance)','120990004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1973_121195002','121195002','http://snomed.info/sct','Ribonucleic acid of Hepatitis D virus (substance)','121195002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1973_83617006','83617006','http://snomed.info/sct','Hepatitis D virus (organism)','83617006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.378_10108001','10108001','http://snomed.info/sct','Giardia cati (organism)','10108001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.378_121081002','121081002','http://snomed.info/sct','Antigen of Giardia lamblia (substance)','121081002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.378_14739002','14739002','http://snomed.info/sct','Giardia chinchillae (organism)','14739002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.378_22876005','22876005','http://snomed.info/sct','Giardia bovis (organism)','22876005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.378_370593005','370593005','http://snomed.info/sct','Giardia muris (organism)','370593005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.378_608931002','608931002','http://snomed.info/sct','Trophozoite of genus Giardia (organism)','608931002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.378_608932009','608932009','http://snomed.info/sct','Trophozoite of Giardia lamblia (organism)','608932009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.378_608946009','608946009','http://snomed.info/sct','Cyst of genus Giardia (organism)','608946009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.378_608948005','608948005','http://snomed.info/sct','Cyst of Giardia lamblia (organism)','608948005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.378_61419001','61419001','http://snomed.info/sct','Giardia (organism)','61419001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.378_708273004','708273004','http://snomed.info/sct','Deoxyribonucleic acid of Giardia lamblia (substance)','708273004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.378_709316008','709316008','http://snomed.info/sct','Antigen of Giardia (substance)','709316008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.378_720244005','720244005','http://snomed.info/sct','Antigen of Giardia lamblia 65 (substance)','720244005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.378_720326004','720326004','http://snomed.info/sct','Giardia lamblia cyst and trophozoite (finding)','720326004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.378_78181009','78181009','http://snomed.info/sct','Giardia lamblia (organism)','78181009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.378_90343003','90343003','http://snomed.info/sct','Giardia canis (organism)','90343003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1214_870562001','870562001','http://snomed.info/sct','Metallo-beta-lactamase producing bacteria (organism)','870562001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1214_762987008','762987008','http://snomed.info/sct','Extended spectrum beta-lactamase and carbapenemase producing bacteria (organism)','762987008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1214_773734006','773734006','http://snomed.info/sct','OXA-48 carbapenemase-producing bacteria (organism)','773734006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1214_1104601000112108','1104601000112108','http://snomed.info/sct','Metallo-beta-lactamase producing Pseudomonas aeruginosa (organism)','1104601000112108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1214_713171002','713171002','http://snomed.info/sct','Klebsiella pneumoniae carbapenemase 2 producing Klebsiella pneumoniae (organism)','713171002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1213_1089101000112105','1089101000112105','http://snomed.info/sct','Carbapenemase-producing Citrobacter amalonaticus (organism)','1089101000112105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1213_1089301000112107','1089301000112107','http://snomed.info/sct','Carbapenemase-producing Citrobacter braakii (organism)','1089301000112107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1213_1089501000112101','1089501000112101','http://snomed.info/sct','Carbapenemase-producing Citrobacter (organism)','1089501000112101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1213_1089701000112106','1089701000112106','http://snomed.info/sct','Carbapenemase-producing Citrobacter farmeri (organism)','1089701000112106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1213_1089901000112108','1089901000112108','http://snomed.info/sct','Carbapenemase-producing Citrobacter freundii (organism)','1089901000112108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1213_1090401000112109','1090401000112109','http://snomed.info/sct','Carbapenemase-producing Citrobacter koseri (organism)','1090401000112109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1213_1091201000112104','1091201000112104','http://snomed.info/sct','Carbapenemase-producing Citrobacter werkmanii (organism)','1091201000112104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1213_1091401000112100','1091401000112100','http://snomed.info/sct','Carbapenemase-producing Citrobacter youngae (organism)','1091401000112100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1213_1107201000112104','1107201000112104','http://snomed.info/sct','Carbapenemase-producing Serratia marcescens (organism)','1107201000112104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1213_734351004','734351004','http://snomed.info/sct','Carbapenemase-producing Enterobacteriaceae (organism)','734351004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1213_770392005','770392005','http://snomed.info/sct','Carbapenemase-producing Raoultella (organism)','770392005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1213_1092401000112105','1092401000112105','http://snomed.info/sct','Carbapenemase-producing Cronobacter sakazakii (organism)','1092401000112105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1213_1093401000112101','1093401000112101','http://snomed.info/sct','Carbapenemase-producing Enterobacter (organism)','1093401000112101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1213_1093601000112103','1093601000112103','http://snomed.info/sct','Carbapenemase-producing Enterobacter asburiae (organism)','1093601000112103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1213_1094301000112105','1094301000112105','http://snomed.info/sct','Carbapenemase-producing Enterobacter hormaechei (organism)','1094301000112105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1213_1096801000112108','1096801000112108','http://snomed.info/sct','Carbapenemase-producing Klebsiella (organism)','1096801000112108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1213_1098201000112108','1098201000112108','http://snomed.info/sct','Carbapenemase-producing Klebsiella pneumoniae (organism)','1098201000112108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1213_734352006','734352006','http://snomed.info/sct','Carbapenemase-producing Klebsiella aerogenes (organism)','734352006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1213_734353001','734353001','http://snomed.info/sct','Carbapenemase-producing Enterobacter cloacae complex (organism)','734353001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1213_737528008','737528008','http://snomed.info/sct','Carbapenemase-producing Escherichia coli (organism)','737528008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1213_737529000','737529000','http://snomed.info/sct','Carbapenemase-producing Enterobacter cloacae (organism)','737529000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1213_713171002','713171002','http://snomed.info/sct','Klebsiella pneumoniae carbapenemase 2 producing Klebsiella pneumoniae (organism)','713171002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1576_117270002','117270002','http://snomed.info/sct','Ribosomal ribonucleic acid of Streptococcus agalactiae (substance)','117270002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1576_120978001','120978001','http://snomed.info/sct','Antigen of Streptococcus agalactiae (substance)','120978001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1576_43492007','43492007','http://snomed.info/sct','Streptococcus agalactiae (organism)','43492007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1576_698164000','698164000','http://snomed.info/sct','Streptococcus agalactiae serotype Ia (organism)','698164000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1576_698165004','698165004','http://snomed.info/sct','Streptococcus agalactiae serotype Ia/c (organism)','698165004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1576_698166003','698166003','http://snomed.info/sct','Streptococcus agalactiae serotype Ib (organism)','698166003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1576_698167007','698167007','http://snomed.info/sct','Streptococcus agalactiae serotype Ib/c (organism)','698167007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1576_698168002','698168002','http://snomed.info/sct','Streptococcus agalactiae serotype II (organism)','698168002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1576_698169005','698169005','http://snomed.info/sct','Streptococcus agalactiae serotype II/c (organism)','698169005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1576_698170006','698170006','http://snomed.info/sct','Streptococcus agalactiae serotype II/R (organism)','698170006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1576_698171005','698171005','http://snomed.info/sct','Streptococcus agalactiae serotype III (organism)','698171005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1576_698172003','698172003','http://snomed.info/sct','Streptococcus agalactiae serotype III/c (organism)','698172003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1576_698173008','698173008','http://snomed.info/sct','Streptococcus agalactiae serotype III/R (organism)','698173008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1576_698174002','698174002','http://snomed.info/sct','Streptococcus agalactiae serotype IV (organism)','698174002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1576_698177009','698177009','http://snomed.info/sct','Streptococcus agalactiae serotype V (organism)','698177009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1576_698178004','698178004','http://snomed.info/sct','Streptococcus agalactiae serotype V/c (organism)','698178004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1576_698179007','698179007','http://snomed.info/sct','Streptococcus agalactiae serotype V/R (organism)','698179007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1576_698180005','698180005','http://snomed.info/sct','Streptococcus agalactiae serotype VII (organism)','698180005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1576_698181009','698181009','http://snomed.info/sct','Streptococcus agalactiae serotype VIII (organism)','698181009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1576_708437008','708437008','http://snomed.info/sct','Deoxyribonucleic acid of Streptococcus agalactiae (substance)','708437008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1576_713924007','713924007','http://snomed.info/sct','Non-hemolytic Streptococcus agalactiae (organism)','713924007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1576_715357003','715357003','http://snomed.info/sct','Streptococcus agalactiae serotype VI (organism)','715357003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1576_715358008','715358008','http://snomed.info/sct','Streptococcus agalactiae serotype IX (organism)','715358008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.534_243568000','243568000','http://snomed.info/sct','Variola virus (organism)','243568000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.534_312410004','312410004','http://snomed.info/sct','Variola major virus (organism)','312410004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.534_312411000','312411000','http://snomed.info/sct','Variola minor virus (organism)','312411000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.534_708498000','708498000','http://snomed.info/sct','Deoxyribonucleic acid of Variola virus (substance)','708498000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.534_713631008','713631008','http://snomed.info/sct','Antigen of Variola virus (substance)','713631008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_102401000112103','102401000112103','http://snomed.info/sct','Escherichia coli serotype O177:H25 (organism)','102401000112103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_103429008','103429008','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O157:H7 (organism)','103429008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_1079101000112100','1079101000112100','http://snomed.info/sct','Escherichia coli serotype O27:H30 (organism)','1079101000112100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_1080401000112105','1080401000112105','http://snomed.info/sct','Escherichia coli serotype O1:K1:nonmotile (organism)','1080401000112105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_1080501000112109','1080501000112109','http://snomed.info/sct','Escherichia coli serotype O110:nonmotile (organism)','1080501000112109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_1080601000112108','1080601000112108','http://snomed.info/sct','Escherichia coli serotype O148:nonmotile (organism)','1080601000112108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_1080701000112104','1080701000112104','http://snomed.info/sct','Escherichia coli serotype O186:nonmotile (organism)','1080701000112104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_1080801000112107','1080801000112107','http://snomed.info/sct','Escherichia coli serotype O2:nonmotile (organism)','1080801000112107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_1080901000112102','1080901000112102','http://snomed.info/sct','Escherichia coli serotype O28ab:nonmotile (organism)','1080901000112102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_1081001000112105','1081001000112105','http://snomed.info/sct','Escherichia coli serotype O75:nonmotile (organism)','1081001000112105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_1082201000112107','1082201000112107','http://snomed.info/sct','Escherichia coli serotype O71:H8 (organism)','1082201000112107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_1083201000112101','1083201000112101','http://snomed.info/sct','Escherichia coli serotype O22:H27 (organism)','1083201000112101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_1084101000112109','1084101000112109','http://snomed.info/sct','Escherichia coli serotype O170:H49 (organism)','1084101000112109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_1084801000112102','1084801000112102','http://snomed.info/sct','Escherichia coli serotype O182:H25 (organism)','1084801000112102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_1085101000112108','1085101000112108','http://snomed.info/sct','Escherichia coli serogroup O182 (organism)','1085101000112108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_1093401000112101','1093401000112101','http://snomed.info/sct','Carbapenemase-producing Enterobacter (organism)','1093401000112101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_1093501000112102','1093501000112102','http://snomed.info/sct','Extended spectrum beta-lactamase producing Enterobacter (organism)','1093501000112102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_1093601000112103','1093601000112103','http://snomed.info/sct','Carbapenemase-producing Enterobacter asburiae (organism)','1093601000112103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_1094001000112107','1094001000112107','http://snomed.info/sct','Extended spectrum beta-lactamase producing Enterobacter cloacae complex (organism)','1094001000112107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_1094301000112105','1094301000112105','http://snomed.info/sct','Carbapenemase-producing Enterobacter hormaechei (organism)','1094301000112105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_1094401000112103','1094401000112103','http://snomed.info/sct','Extended spectrum beta-lactamase producing Enterobacter hormaechei (organism)','1094401000112103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_1095001000112106','1095001000112106','http://snomed.info/sct','AmpC beta-lactamase producing Escherichia coli (organism)','1095001000112106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_1096801000112108','1096801000112108','http://snomed.info/sct','Carbapenemase-producing Klebsiella (organism)','1096801000112108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_1096901000112103','1096901000112103','http://snomed.info/sct','AmpC beta-lactamase producing Klebsiella (organism)','1096901000112103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_1097001000112104','1097001000112104','http://snomed.info/sct','Extended spectrum beta-lactamase producing Klebsiella aerogenes (organism)','1097001000112104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_1097401000112108','1097401000112108','http://snomed.info/sct','AmpC beta-lactamase producing Klebsiella oxytoca (organism)','1097401000112108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_1098101000112102','1098101000112102','http://snomed.info/sct','AmpC beta-lactamase producing Klebsiella pneumoniae (organism)','1098101000112102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_1098201000112108','1098201000112108','http://snomed.info/sct','Carbapenemase-producing Klebsiella pneumoniae (organism)','1098201000112108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_1098701000112101','1098701000112101','http://snomed.info/sct','AmpC beta-lactamase producing Klebsiella variicola (organism)','1098701000112101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_1098901000112104','1098901000112104','http://snomed.info/sct','Extended spectrum beta-lactamase producing Klebsiella variicola (organism)','1098901000112104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_1111901000112103','1111901000112103','http://snomed.info/sct','Escherichia coli serogroup O1:K1 (organism)','1111901000112103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_1112001000112105','1112001000112105','http://snomed.info/sct','Escherichia coli serogroup O28ab (organism)','1112001000112105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_1113201000112106','1113201000112106','http://snomed.info/sct','Escherichia coli serotype O183:H18 (organism)','1113201000112106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_1113401000112105','1113401000112105','http://snomed.info/sct','Klebsiella pneumoniae complex (organism)','1113401000112105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_1113801000112107','1113801000112107','http://snomed.info/sct','Escherichia coli serotype O118:H14 (organism)','1113801000112107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_1114101000112103','1114101000112103','http://snomed.info/sct','Escherichia coli serotype O86:H2 (organism)','1114101000112103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_1116301000112107','1116301000112107','http://snomed.info/sct','Escherichia coli serotype O16:H5 (organism)','1116301000112107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_1117301000112105','1117301000112105','http://snomed.info/sct','Escherichia coli serotype O168:H8 (organism)','1117301000112105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_112283007','112283007','http://snomed.info/sct','Escherichia coli (organism)','112283007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_112891000112108','112891000112108','http://snomed.info/sct','Escherichia coli serotype O177:H11 (organism)','112891000112108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_113611000146106','113611000146106','http://snomed.info/sct','Enterobacter bugandensis (organism)','113611000146106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_114451003','114451003','http://snomed.info/sct','Enterobacter cancerogenus (organism)','114451003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_114454006','114454006','http://snomed.info/sct','Enterobacter hormaechei (organism)','114454006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_114456008','114456008','http://snomed.info/sct','Enterobacter kobei (organism)','114456008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_114458009','114458009','http://snomed.info/sct','Klebsiella group 47 (organism)','114458009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_116394005','116394005','http://snomed.info/sct','Enterotoxigenic Escherichia coli (organism)','116394005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_116395006','116395006','http://snomed.info/sct','Enterohemorrhagic Escherichia coli (organism)','116395006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_116396007','116396007','http://snomed.info/sct','Enteroinvasive Escherichia coli (organism)','116396007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_116397003','116397003','http://snomed.info/sct','Enteroaggregative Escherichia coli (organism)','116397003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_116398008','116398008','http://snomed.info/sct','Escherichia coli, diarrheagenic strain (organism)','116398008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_124994003','124994003','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O157:non-motile (organism)','124994003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_1269432003','1269432003','http://snomed.info/sct','Escherichia coli serogroup O16 (organism)','1269432003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_1285009006','1285009006','http://snomed.info/sct','Enterobacter roggenkampii (organism)','1285009006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_1285010001','1285010001','http://snomed.info/sct','Enterobacter soli (organism)','1285010001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_131260002','131260002','http://snomed.info/sct','Escherichia coli serogroup O26 (organism)','131260002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_131261003','131261003','http://snomed.info/sct','Escherichia coli serogroup O111 (organism)','131261003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_133191000112101','133191000112101','http://snomed.info/sct','Escherichia coli serotype O93:H46 (organism)','133191000112101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_14385002','14385002','http://snomed.info/sct','Enterobacter cloacae (organism)','14385002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_17688001','17688001','http://snomed.info/sct','Klebsiella pneumoniae ss. rhinoscleromatis (organism)','17688001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_18400002','18400002','http://snomed.info/sct','Klebsiella pneumoniae ss. pneumoniae (organism)','18400002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_26371000087101','26371000087101','http://snomed.info/sct','Escherichia coli serotype O153:H21 (organism)','26371000087101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_26391000087102','26391000087102','http://snomed.info/sct','Escherichia coli serotype O66:H25 (organism)','26391000087102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_26421000087105','26421000087105','http://snomed.info/sct','Escherichia coli serotype O6:H31 (organism)','26421000087105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_26451000087103','26451000087103','http://snomed.info/sct','Escherichia coli serogroup O19 (organism)','26451000087103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_26481000087106','26481000087106','http://snomed.info/sct','Escherichia coli serotype O108:H11 (organism)','26481000087106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_303349001','303349001','http://snomed.info/sct','Escherichia coli enteroadherent (organism)','303349001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_30761000112109','30761000112109','http://snomed.info/sct','Escherichia coli serotype Orough:H21 (organism)','30761000112109','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_30791000112101','30791000112101','http://snomed.info/sct','Escherichia coli serotype O181:H49 (organism)','30791000112101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_31351000087100','31351000087100','http://snomed.info/sct','Enterobacter siamensis (organism)','31351000087100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_31591000087103','31591000087103','http://snomed.info/sct','Enterobacter hormaechei subspecies hormaechei (organism)','31591000087103','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_31601000087106','31601000087106','http://snomed.info/sct','Enterobacter hormaechei subspecies oharae (organism)','31601000087106','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_31611000087108','31611000087108','http://snomed.info/sct','Enterobacter hormaechei subspecies steigerwaltii (organism)','31611000087108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_33115003','33115003','http://snomed.info/sct','Enterobacter asburiae (organism)','33115003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_33691000087101','33691000087101','http://snomed.info/sct','Carbapenemase-producing Klebsiella variicola (organism)','33691000087101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_406627005','406627005','http://snomed.info/sct','Enterotoxigenic Escherichia coli serogroup O6 (organism)','406627005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_406628000','406628000','http://snomed.info/sct','Enterotoxigenic Escherichia coli, serotype O6:nonmotile (organism)','406628000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_406629008','406629008','http://snomed.info/sct','Enterotoxigenic Escherichia coli, serotype O6:H16 (organism)','406629008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407156003','407156003','http://snomed.info/sct','Enterotoxigenic Escherichia coli, serotype O8 (organism)','407156003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407157007','407157007','http://snomed.info/sct','Enterotoxigenic Escherichia coli, serotype O8:H9 (organism)','407157007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407158002','407158002','http://snomed.info/sct','Enteropathogenic Escherichia coli, serotype O111:nonmotile (organism)','407158002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407159005','407159005','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O111:nonmotile (organism)','407159005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407160000','407160000','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O111:H2 (organism)','407160000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407161001','407161001','http://snomed.info/sct','Enteropathogenic Escherichia coli, serotype O111:H2 (organism)','407161001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407162008','407162008','http://snomed.info/sct','Escherichia coli serogroup O15 (organism)','407162008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407163003','407163003','http://snomed.info/sct','Enterotoxigenic Escherichia coli, serotype O15:H11 (organism)','407163003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407164009','407164009','http://snomed.info/sct','Escherichia coli serogroup O20 (organism)','407164009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407165005','407165005','http://snomed.info/sct','Enterotoxigenic Escherichia coli, serotype O20:nonmotile (organism)','407165005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407166006','407166006','http://snomed.info/sct','Escherichia coli serogroup O157 (organism)','407166006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407167002','407167002','http://snomed.info/sct','Escherichia coli serogroup O25 (organism)','407167002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407168007','407168007','http://snomed.info/sct','Enterotoxigenic Escherichia coli, serotype O25:nonmotile (organism)','407168007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407169004','407169004','http://snomed.info/sct','Enterotoxigenic Escherichia coli, serotype O25:H42 (organism)','407169004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407170003','407170003','http://snomed.info/sct','Escherichia coli serogroup O27 (organism)','407170003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407171004','407171004','http://snomed.info/sct','Enterotoxigenic Escherichia coli, serotype O27:nonmotile (organism)','407171004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407172006','407172006','http://snomed.info/sct','Enterotoxigenic Escherichia coli, serotype O27:H7 (organism)','407172006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407173001','407173001','http://snomed.info/sct','Enterotoxigenic Escherichia coli, serotype O27:H20 (organism)','407173001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407174007','407174007','http://snomed.info/sct','Escherichia coli serogroup O49 (organism)','407174007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407175008','407175008','http://snomed.info/sct','Enterotoxigenic Escherichia coli, serotype O49:nonmotile (organism)','407175008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407176009','407176009','http://snomed.info/sct','Escherichia coli serogroup O63 (organism)','407176009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407177000','407177000','http://snomed.info/sct','Enterotoxigenic Escherichia coli, serotype O63:H12 (organism)','407177000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407178005','407178005','http://snomed.info/sct','Escherichia coli serogroup O78 (organism)','407178005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407179002','407179002','http://snomed.info/sct','Enterotoxigenic Escherichia coli, serotype O78:H11 (organism)','407179002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407180004','407180004','http://snomed.info/sct','Enterotoxigenic Escherichia coli, serotype O78:H12 (organism)','407180004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407181000','407181000','http://snomed.info/sct','Escherichia coli serogroup O128 (organism)','407181000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407182007','407182007','http://snomed.info/sct','Enterotoxigenic Escherichia coli, serotype O128:H7 (organism)','407182007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407183002','407183002','http://snomed.info/sct','Escherichia coli serogroup O148 (organism)','407183002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407184008','407184008','http://snomed.info/sct','Enterotoxigenic Escherichia coli, serotype O148:H28 (organism)','407184008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407185009','407185009','http://snomed.info/sct','Escherichia coli serogroup O153 (organism)','407185009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407186005','407186005','http://snomed.info/sct','Enterotoxigenic Escherichia coli, serotype O153:H45 (organism)','407186005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407187001','407187001','http://snomed.info/sct','Escherichia coli serogroup O159 (organism)','407187001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407188006','407188006','http://snomed.info/sct','Enterotoxigenic Escherichia coli, serotype O159:nonmotile (organism)','407188006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407189003','407189003','http://snomed.info/sct','Enterotoxigenic Escherichia coli, serotype O159:H4 (organism)','407189003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407190007','407190007','http://snomed.info/sct','Enterotoxigenic Escherichia coli, serotype O159:H20 (organism)','407190007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407191006','407191006','http://snomed.info/sct','Escherichia coli serogroup O167 (organism)','407191006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407192004','407192004','http://snomed.info/sct','Enterotoxigenic Escherichia coli, serotype O167:H5 (organism)','407192004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407193009','407193009','http://snomed.info/sct','Escherichia coli serogroup O169 (organism)','407193009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407194003','407194003','http://snomed.info/sct','Enterotoxigenic Escherichia coli, serotype O169:H41 (organism)','407194003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407195002','407195002','http://snomed.info/sct','Escherichia coli serogroup O55 (organism)','407195002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407196001','407196001','http://snomed.info/sct','Enteropathogenic Escherichia coli, serotype O55:nonmotile (organism)','407196001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407197005','407197005','http://snomed.info/sct','Enteropathogenic Escherichia coli, serotype O55:H6 (organism)','407197005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407198000','407198000','http://snomed.info/sct','Enteropathogenic Escherichia coli, serotype O55:H7 (organism)','407198000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407199008','407199008','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O55:H7 (organism)','407199008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407200006','407200006','http://snomed.info/sct','Escherichia coli serogroup O86 (organism)','407200006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407201005','407201005','http://snomed.info/sct','Enteropathogenic Escherichia coli, serotype O86:nonmotile (organism)','407201005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407202003','407202003','http://snomed.info/sct','Enteropathogenic Escherichia coli, serotype O86:H34 (organism)','407202003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407203008','407203008','http://snomed.info/sct','Enteropathogenic Escherichia coli, serotype O111:H12 (organism)','407203008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407204002','407204002','http://snomed.info/sct','Enteropathogenic Escherichia coli, serotype O111:H21 (organism)','407204002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407205001','407205001','http://snomed.info/sct','Escherichia coli serogroup O114 (organism)','407205001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407206000','407206000','http://snomed.info/sct','Enteropathogenic Escherichia coli, serotype O114:nonmotile (organism)','407206000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407207009','407207009','http://snomed.info/sct','Enteropathogenic Escherichia coli, serotype O114:H2 (organism)','407207009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407208004','407208004','http://snomed.info/sct','Escherichia coli serogroup O119 (organism)','407208004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407209007','407209007','http://snomed.info/sct','Enteropathogenic Escherichia coli, serotype O119:H6 (organism)','407209007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407210002','407210002','http://snomed.info/sct','Escherichia coli serogroup O125 (organism)','407210002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407211003','407211003','http://snomed.info/sct','Enteropathogenic Escherichia coli, serotype O125:H21 (organism)','407211003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407212005','407212005','http://snomed.info/sct','Escherichia coli serogroup O126 (organism)','407212005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407213000','407213000','http://snomed.info/sct','Enteropathogenic Escherichia coli, serotype O126:nonmotile (organism)','407213000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407214006','407214006','http://snomed.info/sct','Enteropathogenic Escherichia coli, serotype O126:H27 (organism)','407214006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407215007','407215007','http://snomed.info/sct','Escherichia coli serogroup O127 (organism)','407215007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407216008','407216008','http://snomed.info/sct','Enteropathogenic Escherichia coli, serotype O127:nonmotile (organism)','407216008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407217004','407217004','http://snomed.info/sct','Enteropathogenic Escherichia coli, serotype O127:H6 (organism)','407217004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407218009','407218009','http://snomed.info/sct','Enteropathogenic Escherichia coli, serotype O127:H9 (organism)','407218009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407219001','407219001','http://snomed.info/sct','Enteropathogenic Escherichia coli, serotype O127:H21 (organism)','407219001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407220007','407220007','http://snomed.info/sct','Enteropathogenic Escherichia coli, serotype O128:H12 (organism)','407220007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407221006','407221006','http://snomed.info/sct','Enteropathogenic Escherichia coli, serotype O128:H2 (organism)','407221006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407222004','407222004','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O128:H2 (organism)','407222004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407223009','407223009','http://snomed.info/sct','Escherichia coli serogroup O142 (organism)','407223009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407224003','407224003','http://snomed.info/sct','Enteropathogenic Escherichia coli, serotype O142:H6 (organism)','407224003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407225002','407225002','http://snomed.info/sct','Enteropathogenic Escherichia coli, serotype O157:H45 (organism)','407225002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407226001','407226001','http://snomed.info/sct','Escherichia coli serogroup O28 (organism)','407226001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407227005','407227005','http://snomed.info/sct','Enteroinvasive Escherichia coli, serotype O28:nonmotile (organism)','407227005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407228000','407228000','http://snomed.info/sct','Escherichia coli serogroup O29 (organism)','407228000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407229008','407229008','http://snomed.info/sct','Enteroinvasive Escherichia coli, serotype O29:nonmotile (organism)','407229008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407230003','407230003','http://snomed.info/sct','Escherichia coli serogroup O112 (organism)','407230003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407231004','407231004','http://snomed.info/sct','Enteroinvasive Escherichia coli, serotype O112:nonmotile (organism)','407231004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407232006','407232006','http://snomed.info/sct','Escherichia coli serogroup O124 (organism)','407232006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407233001','407233001','http://snomed.info/sct','Enteroinvasive Escherichia coli, serotype O124:nonmotile (organism)','407233001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407234007','407234007','http://snomed.info/sct','Enteroinvasive Escherichia coli, serotype O124:H7 (organism)','407234007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407235008','407235008','http://snomed.info/sct','Enteroinvasive Escherichia coli, serotype O124:H30 (organism)','407235008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407236009','407236009','http://snomed.info/sct','Escherichia coli serogroup O136 (organism)','407236009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407237000','407237000','http://snomed.info/sct','Enteroinvasive Escherichia coli, serotype O136:nonmotile (organism)','407237000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407238005','407238005','http://snomed.info/sct','Escherichia coli serogroup O143 (organism)','407238005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407239002','407239002','http://snomed.info/sct','Enteroinvasive Escherichia coli, serotype O143:nonmotile (organism)','407239002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407240000','407240000','http://snomed.info/sct','Escherichia coli serogroup O144 (organism)','407240000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407241001','407241001','http://snomed.info/sct','Enteroinvasive Escherichia coli, serotype O144:nonmotile (organism)','407241001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407242008','407242008','http://snomed.info/sct','Escherichia coli serogroup O152 (organism)','407242008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407243003','407243003','http://snomed.info/sct','Enteroinvasive Escherichia coli, serotype O152:nonmotile (organism)','407243003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407244009','407244009','http://snomed.info/sct','Escherichia coli serogroup O164 (organism)','407244009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407245005','407245005','http://snomed.info/sct','Enteroinvasive Escherichia coli, serotype O164:nonmotile (organism)','407245005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407246006','407246006','http://snomed.info/sct','Enteroinvasive Escherichia coli, serotype O167:nonmotile (organism)','407246006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407250004','407250004','http://snomed.info/sct','Escherichia coli serogroup O1 (organism)','407250004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407251000','407251000','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O1:nonmotile (organism)','407251000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407252007','407252007','http://snomed.info/sct','Escherichia coli serogroup O2 (organism)','407252007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407253002','407253002','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O2:H6 (organism)','407253002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407254008','407254008','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O2:H7 (organism)','407254008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407255009','407255009','http://snomed.info/sct','Escherichia coli serogroup O5 (organism)','407255009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407256005','407256005','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O5:nonmotile (organism)','407256005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407257001','407257001','http://snomed.info/sct','Escherichia coli serogroup O9 (organism)','407257001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407258006','407258006','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O9:nonmotile (organism)','407258006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407259003','407259003','http://snomed.info/sct','Escherichia coli serogroup O14 (organism)','407259003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407260008','407260008','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O14:nonmotile (organism)','407260008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407261007','407261007','http://snomed.info/sct','Escherichia coli serogroup O22 (organism)','407261007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407262000','407262000','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O22:H5 (organism)','407262000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407263005','407263005','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O22:H8 (organism)','407263005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407264004','407264004','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O26:nonmotile (organism)','407264004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407265003','407265003','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O26:H11 (organism)','407265003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407266002','407266002','http://snomed.info/sct','Escherichia coli serogroup O45 (organism)','407266002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407267006','407267006','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O45:H2 (organism)','407267006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407268001','407268001','http://snomed.info/sct','Escherichia coli serogroup O48 (organism)','407268001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407269009','407269009','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O48:H21 (organism)','407269009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407270005','407270005','http://snomed.info/sct','Escherichia coli serogroup O50 (organism)','407270005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407271009','407271009','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O50:H7 (organism)','407271009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407272002','407272002','http://snomed.info/sct','Escherichia coli serogroup O79 (organism)','407272002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407273007','407273007','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O79:H7 (organism)','407273007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407274001','407274001','http://snomed.info/sct','Escherichia coli serogroup O83 (organism)','407274001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407275000','407275000','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O83:H1 (organism)','407275000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407276004','407276004','http://snomed.info/sct','Escherichia coli serogroup O91 (organism)','407276004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407277008','407277008','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O91:nonmotile (organism)','407277008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407278003','407278003','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O91:H10 (organism)','407278003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407279006','407279006','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O91:H21 (organism)','407279006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407280009','407280009','http://snomed.info/sct','Escherichia coli serogroup O103 (organism)','407280009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407281008','407281008','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O103:H2 (organism)','407281008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407282001','407282001','http://snomed.info/sct','Escherichia coli serogroup O104 (organism)','407282001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407283006','407283006','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O104:nonmotile (organism)','407283006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407284000','407284000','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O104:H21 (organism)','407284000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407285004','407285004','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O111:H8 (organism)','407285004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407286003','407286003','http://snomed.info/sct','Escherichia coli serogroup O113 (organism)','407286003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407287007','407287007','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O113:H21 (organism)','407287007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407288002','407288002','http://snomed.info/sct','Escherichia coli serogroup O118 (organism)','407288002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407289005','407289005','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O118:H2 (organism)','407289005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407290001','407290001','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O118:H12 (organism)','407290001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407291002','407291002','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O118:H16 (organism)','407291002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407292009','407292009','http://snomed.info/sct','Escherichia coli serogroup O121 (organism)','407292009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407293004','407293004','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O121:H19 (organism)','407293004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407294005','407294005','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O128:nonmotile (organism)','407294005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407295006','407295006','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O128:H45 (organism)','407295006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407296007','407296007','http://snomed.info/sct','Escherichia coli serogroup O137 (organism)','407296007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407297003','407297003','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O137:H41 (organism)','407297003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407298008','407298008','http://snomed.info/sct','Escherichia coli serogroup O145 (organism)','407298008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407299000','407299000','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O145:nonmotile (organism)','407299000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407300008','407300008','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O153:H2 (organism)','407300008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407301007','407301007','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O153:H25 (organism)','407301007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407302000','407302000','http://snomed.info/sct','Escherichia coli serogroup O163 (organism)','407302000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407303005','407303005','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O163:H19 (organism)','407303005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407304004','407304004','http://snomed.info/sct','Escherichia coli serogroup O165 (organism)','407304004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407305003','407305003','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O165:nonmotile (organism)','407305003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407306002','407306002','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O165:H25 (organism)','407306002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407307006','407307006','http://snomed.info/sct','Escherichia coli serogroup O172 (organism)','407307006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407308001','407308001','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O172:nonmotile (organism)','407308001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407309009','407309009','http://snomed.info/sct','Escherichia coli serogroup Orough (organism)','407309009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_407310004','407310004','http://snomed.info/sct','Enterohemorrhagic Escherichia coli, serotype O rough:H9 (organism)','407310004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_40886007','40886007','http://snomed.info/sct','Klebsiella oxytoca (organism)','40886007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_409800005','409800005','http://snomed.info/sct','Extended spectrum beta-lactamase producing Escherichia coli (organism)','409800005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_409801009','409801009','http://snomed.info/sct','Extended spectrum beta-lactamase producing Klebsiella pneumoniae (organism)','409801009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_414097009','414097009','http://snomed.info/sct','Enteroaggregative Escherichia coli Serotype O111:H21 (organism)','414097009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_414098004','414098004','http://snomed.info/sct','Enteroaggregative Escherichia coli Serotype O125 (organism)','414098004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_414099007','414099007','http://snomed.info/sct','Enteroaggregative Escherichia coli Serotype O126:H27 (organism)','414099007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_414100004','414100004','http://snomed.info/sct','Enteroaggregative Escherichia coli Serotype O44:H18 (organism)','414100004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_414102007','414102007','http://snomed.info/sct','Enterobacter cloacae complex (organism)','414102007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_414103002','414103002','http://snomed.info/sct','Enteropathogenic Escherichia coli, serotype O44 (organism)','414103002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_414132004','414132004','http://snomed.info/sct','Escherichia coli not O157 (organism)','414132004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_416530004','416530004','http://snomed.info/sct','Escherichia coli O4:K12:H5 (organism)','416530004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_416740004','416740004','http://snomed.info/sct','Escherichia coli O1:K1:H7 (organism)','416740004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_416812001','416812001','http://snomed.info/sct','Escherichia coli O:K:H group (organism)','416812001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_416989002','416989002','http://snomed.info/sct','Diffuse adherence Escherichia coli (organism)','416989002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_417189006','417189006','http://snomed.info/sct','Escherichia coli O6:K2:H1 (organism)','417189006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_417207000','417207000','http://snomed.info/sct','Escherichia coli, inactive (organism)','417207000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_417216001','417216001','http://snomed.info/sct','Escherichia coli O15:K52:H1 (organism)','417216001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_417443008','417443008','http://snomed.info/sct','Klebsiella granulomatis (organism)','417443008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_422953009','422953009','http://snomed.info/sct','Escherichia coli serogroup O174 (organism)','422953009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_424672005','424672005','http://snomed.info/sct','Escherichia coli serogroup O178 (organism)','424672005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_425004001','425004001','http://snomed.info/sct','Escherichia coli serogroup O166 (organism)','425004001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_427294000','427294000','http://snomed.info/sct','Escherichia coli serogroup O158 (organism)','427294000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_431976004','431976004','http://snomed.info/sct','Klebsiella variicola (organism)','431976004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_432096007','432096007','http://snomed.info/sct','Escherichia coli serogroup O88 (organism)','432096007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_432763001','432763001','http://snomed.info/sct','Enterobacter ludwigii (organism)','432763001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_433047006','433047006','http://snomed.info/sct','Klebsiella singaporensis (organism)','433047006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_442019004','442019004','http://snomed.info/sct','Escherichia coli serogroup O179 (organism)','442019004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_442109007','442109007','http://snomed.info/sct','Escherichia coli serogroup O130 (organism)','442109007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_442282007','442282007','http://snomed.info/sct','Escherichia coli serogroup O69 (organism)','442282007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_443022007','443022007','http://snomed.info/sct','Escherichia coli serotype O26:H10 (organism)','443022007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_443091009','443091009','http://snomed.info/sct','Escherichia coli serogroup O84 (organism)','443091009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_443189004','443189004','http://snomed.info/sct','Enteropathogenic Escherichia coli serogroup O18 (organism)','443189004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_444771000124108','444771000124108','http://snomed.info/sct','Escherichia coli not producing Shiga toxin (organism)','444771000124108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_446870005','446870005','http://snomed.info/sct','Carbapenem resistant Klebsiella pneumoniae (organism)','446870005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_448711000124108','448711000124108','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O132 (organism)','448711000124108','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_448721000124100','448721000124100','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O78 (organism)','448721000124100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_450477004','450477004','http://snomed.info/sct','Escherichia coli serogroup O6 (organism)','450477004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_450478009','450478009','http://snomed.info/sct','Escherichia coli serogroup O8 (organism)','450478009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_450479001','450479001','http://snomed.info/sct','Escherichia coli serotype O104:H4 (organism)','450479001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_457124003','457124003','http://snomed.info/sct','Escherichia coli serotype Orough:nonmotile (organism)','457124003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_457125002','457125002','http://snomed.info/sct','Escherichia coli serotype Orough:H8 (organism)','457125002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_457126001','457126001','http://snomed.info/sct','Escherichia coli serotype Orough:H7 (organism)','457126001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_457127005','457127005','http://snomed.info/sct','Escherichia coli serotype Orough:H49 (organism)','457127005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_457128000','457128000','http://snomed.info/sct','Escherichia coli serotype Orough:H45 (organism)','457128000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_457129008','457129008','http://snomed.info/sct','Escherichia coli serotype Orough:H34 (organism)','457129008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_457130003','457130003','http://snomed.info/sct','Escherichia coli serotype Orough:H28 (organism)','457130003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_457131004','457131004','http://snomed.info/sct','Escherichia coli serotype Orough:H25 (organism)','457131004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_457132006','457132006','http://snomed.info/sct','Escherichia coli serotype Orough:H9 (organism)','457132006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_457133001','457133001','http://snomed.info/sct','Escherichia coli serotype Orough:H2 (organism)','457133001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_457134007','457134007','http://snomed.info/sct','Escherichia coli serotype Orough:H19 (organism)','457134007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_457135008','457135008','http://snomed.info/sct','Escherichia coli serotype Orough:H18 (organism)','457135008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_457136009','457136009','http://snomed.info/sct','Escherichia coli serotype Orough:H16 (organism)','457136009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_457137000','457137000','http://snomed.info/sct','Escherichia coli serotype Orough:H14 (organism)','457137000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_457138005','457138005','http://snomed.info/sct','Escherichia coli serotype Orough:H10 (organism)','457138005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_457139002','457139002','http://snomed.info/sct','Escherichia coli serotype Orough:H11 (organism)','457139002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_457140000','457140000','http://snomed.info/sct','Escherichia coli serogroup O181 (organism)','457140000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_457141001','457141001','http://snomed.info/sct','Escherichia coli serotype O181:H28 (organism)','457141001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_457142008','457142008','http://snomed.info/sct','Escherichia coli serotype O179:H8 (organism)','457142008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_457143003','457143003','http://snomed.info/sct','Escherichia coli serotype O178:H19 (organism)','457143003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_457144009','457144009','http://snomed.info/sct','Escherichia coli serotype O178:H7 (organism)','457144009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_457145005','457145005','http://snomed.info/sct','Escherichia coli serogroup O177 (organism)','457145005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_457146006','457146006','http://snomed.info/sct','Escherichia coli serotype O177:nonmotile (organism)','457146006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_457297005','457297005','http://snomed.info/sct','Escherichia coli serogroup O175 (organism)','457297005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_457298000','457298000','http://snomed.info/sct','Escherichia coli serotype O175:H16 (organism)','457298000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_457299008','457299008','http://snomed.info/sct','Escherichia coli serotype O175:H21 (organism)','457299008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_457300000','457300000','http://snomed.info/sct','Escherichia coli serotype O175:H27 (organism)','457300000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_457301001','457301001','http://snomed.info/sct','Escherichia coli serotype O20:nonmotile (organism)','457301001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_457310009','457310009','http://snomed.info/sct','Escherichia coli serotype O153:nonmotile (organism)','457310009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_457317007','457317007','http://snomed.info/sct','Escherichia coli serotype O153:H7 (organism)','457317007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_457324008','457324008','http://snomed.info/sct','Escherichia coli serotype O153:H25 (organism)','457324008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_457331007','457331007','http://snomed.info/sct','Escherichia coli serotype O153:H2 (organism)','457331007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_457338001','457338001','http://snomed.info/sct','Escherichia coli serotype O153:H45 (organism)','457338001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_457345001','457345001','http://snomed.info/sct','Escherichia coli serotype O152:nonmotile (organism)','457345001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_457354003','457354003','http://snomed.info/sct','Escherichia coli serogroup O150 (organism)','457354003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_457367000','457367000','http://snomed.info/sct','Escherichia coli serotype O150:H11 (organism)','457367000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_457374005','457374005','http://snomed.info/sct','Escherichia coli serogroup O149 (organism)','457374005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_457387004','457387004','http://snomed.info/sct','Escherichia coli serotype O148:H28 (organism)','457387004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_457394001','457394001','http://snomed.info/sct','Escherichia coli serogroup O146 (organism)','457394001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_457407001','457407001','http://snomed.info/sct','Escherichia coli serotype O146:nonmotile (organism)','457407001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_457414004','457414004','http://snomed.info/sct','Escherichia coli serotype O146:H28 (organism)','457414004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_457421004','457421004','http://snomed.info/sct','Escherichia coli serotype O146:H21 (organism)','457421004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_457428005','457428005','http://snomed.info/sct','Escherichia coli serotype O146:H11 (organism)','457428005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_457435002','457435002','http://snomed.info/sct','Escherichia coli serotype O145:nonmotile (organism)','457435002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_457444001','457444001','http://snomed.info/sct','Escherichia coli serotype O145:H34 (organism)','457444001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_457451005','457451005','http://snomed.info/sct','Escherichia coli serotype O145:H28 (organism)','457451005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_457458004','457458004','http://snomed.info/sct','Escherichia coli serotype O145:H25 (organism)','457458004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_457465007','457465007','http://snomed.info/sct','Escherichia coli serotype O145:H16 (organism)','457465007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_457520000','457520000','http://snomed.info/sct','Escherichia coli serotype O174:H28 (organism)','457520000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_457527002','457527002','http://snomed.info/sct','Escherichia coli serotype O174:H21 (organism)','457527002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_457534000','457534000','http://snomed.info/sct','Escherichia coli serotype O174:H2 (organism)','457534000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_457541006','457541006','http://snomed.info/sct','Escherichia coli O172:nonmotile (organism)','457541006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_457550008','457550008','http://snomed.info/sct','Escherichia coli serotype O172:H11 (organism)','457550008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_457557006','457557006','http://snomed.info/sct','Escherichia coli serotype O172:H2 (organism)','457557006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_457564008','457564008','http://snomed.info/sct','Escherichia coli serotype O172:H16 (organism)','457564008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_457571003','457571003','http://snomed.info/sct','Escherichia coli serogroup O168 (organism)','457571003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_457811000','457811000','http://snomed.info/sct','Escherichia coli serotype O168:H14 (organism)','457811000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_457818006','457818006','http://snomed.info/sct','Escherichia coli serotype O166:H15 (organism)','457818006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_457825004','457825004','http://snomed.info/sct','Escherichia coli serotype O165:nonmotile (organism)','457825004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_457832008','457832008','http://snomed.info/sct','Escherichia coli serotype O165:H25 (organism)','457832008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_457839004','457839004','http://snomed.info/sct','Escherichia coli serotype O165:H7 (organism)','457839004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_457846008','457846008','http://snomed.info/sct','Escherichia coli serogroup O162 (organism)','457846008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_457859000','457859000','http://snomed.info/sct','Escherichia coli serotype O163:H19 (organism)','457859000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_457866004','457866004','http://snomed.info/sct','Escherichia coli serotype O162:H6 (organism)','457866004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_457873009','457873009','http://snomed.info/sct','Escherichia coli serotype O162:H11 (organism)','457873009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_457880006','457880006','http://snomed.info/sct','Escherichia coli serogroup O160 (organism)','457880006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_457893001','457893001','http://snomed.info/sct','Escherichia coli serotype O160:nonmotile (organism)','457893001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_457900007','457900007','http://snomed.info/sct','Escherichia coli serotype O160:H18 (organism)','457900007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_457907005','457907005','http://snomed.info/sct','Escherichia coli serotype O157:nonmotile (organism)','457907005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_457914007','457914007','http://snomed.info/sct','Escherichia coli serotype O157:H7 (organism)','457914007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_457923005','457923005','http://snomed.info/sct','Escherichia coli serotype O157:H45 (organism)','457923005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_457930004','457930004','http://snomed.info/sct','Escherichia coli serotype O157:H29 (organism)','457930004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_457937001','457937001','http://snomed.info/sct','Escherichia coli serotype O157:H16 (organism)','457937001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_457944005','457944005','http://snomed.info/sct','Escherichia coli serogroup O156 (organism)','457944005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_457957002','457957002','http://snomed.info/sct','Escherichia coli serotype O156:nonmotile (organism)','457957002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_457964000','457964000','http://snomed.info/sct','Escherichia coli serotype O156:H8 (organism)','457964000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_457971005','457971005','http://snomed.info/sct','Escherichia coli serotype O156:H25 (organism)','457971005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_457978004','457978004','http://snomed.info/sct','Escherichia coli serotype O156:H23 (organism)','457978004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_457991003','457991003','http://snomed.info/sct','Escherichia coli serogroup O141 (organism)','457991003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458004003','458004003','http://snomed.info/sct','Escherichia coli serotype O141:nonmotile (organism)','458004003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458011004','458011004','http://snomed.info/sct','Escherichia coli serotype O141:H49 (organism)','458011004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458018005','458018005','http://snomed.info/sct','Escherichia coli serotype O141:H14 (organism)','458018005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458025003','458025003','http://snomed.info/sct','Escherichia coli serogroup O140 (organism)','458025003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458045006','458045006','http://snomed.info/sct','Escherichia coli serotype O2:H7 (organism)','458045006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458046007','458046007','http://snomed.info/sct','Escherichia coli serotype O2:H6 (organism)','458046007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458047003','458047003','http://snomed.info/sct','Escherichia coli serotype O140:H32 (organism)','458047003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458048008','458048008','http://snomed.info/sct','Escherichia coli serotype O136:nonmotile (organism)','458048008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458049000','458049000','http://snomed.info/sct','Escherichia coli serotype O136:H16 (organism)','458049000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458050000','458050000','http://snomed.info/sct','Escherichia coli serotype O136:H12 (organism)','458050000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458051001','458051001','http://snomed.info/sct','Escherichia coli serogroup O132 (organism)','458051001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458052008','458052008','http://snomed.info/sct','Escherichia coli serotype O132:H31 (organism)','458052008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458053003','458053003','http://snomed.info/sct','Escherichia coli serotype O130:H11 (organism)','458053003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458054009','458054009','http://snomed.info/sct','Escherichia coli serotype O128:nonmotile (organism)','458054009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458055005','458055005','http://snomed.info/sct','Escherichia coli serotype O128:H28 (organism)','458055005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458056006','458056006','http://snomed.info/sct','Escherichia coli serotype O128:H2 (organism)','458056006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458057002','458057002','http://snomed.info/sct','Escherichia coli serotype O128:H7 (organism)','458057002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458058007','458058007','http://snomed.info/sct','Escherichia coli serotype O128:H12 (organism)','458058007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458059004','458059004','http://snomed.info/sct','Escherichia coli serotype O128:H45 (organism)','458059004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458060009','458060009','http://snomed.info/sct','Escherichia coli serotype O126:H8 (organism)','458060009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458061008','458061008','http://snomed.info/sct','Escherichia coli serotype O126:nonmotile (organism)','458061008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458062001','458062001','http://snomed.info/sct','Escherichia coli serotype O137:H41 (organism)','458062001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458063006','458063006','http://snomed.info/sct','Escherichia coli serotype O14:nonmotile (organism)','458063006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458064000','458064000','http://snomed.info/sct','Escherichia coli serotype O142:H6 (organism)','458064000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458065004','458065004','http://snomed.info/sct','Escherichia coli serotype O143:nonmotile (organism)','458065004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458066003','458066003','http://snomed.info/sct','Escherichia coli serotype O126:H27 (organism)','458066003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458067007','458067007','http://snomed.info/sct','Escherichia coli serotype O125:H21 (organism)','458067007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458068002','458068002','http://snomed.info/sct','Escherichia coli serotype O124:nonmotile (organism)','458068002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458069005','458069005','http://snomed.info/sct','Escherichia coli serotype O124:H30 (organism)','458069005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458070006','458070006','http://snomed.info/sct','Escherichia coli serotype O124:H7 (organism)','458070006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458071005','458071005','http://snomed.info/sct','Escherichia coli serogroup O123 (organism)','458071005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458072003','458072003','http://snomed.info/sct','Escherichia coli serotype O123:nonmotile (organism)','458072003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458073008','458073008','http://snomed.info/sct','Escherichia coli serotype O123:H2 (organism)','458073008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458074002','458074002','http://snomed.info/sct','Escherichia coli serotype O123:H11 (organism)','458074002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458075001','458075001','http://snomed.info/sct','Escherichia coli serotype O121:H19 (organism)','458075001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458076000','458076000','http://snomed.info/sct','Escherichia coli serotype O121:nonmotile (organism)','458076000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458077009','458077009','http://snomed.info/sct','Escherichia coli serotype O121:H7 (organism)','458077009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458078004','458078004','http://snomed.info/sct','Escherichia coli serotype O119:H6 (organism)','458078004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458079007','458079007','http://snomed.info/sct','Escherichia coli serotype O119:nonmotile (organism)','458079007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458080005','458080005','http://snomed.info/sct','Escherichia coli serotype O119:H4 (organism)','458080005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458081009','458081009','http://snomed.info/sct','Escherichia coli serotype O119:H28 (organism)','458081009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458082002','458082002','http://snomed.info/sct','Escherichia coli serotype O118:H12 (organism)','458082002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458083007','458083007','http://snomed.info/sct','Escherichia coli serotype O118:nonmotile (organism)','458083007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458089006','458089006','http://snomed.info/sct','Escherichia coli serogroup O3 (organism)','458089006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458090002','458090002','http://snomed.info/sct','Escherichia coli serogroup O7 (organism)','458090002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458091003','458091003','http://snomed.info/sct','Escherichia coli serogroup O11 (organism)','458091003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458092005','458092005','http://snomed.info/sct','Escherichia coli serotype O2:H45 (organism)','458092005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458093000','458093000','http://snomed.info/sct','Escherichia coli serotype O3:H4 (organism)','458093000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458094006','458094006','http://snomed.info/sct','Escherichia coli serotype O5:nonmotile (organism)','458094006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458095007','458095007','http://snomed.info/sct','Escherichia coli serotype O6:H16 (organism)','458095007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458096008','458096008','http://snomed.info/sct','Escherichia coli serotype O6:H34 (organism)','458096008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458097004','458097004','http://snomed.info/sct','Escherichia coli serotype O6:nonmotile (organism)','458097004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458099001','458099001','http://snomed.info/sct','Escherichia coli serotype O7:H18 (organism)','458099001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458100009','458100009','http://snomed.info/sct','Escherichia coli serotype O7:H15 (organism)','458100009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458101008','458101008','http://snomed.info/sct','Escherichia coli serotype O7:H7 (organism)','458101008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458102001','458102001','http://snomed.info/sct','Escherichia coli serotype O7:nonmotile (organism)','458102001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458103006','458103006','http://snomed.info/sct','Escherichia coli serotype O8:H16 (organism)','458103006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458104000','458104000','http://snomed.info/sct','Escherichia coli serotype O8:H19 (organism)','458104000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458105004','458105004','http://snomed.info/sct','Escherichia coli serotype O8:H28 (organism)','458105004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458106003','458106003','http://snomed.info/sct','Escherichia coli serotype O8:H8 (organism)','458106003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458107007','458107007','http://snomed.info/sct','Escherichia coli serotype O8:H9 (organism)','458107007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458108002','458108002','http://snomed.info/sct','Escherichia coli serotype O11:H26 (organism)','458108002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458109005','458109005','http://snomed.info/sct','Escherichia coli serotype O14:H11 (organism)','458109005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458110000','458110000','http://snomed.info/sct','Escherichia coli serogroup O18 (organism)','458110000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458111001','458111001','http://snomed.info/sct','Escherichia coli serotype O14:H23 (organism)','458111001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458112008','458112008','http://snomed.info/sct','Escherichia coli serotype O14:H28 (organism)','458112008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458113003','458113003','http://snomed.info/sct','Escherichia coli serotype O14:H7 (organism)','458113003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458114009','458114009','http://snomed.info/sct','Escherichia coli serotype O18:H7 (organism)','458114009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458115005','458115005','http://snomed.info/sct','Escherichia coli serogroup O21 (organism)','458115005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458116006','458116006','http://snomed.info/sct','Escherichia coli serotype O21:nonmotile (organism)','458116006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458117002','458117002','http://snomed.info/sct','Escherichia coli serotype O22:H5 (organism)','458117002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458118007','458118007','http://snomed.info/sct','Escherichia coli serotype O22:H8 (organism)','458118007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458119004','458119004','http://snomed.info/sct','Escherichia coli serogroup O24 (organism)','458119004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458120005','458120005','http://snomed.info/sct','Escherichia coli serotype O24:H25 (organism)','458120005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458121009','458121009','http://snomed.info/sct','Escherichia coli serotype O25:H42 (organism)','458121009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458122002','458122002','http://snomed.info/sct','Escherichia coli serotype O25:nonmotile (organism)','458122002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458123007','458123007','http://snomed.info/sct','Escherichia coli serotype O25:H156 (organism)','458123007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458124001','458124001','http://snomed.info/sct','Escherichia coli serotype O25:H1 (organism)','458124001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458125000','458125000','http://snomed.info/sct','Escherichia coli serotype O26:H11 (organism)','458125000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458126004','458126004','http://snomed.info/sct','Escherichia coli serotype O26:nonmotile (organism)','458126004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458127008','458127008','http://snomed.info/sct','Escherichia coli serotype O26:H46 (organism)','458127008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458128003','458128003','http://snomed.info/sct','Escherichia coli serotype O26:H2 (organism)','458128003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458129006','458129006','http://snomed.info/sct','Escherichia coli serotype O27:H20 (organism)','458129006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458130001','458130001','http://snomed.info/sct','Escherichia coli serotype O27:H7 (organism)','458130001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458131002','458131002','http://snomed.info/sct','Escherichia coli serotype O27:nonmotile (organism)','458131002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458132009','458132009','http://snomed.info/sct','Escherichia coli serotype O28:H174 (organism)','458132009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458133004','458133004','http://snomed.info/sct','Escherichia coli serotype O28:H25 (organism)','458133004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458134005','458134005','http://snomed.info/sct','Escherichia coli serotype O28:nonmotile (organism)','458134005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458135006','458135006','http://snomed.info/sct','Escherichia coli serotype O29:nonmotile (organism)','458135006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458136007','458136007','http://snomed.info/sct','Escherichia coli serogroup O38 (organism)','458136007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458137003','458137003','http://snomed.info/sct','Escherichia coli serotype O38:H26 (organism)','458137003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458138008','458138008','http://snomed.info/sct','Escherichia coli serogroup O42 (organism)','458138008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458139000','458139000','http://snomed.info/sct','Escherichia coli serotype O42:H25 (organism)','458139000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458140003','458140003','http://snomed.info/sct','Escherichia coli serogroup O43 (organism)','458140003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458141004','458141004','http://snomed.info/sct','Escherichia coli serotype O43:H2 (organism)','458141004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458142006','458142006','http://snomed.info/sct','Escherichia coli serotype O45:H2 (organism)','458142006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458143001','458143001','http://snomed.info/sct','Escherichia coli serotype O45:H77 (organism)','458143001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458144007','458144007','http://snomed.info/sct','Escherichia coli serotype O45:H8 (organism)','458144007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458145008','458145008','http://snomed.info/sct','Escherchia coli serotype O45:nonmotile (organism)','458145008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458146009','458146009','http://snomed.info/sct','Escherichia coli serotype O48:H21 (organism)','458146009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458147000','458147000','http://snomed.info/sct','Escherichia coli serotype O49:nonmotile (organism)','458147000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458148005','458148005','http://snomed.info/sct','Escherichia coli serotype O49:H19 (organism)','458148005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458149002','458149002','http://snomed.info/sct','Escherichia coli serotype O50:H7 (organism)','458149002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458150002','458150002','http://snomed.info/sct','Escherichia coli serotype O50:H2 (organism)','458150002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458151003','458151003','http://snomed.info/sct','Escherichia coli serotype O50:H8 (organism)','458151003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458152005','458152005','http://snomed.info/sct','Escherichia coli serogroup O52 (organism)','458152005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458153000','458153000','http://snomed.info/sct','Escherichia coli serotype O52:H45 (organism)','458153000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458154006','458154006','http://snomed.info/sct','Escherichia coli serogroup O53 (organism)','458154006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458155007','458155007','http://snomed.info/sct','Escherichia coli serotype O53:H7 (organism)','458155007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458156008','458156008','http://snomed.info/sct','Escherichia coli serotype O55:H12 (organism)','458156008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458157004','458157004','http://snomed.info/sct','Escherichia coli serotype O55:H7 (organism)','458157004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458158009','458158009','http://snomed.info/sct','Escherichia coli serotype O55:H6 (organism)','458158009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458159001','458159001','http://snomed.info/sct','Escherichia coli serotype O55:nonmotile (organism)','458159001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458160006','458160006','http://snomed.info/sct','Escherichia coli serogroup O60 (organism)','458160006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458161005','458161005','http://snomed.info/sct','Escherichia coli serotype O60:H19 (organism)','458161005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458162003','458162003','http://snomed.info/sct','Escherichia coli serotype O63:H12 (organism)','458162003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458163008','458163008','http://snomed.info/sct','Escherichia coli serotype O63:H6 (organism)','458163008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458164002','458164002','http://snomed.info/sct','Escherichia coli serotype O69:H11 (organism)','458164002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_458165001','458165001','http://snomed.info/sct','Escherichia coli serotype O69:nonmotile (organism)','458165001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_459069004','459069004','http://snomed.info/sct','Escherichia coli serotype O118:H16 (organism)','459069004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_459070003','459070003','http://snomed.info/sct','Escherichia coli serotype O118:H2 (organism)','459070003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_459071004','459071004','http://snomed.info/sct','Escherichia coli serogroup O117 (organism)','459071004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_459072006','459072006','http://snomed.info/sct','Escherichia coli serotype O117:H7 (organism)','459072006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_459073001','459073001','http://snomed.info/sct','Escherichia coli serotype O117:H4 (organism)','459073001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_459074007','459074007','http://snomed.info/sct','Escherichia coli serogroup O116 (organism)','459074007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_459075008','459075008','http://snomed.info/sct','Escherichia coli serotype O116:nonmotile (organism)','459075008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_459076009','459076009','http://snomed.info/sct','Escherichia coli serotype O116:H21 (organism)','459076009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_459077000','459077000','http://snomed.info/sct','Escherichia coli serogroup O115 (organism)','459077000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_459078005','459078005','http://snomed.info/sct','Escherichia coli serotype O115:H25 (organism)','459078005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_459079002','459079002','http://snomed.info/sct','Escherichia coli serotype O114:H2 (organism)','459079002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_459080004','459080004','http://snomed.info/sct','Escherichia coli serotype O114:nonmotile (organism)','459080004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_459081000','459081000','http://snomed.info/sct','Escherichia coli serotype O113:H21 (organism)','459081000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_459082007','459082007','http://snomed.info/sct','Escherichia coli serotype O113:H8 (organism)','459082007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_459083002','459083002','http://snomed.info/sct','Escherichia coli serotype O113:nonmotile (organism)','459083002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_459084008','459084008','http://snomed.info/sct','Escherichia coli serotype O112:nonmotile (organism)','459084008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_459085009','459085009','http://snomed.info/sct','Escherichia coli serotype O112:H19 (organism)','459085009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_459086005','459086005','http://snomed.info/sct','Escherichia coli serotype O111:H2 (organism)','459086005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_459087001','459087001','http://snomed.info/sct','Escherichia coli serotype O111:nonmotile (organism)','459087001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_459088006','459088006','http://snomed.info/sct','Escherichia coli serotype O111:H8 (organism)','459088006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_459089003','459089003','http://snomed.info/sct','Escherichia coli serotype O111:H12 (organism)','459089003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_459090007','459090007','http://snomed.info/sct','Escherichia coli serotype O111:H11 (organism)','459090007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_459091006','459091006','http://snomed.info/sct','Escherichia coli serotype O111:H21 (organism)','459091006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_459092004','459092004','http://snomed.info/sct','Escherichia coli serogroup O110 (organism)','459092004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_459093009','459093009','http://snomed.info/sct','Escherichia coli serotype O110:H28 (organism)','459093009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_459094003','459094003','http://snomed.info/sct','Escherichia coli serotype O110:H2 (organism)','459094003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_459095002','459095002','http://snomed.info/sct','Escherichia coli serotype O110:H19 (organism)','459095002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_459096001','459096001','http://snomed.info/sct','Escherichia coli serogroup O109 (organism)','459096001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_459097005','459097005','http://snomed.info/sct','Escherichia coli serotype O109:H25 (organism)','459097005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_459098000','459098000','http://snomed.info/sct','Escherichia coli serotype O104:H7 (organism)','459098000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_459099008','459099008','http://snomed.info/sct','Escherichia coli serotype O104:H21 (organism)','459099008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_459100000','459100000','http://snomed.info/sct','Escherichia coli serotype O104:nonmotile (organism)','459100000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_459101001','459101001','http://snomed.info/sct','Escherichia coli serotype O103:H2 (organism)','459101001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_459102008','459102008','http://snomed.info/sct','Escherichia coli serotype O103:nonmotile (organism)','459102008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_459103003','459103003','http://snomed.info/sct','Escherichia coli serotype O103:H4 (organism)','459103003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_459104009','459104009','http://snomed.info/sct','Escherichia coli serotype O103:H25 (organism)','459104009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_459105005','459105005','http://snomed.info/sct','Escherichia coli serotype O103:H11 (organism)','459105005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_459106006','459106006','http://snomed.info/sct','Escherichia coli serogroup O101 (organism)','459106006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_459107002','459107002','http://snomed.info/sct','Escherichia coli serogroup O100 (organism)','459107002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_459108007','459108007','http://snomed.info/sct','Escherichia coli serotype O100:nonmotile (organism)','459108007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_459109004','459109004','http://snomed.info/sct','Escherichia coli serogroup O98 (organism)','459109004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_459110009','459110009','http://snomed.info/sct','Escherichia coli serotype O98:H8 (organism)','459110009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_459111008','459111008','http://snomed.info/sct','Escherichia coli serotype O98:nonmotile (organism)','459111008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_459112001','459112001','http://snomed.info/sct','Escherichia coli serotype O91:nonmotile (organism)','459112001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_459113006','459113006','http://snomed.info/sct','Escherichia coli serotype O91:H21 (organism)','459113006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_459114000','459114000','http://snomed.info/sct','Escherichia coli serotype O91:H10 (organism)','459114000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_459115004','459115004','http://snomed.info/sct','Escherichia coli serotype O91:H49 (organism)','459115004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_459116003','459116003','http://snomed.info/sct','Escherichia coli serotype O91:H14 (organism)','459116003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_459117007','459117007','http://snomed.info/sct','Escherichia coli serotype O9:nonmotile (organism)','459117007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_459118002','459118002','http://snomed.info/sct','Escherichia coli serotype O88:H25 (organism)','459118002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_459119005','459119005','http://snomed.info/sct','Escherichia coli serotype O86:H34 (organism)','459119005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_459120004','459120004','http://snomed.info/sct','Escherichia coli serotype O86:nonmotile (organism)','459120004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_459121000','459121000','http://snomed.info/sct','Escherichia coli serogroup O85 (organism)','459121000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_459122007','459122007','http://snomed.info/sct','Escherichia coli serotype O85:H43 (organism)','459122007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_459123002','459123002','http://snomed.info/sct','Escherichia coli serotype O85:H1 (organism)','459123002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_459124008','459124008','http://snomed.info/sct','Escherichia coli serotype O84:nonmotile (organism)','459124008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_459125009','459125009','http://snomed.info/sct','Escherichia coli serotype O84:H2 (organism)','459125009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_459126005','459126005','http://snomed.info/sct','Escherichia coli serotype O84:H16 (organism)','459126005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_459127001','459127001','http://snomed.info/sct','Escherichia coli serotype O83:H1 (organism)','459127001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_459128006','459128006','http://snomed.info/sct','Escherichia coli serogroup O82 (organism)','459128006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_459129003','459129003','http://snomed.info/sct','Escherichia coli serotype O82:H8 (organism)','459129003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_459130008','459130008','http://snomed.info/sct','Escherichia coli serogroup O80 (organism)','459130008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_459131007','459131007','http://snomed.info/sct','Escherichia coli serotype O80:nonmotile (organism)','459131007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_459132000','459132000','http://snomed.info/sct','Escherichia coli serotype O79:H7 (organism)','459132000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_459133005','459133005','http://snomed.info/sct','Escherichia coli serotype O79:H19 (organism)','459133005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_459134004','459134004','http://snomed.info/sct','Escherichia coli serotype O78:H11 (organism)','459134004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_459135003','459135003','http://snomed.info/sct','Escherichia coli serotype O78:H12 (organism)','459135003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_459136002','459136002','http://snomed.info/sct','Escherichia coli serogroup O76 (organism)','459136002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_459137006','459137006','http://snomed.info/sct','Escherichia coli serotype O76:H7 (organism)','459137006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_459138001','459138001','http://snomed.info/sct','Escherichia coli serotype O76:H21 (organism)','459138001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_459139009','459139009','http://snomed.info/sct','Escherichia coli serotype O76:H2 (organism)','459139009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_459140006','459140006','http://snomed.info/sct','Escherichia coli serotype O76:H19 (organism)','459140006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_459141005','459141005','http://snomed.info/sct','Escherichia coli serogroup O74 (organism)','459141005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_459142003','459142003','http://snomed.info/sct','Escherichia coli serotype O74:H25 (organism)','459142003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_459143008','459143008','http://snomed.info/sct','Escherichia coli serogroup O73 (organism)','459143008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_459144002','459144002','http://snomed.info/sct','Escherichia coli serotype O73:H45 (organism)','459144002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_459145001','459145001','http://snomed.info/sct','Escherichia coli serotype O73:H18 (organism)','459145001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_459146000','459146000','http://snomed.info/sct','Escherichia coli serogroup O71 (organism)','459146000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_459147009','459147009','http://snomed.info/sct','Escherichia coli serotype O71:nonmotile (organism)','459147009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_459148004','459148004','http://snomed.info/sct','Escherichia coli serotype O71:H28 (organism)','459148004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_459149007','459149007','http://snomed.info/sct','Escherichia coli serogroup O70 (organism)','459149007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_459150007','459150007','http://snomed.info/sct','Escherichia coli serotype O70:H11 (organism)','459150007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_48501000087101','48501000087101','http://snomed.info/sct','Enterobacter chengduensis (organism)','48501000087101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_48511000087104','48511000087104','http://snomed.info/sct','Enterobacter chuandaensis (organism)','48511000087104','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_48521000087107','48521000087107','http://snomed.info/sct','Enterobacter sichuanensis (organism)','48521000087107','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_51271000087100','51271000087100','http://snomed.info/sct','Carbapenemase-producing Klebsiella oxytoca (organism)','51271000087100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_56415008','56415008','http://snomed.info/sct','Klebsiella pneumoniae (organism)','56415008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_56813009','56813009','http://snomed.info/sct','Enterobacter cloacae subspecies dissolvens (organism)','56813009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_58683007','58683007','http://snomed.info/sct','Genus Enterobacter (organism)','58683007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_608886002','608886002','http://snomed.info/sct','Escherichia coli serogroup O44 (organism)','608886002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_609333000','609333000','http://snomed.info/sct','Escherichia coli serotype O144:nonmotile (organism)','609333000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_609353001','609353001','http://snomed.info/sct','Escherichia coli serotype O1:nonmotile (organism)','609353001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_609354007','609354007','http://snomed.info/sct','Escherichia coli serotype O127:H21 (organism)','609354007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_609355008','609355008','http://snomed.info/sct','Escherichia coli serotype O127:H6 (organism)','609355008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_609356009','609356009','http://snomed.info/sct','Escherichia coli serotype O127:H9 (organism)','609356009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_609357000','609357000','http://snomed.info/sct','Escherichia coli serotype O127:nonmotile (organism)','609357000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_609358005','609358005','http://snomed.info/sct','Escherichia coli serotype O15:H11 (organism)','609358005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_609359002','609359002','http://snomed.info/sct','Escherichia coli serotype O159:H20 (organism)','609359002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_609360007','609360007','http://snomed.info/sct','Escherichia coli serotype O159:H4 (organism)','609360007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_609361006','609361006','http://snomed.info/sct','Escherichia coli serotype O159:nonmotile (organism)','609361006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_609364003','609364003','http://snomed.info/sct','Escherichia coli serotype O164:nonmotile (organism)','609364003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_609365002','609365002','http://snomed.info/sct','Escherichia coli serotype O167:nonmotile (organism)','609365002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_609366001','609366001','http://snomed.info/sct','Escherichia coli serotype O167:H5 (organism)','609366001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_609367005','609367005','http://snomed.info/sct','Escherichia coli serotype O169:H41 (organism)','609367005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_62592009','62592009','http://snomed.info/sct','Klebsiella aerogenes (organism)','62592009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_65186004','65186004','http://snomed.info/sct','Klebsiella pneumoniae ss. ozaenae (organism)','65186004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_698020006','698020006','http://snomed.info/sct','Escherichia coli serogroup O28ac (organism)','698020006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_698022003','698022003','http://snomed.info/sct','Escherichia coli serotype O28ac:H25 (organism)','698022003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_705173006','705173006','http://snomed.info/sct','Escherichia coli serotype O181:nonmotile (organism)','705173006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_705174000','705174000','http://snomed.info/sct','Escherichia coli serotype O169:H11 (organism)','705174000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_705177007','705177007','http://snomed.info/sct','Escherichia coli serogroup O186 (organism)','705177007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_706993007','706993007','http://snomed.info/sct','Escherichia coli serotype O186:H2 (organism)','706993007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_706994001','706994001','http://snomed.info/sct','Escherichia coli serotype O1:H20 (organism)','706994001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_706995000','706995000','http://snomed.info/sct','Escherichia coli serotype O71:H7 (organism)','706995000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_706996004','706996004','http://snomed.info/sct','Escherichia coli serotype O71:H11 (organism)','706996004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_706997008','706997008','http://snomed.info/sct','Escherichia coli serotype O112:H2 (organism)','706997008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_706998003','706998003','http://snomed.info/sct','Escherichia coli serotype O126:H40 (organism)','706998003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_707499005','707499005','http://snomed.info/sct','Escherichia coli serotype O25:H4 (organism)','707499005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_707500001','707500001','http://snomed.info/sct','Escherichia coli serotype O157:H19 (organism)','707500001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_707501002','707501002','http://snomed.info/sct','Escherichia coli serogroup O176 (organism)','707501002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_707502009','707502009','http://snomed.info/sct','Escherichia coli serotype O176:nonmotile (organism)','707502009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_709311003','709311003','http://snomed.info/sct','Escherichia coli serogroup O32 (organism)','709311003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_709312005','709312005','http://snomed.info/sct','Escherichia coli serogroup O185 (organism)','709312005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_709679001','709679001','http://snomed.info/sct','Escherichia coli serotype O132:H34 (organism)','709679001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_709680003','709680003','http://snomed.info/sct','Escherichia coli serotype O1:H7 (organism)','709680003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_709683001','709683001','http://snomed.info/sct','Escherichia coli serotype O86:H18 (organism)','709683001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_710253004','710253004','http://snomed.info/sct','Escherichia coli O18ac:H7:K1 (organism)','710253004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_710886005','710886005','http://snomed.info/sct','Escherichia coli 987P (organism)','710886005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_710887001','710887001','http://snomed.info/sct','Escherichia coli F41 (organism)','710887001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_710888006','710888006','http://snomed.info/sct','Escherichia coli K88 (organism)','710888006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_710889003','710889003','http://snomed.info/sct','Escherichia coli K99 (organism)','710889003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_713141005','713141005','http://snomed.info/sct','Escherichia coli serotype O157:H12 (organism)','713141005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_713171002','713171002','http://snomed.info/sct','Klebsiella pneumoniae carbapenemase 2 producing Klebsiella pneumoniae (organism)','713171002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_713416009','713416009','http://snomed.info/sct','Non-Shiga toxin-producing Escherichia coli, serotype O157:H7 (organism)','713416009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_713925008','713925008','http://snomed.info/sct','Multiple drug-resistant Escherichia coli (organism)','713925008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_713926009','713926009','http://snomed.info/sct','Multiple drug-resistant Klebsiella pneumoniae subsp. ozaenae (organism)','713926009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_713928005','713928005','http://snomed.info/sct','Extended spectrum beta-lactamase producing Klebsiella oxytoca (organism)','713928005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_714007005','714007005','http://snomed.info/sct','Carbapenem resistant Enterobacter cloacae (organism)','714007005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_714315002','714315002','http://snomed.info/sct','Multiple drug-resistant Klebsiella pneumoniae (organism)','714315002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_714316001','714316001','http://snomed.info/sct','Multiple drug-resistant Enterobacter asburiae (organism)','714316001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_714317005','714317005','http://snomed.info/sct','Multiple drug-resistant Enterobacter cloacae (organism)','714317005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_715306002','715306002','http://snomed.info/sct','Escherichia coli serogroup O108 (organism)','715306002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_715307006','715307006','http://snomed.info/sct','Carbapenem resistant Escherichia coli (organism)','715307006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_715308001','715308001','http://snomed.info/sct','Multiple drug-resistant Klebsiella aerogenes (organism)','715308001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_715309009','715309009','http://snomed.info/sct','Escherichia coli serogroup O64 (organism)','715309009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_715310004','715310004','http://snomed.info/sct','Escherichia coli serogroup O66 (organism)','715310004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_715876007','715876007','http://snomed.info/sct','Escherichia coli serotype O103:H21 (organism)','715876007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_715877003','715877003','http://snomed.info/sct','Enteropathogenic Escherichia coli, serogroup O157 (organism)','715877003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_71681000112102','71681000112102','http://snomed.info/sct','Escherichia coli serotype O150:H8 (organism)','71681000112102','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_717357002','717357002','http://snomed.info/sct','Escherichia coli serotype O128ab:H2 (organism)','717357002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_719772008','719772008','http://snomed.info/sct','Hydrogen sulfide producing Escherichia coli (organism)','719772008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_719792001','719792001','http://snomed.info/sct','Carbapenem resistant Klebsiella oxytoca (organism)','719792001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_720607001','720607001','http://snomed.info/sct','Klebsiella species, not Klebsiella pneumoniae and not Klebsiella oxytoca (organism)','720607001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_721892009','721892009','http://snomed.info/sct','Escherichia coli not O157:H7 (organism)','721892009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_721893004','721893004','http://snomed.info/sct','Escherichia coli serotype O153:H6 (organism)','721893004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_721894005','721894005','http://snomed.info/sct','Escherichia coli serotype O181:H16 (organism)','721894005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_721910001','721910001','http://snomed.info/sct','Extended spectrum beta-lactamase producing Enterobacter cloacae (organism)','721910001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_721950003','721950003','http://snomed.info/sct','Enterobacter cloacae subspecies cloacae (organism)','721950003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_725506000','725506000','http://snomed.info/sct','Escherichia coli serogroup O75 (organism)','725506000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_733593005','733593005','http://snomed.info/sct','Escherichia coli serogroup O (organism)','733593005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_733594004','733594004','http://snomed.info/sct','Escherichia coli serogroup O:nonmotile (organism)','733594004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_733595003','733595003','http://snomed.info/sct','Enterohemorrhagic Escherichia coli serogroup O:nonmotile (organism)','733595003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_733596002','733596002','http://snomed.info/sct','Enteroinvasive Escherichia coli serogroup O:nonmotile (organism)','733596002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_734200008','734200008','http://snomed.info/sct','Carbapenem resistant Klebsiella aerogenes (organism)','734200008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_734201007','734201007','http://snomed.info/sct','Carbapenem resistant Enterobacter cloacae complex (organism)','734201007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_734352006','734352006','http://snomed.info/sct','Carbapenemase-producing Klebsiella aerogenes (organism)','734352006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_734353001','734353001','http://snomed.info/sct','Carbapenemase-producing Enterobacter cloacae complex (organism)','734353001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_735270003','735270003','http://snomed.info/sct','Enterohemorrhagic Escherichia coli not O157:H7 (organism)','735270003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_737528008','737528008','http://snomed.info/sct','Carbapenemase-producing Escherichia coli (organism)','737528008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_737529000','737529000','http://snomed.info/sct','Carbapenemase-producing Enterobacter cloacae (organism)','737529000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_738504009','738504009','http://snomed.info/sct','Enterobacter mori (organism)','738504009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_738514000','738514000','http://snomed.info/sct','Escherichia coli serogroup O77 (organism)','738514000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_738773001','738773001','http://snomed.info/sct','Escherichia coli serogroup O134 (organism)','738773001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_75032006','75032006','http://snomed.info/sct','Genus Klebsiella (organism)','75032006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_768157006','768157006','http://snomed.info/sct','Enterobacter xiangfangensis (organism)','768157006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_770390002','770390002','http://snomed.info/sct','Extended spectrum beta-lactamase producing Klebsiella (organism)','770390002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_773751004','773751004','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O123:H2 (organism)','773751004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_781054004','781054004','http://snomed.info/sct','Klebsiella quasipneumoniae (organism)','781054004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_781055003','781055003','http://snomed.info/sct','Klebsiella quasipneumoniae subspecies similipneumoniae (organism)','781055003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_781056002','781056002','http://snomed.info/sct','Klebsiella quasipneumoniae subspecies quasipneumoniae (organism)','781056002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782208003','782208003','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O28 (organism)','782208003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782209006','782209006','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O40 (organism)','782209006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782210001','782210001','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O50 (organism)','782210001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782217003','782217003','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O127 (organism)','782217003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782219000','782219000','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O17 (organism)','782219000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782220006','782220006','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O21 (organism)','782220006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782221005','782221005','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O22 (organism)','782221005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782223008','782223008','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O24 (organism)','782223008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782225001','782225001','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O49 (organism)','782225001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782226000','782226000','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O1 (organism)','782226000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782227009','782227009','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O2 (organism)','782227009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782228004','782228004','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O3 (organism)','782228004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782229007','782229007','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O5 (organism)','782229007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782231003','782231003','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O6 (organism)','782231003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782232005','782232005','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O8 (organism)','782232005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782233000','782233000','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O9 (organism)','782233000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782234006','782234006','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O11 (organism)','782234006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782236008','782236008','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O12 (organism)','782236008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782237004','782237004','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O14 (organism)','782237004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782239001','782239001','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O149 (organism)','782239001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782240004','782240004','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O151 (organism)','782240004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782241000','782241000','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O152 (organism)','782241000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782242007','782242007','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O153 (organism)','782242007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782243002','782243002','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O156 (organism)','782243002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782244008','782244008','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O162 (organism)','782244008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782245009','782245009','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O163 (organism)','782245009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782246005','782246005','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O165 (organism)','782246005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782247001','782247001','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O55 (organism)','782247001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782248006','782248006','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O69 (organism)','782248006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782249003','782249003','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O175 (organism)','782249003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782250003','782250003','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O177 (organism)','782250003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782252006','782252006','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O178 (organism)','782252006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782253001','782253001','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O181 (organism)','782253001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782254007','782254007','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O186 (organism)','782254007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782255008','782255008','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O74 (organism)','782255008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782256009','782256009','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O76 (organism)','782256009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782257000','782257000','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O77 (organism)','782257000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782258005','782258005','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O79 (organism)','782258005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782259002','782259002','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O80 (organism)','782259002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782260007','782260007','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O104 (organism)','782260007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782261006','782261006','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O109 (organism)','782261006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782262004','782262004','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O110 (organism)','782262004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782263009','782263009','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O112 (organism)','782263009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782265002','782265002','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O113 (organism)','782265002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782266001','782266001','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O115 (organism)','782266001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782267005','782267005','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O118 (organism)','782267005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782268000','782268000','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O70 (organism)','782268000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782269008','782269008','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O71 (organism)','782269008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782270009','782270009','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O73 (organism)','782270009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782274000','782274000','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O128 (organism)','782274000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782275004','782275004','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O130 (organism)','782275004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782276003','782276003','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O131 (organism)','782276003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782277007','782277007','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O137 (organism)','782277007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782278002','782278002','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O141 (organism)','782278002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782279005','782279005','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O146 (organism)','782279005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782280008','782280008','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O83 (organism)','782280008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782281007','782281007','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O88 (organism)','782281007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782282000','782282000','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O91 (organism)','782282000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782287006','782287006','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O169 (organism)','782287006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782288001','782288001','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O174 (organism)','782288001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782289009','782289009','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O119 (organism)','782289009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782290000','782290000','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O123 (organism)','782290000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782291001','782291001','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O126 (organism)','782291001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782292008','782292008','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O137:H6 (organism)','782292008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782293003','782293003','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O141:H49 (organism)','782293003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782294009','782294009','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O146:H21 (organism)','782294009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782297002','782297002','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O149:H49 (organism)','782297002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782298007','782298007','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O151:H2 (organism)','782298007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782299004','782299004','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O169:H11 (organism)','782299004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782300007','782300007','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O174:H2 (organism)','782300007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782301006','782301006','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O174:H21 (organism)','782301006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782302004','782302004','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O175:H10 (organism)','782302004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782303009','782303009','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O178:H19 (organism)','782303009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782304003','782304003','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O181:H4 (organism)','782304003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782305002','782305002','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O186:H2 (organism)','782305002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782306001','782306001','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O130:H11 (organism)','782306001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782307005','782307005','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O131:H27 (organism)','782307005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782308000','782308000','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O146:H28 (organism)','782308000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782312006','782312006','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O156:H25 (organism)','782312006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782313001','782313001','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O162:H33 (organism)','782313001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782314007','782314007','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O70:H11 (organism)','782314007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782315008','782315008','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O71:H7 (organism)','782315008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782317000','782317000','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O71:H11 (organism)','782317000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782318005','782318005','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O1:H20 (organism)','782318005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782319002','782319002','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O3:H8 (organism)','782319002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782320008','782320008','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O6:H34 (organism)','782320008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782323005','782323005','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O8:H19 (organism)','782323005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782324004','782324004','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O11:H16 (organism)','782324004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782328001','782328001','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O103:H11 (organism)','782328001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782341002','782341002','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O103:H25 (organism)','782341002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782342009','782342009','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O104:H7 (organism)','782342009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782343004','782343004','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O17:H45 (organism)','782343004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782344005','782344005','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O21:H55 (organism)','782344005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782345006','782345006','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O24:H41 (organism)','782345006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782346007','782346007','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O28:H9 (organism)','782346007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782347003','782347003','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O40:H10 (organism)','782347003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782348008','782348008','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O49:H21 (organism)','782348008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782349000','782349000','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O69:H11 (organism)','782349000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782350000','782350000','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O151:H16 (organism)','782350000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782351001','782351001','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O152:H2 (organism)','782351001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782352008','782352008','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O109:H21 (organism)','782352008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782353003','782353003','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O110:H28 (organism)','782353003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782354009','782354009','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O111:H11 (organism)','782354009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782355005','782355005','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O112:H2 (organism)','782355005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782356006','782356006','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O115:H10 (organism)','782356006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782357002','782357002','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O123:H11 (organism)','782357002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782358007','782358007','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O126:H27 (organism)','782358007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782359004','782359004','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O126:H40 (organism)','782359004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782360009','782360009','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O127:H16 (organism)','782360009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782361008','782361008','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O128:H45 (organism)','782361008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782362001','782362001','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O73:H18 (organism)','782362001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782363006','782363006','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O74:H52 (organism)','782363006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782364000','782364000','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O76:H7 (organism)','782364000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782365004','782365004','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O76:H19 (organism)','782365004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782366003','782366003','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O77:H45 (organism)','782366003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782367007','782367007','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O88:H25 (organism)','782367007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_782368002','782368002','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O91:H14 (organism)','782368002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_784384000','784384000','http://snomed.info/sct','Escherichia coli serotype O rough:H5 (organism)','784384000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_785853000','785853000','http://snomed.info/sct','Escherichia coli serotype O8:H12 (organism)','785853000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_785854006','785854006','http://snomed.info/sct','Escherichia coli serotype O121:H1 (organism)','785854006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_785855007','785855007','http://snomed.info/sct','Escherichia coli serogroup O81 (organism)','785855007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_785856008','785856008','http://snomed.info/sct','Escherichia coli serotype O81:H27 (organism)','785856008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_788035006','788035006','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serotype O71:H8 (organism)','788035006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_792851007','792851007','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O121 (organism)','792851007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_792853005','792853005','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O145 (organism)','792853005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_792860004','792860004','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O111 (organism)','792860004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_792861000','792861000','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O103 (organism)','792861000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_792897009','792897009','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O45 (organism)','792897009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_792898004','792898004','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O26 (organism)','792898004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_792899007','792899007','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O157 (organism)','792899007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_816085003','816085003','http://snomed.info/sct','Multidrug-resistant Enterobacter cloacae complex (organism)','816085003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_830231008','830231008','http://snomed.info/sct','Escherichia coli serogroup O93 (organism)','830231008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_83285000','83285000','http://snomed.info/sct','Enteropathogenic Escherichia coli (organism)','83285000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_838549008','838549008','http://snomed.info/sct','Shiga toxin-producing Escherichia coli (organism)','838549008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_840375007','840375007','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O100 (organism)','840375007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_840376008','840376008','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O108 (organism)','840376008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_840377004','840377004','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O142 (organism)','840377004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_840378009','840378009','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O148 (organism)','840378009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_840379001','840379001','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O150 (organism)','840379001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_840380003','840380003','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O159 (organism)','840380003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_840381004','840381004','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O160 (organism)','840381004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_840382006','840382006','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O176 (organism)','840382006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_840383001','840383001','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O20 (organism)','840383001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_840384007','840384007','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O27 (organism)','840384007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_840385008','840385008','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O29 (organism)','840385008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_840386009','840386009','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O38 (organism)','840386009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_840387000','840387000','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O42 (organism)','840387000','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_840388005','840388005','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O44 (organism)','840388005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_840389002','840389002','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O48 (organism)','840389002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_840390006','840390006','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O60 (organism)','840390006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_840391005','840391005','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O63 (organism)','840391005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_840392003','840392003','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O64 (organism)','840392003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_840393008','840393008','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O75 (organism)','840393008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_840394002','840394002','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O81 (organism)','840394002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_840530005','840530005','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O85 (organism)','840530005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_840541007','840541007','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O53 (organism)','840541007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_840543005','840543005','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O144 (organism)','840543005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_840545003','840545003','http://snomed.info/sct','Shiga toxin-producing Escherichia coli serogroup O167 (organism)','840545003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_870643006','870643006','http://snomed.info/sct','Escherichia coli serogroup O171 (organism)','870643006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_871877007','871877007','http://snomed.info/sct','Escherichia coli serogroup O170 (organism)','871877007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_895553009','895553009','http://snomed.info/sct','Klebsiella variicola subspecies variicola (organism)','895553009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_895554003','895554003','http://snomed.info/sct','Klebsiella variicola subspecies tropicalensis (organism)','895554003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1210_895555002','895555002','http://snomed.info/sct','Klebsiella africanensis (organism)','895555002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1451_115329001','115329001','http://snomed.info/sct','Methicillin resistant Staphylococcus aureus (organism)','115329001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1451_312210001','312210001','http://snomed.info/sct','Methicillin resistant Staphylococcus aureus detected (finding)','312210001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1451_440608005','440608005','http://snomed.info/sct','Methicillin resistant Staphylococcus aureus isolated by culture (finding)','440608005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1451_448641000124101','448641000124101','http://snomed.info/sct','Methicillin resistant Staphylococcus aureus screen positive (finding)','448641000124101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1451_716530009','716530009','http://snomed.info/sct','Non-multiple drug resistant methicillin resistant Staphylococcus aureus (organism)','716530009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1451_716531008','716531008','http://snomed.info/sct','Multiple drug resistant methicillin resistant Staphylococcus aureus (organism)','716531008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1451_720301008','720301008','http://snomed.info/sct','Deoxyribonucleic acid of methicillin resistant Staphylococcus aureus (substance)','720301008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1906_100370-6','100370-6','http://loinc.org','Orthopoxvirus DNA [Identifier] in Specimen by NAA with probe detection','1003706','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1906_100434-0','100434-0','http://loinc.org','Orthopoxvirus.non-variola DNA [Presence] in Specimen by NAA with probe detection','1004340','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1906_41853-3','41853-3','http://loinc.org','Orthopoxvirus DNA [Presence] in Specimen by NAA with probe detection','418533','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2152_96910-5','96910-5','http://loinc.org','Acanthamoeba sp and Naegleria fowleri and Balamuthia mandrillaris DNA panel - Specimen','969105','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.480_22866-8','22866-8','http://loinc.org','Bacillus anthracis Ag [Presence] in Tissue by Immunofluorescence','228668','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.480_22867-6','22867-6','http://loinc.org','Bacillus anthracis Ag [Presence] in Specimen by Immunofluorescence','228676','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.480_31726-3','31726-3','http://loinc.org','Bacillus anthracis Ag [Presence] in Specimen','317263','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.480_44269-9','44269-9','http://loinc.org','Bacillus anthracis cell wall Ag [Presence] in Specimen by Immunofluorescence','442699','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.480_44270-7','44270-7','http://loinc.org','Bacillus anthracis spore Ag [Presence] in Specimen by Immunofluorescence','442707','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.480_51976-9','51976-9','http://loinc.org','Bacillus anthracis capsule Ag [Presence] in Specimen by Immunofluorescence','519769','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.481_104327-2','104327-2','http://loinc.org','Bacillus anthracis Ab [Titer] in Serum by Immunoassay --1st specimen','1043272','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.481_104328-0','104328-0','http://loinc.org','Bacillus anthracis Ab [Titer] in Serum by Immunoassay --2nd specimen','1043280','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.481_104330-6','104330-6','http://loinc.org','Bacillus anthracis protective antigen Ab [Presence] in Serum by Immunoassay','1043306','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.481_11467-8','11467-8','http://loinc.org','Bacillus anthracis Ab [Units/volume] in Serum by Immunoblot','114678','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.481_11468-6','11468-6','http://loinc.org','Bacillus anthracis Ab [Units/volume] in Specimen by Immunofluorescence','114686','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.481_22109-3','22109-3','http://loinc.org','Bacillus anthracis Ab [Units/volume] in Specimen','221093','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.481_22859-3','22859-3','http://loinc.org','Bacillus anthracis Ab [Titer] in Serum','228593','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.481_22860-1','22860-1','http://loinc.org','Bacillus anthracis Ab [Presence] in Serum','228601','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.481_22861-9','22861-9','http://loinc.org','Bacillus anthracis Ab [Presence] in Serum by Immune diffusion (ID)','228619','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.481_22862-7','22862-7','http://loinc.org','Bacillus anthracis Ab [Presence] in Serum by Agglutination','228627','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.481_22863-5','22863-5','http://loinc.org','Bacillus anthracis Ab [Presence] in Serum by Immunoassay','228635','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.481_22864-3','22864-3','http://loinc.org','Bacillus anthracis Ab [Presence] in Serum by Complement fixation','228643','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.481_22865-0','22865-0','http://loinc.org','Bacillus anthracis Ab [Titer] in Serum by Immune diffusion (ID)','228650','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.481_5055-9','5055-9','http://loinc.org','Bacillus anthracis Ab [Units/volume] in Serum by Hemagglutination','50559','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.481_7814-7','7814-7','http://loinc.org','Bacillus anthracis Ab [Units/volume] in Serum','78147','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.761_85808-4','85808-4','http://loinc.org','Mumps virus RNA and SH gene panel - Specimen by NAA with probe detection','858084','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.761_93750-8','93750-8','http://loinc.org','Mumps virus RNA and N gene panel - Specimen','937508','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2159_101398-6','101398-6','http://loinc.org','Monkeypox virus and Orthopoxvirus.non-variola DNA panel - Specimen','1013986','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.762_77250-9','77250-9','http://loinc.org','Mumps virus IgG and IgM panel - Serum','772509','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.762_77398-6','77398-6','http://loinc.org','Mumps virus IgG and IgM index panel - Serum','773986','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.762_88458-5','88458-5','http://loinc.org','Mumps virus Ab.IgG and IgM panel - Cerebral spinal fluid by Immunofluorescence','884585','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.762_92929-9','92929-9','http://loinc.org','Measles, Mumps and Rubella virus IgG panel [Units/volume] - Serum or Plasma','929299','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.883_65762-7','65762-7','http://loinc.org','Hantavirus Ag [Presence] in Tissue by Immune stain','657627','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.367_53942-9','53942-9','http://loinc.org','Vibrio cholerae toxin ctx gene [Presence] in Specimen by NAA with probe detection','539429','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.367_80680-2','80680-2','http://loinc.org','Vibrio cholerae toxin ctxA gene [Presence] in Stool by NAA with probe detection','806802','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2157_101399-4','101399-4','http://loinc.org','Monkeypox virus and Orthopoxvirus.non-variola DNA [Identifier] in Specimen by NAA with probe detection','1013994','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.522_82519-0','82519-0','http://loinc.org','Dengue virus 1+3 and 2+4 panel - Serum by NAA with probe detection','825190','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.522_81154-7','81154-7','http://loinc.org','Dengue and Chikungunya and Zika virus panel by NAA with probe detection','811547','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.764_101202-0','101202-0','http://loinc.org','Mumps virus IgG Ab index [Units/volume] in Serum and CSF','1012020','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.764_13266-2','13266-2','http://loinc.org','Mumps virus IgG Ab [Units/volume] in Cerebral spinal fluid','132662','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.764_21401-5','21401-5','http://loinc.org','Mumps virus IgG Ab [Titer] in Cerebral spinal fluid by Immunofluorescence','214015','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.764_22415-4','22415-4','http://loinc.org','Mumps virus IgG Ab [Presence] in Serum','224154','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.764_22416-2','22416-2','http://loinc.org','Mumps virus IgG Ab [Titer] in Cerebral spinal fluid','224162','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.764_22417-0','22417-0','http://loinc.org','Mumps virus IgG Ab [Titer] in Serum','224170','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.764_24240-4','24240-4','http://loinc.org','Mumps virus IgG Ab [Units/volume] in Serum --1st specimen','242404','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.764_24241-2','24241-2','http://loinc.org','Mumps virus IgG Ab [Units/volume] in Serum --2nd specimen','242412','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.764_25418-5','25418-5','http://loinc.org','Mumps virus IgG Ab [Units/volume] in Serum by Immunoassay','254185','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.764_29241-7','29241-7','http://loinc.org','Mumps virus IgG Ab [Units/volume] in Body fluid','292417','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.764_39011-2','39011-2','http://loinc.org','Mumps virus IgG Ab [Presence] in Cerebral spinal fluid','390112','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.764_40737-9','40737-9','http://loinc.org','Mumps virus IgG Ab [Presence] in Cerebral spinal fluid by Immunoassay','407379','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.764_6476-6','6476-6','http://loinc.org','Mumps virus IgG Ab [Presence] in Serum by Immunoassay','64766','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.764_6477-4','6477-4','http://loinc.org','Mumps virus IgG Ab [Titer] in Serum by Immunofluorescence','64774','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.764_74422-7','74422-7','http://loinc.org','Mumps virus IgG Ab [Presence] in Body fluid by Immunoassay','744227','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.764_7966-5','7966-5','http://loinc.org','Mumps virus IgG Ab [Units/volume] in Serum','79665','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.764_17293-2','17293-2','http://loinc.org','Mumps virus IgG+IgM Ab [Units/volume] in Serum','172932','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2158_101399-4','101399-4','http://loinc.org','Monkeypox virus and Orthopoxvirus.non-variola DNA [Identifier] in Specimen by NAA with probe detection','1013994','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.369_34948-0','34948-0','http://loinc.org','Measles virus IgG and IgM Qn panel - Serum','349480','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.369_34949-8','34949-8','http://loinc.org','Measles virus IgG and IgM panel - Cerebral spinal fluid','349498','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.369_90253-6','90253-6','http://loinc.org','Measles virus IgG and IgM Ql panel - Serum','902536','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.369_90254-4','90254-4','http://loinc.org','Measles virus IgG and IgM panel [Titer] - Cerebral spinal fluid','902544','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.523_101206-1','101206-1','http://loinc.org','Dengue virus NS1 Ag [Units/volume] in Serum or Plasma by Immunoassay','1012061','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.523_31798-2','31798-2','http://loinc.org','Dengue virus Ag [Presence] in Serum','317982','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.523_31799-0','31799-0','http://loinc.org','Dengue virus Ag [Presence] in Specimen','317990','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.523_6384-2','6384-2','http://loinc.org','Dengue virus Ag [Presence] in Serum by Immunofluorescence','63842','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.523_6385-9','6385-9','http://loinc.org','Dengue virus Ag [Presence] in Specimen by Immunofluorescence','63859','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.523_75377-2','75377-2','http://loinc.org','Dengue virus NS1 Ag [Presence] in Serum, Plasma or Blood by Rapid immunoassay','753772','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.523_91064-6','91064-6','http://loinc.org','Dengue virus NS1 Ag [Presence] in Serum or Plasma by Immunoassay','910646','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.524_100963-8','100963-8','http://loinc.org','Dengue virus 1+2+3+4 nsP1 IgG Ab [Units/volume] in Serum or Plasma by Immunoassay','1009638','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.524_16736-1','16736-1','http://loinc.org','Dengue virus 1 Ab [Titer] in Serum','167361','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.524_16737-9','16737-9','http://loinc.org','Dengue virus 2 Ab [Titer] in Serum','167379','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.524_16738-7','16738-7','http://loinc.org','Dengue virus 3 Ab [Titer] in Serum','167387','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.524_16739-5','16739-5','http://loinc.org','Dengue virus 4 Ab [Titer] in Serum','167395','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.524_23958-2','23958-2','http://loinc.org','Dengue virus IgG Ab [Units/volume] in Serum','239582','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.524_23991-3','23991-3','http://loinc.org','Dengue virus IgG Ab [Units/volume] in Serum by Immunoassay','239913','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.524_31338-7','31338-7','http://loinc.org','Dengue virus 1 Ab [Units/volume] in Serum','313387','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.524_31339-5','31339-5','http://loinc.org','Dengue virus 2 Ab [Units/volume] in Serum','313395','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.524_31340-3','31340-3','http://loinc.org','Dengue virus 3 Ab [Units/volume] in Serum','313403','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.524_31341-1','31341-1','http://loinc.org','Dengue virus 4 Ab [Units/volume] in Serum','313411','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.524_33578-6','33578-6','http://loinc.org','Dengue virus Ab [Titer] in Serum by Immunofluorescence','335786','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.524_33606-5','33606-5','http://loinc.org','Dengue virus Ab [Titer] in Serum','336065','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.524_40515-9','40515-9','http://loinc.org','Dengue virus Ab [Titer] in Serum by Complement fixation','405159','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.524_55369-3','55369-3','http://loinc.org','Dengue virus Ab [Titer] in Serum by Hemagglutination inhibition','553693','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.524_55438-6','55438-6','http://loinc.org','Dengue virus neutralizing antibody [Titer] in Serum by Neutralization test','554386','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.524_6811-4','6811-4','http://loinc.org','Dengue virus IgG Ab [Titer] in Serum','68114','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.524_7859-2','7859-2','http://loinc.org','Dengue virus Ab [Units/volume] in Serum','78592','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.524_86858-8','86858-8','http://loinc.org','Dengue virus 2 neutralizing antibody [Titer] in Specimen by Neutralization test','868588','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.524_86859-6','86859-6','http://loinc.org','Dengue virus 3 neutralizing antibody [Titer] in Specimen by Neutralization test','868596','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.524_86860-4','86860-4','http://loinc.org','Dengue virus 1 neutralizing antibody [Titer] in Specimen by Neutralization test','868604','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.524_86861-2','86861-2','http://loinc.org','Dengue virus 4 neutralizing antibody [Titer] in Specimen by Neutralization test','868612','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.645_41875-6','41875-6','http://loinc.org','Bordetella pertussis and Bordetella parapertussis DNA panel - Specimen by NAA with probe detection','418756','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.645_62426-2','62426-2','http://loinc.org','Bordetella sp DNA panel - Specimen by NAA with probe detection','624262','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.645_85809-2','85809-2','http://loinc.org','Bordetella pertussis and parapertussis and holmesii DNA panel - Specimen by NAA with probe detection','858092','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.645_90441-7','90441-7','http://loinc.org','Bordetella pertussis and Bordetella parapertussis DNA panel - Nasopharynx','904417','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.645_78921-4','78921-4','http://loinc.org','Bordetella pertussis and Bordetella parapertussis DNA and culture panel - Nasopharynx','789214','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.920_35739-2','35739-2','http://loinc.org','Brucella sp IgG and IgM panel - Serum','357392','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.525_23968-1','23968-1','http://loinc.org','Dengue virus IgM Ab [Units/volume] in Serum','239681','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.525_23992-1','23992-1','http://loinc.org','Dengue virus IgM Ab [Units/volume] in Serum by Immunoassay','239921','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.525_25338-5','25338-5','http://loinc.org','Dengue virus IgM Ab [Presence] in Serum','253385','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.525_25392-2','25392-2','http://loinc.org','Dengue virus IgM Ab [Presence] in Serum by Immunoblot','253922','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.525_29663-2','29663-2','http://loinc.org','Dengue virus IgM Ab [Presence] in Serum or Plasma by Immunoassay','296632','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.525_34721-1','34721-1','http://loinc.org','Dengue virus IgM Ab [Presence] in Cerebral spinal fluid','347211','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.525_6812-2','6812-2','http://loinc.org','Dengue virus IgM Ab [Titer] in Serum','68122','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.525_75223-8','75223-8','http://loinc.org','Dengue virus IgG and IgM [Identifier] in Serum, Plasma or Blood by Rapid immunoassay','752238','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.525_95688-8','95688-8','http://loinc.org','Dengue virus 1+2+3+4 IgM Ab [Presence] in Specimen by Immunoassay','956888','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.646_69756-5','69756-5','http://loinc.org','Bordetella sp filamentous hemagglutinin and pertussis toxin Ab.IgA and IgG panel - Serum by Line blot','697565','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.801_49526-7','49526-7','http://loinc.org','Influenza virus A H5 RNA [Presence] in Isolate by NAA with probe detection','495267','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.801_49527-5','49527-5','http://loinc.org','Influenza virus A H7 RNA [Presence] in Isolate by NAA with probe detection','495275','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.801_60530-3','60530-3','http://loinc.org','Influenza virus A H9 RNA [Presence] in Isolate by NAA with probe detection','605303','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.801_85804-3','85804-3','http://loinc.org','Influenza virus A H5 Ag [Titer] in Isolate by Hemagglutination inhibition','858043','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.801_85805-0','85805-0','http://loinc.org','Influenza virus A H7 Ag [Titer] in Isolate by Hemagglutination inhibition','858050','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.889_13289-4','13289-4','http://loinc.org','Hantavirus hantaan Ab [Units/volume] in Serum','132894','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.889_16928-4','16928-4','http://loinc.org','Hantavirus puumala IgG+IgM Ab [Units/volume] in Serum','169284','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.889_21322-3','21322-3','http://loinc.org','Hantavirus puumala IgG Ab [Titer] in Serum by Immunofluorescence','213223','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.889_21323-1','21323-1','http://loinc.org','Hantavirus puumala IgM Ab [Titer] in Serum by Immunofluorescence','213231','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.889_22308-1','22308-1','http://loinc.org','Hantavirus puumala IgG Ab [Titer] in Serum','223081','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.889_22309-9','22309-9','http://loinc.org','Hantavirus puumala IgM Ab [Titer] in Serum','223099','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.889_23867-5','23867-5','http://loinc.org','Hantavirus sin nombre IgG Ab [Titer] in Serum','238675','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.889_23868-3','23868-3','http://loinc.org','Hantavirus sin nombre IgM Ab [Titer] in Serum','238683','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.889_26620-5','26620-5','http://loinc.org','Hantavirus IgG Ab [Presence] in Serum','266205','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.889_26650-2','26650-2','http://loinc.org','Hantavirus sin nombre IgM Ab [Presence] in Serum','266502','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.889_26654-4','26654-4','http://loinc.org','Hantavirus sin nombre IgG Ab [Presence] in Serum','266544','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.889_31408-8','31408-8','http://loinc.org','Hantavirus sin nombre IgG Ab [Units/volume] in Serum','314088','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.889_31409-6','31409-6','http://loinc.org','Hantavirus sin nombre IgM Ab [Units/volume] in Serum','314096','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.889_32131-5','32131-5','http://loinc.org','Hantavirus IgM Ab [Presence] in Serum','321315','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.889_33549-7','33549-7','http://loinc.org','Hantavirus sin nombre Ab [Presence] in Serum','335497','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.889_35392-0','35392-0','http://loinc.org','Hantavirus IgG Ab [Units/volume] in Serum','353920','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.889_35393-8','35393-8','http://loinc.org','Hantavirus IgM Ab [Units/volume] in Serum','353938','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.889_42503-3','42503-3','http://loinc.org','Hantavirus Ab [Presence] in Serum','425033','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.889_5046-8','5046-8','http://loinc.org','Hantavirus Ab [Units/volume] in Serum','50468','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.889_60264-9','60264-9','http://loinc.org','Hantavirus Ab [Titer] in Serum','602649','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.889_70052-6','70052-6','http://loinc.org','Hantavirus hantaan IgG Ab [Presence] in Serum or Plasma by Immunofluorescence','700526','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.889_70053-4','70053-4','http://loinc.org','Hantavirus hantaan IgM Ab [Presence] in Serum or Plasma by Immunofluorescence','700534','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.889_70054-2','70054-2','http://loinc.org','Hantavirus dobrova IgM Ab [Presence] in Serum or Plasma by Immunofluorescence','700542','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.889_70055-9','70055-9','http://loinc.org','Hantavirus dobrova IgG Ab [Presence] in Serum or Plasma by Immunofluorescence','700559','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.889_70056-7','70056-7','http://loinc.org','Hantavirus saaremaa IgG Ab [Presence] in Serum or Plasma by Immunofluorescence','700567','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.889_70057-5','70057-5','http://loinc.org','Hantavirus saaremaa IgM Ab [Presence] in Serum or Plasma by Immunofluorescence','700575','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.889_70058-3','70058-3','http://loinc.org','Hantavirus puumala IgM Ab [Presence] in Serum or Plasma by Immunofluorescence','700583','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.889_70059-1','70059-1','http://loinc.org','Hantavirus puumala IgG Ab [Presence] in Serum or Plasma by Immunofluorescence','700591','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.889_70060-9','70060-9','http://loinc.org','Hantavirus seoul IgG Ab [Presence] in Serum or Plasma by Immunofluorescence','700609','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.889_7895-6','7895-6','http://loinc.org','Hantavirus hantaan IgG Ab [Units/volume] in Serum','78956','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.889_7896-4','7896-4','http://loinc.org','Hantavirus hantaan IgM Ab [Units/volume] in Serum','78964','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.889_7897-2','7897-2','http://loinc.org','Hantavirus puumala IgG Ab [Units/volume] in Serum','78972','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.889_7898-0','7898-0','http://loinc.org','Hantavirus puumala IgM Ab [Units/volume] in Serum','78980','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.889_94099-9','94099-9','http://loinc.org','Hantavirus IgM Ab [Presence] in Serum or Plasma by Immunofluorescence','940999','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.889_94100-5','94100-5','http://loinc.org','Hantavirus seoul IgM Ab [Presence] in Serum or Plasma by Line blot','941005','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.889_94101-3','94101-3','http://loinc.org','Hantavirus seoul IgG Ab [Presence] in Serum or Plasma by Line blot','941013','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.527_100846-5','100846-5','http://loinc.org','Dengue virus 1+2+3+4 nsP1 IgG Ab [Presence] in Serum or Plasma by Immunoassay','1008465','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.527_100964-6','100964-6','http://loinc.org','Dengue virus IgG Ab [Presence] in Serum, Plasma or Blood by Rapid immunoassay','1009646','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.527_100965-3','100965-3','http://loinc.org','Dengue virus IgG Ab [Interpretation] in Serum, Plasma or Blood','1009653','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.527_16740-3','16740-3','http://loinc.org','Dengue virus Ab [Presence] in Serum','167403','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.527_22250-5','22250-5','http://loinc.org','Dengue virus 1 Ab [Presence] in Serum','222505','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.527_22251-3','22251-3','http://loinc.org','Dengue virus 2 Ab [Presence] in Serum','222513','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.527_22252-1','22252-1','http://loinc.org','Dengue virus 3 Ab [Presence] in Serum','222521','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.527_22253-9','22253-9','http://loinc.org','Dengue virus 4 Ab [Presence] in Serum','222539','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.527_29661-6','29661-6','http://loinc.org','Dengue virus IgG Ab [Presence] in Serum or Plasma by Immunoassay','296616','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.527_29676-4','29676-4','http://loinc.org','Dengue virus IgG Ab [Presence] in Serum','296764','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.527_40748-6','40748-6','http://loinc.org','Dengue virus Ab [Presence] in Serum by Hemagglutination inhibition','407486','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.527_7854-3','7854-3','http://loinc.org','Dengue virus 1 Ab [Presence] in Serum by Immunoassay','78543','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.527_7856-8','7856-8','http://loinc.org','Dengue virus 2 Ab [Presence] in Serum by Immunoassay','78568','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.527_7857-6','7857-6','http://loinc.org','Dengue virus 3 Ab [Presence] in Serum by Immunoassay','78576','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.527_7858-4','7858-4','http://loinc.org','Dengue virus 4 Ab [Presence] in Serum by Immunoassay','78584','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.527_86862-0','86862-0','http://loinc.org','Dengue virus 4 neutralizing antibody [Presence] in Specimen by Neutralization test','868620','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.527_86863-8','86863-8','http://loinc.org','Dengue virus 3 neutralizing antibody [Presence] in Specimen by Neutralization test','868638','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.527_86864-6','86864-6','http://loinc.org','Dengue virus 2 neutralizing antibody [Presence] in Specimen by Neutralization test','868646','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.527_86865-3','86865-3','http://loinc.org','Dengue virus 1 neutralizing antibody [Presence] in Specimen by Neutralization test','868653','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.527_95673-0','95673-0','http://loinc.org','Dengue virus 1+2+3+4 IgG Ab [Presence] in Specimen by Immunoassay','956730','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.802_38270-5','38270-5','http://loinc.org','Influenza virus A H7 RNA [Presence] in Specimen by NAA with probe detection','382705','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.802_38271-3','38271-3','http://loinc.org','Influenza virus A H6 RNA [Presence] in Specimen by NAA with probe detection','382713','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.802_38272-1','38272-1','http://loinc.org','Influenza virus A H5 RNA [Presence] in Specimen by NAA with probe detection','382721','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.802_44264-0','44264-0','http://loinc.org','Influenza virus A H5 RNA [Units/volume] (viral load) in Specimen by NAA with probe detection','442640','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.802_44265-7','44265-7','http://loinc.org','Influenza virus A H6 RNA [Units/volume] (viral load) in Specimen by NAA with probe detection','442657','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.802_44266-5','44266-5','http://loinc.org','Influenza virus A H7 RNA [Units/volume] (viral load) in Specimen by NAA with probe detection','442665','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.802_44795-3','44795-3','http://loinc.org','Influenza virus A H5 Asian RNA [Presence] in Specimen by NAA with probe detection','447953','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.802_49528-3','49528-3','http://loinc.org','Influenza virus A H9 RNA [Presence] in Specimen by NAA with probe detection','495283','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.802_57985-4','57985-4','http://loinc.org','Influenza virus A H2 RNA [Presence] in Specimen by NAA with probe detection','579854','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.802_68986-9','68986-9','http://loinc.org','Influenza virus A H5a RNA [Presence] in Specimen by NAA with probe detection','689869','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.802_68987-7','68987-7','http://loinc.org','Influenza virus A H5b RNA [Presence] in Specimen by NAA with probe detection','689877','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.802_77605-4','77605-4','http://loinc.org','Influenza virus A H5 RNA [Cycle Threshold #] in Specimen by NAA with probe detection','776054','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.802_81307-1','81307-1','http://loinc.org','Influenza virus A H7 Eurasia RNA [Cycle Threshold #] in Respiratory system specimen by NAA with probe detection','813071','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.802_81320-4','81320-4','http://loinc.org','Influenza virus A H5 Asian RNA [Cycle Threshold #] in Respiratory system specimen by Nucleic acid amplification using primer-probe set H5a','813204','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.802_81321-2','81321-2','http://loinc.org','Influenza virus A H5 Asian RNA [Cycle Threshold #] in Respiratory system specimen by Nucleic acid amplification using primer-probe set H5b','813212','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.802_81428-5','81428-5','http://loinc.org','Influenza virus A H7 Eurasia RNA [Presence] in Respiratory system specimen by NAA with probe detection','814285','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.802_95658-1','95658-1','http://loinc.org','Influenza virus A H7 Eurasia RNA [Presence] in Specimen by NAA with probe detection','956581','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.759_85806-8','85806-8','http://loinc.org','Measles virus RNA and N gene panel - Specimen by NAA with probe detection','858068','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.519_101304-4','101304-4','http://loinc.org','Dengue virus 1+2+3+4 RNA [Presence] in Blood by NAA with non-probe detection','1013044','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.519_60262-3','60262-3','http://loinc.org','Dengue virus 1 RNA [Presence] in Serum by NAA with probe detection','602623','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.519_60418-1','60418-1','http://loinc.org','Dengue virus 4 RNA [Presence] in Serum by NAA with probe detection','604181','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.519_60419-9','60419-9','http://loinc.org','Dengue virus 3 RNA [Presence] in Serum by NAA with probe detection','604199','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.519_60420-7','60420-7','http://loinc.org','Dengue virus 2 RNA [Presence] in Serum by NAA with probe detection','604207','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.519_6386-7','6386-7','http://loinc.org','Dengue virus DNA [Presence] in Serum by Probe','63867','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.519_6387-5','6387-5','http://loinc.org','Dengue virus DNA [Presence] in Specimen by Probe','63875','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.519_77958-7','77958-7','http://loinc.org','Dengue virus 1 and 2 and 3 and 4 RNA [Identifier] in Cerebral spinal fluid by NAA with probe detection','779587','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.519_7855-0','7855-0','http://loinc.org','Dengue virus 1+2+3+4 RNA [Presence] in Serum by NAA with probe detection','78550','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.519_81150-5','81150-5','http://loinc.org','Dengue virus 1+2+3+4 5'' UTR RNA [Presence] in Serum by NAA with probe detection','811505','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.519_81151-3','81151-3','http://loinc.org','Dengue virus 1+2+3+4 5'' UTR RNA [Presence] in Cerebral spinal fluid by NAA with probe detection','811513','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.519_82383-1','82383-1','http://loinc.org','Dengue virus 2+4 RNA [Presence] in Serum by NAA with probe detection','823831','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.519_82384-9','82384-9','http://loinc.org','Dengue virus 1+3 RNA [Presence] in Serum by NAA with probe detection','823849','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.519_88188-8','88188-8','http://loinc.org','Dengue virus 1+2+3+4 RNA [Presence] in Urine by NAA with probe detection','881888','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.519_88189-6','88189-6','http://loinc.org','Dengue virus 1+2+3+4 RNA [Presence] in Blood by NAA with probe detection','881896','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.519_88203-5','88203-5','http://loinc.org','Dengue virus 1 and 2 and 3 and 4 RNA [Identifier] in Serum or Blood by NAA with probe detection','882035','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.519_94426-4','94426-4','http://loinc.org','Dengue virus 1+2+3+4 3'' UTR RNA [Presence] in Cerebral spinal fluid by NAA with probe detection','944264','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.519_94427-2','94427-2','http://loinc.org','Dengue virus 1+2+3+4 3'' UTR RNA [Presence] in Serum by NAA with probe detection','944272','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.519_94837-2','94837-2','http://loinc.org','Dengue virus 1+2+3+4 RNA [Presence] in Amniotic fluid by NAA with probe detection','948372','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1195_93715-1','93715-1','http://loinc.org','Francisella tularensis IgG and IgM panel - Serum','937151','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2160_101398-6','101398-6','http://loinc.org','Monkeypox virus and Orthopoxvirus.non-variola DNA panel - Specimen','1013986','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.594_33676-8','33676-8','http://loinc.org','Francisella tularensis [Presence] in Specimen by Organism specific culture','336768','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.594_33677-6','33677-6','http://loinc.org','Francisella tularensis [Presence] in Isolate by Organism specific culture','336776','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.594_33678-4','33678-4','http://loinc.org','Francisella tularensis Ag [Presence] in Isolate by Immunofluorescence','336784','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.594_33680-0','33680-0','http://loinc.org','Francisella tularensis DNA [Presence] in Isolate by NAA with probe detection','336800','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.594_33682-6','33682-6','http://loinc.org','Francisella tularensis [Presence] in Isolate by Cell wall fatty acid analysis','336826','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.594_33715-4','33715-4','http://loinc.org','Francisella tularensis Ab [Presence] in Isolate by Slide agglutination','337154','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.594_53373-7','53373-7','http://loinc.org','Francisella tularensis Ab [Presence] in Isolate','533737','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.595_101364-8','101364-8','http://loinc.org','Francisella tularensis DNA [Presence] in Blood by NAA with non-probe detection','1013648','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.595_101373-9','101373-9','http://loinc.org','Francisella tularensis DNA [Presence] in Sputum by NAA with non-probe detection','1013739','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.595_23122-5','23122-5','http://loinc.org','Francisella tularensis A DNA [Presence] in Tissue by NAA with probe detection','231225','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.595_23123-3','23123-3','http://loinc.org','Francisella tularensis A rRNA [Presence] in Tissue by Probe','231233','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.595_23128-2','23128-2','http://loinc.org','Francisella tularensis B DNA [Presence] in Tissue by NAA with probe detection','231282','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.595_23129-0','23129-0','http://loinc.org','Francisella tularensis B rRNA [Presence] in Tissue by Probe','231290','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.595_23130-8','23130-8','http://loinc.org','Francisella tularensis DNA [Presence] in Tissue by NAA with probe detection','231308','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.595_23131-6','23131-6','http://loinc.org','Francisella tularensis rRNA [Presence] in Tissue by Probe','231316','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.595_33679-2','33679-2','http://loinc.org','Francisella tularensis DNA [Presence] in Specimen by NAA with probe detection','336792','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.595_46732-4','46732-4','http://loinc.org','Francisella tularensis subtype [Identifier] in Specimen by NAA with probe detection','467324','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.596_16879-9','16879-9','http://loinc.org','Francisella tularensis Ag [Presence] in Serum by Immunofluorescence','168799','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.596_23126-6','23126-6','http://loinc.org','Francisella tularensis Ag [Presence] in Tissue by Immune stain','231266','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.596_23127-4','23127-4','http://loinc.org','Francisella tularensis Ag [Presence] in Tissue by Immunofluorescence','231274','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.596_31828-7','31828-7','http://loinc.org','Francisella tularensis Ag [Presence] in Serum','318287','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.596_31829-5','31829-5','http://loinc.org','Francisella tularensis Ag [Presence] in Specimen','318295','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.596_45041-1','45041-1','http://loinc.org','Francisella tularensis Ag [Presence] in Specimen by Slide agglutination','450411','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.596_6408-9','6408-9','http://loinc.org','Francisella tularensis Ag [Presence] in Specimen by Immunofluorescence','64089','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.597_7899-8','7899-8','http://loinc.org','Hantavirus RNA [Presence] in Serum by NAA with probe detection','78998','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.597_86520-4','86520-4','http://loinc.org','Hantavirus RNA [Presence] in Blood by NAA with probe detection','865204','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.597_86536-0','86536-0','http://loinc.org','Hantavirus RNA [Presence] in Cerebral spinal fluid by NAA with probe detection','865360','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.597_86537-8','86537-8','http://loinc.org','Hantavirus RNA [Presence] in Tissue by NAA with probe detection','865378','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.597_86538-6','86538-6','http://loinc.org','Hantavirus RNA [Presence] in Urine by NAA with probe detection','865386','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.597_88216-7','88216-7','http://loinc.org','Hantavirus puumala RNA [Presence] in Urine by NAA with probe detection','882167','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.597_88220-9','88220-9','http://loinc.org','Hantavirus puumala RNA [Presence] in Blood by NAA with probe detection','882209','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.597_91130-5','91130-5','http://loinc.org','Hantavirus RNA [Presence] in Lower respiratory specimen by NAA with probe detection','911305','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1112_41506-7','41506-7','http://loinc.org','Polio virus neutralizing Ab panel - Serum by Neutralization test','415067','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1112_68320-1','68320-1','http://loinc.org','Polio virus Ab panel [Titer] - Serum','683201','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.598_104401-5','104401-5','http://loinc.org','Francisella tularensis Ab [Titer] in Serum by Immunoassay --1st specimen','1044015','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.598_104402-3','104402-3','http://loinc.org','Francisella tularensis Ab [Titer] in Serum by Immunoassay --2nd specimen','1044023','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.598_14209-1','14209-1','http://loinc.org','Francisella tularensis IgA Ab [Presence] in Serum','142091','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.598_16875-7','16875-7','http://loinc.org','Francisella tularensis Ab [Titer] in Serum','168757','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.598_16876-5','16876-5','http://loinc.org','Francisella tularensis IgA Ab [Presence] in Serum by Latex agglutination','168765','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.598_16877-3','16877-3','http://loinc.org','Francisella tularensis IgG Ab [Presence] in Serum by Latex agglutination','168773','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.598_16878-1','16878-1','http://loinc.org','Francisella tularensis IgM Ab [Units/volume] in Serum','168781','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.598_23124-1','23124-1','http://loinc.org','Francisella tularensis Ab [Presence] in Serum by Immunoassay','231241','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.598_23125-8','23125-8','http://loinc.org','Francisella tularensis Ab [Titer] in Serum by Agglutination','231258','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.598_23741-2','23741-2','http://loinc.org','Francisella tularensis Ab [Titer] in Serum by Complement fixation','237412','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.598_31396-5','31396-5','http://loinc.org','Francisella tularensis Ab [Units/volume] in Serum','313965','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.598_33465-6','33465-6','http://loinc.org','Francisella tularensis IgG Ab [Titer] in Serum','334656','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.598_33466-4','33466-4','http://loinc.org','Francisella tularensis IgM Ab [Titer] in Serum','334664','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.598_33576-0','33576-0','http://loinc.org','Francisella tularensis IgA Ab [Titer] in Serum','335760','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.598_33683-4','33683-4','http://loinc.org','Francisella tularensis Ab [Titer] in Serum by Microagglutination','336834','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.598_33684-2','33684-2','http://loinc.org','Francisella tularensis Ab [Titer] in Serum by Tube agglutination','336842','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.598_33714-7','33714-7','http://loinc.org','Francisella tularensis Ab [Presence] in Specimen by Slide agglutination','337147','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.598_45040-3','45040-3','http://loinc.org','Francisella tularensis Ab [Presence] in Serum by Microagglutination','450403','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.598_5166-4','5166-4','http://loinc.org','Francisella tularensis Ab [Presence] in Serum by Latex agglutination','51664','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.598_5167-2','5167-2','http://loinc.org','Francisella tularensis Ab [Titer] in Serum by Latex agglutination','51672','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.598_53374-5','53374-5','http://loinc.org','Francisella tularensis Ab [Presence] in Specimen','533745','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.598_6407-1','6407-1','http://loinc.org','Francisella tularensis IgM Ab [Presence] in Serum by Latex agglutination','64071','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.598_70121-9','70121-9','http://loinc.org','Francisella tularensis IgG Ab [Units/volume] in Serum or Plasma','701219','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.598_7888-1','7888-1','http://loinc.org','Francisella tularensis Ab [Presence] in Serum','78881','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.598_7889-9','7889-9','http://loinc.org','Francisella tularensis IgG Ab [Presence] in Serum','78899','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.598_7890-7','7890-7','http://loinc.org','Francisella tularensis IgM Ab [Presence] in Serum','78907','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.598_93716-9','93716-9','http://loinc.org','Francisella tularensis IgM Ab [Presence] in Serum by Immunoassay','937169','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.598_93717-7','93717-7','http://loinc.org','Francisella tularensis IgG Ab [Presence] in Serum by Immunoassay','937177','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.598_93718-5','93718-5','http://loinc.org','Francisella tularensis IgG and IgM [Interpretation] in Serum','937185','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.478_101368-9','101368-9','http://loinc.org','Bacillus anthracis DNA [Presence] by NAA with non-probe detection in Positive blood culture','1013689','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.478_101369-7','101369-7','http://loinc.org','Bacillus anthracis plasmid pXO1 DNA [Presence] by NAA with non-probe detection in Positive blood culture','1013697','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.478_101370-5','101370-5','http://loinc.org','Bacillus anthracis plasmid pXO2 DNA [Presence] by NAA with non-probe detection in Positive blood culture','1013705','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.478_11469-4','11469-4','http://loinc.org','Bacillus anthracis [Presence] in Specimen by Organism specific culture','114694','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.478_33697-4','33697-4','http://loinc.org','Bacillus anthracis Ag [Presence] in Isolate by Immunofluorescence','336974','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.478_33698-2','33698-2','http://loinc.org','Bacillus anthracis [Presence] in Isolate by Phage lysis','336982','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.874_51646-8','51646-8','http://loinc.org','Rabies virus RNA [Presence] in Specimen by NAA with probe detection','516468','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.874_51647-6','51647-6','http://loinc.org','Rabies virus RNA [Presence] in Specimen by Probe','516476','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.874_70867-7','70867-7','http://loinc.org','Rabies virus strain identified in Specimen by Sequencing','708677','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.874_86588-1','86588-1','http://loinc.org','Rabies virus RNA [Presence] in Cerebral spinal fluid by NAA with probe detection','865881','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.874_88214-2','88214-2','http://loinc.org','Rabies virus RNA [Presence] in Tissue by NAA with probe detection','882142','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.874_88215-9','88215-9','http://loinc.org','Rabies virus RNA [Presence] in Saliva (oral fluid) by NAA with probe detection','882159','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.479_101360-6','101360-6','http://loinc.org','Bacillus anthracis plasmid pXO1 DNA [Presence] in Blood by NAA with non-probe detection','1013606','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.479_101361-4','101361-4','http://loinc.org','Bacillus anthracis plasmid pXO2 DNA [Presence] in Blood by NAA with non-probe detection','1013614','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.479_101362-2','101362-2','http://loinc.org','Bacillus anthracis DNA [Presence] in Blood by NAA with non-probe detection','1013622','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.479_41622-2','41622-2','http://loinc.org','Bacillus anthracis DNA [Identifier] in Specimen by NAA with probe detection','416222','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.479_41623-0','41623-0','http://loinc.org','Bacillus anthracis DNA [Presence] in Specimen by NAA with probe detection','416230','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.512_22926-0','22926-0','http://loinc.org','Brucella abortus rRNA [Presence] in Specimen by Probe','229260','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.512_22927-8','22927-8','http://loinc.org','Brucella abortus DNA [Presence] in Specimen by NAA with probe detection','229278','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.512_22936-9','22936-9','http://loinc.org','Brucella melitensis DNA [Presence] in Specimen by NAA with probe detection','229369','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.512_22954-2','22954-2','http://loinc.org','Brucella suis rRNA [Presence] in Specimen by Probe','229542','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.512_22955-9','22955-9','http://loinc.org','Brucella suis DNA [Presence] in Specimen by NAA with probe detection','229559','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.512_41625-5','41625-5','http://loinc.org','Brucella sp DNA [Identifier] in Specimen by NAA with probe detection','416255','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.512_41626-3','41626-3','http://loinc.org','Brucella sp DNA [Presence] in Specimen by NAA with probe detection','416263','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.512_53604-5','53604-5','http://loinc.org','Brucella sp DNA [Identifier] in Serum by NAA with probe detection','536045','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.512_63465-9','63465-9','http://loinc.org','Brucella sp DNA [Presence] in Cerebral spinal fluid by NAA with probe detection','634659','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_10975-1','10975-1','http://loinc.org','6-Monoacetylmorphine (6-MAM) [Mass/volume] in Urine','109751','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_11072-6','11072-6','http://loinc.org','Despropionylfentanyl [Mass/volume] in Serum or Plasma','110726','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_11073-4','11073-4','http://loinc.org','Despropionylfentanyl [Mass/volume] in Urine','110734','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_11074-2','11074-2','http://loinc.org','Norfentanyl [Mass/volume] in Serum or Plasma','110742','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_11075-9','11075-9','http://loinc.org','Norfentanyl [Mass/volume] in Urine','110759','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_11244-1','11244-1','http://loinc.org','Morphine Free [Mass/volume] in Serum or Plasma','112441','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_11246-6','11246-6','http://loinc.org','oxyCODONE [Mass/volume] in Urine','112466','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_12784-5','12784-5','http://loinc.org','Codeine Free [Mass/volume] in Serum or Plasma','127845','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_12785-2','12785-2','http://loinc.org','Dihydrocodeine Free [Mass/volume] in Serum or Plasma','127852','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_12786-0','12786-0','http://loinc.org','HYDROcodone Free [Mass/volume] in Serum or Plasma','127860','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_12787-8','12787-8','http://loinc.org','HYDROmorphone Free [Mass/volume] in Serum or Plasma','127878','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_12788-6','12788-6','http://loinc.org','6-Monoacetylmorphine (6-MAM) [Mass/volume] in Serum or Plasma','127886','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_12789-4','12789-4','http://loinc.org','oxyCODONE Free [Mass/volume] in Serum or Plasma','127894','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_14067-3','14067-3','http://loinc.org','Dihydrocodeine [Mass/volume] in Blood','140673','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_15102-7','15102-7','http://loinc.org','Codeine [Moles/volume] in Serum or Plasma','151027','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_15108-4','15108-4','http://loinc.org','Methadone [Moles/volume] in Serum or Plasma','151084','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_15110-0','15110-0','http://loinc.org','Morphine [Moles/volume] in Serum or Plasma','151100','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_16246-1','16246-1','http://loinc.org','Methadone [Mass/volume] in Urine by Confirmatory method','162461','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_16248-7','16248-7','http://loinc.org','6-monoacetylmorphine free [Mass/volume] in Serum or Plasma by Confirmatory method','162487','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_16249-5','16249-5','http://loinc.org','oxyCODONE [Mass/volume] in Urine by Confirmatory method','162495','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_16250-3','16250-3','http://loinc.org','Codeine [Mass/volume] in Urine by Confirmatory method','162503','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_16251-1','16251-1','http://loinc.org','Morphine [Mass/volume] in Urine by Confirmatory method','162511','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_16252-9','16252-9','http://loinc.org','HYDROcodone [Mass/volume] in Urine by Confirmatory method','162529','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_16754-4','16754-4','http://loinc.org','Diamorphine [Mass/volume] in Unknown substance','167544','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_16755-1','16755-1','http://loinc.org','Diamorphine [Mass/volume] in Urine by Confirmatory method','167551','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_16756-9','16756-9','http://loinc.org','Diamorphine [Mass/volume] in Serum or Plasma by Confirmatory method','167569','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_16851-8','16851-8','http://loinc.org','Ethylmorphine [Units/volume] in Urine','168518','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_16858-3','16858-3','http://loinc.org','fentaNYL [Mass/volume] in Body fluid','168583','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_16998-7','16998-7','http://loinc.org','HYDROmorphone [Mass/volume] in Urine by Confirmatory method','169987','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_17259-3','17259-3','http://loinc.org','Methadone.long acting metabolite [Mass/volume] in Serum or Plasma','172593','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_17275-9','17275-9','http://loinc.org','Methylfentanyl [Mass/volume] in Serum or Plasma','172759','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_17384-9','17384-9','http://loinc.org','Opiates [Mass/volume] in Urine by Confirmatory method','173849','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_17395-5','17395-5','http://loinc.org','oxyMORphone [Mass/volume] in Urine by Confirmatory method','173955','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_18387-1','18387-1','http://loinc.org','Diamorphine [Mass/volume] in Serum or Plasma','183871','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_19448-0','19448-0','http://loinc.org','Dihydrocodeine [Mass/volume] in Urine by Confirmatory method','194480','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_19449-8','19449-8','http://loinc.org','Dihydrocodeine [Mass/volume] in Urine','194498','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_19593-3','19593-3','http://loinc.org','6-Monoacetylmorphine (6-MAM) [Mass/volume] in Urine by Confirmatory method','195933','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_19648-5','19648-5','http://loinc.org','oxyMORphone [Mass/volume] in Urine','196485','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_20527-8','20527-8','http://loinc.org','Ethylmorphine [Mass/volume] in Urine by Confirmatory method','205278','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_20550-0','20550-0','http://loinc.org','Morphine Free [Mass/volume] in Urine by Confirmatory method','205500','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_26696-5','26696-5','http://loinc.org','Morphine Free [Mass/mass] in Stool','266965','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_26867-2','26867-2','http://loinc.org','fentaNYL [Units/volume] in 24 hour Urine','268672','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_27053-8','27053-8','http://loinc.org','Morphine [Mass/volume] in Cerebral spinal fluid','270538','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_27054-6','27054-6','http://loinc.org','Morphine Free [Mass/volume] in Cerebral spinal fluid','270546','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_27064-5','27064-5','http://loinc.org','Opiates [Mass/mass] in Stool','270645','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_27283-1','27283-1','http://loinc.org','Methadone [Mass/mass] in Stool','272831','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_27293-0','27293-0','http://loinc.org','oxyCODONE Free [Mass/mass] in Stool','272930','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_27311-0','27311-0','http://loinc.org','Codeine Free [Mass/mass] in Stool','273110','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_27312-8','27312-8','http://loinc.org','HYDROcodone Free [Mass/mass] in Stool','273128','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_27314-4','27314-4','http://loinc.org','HYDROmorphone Free [Mass/mass] in Stool','273144','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_27357-3','27357-3','http://loinc.org','HYDROcodone Free [Mass/volume] in Vitreous fluid','273573','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_28072-7','28072-7','http://loinc.org','Dihydrocodeine+Hydrocodeinone [Mass/mass] in Stool','280727','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_29294-6','29294-6','http://loinc.org','Methadone [Mass/volume] in Gastric fluid','292946','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_29337-3','29337-3','http://loinc.org','Morphine Free [Mass/volume] in Gastric fluid','293373','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_29372-0','29372-0','http://loinc.org','Codeine [Mass/volume] in Gastric fluid','293720','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_29532-9','29532-9','http://loinc.org','Methadone [Units/volume] in Specimen','295329','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_31084-7','31084-7','http://loinc.org','Methadone [Mass/volume] in Bile fluid','310847','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_31086-2','31086-2','http://loinc.org','Morphine Free [Mass/volume] in Bile fluid','310862','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_33527-3','33527-3','http://loinc.org','Methadone.long acting metabolite [Mass/volume] in Urine','335273','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_34427-5','34427-5','http://loinc.org','Methadone.R [Mass/volume] in Serum or Plasma','344275','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_3506-3','3506-3','http://loinc.org','Codeine [Mass/volume] in Serum or Plasma','35063','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_3508-9','3508-9','http://loinc.org','Codeine [Mass/volume] in Urine','35089','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_3547-7','3547-7','http://loinc.org','Diamorphine [Mass/volume] in Urine','35477','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_35618-8','35618-8','http://loinc.org','Methadone [Mass/volume] in Serum or Plasma by Screen method','356188','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_3619-4','3619-4','http://loinc.org','Ethylmorphine [Mass/volume] in Urine','36194','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_3636-8','3636-8','http://loinc.org','fentaNYL [Mass/volume] in Serum or Plasma','36368','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_3637-6','3637-6','http://loinc.org','fentaNYL [Mass/volume] in Urine','36376','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_3680-6','3680-6','http://loinc.org','HYDROcodone [Mass/volume] in Serum or Plasma','36806','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_3681-4','3681-4','http://loinc.org','HYDROcodone [Mass/volume] in Urine','36814','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_3683-0','3683-0','http://loinc.org','HYDROmorphone [Mass/volume] in Serum or Plasma','36830','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_3772-1','3772-1','http://loinc.org','Methadone [Mass/volume] in Serum or Plasma','37721','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_3774-7','3774-7','http://loinc.org','Methadone [Mass/volume] in Urine','37747','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_3775-4','3775-4','http://loinc.org','Methadone [Mass/time] in 24 hour Urine','37754','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_3827-3','3827-3','http://loinc.org','Morphine [Mass/volume] in Serum or Plasma','38273','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_3829-9','3829-9','http://loinc.org','Morphine Free [Mass/volume] in Urine','38299','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_3831-5','3831-5','http://loinc.org','Morphine [Mass/volume] in Urine','38315','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_3832-3','3832-3','http://loinc.org','Morphine [Mass/time] in 24 hour Urine','38323','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_3851-3','3851-3','http://loinc.org','Nicomorphine [Mass/volume] in Urine','38513','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_3893-5','3893-5','http://loinc.org','oxyCODONE [Mass/volume] in Serum or Plasma','38935','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_41038-1','41038-1','http://loinc.org','Codeine [Mass/volume] in Blood','410381','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_41465-6','41465-6','http://loinc.org','Opiates/Creatinine [Mass Ratio] in Urine','414656','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_41466-4','41466-4','http://loinc.org','Methadone/Creatinine [Mass Ratio] in Urine','414664','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_42901-9','42901-9','http://loinc.org','Dihydrocodeine [Mass/volume] in Serum or Plasma','429019','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_46704-3','46704-3','http://loinc.org','Dihydrocodeine Free+Hydrocodol Free [Mass/volume] in Serum or Plasma by Screen method','467043','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_46971-8','46971-8','http://loinc.org','HYDROmorphone Free [Mass/volume] in Urine by Confirmatory method','469718','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_46973-4','46973-4','http://loinc.org','oxyCODONE Free [Mass/volume] in Urine by Confirmatory method','469734','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_46974-2','46974-2','http://loinc.org','oxyMORphone Free [Mass/volume] in Serum or Plasma by Confirmatory method','469742','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_46975-9','46975-9','http://loinc.org','oxyMORphone Free [Mass/volume] in Urine by Confirmatory method','469759','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_47004-7','47004-7','http://loinc.org','6-monoacetylmorphine free [Mass/volume] in Urine by Confirmatory method','470047','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_48363-6','48363-6','http://loinc.org','Morphine-6-Glucuronide [Moles/volume] in Serum or Plasma','483636','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_48364-4','48364-4','http://loinc.org','Morphine-3-Glucuronide [Moles/volume] in Serum or Plasma','483644','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_48365-1','48365-1','http://loinc.org','Methadone.R [Moles/volume] in Serum or Plasma','483651','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_48403-0','48403-0','http://loinc.org','Methadone+Metabolite [Mass/volume] in Serum or Plasma','484030','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_48956-7','48956-7','http://loinc.org','Methadone [Mass/volume] in Specimen by Confirmatory method','489567','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_48957-5','48957-5','http://loinc.org','Methadone [Mass/volume] in Specimen','489575','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_48961-7','48961-7','http://loinc.org','Opiates [Mass/volume] in Specimen','489617','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_49749-5','49749-5','http://loinc.org','6-monoacetylmorphine free [Mass/volume] in Serum or Plasma','497495','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_49750-3','49750-3','http://loinc.org','Dihydrocodeine Free+Hydrocodol Free [Mass/volume] in Serum or Plasma','497503','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_49829-5','49829-5','http://loinc.org','Norcodeine [Mass/volume] in Urine','498295','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_49830-3','49830-3','http://loinc.org','Norcodeine [Mass/volume] in Serum or Plasma','498303','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_49831-1','49831-1','http://loinc.org','Normorphine [Mass/volume] in Urine','498311','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_50021-5','50021-5','http://loinc.org','oxyCODONE [Mass/volume] in Serum, Plasma or Blood by Screen method','500215','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_50542-0','50542-0','http://loinc.org','2-Ethylidene-1,5-Dimethyl-3,3-Diphenylpyrrolidine (EDDP) [Mass/volume] in Urine','505420','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_51448-9','51448-9','http://loinc.org','Dihydrocodeine+Hydrocodol [Mass/volume] in Urine','514489','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_51736-7','51736-7','http://loinc.org','oxyMORphone Free [Mass/volume] in Urine','517367','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_51737-5','51737-5','http://loinc.org','HYDROmorphone Free [Mass/volume] in Urine','517375','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_51738-3','51738-3','http://loinc.org','HYDROcodone Free [Mass/volume] in Urine','517383','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_51739-1','51739-1','http://loinc.org','Codeine Free [Mass/volume] in Urine','517391','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_51740-9','51740-9','http://loinc.org','6-monoacetylmorphine free [Mass/volume] in Urine','517409','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_51765-6','51765-6','http://loinc.org','Dihydrocodeine+Hydrocodol [Mass/volume] in Serum or Plasma','517656','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_51954-6','51954-6','http://loinc.org','oxyCODONE Free [Mass/volume] in Urine','519546','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_51955-3','51955-3','http://loinc.org','Dihydrocodeine Free+Hydrocodol Free [Mass/volume] in Urine','519553','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_52952-9','52952-9','http://loinc.org','Opiates [Moles/volume] in Urine','529529','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_52958-6','52958-6','http://loinc.org','Methadone [Moles/volume] in Urine','529586','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_55520-1','55520-1','http://loinc.org','6-Monoacetylmorphine (6-MAM) [Moles/volume] in Urine','555201','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_55537-5','55537-5','http://loinc.org','fentaNYL [Moles/volume] in Serum or Plasma','555375','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_57300-6','57300-6','http://loinc.org','6-Monoacetylmorphine (6-MAM) [Mass/volume] in Saliva (oral fluid)','573006','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_57304-8','57304-8','http://loinc.org','Codeine [Mass/volume] in Saliva (oral fluid)','573048','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_57861-7','57861-7','http://loinc.org','HYDROcodone [Moles/volume] in Specimen','578617','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_57863-3','57863-3','http://loinc.org','HYDROmorphone [Moles/volume] in Specimen','578633','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_57865-8','57865-8','http://loinc.org','oxyCODONE [Moles/volume] in Specimen','578658','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_58380-7','58380-7','http://loinc.org','fentaNYL/Creatinine [Mass Ratio] in Urine','583807','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_58381-5','58381-5','http://loinc.org','fentaNYL [Mass/volume] in Urine by Confirmatory method','583815','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_58382-3','58382-3','http://loinc.org','Norfentanyl/Creatinine [Mass Ratio] in Urine','583823','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_58383-1','58383-1','http://loinc.org','Norfentanyl [Mass/volume] in Urine by Confirmatory method','583831','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_58384-9','58384-9','http://loinc.org','6-Monoacetylmorphine (6-MAM)/Creatinine [Mass Ratio] in Urine','583849','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_58390-6','58390-6','http://loinc.org','2-Ethylidene-1,5-Dimethyl-3,3-Diphenylpyrrolidine (EDDP)/Creatinine [Mass Ratio] in Urine','583906','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_58391-4','58391-4','http://loinc.org','Codeine/Creatinine [Mass Ratio] in Urine','583914','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_58392-2','58392-2','http://loinc.org','Morphine/Creatinine [Mass Ratio] in Urine','583922','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_58393-0','58393-0','http://loinc.org','HYDROcodone/Creatinine [Mass Ratio] in Urine','583930','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_58394-8','58394-8','http://loinc.org','HYDROmorphone/Creatinine [Mass Ratio] in Urine','583948','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_58395-5','58395-5','http://loinc.org','oxyCODONE/Creatinine [Mass Ratio] in Urine','583955','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_58396-3','58396-3','http://loinc.org','oxyMORphone/Creatinine [Mass Ratio] in Urine','583963','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_58429-2','58429-2','http://loinc.org','2-Ethylidene-1,5-Dimethyl-3,3-Diphenylpyrrolidine (EDDP) [Mass/volume] in Urine by Confirmatory method','584292','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_60071-8','60071-8','http://loinc.org','2-Ethylidene-1,5-Dimethyl-3,3-Diphenylpyrrolidine (EDDP) [Mass/volume] in Serum or Plasma','600718','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_60467-8','60467-8','http://loinc.org','oxyMORphone [Mass/volume] in Serum or Plasma','604678','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_60514-7','60514-7','http://loinc.org','6-Acetylcodeine [Mass/volume] in Urine by Confirmatory method','605147','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_61420-6','61420-6','http://loinc.org','Norhydrocodone/Creatinine [Mass Ratio] in Urine','614206','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_61422-2','61422-2','http://loinc.org','Norhydrocodone [Mass/volume] in Urine by Confirmatory method','614222','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_61423-0','61423-0','http://loinc.org','Noroxycodone/Creatinine [Mass Ratio] in Urine','614230','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_61425-5','61425-5','http://loinc.org','Noroxycodone [Mass/volume] in Urine by Confirmatory method','614255','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_64131-6','64131-6','http://loinc.org','Dihydrocodeine/Creatinine [Mass Ratio] in Urine','641316','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_65808-8','65808-8','http://loinc.org','Nortapentadol [Mass/volume] in Urine','658088','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_70147-4','70147-4','http://loinc.org','Methadone [Mass/volume] in Urine by Screen method','701474','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_70150-8','70150-8','http://loinc.org','Opiates [Mass/volume] in Urine by Screen method','701508','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_70197-9','70197-9','http://loinc.org','6-Monoacetylmorphine (6-MAM) [Moles/volume] in Urine by Confirmatory method','701979','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_70206-8','70206-8','http://loinc.org','Codeine [Moles/volume] in Urine by Confirmatory method','702068','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_70210-0','70210-0','http://loinc.org','Morphine [Moles/volume] in Urine by Confirmatory method','702100','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_70215-9','70215-9','http://loinc.org','oxyCODONE [Moles/volume] in Urine by Confirmatory method','702159','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_72385-8','72385-8','http://loinc.org','2-Ethylidene-1,5-Dimethyl-3,3-Diphenylpyrrolidine (EDDP) [Mass/volume] in Saliva (oral fluid) by Confirmatory method','723858','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_72388-2','72388-2','http://loinc.org','Methadone [Mass/volume] in Saliva (oral fluid) by Confirmatory method','723882','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_72733-9','72733-9','http://loinc.org','HYDROmorphone [Mass/volume] in Saliva (oral fluid) by Confirmatory method','727339','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_72734-7','72734-7','http://loinc.org','Methadone [Mass/volume] in Saliva (oral fluid) by Screen method','727347','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_72742-0','72742-0','http://loinc.org','Noroxycodone [Mass/volume] in Saliva (oral fluid) by Confirmatory method','727420','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_72744-6','72744-6','http://loinc.org','Norhydrocodone [Mass/volume] in Saliva (oral fluid) by Confirmatory method','727446','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_72745-3','72745-3','http://loinc.org','Norfentanyl [Mass/volume] in Saliva (oral fluid) by Confirmatory method','727453','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_72750-3','72750-3','http://loinc.org','oxyCODONE [Mass/volume] in Saliva (oral fluid) by Confirmatory method','727503','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_72751-1','72751-1','http://loinc.org','oxyCODONE [Mass/volume] in Saliva (oral fluid) by Screen method','727511','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_72752-9','72752-9','http://loinc.org','Morphine [Mass/volume] in Saliva (oral fluid) by Confirmatory method','727529','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_72753-7','72753-7','http://loinc.org','HYDROcodone [Mass/volume] in Saliva (oral fluid) by Confirmatory method','727537','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_72759-4','72759-4','http://loinc.org','Codeine [Mass/volume] in Saliva (oral fluid) by Confirmatory method','727594','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_72760-2','72760-2','http://loinc.org','fentaNYL [Mass/volume] in Saliva (oral fluid) by Confirmatory method','727602','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_72763-6','72763-6','http://loinc.org','6-Monoacetylmorphine (6-MAM) [Mass/volume] in Saliva (oral fluid) by Confirmatory method','727636','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_72766-9','72766-9','http://loinc.org','oxyMORphone [Mass/volume] in Saliva (oral fluid) by Confirmatory method','727669','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_73937-5','73937-5','http://loinc.org','Norfentanyl [Mass/volume] in Blood by Confirmatory method','739375','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_73938-3','73938-3','http://loinc.org','fentaNYL [Mass/volume] in Blood by Confirmatory method','739383','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_73939-1','73939-1','http://loinc.org','HYDROcodone Free [Mass/volume] in Blood','739391','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_73940-9','73940-9','http://loinc.org','HYDROmorphone Free [Mass/volume] in Blood','739409','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_73941-7','73941-7','http://loinc.org','6-monoacetylmorphine free [Mass/volume] in Blood','739417','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_73972-2','73972-2','http://loinc.org','Morphine Free [Mass/volume] in Blood','739722','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_74130-6','74130-6','http://loinc.org','6-Monoacetylmorphine (6-MAM) [Mass/volume] in Serum, Plasma or Blood','741306','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_74131-4','74131-4','http://loinc.org','Morphine [Mass/volume] in Serum, Plasma or Blood','741314','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_74136-3','74136-3','http://loinc.org','fentaNYL [Mass/volume] in Serum, Plasma or Blood by Confirmatory method','741363','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_74137-1','74137-1','http://loinc.org','Norfentanyl [Mass/volume] in Serum, Plasma or Blood by Confirmatory method','741371','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_74167-8','74167-8','http://loinc.org','Opiates [Mass/volume] in Saliva (oral fluid) by Screen method','741678','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_74372-4','74372-4','http://loinc.org','Acetyl fentanyl [Mass/volume] in Urine','743724','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_74379-9','74379-9','http://loinc.org','Morphine [Mass/volume] in Unknown substance','743799','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_74380-7','74380-7','http://loinc.org','HYDROmorphone [Mass/volume] in Unknown substance','743807','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_74383-1','74383-1','http://loinc.org','fentaNYL [Mass/volume] in Unknown substance','743831','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_74811-1','74811-1','http://loinc.org','Dihydrocodeine [Mass/volume] in Saliva (oral fluid) by Confirmatory method','748111','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_74817-8','74817-8','http://loinc.org','Desomorphine [Mass/volume] in Urine by Confirmatory method','748178','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_77328-3','77328-3','http://loinc.org','Methadone [Moles/volume] in Specimen','773283','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_77332-5','77332-5','http://loinc.org','Morphine [Moles/volume] in Specimen','773325','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_77729-2','77729-2','http://loinc.org','oxyMORphone [Mass/volume] in Serum, Plasma or Blood by Confirmatory method','777292','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_77730-0','77730-0','http://loinc.org','oxyCODONE [Mass/volume] in Serum, Plasma or Blood by Confirmatory method','777300','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_78765-5','78765-5','http://loinc.org','oxyMORphone [Mass/volume] in Urine -- adjusted for lean body mass+urine creatinine','787655','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_78766-3','78766-3','http://loinc.org','fentaNYL [Mass/volume] in Urine -- adjusted for lean body mass+urine creatinine','787663','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_78767-1','78767-1','http://loinc.org','oxyCODONE [Mass/volume] in Urine -- adjusted for lean body mass+urine creatinine','787671','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_78768-9','78768-9','http://loinc.org','Morphine [Mass/volume] in Urine -- adjusted for lean body mass+urine creatinine','787689','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_78769-7','78769-7','http://loinc.org','HYDROcodone [Mass/volume] in Urine -- adjusted for lean body mass+urine creatinine','787697','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_78770-5','78770-5','http://loinc.org','Methadone [Mass/volume] in Urine -- adjusted for lean body mass+urine creatinine','787705','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_78828-1','78828-1','http://loinc.org','fentaNYL [Z-score] in Urine','788281','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_78830-7','78830-7','http://loinc.org','HYDROcodone [Z-score] in Urine','788307','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_78857-0','78857-0','http://loinc.org','Methadone [Z-score] in Urine','788570','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_78861-2','78861-2','http://loinc.org','Morphine [Z-score] in Urine','788612','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_78873-7','78873-7','http://loinc.org','oxyCODONE [Z-score] in Urine','788737','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_78874-5','78874-5','http://loinc.org','oxyMORphone [Z-score] in Urine','788745','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_80115-9','80115-9','http://loinc.org','6-Monoacetylmorphine (6-MAM) [Mass/volume] in Blood by Confirmatory method','801159','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_80116-7','80116-7','http://loinc.org','6-Monoacetylmorphine (6-MAM) [Mass/volume] in Body fluid by Confirmatory method','801167','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_80532-5','80532-5','http://loinc.org','Methadone [Mass/volume] in Blood','805325','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_81754-4','81754-4','http://loinc.org','Nortapentadol [Mass/volume] in Urine by Confirmatory method','817544','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_8209-9','8209-9','http://loinc.org','Opiates [Mass/volume] in Gastric fluid','82099','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_8217-2','8217-2','http://loinc.org','Opiates [Mass/volume] in Serum or Plasma','82172','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_8220-6','8220-6','http://loinc.org','Opiates [Mass/volume] in Urine','82206','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_8223-0','8223-0','http://loinc.org','Opiates [Mass/volume] in Unknown substance','82230','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_86223-5','86223-5','http://loinc.org','Acetyl norfentanyl [Mass/volume] in Serum, Plasma or Blood by Confirmatory method','862235','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_86226-8','86226-8','http://loinc.org','Codeine [Mass/volume] in Serum, Plasma or Blood by Confirmatory method','862268','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_86227-6','86227-6','http://loinc.org','Dihydrocodeine [Mass/volume] in Serum, Plasma or Blood by Confirmatory method','862276','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_86229-2','86229-2','http://loinc.org','HYDROcodone [Mass/volume] in Serum, Plasma or Blood by Confirmatory method','862292','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_86230-0','86230-0','http://loinc.org','HYDROmorphone [Mass/volume] in Serum, Plasma or Blood by Confirmatory method','862300','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_86608-7','86608-7','http://loinc.org','Norcodeine/Creatinine [Mass Ratio] in Urine by Confirmatory method','866087','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_86609-5','86609-5','http://loinc.org','Noroxymorphone/Creatinine [Mass Ratio] in Urine by Confirmatory method','866095','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_90894-7','90894-7','http://loinc.org','Noroxymorphone [Mass/volume] in Urine by Confirmatory method','908947','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_93461-2','93461-2','http://loinc.org','4-Methoxybutyrylfentanyl [Mass/volume] in Urine by Confirmatory method','934612','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_93464-6','93464-6','http://loinc.org','p-Fluorofentanyl [Mass/volume] in Urine by Confirmatory method','934646','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_93465-3','93465-3','http://loinc.org','3-Methylfentanyl [Mass/volume] in Urine by Confirmatory method','934653','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_93466-1','93466-1','http://loinc.org','Valerylfentanyl [Mass/volume] in Urine by Confirmatory method','934661','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_93467-9','93467-9','http://loinc.org','Butyrylfentanyl [Mass/volume] in Urine by Confirmatory method','934679','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_93468-7','93468-7','http://loinc.org','Acrylfentanyl [Mass/volume] in Urine by Confirmatory method','934687','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_93469-5','93469-5','http://loinc.org','4-Fluorobutyrylfentanyl [Mass/volume] in Urine by Confirmatory method','934695','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_93470-3','93470-3','http://loinc.org','Furanylfentanyl [Mass/volume] in Urine by Confirmatory method','934703','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_93471-1','93471-1','http://loinc.org','Acetyl norfentanyl [Mass/volume] in Urine by Confirmatory method','934711','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_93472-9','93472-9','http://loinc.org','4-Methylphenethylacetylfentanyl [Mass/volume] in Urine by Confirmatory method','934729','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_93473-7','93473-7','http://loinc.org','Beta hydroxythiofentanyl [Mass/volume] in Urine by Confirmatory method','934737','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_95135-0','95135-0','http://loinc.org','Noroxycodone [Mass/volume] in Urine','951350','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1076_9835-0','9835-0','http://loinc.org','HYDROmorphone [Mass/volume] in Urine','98350','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2166_97871-8','97871-8','http://loinc.org','Hantavirus IgG and IgM panel - Serum or Plasma','978718','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.513_20734-0','20734-0','http://loinc.org','Brucella sp identified in Tissue by Organism specific culture','207340','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.513_23594-5','23594-5','http://loinc.org','Brucella sp identified in Semen by Organism specific culture','235945','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.513_24003-6','24003-6','http://loinc.org','Brucella sp identified in Bone marrow by Organism specific culture','240036','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.513_44797-9','44797-9','http://loinc.org','Brucella sp [Presence] in Specimen by Organism specific culture','447979','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.513_551-2','551-2','http://loinc.org','Brucella sp identified in Blood by Organism specific culture','5512','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.513_552-0','552-0','http://loinc.org','Brucella sp identified in Specimen by Organism specific culture','5520','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1111_89368-5','89368-5','http://loinc.org','Zika virus non-structural protein 1 IgM panel - Serum or Plasma by Immunoassay','893685','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_10349-9','10349-9','http://loinc.org','Brucella sp Ab [Units/volume] in Serum','103499','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_11586-5','11586-5','http://loinc.org','Brucella abortus Ab [Units/volume] in Serum','115865','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_11587-3','11587-3','http://loinc.org','Brucella canis Ab [Units/volume] in Serum','115873','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_11588-1','11588-1','http://loinc.org','Brucella melitensis Ab [Units/volume] in Serum','115881','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_11589-9','11589-9','http://loinc.org','Brucella suis Ab [Units/volume] in Serum','115899','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_13210-0','13210-0','http://loinc.org','Brucella sp IgG Ab [Units/volume] in Serum','132100','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_13211-8','13211-8','http://loinc.org','Brucella sp IgA Ab [Units/volume] in Serum','132118','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_13212-6','13212-6','http://loinc.org','Brucella abortus IgG Ab [Units/volume] in Cerebral spinal fluid','132126','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_13213-4','13213-4','http://loinc.org','Brucella abortus IgM Ab [Units/volume] in Cerebral spinal fluid','132134','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_13214-2','13214-2','http://loinc.org','Brucella canis IgG Ab [Units/volume] in Cerebral spinal fluid','132142','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_13215-9','13215-9','http://loinc.org','Brucella canis IgM Ab [Units/volume] in Cerebral spinal fluid','132159','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_14079-8','14079-8','http://loinc.org','Brucella canis IgG Ab [Titer] in Serum by Immunofluorescence','140798','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_14080-6','14080-6','http://loinc.org','Brucella canis IgM Ab [Titer] in Serum by Immunofluorescence','140806','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_16119-0','16119-0','http://loinc.org','Brucella abortus IgG Ab [Titer] in Serum','161190','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_16120-8','16120-8','http://loinc.org','Brucella abortus IgM Ab [Titer] in Serum','161208','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_16486-3','16486-3','http://loinc.org','Brucella abortus IgA+IgG+IgM Ab [Units/volume] in Serum','164863','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_16487-1','16487-1','http://loinc.org','Brucella abortus IgG Ab [Units/volume] in Serum by Agglutination','164871','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_16488-9','16488-9','http://loinc.org','Brucella abortus IgG Ab [Units/volume] in Serum by Complement fixation','164889','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_16489-7','16489-7','http://loinc.org','Brucella melitensis Ab [Units/volume] in Serum by Latex agglutination','164897','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_16490-5','16490-5','http://loinc.org','Brucella suis Ab [Units/volume] in Serum by Latex agglutination','164905','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_19053-8','19053-8','http://loinc.org','Brucella sp Ab [Titer] in Serum by Agglutination','190538','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_19243-5','19243-5','http://loinc.org','Brucella abortus Ab [Units/volume] in Serum by Immunoassay','192435','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_20719-1','20719-1','http://loinc.org','Brucella abortus Ab [Titer] in Serum by Tube agglutination','207191','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_20722-5','20722-5','http://loinc.org','Brucella abortus Ab [Titer] in Serum by Rivanol agglutination','207225','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_20729-0','20729-0','http://loinc.org','Brucella abortus Ab [Titer] in Serum by Plate agglutination','207290','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_22150-7','22150-7','http://loinc.org','Brucella abortus Ab [Titer] in Serum','221507','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_22151-5','22151-5','http://loinc.org','Brucella abortus IgM Ab [Units/volume] in Serum','221515','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_22152-3','22152-3','http://loinc.org','Brucella canis Ab [Titer] in Serum','221523','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_22153-1','22153-1','http://loinc.org','Brucella canis IgG Ab [Units/volume] in Serum','221531','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_22154-9','22154-9','http://loinc.org','Brucella canis IgG Ab [Titer] in Serum','221549','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_22155-6','22155-6','http://loinc.org','Brucella canis IgM Ab [Units/volume] in Serum','221556','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_22156-4','22156-4','http://loinc.org','Brucella canis IgM Ab [Titer] in Serum','221564','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_22157-2','22157-2','http://loinc.org','Brucella melitensis Ab [Titer] in Serum','221572','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_22159-8','22159-8','http://loinc.org','Brucella sp Ab [Titer] in Serum','221598','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_22160-6','22160-6','http://loinc.org','Brucella suis Ab [Titer] in Serum','221606','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_22921-1','22921-1','http://loinc.org','Brucella abortus Ab [Units/volume] in Serum by Agglutination','229211','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_22934-4','22934-4','http://loinc.org','Brucella melitensis Ab [Units/volume] in Serum by Complement fixation','229344','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_22937-7','22937-7','http://loinc.org','Brucella ovis Ab [Units/volume] in Serum by Complement fixation','229377','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_22939-3','22939-3','http://loinc.org','Brucella ovis Ab [Units/volume] in Serum','229393','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_22953-4','22953-4','http://loinc.org','Brucella suis Ab [Units/volume] in Serum by Complement fixation','229534','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_23682-8','23682-8','http://loinc.org','Brucella canis Ab [Titer] in Serum by Agglutination','236828','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_23683-6','23683-6','http://loinc.org','Brucella canis Ab [Titer] in Serum by Immunofluorescence','236836','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_23684-4','23684-4','http://loinc.org','Brucella ovis Ab [Titer] in Serum','236844','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_23963-2','23963-2','http://loinc.org','Brucella abortus IgG Ab [Titer] in Cerebral spinal fluid','239632','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_23964-0','23964-0','http://loinc.org','Brucella abortus IgM Ab [Titer] in Cerebral spinal fluid','239640','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_23986-3','23986-3','http://loinc.org','Brucella abortus IgG Ab [Titer] in Cerebral spinal fluid by Immunofluorescence','239863','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_23987-1','23987-1','http://loinc.org','Brucella abortus IgM Ab [Titer] in Cerebral spinal fluid by Immunofluorescence','239871','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_29250-8','29250-8','http://loinc.org','Brucella sp Ab [Titer] in Serum --1st specimen','292508','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_29251-6','29251-6','http://loinc.org','Brucella sp Ab [Titer] in Serum --2nd specimen','292516','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_30092-1','30092-1','http://loinc.org','Brucella canis IgG Ab [Titer] in Cerebral spinal fluid by Immunofluorescence','300921','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_30093-9','30093-9','http://loinc.org','Brucella canis IgM Ab [Titer] in Cerebral spinal fluid by Immunofluorescence','300939','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_33945-7','33945-7','http://loinc.org','Brucella abortus Ab [Titer] in Cerebral spinal fluid','339457','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_38247-3','38247-3','http://loinc.org','Brucella sp IgG Ab [Titer] in Serum','382473','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_38248-1','38248-1','http://loinc.org','Brucella sp IgM Ab [Titer] in Serum','382481','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_43071-0','43071-0','http://loinc.org','Brucella canis IgM Ab [Titer] in Cerebral spinal fluid','430710','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_43072-8','43072-8','http://loinc.org','Brucella canis IgG Ab [Titer] in Cerebral spinal fluid','430728','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_43843-2','43843-2','http://loinc.org','Brucella abortus IgG Ab [Units/volume] in Serum by Immunoassay','438432','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_44458-8','44458-8','http://loinc.org','Brucella abortus IgG+IgM Ab [Units/volume] in Serum','444588','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_44815-9','44815-9','http://loinc.org','Brucella abortus IgM Ab [Units/volume] in Serum by Immunofluorescence','448159','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_44818-3','44818-3','http://loinc.org','Brucella abortus IgG Ab [Units/volume] in Serum by Immunofluorescence','448183','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_5067-4','5067-4','http://loinc.org','Brucella abortus Ab [Titer] in Serum by Latex agglutination','50674','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_5068-2','5068-2','http://loinc.org','Brucella canis Ab [Titer] in Serum by Latex agglutination','50682','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_5069-0','5069-0','http://loinc.org','Brucella melitensis Ab [Titer] in Serum by Latex agglutination','50690','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_5070-8','5070-8','http://loinc.org','Brucella sp IgM Ab [Units/volume] in Serum','50708','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_5071-6','5071-6','http://loinc.org','Brucella suis Ab [Titer] in Serum by Latex agglutination','50716','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_51671-6','51671-6','http://loinc.org','Brucella sp Ab [Titer] in Serum by Tube agglutination','516716','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_56630-7','56630-7','http://loinc.org','Brucella sp IgG Ab [Units/volume] in Serum by Immunoassay','566307','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_56631-5','56631-5','http://loinc.org','Brucella sp IgM Ab [Units/volume] in Serum by Immunoassay','566315','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_57670-2','57670-2','http://loinc.org','Brucella melitensis IgG Ab [Units/volume] in Serum by Immunoassay','576702','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_57671-0','57671-0','http://loinc.org','Brucella melitensis IgM Ab [Units/volume] in Serum by Immunoassay','576710','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_58806-1','58806-1','http://loinc.org','Brucella sp Ab [Titer] in Cerebral spinal fluid by Agglutination','588061','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_6324-8','6324-8','http://loinc.org','Brucella abortus Ab [Titer] in Serum by Agglutination','63248','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_6325-5','6325-5','http://loinc.org','Brucella abortus Ab [Titer] in Serum by Complement fixation','63255','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_6326-3','6326-3','http://loinc.org','Brucella abortus IgM Ab [Units/volume] in Serum by Immunoassay','63263','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_6327-1','6327-1','http://loinc.org','Brucella canis Ab [Units/volume] in Serum by Immunoassay','63271','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_6328-9','6328-9','http://loinc.org','Brucella sp Ab [Titer] in Serum by Immunofluorescence','63289','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_63435-2','63435-2','http://loinc.org','Brucella abortus Ab [Titer] in Cerebral spinal fluid by Antihuman globulin','634352','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_63437-8','63437-8','http://loinc.org','Brucella abortus Ab [Titer] in Serum by Antihuman globulin','634378','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_6910-4','6910-4','http://loinc.org','Brucella abortus IgA Ab [Units/volume] in Serum','69104','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_6911-2','6911-2','http://loinc.org','Brucella abortus IgG Ab [Units/volume] in Serum','69112','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_71716-5','71716-5','http://loinc.org','Brucella suis Ab [Titer] in Serum by Tube agglutination','717165','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_71717-3','71717-3','http://loinc.org','Brucella suis Ab [Titer] in Serum by Plate agglutination','717173','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_72307-2','72307-2','http://loinc.org','Brucella sp IgG Ab [Titer] in Serum --2nd specimen','723072','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_72308-0','72308-0','http://loinc.org','Brucella sp IgG Ab [Titer] in Serum --1st specimen','723080','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_80151-4','80151-4','http://loinc.org','Brucella abortus IgG Ab [Titer] in Serum by Agglutination','801514','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_86458-7','86458-7','http://loinc.org','Brucella sp Ab [Titer] in Serum by Rivanol agglutination','864587','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_86459-5','86459-5','http://loinc.org','Brucella sp Ab [Titer] in Serum by Plate agglutination','864595','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_91876-3','91876-3','http://loinc.org','Brucella sp Ab [Titer] in Serum by Immunocapture agglutination','918763','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_94264-9','94264-9','http://loinc.org','Brucella sp Ab [Titer] in Cerebral spinal fluid by Immunocapture agglutination','942649','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_9495-3','9495-3','http://loinc.org','Brucella canis IgG Ab [Units/volume] in Serum by Immunoassay','94953','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.515_9496-1','9496-1','http://loinc.org','Brucella canis IgM Ab [Units/volume] in Serum by Immunoassay','94961','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.25_53941-1','53941-1','http://loinc.org','Vibrio cholerae toxin Ag [Presence] in Isolate','539411','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1921_100383-9','100383-9','http://loinc.org','Monkeypox virus DNA [Presence] in Specimen by NAA with probe detection','1003839','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1921_100888-7','100888-7','http://loinc.org','Monkeypox virus clade II DNA [Presence] in Specimen by NAA with probe detection','1008887','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1921_100889-5','100889-5','http://loinc.org','Monkeypox virus clade I DNA [Presence] in Specimen by NAA with probe detection','1008895','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1127_35558-6','35558-6','http://loinc.org','Cholinesterase panel [Enzymatic activity/volume] - Blood','355586','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1127_72694-3','72694-3','http://loinc.org','Cholinesterase activity panel - Serum or Plasma','726943','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.581_101366-3','101366-3','http://loinc.org','Ebola virus RNA [Presence] in Blood by NAA with non-probe detection','1013663','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.581_101367-1','101367-1','http://loinc.org','Marburg virus RNA [Presence] in Blood by NAA with non-probe detection','1013671','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.581_41621-4','41621-4','http://loinc.org','Arenavirus RNA [Presence] in Specimen by NAA with probe detection','416214','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.581_41636-2','41636-2','http://loinc.org','Ebola virus RNA [Presence] in Specimen by NAA with probe detection','416362','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.581_41638-8','41638-8','http://loinc.org','Marburg virus RNA [Presence] in Specimen by NAA with probe detection','416388','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.581_75411-9','75411-9','http://loinc.org','Ebola Zaire virus RNA [Presence] in Plasma or Blood by NAA with probe detection','754119','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.581_86518-8','86518-8','http://loinc.org','Ebola virus RNA [Presence] in Blood by NAA with probe detection','865188','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.581_86574-1','86574-1','http://loinc.org','Marburg virus RNA [Presence] in Blood by NAA with probe detection','865741','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.581_88192-0','88192-0','http://loinc.org','Crimean-Congo hemorrhagic fever virus RNA [Presence] in Serum by NAA with probe detection','881920','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.581_97646-4','97646-4','http://loinc.org','Lassa virus RNA [Presence] in Specimen by NAA with probe detection','976464','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.582_31867-5','31867-5','http://loinc.org','Lassa virus Ag [Presence] in Serum','318675','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.582_41637-0','41637-0','http://loinc.org','Ebola virus Ag [Presence] in Specimen by Immunofluorescence','416370','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.582_71708-2','71708-2','http://loinc.org','Marburg virus Ag [Presence] in Specimen by Immunoassay','717082','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.582_71768-6','71768-6','http://loinc.org','Ebola virus Ag [Presence] in Specimen by Immunoassay','717686','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.582_7946-7','7946-7','http://loinc.org','Lassa virus Ag [Presence] in Serum by Immunoassay','79467','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.220_43890-3','43890-3','http://loinc.org','Bordetella pertussis [Presence] in Sputum by Organism specific culture','438903','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.220_43896-0','43896-0','http://loinc.org','Bordetella pertussis [Presence] in Pleural fluid by Organism specific culture','438960','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.220_48741-3','48741-3','http://loinc.org','Bordetella pertussis [Presence] in Nasopharynx by Organism specific culture','487413','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.220_548-8','548-8','http://loinc.org','Bordetella pertussis [Presence] in Throat by Organism specific culture','5488','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.220_549-6','549-6','http://loinc.org','Bordetella pertussis [Presence] in Specimen by Organism specific culture','5496','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.584_22377-6','22377-6','http://loinc.org','Lassa virus IgG Ab [Presence] in Serum','223776','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.584_22378-4','22378-4','http://loinc.org','Lassa virus IgG Ab [Titer] in Serum','223784','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.584_31452-6','31452-6','http://loinc.org','Lassa virus IgG Ab [Units/volume] in Serum','314526','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.584_71707-4','71707-4','http://loinc.org','Marburg virus IgG Ab [Titer] in Serum by Immunoassay','717074','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.584_71710-8','71710-8','http://loinc.org','Lassa virus IgG Ab [Titer] in Serum by Immunoassay','717108','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.584_71767-8','71767-8','http://loinc.org','Ebola virus IgG Ab [Titer] in Serum by Immunoassay','717678','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.584_71769-4','71769-4','http://loinc.org','Marburg virus IgG Ab [Presence] in Serum by Immunoassay','717694','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.584_71770-2','71770-2','http://loinc.org','Ebola virus IgG Ab [Presence] in Serum by Immunoassay','717702','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.584_7942-6','7942-6','http://loinc.org','Lassa virus IgG Ab [Presence] in Serum by Immunoassay','79426','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.584_7943-4','7943-4','http://loinc.org','Lassa virus IgG Ab [Titer] in Serum by Immunofluorescence','79434','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.584_88191-2','88191-2','http://loinc.org','Crimean-Congo hemorrhagic fever virus IgG Ab [Presence] in Serum by Immunoassay','881912','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.585_22379-2','22379-2','http://loinc.org','Lassa virus IgM Ab [Presence] in Serum','223792','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.585_22380-0','22380-0','http://loinc.org','Lassa virus IgM Ab [Titer] in Serum','223800','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.585_31453-4','31453-4','http://loinc.org','Lassa virus IgM Ab [Units/volume] in Serum','314534','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.585_71706-6','71706-6','http://loinc.org','Marburg virus IgM Ab [Titer] in Serum by Immunoassay','717066','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.585_71709-0','71709-0','http://loinc.org','Lassa virus IgM Ab [Titer] in Serum by Immunoassay','717090','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.585_71711-6','71711-6','http://loinc.org','Ebola virus IgM Ab [Titer] in Serum by Immunoassay','717116','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.585_71712-4','71712-4','http://loinc.org','Ebola virus IgM Ab [Presence] in Serum by Immunoassay','717124','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.585_71771-0','71771-0','http://loinc.org','Marburg virus IgM Ab [Presence] in Serum by Immunoassay','717710','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.585_7944-2','7944-2','http://loinc.org','Lassa virus IgM Ab [Presence] in Serum by Immunoassay','79442','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.585_7945-9','7945-9','http://loinc.org','Lassa virus IgM Ab [Titer] in Serum by Immunofluorescence','79459','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.585_88190-4','88190-4','http://loinc.org','Crimean-Congo hemorrhagic fever virus IgM Ab [Presence] in Serum by Immunoassay','881904','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.981_11470-2','11470-2','http://loinc.org','Clostridium botulinum toxin [Units/volume] in Stool','114702','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.981_20705-0','20705-0','http://loinc.org','Clostridium botulinum toxin [Identifier] in Serum by Animal inoculation','207050','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.981_20706-8','20706-8','http://loinc.org','Clostridium botulinum toxin [Identifier] in Specimen by Animal inoculation','207068','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.981_33696-6','33696-6','http://loinc.org','Clostridium botulinum toxin [Presence] in Specimen by Mouse bioassay','336966','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.981_33701-4','33701-4','http://loinc.org','Clostridium botulinum toxin A [Presence] in Specimen by Mouse bioassay neutralization','337014','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.981_33702-2','33702-2','http://loinc.org','Clostridium botulinum toxin E [Presence] in Specimen by Mouse bioassay neutralization','337022','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.981_33703-0','33703-0','http://loinc.org','Clostridium botulinum toxin F [Presence] in Specimen by Mouse bioassay neutralization','337030','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.981_33704-8','33704-8','http://loinc.org','Clostridium botulinum toxin A+B+E [Presence] in Specimen by Mouse bioassay neutralization','337048','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.981_33705-5','33705-5','http://loinc.org','Clostridium botulinum toxin B [Presence] in Specimen by Mouse bioassay neutralization','337055','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.981_33708-9','33708-9','http://loinc.org','Clostridium botulinum toxin [Presence] in Specimen','337089','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.981_33709-7','33709-7','http://loinc.org','Clostridium botulinum toxin A [Presence] in Specimen','337097','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.981_33710-5','33710-5','http://loinc.org','Clostridium botulinum toxin E [Presence] in Specimen','337105','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.981_33711-3','33711-3','http://loinc.org','Clostridium botulinum toxin F [Presence] in Specimen','337113','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.981_33712-1','33712-1','http://loinc.org','Clostridium botulinum toxin A+B+E [Presence] in Specimen','337121','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.981_33713-9','33713-9','http://loinc.org','Clostridium botulinum toxin B [Presence] in Specimen','337139','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.981_34664-3','34664-3','http://loinc.org','Clostridium botulinum toxin A Ab [Presence] in Serum','346643','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.981_38989-0','38989-0','http://loinc.org','Clostridium botulinum toxin A+B+E+F+G [Presence] in Specimen by Mouse bioassay neutralization','389890','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.981_41630-5','41630-5','http://loinc.org','Clostridium botulinum toxin A [Presence] in Specimen by Immunofluorescence','416305','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.981_41631-3','41631-3','http://loinc.org','Clostridium botulinum toxin A botA gene [Presence] in Specimen by NAA with probe detection','416313','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.981_41632-1','41632-1','http://loinc.org','Clostridium botulinum toxin B [Presence] in Specimen by Immunofluorescence','416321','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.981_41633-9','41633-9','http://loinc.org','Clostridium botulinum toxin B botB gene [Presence] in Specimen by NAA with probe detection','416339','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.981_41634-7','41634-7','http://loinc.org','Clostridium botulinum toxin E [Presence] in Specimen by Immunofluorescence','416347','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.981_41635-4','41635-4','http://loinc.org','Clostridium botulinum toxin F [Presence] in Specimen by Immunofluorescence','416354','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.981_44274-9','44274-9','http://loinc.org','Clostridium botulinum toxin [Identifier] in Specimen by Immunoassay','442749','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.981_44796-1','44796-1','http://loinc.org','Clostridium botulinum toxin [Identifier] in Specimen','447961','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.981_45039-5','45039-5','http://loinc.org','Clostridium botulinum toxin [Presence] in Specimen by Immunoassay','450395','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.981_46705-0','46705-0','http://loinc.org','Clostridium botulinum toxin gene [Identifier] in Specimen by NAA with probe detection','467050','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.981_80518-4','80518-4','http://loinc.org','Clostridium baratii toxin F bont gene [Presence] in Specimen by NAA with probe detection','805184','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.981_81644-7','81644-7','http://loinc.org','Clostridium botulinum toxin C botC gene [Presence] in Specimen by NAA with probe detection','816447','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.981_81645-4','81645-4','http://loinc.org','Clostridium botulinum toxin D botD gene [Presence] in Specimen by NAA with probe detection','816454','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.981_81646-2','81646-2','http://loinc.org','Clostridium botulinum toxin E botE gene [Presence] in Specimen by NAA with probe detection','816462','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.981_81647-0','81647-0','http://loinc.org','Clostridium botulinum toxin F botF gene [Presence] in Specimen by NAA with probe detection','816470','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.981_81648-8','81648-8','http://loinc.org','Clostridium botulinum toxin G botG gene [Presence] in Specimen by NAA with probe detection','816488','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.981_88578-0','88578-0','http://loinc.org','Clostridium botulinum toxin [Identifier] in Stool by Mouse bioassay neutralization','885780','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.981_88589-7','88589-7','http://loinc.org','Clostridium botulinum toxin [Identifier] in Serum by Mouse bioassay neutralization','885897','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.982_80827-9','80827-9','http://loinc.org','Clostridium botulinum and Clostridium baratii toxins gene panel - Specimen by NAA with probe detection','808279','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1002_20892-6','20892-6','http://loinc.org','Mycobacterium avium ss paratuberculosis [Presence] in Tissue by Organism specific culture','208926','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1002_20893-4','20893-4','http://loinc.org','Mycobacterium avium ss paratuberculosis [Presence] in Stool by Organism specific culture','208934','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1002_24427-7','24427-7','http://loinc.org','Mycobacterium avium ss paratuberculosis [Presence] in Specimen by Organism specific culture','244277','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1002_30045-9','30045-9','http://loinc.org','Mycobacterium sp identified in Dialysis fluid by Organism specific culture','300459','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1002_42716-1','42716-1','http://loinc.org','Mycobacterium sp rRNA [Identifier] in Isolate by NAA with probe detection','427161','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1002_44851-4','44851-4','http://loinc.org','Mycobacterium sp # 2 identified in Specimen by Organism specific culture','448514','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1002_44852-2','44852-2','http://loinc.org','Mycobacterium sp # 3 identified in Specimen by Organism specific culture','448522','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1002_44854-8','44854-8','http://loinc.org','Mycobacterium sp # 4 identified in Specimen by Organism specific culture','448548','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1002_44855-5','44855-5','http://loinc.org','Mycobacterium sp # 5 identified in Specimen by Organism specific culture','448555','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1002_50941-4','50941-4','http://loinc.org','Mycobacterium sp [Presence] in Specimen by Organism specific culture','509414','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1002_532-2','532-2','http://loinc.org','Mycobacterium sp identified in Aspirate by Organism specific culture','5322','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1002_533-0','533-0','http://loinc.org','Mycobacterium sp identified in Blood by Organism specific culture','5330','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1002_534-8','534-8','http://loinc.org','Mycobacterium sp identified in Cerebral spinal fluid by Organism specific culture','5348','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1002_535-5','535-5','http://loinc.org','Mycobacterium sp identified in Body fluid by Organism specific culture','5355','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1002_536-3','536-3','http://loinc.org','Mycobacterium sp identified in Bone marrow by Organism specific culture','5363','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1002_537-1','537-1','http://loinc.org','Mycobacterium sp identified in Peritoneal fluid by Organism specific culture','5371','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1002_538-9','538-9','http://loinc.org','Mycobacterium sp identified in Synovial fluid by Organism specific culture','5389','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1002_539-7','539-7','http://loinc.org','Mycobacterium sp identified in Sputum by Organism specific culture','5397','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1002_53909-8','53909-8','http://loinc.org','Mycobacterium sp identified in Pleural fluid by Organism specific culture','539098','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1002_540-5','540-5','http://loinc.org','Mycobacterium sp identified in Tissue by Organism specific culture','5405','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1002_541-3','541-3','http://loinc.org','Mycobacterium sp identified in Urine by Organism specific culture','5413','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1002_542-1','542-1','http://loinc.org','Mycobacterium sp identified in Wound by Organism specific culture','5421','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1002_543-9','543-9','http://loinc.org','Mycobacterium sp identified in Specimen by Organism specific culture','5439','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1002_614-8','614-8','http://loinc.org','Mycobacterial strain [Type] in Isolate by Mycobacterial subtyping','6148','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1002_64412-0','64412-0','http://loinc.org','Mycobacterium sp [Presence] in Blood by Organism specific culture','644120','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1002_67725-2','67725-2','http://loinc.org','Mycobacterium sp identified in Isolate by HPLC','677252','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1002_72863-4','72863-4','http://loinc.org','Mycobacterium leprae gyrB gene fluoroquinolone resistance mutation [Presence] by Molecular method','728634','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1002_72868-3','72868-3','http://loinc.org','Mycobacterium leprae folP1 gene dapsone resistance mutation [Presence] by Molecular method','728683','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1002_72869-1','72869-1','http://loinc.org','Mycobacterium leprae gyrA gene fluoroquinolone resistance mutation [Presence] by Molecular method','728691','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1002_72870-9','72870-9','http://loinc.org','Mycobacterium leprae rpoB gene rifAMPin resistance mutation [Presence] by Molecular method','728709','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1002_76687-3','76687-3','http://loinc.org','Mycobacterium sp identified in Bronchoalveolar lavage by Organism specific culture','766873','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1002_77734-2','77734-2','http://loinc.org','Mycobacterium abscessus complex clarithromycin resistance erm(41) full length gene [Presence] by Molecular method','777342','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1002_77735-9','77735-9','http://loinc.org','Mycobacterium abscessus complex clarithromycin resistance erm(41) truncated gene [Presence] by Molecular method','777359','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1002_88167-2','88167-2','http://loinc.org','Mycobacterium sp identified in Cornea or Conjunctiva by Organism specific culture','881672','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1002_88168-0','88168-0','http://loinc.org','Mycobacterium sp identified in Ocular fluid by Organism specific culture','881680','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1002_88183-9','88183-9','http://loinc.org','Mycobacterium sp identified in Isolate by Sequencing','881839','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1002_88266-2','88266-2','http://loinc.org','Mycobacterium sp rRNA [Identifier] by Probe in Positive blood culture','882662','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1002_89636-5','89636-5','http://loinc.org','Mycobacterium sp identified in Lower respiratory specimen by Organism specific culture','896365','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1002_90284-1','90284-1','http://loinc.org','Mycobacterium sp identified in Bile fluid by Organism specific culture','902841','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1002_90433-4','90433-4','http://loinc.org','Mycobacterium preliminary growth [Presence] in Sputum by Organism specific culture','904334','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1002_90438-3','90438-3','http://loinc.org','Mycobacterium preliminary growth [Presence] in Tissue by Organism specific culture','904383','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1002_91590-0','91590-0','http://loinc.org','Mycobacterium preliminary growth [Presence] in Body fluid by Organism specific culture','915900','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1002_9823-6','9823-6','http://loinc.org','Mycobacterium sp identified in Bronchial specimen by Organism specific culture','98236','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1002_9824-4','9824-4','http://loinc.org','Mycobacterium sp identified in Gastric fluid by Organism specific culture','98244','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1002_9825-1','9825-1','http://loinc.org','Mycobacterium sp identified in Isolate','98251','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1002_35352-4','35352-4','http://loinc.org','Mycobacterium tuberculosis genotype [Identifier] in Isolate','353524','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1002_42717-9','42717-9','http://loinc.org','Mycobacterium tuberculosis complex genotype [Identifier] in Isolate','427179','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1002_83066-1','83066-1','http://loinc.org','Mycobacterium tuberculosis complex immunogenic protein MPB64 [Presence] in Isolate by Immunoassay','830661','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1002_88874-3','88874-3','http://loinc.org','Mycobacterium tuberculosis complex DNA [Presence] in Isolate or Specimen by Molecular genetics method','888743','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1002_94576-6','94576-6','http://loinc.org','Mycobacterium tuberculosis complex species identified in Isolate by NAA with probe detection','945766','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1365_17328-6','17328-6','http://loinc.org','Neisseria meningitidis serogroup B Ag [Presence] in Urine by Latex agglutination','173286','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1365_17333-6','17333-6','http://loinc.org','Neisseria meningitidis serogroup w135 Ag [Presence] in Serum or Plasma by Latex agglutination','173336','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1365_19259-1','19259-1','http://loinc.org','Neisseria meningitidis serogroups A+C+w135+Y Ag [Presence] in Specimen by Latex agglutination','192591','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1365_30094-7','30094-7','http://loinc.org','Neisseria meningitidis serogroup A Ag [Presence] in Specimen by Latex agglutination','300947','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1365_30095-4','30095-4','http://loinc.org','Neisseria meningitidis serogroup B Ag [Presence] in Specimen by Latex agglutination','300954','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1365_30096-2','30096-2','http://loinc.org','Neisseria meningitidis serogroup C Ag [Presence] in Specimen by Latex agglutination','300962','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1365_30097-0','30097-0','http://loinc.org','Neisseria meningitidis serogroup w135 Ag [Presence] in Specimen by Latex agglutination','300970','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1365_30098-8','30098-8','http://loinc.org','Neisseria meningitidis serogroup Y Ag [Presence] in Specimen by Latex agglutination','300988','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1365_32800-5','32800-5','http://loinc.org','Neisseria meningitidis serogroups C+w135 Ag [Presence] in Specimen by Latex agglutination','328005','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1365_32851-8','32851-8','http://loinc.org','Neisseria meningitidis serogroups A+Y Ag [Presence] in Specimen by Latex agglutination','328518','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1365_33397-1','33397-1','http://loinc.org','Neisseria meningitidis serogroups A+C+w135+Y Ag [Presence] in Serum by Latex agglutination','333971','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1365_33398-9','33398-9','http://loinc.org','Neisseria meningitidis serogroups A+C+w135+Y Ag [Presence] in Urine by Latex agglutination','333989','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1365_78514-7','78514-7','http://loinc.org','Neisseria meningitidis serogroups A+B+C+w135+Y+Escherichia coli K1 Ag [Presence] in Specimen by Latex agglutination','785147','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1365_17324-5','17324-5','http://loinc.org','Neisseria meningitidis Ag [Units/volume] in Cerebral spinal fluid by Latex agglutination','173245','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1365_19133-8','19133-8','http://loinc.org','Neisseria meningitidis serogroups A+C+w135+Y Ag [Presence] in Cerebral spinal fluid by Latex agglutination','191338','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1365_59421-8','59421-8','http://loinc.org','Neisseria meningitidis serogroups A+B+C+w135+Y Ag [Presence] in Cerebral spinal fluid by Latex agglutination','594218','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1365_6494-9','6494-9','http://loinc.org','Neisseria meningitidis serogroup A Ag [Presence] in Cerebral spinal fluid by Latex agglutination','64949','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1365_6498-0','6498-0','http://loinc.org','Neisseria meningitidis serogroup B Ag [Presence] in Cerebral spinal fluid by Latex agglutination','64980','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1365_6500-3','6500-3','http://loinc.org','Neisseria meningitidis serogroup C Ag [Presence] in Cerebral spinal fluid by Latex agglutination','65003','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1365_6505-2','6505-2','http://loinc.org','Neisseria meningitidis serogroup Y Ag [Presence] in Cerebral spinal fluid by Latex agglutination','65052','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1365_6507-8','6507-8','http://loinc.org','Neisseria meningitidis serogroup w135 Ag [Presence] in Cerebral spinal fluid by Latex agglutination','65078','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.345_41856-6','41856-6','http://loinc.org','Variola virus DNA [Presence] in Specimen by NAA with probe detection','418566','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1126_11154-2','11154-2','http://loinc.org','Cholinesterase [Enzymatic activity/volume] in Blood','111542','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1126_1709-5','1709-5','http://loinc.org','Acetylcholinesterase [Enzymatic activity/volume] in Red Blood Cells','17095','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1126_1710-3','1710-3','http://loinc.org','Acetylcholinesterase [Enzymatic activity/volume] in Serum or Plasma','17103','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1126_2098-2','2098-2','http://loinc.org','Cholinesterase [Enzymatic activity/volume] in Serum or Plasma','20982','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1126_2099-0','2099-0','http://loinc.org','Cholinesterase [Enzymatic activity/volume] in Red Blood Cells','20990','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1126_30244-8','30244-8','http://loinc.org','Acetylcholinesterase [Enzymatic activity/volume] in Blood','302448','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1126_34711-2','34711-2','http://loinc.org','Cholinesterase [Presence] in Serum or Plasma','347112','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1126_35701-2','35701-2','http://loinc.org','Acetylcholinesterase [Enzymatic activity/volume] in Specimen','357012','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1126_49230-6','49230-6','http://loinc.org','Acetylcholinesterase [Enzymatic activity/mass] in Red Blood Cells','492306','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1126_49231-4','49231-4','http://loinc.org','Cholinesterase [Enzymatic activity/mass] in Red Blood Cells','492314','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1126_49851-9','49851-9','http://loinc.org','Cholinesterase [Enzymatic activity/volume] in Peritoneal fluid','498519','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1126_89363-6','89363-6','http://loinc.org','Cholinesterase [Enzymatic activity/volume] in Body fluid','893636','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.500_101365-5','101365-5','http://loinc.org','Coxiella burnetii DNA [Presence] in Blood by NAA with non-probe detection','1013655','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.500_23024-3','23024-3','http://loinc.org','Coxiella burnetii DNA [Presence] in Specimen by NAA with probe detection','230243','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.500_49124-1','49124-1','http://loinc.org','Coxiella burnetii identified in Specimen by Sequencing','491241','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.500_60261-5','60261-5','http://loinc.org','Coxiella burnetii DNA [Presence] in Serum or Plasma by NAA with probe detection','602615','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.500_88177-1','88177-1','http://loinc.org','Coxiella burnetii DNA [Presence] in Blood by NAA with probe detection','881771','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.500_88178-9','88178-9','http://loinc.org','Coxiella burnetii DNA [Presence] in Tissue by NAA with probe detection','881789','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.500_90442-5','90442-5','http://loinc.org','Coxiella burnetii aroE gene [Presence] in Tissue by NAA with non-probe detection','904425','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.500_90443-3','90443-3','http://loinc.org','Coxiella burnetii aroE gene [Presence] in Serum, Plasma or Blood by NAA with non-probe detection','904433','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.500_94634-3','94634-3','http://loinc.org','Coxiella burnetii DNA [Cycle Threshold #] in Specimen by NAA with probe detection','946343','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.588_79190-5','79190-5','http://loinc.org','Zika virus RNA [Presence] in Specimen by NAA with probe detection','791905','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.588_80825-3','80825-3','http://loinc.org','Zika virus envelope E gene [Presence] in Serum by NAA with probe detection','808253','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.588_80826-1','80826-1','http://loinc.org','Zika virus envelope E gene [Presence] in Cerebral spinal fluid by NAA with probe detection','808261','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.588_81148-9','81148-9','http://loinc.org','Zika virus envelope E gene [Presence] in Urine by NAA with probe detection','811489','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.588_81149-7','81149-7','http://loinc.org','Zika virus envelope E gene [Presence] in Amniotic fluid by NAA with probe detection','811497','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.588_85621-1','85621-1','http://loinc.org','Zika virus RNA [Presence] in Amniotic fluid by NAA with probe detection','856211','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.588_85622-9','85622-9','http://loinc.org','Zika virus RNA [Presence] in Serum or Plasma by NAA with probe detection','856229','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.588_85623-7','85623-7','http://loinc.org','Zika virus RNA [Presence] in Urine by NAA with probe detection','856237','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.588_86594-9','86594-9','http://loinc.org','Zika virus RNA [Presence] in Cerebral spinal fluid by NAA with probe detection','865949','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.588_90462-3','90462-3','http://loinc.org','Zika virus RNA [Presence] in Cord blood by NAA with probe detection','904623','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.588_91078-6','91078-6','http://loinc.org','Zika virus RNA [Presence] in Blood by NAA with probe detection','910786','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.588_91079-4','91079-4','http://loinc.org','Zika virus RNA [Presence] in Placenta by NAA with probe detection','910794','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2213_100909-1','100909-1','http://loinc.org','Cronobacter sakazakii [Presence] by Organism specific culture','1009091','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2213_93402-6','93402-6','http://loinc.org','Cronobacter sakazakii DNA [Presence] by NAA with probe detection in Positive blood culture','934026','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.501_44799-5','44799-5','http://loinc.org','Coxiella burnetii [Presence] in Specimen by Organism specific culture','447995','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.589_80618-2','80618-2','http://loinc.org','Zika virus IgM Ab [Units/volume] in Cerebral spinal fluid by Immunoassay','806182','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.589_80619-0','80619-0','http://loinc.org','Zika virus IgM Ab [Units/volume] in Serum or Plasma by Immunoassay','806190','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.589_80823-8','80823-8','http://loinc.org','Zika virus IgM Ab [Presence] in Cerebral spinal fluid by Immunoassay','808238','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.589_80824-6','80824-6','http://loinc.org','Zika virus IgM Ab [Presence] in Serum or Plasma by Immunoassay','808246','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.589_82731-1','82731-1','http://loinc.org','Zika virus IgM Ab [Presence] in Serum by Immunofluorescence','827311','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.589_87622-7','87622-7','http://loinc.org','Zika virus IgM Ab [Presence] in Specimen by Immunoassay','876227','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.589_89369-3','89369-3','http://loinc.org','Zika virus non-structural protein 1 IgM Ab [Units/volume] in Serum or Plasma by Immunoassay','893693','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.589_89591-2','89591-2','http://loinc.org','Zika virus IgM Ab [Titer] in Serum by Immunofluorescence','895912','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.589_91678-3','91678-3','http://loinc.org','Zika virus IgM Ab [Presence] in Serum, Plasma or Blood by Rapid immunoassay','916783','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1087_19134-6','19134-6','http://loinc.org','Neisseria meningitidis serogroup B+Escherichia coli K1 Ag [Presence] in Cerebral spinal fluid by Latex agglutination','191346','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1087_17324-5','17324-5','http://loinc.org','Neisseria meningitidis Ag [Units/volume] in Cerebral spinal fluid by Latex agglutination','173245','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1087_19133-8','19133-8','http://loinc.org','Neisseria meningitidis serogroups A+C+w135+Y Ag [Presence] in Cerebral spinal fluid by Latex agglutination','191338','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1087_59421-8','59421-8','http://loinc.org','Neisseria meningitidis serogroups A+B+C+w135+Y Ag [Presence] in Cerebral spinal fluid by Latex agglutination','594218','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1087_6494-9','6494-9','http://loinc.org','Neisseria meningitidis serogroup A Ag [Presence] in Cerebral spinal fluid by Latex agglutination','64949','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1087_6498-0','6498-0','http://loinc.org','Neisseria meningitidis serogroup B Ag [Presence] in Cerebral spinal fluid by Latex agglutination','64980','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1087_6500-3','6500-3','http://loinc.org','Neisseria meningitidis serogroup C Ag [Presence] in Cerebral spinal fluid by Latex agglutination','65003','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1087_6505-2','6505-2','http://loinc.org','Neisseria meningitidis serogroup Y Ag [Presence] in Cerebral spinal fluid by Latex agglutination','65052','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1087_6507-8','6507-8','http://loinc.org','Neisseria meningitidis serogroup w135 Ag [Presence] in Cerebral spinal fluid by Latex agglutination','65078','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1001_100126-2','100126-2','http://loinc.org','Bordetella pertussis Ab.IgG panel - Serum','1001262','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1001_34941-5','34941-5','http://loinc.org','Bordetella pertussis IgG and IgM panel - Serum','349415','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1001_41877-2','41877-2','http://loinc.org','Bordetella pertussis IgA and IgG and IgM panel [Units/volume] - Serum by Immunoassay','418772','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1001_55161-4','55161-4','http://loinc.org','Bordetella pertussis IgA and IgG panel - Serum by Immunoassay','551614','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1088_17326-0','17326-0','http://loinc.org','Neisseria meningitidis serogroup A Ag [Presence] in Cerebral spinal fluid by Immunofluorescence','173260','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1088_17329-4','17329-4','http://loinc.org','Neisseria meningitidis serogroup C Ag [Presence] in Cerebral spinal fluid by Immunofluorescence','173294','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1088_6492-3','6492-3','http://loinc.org','Neisseria meningitidis Ag [Presence] in Specimen by Immunofluorescence','64923','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1088_6493-1','6493-1','http://loinc.org','Neisseria meningitidis serogroup A Ag [Presence] in Cerebral spinal fluid by Immunoassay','64931','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1088_6495-6','6495-6','http://loinc.org','Neisseria meningitidis serogroup A Ag [Presence] in Specimen by Immunofluorescence','64956','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1088_6496-4','6496-4','http://loinc.org','Neisseria meningitidis serogroup B Ag [Presence] in Cerebral spinal fluid by Immunoassay','64964','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1088_6497-2','6497-2','http://loinc.org','Neisseria meningitidis serogroup B Ag [Presence] in Cerebral spinal fluid by Immunofluorescence','64972','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1088_6499-8','6499-8','http://loinc.org','Neisseria meningitidis serogroup C Ag [Presence] in Cerebral spinal fluid by Immunoassay','64998','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1088_6501-1','6501-1','http://loinc.org','Neisseria meningitidis serogroup C Ag [Presence] in Specimen by Immunofluorescence','65011','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1088_6503-7','6503-7','http://loinc.org','Neisseria meningitidis serogroup Y Ag [Presence] in Cerebral spinal fluid by Immunoassay','65037','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1088_6504-5','6504-5','http://loinc.org','Neisseria meningitidis serogroup Y Ag [Presence] in Cerebral spinal fluid by Immunofluorescence','65045','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1088_6506-0','6506-0','http://loinc.org','Neisseria meningitidis serogroup w135 Ag [Presence] in Cerebral spinal fluid by Immunofluorescence','65060','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1088_65763-5','65763-5','http://loinc.org','Neisseria meningitidis Ag [Presence] in Tissue by Immune stain','657635','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1539_97528-4','97528-4','http://loinc.org','Naegleria fowleri Ag [Presence] in Specimen by Immunofluorescence','975284','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.10_14479-0','14479-0','http://loinc.org','Diphtheria identified in Throat by Organism specific culture','144790','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.10_14480-8','14480-8','http://loinc.org','Diphtheria identified in Sputum by Organism specific culture','144808','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.10_14481-6','14481-6','http://loinc.org','Diphtheria identified in Nose by Organism specific culture','144816','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.10_14482-4','14482-4','http://loinc.org','Diphtheria identified in Skin by Organism specific culture','144824','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.10_14483-2','14483-2','http://loinc.org','Diphtheria identified in Bronchial specimen by Organism specific culture','144832','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.10_16676-9','16676-9','http://loinc.org','Corynebacterium diphtheriae [Presence] in Specimen by Organism specific culture','166769','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.10_567-8','567-8','http://loinc.org','Diphtheria identified in Specimen by Organism specific culture','5678','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.10_6596-1','6596-1','http://loinc.org','Diphtheria identified in Isolate by Organism specific culture','65961','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.10_88584-8','88584-8','http://loinc.org','Corynebacterium diphtheriae [Presence] in Upper respiratory specimen by Organism specific culture','885848','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2348_34952-2','34952-2','http://loinc.org','Rubella virus IgG and IgM panel - Serum','349522','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2348_34953-0','34953-0','http://loinc.org','Rubella virus IgG and IgM panel - Cerebral spinal fluid','349530','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.570_33685-9','33685-9','http://loinc.org','Yersinia pestis [Presence] in Specimen by Organism specific culture','336859','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.570_33686-7','33686-7','http://loinc.org','Yersinia pestis [Presence] in Isolate by Organism specific culture','336867','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.570_33688-3','33688-3','http://loinc.org','Yersinia pestis Ag [Presence] in Isolate by Immunofluorescence','336883','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.570_33692-5','33692-5','http://loinc.org','Yersinia pestis DNA [Presence] in Isolate by NAA with probe detection','336925','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.570_33693-3','33693-3','http://loinc.org','Yersinia pestis [Presence] in Isolate by Phage lysis','336933','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.296_67806-0','67806-0','http://loinc.org','Measles virus Ag [Presence] in Isolate by Immunofluorescence','678060','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.296_76626-1','76626-1','http://loinc.org','Measles virus [Presence] in Specimen by Organism specific culture','766261','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.296_91780-7','91780-7','http://loinc.org','Measles virus [Presence] in Lower respiratory specimen by Organism specific culture','917807','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.296_91786-4','91786-4','http://loinc.org','Measles virus [Presence] in Upper respiratory specimen by Organism specific culture','917864','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.571_33687-5','33687-5','http://loinc.org','Yersinia pestis Ag [Presence] in Specimen by Immunofluorescence','336875','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.297_48508-6','48508-6','http://loinc.org','Measles virus RNA [Presence] in Specimen by NAA with probe detection','485086','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.297_60422-3','60422-3','http://loinc.org','Measles virus genotype [Identifier] in Specimen by NAA with probe detection','604223','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.297_7964-0','7964-0','http://loinc.org','Measles virus RNA [Presence] in Nose by NAA with probe detection','79640','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.297_85798-7','85798-7','http://loinc.org','Measles virus N gene [Cycle Threshold #] in Specimen by NAA with probe detection','857987','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.297_86575-8','86575-8','http://loinc.org','Measles virus RNA [Presence] in Cerebral spinal fluid by NAA with probe detection','865758','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.297_86576-6','86576-6','http://loinc.org','Measles virus RNA [Presence] in Serum by NAA with probe detection','865766','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.297_86577-4','86577-4','http://loinc.org','Measles virus RNA [Presence] in Urine by NAA with probe detection','865774','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.297_88875-0','88875-0','http://loinc.org','Measles virus genotype A vaccine strain N gene [Presence] in Specimen by NAA with probe detection','888750','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.297_88876-8','88876-8','http://loinc.org','Measles virus genotype A vaccine strain N gene [Cycle Threshold #] in Specimen by NAA with probe detection','888768','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.297_91077-8','91077-8','http://loinc.org','Measles virus RNA [Presence] in Upper respiratory specimen by NAA with probe detection','910778','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.297_91132-1','91132-1','http://loinc.org','Measles virus RNA [Presence] in Lower respiratory specimen by NAA with probe detection','911321','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.297_104427-0','104427-0','http://loinc.org','Measles virus genotype [Identifier] in Specimen by Sequencing','1044270','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.572_33689-1','33689-1','http://loinc.org','Yersinia pestis Ab [Presence] in Serum by Hemagglutination inhibition','336891','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.572_33706-3','33706-3','http://loinc.org','Yersinia pestis Ab [Presence] in Serum','337063','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.572_45045-2','45045-2','http://loinc.org','Yersinia pestis Ab [Presence] in Specimen by Hemagglutination','450452','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.572_47518-6','47518-6','http://loinc.org','Yersinia pestis Ab [Presence] in Specimen','475186','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.298_12232-5','12232-5','http://loinc.org','Measles virus Ag [Presence] in Specimen by Immunofluorescence','122325','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.298_13328-0','13328-0','http://loinc.org','Measles virus Ag [Presence] in Serum or Plasma by Immunofluorescence','133280','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.298_14534-2','14534-2','http://loinc.org','Measles virus Ag [Presence] in Cerebral spinal fluid by Immunofluorescence','145342','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.298_14535-9','14535-9','http://loinc.org','Measles virus Ag [Presence] in Throat by Immunofluorescence','145359','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.298_14536-7','14536-7','http://loinc.org','Measles virus Ag [Presence] in Skin by Immunofluorescence','145367','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.298_14537-5','14537-5','http://loinc.org','Measles virus Ag [Presence] in Eye by Immunofluorescence','145375','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.298_14538-3','14538-3','http://loinc.org','Measles virus Ag [Presence] in Nose by Immunofluorescence','145383','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.298_14539-1','14539-1','http://loinc.org','Measles virus Ag [Presence] in Sputum by Immunofluorescence','145391','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.298_14540-9','14540-9','http://loinc.org','Measles virus Ag [Presence] in Cervix by Immunofluorescence','145409','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.298_14541-7','14541-7','http://loinc.org','Measles virus Ag [Presence] in Vaginal fluid by Immunofluorescence','145417','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.298_14542-5','14542-5','http://loinc.org','Measles virus Ag [Presence] in Urine sediment by Immunofluorescence','145425','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.298_14543-3','14543-3','http://loinc.org','Measles virus Ag [Presence] in Penis by Immunofluorescence','145433','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.298_14544-1','14544-1','http://loinc.org','Measles virus Ag [Presence] in Urethra by Immunofluorescence','145441','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.298_31875-8','31875-8','http://loinc.org','Measles virus Ag [Presence] in Cerebral spinal fluid','318758','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.298_31876-6','31876-6','http://loinc.org','Measles virus Ag [Presence] in Cervix','318766','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.298_31877-4','31877-4','http://loinc.org','Measles virus Ag [Presence] in Eye','318774','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.298_31878-2','31878-2','http://loinc.org','Measles virus Ag [Presence] in Vaginal fluid','318782','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.298_31879-0','31879-0','http://loinc.org','Measles virus Ag [Presence] in Nose','318790','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.298_31880-8','31880-8','http://loinc.org','Measles virus Ag [Presence] in Penis','318808','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.298_31881-6','31881-6','http://loinc.org','Measles virus Ag [Presence] in Serum or Plasma','318816','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.298_31882-4','31882-4','http://loinc.org','Measles virus Ag [Presence] in Skin','318824','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.298_31883-2','31883-2','http://loinc.org','Measles virus Ag [Presence] in Sputum','318832','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.298_31884-0','31884-0','http://loinc.org','Measles virus Ag [Presence] in Throat','318840','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.298_31885-7','31885-7','http://loinc.org','Measles virus Ag [Presence] in Urine sediment','318857','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.298_31886-5','31886-5','http://loinc.org','Measles virus Ag [Presence] in Urethra','318865','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.298_31887-3','31887-3','http://loinc.org','Measles virus Ag [Presence] in Specimen','318873','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.299_13283-7','13283-7','http://loinc.org','Measles virus IgM Ab [Units/volume] in Cerebral spinal fluid','132837','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.299_21502-0','21502-0','http://loinc.org','Measles virus IgM Ab [Titer] in Cerebral spinal fluid by Immunofluorescence','215020','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.299_21503-8','21503-8','http://loinc.org','Measles virus IgM Ab [Presence] in Serum','215038','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.299_22505-2','22505-2','http://loinc.org','Measles virus IgM Ab [Titer] in Cerebral spinal fluid','225052','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.299_22506-0','22506-0','http://loinc.org','Measles virus IgM Ab [Titer] in Serum','225060','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.299_25421-9','25421-9','http://loinc.org','Measles virus IgM Ab [Units/volume] in Serum by Immunoassay','254219','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.299_35276-5','35276-5','http://loinc.org','Measles virus IgM Ab [Presence] in Serum by Immunoassay','352765','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.299_40649-6','40649-6','http://loinc.org','Measles virus IgM Ab [Units/volume] in Cerebral spinal fluid by Immunoassay','406496','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.299_5245-6','5245-6','http://loinc.org','Measles virus IgM Ab [Titer] in Serum by Immunofluorescence','52456','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.299_53537-7','53537-7','http://loinc.org','Measles virus IgM Ab [Presence] in Body fluid by Immunoassay','535377','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.299_74416-9','74416-9','http://loinc.org','Measles virus IgM Ab [Units/volume] in Body fluid by Immunoassay','744169','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.299_74417-7','74417-7','http://loinc.org','Measles virus IgM Ab [Presence] in Cerebral spinal fluid by Immunoassay','744177','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.299_7963-2','7963-2','http://loinc.org','Measles virus IgM Ab [Units/volume] in Serum','79632','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.299_104429-6','104429-6','http://loinc.org','Measles virus IgM Ab [Ratio] in Serum by Immunoassay','1044296','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2347_100734-3','100734-3','http://loinc.org','traMADol and Metabolites Panel - Urine by Confirmatory method','1007343','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2347_101401-8','101401-8','http://loinc.org','Tapentadol and Nortapentadol panel - Urine','1014018','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2347_58953-1','58953-1','http://loinc.org','Meperidine and Normeperidine panel - Urine','589531','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2347_67822-7','67822-7','http://loinc.org','fentaNYL and Norfentanyl panel - Urine','678227','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2347_68314-4','68314-4','http://loinc.org','Meperidine and Normeperidine panel - Serum or Plasma','683144','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2347_69026-3','69026-3','http://loinc.org','Opiates panel - Meconium by Confirmatory method','690263','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2347_69033-9','69033-9','http://loinc.org','Buprenorphine and Norbuprenorphine panel - Urine','690339','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2347_72476-5','72476-5','http://loinc.org','Methadone panel - Saliva (oral fluid) by Confirmatory method','724765','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2347_73661-1','73661-1','http://loinc.org','Methadone panel - Saliva (oral fluid) by Screen method','736611','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2347_74760-0','74760-0','http://loinc.org','HYDROcodone and metabolites panel - Urine by Confirmatory method','747600','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2347_81273-5','81273-5','http://loinc.org','fentaNYL and Norfentanyl panel - Specimen','812735','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2347_81275-0','81275-0','http://loinc.org','fentaNYL and Norfentanyl panel - Serum or Plasma','812750','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2347_81277-6','81277-6','http://loinc.org','fentaNYL and Norfentanyl panel - Gastric fluid','812776','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2347_81278-4','81278-4','http://loinc.org','Meperidine and Normeperidine panel - Gastric fluid','812784','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2347_81279-2','81279-2','http://loinc.org','Meperidine and Normeperidine panel - Specimen','812792','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2347_93474-5','93474-5','http://loinc.org','Synthetic opioids panel - Urine by Confirmatory method','934745','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2347_94304-3','94304-3','http://loinc.org','OxyCODONE and metabolites panel - Urine by Confirmatory method','943043','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2347_94305-0','94305-0','http://loinc.org','OxyMORphone and Noroxymorphone panel - Urine by Confirmatory method','943050','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2347_95796-9','95796-9','http://loinc.org','Opioids panel - Urine by Screen method','957969','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2347_96602-8','96602-8','http://loinc.org','Methadone and EDDP panel - Serum or Plasma','966028','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.697_33694-1','33694-1','http://loinc.org','Clostridium botulinum [Presence] in Specimen by Organism specific culture','336941','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.697_33695-8','33695-8','http://loinc.org','Clostridium botulinum [Presence] in Isolate by Organism specific culture','336958','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.697_87948-6','87948-6','http://loinc.org','Clostridium botulinum [Presence] in Stool by Organism specific culture','879486','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2344_104376-9','104376-9','http://loinc.org','Diphtheria toxin DNA [Presence] in Specimen by NAA with probe detection','1043769','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.215_31737-0','31737-0','http://loinc.org','Bordetella pertussis Ag [Presence] in Specimen','317370','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.215_38198-8','38198-8','http://loinc.org','Bordetella pertussis Ag [Presence] in Nasopharynx by Immunofluorescence','381988','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.215_43891-1','43891-1','http://loinc.org','Bordetella pertussis Ag [Presence] in Sputum by Immunofluorescence','438911','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.215_43909-1','43909-1','http://loinc.org','Bordetella pertussis Ag [Presence] in Nasopharynx','439091','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.215_550-4','550-4','http://loinc.org','Bordetella pertussis Ag [Presence] in Specimen by Immunofluorescence','5504','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.216_104331-4','104331-4','http://loinc.org','Bordetella pertussis IgA Ab [Titer] in Serum by Immunoassay --1st specimen','1043314','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.216_104332-2','104332-2','http://loinc.org','Bordetella pertussis IgA Ab [Titer] in Serum by Immunoassay --2nd specimen','1043322','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.216_11585-7','11585-7','http://loinc.org','Bordetella pertussis Ab [Units/volume] in Serum','115857','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.216_16474-9','16474-9','http://loinc.org','Bordetella pertussis Ab [Units/volume] in Serum by Complement fixation','164749','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.216_20992-4','20992-4','http://loinc.org','Bordetella pertussis Ab [Presence] in Specimen','209924','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.216_22116-8','22116-8','http://loinc.org','Bordetella pertussis Ab [Titer] in Serum','221168','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.216_22117-6','22117-6','http://loinc.org','Bordetella pertussis Ab [Titer] in Specimen','221176','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.216_23827-9','23827-9','http://loinc.org','Bordetella pertussis filamentous hemagglutinin IgA Ab [Units/volume] in Serum','238279','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.216_23828-7','23828-7','http://loinc.org','Bordetella pertussis filamentous hemagglutinin IgG Ab [Units/volume] in Serum','238287','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.216_23829-5','23829-5','http://loinc.org','Bordetella pertussis filamentous hemagglutinin IgM Ab [Units/volume] in Serum','238295','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.216_24033-3','24033-3','http://loinc.org','Bordetella pertussis filamentous hemagglutinin IgG Ab [Units/volume] in Serum by Immunoassay','240333','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.216_24034-1','24034-1','http://loinc.org','Bordetella pertussis filamentous hemagglutinin IgA Ab [Units/volume] in Serum by Immunoassay','240341','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.216_24035-8','24035-8','http://loinc.org','Bordetella pertussis filamentous hemagglutinin IgM Ab [Units/volume] in Serum by Immunoassay','240358','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.216_24130-7','24130-7','http://loinc.org','Bordetella pertussis secretory IgA Ab [Presence] in Specimen by Immunoassay','241307','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.216_25331-0','25331-0','http://loinc.org','Bordetella pertussis IgG Ab [Titer] in Serum','253310','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.216_25332-8','25332-8','http://loinc.org','Bordetella pertussis IgM Ab [Titer] in Serum','253328','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.216_25352-6','25352-6','http://loinc.org','Bordetella pertussis IgG Ab [Titer] in Serum by Immunofluorescence','253526','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.216_25353-4','25353-4','http://loinc.org','Bordetella pertussis IgM Ab [Titer] in Serum by Immunofluorescence','253534','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.216_29657-4','29657-4','http://loinc.org','Bordetella pertussis IgA Ab [Presence] in Serum by Immunoassay','296574','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.216_29658-2','29658-2','http://loinc.org','Bordetella pertussis IgM Ab [Presence] in Serum by Immunoassay','296582','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.216_29659-0','29659-0','http://loinc.org','Bordetella pertussis IgG Ab [Presence] in Serum by Immunoassay','296590','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.216_29672-3','29672-3','http://loinc.org','Bordetella pertussis IgA Ab [Presence] in Serum','296723','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.216_29673-1','29673-1','http://loinc.org','Bordetella pertussis IgM Ab [Presence] in Serum','296731','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.216_29674-9','29674-9','http://loinc.org','Bordetella pertussis IgG Ab [Presence] in Serum','296749','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.216_31266-0','31266-0','http://loinc.org','Bordetella pertussis Ab [Units/volume] in Specimen','312660','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.216_31267-8','31267-8','http://loinc.org','Bordetella pertussis secretory IgA Ab [Presence] in Specimen','312678','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.216_31998-8','31998-8','http://loinc.org','Bordetella pertussis Ab [Presence] in Serum','319988','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.216_42328-5','42328-5','http://loinc.org','Bordetella pertussis IgA Ab [Units/volume] in Serum by Immunoassay','423285','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.216_42329-3','42329-3','http://loinc.org','Bordetella pertussis IgM Ab [Units/volume] in Serum by Immunoassay','423293','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.216_42330-1','42330-1','http://loinc.org','Bordetella pertussis IgG Ab [Units/volume] in Serum by Immunoassay','423301','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.216_43381-3','43381-3','http://loinc.org','Bordetella pertussis Ab [Presence] in Specimen by Immunofluorescence','433813','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.216_43880-4','43880-4','http://loinc.org','Bordetella pertussis filamentous hemagglutinin IgA Ab [Presence] in Serum','438804','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.216_43881-2','43881-2','http://loinc.org','Bordetella pertussis filamentous hemagglutinin IgG Ab [Presence] in Serum','438812','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.216_43882-0','43882-0','http://loinc.org','Bordetella pertussis filamentous hemagglutinin IgM Ab [Presence] in Serum','438820','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.216_44046-1','44046-1','http://loinc.org','Bordetella pertussis Higashi-Hama Ab [Units/volume] in Serum','440461','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.216_44047-9','44047-9','http://loinc.org','Bordetella pertussis Yamaguchi Ab [Presence] in Serum','440479','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.216_46253-1','46253-1','http://loinc.org','Bordetella pertussis filamentous hemagglutinin IgG Ab [Units/volume] in Serum by Immunofluorescence','462531','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.216_5059-1','5059-1','http://loinc.org','Bordetella pertussis Ab [Units/volume] in Serum by Immunoassay','50591','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.216_6314-9','6314-9','http://loinc.org','Bordetella pertussis Ab [Titer] in Specimen by Immunofluorescence','63149','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.216_6315-6','6315-6','http://loinc.org','Bordetella pertussis Ab [Titer] in Serum by Agglutination','63156','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.216_6316-4','6316-4','http://loinc.org','Bordetella pertussis Ab [Titer] in Serum by Complement fixation','63164','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.216_69366-3','69366-3','http://loinc.org','Bordetella pertussis IgA Ab [Presence] in Serum by Immunoblot','693663','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.216_69367-1','69367-1','http://loinc.org','Bordetella pertussis IgG Ab [Presence] in Serum by Immunoblot','693671','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.216_69368-9','69368-9','http://loinc.org','Bordetella pertussis IgM Ab [Presence] in Serum by Immunoblot','693689','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.216_9362-5','9362-5','http://loinc.org','Bordetella pertussis IgA Ab [Units/volume] in Serum','93625','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.216_9363-3','9363-3','http://loinc.org','Bordetella pertussis IgG Ab [Units/volume] in Serum','93633','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.216_9364-1','9364-1','http://loinc.org','Bordetella pertussis IgM Ab [Units/volume] in Serum','93641','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.613_81154-7','81154-7','http://loinc.org','Dengue and Chikungunya and Zika virus panel by NAA with probe detection','811547','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.614_104334-8','104334-8','http://loinc.org','Bordetella pertussis.pertussis toxin IgG Ab [Titer] in Serum by Immunoassay --1st specimen','1043348','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.614_104335-5','104335-5','http://loinc.org','Bordetella pertussis.pertussis toxin IgG Ab [Titer] in Serum by Immunoassay --2nd specimen','1043355','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.614_23830-3','23830-3','http://loinc.org','Bordetella pertussis.pertussis toxin IgA Ab [Units/volume] in Serum','238303','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.614_23831-1','23831-1','http://loinc.org','Bordetella pertussis.pertussis toxin IgG Ab [Units/volume] in Serum','238311','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.614_23832-9','23832-9','http://loinc.org','Bordetella pertussis.pertussis toxin IgM Ab [Units/volume] in Serum','238329','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.614_24127-3','24127-3','http://loinc.org','Bordetella pertussis.pertussis toxin IgG Ab [Units/volume] in Serum by Immunoassay','241273','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.614_24128-1','24128-1','http://loinc.org','Bordetella pertussis.pertussis toxin IgA Ab [Units/volume] in Serum by Immunoassay','241281','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.614_24129-9','24129-9','http://loinc.org','Bordetella pertussis.pertussis toxin IgM Ab [Units/volume] in Serum by Immunoassay','241299','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.614_33268-4','33268-4','http://loinc.org','Bordetella pertussis.pertussis toxin IgG Ab [Mass/volume] in Serum','332684','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.614_46254-9','46254-9','http://loinc.org','Bordetella pertussis.pertussis toxin IgG Ab [Units/volume] in Serum by Immunofluorescence','462549','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.614_69755-7','69755-7','http://loinc.org','Bordetella pertussis.pertussis toxin IgG Ab [Presence] in Serum by Line blot','697557','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.614_74765-9','74765-9','http://loinc.org','Bordetella pertussis.pertussis toxin IgA Ab [Presence] in Serum by Line blot','747659','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.614_74766-7','74766-7','http://loinc.org','Bordetella pertussis.pertussis toxin 100 IgG Ab [Presence] in Serum by Line blot','747667','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.614_85684-9','85684-9','http://loinc.org','Bordetella pertussis.pertussis toxin IgG Ab [Presence] in Serum by Immunoassay','856849','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.847_33964-8','33964-8','http://loinc.org','SARS coronavirus Urbani RNA [Presence] in Specimen by NAA with probe detection','339648','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.847_33965-5','33965-5','http://loinc.org','SARS coronavirus Urbani RNA [Presence] in Stool by NAA with probe detection','339655','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.847_33966-3','33966-3','http://loinc.org','SARS coronavirus Urbani RNA [Presence] in Nose by NAA with probe detection','339663','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.847_33967-1','33967-1','http://loinc.org','SARS coronavirus Urbani RNA [Presence] in Serum or Plasma by NAA with probe detection','339671','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.847_33975-4','33975-4','http://loinc.org','SARS coronavirus Urbani RNA [Presence] in Sputum by NAA with probe detection','339754','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.847_41458-1','41458-1','http://loinc.org','SARS coronavirus RNA [Presence] in Specimen by NAA with probe detection','414581','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.847_60534-5','60534-5','http://loinc.org','SARS coronavirus RNA [Presence] in Serum or Plasma by NAA with probe detection','605345','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.847_94310-0','94310-0','http://loinc.org','SARS-related coronavirus N gene [Presence] in Specimen by Nucleic acid amplification using CDC primer-probe set N3','943100','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.847_94313-4','94313-4','http://loinc.org','SARS-related coronavirus N gene [Cycle Threshold #] in Specimen by Nucleic acid amplification using CDC primer-probe set N3','943134','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.847_94315-9','94315-9','http://loinc.org','SARS-related coronavirus E gene [Presence] in Specimen by NAA with probe detection','943159','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.847_94502-2','94502-2','http://loinc.org','SARS-related coronavirus RNA [Presence] in Respiratory system specimen by NAA with probe detection','945022','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.847_94509-7','94509-7','http://loinc.org','SARS-related coronavirus E gene [Cycle Threshold #] in Specimen by NAA with probe detection','945097','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.847_94532-9','94532-9','http://loinc.org','SARS-related coronavirus+MERS coronavirus RNA [Presence] in Respiratory system specimen by NAA with probe detection','945329','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.847_94647-5','94647-5','http://loinc.org','SARS-related coronavirus RNA [Presence] in Specimen by NAA with probe detection','946475','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.847_94758-0','94758-0','http://loinc.org','SARS-related coronavirus E gene [Presence] in Respiratory system specimen by NAA with probe detection','947580','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.847_94765-5','94765-5','http://loinc.org','SARS-related coronavirus E gene [Presence] in Serum or Plasma by NAA with probe detection','947655','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.847_95823-1','95823-1','http://loinc.org','SARS-related coronavirus E gene [Presence] in Saliva (oral fluid) by NAA with probe detection','958231','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.847_96121-9','96121-9','http://loinc.org','SARS-related coronavirus E gene [Presence] in Lower respiratory specimen by NAA with probe detection','961219','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.847_96122-7','96122-7','http://loinc.org','SARS-related coronavirus E gene [Presence] in Upper respiratory specimen by NAA with probe detection','961227','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.960_33690-9','33690-9','http://loinc.org','Yersinia pestis Ab [Titer] in Serum by Immunoassay','336909','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.960_33707-1','33707-1','http://loinc.org','Yersinia pestis Ab [Titer] in Serum','337071','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.840_46244-0','46244-0','http://loinc.org','Mycobacterium tuberculosis complex rpoB gene rifAMPin resistance mutation identified by Molecular method','462440','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.840_46245-7','46245-7','http://loinc.org','Mycobacterium tuberculosis pncA gene pyrazinamide resistance mutation [Identifier] by Molecular method','462457','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.840_46246-5','46246-5','http://loinc.org','Mycobacterium tuberculosis katG gene isoniazid high level resistance mutation [Identifier] by Molecular method','462465','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.840_46247-3','46247-3','http://loinc.org','Mycobacterium tuberculosis embB gene ethambutol resistance mutation [Identifier] by Molecular method','462473','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.840_48175-4','48175-4','http://loinc.org','Mycobacterium tuberculosis katG + inhA gene isoniazid resistance mutation [Presence] by Molecular method','481754','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.840_63072-3','63072-3','http://loinc.org','Mycobacterium tuberculosis inhA gene isoniazid low level resistance mutation [Presence] by Molecular method','630723','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.840_72276-9','72276-9','http://loinc.org','Mycobacterium tuberculosis gyrA gene fluoroquinolone resistance mutation [Presence] by Molecular method','722769','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.840_72864-2','72864-2','http://loinc.org','Mycobacterium tuberculosis rpsL+rrs genes aminoglycoside resistance mutation [Presence] by Molecular method','728642','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.840_72865-9','72865-9','http://loinc.org','Mycobacterium tuberculosis ethB gene ethionamide resistance mutation [Presence] by Molecular method','728659','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.840_72866-7','72866-7','http://loinc.org','Mycobacterium tuberculosis ethA gene ethionamide resistance mutation [Presence] by Molecular method','728667','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.840_72867-5','72867-5','http://loinc.org','Mycobacterium tuberculosis gyrB gene fluoroquinolone resistance mutation [Presence] by Molecular method','728675','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.840_89372-7','89372-7','http://loinc.org','Mycobacterium tuberculosis complex rpoB gene rifAMPin resistance mutation [Presence] by Molecular method','893727','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.840_35352-4','35352-4','http://loinc.org','Mycobacterium tuberculosis genotype [Identifier] in Isolate','353524','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.840_42717-9','42717-9','http://loinc.org','Mycobacterium tuberculosis complex genotype [Identifier] in Isolate','427179','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.840_83066-1','83066-1','http://loinc.org','Mycobacterium tuberculosis complex immunogenic protein MPB64 [Presence] in Isolate by Immunoassay','830661','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.840_88874-3','88874-3','http://loinc.org','Mycobacterium tuberculosis complex DNA [Presence] in Isolate or Specimen by Molecular genetics method','888743','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.840_94576-6','94576-6','http://loinc.org','Mycobacterium tuberculosis complex species identified in Isolate by NAA with probe detection','945766','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.324_65763-5','65763-5','http://loinc.org','Neisseria meningitidis Ag [Presence] in Tissue by Immune stain','657635','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.600_13956-8','13956-8','http://loinc.org','Mycobacterium tuberculosis DNA [Presence] in Specimen by NAA with probe detection','139568','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.600_14556-5','14556-5','http://loinc.org','Mycobacterium tuberculosis DNA [Presence] in Sputum by NAA with probe detection','145565','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.600_14557-3','14557-3','http://loinc.org','Mycobacterium tuberculosis DNA [Presence] in Bronchial specimen by NAA with probe detection','145573','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.600_14558-1','14558-1','http://loinc.org','Mycobacterium tuberculosis DNA [Presence] in Gastric fluid by NAA with probe detection','145581','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.600_14559-9','14559-9','http://loinc.org','Mycobacterium tuberculosis DNA [Presence] in Pleural fluid by NAA with probe detection','145599','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.600_14560-7','14560-7','http://loinc.org','Mycobacterium tuberculosis DNA [Presence] in Urine by NAA with probe detection','145607','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.600_14561-5','14561-5','http://loinc.org','Mycobacterium tuberculosis DNA [Presence] in Cerebral spinal fluid by NAA with probe detection','145615','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.600_14562-3','14562-3','http://loinc.org','Mycobacterium tuberculosis DNA [Presence] in Semen by NAA with probe detection','145623','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.600_16278-4','16278-4','http://loinc.org','Mycobacterium tuberculosis DNA [Presence] in Blood by NAA with probe detection','162784','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.600_17296-5','17296-5','http://loinc.org','Mycobacterium tuberculosis complex rRNA [Presence] in Specimen by Probe','172965','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.600_33634-7','33634-7','http://loinc.org','Mycobacterium tuberculosis rifAMPin resistance gene [Identifier] in Sputum by NAA with probe detection','336347','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.600_38379-4','38379-4','http://loinc.org','Mycobacterium tuberculosis complex DNA [Presence] in Specimen by NAA with probe detection','383794','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.600_48174-7','48174-7','http://loinc.org','Mycobacterium tuberculosis complex rRNA [Presence] in Specimen by NAA with probe detection','481747','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.600_5027-8','5027-8','http://loinc.org','Mycobacterium tuberculosis rRNA [Presence] in Specimen by Probe','50278','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.600_53257-2','53257-2','http://loinc.org','Mycobacterium tuberculosis DNA [#/volume] in Specimen by NAA with probe detection','532572','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.600_58931-7','58931-7','http://loinc.org','Mycobacterium tuberculosis DNA [Presence] in Body fluid by NAA with probe detection','589317','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.600_78357-1','78357-1','http://loinc.org','Mycobacterium tuberculosis DNA [Presence] in Bronchoalveolar lavage by NAA with probe detection','783571','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.600_85362-2','85362-2','http://loinc.org','Mycobacterium tuberculosis complex DNA [Presence] in Sputum or Bronchial by NAA with probe detection','853622','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.600_88165-6','88165-6','http://loinc.org','Mycobacterium tuberculosis DNA [Presence] in Cornea or Conjunctiva by NAA with probe detection','881656','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.600_88166-4','88166-4','http://loinc.org','Mycobacterium tuberculosis DNA [Presence] in Ocular fluid by NAA with probe detection','881664','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.600_90283-3','90283-3','http://loinc.org','Mycobacterium tuberculosis DNA [Presence] in Bile fluid by NAA with probe detection','902833','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.600_91763-3','91763-3','http://loinc.org','Mycobacterium tuberculosis DNA [Presence] in Aspirate by NAA with probe detection','917633','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.600_91829-2','91829-2','http://loinc.org','Mycobacterium tuberculosis DNA [Presence] in Lower respiratory specimen by NAA with probe detection','918292','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.600_92827-5','92827-5','http://loinc.org','Mycobacterium tuberculosis complex species identified in Specimen by Sequencing','928275','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.569_101363-0','101363-0','http://loinc.org','Yersinia pestis DNA [Presence] in Blood by NAA with non-probe detection','1013630','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.569_101371-3','101371-3','http://loinc.org','Yersinia pestis DNA [Presence] by NAA with non-probe detection in Positive blood culture','1013713','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.569_101372-1','101372-1','http://loinc.org','Yersinia pestis DNA [Presence] in Sputum by NAA with non-probe detection','1013721','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.569_33691-7','33691-7','http://loinc.org','Yersinia pestis DNA [Presence] in Specimen by NAA with probe detection','336917','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.966_88186-2','88186-2','http://loinc.org','Ebola and Marburg virus RNA Panel - Blood by NAA with probe detection','881862','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.846_60275-5','60275-5','http://loinc.org','SARS coronavirus RNA [Presence] in Isolate by NAA with probe detection','602755','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.846_77106-3','77106-3','http://loinc.org','SARS2 gene full mutation analysis in Blood or Tissue by Sequencing','771063','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1151_11581-6','11581-6','http://loinc.org','Ebola virus Ab [Units/volume] in Serum','115816','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1151_11607-9','11607-9','http://loinc.org','Junin virus Ab [Units/volume] in Serum','116079','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1151_22263-8','22263-8','http://loinc.org','Ebola virus Ab [Titer] in Serum','222638','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1151_22371-9','22371-9','http://loinc.org','Junin virus Ab [Presence] in Serum','223719','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1151_7862-6','7862-6','http://loinc.org','Ebola virus Ab [Titer] in Serum by Immunofluorescence','78626','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1151_7937-6','7937-6','http://loinc.org','Junin virus Ab [Presence] in Serum by Immunoassay','79376','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.552_6528-4','6528-4','http://loinc.org','Rabies virus Ag [Presence] in Tissue by Immunofluorescence','65284','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.552_6529-2','6529-2','http://loinc.org','Rabies virus Ag [Units/volume] in Tissue by Immunofluorescence','65292','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.552_6532-6','6532-6','http://loinc.org','Rabies virus Ag [Presence] in Specimen by Immunofluorescence','65326','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.552_6533-4','6533-4','http://loinc.org','Rabies virus Ag [Units/volume] in Specimen by Immunofluorescence','65334','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1795_94053-6','94053-6','http://loinc.org','Mycobacterium tuberculosis complex resistance panel by Molecular genetics method','940536','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.313_6548-2','6548-2','http://loinc.org','Rubella virus identified in Serum by Organism specific culture','65482','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.555_103722-5','103722-5','http://loinc.org','Yellow fever virus RNA [Presence] in Blood by NAA with non-probe detection','1037225','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.555_77959-5','77959-5','http://loinc.org','Yellow fever virus ns5 gene [Presence] in Cerebral spinal fluid by NAA with non-probe detection','779595','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.555_8057-2','8057-2','http://loinc.org','Yellow fever virus RNA [Presence] in Serum by NAA with probe detection','80572','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.555_90459-9','90459-9','http://loinc.org','Yellow fever virus RNA [Presence] in Blood by NAA with probe detection','904599','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.555_94184-9','94184-9','http://loinc.org','Yellow fever virus RNA [Presence] in Specimen by NAA with probe detection','941849','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.830_22446-9','22446-9','http://loinc.org','Polio virus 1 Ab [Titer] in Serum','224469','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.830_22448-5','22448-5','http://loinc.org','Polio virus 2 Ab [Titer] in Serum','224485','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.830_22450-1','22450-1','http://loinc.org','Polio virus 3 Ab [Titer] in Serum','224501','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.830_24169-5','24169-5','http://loinc.org','Polio virus 1 neutralizing antibody [Titer] in Serum by Neutralization test --1st specimen','241695','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.830_24170-3','24170-3','http://loinc.org','Polio virus 1 neutralizing antibody [Titer] in Serum by Neutralization test --2nd specimen','241703','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.830_24171-1','24171-1','http://loinc.org','Polio virus 2 neutralizing antibody [Titer] in Serum by Neutralization test --1st specimen','241711','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.830_24172-9','24172-9','http://loinc.org','Polio virus 2 neutralizing antibody [Titer] in Serum by Neutralization test --2nd specimen','241729','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.830_24173-7','24173-7','http://loinc.org','Polio virus 3 neutralizing antibody [Titer] in Serum by Neutralization test --1st specimen','241737','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.830_24174-5','24174-5','http://loinc.org','Polio virus 3 neutralizing antibody [Titer] in Serum by Neutralization test --2nd specimen','241745','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.830_24243-8','24243-8','http://loinc.org','Polio virus 1 Ab [Titer] in Serum --1st specimen','242438','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.830_24244-6','24244-6','http://loinc.org','Polio virus 1 Ab [Titer] in Serum --2nd specimen','242446','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.830_24245-3','24245-3','http://loinc.org','Polio virus 2 Ab [Titer] in Serum --1st specimen','242453','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.830_24246-1','24246-1','http://loinc.org','Polio virus 2 Ab [Titer] in Serum --2nd specimen','242461','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.830_24247-9','24247-9','http://loinc.org','Polio virus 3 Ab [Titer] in Serum --1st specimen','242479','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.830_24248-7','24248-7','http://loinc.org','Polio virus 3 Ab [Titer] in Serum --2nd specimen','242487','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.830_27261-7','27261-7','http://loinc.org','Polio virus Ab [Titer] in Serum by Complement fixation','272617','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.830_40708-0','40708-0','http://loinc.org','Polio virus IgG Ab [Titer] in Serum --2nd specimen','407080','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.830_40781-7','40781-7','http://loinc.org','Polio virus IgM Ab [Titer] in Serum --1st specimen','407817','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.830_42980-3','42980-3','http://loinc.org','Polio virus Ab [Titer] in Serum','429803','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.830_5281-1','5281-1','http://loinc.org','Polio virus 1 neutralizing antibody [Titer] in Serum by Neutralization test','52811','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.830_5282-9','5282-9','http://loinc.org','Polio virus 1 Ab [Titer] in Serum by Complement fixation','52829','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.830_5283-7','5283-7','http://loinc.org','Polio virus 2 neutralizing antibody [Titer] in Serum by Neutralization test','52837','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.830_5284-5','5284-5','http://loinc.org','Polio virus 2 Ab [Titer] in Serum by Complement fixation','52845','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.830_5285-2','5285-2','http://loinc.org','Polio virus 3 neutralizing antibody [Titer] in Serum by Neutralization test','52852','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.830_5286-0','5286-0','http://loinc.org','Polio virus 3 Ab [Titer] in Serum by Complement fixation','52860','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.314_54091-4','54091-4','http://loinc.org','Rubella virus RNA [Presence] in Specimen by NAA with probe detection','540914','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.314_60274-8','60274-8','http://loinc.org','Rubella virus RNA [Presence] in Serum or Plasma by NAA with probe detection','602748','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.314_85690-6','85690-6','http://loinc.org','Rubella virus genotype in Specimen','856906','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.314_85796-1','85796-1','http://loinc.org','Rubella virus E1 gene [Cycle Threshold #] in Specimen by NAA with probe detection','857961','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.314_86589-9','86589-9','http://loinc.org','Rubella virus RNA [Presence] in Urine by NAA with probe detection','865899','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.314_91792-2','91792-2','http://loinc.org','Rubella virus RNA [Presence] in Upper respiratory specimen by NAA with probe detection','917922','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.314_91823-5','91823-5','http://loinc.org','Rubella virus RNA [Presence] in Lower respiratory specimen by NAA with probe detection','918235','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.316_104446-0','104446-0','http://loinc.org','Rubella virus IgM Ab index [Units/volume] in Serum and CSF','1044460','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.316_13282-9','13282-9','http://loinc.org','Rubella virus IgM Ab [Units/volume] in Cerebral spinal fluid','132829','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.316_17552-1','17552-1','http://loinc.org','Rubella virus IgM Ab [Presence] in Cerebral spinal fluid','175521','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.316_24116-6','24116-6','http://loinc.org','Rubella virus IgM Ab [Presence] in Serum or Plasma by Immunoassay','241166','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.316_25420-1','25420-1','http://loinc.org','Rubella virus IgM Ab [Presence] in Serum by Latex agglutination','254201','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.316_31047-4','31047-4','http://loinc.org','Rubella virus IgM Ab [Units/volume] in Body fluid','310474','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.316_31616-6','31616-6','http://loinc.org','Rubella virus IgM Ab [Presence] in Serum','316166','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.316_40669-4','40669-4','http://loinc.org','Rubella virus IgM Ab [Presence] in Cerebral spinal fluid by Immunoassay','406694','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.316_46109-5','46109-5','http://loinc.org','Rubella virus IgM Ab [Titer] in Cerebral spinal fluid','461095','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.316_49107-6','49107-6','http://loinc.org','Rubella virus IgM Ab [Titer] in Serum','491076','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.316_5335-5','5335-5','http://loinc.org','Rubella virus IgM Ab [Units/volume] in Serum by Immunoassay','53355','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.316_69765-6','69765-6','http://loinc.org','Rubella virus IgM Ab [Presence] in Body fluid by Immunoassay','697656','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.316_8015-0','8015-0','http://loinc.org','Rubella virus IgM Ab [Units/volume] in Serum','80150','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.946_60270-6','60270-6','http://loinc.org','Rabies virus RNA [Presence] in Isolate by NAA with probe detection','602706','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.946_6536-7','6536-7','http://loinc.org','Rabies virus identified in Tissue by Organism specific culture','65367','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.946_6539-1','6539-1','http://loinc.org','Rabies virus identified in Specimen by Organism specific culture','65391','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.829_53645-8','53645-8','http://loinc.org','Polio virus identified in Stool by Organism specific culture','536458','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.829_60546-9','60546-9','http://loinc.org','Polio virus identified [Type] in Isolate by Organism specific culture','605469','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.829_73907-8','73907-8','http://loinc.org','Polio virus identified in Specimen by Organism specific culture','739078','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.262_47532-7','47532-7','http://loinc.org','Mumps virus RNA [Presence] in Specimen by NAA with probe detection','475327','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.262_53603-7','53603-7','http://loinc.org','Mumps virus RNA [Presence] in Serum by NAA with probe detection','536037','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.262_7968-1','7968-1','http://loinc.org','Mumps virus RNA [Presence] in Cerebral spinal fluid by NAA with probe detection','79681','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.262_85800-1','85800-1','http://loinc.org','Mumps virus SH gene [Cycle Threshold #] in Specimen by NAA with probe detection','858001','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.262_85807-6','85807-6','http://loinc.org','Mumps virus genotype in Specimen','858076','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.262_86580-8','86580-8','http://loinc.org','Mumps virus RNA [Presence] in Urine by NAA with probe detection','865808','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.262_91806-0','91806-0','http://loinc.org','Mumps virus RNA [Presence] in Upper respiratory specimen by NAA with probe detection','918060','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.262_93749-0','93749-0','http://loinc.org','Mumps virus N gene [Cycle Threshold #] in Specimen by NAA with probe detection','937490','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.782_34952-2','34952-2','http://loinc.org','Rubella virus IgG and IgM panel - Serum','349522','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.782_34953-0','34953-0','http://loinc.org','Rubella virus IgG and IgM panel - Cerebral spinal fluid','349530','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.782_92929-9','92929-9','http://loinc.org','Measles, Mumps and Rubella virus IgG panel [Units/volume] - Serum or Plasma','929299','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.266_13921-2','13921-2','http://loinc.org','Mumps virus [Presence] in Specimen by Organism specific culture','139212','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.266_67807-8','67807-8','http://loinc.org','Mumps virus Ag [Presence] in Isolate by Immunofluorescence','678078','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.266_91787-2','91787-2','http://loinc.org','Mumps virus [Presence] in Upper respiratory specimen by Organism specific culture','917872','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1289_70851-1','70851-1','http://loinc.org','Burkholderia pseudomallei [Presence] in Specimen by Organism specific culture','708511','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.268_13267-0','13267-0','http://loinc.org','Mumps virus IgM Ab [Units/volume] in Cerebral spinal fluid','132670','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.268_21402-3','21402-3','http://loinc.org','Mumps virus IgM Ab [Titer] in Cerebral spinal fluid by Immunofluorescence','214023','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.268_22418-8','22418-8','http://loinc.org','Mumps virus IgM Ab [Presence] in Serum','224188','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.268_22419-6','22419-6','http://loinc.org','Mumps virus IgM Ab [Titer] in Cerebral spinal fluid','224196','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.268_22420-4','22420-4','http://loinc.org','Mumps virus IgM Ab [Titer] in Serum','224204','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.268_25419-3','25419-3','http://loinc.org','Mumps virus IgM Ab [Units/volume] in Serum by Immunoassay','254193','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.268_40738-7','40738-7','http://loinc.org','Mumps virus IgM Ab [Presence] in Cerebral spinal fluid by Immunoassay','407387','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.268_41131-4','41131-4','http://loinc.org','Mumps virus IgM Ab [Presence] in Cerebral spinal fluid','411314','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.268_6478-2','6478-2','http://loinc.org','Mumps virus IgM Ab [Presence] in Serum by Immunoassay','64782','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.268_6479-0','6479-0','http://loinc.org','Mumps virus IgM Ab [Titer] in Serum by Immunofluorescence','64790','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.268_69766-4','69766-4','http://loinc.org','Mumps virus IgM Ab [Presence] in Body fluid by Immunoassay','697664','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.268_74421-9','74421-9','http://loinc.org','Mumps virus IgM Ab [Units/volume] in Body fluid by Immunoassay','744219','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.268_7967-3','7967-3','http://loinc.org','Mumps virus IgM Ab [Units/volume] in Serum','79673','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.268_17293-2','17293-2','http://loinc.org','Mumps virus IgG+IgM Ab [Units/volume] in Serum','172932','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_10976-9','10976-9','http://loinc.org','6-Monoacetylmorphine (6-MAM) [Presence] in Urine','109769','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_10998-3','10998-3','http://loinc.org','oxyCODONE [Presence] in Urine','109983','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_11235-9','11235-9','http://loinc.org','fentaNYL [Presence] in Urine','112359','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_11247-4','11247-4','http://loinc.org','oxyMORphone [Presence] in Urine','112474','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_12308-3','12308-3','http://loinc.org','HYDROcodone [Presence] in Urine','123083','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_12326-5','12326-5','http://loinc.org','Diamorphine [Presence] in Unknown substance','123265','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_12342-2','12342-2','http://loinc.org','oxyMORphone [Presence] in Serum or Plasma','123422','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_12354-7','12354-7','http://loinc.org','Opiates [Presence] in Stool','123547','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_12356-2','12356-2','http://loinc.org','Methadone [Presence] in Stool','123562','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_13576-4','13576-4','http://loinc.org','oxyCODONE [Presence] in Serum or Plasma','135764','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_13641-6','13641-6','http://loinc.org','Codeine [Presence] in Urine by SAMHSA confirm method','136416','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_13648-1','13648-1','http://loinc.org','Morphine [Presence] in Urine by SAMHSA confirm method','136481','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_14066-5','14066-5','http://loinc.org','Dihydrocodeine [Presence] in Urine','140665','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_14261-2','14261-2','http://loinc.org','Codeine [Presence] in Gastric fluid','142612','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_14843-7','14843-7','http://loinc.org','6-Monoacetylmorphine (6-MAM) [Presence] in Gastric fluid','148437','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_14844-5','14844-5','http://loinc.org','6-Monoacetylmorphine (6-MAM) [Presence] in Serum or Plasma','148445','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_14863-5','14863-5','http://loinc.org','oxyCODONE [Presence] in Gastric fluid','148635','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_16196-8','16196-8','http://loinc.org','Morphine [Presence] in Urine by Confirmatory method','161968','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_16197-6','16197-6','http://loinc.org','Codeine [Presence] in Urine by Confirmatory method','161976','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_16198-4','16198-4','http://loinc.org','Diamorphine [Presence] in Urine by Confirmatory method','161984','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_16199-2','16199-2','http://loinc.org','Methadone [Presence] in Urine by Confirmatory method','161992','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_16211-5','16211-5','http://loinc.org','Dihydrocodeine [Presence] in Urine by Confirmatory method','162115','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_16644-7','16644-7','http://loinc.org','Codeine Free [Presence] in Serum or Plasma by Confirmatory method','166447','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_16775-9','16775-9','http://loinc.org','Dihydrocodeine Free [Presence] in Serum or Plasma by Confirmatory method','167759','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_17290-8','17290-8','http://loinc.org','Morphine [Presence] in Serum or Plasma by Confirmatory method','172908','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_18325-1','18325-1','http://loinc.org','oxyMORphone [Presence] in Urine by Confirmatory method','183251','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_18343-4','18343-4','http://loinc.org','6-Monoacetylmorphine (6-MAM) [Presence] in Serum or Plasma by Screen method','183434','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_18390-5','18390-5','http://loinc.org','Opiates [Presence] in Urine by Confirmatory method','183905','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_18473-9','18473-9','http://loinc.org','HYDROmorphone [Presence] in Urine by Confirmatory method','184739','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_19295-5','19295-5','http://loinc.org','Opiates [Presence] in Urine by Screen method','192955','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_19296-3','19296-3','http://loinc.org','Opiates tested for in Urine by Screen method Nominal','192963','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_19298-9','19298-9','http://loinc.org','Opiates positive [Identifier] in Urine by Confirmatory method','192989','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_19301-1','19301-1','http://loinc.org','Opiates screen method [Identifier] in Urine','193011','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_19302-9','19302-9','http://loinc.org','Opiates confirm method [Identifier] in Urine','193029','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_19321-9','19321-9','http://loinc.org','6-Monoacetylmorphine (6-MAM) [Presence] in Urine by Screen method','193219','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_19322-7','19322-7','http://loinc.org','6-Monoacetylmorphine (6-MAM) [Presence] in Urine by Confirmatory method','193227','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_19411-8','19411-8','http://loinc.org','Codeine [Presence] in Urine by Screen method','194118','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_19439-9','19439-9','http://loinc.org','Diamorphine [Presence] in Urine by Screen method','194399','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_19446-4','19446-4','http://loinc.org','Dihydrocodeine [Presence] in Urine by Screen method','194464','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_19462-1','19462-1','http://loinc.org','Ethylmorphine [Presence] in Urine by Screen method','194621','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_19463-9','19463-9','http://loinc.org','Ethylmorphine [Presence] in Urine by Confirmatory method','194639','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_19482-9','19482-9','http://loinc.org','HYDROcodone [Presence] in Urine by Screen method','194829','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_19483-7','19483-7','http://loinc.org','HYDROcodone [Presence] in Urine by Confirmatory method','194837','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_19486-0','19486-0','http://loinc.org','HYDROmorphone [Presence] in Urine by Screen method','194860','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_19550-3','19550-3','http://loinc.org','Methadone [Presence] in Urine by Screen method','195503','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_19597-4','19597-4','http://loinc.org','Morphine [Presence] in Urine by Screen method','195974','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_19601-4','19601-4','http://loinc.org','Morphine Free [Presence] in Urine by Screen method','196014','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_19602-2','19602-2','http://loinc.org','Morphine Free [Presence] in Urine by Confirmatory method','196022','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_19642-8','19642-8','http://loinc.org','oxyCODONE [Presence] in Urine by Screen method','196428','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_19643-6','19643-6','http://loinc.org','oxyCODONE [Presence] in Urine by Confirmatory method','196436','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_19646-9','19646-9','http://loinc.org','oxyMORphone [Presence] in Urine by Screen method','196469','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_21431-2','21431-2','http://loinc.org','Opiates [Presence] in Urine by Screen method >2000 ng/mL','214312','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_29285-4','29285-4','http://loinc.org','Methadone [Presence] in Gastric fluid','292854','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_29356-3','29356-3','http://loinc.org','fentaNYL [Presence] in Serum or Plasma','293563','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_32080-4','32080-4','http://loinc.org','HYDROcodone [Presence] in Specimen','320804','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_32081-2','32081-2','http://loinc.org','HYDROmorphone [Presence] in Specimen','320812','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_32093-7','32093-7','http://loinc.org','Methadone [Presence] in Specimen','320937','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_32099-4','32099-4','http://loinc.org','6-Monoacetylmorphine (6-MAM) [Presence] in Specimen','320994','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_32100-0','32100-0','http://loinc.org','Morphine [Presence] in Specimen','321000','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_32101-8','32101-8','http://loinc.org','oxyCODONE [Presence] in Specimen','321018','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_34177-6','34177-6','http://loinc.org','Opiates [Presence] in Specimen','341776','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_3505-5','3505-5','http://loinc.org','Codeine [Presence] in Serum or Plasma','35055','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_3507-1','3507-1','http://loinc.org','Codeine [Presence] in Urine','35071','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_3546-9','3546-9','http://loinc.org','Diamorphine [Presence] in Urine','35469','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_3618-6','3618-6','http://loinc.org','Ethylmorphine [Presence] in Urine','36186','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_3679-8','3679-8','http://loinc.org','HYDROcodone [Presence] in Serum or Plasma','36798','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_3682-2','3682-2','http://loinc.org','HYDROmorphone [Presence] in Serum or Plasma','36822','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_3771-3','3771-3','http://loinc.org','Methadone [Presence] in Serum or Plasma','37713','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_3773-9','3773-9','http://loinc.org','Methadone [Presence] in Urine','37739','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_3826-5','3826-5','http://loinc.org','Morphine [Presence] in Serum or Plasma','38265','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_3828-1','3828-1','http://loinc.org','Morphine Free [Presence] in Urine','38281','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_3830-7','3830-7','http://loinc.org','Morphine [Presence] in Urine','38307','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_3878-6','3878-6','http://loinc.org','Opiates [Presence] in Serum or Plasma','38786','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_3879-4','3879-4','http://loinc.org','Opiates [Presence] in Urine','38794','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_40369-1','40369-1','http://loinc.org','HYDROmorphone [Presence] in Gastric fluid','403691','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_40626-4','40626-4','http://loinc.org','Codeine [Presence] in Specimen','406264','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_40634-8','40634-8','http://loinc.org','HYDROcodone [Presence] in Gastric fluid','406348','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_40806-2','40806-2','http://loinc.org','Opiates [Presence] in Saliva (oral fluid) by Screen method','408062','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_40839-3','40839-3','http://loinc.org','fentaNYL [Presence] in Urine by Confirmatory method','408393','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_41858-2','41858-2','http://loinc.org','2-Ethylidene-1,5-Dimethyl-3,3-Diphenylpyrrolidine (EDDP) [Presence] in Urine','418582','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_41859-0','41859-0','http://loinc.org','2-Ethylidene-1,5-Dimethyl-3,3-Diphenylpyrrolidine (EDDP) [Presence] in Specimen','418590','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_41860-8','41860-8','http://loinc.org','2-Ethylidene-1,5-Dimethyl-3,3-Diphenylpyrrolidine (EDDP) [Presence] in Serum or Plasma','418608','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_42251-9','42251-9','http://loinc.org','Methadone+Metabolite [Presence] in Urine by Screen method','422519','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_43184-1','43184-1','http://loinc.org','6-Monoacetylmorphine (6-MAM) [Presence] in Serum or Plasma by Confirmatory method','431841','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_43199-9','43199-9','http://loinc.org','Norfentanyl [Presence] in Urine','431999','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_43200-5','43200-5','http://loinc.org','Norfentanyl [Presence] in Urine by Confirmatory method','432005','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_43719-4','43719-4','http://loinc.org','Acetaminophen+oxyCODONE [Presence] in Serum or Plasma','437194','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_43720-2','43720-2','http://loinc.org','Acetaminophen+Codeine [Presence] in Serum or Plasma','437202','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_45022-1','45022-1','http://loinc.org','Methadone+Metabolite [Presence] in Serum or Plasma by Confirmatory method','450221','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_46256-4','46256-4','http://loinc.org','oxyCODONE Free [Presence] in Serum or Plasma by Screen method','462564','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_46257-2','46257-2','http://loinc.org','Dihydrocodeine+Hydrocodol [Presence] in Serum or Plasma by Screen method','462572','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_46258-0','46258-0','http://loinc.org','oxyMORphone Free [Presence] in Serum or Plasma by Screen method','462580','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_46259-8','46259-8','http://loinc.org','Morphine Free [Presence] in Serum or Plasma by Screen method','462598','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_46260-6','46260-6','http://loinc.org','HYDROmorphone Free [Presence] in Serum or Plasma by Screen method','462606','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_46261-4','46261-4','http://loinc.org','HYDROcodone Free [Presence] in Serum or Plasma','462614','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_46262-2','46262-2','http://loinc.org','Codeine Free [Presence] in Serum or Plasma by Screen method','462622','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_46263-0','46263-0','http://loinc.org','6-monoacetylmorphine free [Presence] in Serum or Plasma','462630','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_46703-5','46703-5','http://loinc.org','Dihydrocodeine Free+Hydrocodol Free [Presence] in Serum or Plasma by Screen method','467035','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_47411-4','47411-4','http://loinc.org','Methadone [Presence] in Serum or Plasma by Confirmatory method','474114','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_51691-4','51691-4','http://loinc.org','Opiates [Presence] in Blood by Screen method','516914','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_5706-7','5706-7','http://loinc.org','Opiates [Identifier] in Urine','57067','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_58379-9','58379-9','http://loinc.org','fentaNYL+Norfentanyl [Presence] in Urine by Screen method','583799','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_58428-4','58428-4','http://loinc.org','2-Ethylidene-1,5-Dimethyl-3,3-Diphenylpyrrolidine (EDDP) [Presence] in Urine by Confirmatory method','584284','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_58430-0','58430-0','http://loinc.org','oxyCODONE+oxyMORphone [Presence] in Urine by Screen method','584300','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_59673-4','59673-4','http://loinc.org','fentaNYL [Presence] in Urine by Screen method','596734','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_59705-4','59705-4','http://loinc.org','Methadone [Presence] in Serum or Plasma by Screen method','597054','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_61042-8','61042-8','http://loinc.org','fentaNYL [Presence] in Specimen','610428','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_61052-7','61052-7','http://loinc.org','Norfentanyl [Presence] in Serum or Plasma','610527','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_61053-5','61053-5','http://loinc.org','Norfentanyl [Presence] in Specimen','610535','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_61076-6','61076-6','http://loinc.org','2-Ethylidene-1,5-Dimethyl-3,3-Diphenylpyrrolidine (EDDP) [Presence] in Gastric fluid','610766','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_61077-4','61077-4','http://loinc.org','fentaNYL [Presence] in Gastric fluid','610774','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_61086-5','61086-5','http://loinc.org','Norfentanyl [Presence] in Gastric fluid','610865','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_61197-0','61197-0','http://loinc.org','oxyCODONE+oxyMORphone [Presence] in Urine by Confirmatory method','611970','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_61421-4','61421-4','http://loinc.org','Norhydrocodone [Presence] in Urine by Confirmatory method','614214','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_61424-8','61424-8','http://loinc.org','Noroxycodone [Presence] in Urine by Confirmatory method','614248','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_66129-8','66129-8','http://loinc.org','fentaNYL+Norfentanyl [Presence] in Urine by Confirmatory method','661298','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_66130-6','66130-6','http://loinc.org','fentaNYL+Norfentanyl [Presence] in Serum or Plasma by Confirmatory method','661306','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_69356-4','69356-4','http://loinc.org','oxyCODONE [Presence] in Saliva (oral fluid) by Screen method','693564','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_70148-2','70148-2','http://loinc.org','Methadone [Presence] in Urine by Screen method >150 ng/mL','701482','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_70149-0','70149-0','http://loinc.org','Methadone [Presence] in Urine by Screen method >300 ng/mL','701490','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_70151-6','70151-6','http://loinc.org','Opiates [Presence] in Urine by Screen method >300 ng/mL','701516','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_71430-3','71430-3','http://loinc.org','oxyCODONE+oxyMORphone [Presence] in Saliva (oral fluid) by Screen method','714303','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_72386-6','72386-6','http://loinc.org','2-Ethylidene-1,5-Dimethyl-3,3-Diphenylpyrrolidine (EDDP) [Presence] in Saliva (oral fluid) by Confirmatory method','723866','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_72387-4','72387-4','http://loinc.org','Methadone [Presence] in Saliva (oral fluid) by Confirmatory method','723874','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_72400-5','72400-5','http://loinc.org','Methadone [Presence] in Blood by Screen method','724005','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_72402-1','72402-1','http://loinc.org','oxyCODONE [Presence] in Blood by Screen method','724021','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_72475-7','72475-7','http://loinc.org','Methadone+Metabolite [Presence] in Saliva (oral fluid) by Confirmatory method','724757','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_72626-5','72626-5','http://loinc.org','Methadone [Presence] in Saliva (oral fluid) by Screen method','726265','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_73936-7','73936-7','http://loinc.org','fentaNYL [Presence] in Blood by Screen method','739367','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_74644-6','74644-6','http://loinc.org','HYDROcodone [Presence] in Saliva (oral fluid) by Confirmatory method','746446','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_74645-3','74645-3','http://loinc.org','HYDROmorphone [Presence] in Saliva (oral fluid) by Confirmatory method','746453','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_74654-5','74654-5','http://loinc.org','Morphine [Presence] in Saliva (oral fluid) by Confirmatory method','746545','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_74656-0','74656-0','http://loinc.org','Opiates [Presence] in Saliva (oral fluid) by Confirmatory method','746560','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_74657-8','74657-8','http://loinc.org','oxyCODONE [Presence] in Saliva (oral fluid) by Confirmatory method','746578','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_74658-6','74658-6','http://loinc.org','oxyCODONE+oxyMORphone [Presence] in Saliva (oral fluid) by Confirmatory method','746586','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_74659-4','74659-4','http://loinc.org','oxyMORphone [Presence] in Saliva (oral fluid) by Confirmatory method','746594','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_74675-0','74675-0','http://loinc.org','Codeine [Presence] in Saliva (oral fluid) by Confirmatory method','746750','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_74677-6','74677-6','http://loinc.org','6-Monoacetylmorphine (6-MAM) [Presence] in Saliva (oral fluid) by Confirmatory method','746776','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_74810-3','74810-3','http://loinc.org','Acetyl fentanyl [Presence] in Urine by Confirmatory method','748103','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_74818-6','74818-6','http://loinc.org','Desomorphine [Presence] in Urine by Screen method','748186','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_77731-8','77731-8','http://loinc.org','oxyCODONE+oxyMORphone [Interpretation] in Serum, Plasma or Blood Qualitative by Confirmatory method','777318','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_77732-6','77732-6','http://loinc.org','oxyCODONE+oxyMORphone [Presence] in Serum, Plasma or Blood by Screen method','777326','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_78363-9','78363-9','http://loinc.org','Norhydrocodone [Presence] in Saliva (oral fluid) by Confirmatory method','783639','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_78759-8','78759-8','http://loinc.org','6-Monoacetylmorphine (6-MAM) [Presence] in Blood by Screen method','787598','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_78760-6','78760-6','http://loinc.org','6-Monoacetylmorphine (6-MAM) [Presence] in Body fluid by Screen method','787606','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_8210-7','8210-7','http://loinc.org','Opiates [Presence] in Gastric fluid','82107','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_8211-5','8211-5','http://loinc.org','Opiates [Presence] in Gastric fluid by Confirmatory method','82115','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_8212-3','8212-3','http://loinc.org','Opiates [Presence] in Gastric fluid by Screen method','82123','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_8218-0','8218-0','http://loinc.org','Opiates [Presence] in Serum or Plasma by Confirmatory method','82180','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_8219-8','8219-8','http://loinc.org','Opiates [Presence] in Serum or Plasma by Screen method','82198','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_8221-4','8221-4','http://loinc.org','Opiates [Presence] in Urine by SAMHSA confirm method','82214','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_8222-2','8222-2','http://loinc.org','Opiates [Presence] in Urine by SAMHSA screen method','82222','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_8224-8','8224-8','http://loinc.org','Opiates [Presence] in Unknown substance','82248','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_8225-5','8225-5','http://loinc.org','Opiates [Presence] in Unknown substance by Confirmatory method','82255','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_8226-3','8226-3','http://loinc.org','Opiates [Presence] in Unknown substance by Screen method','82263','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_87815-7','87815-7','http://loinc.org','fentaNYL [Presence] in Saliva (oral fluid) by Screen method','878157','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_87816-5','87816-5','http://loinc.org','6-Monoacetylmorphine (6-MAM) [Presence] in Saliva (oral fluid) by Screen method','878165','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_89301-6','89301-6','http://loinc.org','oxymorphone-3-glucuronide [Presence] in Urine by Screen method','893016','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_89302-4','89302-4','http://loinc.org','Noroxymorphone [Presence] in Urine by Screen method','893024','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_89303-2','89303-2','http://loinc.org','Noroxycodone [Presence] in Urine by Screen method','893032','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_89304-0','89304-0','http://loinc.org','Norhydrocodone [Presence] in Urine by Screen method','893040','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_89306-5','89306-5','http://loinc.org','Nortapentadol [Presence] in Urine by Screen method','893065','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_89308-1','89308-1','http://loinc.org','Morphine-6-Glucuronide [Presence] in Urine by Screen method','893081','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_89309-9','89309-9','http://loinc.org','Hydromorphone-3-glucuronide [Presence] in Urine by Screen method','893099','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_89310-7','89310-7','http://loinc.org','Codeine-6-glucuronide [Presence] in Urine by Screen method','893107','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_91033-1','91033-1','http://loinc.org','Methadone+Metabolite [Presence] in Serum, Plasma or Blood by Screen method','910331','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_91039-8','91039-8','http://loinc.org','Methadone+Metabolite [Presence] in Body fluid by Screen method','910398','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_91043-0','91043-0','http://loinc.org','Opiates [Presence] in Body fluid by Screen method','910430','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_91044-8','91044-8','http://loinc.org','oxyCODONE+oxyMORphone [Presence] in Body fluid by Screen method','910448','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_91050-5','91050-5','http://loinc.org','Methadone+Metabolite [Presence] in Tissue by Screen method','910505','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_91052-1','91052-1','http://loinc.org','Opiates [Presence] in Tissue by Screen method','910521','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_91053-9','91053-9','http://loinc.org','oxyCODONE+oxyMORphone [Presence] in Tissue by Screen method','910539','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_93495-0','93495-0','http://loinc.org','2-Ethylidene-1,5-Dimethyl-3,3-Diphenylpyrrolidine (EDDP) [Presence] in Urine by Screen method','934950','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_9438-3','9438-3','http://loinc.org','Morphine [Presence] in Gastric fluid','94383','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_95797-7','95797-7','http://loinc.org','Norfentanyl [Presence] in Urine by Screen method','957977','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_97210-9','97210-9','http://loinc.org','6-monoacetylmorphine free [Presence] in Cord tissue by Screen method','972109','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_97211-7','97211-7','http://loinc.org','6-monoacetylmorphine free [Presence] in Cord tissue by Confirmatory method','972117','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_97214-1','97214-1','http://loinc.org','Acetyl fentanyl [Presence] in Cord tissue by Screen method','972141','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_97215-8','97215-8','http://loinc.org','Acetyl fentanyl [Presence] in Cord tissue by Confirmatory method','972158','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_97236-4','97236-4','http://loinc.org','Codeine Free [Presence] in Cord tissue by Screen method','972364','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_97237-2','97237-2','http://loinc.org','Codeine Free [Presence] in Cord tissue by Confirmatory method','972372','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_97244-8','97244-8','http://loinc.org','2-Ethylidene-1,5-Dimethyl-3,3-Diphenylpyrrolidine (EDDP) [Presence] in Cord tissue by Screen method','972448','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_97245-5','97245-5','http://loinc.org','2-Ethylidene-1,5-Dimethyl-3,3-Diphenylpyrrolidine (EDDP) [Presence] in Cord tissue by Confirmatory method','972455','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_97248-9','97248-9','http://loinc.org','fentaNYL [Presence] in Cord tissue by Screen method','972489','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_97249-7','97249-7','http://loinc.org','fentaNYL [Presence] in Cord tissue by Confirmatory method','972497','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_97254-7','97254-7','http://loinc.org','HYDROcodone Free [Presence] in Cord tissue by Screen method','972547','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_97255-4','97255-4','http://loinc.org','HYDROcodone Free [Presence] in Cord tissue by Confirmatory method','972554','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_97256-2','97256-2','http://loinc.org','HYDROmorphone Free [Presence] in Cord tissue by Screen method','972562','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_97257-0','97257-0','http://loinc.org','HYDROmorphone Free [Presence] in Cord tissue by Confirmatory method','972570','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_97272-9','97272-9','http://loinc.org','Methadone [Presence] in Cord tissue by Screen method','972729','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_97273-7','97273-7','http://loinc.org','Methadone [Presence] in Cord tissue by Confirmatory method','972737','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_97280-2','97280-2','http://loinc.org','Morphine Free [Presence] in Cord tissue by Screen method','972802','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_97281-0','97281-0','http://loinc.org','Morphine Free [Presence] in Cord tissue by Confirmatory method','972810','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_97284-4','97284-4','http://loinc.org','Norfentanyl [Presence] in Cord tissue by Screen method','972844','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_97285-1','97285-1','http://loinc.org','Norfentanyl [Presence] in Cord tissue by Confirmatory method','972851','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_97286-9','97286-9','http://loinc.org','Norhydrocodone [Presence] in Cord tissue by Screen method','972869','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_97287-7','97287-7','http://loinc.org','Norhydrocodone [Presence] in Cord tissue by Confirmatory method','972877','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_97295-0','97295-0','http://loinc.org','oxyCODONE Free [Presence] in Cord tissue by Screen method','972950','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_97296-8','97296-8','http://loinc.org','oxyMORphone Free [Presence] in Cord tissue by Screen method','972968','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_97297-6','97297-6','http://loinc.org','oxyMORphone Free [Presence] in Cord tissue by Confirmatory method','972976','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_97323-0','97323-0','http://loinc.org','oxyCODONE Free [Presence] in Cord tissue by Confirmatory method','973230','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_9834-3','9834-3','http://loinc.org','HYDROmorphone [Presence] in Urine','98343','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_99079-6','99079-6','http://loinc.org','Acrylfentanyl [Presence] in Urine by Confirmatory method','990796','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.785_99081-2','99081-2','http://loinc.org','Furanylfentanyl [Presence] in Urine by Confirmatory method','990812','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.302_49671-1','49671-1','http://loinc.org','Neisseria meningitidis DNA [Presence] in Specimen by NAA with probe detection','496711','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.302_5029-4','5029-4','http://loinc.org','Neisseria meningitidis rRNA [Presence] in Specimen by Probe','50294','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.302_71788-4','71788-4','http://loinc.org','Neisseria meningitidis DNA [Identifier] in Specimen by NAA with probe detection','717884','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.302_74534-9','74534-9','http://loinc.org','Neisseria meningitidis serogroup Y DNA [Presence] in Specimen by NAA with probe detection','745349','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.302_74535-6','74535-6','http://loinc.org','Neisseria meningitidis serogroup X DNA [Presence] in Specimen by NAA with probe detection','745356','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.302_74536-4','74536-4','http://loinc.org','Neisseria meningitidis serogroup w135 DNA [Presence] in Specimen by NAA with probe detection','745364','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.302_74537-2','74537-2','http://loinc.org','Neisseria meningitidis serogroup C DNA [Presence] in Specimen by NAA with probe detection','745372','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.302_74538-0','74538-0','http://loinc.org','Neisseria meningitidis serogroup B DNA [Presence] in Specimen by NAA with probe detection','745380','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.302_74539-8','74539-8','http://loinc.org','Neisseria meningitidis serogroup A DNA [Presence] in Specimen by NAA with probe detection','745398','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.302_85628-6','85628-6','http://loinc.org','Neisseria meningitidis sodC gene [Presence] in Specimen by NAA with probe detection','856286','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.302_85797-9','85797-9','http://loinc.org','Neisseria meningitidis serogroup DNA panel - Specimen by NAA with probe detection','857979','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.302_86198-9','86198-9','http://loinc.org','Neisseria meningitidis serogroup Y synF gene [Cycle Threshold #] in Specimen by NAA with probe detection','861989','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.302_86234-2','86234-2','http://loinc.org','Neisseria meningitidis serogroup A sacB gene [Cycle Threshold #] in Specimen by NAA with probe detection','862342','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.302_86235-9','86235-9','http://loinc.org','Neisseria meningitidis serogroup B synD gene [Cycle Threshold #] in Specimen by NAA with probe detection','862359','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.302_86236-7','86236-7','http://loinc.org','Neisseria meningitidis serogroup C synE gene [Cycle Threshold #] in Specimen by NAA with probe detection','862367','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.302_86237-5','86237-5','http://loinc.org','Neisseria meningitidis serogroup w135 synG gene [Cycle Threshold #] in Specimen by NAA with probe detection','862375','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.302_86238-3','86238-3','http://loinc.org','Neisseria meningitidis serogroup X xcbB gene [Cycle Threshold #] in Specimen by NAA with probe detection','862383','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.302_91803-7','91803-7','http://loinc.org','Neisseria meningitidis DNA [Presence] in Upper respiratory specimen by NAA with probe detection','918037','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.302_93388-7','93388-7','http://loinc.org','Neisseria meningitidis DNA [Presence] by NAA with probe detection in Positive blood culture','933887','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.302_53606-0','53606-0','http://loinc.org','Neisseria meningitidis DNA [Presence] in Blood by NAA with probe detection','536060','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.302_6509-4','6509-4','http://loinc.org','Neisseria meningitidis rRNA [Presence] in Cerebral spinal fluid by Probe','65094','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.302_82185-0','82185-0','http://loinc.org','Neisseria meningitidis DNA [Presence] in Cerebral spinal fluid by NAA with non-probe detection','821850','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.302_99092-9','99092-9','http://loinc.org','Neisseria meningitidis DNA [Presence] in Cerebral spinal fluid by NAA with probe detection','990929','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.786_53606-0','53606-0','http://loinc.org','Neisseria meningitidis DNA [Presence] in Blood by NAA with probe detection','536060','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.786_6509-4','6509-4','http://loinc.org','Neisseria meningitidis rRNA [Presence] in Cerebral spinal fluid by Probe','65094','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.786_82185-0','82185-0','http://loinc.org','Neisseria meningitidis DNA [Presence] in Cerebral spinal fluid by NAA with non-probe detection','821850','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.786_99092-9','99092-9','http://loinc.org','Neisseria meningitidis DNA [Presence] in Cerebral spinal fluid by NAA with probe detection','990929','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.303_16134-9','16134-9','http://loinc.org','Neisseria meningitidis [Presence] in Specimen by Organism specific culture','161349','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.303_70172-2','70172-2','http://loinc.org','Neisseria meningitidis serogroup [Identifier] in Specimen','701722','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.303_87958-5','87958-5','http://loinc.org','Neisseria meningitidis [Presence] in Throat by Organism specific culture','879585','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.303_91788-0','91788-0','http://loinc.org','Neisseria meningitidis [Presence] in Upper respiratory specimen by Organism specific culture','917880','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.303_42368-1','42368-1','http://loinc.org','Neisseria meningitidis serogroup w135 Ag [Presence] in Isolate by Agglutination','423681','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.303_42369-9','42369-9','http://loinc.org','Neisseria meningitidis serogroup A Ag [Presence] in Isolate by Agglutination','423699','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.303_42370-7','42370-7','http://loinc.org','Neisseria meningitidis serogroup B Ag [Presence] in Isolate by Agglutination','423707','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.303_42371-5','42371-5','http://loinc.org','Neisseria meningitidis serogroup C Ag [Presence] in Isolate by Agglutination','423715','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.303_42372-3','42372-3','http://loinc.org','Neisseria meningitidis serogroup D Ag [Presence] in Isolate by Agglutination','423723','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.303_42373-1','42373-1','http://loinc.org','Neisseria meningitidis serogroup X Ag [Presence] in Isolate by Agglutination','423731','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.303_42374-9','42374-9','http://loinc.org','Neisseria meningitidis serogroup Y Ag [Presence] in Isolate by Agglutination','423749','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.303_42375-6','42375-6','http://loinc.org','Neisseria meningitidis serogroup Z Ag [Presence] in Isolate by Agglutination','423756','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.303_42376-4','42376-4','http://loinc.org','Neisseria meningitidis serogroup Z'' Ag [Presence] in Isolate by Agglutination','423764','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.303_44093-3','44093-3','http://loinc.org','Neisseria meningitidis [Identifier] in Isolate by Organism specific culture','440933','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.303_45183-1','45183-1','http://loinc.org','Neisseria meningitidis [Identifier] in Isolate by Agglutination','451831','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.303_73702-3','73702-3','http://loinc.org','Neisseria meningitidis serosubtype [Type] in Isolate by Immunoassay','737023','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.303_85779-7','85779-7','http://loinc.org','Neisseria meningitidis DNA [Presence] by NAA with non-probe detection in Positive blood culture','857797','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.303_86581-6','86581-6','http://loinc.org','Neisseria meningitidis [Presence] in Cerebral spinal fluid by Organism specific culture','865816','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.787_42368-1','42368-1','http://loinc.org','Neisseria meningitidis serogroup w135 Ag [Presence] in Isolate by Agglutination','423681','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.787_42369-9','42369-9','http://loinc.org','Neisseria meningitidis serogroup A Ag [Presence] in Isolate by Agglutination','423699','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.787_42370-7','42370-7','http://loinc.org','Neisseria meningitidis serogroup B Ag [Presence] in Isolate by Agglutination','423707','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.787_42371-5','42371-5','http://loinc.org','Neisseria meningitidis serogroup C Ag [Presence] in Isolate by Agglutination','423715','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.787_42372-3','42372-3','http://loinc.org','Neisseria meningitidis serogroup D Ag [Presence] in Isolate by Agglutination','423723','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.787_42373-1','42373-1','http://loinc.org','Neisseria meningitidis serogroup X Ag [Presence] in Isolate by Agglutination','423731','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.787_42374-9','42374-9','http://loinc.org','Neisseria meningitidis serogroup Y Ag [Presence] in Isolate by Agglutination','423749','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.787_42375-6','42375-6','http://loinc.org','Neisseria meningitidis serogroup Z Ag [Presence] in Isolate by Agglutination','423756','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.787_42376-4','42376-4','http://loinc.org','Neisseria meningitidis serogroup Z'' Ag [Presence] in Isolate by Agglutination','423764','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.787_44093-3','44093-3','http://loinc.org','Neisseria meningitidis [Identifier] in Isolate by Organism specific culture','440933','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.787_45183-1','45183-1','http://loinc.org','Neisseria meningitidis [Identifier] in Isolate by Agglutination','451831','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.787_73702-3','73702-3','http://loinc.org','Neisseria meningitidis serosubtype [Type] in Isolate by Immunoassay','737023','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.787_85779-7','85779-7','http://loinc.org','Neisseria meningitidis DNA [Presence] by NAA with non-probe detection in Positive blood culture','857797','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.787_86581-6','86581-6','http://loinc.org','Neisseria meningitidis [Presence] in Cerebral spinal fluid by Organism specific culture','865816','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1285_41444-1','41444-1','http://loinc.org','Naegleria fowleri DNA [Presence] in Cerebral spinal fluid by NAA with probe detection','414441','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1285_87758-9','87758-9','http://loinc.org','Naegleria fowleri DNA [Presence] in Specimen by NAA with probe detection','877589','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2012_101003-2','101003-2','http://loinc.org','Monkeypox virus clade [Type] in Specimen by Sequencing','1010032','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2012_101004-0','101004-0','http://loinc.org','Monkeypox virus lineage [Type] in Specimen by Sequencing','1010040','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.821_35499-3','35499-3','http://loinc.org','Pesticide and Insecticide panel [Mass/volume] - Serum or Plasma','354993','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.821_35500-8','35500-8','http://loinc.org','Pesticide and Insecticide panel [Mass/volume] - Urine','355008','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.821_35501-6','35501-6','http://loinc.org','Pesticide and Insecticide panel [Mass/volume] - Urine and Serum or Plasma','355016','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.821_87670-6','87670-6','http://loinc.org','Carbamate panel - Specimen','876706','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.821_88032-8','88032-8','http://loinc.org','Organophosphate panel - Specimen','880328','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2013_101002-4','101002-4','http://loinc.org','Monkeypox virus sequencing panel - Specimen by Sequencing','1010024','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1286_10694-8','10694-8','http://loinc.org','Naegleria sp identified in Tissue by Organism specific culture','106948','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1286_97529-2','97529-2','http://loinc.org','Naegleria fowleri [Presence] in Specimen by Organism specific culture','975292','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.58_101284-8','101284-8','http://loinc.org','Bordetella pertussis DNA [Presence] in Nasopharynx by NAA with non-probe detection','1012848','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.58_23826-1','23826-1','http://loinc.org','Bordetella pertussis DNA [Presence] in Specimen by NAA with probe detection','238261','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.58_43913-3','43913-3','http://loinc.org','Bordetella pertussis DNA [Presence] in Nasopharynx by NAA with probe detection','439133','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.58_80600-0','80600-0','http://loinc.org','Bordetella pertussis.pertussis toxin promoter region [Presence] in Nasopharynx by NAA with probe detection','806000','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.58_80601-8','80601-8','http://loinc.org','Bordetella pertussis+parapertussis+bronchiseptica gidA gene [Presence] in Nasopharynx by NAA with probe detection','806018','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.58_82179-3','82179-3','http://loinc.org','Bordetella pertussis.pertussis toxin promoter region [Presence] in Nasopharynx by NAA with non-probe detection','821793','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.58_85360-6','85360-6','http://loinc.org','Bordetella pertussis+bronchiseptica+holmesii IS481 DNA [Presence] in Nasopharynx by NAA with non-probe detection','853606','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.58_85799-5','85799-5','http://loinc.org','Bordetella pertussis+bronchiseptica+holmesii IS481 DNA [Cycle Threshold #] in Specimen by NAA with probe detection','857995','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.58_86325-8','86325-8','http://loinc.org','Bordetella pertussis+parapertussis ptxS1 gene [Cycle Threshold #] in Specimen by NAA with probe detection','863258','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.58_91815-1','91815-1','http://loinc.org','Bordetella pertussis DNA [Presence] in Upper respiratory specimen by NAA with probe detection','918151','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.58_91869-8','91869-8','http://loinc.org','Bordetella pertussis DNA [Presence] in Throat by NAA with probe detection','918698','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.58_92128-8','92128-8','http://loinc.org','Bordetella pertussis DNA [Presence] in Respiratory system specimen by NAA with probe detection','921288','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.58_92857-2','92857-2','http://loinc.org','Bordetella pertussis+bronchiseptica+holmesii IS481 DNA [Presence] in Lower respiratory specimen by NAA with probe detection','928572','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.58_92858-0','92858-0','http://loinc.org','Bordetella pertussis+bronchiseptica+holmesii IS481 DNA [Presence] in Upper respiratory specimen by NAA with probe detection','928580','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.58_94365-4','94365-4','http://loinc.org','Bordetella pertussis DNA [Presence] in Lower respiratory specimen by NAA with probe detection','943654','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.58_94392-8','94392-8','http://loinc.org','Bordetella pertussis+parapertussis+bronchiseptica gidA gene [Presence] in Lower respiratory specimen by NAA with probe detection','943928','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.58_94478-5','94478-5','http://loinc.org','Bordetella pertussis.pertussis toxin promoter region [Presence] in Lower respiratory specimen by NAA with non-probe detection','944785','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.58_96962-6','96962-6','http://loinc.org','Bordetella pertussis.pertussis toxin promoter region [Presence] in Lower respiratory specimen by NAA with probe detection','969626','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.817_85795-3','85795-3','http://loinc.org','Rubella virus E1 gene and genotype panel - Specimen','857953','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2306_78921-4','78921-4','http://loinc.org','Bordetella pertussis and Bordetella parapertussis DNA and culture panel - Nasopharynx','789214','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1290_70852-9','70852-9','http://loinc.org','Burkholderia pseudomallei DNA [Presence] in Specimen by NAA with probe detection','708529','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.499_23021-9','23021-9','http://loinc.org','Coxiella burnetii Ag [Presence] in Tissue by Immunoassay','230219','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.499_23022-7','23022-7','http://loinc.org','Coxiella burnetii Ag [Presence] in Placenta by Immunofluorescence','230227','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.499_23023-5','23023-5','http://loinc.org','Coxiella burnetii Ag [Presence] in Specimen by Immunofluorescence','230235','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.499_31783-4','31783-4','http://loinc.org','Coxiella burnetii Ag [Presence] in Placenta','317834','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.499_31784-2','31784-2','http://loinc.org','Coxiella burnetii Ag [Presence] in Specimen','317842','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.897_100962-0','100962-0','http://loinc.org','Dengue virus Ab.IgG Panel - Serum, Plasma or Blood','1009620','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.897_41878-0','41878-0','http://loinc.org','Dengue virus IgG and IgM panel - Serum by Immunoassay','418780','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.897_87441-2','87441-2','http://loinc.org','Dengue virus 1+2+3+4 and Zika virus IgA+IgG+IgM panel - Specimen by Immunoassay','874412','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.897_87546-8','87546-8','http://loinc.org','Dengue virus IgG and IgM panel - Serum Qualitative','875468','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.899_33681-8','33681-8','http://loinc.org','Francisella tularensis [Presence] in Specimen by Cell wall fatty acid analysis','336818','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_11091-6','11091-6','http://loinc.org','Alpha chlordane [Mass/volume] in Serum or Plasma','110916','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_11093-2','11093-2','http://loinc.org','Dichlorodiphenyldichloroethylene [Mass/volume] in Serum or Plasma','110932','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_11094-0','11094-0','http://loinc.org','Dichlorodiphenyltrichloroethane [Mass/volume] in Serum or Plasma','110940','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_11095-7','11095-7','http://loinc.org','Dieldrin [Mass/volume] in Serum or Plasma','110957','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_11096-5','11096-5','http://loinc.org','Gamma chlordane [Mass/volume] in Serum or Plasma','110965','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_11097-3','11097-3','http://loinc.org','Lindane [Mass/volume] in Serum or Plasma','110973','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_11098-1','11098-1','http://loinc.org','Malaoxon [Mass/volume] in Serum or Plasma','110981','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_11099-9','11099-9','http://loinc.org','Methoxychlor [Mass/volume] in Serum or Plasma','110999','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_12426-3','12426-3','http://loinc.org','Brodifacoum [Mass/volume] in Serum or Plasma','124263','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_12435-4','12435-4','http://loinc.org','Naphthalene [Mass/volume] in Serum or Plasma','124354','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_12547-6','12547-6','http://loinc.org','Phorate [Mass/volume] in Serum or Plasma','125476','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_12994-0','12994-0','http://loinc.org','Oxychlordane [Mass/volume] in Blood','129940','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_13006-2','13006-2','http://loinc.org','1,4-Dichlorobenzene [Mass/volume] in Serum or Plasma','130062','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_13018-7','13018-7','http://loinc.org','Pesticides [Identifier] in Urine','130187','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_13019-5','13019-5','http://loinc.org','Pesticides [Identifier] in Serum or Plasma','130195','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_13020-3','13020-3','http://loinc.org','Pesticides [Identifier] in Blood','130203','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_13021-1','13021-1','http://loinc.org','Pesticides [Identifier] in Gastric fluid','130211','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_13643-2','13643-2','http://loinc.org','Lindane [Mass/volume] in Urine','136432','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_13790-1','13790-1','http://loinc.org','Para nitrophenol/Creatinine [Mass Ratio] in Urine','137901','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_14256-2','14256-2','http://loinc.org','Tetrachlorodiphenylethane [Mass/mass] in Tissue','142562','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_14257-0','14257-0','http://loinc.org','Tetrachlorodiphenylethane [Mass/volume] in Serum or Plasma','142570','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_14262-0','14262-0','http://loinc.org','Dichlorodiphenyldichloroethylene [Mass/mass] in Tissue','142620','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_14263-8','14263-8','http://loinc.org','Dichlorodiphenyltrichloroethane [Mass/mass] in Tissue','142638','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_16346-9','16346-9','http://loinc.org','Alpha chlordane [Mass/volume] in Urine','163469','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_16347-7','16347-7','http://loinc.org','Alpha chlordane [Mass/volume] in Blood','163477','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_1654-3','1654-3','http://loinc.org','1-Naphthalene [Mass/volume] in Urine','16543','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_16547-2','16547-2','http://loinc.org','Carbamate pesticides [Type] in Urine','165472','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_16611-6','16611-6','http://loinc.org','Chlorpyrifos [Mass/volume] in Urine','166116','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_16758-5','16758-5','http://loinc.org','Dicamba [Mass/volume] in Serum or Plasma','167585','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_16759-3','16759-3','http://loinc.org','Dicamba [Mass/volume] in Urine','167593','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_16763-5','16763-5','http://loinc.org','Dichlorodiphenyldichloroethylene [Mass/volume] in Urine','167635','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_16764-3','16764-3','http://loinc.org','Dichlorodiphenyldichloroethylene [Mass/volume] in Blood','167643','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_16768-4','16768-4','http://loinc.org','Dichlorvos [Mass/volume] in Urine','167684','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_16772-6','16772-6','http://loinc.org','Dieldrin [Mass/volume] in Urine','167726','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_16773-4','16773-4','http://loinc.org','Dieldrin [Mass/volume] in Blood','167734','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_16888-0','16888-0','http://loinc.org','Gamma chlordane [Mass/volume] in Urine','168880','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_16939-1','16939-1','http://loinc.org','Heptachlor [Mass/volume] in Urine','169391','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_16940-9','16940-9','http://loinc.org','Heptachlorepoxide [Mass/volume] in Urine','169409','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_16965-6','16965-6','http://loinc.org','Lindane [Mass/volume] in Blood','169656','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_17267-6','17267-6','http://loinc.org','Methoxychlor [Mass/volume] in Urine','172676','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_17388-0','17388-0','http://loinc.org','Organochlorine pesticides [Type] in Urine','173880','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_17394-8','17394-8','http://loinc.org','Oxychlordane [Mass/volume] in Urine','173948','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_17419-3','17419-3','http://loinc.org','Parathion [Mass/volume] in Urine','174193','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_17424-3','17424-3','http://loinc.org','1,4-Dichlorobenzene [Mass/volume] in Blood','174243','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_17695-8','17695-8','http://loinc.org','Tetrachlorodiphenylethane [Mass/volume] in Blood','176958','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_17696-6','17696-6','http://loinc.org','Tetrachlorodiphenylethane [Mass/volume] in Urine','176966','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_17720-4','17720-4','http://loinc.org','Trans nonachlor [Mass/volume] in Urine','177204','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_17721-2','17721-2','http://loinc.org','Trans nonachlor [Mass/volume] in Blood','177212','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_18371-5','18371-5','http://loinc.org','Methyl parathion [Mass/volume] in Urine','183715','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_18472-1','18472-1','http://loinc.org','Organophosphate pesticides [Identifier] in Urine','184721','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_20745-6','20745-6','http://loinc.org','Carbamates [Presence] in Gastric fluid by Screen method','207456','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_20746-4','20746-4','http://loinc.org','Carbamates [Presence] in Specimen by Screen method','207464','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_20747-2','20747-2','http://loinc.org','Carbamates [Presence] in Ingesta by Screen method','207472','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_20748-0','20748-0','http://loinc.org','Carbamates [Presence] in Tissue by Screen method','207480','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_20907-2','20907-2','http://loinc.org','Organochlorine pesticides [Identifier] in Blood','209072','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_20908-0','20908-0','http://loinc.org','Organochlorine pesticides [Identifier] in Specimen','209080','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_20909-8','20909-8','http://loinc.org','Organochlorine pesticides [Identifier] in Gastric fluid','209098','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_20911-4','20911-4','http://loinc.org','Organochlorine pesticides [Identifier] in Tissue','209114','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_20912-2','20912-2','http://loinc.org','Organochlorine pesticides [Presence] in Blood by Screen method','209122','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_20913-0','20913-0','http://loinc.org','Organochlorine pesticides [Presence] in Specimen by Screen method','209130','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_20914-8','20914-8','http://loinc.org','Organochlorine pesticides [Presence] in Gastric fluid by Screen method','209148','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_20916-3','20916-3','http://loinc.org','Organochlorine pesticides [Presence] in Tissue by Screen method','209163','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_20917-1','20917-1','http://loinc.org','Organophosphate pesticides [Presence] in Blood by Screen method','209171','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_20918-9','20918-9','http://loinc.org','Organophosphate pesticides [Presence] in Specimen by Screen method','209189','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_20919-7','20919-7','http://loinc.org','Organophosphate pesticides [Presence] in Gastric fluid by Screen method','209197','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_20920-5','20920-5','http://loinc.org','Organophosphate pesticides [Presence] in Tissue by Screen method','209205','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_20921-3','20921-3','http://loinc.org','Organophosphate pesticides [Identifier] in Specimen','209213','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_20922-1','20922-1','http://loinc.org','Organophosphate pesticides [Identifier] in Gastric fluid','209221','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_20923-9','20923-9','http://loinc.org','Organophosphate pesticides [Identifier] in Tissue','209239','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_20929-6','20929-6','http://loinc.org','Paraquat [Mass/volume] in Gastric fluid','209296','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_20930-4','20930-4','http://loinc.org','Paraquat [Mass/mass] in Tissue','209304','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_20988-2','20988-2','http://loinc.org','Zinc phosphide [Mass/mass] in Gastrointestinal content','209882','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_20989-0','20989-0','http://loinc.org','Zinc phosphide [Mass/mass] in Specimen','209890','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_21088-0','21088-0','http://loinc.org','Azinphos-methyl [Mass/volume] in Urine','210880','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_21107-8','21107-8','http://loinc.org','Bendiocarb [Mass/volume] in Urine','211078','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_21138-3','21138-3','http://loinc.org','Carbaryl [Mass/volume] in Urine','211383','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_21139-1','21139-1','http://loinc.org','Carbofuran [Mass/volume] in Urine','211391','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_21140-9','21140-9','http://loinc.org','Carbophenothion [Mass/volume] in Urine','211409','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_21229-0','21229-0','http://loinc.org','Coumaphos [Mass/volume] in Urine','212290','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_21246-4','21246-4','http://loinc.org','Dimethoate [Mass/volume] in Urine','212464','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_21266-2','21266-2','http://loinc.org','Ethion [Mass/volume] in Urine','212662','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_21267-0','21267-0','http://loinc.org','O-Ethyl O-(p-nitrophenyl) phenylphosphonothionate [Mass/volume] in Urine','212670','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_21268-8','21268-8','http://loinc.org','Fenchlorphos [Mass/volume] in Urine','212688','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_21269-6','21269-6','http://loinc.org','Fenthion [Mass/volume] in Urine','212696','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_21280-3','21280-3','http://loinc.org','Fonofos [Mass/volume] in Urine','212803','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_21378-5','21378-5','http://loinc.org','Malathion [Mass/volume] in Urine','213785','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_21385-0','21385-0','http://loinc.org','Metasystox [Mass/volume] in Urine','213850','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_21388-4','21388-4','http://loinc.org','Mevinphos [Mass/volume] in Urine','213884','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_21437-9','21437-9','http://loinc.org','Oxychlordane [Mass/volume] in Serum or Plasma','214379','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_21443-7','21443-7','http://loinc.org','Paraoxon [Mass/volume] in Urine','214437','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_21457-7','21457-7','http://loinc.org','Phorate [Mass/volume] in Urine','214577','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_21480-9','21480-9','http://loinc.org','Propoxur [Mass/volume] in Urine','214809','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_21554-1','21554-1','http://loinc.org','Terbufos [Mass/volume] in Urine','215541','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_23764-4','23764-4','http://loinc.org','Pesticides [Identifier] in Specimen','237644','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_23822-0','23822-0','http://loinc.org','Azinphos-methyl [Mass/volume] in Blood','238220','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_23893-1','23893-1','http://loinc.org','Malaoxon [Mass/volume] in Blood','238931','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_23937-6','23937-6','http://loinc.org','Trans nonachlor [Mass/volume] in Serum or Plasma','239376','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_25123-1','25123-1','http://loinc.org','Para nitrophenol/Creatinine [Molar ratio] in Urine','251231','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_26953-0','26953-0','http://loinc.org','Dichlorodiphenyltrichloroethane [Presence] in Serum or Plasma','269530','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_2726-8','2726-8','http://loinc.org','Para nitrophenol [Presence] in Urine','27268','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_2727-6','2727-6','http://loinc.org','Para nitrophenol [Mass/volume] in Urine','27276','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_27279-9','27279-9','http://loinc.org','Paraoxon [Mass/volume] in Serum or Plasma','272799','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_2728-4','2728-4','http://loinc.org','Parathion [Mass/volume] in Serum or Plasma','27284','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_27338-3','27338-3','http://loinc.org','2,4-Dichlorophenoxyacetate [Mass/volume] in Serum or Plasma','273383','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_28042-0','28042-0','http://loinc.org','Organophosphate pesticides [Mass/volume] in Urine by Screen method','280420','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_28047-9','28047-9','http://loinc.org','Carbamate pesticides [Mass/volume] in Urine','280479','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_30024-4','30024-4','http://loinc.org','Carbophenothion [Mass/volume] in Serum or Plasma','300244','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_30025-1','30025-1','http://loinc.org','Coumaphos [Mass/volume] in Serum or Plasma','300251','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_30026-9','30026-9','http://loinc.org','Dichlorvos [Mass/volume] in Serum or Plasma','300269','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_30027-7','30027-7','http://loinc.org','Dimethoate [Mass/volume] in Serum or Plasma','300277','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_30028-5','30028-5','http://loinc.org','O-Ethyl O-(p-nitrophenyl) phenylphosphonothionate [Mass/volume] in Serum or Plasma','300285','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_31172-0','31172-0','http://loinc.org','Fonofos [Mass/volume] in Blood','311720','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_31173-8','31173-8','http://loinc.org','Mevinphos [Mass/volume] in Blood','311738','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_31174-6','31174-6','http://loinc.org','Terbufos [Mass/volume] in Blood','311746','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_31175-3','31175-3','http://loinc.org','Metasystox [Mass/volume] in Blood','311753','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_32651-2','32651-2','http://loinc.org','Ethion [Mass/volume] in Serum or Plasma','326512','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_32652-0','32652-0','http://loinc.org','Fenthion [Mass/volume] in Serum or Plasma','326520','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_35479-5','35479-5','http://loinc.org','Diazinon [Mass/volume] in Urine','354795','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_35480-3','35480-3','http://loinc.org','1-Naphthol [Mass/volume] in Urine','354803','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_35481-1','35481-1','http://loinc.org','Terbufos [Mass/volume] in Serum or Plasma','354811','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_35482-9','35482-9','http://loinc.org','Para nitrophenol [Mass/volume] in Serum or Plasma','354829','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_35483-7','35483-7','http://loinc.org','Mevinphos [Mass/volume] in Serum or Plasma','354837','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_35484-5','35484-5','http://loinc.org','Methyl parathion [Mass/volume] in Serum or Plasma','354845','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_35485-2','35485-2','http://loinc.org','Metasystox [Mass/volume] in Serum or Plasma','354852','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_35486-0','35486-0','http://loinc.org','Fonofos [Mass/volume] in Serum or Plasma','354860','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_35487-8','35487-8','http://loinc.org','Fenchlorphos [Mass/volume] in Serum or Plasma','354878','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_35488-6','35488-6','http://loinc.org','Diazinon [Mass/volume] in Serum or Plasma','354886','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_35489-4','35489-4','http://loinc.org','Chlorpyrifos [Mass/volume] in Serum or Plasma','354894','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_35490-2','35490-2','http://loinc.org','Azinphos-methyl [Mass/volume] in Serum or Plasma','354902','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_40705-6','40705-6','http://loinc.org','Brodifacoum [Mass/volume] in Blood','407056','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_40817-9','40817-9','http://loinc.org','Tetrachlorodiphenylethane [Presence] in Serum or Plasma','408179','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_42574-4','42574-4','http://loinc.org','1-Naphthol [Presence] in Urine','425744','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_42585-0','42585-0','http://loinc.org','Bendiocarb [Presence] in Urine','425850','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_42861-5','42861-5','http://loinc.org','Carbaryl [Presence] in Urine','428615','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_42862-3','42862-3','http://loinc.org','Carbofuran [Presence] in Urine','428623','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_43902-6','43902-6','http://loinc.org','Azinphos-methyl [Presence] in Blood','439026','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_43903-4','43903-4','http://loinc.org','Azinphos-methyl [Presence] in Serum or Plasma','439034','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_43904-2','43904-2','http://loinc.org','Azinphos-methyl [Presence] in Urine','439042','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_50893-7','50893-7','http://loinc.org','Paraquat [Moles/volume] in Serum or Plasma','508937','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_52961-0','52961-0','http://loinc.org','Paraquat [Presence] in Urine','529610','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_53643-3','53643-3','http://loinc.org','Dichlorodiphenyltrichloroethane [Presence] in Gastric fluid','536433','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_53644-1','53644-1','http://loinc.org','Carbaryl [Presence] in Gastric fluid','536441','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_53646-6','53646-6','http://loinc.org','Aldicarb [Presence] in Gastric fluid','536466','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_53649-0','53649-0','http://loinc.org','Parathion [Mass/volume] in Gastric fluid','536490','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_53650-8','53650-8','http://loinc.org','Methyl parathion [Mass/volume] in Gastric fluid','536508','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_54093-0','54093-0','http://loinc.org','Pesticides [Presence] in Gastric fluid by Screen method','540930','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_5638-2','5638-2','http://loinc.org','Diazinon [Mass/volume] in Blood','56382','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_5680-4','5680-4','http://loinc.org','Malathion [Mass/volume] in Serum or Plasma','56804','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_5708-3','5708-3','http://loinc.org','Paraquat [Mass/volume] in Blood','57083','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_5709-1','5709-1','http://loinc.org','Paraquat [Mass/volume] in Serum or Plasma','57091','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_59070-3','59070-3','http://loinc.org','Paraquat [Presence] in Serum or Plasma','590703','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_60036-1','60036-1','http://loinc.org','1-Naphthol [Mass/volume] in Blood','600361','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_60037-9','60037-9','http://loinc.org','1-Naphthol [Mass/volume] in Body fluid','600379','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_60038-7','60038-7','http://loinc.org','1-Naphthol [Mass/mass] in Tissue','600387','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_60070-0','60070-0','http://loinc.org','Dichlorvos [Mass/volume] in Blood','600700','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_60108-8','60108-8','http://loinc.org','Oxychlordane [Mass/volume] in Body fluid','601088','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_60109-6','60109-6','http://loinc.org','Oxychlordane [Mass/mass] in Tissue','601096','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_60129-4','60129-4','http://loinc.org','Paraoxon [Mass/volume] in Blood','601294','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_60130-2','60130-2','http://loinc.org','Paraoxon [Mass/volume] in Body fluid','601302','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_60131-0','60131-0','http://loinc.org','Paraoxon [Mass/mass] in Tissue','601310','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_60132-8','60132-8','http://loinc.org','Parathion [Mass/volume] in Blood','601328','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_60133-6','60133-6','http://loinc.org','Parathion [Mass/volume] in Body fluid','601336','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_60134-4','60134-4','http://loinc.org','Parathion [Mass/mass] in Tissue','601344','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_60182-3','60182-3','http://loinc.org','Temephos [Mass/volume] in Urine','601823','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_60197-1','60197-1','http://loinc.org','Triclopyr [Mass/volume] in Serum or Plasma','601971','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_74111-6','74111-6','http://loinc.org','Brodifacoum [Presence] in Specimen by Screen method','741116','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_74112-4','74112-4','http://loinc.org','Bromadiolone [Presence] in Specimen by Screen method','741124','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_80633-1','80633-1','http://loinc.org','Aldicarb [Mass/volume] in Urine','806331','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_80634-9','80634-9','http://loinc.org','Aldicarb sulfone [Mass/volume] in Urine','806349','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_80635-6','80635-6','http://loinc.org','Aldicarb sulfoxide [Mass/volume] in Urine','806356','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_87606-0','87606-0','http://loinc.org','Diphacinone [Mass/mass] in Specimen','876060','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_87611-0','87611-0','http://loinc.org','Bromadiolone [Mass/mass] in Specimen','876110','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_87612-8','87612-8','http://loinc.org','Brodifacoum [Mass/mass] in Specimen','876128','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_87630-0','87630-0','http://loinc.org','Mevinphos [Mass/mass] in Specimen','876300','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_87633-4','87633-4','http://loinc.org','Phorate [Mass/mass] in Specimen','876334','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_87634-2','87634-2','http://loinc.org','Aldicarb [Mass/mass] in Specimen','876342','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_87635-9','87635-9','http://loinc.org','Aldicarb sulfone [Mass/mass] in Specimen','876359','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_87637-5','87637-5','http://loinc.org','Fenchlorphos [Mass/mass] in Specimen','876375','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_87639-1','87639-1','http://loinc.org','Dichlorodiphenyltrichloroethane [Mass/mass] in Specimen','876391','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_87640-9','87640-9','http://loinc.org','Dichlorodiphenyldichloroethylene [Mass/mass] in Specimen','876409','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_87641-7','87641-7','http://loinc.org','o,p''- Dichlorodiphenyltrichloroethane [Mass/mass] in Specimen','876417','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_87646-6','87646-6','http://loinc.org','Methyl parathion [Mass/mass] in Specimen','876466','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_87647-4','87647-4','http://loinc.org','Methoxychlor [Mass/mass] in Specimen','876474','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_87648-2','87648-2','http://loinc.org','Malathion [Mass/mass] in Specimen','876482','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_87649-0','87649-0','http://loinc.org','Lindane [Mass/mass] in Specimen','876490','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_87651-6','87651-6','http://loinc.org','2,3,5-trimethylphenyl methylcarbamate [Mass/mass] in Specimen','876516','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_87653-2','87653-2','http://loinc.org','Hexachlorobenzene [Mass/mass] in Specimen','876532','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_87654-0','87654-0','http://loinc.org','Heptachlor [Mass/mass] in Specimen','876540','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_87655-7','87655-7','http://loinc.org','Heptachlor epoxide [Mass/mass] in Specimen','876557','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_87656-5','87656-5','http://loinc.org','Carbofuran [Mass/mass] in Specimen','876565','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_87657-3','87657-3','http://loinc.org','Fenthion [Mass/mass] in Specimen','876573','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_87659-9','87659-9','http://loinc.org','Parathion [Mass/mass] in Specimen','876599','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_87661-5','87661-5','http://loinc.org','Endosulfan I [Mass/mass] in Specimen','876615','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_87662-3','87662-3','http://loinc.org','Fonofos [Mass/mass] in Specimen','876623','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_87664-9','87664-9','http://loinc.org','Dimethoate [Mass/mass] in Specimen','876649','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_87665-6','87665-6','http://loinc.org','Dieldrin [Mass/mass] in Specimen','876656','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_87666-4','87666-4','http://loinc.org','Diazinon [Mass/mass] in Specimen','876664','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_87737-3','87737-3','http://loinc.org','3,4,5-trimethylphenyl methylcarbamate [Mass/mass] in Specimen','877373','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_87744-9','87744-9','http://loinc.org','Carbaryl [Mass/mass] in Specimen','877449','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_87745-6','87745-6','http://loinc.org','Carbophenothion [Mass/mass] in Specimen','877456','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_87747-2','87747-2','http://loinc.org','Chlorpyrifos [Mass/mass] in Specimen','877472','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_87748-0','87748-0','http://loinc.org','Coumaphos [Mass/mass] in Specimen','877480','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_87750-6','87750-6','http://loinc.org','Dichlorvos [Mass/mass] in Specimen','877506','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_87751-4','87751-4','http://loinc.org','Endosulfan II [Mass/mass] in Specimen','877514','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_87752-2','87752-2','http://loinc.org','O-Ethyl O-(p-nitrophenyl) phenylphosphonothionate [Mass/mass] in Specimen','877522','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_87753-0','87753-0','http://loinc.org','Propoxur [Mass/mass] in Specimen','877530','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_87754-8','87754-8','http://loinc.org','Terbufos [Mass/mass] in Specimen','877548','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_9371-6','9371-6','http://loinc.org','Chlorpyrifos [Mass/volume] in Blood','93716','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_9472-2','9472-2','http://loinc.org','Heptachlor [Mass/volume] in Serum or Plasma','94722','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_9473-0','9473-0','http://loinc.org','Heptachlorepoxide [Mass/volume] in Serum or Plasma','94730','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_9474-8','9474-8','http://loinc.org','Hexachlorobenzene [Mass/volume] in Serum or Plasma','94748','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_9502-6','9502-6','http://loinc.org','Carbophenothion [Mass/volume] in Specimen','95026','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_9681-8','9681-8','http://loinc.org','1-Naphthol [Mass/volume] in Serum or Plasma','96818','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_9684-2','9684-2','http://loinc.org','Bendiocarb [Mass/volume] in Serum or Plasma','96842','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_9688-3','9688-3','http://loinc.org','Carbaryl [Mass/volume] in Serum or Plasma','96883','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_9689-1','9689-1','http://loinc.org','Carbofuran [Mass/volume] in Serum or Plasma','96891','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_9694-1','9694-1','http://loinc.org','Propoxur [Mass/volume] in Serum or Plasma','96941','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_9789-9','9789-9','http://loinc.org','Carbamate pesticides [Type] in Serum or Plasma','97899','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_9790-7','9790-7','http://loinc.org','Methyl bromide [Mass/volume] in Serum or Plasma','97907','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_9791-5','9791-5','http://loinc.org','Organochlorine pesticides [Type] in Serum or Plasma','97915','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_9792-3','9792-3','http://loinc.org','Organophosphate pesticides [Identifier] in Blood','97923','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_9806-1','9806-1','http://loinc.org','2,4-Dichlorophenoxyacetate [Mass/volume] in Urine','98061','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.416_9827-7','9827-7','http://loinc.org','Paraquat [Mass/volume] in Urine','98277','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1182_29564-2','29564-2','http://loinc.org','Powassan virus IgG Ab [Titer] in Serum by Immunofluorescence','295642','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1182_30177-0','30177-0','http://loinc.org','Powassan virus IgG Ab [Titer] in Specimen by Immunofluorescence','301770','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1182_31573-9','31573-9','http://loinc.org','Powassan virus IgG Ab [Units/volume] in Serum','315739','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1182_31574-7','31574-7','http://loinc.org','Powassan virus IgG Ab [Units/volume] in Specimen','315747','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1182_40504-3','40504-3','http://loinc.org','Powassan virus Ab [Titer] in Serum by Complement fixation','405043','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1182_40513-4','40513-4','http://loinc.org','Powassan virus Ab [Titer] in Serum by Hemagglutination inhibition','405134','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1182_42973-8','42973-8','http://loinc.org','Powassan virus IgG Ab [Titer] in Specimen','429738','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1182_42974-6','42974-6','http://loinc.org','Powassan virus IgG Ab [Titer] in Serum','429746','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1182_42975-3','42975-3','http://loinc.org','Powassan virus Ab [Titer] in Serum','429753','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1182_95647-4','95647-4','http://loinc.org','Powassan virus neutralizing antibody [Titer] in Specimen by Neutralization test','956474','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1182_29565-9','29565-9','http://loinc.org','Powassan virus IgM Ab [Titer] in Serum by Immunofluorescence','295659','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1182_30179-6','30179-6','http://loinc.org','Powassan virus IgM Ab [Titer] in Specimen by Immunofluorescence','301796','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1182_31575-4','31575-4','http://loinc.org','Powassan virus IgM Ab [Units/volume] in Serum','315754','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1182_31576-2','31576-2','http://loinc.org','Powassan virus IgM Ab [Units/volume] in Specimen','315762','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1182_42971-2','42971-2','http://loinc.org','Powassan virus IgM Ab [Titer] in Specimen','429712','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1182_42972-0','42972-0','http://loinc.org','Powassan virus IgM Ab [Titer] in Serum','429720','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1181_10896-9','10896-9','http://loinc.org','Eastern equine encephalitis virus IgG Ab [Titer] in Serum by Immunofluorescence','108969','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1181_10897-7','10897-7','http://loinc.org','Eastern equine encephalitis virus IgG Ab [Titer] in Cerebral spinal fluid by Immunofluorescence','108977','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1181_13228-2','13228-2','http://loinc.org','Eastern equine encephalitis virus IgG Ab [Units/volume] in Cerebral spinal fluid','132282','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1181_13918-8','13918-8','http://loinc.org','Eastern equine encephalitis virus Ab [Titer] in Serum by Immunofluorescence','139188','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1181_20795-1','20795-1','http://loinc.org','Eastern equine encephalitis virus neutralizing antibody [Titer] in Serum by Neutralization test','207951','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1181_22257-0','22257-0','http://loinc.org','Eastern equine encephalitis virus Ab [Titer] in Serum','222570','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1181_22258-8','22258-8','http://loinc.org','Eastern equine encephalitis virus IgG Ab [Titer] in Cerebral spinal fluid','222588','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1181_22259-6','22259-6','http://loinc.org','Eastern equine encephalitis virus IgG Ab [Titer] in Serum','222596','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1181_23042-5','23042-5','http://loinc.org','Eastern equine encephalitis virus Ab [Titer] in Serum by Hemagglutination inhibition','230425','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1181_24213-1','24213-1','http://loinc.org','Eastern equine encephalitis virus Ab [Titer] in Serum by Immunofluorescence --1st specimen','242131','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1181_24214-9','24214-9','http://loinc.org','Eastern equine encephalitis virus Ab [Titer] in Serum by Immunofluorescence --2nd specimen','242149','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1181_24287-5','24287-5','http://loinc.org','Eastern equine encephalitis virus Ab [Titer] in Serum --1st specimen','242875','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1181_24288-3','24288-3','http://loinc.org','Eastern equine encephalitis virus Ab [Titer] in Serum --2nd specimen','242883','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1181_34723-7','34723-7','http://loinc.org','Eastern equine encephalitis virus Ab [Titer] in Cerebral spinal fluid','347237','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1181_38764-7','38764-7','http://loinc.org','Eastern equine encephalitis virus IgG Ab [Units/volume] in Specimen','387647','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1181_43329-2','43329-2','http://loinc.org','Eastern equine encephalitis virus Ab [Titer] in Serum by Complement fixation','433292','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1181_5134-2','5134-2','http://loinc.org','Eastern equine encephalitis virus Ab [Units/volume] in Serum','51342','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1181_7860-0','7860-0','http://loinc.org','Eastern equine encephalitis virus IgG Ab [Units/volume] in Serum','78600','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1181_95654-0','95654-0','http://loinc.org','Eastern equine encephalitis virus neutralizing antibody [Titer] in Specimen by Neutralization test','956540','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1181_10898-5','10898-5','http://loinc.org','Eastern equine encephalitis virus IgM Ab [Titer] in Serum by Immunofluorescence','108985','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1181_10899-3','10899-3','http://loinc.org','Eastern equine encephalitis virus IgM Ab [Titer] in Cerebral spinal fluid by Immunofluorescence','108993','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1181_13229-0','13229-0','http://loinc.org','Eastern equine encephalitis virus IgM Ab [Units/volume] in Cerebral spinal fluid','132290','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1181_22260-4','22260-4','http://loinc.org','Eastern equine encephalitis virus IgM Ab [Titer] in Cerebral spinal fluid','222604','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1181_22261-2','22261-2','http://loinc.org','Eastern equine encephalitis virus IgM Ab [Titer] in Serum','222612','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1181_38763-9','38763-9','http://loinc.org','Eastern equine encephalitis virus IgM Ab [Units/volume] in Specimen','387639','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1181_43330-0','43330-0','http://loinc.org','Eastern equine encephalitis virus IgM Ab [Titer] in Serum by Immunoassay','433300','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1181_7861-8','7861-8','http://loinc.org','Eastern equine encephalitis virus IgM Ab [Units/volume] in Serum','78618','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1184_29782-0','29782-0','http://loinc.org','Trivittatus virus neutralizing antibody [Titer] in Specimen by Neutralization test','297820','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1184_29795-2','29795-2','http://loinc.org','Trivittatus virus neutralizing antibody [Titer] in Cerebral spinal fluid by Neutralization test','297952','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1184_29808-3','29808-3','http://loinc.org','Trivittatus virus neutralizing antibody [Titer] in Serum by Neutralization test','298083','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1184_29821-6','29821-6','http://loinc.org','Trivittatus virus Ab [Titer] in Specimen','298216','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1184_29834-9','29834-9','http://loinc.org','Trivittatus virus Ab [Titer] in Cerebral spinal fluid','298349','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1184_29846-3','29846-3','http://loinc.org','Trivittatus virus Ab [Titer] in Serum','298463','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1184_31688-5','31688-5','http://loinc.org','Trivittatus virus Ab [Units/volume] in Cerebral spinal fluid','316885','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1184_31689-3','31689-3','http://loinc.org','Trivittatus virus Ab [Units/volume] in Serum','316893','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1184_31690-1','31690-1','http://loinc.org','Trivittatus virus Ab [Units/volume] in Specimen','316901','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1184_35694-9','35694-9','http://loinc.org','California encephalitis virus IgG Ab [Titer] in Serum','356949','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1184_35696-4','35696-4','http://loinc.org','California encephalitis virus Ab [Titer] in Cerebral spinal fluid','356964','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1184_43132-0','43132-0','http://loinc.org','California encephalitis virus Ab [Units/volume] in Serum Qualitative','431320','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1184_43931-5','43931-5','http://loinc.org','California encephalitis virus Ab [Titer] in Serum','439315','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1184_49138-1','49138-1','http://loinc.org','California encephalitis virus IgG Ab [Titer] in Cerebral spinal fluid by Immunofluorescence','491381','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1184_49140-7','49140-7','http://loinc.org','California encephalitis virus IgG Ab [Titer] in Serum by Immunofluorescence','491407','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1184_49194-4','49194-4','http://loinc.org','California encephalitis virus IgG Ab [Titer] in Cerebral spinal fluid','491944','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1184_49195-1','49195-1','http://loinc.org','California encephalitis virus IgG Ab [Units/volume] in Serum','491951','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1184_95638-3','95638-3','http://loinc.org','California encephalitis virus neutralizing antibody [Titer] in Specimen by Neutralization test','956383','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1184_10904-1','10904-1','http://loinc.org','La Crosse virus IgG Ab [Titer] in Serum by Immunofluorescence','109041','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1184_17036-5','17036-5','http://loinc.org','La Crosse virus Ab [Titer] in Serum','170365','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1184_17037-3','17037-3','http://loinc.org','La Crosse virus Ab [Titer] in Cerebral spinal fluid','170373','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1184_17038-1','17038-1','http://loinc.org','La Crosse virus IgG Ab [Titer] in Serum','170381','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1184_22373-5','22373-5','http://loinc.org','La Crosse virus IgG Ab [Titer] in Cerebral spinal fluid','223735','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1184_24209-9','24209-9','http://loinc.org','La Crosse virus Ab [Titer] in Serum by Immunofluorescence --1st specimen','242099','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1184_24210-7','24210-7','http://loinc.org','La Crosse virus Ab [Titer] in Serum by Immunofluorescence --2nd specimen','242107','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1184_24283-4','24283-4','http://loinc.org','La Crosse virus Ab [Titer] in Serum --1st specimen','242834','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1184_24284-2','24284-2','http://loinc.org','La Crosse virus Ab [Titer] in Serum --2nd specimen','242842','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1184_29561-8','29561-8','http://loinc.org','Jamestown canyon virus IgG Ab [Titer] in Serum by Immunofluorescence','295618','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1184_29562-6','29562-6','http://loinc.org','Jamestown canyon virus neutralizing antibody [Titer] in Serum by Neutralization test','295626','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1184_29563-4','29563-4','http://loinc.org','La Crosse virus neutralizing antibody [Titer] in Serum by Neutralization test','295634','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1184_29788-7','29788-7','http://loinc.org','Jamestown canyon virus IgG Ab [Units/volume] in Specimen by Immunofluorescence','297887','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1184_29801-8','29801-8','http://loinc.org','Jamestown canyon virus IgG Ab [Units/volume] in Cerebral spinal fluid by Immunofluorescence','298018','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1184_29814-1','29814-1','http://loinc.org','Jamestown canyon virus IgG Ab [Units/volume] in Serum by Immunofluorescence','298141','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1184_29827-3','29827-3','http://loinc.org','Jamestown canyon virus IgG Ab [Units/volume] in Specimen','298273','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1184_29839-8','29839-8','http://loinc.org','Jamestown canyon virus IgG Ab [Units/volume] in Cerebral spinal fluid','298398','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1184_29851-3','29851-3','http://loinc.org','Jamestown canyon virus IgG Ab [Units/volume] in Serum','298513','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1184_30174-7','30174-7','http://loinc.org','Jamestown canyon virus IgG Ab [Titer] in Specimen by Immunofluorescence','301747','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1184_31446-8','31446-8','http://loinc.org','Jamestown canyon virus Ab [Units/volume] in Serum','314468','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1184_31448-4','31448-4','http://loinc.org','La Crosse virus Ab [Units/volume] in Cerebral spinal fluid','314484','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1184_31450-0','31450-0','http://loinc.org','La Crosse virus IgG Ab [Units/volume] in Cerebral spinal fluid','314500','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1184_35697-2','35697-2','http://loinc.org','La Crosse virus Ab [Titer] in Serum by Complement fixation','356972','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1184_35709-5','35709-5','http://loinc.org','La Crosse virus Ab [Titer] in Body fluid','357095','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1184_40506-8','40506-8','http://loinc.org','Jamestown canyon virus Ab [Titer] in Serum by Immunofluorescence','405068','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1184_40507-6','40507-6','http://loinc.org','Jamestown canyon virus Ab [Titer] in Serum by Hemagglutination inhibition','405076','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1184_40510-0','40510-0','http://loinc.org','Snowshoe hare virus Ab [Titer] in Serum by Immunofluorescence','405100','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1184_40511-8','40511-8','http://loinc.org','Snowshoe hare virus Ab [Titer] in Serum by Hemagglutination inhibition','405118','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1184_42952-2','42952-2','http://loinc.org','Snowshoe hare virus Ab [Titer] in Serum','429522','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1184_43004-1','43004-1','http://loinc.org','Jamestown canyon virus IgG Ab [Titer] in Specimen','430041','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1184_43005-8','43005-8','http://loinc.org','Jamestown canyon virus IgG Ab [Titer] in Serum','430058','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1184_43006-6','43006-6','http://loinc.org','Jamestown canyon virus Ab [Titer] in Serum','430066','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1184_44746-6','44746-6','http://loinc.org','La Crosse virus Ab [Units/volume] in Serum by Immunofluorescence','447466','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1184_44748-2','44748-2','http://loinc.org','La Crosse virus Ab [Units/volume] in Serum by Immunoassay','447482','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1184_48716-5','48716-5','http://loinc.org','La Crosse virus IgG Ab [Units/volume] in Serum by Immunoassay','487165','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1184_5073-2','5073-2','http://loinc.org','La Crosse virus Ab [Units/volume] in Serum','50732','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1184_7940-0','7940-0','http://loinc.org','La Crosse virus IgG Ab [Units/volume] in Serum','79400','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1184_9538-0','9538-0','http://loinc.org','La Crosse virus Ab [Titer] in Cerebral spinal fluid by Immunofluorescence','95380','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1184_9539-8','9539-8','http://loinc.org','La Crosse virus IgG Ab [Titer] in Cerebral spinal fluid by Immunofluorescence','95398','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1184_95637-5','95637-5','http://loinc.org','Jamestown canyon virus neutralizing antibody [Titer] in Specimen by Neutralization test','956375','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1184_95642-5','95642-5','http://loinc.org','Snowshoe hare virus neutralizing antibody [Titer] in Specimen by Neutralization test','956425','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1184_95653-2','95653-2','http://loinc.org','La Crosse virus neutralizing antibody [Titer] in Specimen by Neutralization test','956532','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1184_29786-1','29786-1','http://loinc.org','Jamestown canyon virus IgM Ab [Units/volume] in Specimen by Immunofluorescence','297861','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1184_29799-4','29799-4','http://loinc.org','Jamestown canyon virus IgM Ab [Units/volume] in Cerebral spinal fluid by Immunofluorescence','297994','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1184_29812-5','29812-5','http://loinc.org','Jamestown canyon virus IgM Ab [Units/volume] in Serum by Immunofluorescence','298125','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1184_29825-7','29825-7','http://loinc.org','Jamestown canyon virus IgM Ab [Units/volume] in Specimen','298257','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1184_29837-2','29837-2','http://loinc.org','Jamestown canyon virus IgM Ab [Units/volume] in Cerebral spinal fluid','298372','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1184_29849-7','29849-7','http://loinc.org','Jamestown canyon virus IgM Ab [Units/volume] in Serum','298497','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1184_35695-6','35695-6','http://loinc.org','California encephalitis virus IgM Ab [Titer] in Serum','356956','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1184_40508-4','40508-4','http://loinc.org','Jamestown canyon virus IgM Ab [Titer] in Serum by Neutralization test','405084','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1184_43003-3','43003-3','http://loinc.org','Jamestown canyon virus IgM Ab [Titer] in Serum','430033','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1184_49139-9','49139-9','http://loinc.org','California encephalitis virus IgM Ab [Titer] in Cerebral spinal fluid by Immunofluorescence','491399','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1184_49141-5','49141-5','http://loinc.org','California encephalitis virus IgM Ab [Titer] in Serum by Immunofluorescence','491415','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1184_49193-6','49193-6','http://loinc.org','California encephalitis virus IgM Ab [Titer] in Cerebral spinal fluid','491936','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1184_62946-9','62946-9','http://loinc.org','Jamestown canyon virus IgM Ab [Titer] in Body fluid by Immunofluorescence','629469','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1184_10905-8','10905-8','http://loinc.org','La Crosse virus IgM Ab [Titer] in Serum by Immunofluorescence','109058','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1184_17039-9','17039-9','http://loinc.org','La Crosse virus IgM Ab [Titer] in Serum','170399','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1184_22375-0','22375-0','http://loinc.org','La Crosse virus IgM Ab [Titer] in Cerebral spinal fluid','223750','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1184_31451-8','31451-8','http://loinc.org','La Crosse virus IgM Ab [Units/volume] in Cerebral spinal fluid','314518','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1184_40509-2','40509-2','http://loinc.org','Snowshoe hare virus IgM Ab [Titer] in Serum by Neutralization test','405092','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1184_42953-0','42953-0','http://loinc.org','Snowshoe hare virus IgM Ab [Titer] in Serum','429530','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1184_44822-5','44822-5','http://loinc.org','La Crosse virus IgM Ab [Titer] in Serum by Immunoassay','448225','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1184_7941-8','7941-8','http://loinc.org','La Crosse virus IgM Ab [Units/volume] in Serum','79418','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1184_9540-6','9540-6','http://loinc.org','La Crosse virus IgM Ab [Titer] in Cerebral spinal fluid by Immunofluorescence','95406','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1183_17769-1','17769-1','http://loinc.org','Western equine encephalitis virus Ab [Titer] in Cerebral spinal fluid','177691','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1183_17770-9','17770-9','http://loinc.org','Western equine encephalitis virus Ab [Titer] in Serum','177709','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1183_20982-5','20982-5','http://loinc.org','Western equine encephalitis virus neutralizing antibody [Titer] in Serum by Neutralization test','209825','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1183_22613-4','22613-4','http://loinc.org','Western equine encephalitis virus IgG Ab [Titer] in Cerebral spinal fluid','226134','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1183_22614-2','22614-2','http://loinc.org','Western equine encephalitis virus IgG Ab [Titer] in Serum','226142','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1183_23584-6','23584-6','http://loinc.org','Western equine encephalitis virus Ab [Titer] in Serum by Hemagglutination inhibition','235846','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1183_24211-5','24211-5','http://loinc.org','Western equine encephalitis virus Ab [Titer] in Serum by Immunofluorescence --1st specimen','242115','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1183_24212-3','24212-3','http://loinc.org','Western equine encephalitis virus Ab [Titer] in Serum by Immunofluorescence --2nd specimen','242123','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1183_24285-9','24285-9','http://loinc.org','Western equine encephalitis virus Ab [Titer] in Serum --1st specimen','242859','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1183_24286-7','24286-7','http://loinc.org','Western equine encephalitis virus Ab [Titer] in Serum --2nd specimen','242867','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1183_31705-7','31705-7','http://loinc.org','Western equine encephalitis virus Ab [Units/volume] in Cerebral spinal fluid','317057','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1183_31706-5','31706-5','http://loinc.org','Western equine encephalitis virus IgG Ab [Units/volume] in Cerebral spinal fluid','317065','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1183_41175-1','41175-1','http://loinc.org','Western equine encephalitis virus Ab [Titer] in Body fluid','411751','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1183_41183-5','41183-5','http://loinc.org','Western equine encephalitis virus Ab [Titer] in Serum by Complement fixation','411835','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1183_5406-4','5406-4','http://loinc.org','Western equine encephalitis virus Ab [Units/volume] in Serum','54064','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1183_6957-5','6957-5','http://loinc.org','Western equine encephalitis virus IgG Ab [Titer] in Serum by Immunofluorescence','69575','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1183_8052-3','8052-3','http://loinc.org','Western equine encephalitis virus IgG Ab [Units/volume] in Serum','80523','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1183_9314-6','9314-6','http://loinc.org','Western equine encephalitis virus Ab [Titer] in Cerebral spinal fluid by Immunofluorescence','93146','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1183_9315-3','9315-3','http://loinc.org','Western equine encephalitis virus IgG Ab [Titer] in Cerebral spinal fluid by Immunofluorescence','93153','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1183_95655-7','95655-7','http://loinc.org','Western equine encephalitis virus neutralizing antibody [Titer] in Specimen by Neutralization test','956557','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1183_9581-0','9581-0','http://loinc.org','Western equine encephalitis virus Ab [Titer] in Serum by Immunofluorescence','95810','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1183_22615-9','22615-9','http://loinc.org','Western equine encephalitis virus IgM Ab [Titer] in Cerebral spinal fluid','226159','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1183_22616-7','22616-7','http://loinc.org','Western equine encephalitis virus IgM Ab [Titer] in Serum','226167','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1183_34956-3','34956-3','http://loinc.org','Western equine encephalitis virus IgM Ab [Units/volume] in Cerebral spinal fluid','349563','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1183_6958-3','6958-3','http://loinc.org','Western equine encephalitis virus IgM Ab [Titer] in Serum by Immunofluorescence','69583','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1183_8053-1','8053-1','http://loinc.org','Western equine encephalitis virus IgM Ab [Units/volume] in Serum','80531','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1183_9316-1','9316-1','http://loinc.org','Western equine encephalitis virus IgM Ab [Titer] in Cerebral spinal fluid by Immunofluorescence','93161','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.240_14468-3','14468-3','http://loinc.org','Chlamydia trachomatis Ag [Presence] in Blood by Immunoassay','144683','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.240_14469-1','14469-1','http://loinc.org','Chlamydia trachomatis Ag [Presence] in Cerebral spinal fluid by Immunoassay','144691','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.240_14470-9','14470-9','http://loinc.org','Chlamydia trachomatis Ag [Presence] in Cervix by Immunoassay','144709','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.240_14471-7','14471-7','http://loinc.org','Chlamydia trachomatis Ag [Presence] in Vaginal fluid by Immunoassay','144717','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.240_14472-5','14472-5','http://loinc.org','Chlamydia trachomatis Ag [Presence] in Urethra by Immunoassay','144725','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.240_14474-1','14474-1','http://loinc.org','Chlamydia trachomatis Ag [Presence] in Urine sediment by Immunoassay','144741','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.240_14507-8','14507-8','http://loinc.org','Chlamydia trachomatis Ag [Presence] in Blood by Immunofluorescence','145078','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.240_14508-6','14508-6','http://loinc.org','Chlamydia trachomatis Ag [Presence] in Cerebral spinal fluid by Immunofluorescence','145086','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.240_14509-4','14509-4','http://loinc.org','Chlamydia trachomatis Ag [Presence] in Cervix by Immunofluorescence','145094','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.240_14510-2','14510-2','http://loinc.org','Chlamydia trachomatis Ag [Presence] in Vaginal fluid by Immunofluorescence','145102','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.240_14511-0','14511-0','http://loinc.org','Chlamydia trachomatis Ag [Presence] in Urethra by Immunofluorescence','145110','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.240_14513-6','14513-6','http://loinc.org','Chlamydia trachomatis Ag [Presence] in Urine sediment by Immunofluorescence','145136','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.240_31768-5','31768-5','http://loinc.org','Chlamydia trachomatis Ag [Presence] in Blood','317685','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.240_31769-3','31769-3','http://loinc.org','Chlamydia trachomatis Ag [Presence] in Conjunctival specimen','317693','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.240_31770-1','31770-1','http://loinc.org','Chlamydia trachomatis Ag [Presence] in Cerebral spinal fluid','317701','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.240_31771-9','31771-9','http://loinc.org','Chlamydia trachomatis Ag [Presence] in Cervix','317719','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.240_31772-7','31772-7','http://loinc.org','Chlamydia trachomatis Ag [Presence] in Vaginal fluid','317727','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.240_31774-3','31774-3','http://loinc.org','Chlamydia trachomatis Ag [Presence] in Stool','317743','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.240_31775-0','31775-0','http://loinc.org','Chlamydia trachomatis Ag [Presence] in Urine sediment','317750','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.240_31776-8','31776-8','http://loinc.org','Chlamydia trachomatis Ag [Presence] in Urethra','317768','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.240_31777-6','31777-6','http://loinc.org','Chlamydia trachomatis Ag [Presence] in Specimen','317776','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.240_34709-6','34709-6','http://loinc.org','Chlamydia trachomatis Ag [Presence] in Nasopharynx','347096','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.240_34710-4','34710-4','http://loinc.org','Chlamydia trachomatis Ag [Presence] in Anal','347104','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.240_45091-6','45091-6','http://loinc.org','Chlamydia trachomatis Ag [Presence] in Genital specimen','450916','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.240_45092-4','45092-4','http://loinc.org','Chlamydia trachomatis Ag [Presence] in Nasopharynx by Immunoassay','450924','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.240_47234-0','47234-0','http://loinc.org','Chlamydia trachomatis Ag [Presence] in Body fluid','472340','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.240_6350-3','6350-3','http://loinc.org','Chlamydia trachomatis Ag [Presence] in Conjunctival specimen by Immunoassay','63503','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.240_6351-1','6351-1','http://loinc.org','Chlamydia trachomatis Ag [Presence] in Conjunctival specimen by Immunofluorescence','63511','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.240_6352-9','6352-9','http://loinc.org','Chlamydia trachomatis Ag [Presence] in Stool by Immunofluorescence','63529','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.240_6353-7','6353-7','http://loinc.org','Chlamydia trachomatis Ag [Presence] in Tissue by Immunofluorescence','63537','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.240_6354-5','6354-5','http://loinc.org','Chlamydia trachomatis Ag [Presence] in Specimen by Immunoassay','63545','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.240_6355-2','6355-2','http://loinc.org','Chlamydia trachomatis Ag [Presence] in Specimen by Immunofluorescence','63552','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.240_91860-7','91860-7','http://loinc.org','Chlamydia trachomatis Ag [Presence] in Genital specimen by Immunofluorescence','918607','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.240_91861-5','91861-5','http://loinc.org','Chlamydia trachomatis Ag [Presence] in Aspirate by Immunofluorescence','918615','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.240_91873-0','91873-0','http://loinc.org','Chlamydia trachomatis Ag [Presence] in Throat by Immunofluorescence','918730','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.240_99105-9','99105-9','http://loinc.org','Chlamydia trachomatis Ag [Presence] in Serum or Plasma by Immunoassay','991059','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.483_48873-4','48873-4','http://loinc.org','Ehrlichia sp identified in Specimen by Organism specific culture','488734','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.484_48872-6','48872-6','http://loinc.org','Anaplasma phagocytophilum [Presence] in Specimen by Organism specific culture','488726','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1180_104364-5','104364-5','http://loinc.org','Chikungunya virus IgG Ab [Titer] in Serum by Immunoassay --1st specimen','1043645','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1180_40505-0','40505-0','http://loinc.org','Chikungunya virus Ab [Titer] in Serum by Hemagglutination inhibition','405050','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1180_43064-5','43064-5','http://loinc.org','Chikungunya virus Ab [Titer] in Serum','430645','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1180_56128-2','56128-2','http://loinc.org','Chikungunya virus IgG Ab [Titer] in Serum or Plasma by Immunofluorescence','561282','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1180_83068-7','83068-7','http://loinc.org','Chikungunya virus structural proteins (E1+E2) IgG Ab [Units/volume] in Serum or Plasma by Immunoassay','830687','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1180_95649-0','95649-0','http://loinc.org','Chikungunya virus neutralizing antibody [Titer] in Specimen by Neutralization test','956490','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1180_97866-8','97866-8','http://loinc.org','Chikungunya virus IgG Ab [Units/volume] in Serum or Plasma by Immunoassay','978668','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1180_56130-8','56130-8','http://loinc.org','Chikungunya virus IgM Ab [Titer] in Serum or Plasma by Immunofluorescence','561308','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1180_83067-9','83067-9','http://loinc.org','Chikungunya virus structural proteins (E1+E2) IgM Ab [Units/volume] in Serum or Plasma by Immunoassay','830679','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1180_97867-6','97867-6','http://loinc.org','Chikungunya virus IgM Ab [Units/volume] in Serum or Plasma by Immunoassay','978676','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.485_22797-5','22797-5','http://loinc.org','Anaplasma marginale DNA [Presence] in Tissue by NAA with probe detection','227975','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.485_22798-3','22798-3','http://loinc.org','Anaplasma marginale rRNA [Presence] in Tissue by Probe','227983','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.485_30039-2','30039-2','http://loinc.org','Anaplasma phagocytophilum DNA [Presence] in Blood by NAA with probe detection','300392','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.485_49122-5','49122-5','http://loinc.org','Anaplasma sp identified in Specimen by Sequencing','491225','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.485_87558-3','87558-3','http://loinc.org','Anaplasma phagocytophilum groEL gene [Presence] in Blood by NAA with non-probe detection','875583','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.485_94617-8','94617-8','http://loinc.org','Anaplasma marginale DNA [Cycle Threshold #] in Specimen by NAA with probe detection','946178','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.485_29560-0','29560-0','http://loinc.org','Anaplasma phagocytophilum DNA [Presence] in Specimen by NAA with probe detection','295600','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.244_21414-8','21414-8','http://loinc.org','Neisseria gonorrhoeae DNA [Presence] in Cervical mucus by NAA with probe detection','214148','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.244_21415-5','21415-5','http://loinc.org','Neisseria gonorrhoeae DNA [Presence] in Urethra by NAA with probe detection','214155','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.244_21416-3','21416-3','http://loinc.org','Neisseria gonorrhoeae DNA [Presence] in Urine by NAA with probe detection','214163','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.244_24111-7','24111-7','http://loinc.org','Neisseria gonorrhoeae DNA [Presence] in Specimen by NAA with probe detection','241117','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.244_32198-4','32198-4','http://loinc.org','Neisseria gonorrhoeae rRNA [Presence] in Cervix by Probe','321984','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.244_32199-2','32199-2','http://loinc.org','Neisseria gonorrhoeae rRNA [Presence] in Urethra by Probe','321992','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.244_32705-6','32705-6','http://loinc.org','Neisseria gonorrhoeae DNA [Presence] in Vaginal fluid by NAA with probe detection','327056','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.244_33904-4','33904-4','http://loinc.org','Neisseria gonorrhoeae rRNA [Presence] in Conjunctival specimen by Probe','339044','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.244_35735-0','35735-0','http://loinc.org','Neisseria gonorrhoeae DNA [Presence] in Conjunctival specimen by NAA with probe detection','357350','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.244_43305-2','43305-2','http://loinc.org','Neisseria gonorrhoeae rRNA [Presence] in Specimen by NAA with probe detection','433052','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.244_43403-5','43403-5','http://loinc.org','Neisseria gonorrhoeae DNA [Presence] in Specimen by Probe with signal amplification','434035','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.244_47387-6','47387-6','http://loinc.org','Neisseria gonorrhoeae DNA [Presence] in Genital specimen by NAA with probe detection','473876','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.244_5028-6','5028-6','http://loinc.org','Neisseria gonorrhoeae rRNA [Presence] in Specimen by Probe','50286','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.244_50388-8','50388-8','http://loinc.org','Neisseria gonorrhoeae rRNA [Presence] in Cervix by NAA with probe detection','503888','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.244_53879-3','53879-3','http://loinc.org','Neisseria gonorrhoeae rRNA [Presence] in Vaginal fluid by NAA with probe detection','538793','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.244_53927-0','53927-0','http://loinc.org','Neisseria gonorrhoeae rRNA [Presence] in Urethra by NAA with probe detection','539270','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.244_57180-2','57180-2','http://loinc.org','Neisseria gonorrhoeae DNA [Presence] in Nasopharynx by NAA with probe detection','571802','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.244_57289-1','57289-1','http://loinc.org','Neisseria gonorrhoeae rRNA [Presence] in Nasopharynx by NAA with probe detection','572891','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.244_57458-2','57458-2','http://loinc.org','Neisseria gonorrhoeae rRNA [Presence] in Anal by NAA with probe detection','574582','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.244_60255-7','60255-7','http://loinc.org','Neisseria gonorrhoeae rRNA [Presence] in Throat by NAA with probe detection','602557','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.244_60256-5','60256-5','http://loinc.org','Neisseria gonorrhoeae rRNA [Presence] in Urine by NAA with probe detection','602565','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.244_80366-8','80366-8','http://loinc.org','Neisseria gonorrhoeae rRNA [Presence] in Anorectal by NAA with probe detection','803668','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.244_88224-1','88224-1','http://loinc.org','Neisseria gonorrhoeae DNA [Presence] in Anorectal by NAA with probe detection','882241','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.244_88225-8','88225-8','http://loinc.org','Neisseria gonorrhoeae DNA [Presence] in Throat by NAA with probe detection','882258','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.244_96599-6','96599-6','http://loinc.org','Neisseria gonorrhoeae DNA [Presence] in Cervix by NAA with probe detection','965996','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.244_97626-6','97626-6','http://loinc.org','Neisseria gonorrhoeae DNA [Presence] in Synovial fluid by NAA with non-probe detection','976266','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.244_99779-1','99779-1','http://loinc.org','Neisseria gonorrhoeae rRNA [Presence] in Conjunctival specimen by NAA with probe detection','997791','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.244_100356-5','100356-5','http://loinc.org','Chlamydia trachomatis and Neisseria gonorrhoeae and Trichomonas vaginalis DNA [Identifier] in Specimen by NAA with probe detection','1003565','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.244_36902-5','36902-5','http://loinc.org','Chlamydia trachomatis+Neisseria gonorrhoeae DNA [Presence] in Specimen by NAA with probe detection','369025','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.244_36903-3','36903-3','http://loinc.org','Chlamydia trachomatis and Neisseria gonorrhoeae DNA [Identifier] in Specimen by NAA with probe detection','369033','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.244_43405-0','43405-0','http://loinc.org','Chlamydia trachomatis and Neisseria gonorrhoeae DNA [Identifier] in Specimen by Probe with signal amplification','434050','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.244_43406-8','43406-8','http://loinc.org','Chlamydia trachomatis+Neisseria gonorrhoeae DNA [Presence] in Specimen by Probe with signal amplification','434068','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.244_44806-8','44806-8','http://loinc.org','Chlamydia trachomatis+Neisseria gonorrhoeae DNA [Presence] in Urine by NAA with probe detection','448068','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.244_44807-6','44807-6','http://loinc.org','Chlamydia trachomatis+Neisseria gonorrhoeae DNA [Presence] in Genital specimen by NAA with probe detection','448076','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.244_45067-6','45067-6','http://loinc.org','Chlamydia trachomatis+Neisseria gonorrhoeae rRNA [Presence] in Cervix by Probe','450676','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.244_45068-4','45068-4','http://loinc.org','Chlamydia trachomatis+Neisseria gonorrhoeae DNA [Presence] in Cervix by NAA with probe detection','450684','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.244_45069-2','45069-2','http://loinc.org','Chlamydia trachomatis+Neisseria gonorrhoeae rRNA [Presence] in Genital specimen by Probe','450692','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.244_45070-0','45070-0','http://loinc.org','Chlamydia trachomatis+Neisseria gonorrhoeae rRNA [Presence] in Vaginal fluid by Probe','450700','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.244_45072-6','45072-6','http://loinc.org','Chlamydia trachomatis+Neisseria gonorrhoeae rRNA [Presence] in Anal by Probe','450726','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.244_45073-4','45073-4','http://loinc.org','Chlamydia trachomatis+Neisseria gonorrhoeae rRNA [Presence] in Tissue by Probe','450734','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.244_45074-2','45074-2','http://loinc.org','Chlamydia trachomatis+Neisseria gonorrhoeae rRNA [Presence] in Urine by Probe','450742','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.244_45075-9','45075-9','http://loinc.org','Chlamydia trachomatis+Neisseria gonorrhoeae rRNA [Presence] in Urethra by Probe','450759','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.244_45076-7','45076-7','http://loinc.org','Chlamydia trachomatis+Neisseria gonorrhoeae rRNA [Presence] in Specimen by Probe','450767','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.244_80360-1','80360-1','http://loinc.org','Chlamydia trachomatis+Neisseria gonorrhoeae rRNA [Presence] in Urine by NAA with probe detection','803601','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.244_80361-9','80361-9','http://loinc.org','Chlamydia trachomatis+Neisseria gonorrhoeae rRNA [Presence] in Cervix by NAA with probe detection','803619','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.244_80362-7','80362-7','http://loinc.org','Chlamydia trachomatis+Neisseria gonorrhoeae rRNA [Presence] in Vaginal fluid by NAA with probe detection','803627','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.244_80365-0','80365-0','http://loinc.org','Chlamydia trachomatis+Neisseria gonorrhoeae rRNA [Presence] in Anorectal by NAA with probe detection','803650','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.486_27994-3','27994-3','http://loinc.org','Ehrlichia chaffeensis DNA [Presence] in Blood by NAA with probe detection','279943','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.486_87559-1','87559-1','http://loinc.org','Ehrlichia chaffeensis groEL gene [Presence] in Blood by NAA with non-probe detection','875591','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.486_87560-9','87560-9','http://loinc.org','Ehrlichia canis+ewingii groEL gene [Presence] in Blood by NAA with non-probe detection','875609','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.486_87561-7','87561-7','http://loinc.org','Ehrlichia muris eauclairensis groEL gene [Presence] in Blood by NAA with non-probe detection','875617','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.486_24042-4','24042-4','http://loinc.org','Ehrlichia chaffeensis DNA [Presence] in Specimen by NAA with probe detection','240424','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.486_48865-0','48865-0','http://loinc.org','Ehrlichia ewingii DNA [Presence] in Specimen by NAA with probe detection','488650','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.486_48866-8','48866-8','http://loinc.org','Ehrlichia sp DNA [Presence] in Specimen by NAA with probe detection','488668','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.486_49125-8','49125-8','http://loinc.org','Ehrlichia sp identified in Specimen by Sequencing','491258','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.245_14127-5','14127-5','http://loinc.org','Neisseria gonorrhoeae [Presence] in Anal by Organism specific culture','141275','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.245_30099-6','30099-6','http://loinc.org','Neisseria gonorrhoeae [Presence] in Conjunctival specimen by Organism specific culture','300996','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.245_688-2','688-2','http://loinc.org','Neisseria gonorrhoeae [Presence] in Cervix by Organism specific culture','6882','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.245_690-8','690-8','http://loinc.org','Neisseria gonorrhoeae [Presence] in Endometrium by Organism specific culture','6908','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.245_691-6','691-6','http://loinc.org','Neisseria gonorrhoeae [Presence] in Genital specimen by Organism specific culture','6916','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.245_692-4','692-4','http://loinc.org','Neisseria gonorrhoeae [Presence] in Genital lochia by Organism specific culture','6924','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.245_693-2','693-2','http://loinc.org','Neisseria gonorrhoeae [Presence] in Vaginal fluid by Organism specific culture','6932','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.245_694-0','694-0','http://loinc.org','Neisseria gonorrhoeae [Presence] in Semen by Organism specific culture','6940','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.245_695-7','695-7','http://loinc.org','Neisseria gonorrhoeae [Presence] in Synovial fluid by Organism specific culture','6957','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.245_696-5','696-5','http://loinc.org','Neisseria gonorrhoeae [Presence] in Throat by Organism specific culture','6965','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.245_697-3','697-3','http://loinc.org','Neisseria gonorrhoeae [Presence] in Urethra by Organism specific culture','6973','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.245_698-1','698-1','http://loinc.org','Neisseria gonorrhoeae [Presence] in Specimen by Organism specific culture','6981','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.245_80368-4','80368-4','http://loinc.org','Neisseria gonorrhoeae [Presence] in Anorectal by Organism specific culture','803684','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.245_91781-5','91781-5','http://loinc.org','Neisseria gonorrhoeae [Presence] in Aspirate by Organism specific culture','917815','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.487_54035-1','54035-1','http://loinc.org','Ehrlichia chaffeensis Ag [Presence] in Tissue by Immune stain','540351','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1189_24016-8','24016-8','http://loinc.org','La Crosse virus Ab [Interpretation] in Serum','240168','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1189_26642-9','26642-9','http://loinc.org','Jamestown canyon virus Ab [Presence] in Serum','266429','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1189_26649-4','26649-4','http://loinc.org','Snowshoe hare virus Ab [Presence] in Serum','266494','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1189_29789-5','29789-5','http://loinc.org','La Crosse virus IgG Ab [Presence] in Specimen by Immunofluorescence','297895','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1189_29802-6','29802-6','http://loinc.org','La Crosse virus IgG Ab [Presence] in Cerebral spinal fluid by Immunofluorescence','298026','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1189_29815-8','29815-8','http://loinc.org','La Crosse virus IgG Ab [Presence] in Serum by Immunofluorescence','298158','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1189_29828-1','29828-1','http://loinc.org','La Crosse virus IgG Ab [Presence] in Specimen','298281','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1189_29840-6','29840-6','http://loinc.org','La Crosse virus IgG Ab [Presence] in Cerebral spinal fluid','298406','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1189_29852-1','29852-1','http://loinc.org','La Crosse virus IgG Ab [Presence] in Serum','298521','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1189_30175-4','30175-4','http://loinc.org','Jamestown canyon virus neutralizing antibody [Presence] in Specimen by Neutralization test','301754','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1189_30176-2','30176-2','http://loinc.org','La Crosse virus neutralizing antibody [Presence] in Specimen by Neutralization test','301762','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1189_31449-2','31449-2','http://loinc.org','La Crosse virus Ab [Presence] in Specimen','314492','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1189_40736-1','40736-1','http://loinc.org','La Crosse virus Ab [Presence] in Serum by Hemagglutination inhibition','407361','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1189_41133-0','41133-0','http://loinc.org','Jamestown canyon virus Ab [Presence] in Specimen','411330','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1189_44744-1','44744-1','http://loinc.org','La Crosse virus Ab [Presence] in Serum by Immunofluorescence','447441','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1189_44745-8','44745-8','http://loinc.org','La Crosse virus Ab [Presence] in Serum by Immunoassay','447458','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1189_44747-4','44747-4','http://loinc.org','La Crosse virus Ab [Presence] in Serum','447474','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1189_49067-2','49067-2','http://loinc.org','La Crosse virus IgG and IgM [Interpretation] in Cerebral spinal fluid','490672','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1189_49142-3','49142-3','http://loinc.org','La Crosse virus IgG and IgM [Interpretation] in Serum','491423','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1189_50038-9','50038-9','http://loinc.org','Snowshoe hare virus neutralizing antibody [Presence] in Specimen by Neutralization test','500389','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1189_52823-2','52823-2','http://loinc.org','La Crosse virus IgG Ab [Presence] in Serum by Immunoassay','528232','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1189_53385-1','53385-1','http://loinc.org','Snowshoe hare virus Ab [Presence] in Specimen','533851','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1189_57853-4','57853-4','http://loinc.org','Snowshoe hare virus IgG Ab [Presence] in Serum by Immunoassay','578534','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1189_62433-8','62433-8','http://loinc.org','La Crosse virus IgG Ab [Presence] in Body fluid by Immunoassay','624338','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1189_74823-6','74823-6','http://loinc.org','Jamestown canyon virus Ab [Presence] in Serum by Immunoassay','748236','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1189_74827-7','74827-7','http://loinc.org','Snowshoe hare virus Ab [Presence] in Serum by Hemagglutination inhibition','748277','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1189_74828-5','74828-5','http://loinc.org','Snowshoe hare virus neutralizing antibody [Presence] in Serum by Neutralization test','748285','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1189_74829-3','74829-3','http://loinc.org','Snowshoe hare virus IgG Ab [Presence] in Serum by Immunofluorescence','748293','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1189_88456-9','88456-9','http://loinc.org','California encephalitis virus IgG+IgM Ab [Interpretation] in Serum Qualitative by Immunofluorescence','884569','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1189_95664-9','95664-9','http://loinc.org','Jamestown canyon virus IgG Ab [Presence] in Specimen by Immunoassay','956649','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1189_95665-6','95665-6','http://loinc.org','Snowshoe hare virus IgG Ab [Presence] in Specimen by Immunoassay','956656','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1189_95697-9','95697-9','http://loinc.org','Snowshoe hare virus IgA Ab [Presence] in Specimen by Immunoassay','956979','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1189_95710-0','95710-0','http://loinc.org','La Crosse virus IgA Ab [Presence] in Specimen by Immunoassay','957100','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1189_96507-9','96507-9','http://loinc.org','California encephalitis virus IgG Ab [Presence] in Specimen by Immunoassay','965079','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1189_29787-9','29787-9','http://loinc.org','Jamestown canyon virus IgM Ab [Presence] in Specimen by Immunofluorescence','297879','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1189_29790-3','29790-3','http://loinc.org','La Crosse virus IgM Ab [Presence] in Specimen by Immunofluorescence','297903','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1189_29800-0','29800-0','http://loinc.org','Jamestown canyon virus IgM Ab [Presence] in Cerebral spinal fluid by Immunofluorescence','298000','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1189_29803-4','29803-4','http://loinc.org','La Crosse virus IgM Ab [Presence] in Cerebral spinal fluid by Immunofluorescence','298034','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1189_29813-3','29813-3','http://loinc.org','Jamestown canyon virus IgM Ab [Presence] in Serum by Immunofluorescence','298133','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1189_29816-6','29816-6','http://loinc.org','La Crosse virus IgM Ab [Presence] in Serum by Immunofluorescence','298166','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1189_29826-5','29826-5','http://loinc.org','Jamestown canyon virus IgM Ab [Presence] in Specimen','298265','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1189_29829-9','29829-9','http://loinc.org','La Crosse virus IgM Ab [Presence] in Specimen','298299','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1189_29838-0','29838-0','http://loinc.org','Jamestown canyon virus IgM Ab [Presence] in Cerebral spinal fluid','298380','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1189_29841-4','29841-4','http://loinc.org','La Crosse virus IgM Ab [Presence] in Cerebral spinal fluid','298414','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1189_29850-5','29850-5','http://loinc.org','Jamestown canyon virus IgM Ab [Presence] in Serum','298505','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1189_29853-9','29853-9','http://loinc.org','La Crosse virus IgM Ab [Presence] in Serum','298539','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1189_52824-0','52824-0','http://loinc.org','La Crosse virus IgM Ab [Presence] in Serum by Immunoassay','528240','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1189_52825-7','52825-7','http://loinc.org','La Crosse virus IgM Ab [Presence] in Cerebral spinal fluid by Immunoassay','528257','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1189_55379-2','55379-2','http://loinc.org','Snowshoe hare virus IgM Ab [Presence] in Serum by Immunoassay','553792','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1189_62432-0','62432-0','http://loinc.org','La Crosse virus IgM Ab [Presence] in Body fluid by Immunoassay','624320','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1189_74846-7','74846-7','http://loinc.org','Snowshoe hare virus IgM Ab [Presence] in Serum by Immunofluorescence','748467','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1189_95680-5','95680-5','http://loinc.org','Snowshoe hare virus IgM Ab [Presence] in Specimen by Immunoassay','956805','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1189_96537-6','96537-6','http://loinc.org','California encephalitis virus IgM Ab [Presence] in Specimen by Immunoassay','965376','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2039_16277-6','16277-6','http://loinc.org','Bartonella quintana DNA [Presence] in Blood by NAA with probe detection','162776','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2039_89592-0','89592-0','http://loinc.org','Bartonella quintana DNA [Presence] in Tissue by NAA with probe detection','895920','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2039_91863-1','91863-1','http://loinc.org','Bartonella quintana DNA [Presence] in Aspirate by NAA with probe detection','918631','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2039_17546-3','17546-3','http://loinc.org','Bartonella quintana rRNA [Presence] in Specimen by Probe','175463','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2039_57910-2','57910-2','http://loinc.org','Bartonella quintana DNA [Presence] in Specimen by NAA with probe detection','579102','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.488_22796-7','22796-7','http://loinc.org','Anaplasma marginale Ag [Presence] in Tissue by Immunofluorescence','227967','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.488_54034-4','54034-4','http://loinc.org','Anaplasma phagocytophilum Ag [Presence] in Tissue by Immune stain','540344','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.368_16976-3','16976-3','http://loinc.org','HIV 1 Ag [Units/volume] in Serum','169763','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.368_18396-2','18396-2','http://loinc.org','HIV 1 p24 Ag [Presence] in Serum or Plasma by Immunoassay','183962','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.368_24012-7','24012-7','http://loinc.org','HIV 1 Ag [Presence] in Serum','240127','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.368_33660-2','33660-2','http://loinc.org','HIV 1 p24 Ag [Presence] in Serum or Plasma by Neutralization test','336602','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.368_42339-2','42339-2','http://loinc.org','HIV 1 p24 Ag [Mass/volume] in Serum or Plasma by Immunoassay','423392','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.368_5222-5','5222-5','http://loinc.org','HIV 1 Ag [Presence] in Serum or Plasma by Immunoassay','52225','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.368_53601-1','53601-1','http://loinc.org','HIV 1 p24 Ag [Units/volume] in Serum or Plasma by Immunoassay','536011','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.368_9665-1','9665-1','http://loinc.org','HIV 1 p24 Ag [Units/volume] in Serum','96651','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.368_9821-0','9821-0','http://loinc.org','HIV 1 p24 Ag [Presence] in Serum','98210','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.368_16977-1','16977-1','http://loinc.org','HIV 1 Ag [Presence] in Cerebral spinal fluid','169771','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.368_16979-7','16979-7','http://loinc.org','HIV 1 p24 Ag [Units/volume] in Cerebral spinal fluid','169797','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.368_49718-0','49718-0','http://loinc.org','HIV 1 p24 Ag [Presence] in Cerebral spinal fluid','497180','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.368_56888-1','56888-1','http://loinc.org','HIV 1+2 Ab+HIV1 p24 Ag [Presence] in Serum or Plasma by Immunoassay','568881','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.368_58900-2','58900-2','http://loinc.org','HIV 1+2 Ab+HIV1 p24 Ag [Units/volume] in Serum or Plasma by Immunoassay','589002','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.368_75666-8','75666-8','http://loinc.org','HIV 1+2 Ab and HIV1 p24 Ag [Identifier] in Serum, Plasma or Blood by Rapid immunoassay','756668','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.489_23877-4','23877-4','http://loinc.org','Anaplasma phagocytophilum IgG Ab [Titer] in Serum by Immunofluorescence','238774','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.489_48877-5','48877-5','http://loinc.org','Anaplasma phagocytophilum IgG Ab [Titer] in Body fluid by Immunofluorescence','488775','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1186_20790-2','20790-2','http://loinc.org','Eastern equine encephalitis virus Ab [Presence] in Serum by Hemagglutination inhibition','207902','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1186_20791-0','20791-0','http://loinc.org','Eastern equine encephalitis virus Ab [Presence] in Serum by Immunofluorescence','207910','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1186_20792-8','20792-8','http://loinc.org','Eastern equine encephalitis virus Ab [Presence] in Cerebral spinal fluid by Immunofluorescence','207928','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1186_20793-6','20793-6','http://loinc.org','Eastern equine encephalitis virus Ab [Presence] in Serum by Complement fixation','207936','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1186_20794-4','20794-4','http://loinc.org','Eastern equine encephalitis virus Ab [Presence] in Cerebral spinal fluid by Complement fixation','207944','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1186_22255-4','22255-4','http://loinc.org','Eastern equine encephalitis virus Ab [Presence] in Cerebral spinal fluid','222554','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1186_22256-2','22256-2','http://loinc.org','Eastern equine encephalitis virus Ab [Presence] in Serum','222562','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1186_23043-3','23043-3','http://loinc.org','Eastern equine encephalitis virus Ab [Presence] in Serum by Agglutination','230433','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1186_23044-1','23044-1','http://loinc.org','Eastern equine encephalitis virus neutralizing antibody [Presence] in Serum by Neutralization test','230441','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1186_24006-9','24006-9','http://loinc.org','Eastern equine encephalitis virus IgG and IgM [Interpretation] in Serum','240069','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1186_29785-3','29785-3','http://loinc.org','Eastern equine encephalitis virus IgG Ab [Presence] in Specimen by Immunofluorescence','297853','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1186_29798-6','29798-6','http://loinc.org','Eastern equine encephalitis virus IgG Ab [Presence] in Cerebral spinal fluid by Immunofluorescence','297986','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1186_29811-7','29811-7','http://loinc.org','Eastern equine encephalitis virus IgG Ab [Presence] in Serum by Immunofluorescence','298117','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1186_29824-0','29824-0','http://loinc.org','Eastern equine encephalitis virus IgG Ab [Presence] in Specimen','298240','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1186_29836-4','29836-4','http://loinc.org','Eastern equine encephalitis virus IgG Ab [Presence] in Cerebral spinal fluid','298364','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1186_29848-9','29848-9','http://loinc.org','Eastern equine encephalitis virus IgG Ab [Presence] in Serum','298489','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1186_49065-6','49065-6','http://loinc.org','Eastern equine encephalitis virus IgG and IgM [Interpretation] in Cerebral spinal fluid','490656','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1186_52822-4','52822-4','http://loinc.org','Eastern equine encephalitis virus IgG Ab [Presence] in Serum by Immunoassay','528224','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1186_62431-2','62431-2','http://loinc.org','Eastern equine encephalitis virus IgG Ab [Presence] in Body fluid by Immunoassay','624312','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1186_95712-6','95712-6','http://loinc.org','Eastern equine encephalitis virus IgA Ab [Presence] in Specimen by Immunoassay','957126','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1186_23045-8','23045-8','http://loinc.org','Eastern equine encephalitis virus IgM Ab [Presence] in Serum by Immunoassay','230458','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1186_23046-6','23046-6','http://loinc.org','Eastern equine encephalitis virus IgM Ab [Presence] in Serum','230466','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1186_42004-2','42004-2','http://loinc.org','Eastern equine encephalitis virus IgM Ab [Presence] in Cerebral spinal fluid by Immunoassay','420042','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1186_43044-7','43044-7','http://loinc.org','Eastern equine encephalitis virus IgM Ab [Presence] in Cerebral spinal fluid','430447','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1186_43096-7','43096-7','http://loinc.org','Eastern equine encephalitis virus IgM Ab [Presence] in Specimen','430967','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1186_62429-6','62429-6','http://loinc.org','Eastern equine encephalitis virus IgM Ab [Presence] in Body fluid by Immunofluorescence','624296','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1186_62430-4','62430-4','http://loinc.org','Eastern equine encephalitis virus IgM Ab [Presence] in Body fluid by Immunoassay','624304','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1186_95660-7','95660-7','http://loinc.org','Eastern equine encephalitis virus IgM Ab [Presence] in Specimen by Immunoassay','956607','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1185_26623-9','26623-9','http://loinc.org','Chikungunya virus Ab [Presence] in Serum','266239','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1185_56129-0','56129-0','http://loinc.org','Chikungunya virus IgG Ab [Presence] in Serum or Plasma by Immunofluorescence','561290','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1185_74821-0','74821-0','http://loinc.org','Chikungunya virus Ab [Presence] in Serum by Hemagglutination inhibition','748210','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1185_82297-3','82297-3','http://loinc.org','Chikungunya virus structural proteins (E1+E2) IgG Ab [Presence] in Serum by Immunoassay','822973','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1185_88630-9','88630-9','http://loinc.org','Chikungunya virus IgG Ab [Presence] in Serum or Plasma by Immunoassay','886309','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1185_93979-3','93979-3','http://loinc.org','Chikungunya virus IgG Ab [Presence] in Serum or Plasma','939793','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1185_95672-2','95672-2','http://loinc.org','Chikungunya virus IgG Ab [Presence] in Specimen by Immunoassay','956722','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1185_95705-0','95705-0','http://loinc.org','Chikungunya virus IgA Ab [Presence] in Specimen by Immunoassay','957050','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1185_56131-6','56131-6','http://loinc.org','Chikungunya virus IgM Ab [Presence] in Serum or Plasma by Immunofluorescence','561316','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1185_57934-2','57934-2','http://loinc.org','Chikungunya virus IgM Ab [Presence] in Serum or Plasma','579342','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1185_88629-1','88629-1','http://loinc.org','Chikungunya virus IgM Ab [Presence] in Serum or Plasma by Immunoassay','886291','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1185_95687-0','95687-0','http://loinc.org','Chikungunya virus IgM Ab [Presence] in Specimen by Immunoassay','956870','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1188_20983-3','20983-3','http://loinc.org','Western equine encephalitis virus Ab [Presence] in Serum by Immunofluorescence','209833','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1188_20984-1','20984-1','http://loinc.org','Western equine encephalitis virus Ab [Presence] in Cerebral spinal fluid by Immunofluorescence','209841','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1188_20985-8','20985-8','http://loinc.org','Western equine encephalitis virus Ab [Presence] in Serum by Complement fixation','209858','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1188_20986-6','20986-6','http://loinc.org','Western equine encephalitis virus Ab [Presence] in Cerebral spinal fluid by Complement fixation','209866','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1188_22610-0','22610-0','http://loinc.org','Western equine encephalitis virus Ab [Presence] in Cerebral spinal fluid','226100','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1188_22611-8','22611-8','http://loinc.org','Western equine encephalitis virus Ab [Presence] in Serum','226118','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1188_23583-8','23583-8','http://loinc.org','Western equine encephalitis virus Ab [Presence] in Serum by Agglutination','235838','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1188_23585-3','23585-3','http://loinc.org','Western equine encephalitis virus neutralizing antibody [Presence] in Serum by Neutralization test','235853','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1188_23586-1','23586-1','http://loinc.org','Western equine encephalitis virus Ab [Presence] in Serum by Hemagglutination inhibition','235861','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1188_23792-5','23792-5','http://loinc.org','Western equine encephalitis virus Ab [Presence] in Specimen','237925','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1188_41244-5','41244-5','http://loinc.org','Western equine encephalitis virus IgG Ab [Presence] in Serum','412445','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1188_41260-1','41260-1','http://loinc.org','Western equine encephalitis virus IgG Ab [Presence] in Cerebral spinal fluid','412601','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1188_49066-4','49066-4','http://loinc.org','Western equine encephalitis virus IgG and IgM [Interpretation] in Cerebral spinal fluid','490664','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1188_49082-1','49082-1','http://loinc.org','Western equine encephalitis virus IgG and IgM [Interpretation] in Serum','490821','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1188_95678-9','95678-9','http://loinc.org','Western equine encephalitis virus IgG Ab [Presence] in Specimen by Immunoassay','956789','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1188_23587-9','23587-9','http://loinc.org','Western equine encephalitis virus IgM Ab [Presence] in Serum','235879','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1188_23588-7','23588-7','http://loinc.org','Western equine encephalitis virus IgM Ab [Presence] in Serum by Immunoassay','235887','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1188_41259-3','41259-3','http://loinc.org','Western equine encephalitis virus IgM Ab [Presence] in Cerebral spinal fluid','412593','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1188_95693-8','95693-8','http://loinc.org','Western equine encephalitis virus IgM Ab [Presence] in Specimen by Immunoassay','956938','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1187_26646-0','26646-0','http://loinc.org','Powassan virus Ab [Presence] in Serum','266460','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1187_29791-1','29791-1','http://loinc.org','Powassan virus IgG Ab [Presence] in Specimen by Immunofluorescence','297911','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1187_29804-2','29804-2','http://loinc.org','Powassan virus IgG Ab [Presence] in Cerebral spinal fluid by Immunofluorescence','298042','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1187_29817-4','29817-4','http://loinc.org','Powassan virus IgG Ab [Presence] in Serum by Immunofluorescence','298174','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1187_29830-7','29830-7','http://loinc.org','Powassan virus IgG Ab [Presence] in Specimen','298307','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1187_29842-2','29842-2','http://loinc.org','Powassan virus IgG Ab [Presence] in Cerebral spinal fluid','298422','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1187_29854-7','29854-7','http://loinc.org','Powassan virus IgG Ab [Presence] in Serum','298547','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1187_43687-3','43687-3','http://loinc.org','Powassan virus polyvalent E Ab [Presence] in Specimen by Immunoassay','436873','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1187_47475-9','47475-9','http://loinc.org','Powassan virus polyvalent E Ab [Presence] in Specimen','474759','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1187_50037-1','50037-1','http://loinc.org','Powassan virus neutralizing antibody [Presence] in Specimen by Neutralization test','500371','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1187_53384-4','53384-4','http://loinc.org','Powassan virus Ab [Presence] in Specimen','533844','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1187_74824-4','74824-4','http://loinc.org','Powassan virus Ab [Presence] in Serum by Hemagglutination inhibition','748244','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1187_95702-7','95702-7','http://loinc.org','Powassan virus IgA Ab [Presence] in Specimen by Immunoassay','957027','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1187_29792-9','29792-9','http://loinc.org','Powassan virus IgM Ab [Presence] in Specimen by Immunofluorescence','297929','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1187_29805-9','29805-9','http://loinc.org','Powassan virus IgM Ab [Presence] in Cerebral spinal fluid by Immunofluorescence','298059','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1187_29818-2','29818-2','http://loinc.org','Powassan virus IgM Ab [Presence] in Serum by Immunofluorescence','298182','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1187_29831-5','29831-5','http://loinc.org','Powassan virus IgM Ab [Presence] in Specimen','298315','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1187_29843-0','29843-0','http://loinc.org','Powassan virus IgM Ab [Presence] in Cerebral spinal fluid','298430','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1187_29855-4','29855-4','http://loinc.org','Powassan virus IgM Ab [Presence] in Serum','298554','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2041_16176-0','16176-0','http://loinc.org','Bartonella quintana IgG Ab [Units/volume] in Cerebral spinal fluid','161760','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2041_17544-8','17544-8','http://loinc.org','Bartonella quintana IgG Ab [Presence] in Cerebral spinal fluid','175448','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2041_23961-6','23961-6','http://loinc.org','Bartonella quintana IgG Ab [Titer] in Cerebral spinal fluid','239616','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2041_23974-9','23974-9','http://loinc.org','Bartonella quintana IgG Ab [Titer] in Cerebral spinal fluid by Immunofluorescence','239749','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2041_26677-5','26677-5','http://loinc.org','Bartonella quintana Ab [Presence] in Serum','266775','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2041_32577-9','32577-9','http://loinc.org','Bartonella quintana IgG Ab [Presence] in Serum','325779','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2041_44827-4','44827-4','http://loinc.org','Bartonella quintana IgG Ab [Titer] in Serum by Immunofluorescence','448274','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2041_48713-2','48713-2','http://loinc.org','Bartonella quintana IgG Ab [Units/volume] in Serum or Plasma by Immunofluorescence','487132','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2041_48884-1','48884-1','http://loinc.org','Bartonella quintana IgG Ab [Titer] in Body fluid by Immunofluorescence','488841','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2041_49202-5','49202-5','http://loinc.org','Bartonella quintana IgG Ab [Titer] in Body fluid','492025','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2041_51451-3','51451-3','http://loinc.org','Bartonella quintana IgG Ab [Units/volume] in Serum or Plasma','514513','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2041_51816-7','51816-7','http://loinc.org','Bartonella quintana IgG Ab [Units/volume] in Serum by Immunoassay','518167','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2041_8009-3','8009-3','http://loinc.org','Bartonella quintana IgG Ab [Units/volume] in Serum','80093','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2041_9360-9','9360-9','http://loinc.org','Bartonella quintana IgG Ab [Titer] in Serum','93609','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2042_16276-8','16276-8','http://loinc.org','Bartonella henselae DNA [Presence] in Blood by NAA with probe detection','162768','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2042_33985-3','33985-3','http://loinc.org','Bartonella henselae DNA [Presence] in Tissue by NAA with probe detection','339853','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2042_91864-9','91864-9','http://loinc.org','Bartonella henselae DNA [Presence] in Aspirate by NAA with probe detection','918649','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2042_33986-1','33986-1','http://loinc.org','Bartonella henselae DNA [Presence] in Specimen by NAA with probe detection','339861','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.470_23203-3','23203-3','http://loinc.org','Leptospira sp Ag [Presence] in Tissue by Immunofluorescence','232033','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.470_23204-1','23204-1','http://loinc.org','Leptospira sp Ag [Presence] in Tissue by Immune stain','232041','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.470_23750-3','23750-3','http://loinc.org','Leptospira sp Ag [Presence] in Urine by Immunofluorescence','237503','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.470_31871-7','31871-7','http://loinc.org','Leptospira interrogans Ag [Presence] in Specimen','318717','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.470_31872-5','31872-5','http://loinc.org','Leptospira sp Ag [Presence] in Urine','318725','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.470_6452-7','6452-7','http://loinc.org','Leptospira interrogans Ag [Presence] in Specimen by Immunofluorescence','64527','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.470_6605-0','6605-0','http://loinc.org','Leptospira interrogans Ag [Presence] in Tissue by Immunofluorescence','66050','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2040_16177-8','16177-8','http://loinc.org','Bartonella quintana IgM Ab [Units/volume] in Cerebral spinal fluid','161778','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2040_17545-5','17545-5','http://loinc.org','Bartonella quintana IgM Ab [Presence] in Cerebral spinal fluid','175455','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2040_23960-8','23960-8','http://loinc.org','Bartonella quintana IgM Ab [Titer] in Cerebral spinal fluid','239608','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2040_23975-6','23975-6','http://loinc.org','Bartonella quintana IgM Ab [Titer] in Cerebral spinal fluid by Immunofluorescence','239756','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2040_32578-7','32578-7','http://loinc.org','Bartonella quintana IgM Ab [Presence] in Serum','325787','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2040_44823-3','44823-3','http://loinc.org','Bartonella quintana IgM Ab [Units/volume] in Serum by Immunofluorescence','448233','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2040_44825-8','44825-8','http://loinc.org','Bartonella quintana IgM Ab [Titer] in Serum by Immunofluorescence','448258','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2040_48885-8','48885-8','http://loinc.org','Bartonella quintana IgM Ab [Titer] in Body fluid by Immunofluorescence','488858','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2040_49201-7','49201-7','http://loinc.org','Bartonella quintana IgM Ab [Titer] in Body fluid','492017','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2040_51821-7','51821-7','http://loinc.org','Bartonella quintana IgM Ab [Units/volume] in Serum by Immunoassay','518217','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2040_8010-1','8010-1','http://loinc.org','Bartonella quintana IgM Ab [Units/volume] in Serum','80101','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2040_9361-7','9361-7','http://loinc.org','Bartonella quintana IgM Ab [Titer] in Serum','93617','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.471_99001-0','99001-0','http://loinc.org','Leptospira weilii sv Celledoni Ab [Titer] in Serum by Agglutination','990010','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.471_99002-8','99002-8','http://loinc.org','Leptospira santarosai sv Alexi Ab [Titer] in Serum by Agglutination','990028','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.471_99003-6','99003-6','http://loinc.org','Leptospira santarosai sv Georgia Ab [Titer] in Serum by Agglutination','990036','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.471_99004-4','99004-4','http://loinc.org','Leptospira santarosai sv Borincana Ab [Titer] in Serum by Agglutination','990044','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.471_99005-1','99005-1','http://loinc.org','Leptospira kirschneri sv Cynopteri Ab [Titer] in Serum by Agglutination','990051','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.471_99006-9','99006-9','http://loinc.org','Leptospira interrogans sv Wolffi Ab [Titer] in Serum by Agglutination','990069','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.471_99007-7','99007-7','http://loinc.org','Leptospira interrogans sv Mankarso Ab [Titer] in Serum by Agglutination','990077','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.471_99008-5','99008-5','http://loinc.org','Leptospira interrogans sv Djasiman Ab [Titer] in Serum by Agglutination','990085','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.471_99010-1','99010-1','http://loinc.org','Leptospira borgpetersenii sv Javanica Ab [Titer] in Serum by Agglutination','990101','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.471_15476-5','15476-5','http://loinc.org','Leptospira interrogans sv Bratislava Ab [Titer] in Serum by Agglutination','154765','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.471_15477-3','15477-3','http://loinc.org','Leptospira interrogans sv Canicola Ab [Titer] in Serum by Agglutination','154773','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.471_15478-1','15478-1','http://loinc.org','Leptospira interrogans sv Grippotyphosa Ab [Titer] in Serum by Agglutination','154781','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.471_15479-9','15479-9','http://loinc.org','Leptospira interrogans sv Hardjo Ab [Titer] in Serum by Agglutination','154799','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.471_15480-7','15480-7','http://loinc.org','Leptospira interrogans sv Icterohaemorrhagiae Ab [Titer] in Serum by Agglutination','154807','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.471_15481-5','15481-5','http://loinc.org','Leptospira interrogans sv Pomona Ab [Titer] in Serum by Agglutination','154815','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.471_23198-5','23198-5','http://loinc.org','Leptospira sp Ab [Titer] in Serum by Agglutination','231985','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.471_40643-9','40643-9','http://loinc.org','Leptospira borgpetersenii sv Ballum Ab [Titer] in Serum by Agglutination','406439','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.471_40644-7','40644-7','http://loinc.org','Leptospira borgpetersenii sv Sejroe Ab [Titer] in Serum by Agglutination','406447','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.471_40645-4','40645-4','http://loinc.org','Leptospira borgpetersenii sv Tarrasovi Ab [Titer] in Serum by Agglutination','406454','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.471_42518-1','42518-1','http://loinc.org','Leptospira sp Ab [Titer] in Cerebral spinal fluid by Agglutination','425181','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.471_5239-9','5239-9','http://loinc.org','Leptospira sp Ab [Titer] in Serum by Latex agglutination','52399','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.471_56952-5','56952-5','http://loinc.org','Leptospira interrogans Ab [Titer] in Serum by Agglutination','569525','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.471_59363-2','59363-2','http://loinc.org','Leptospira interrogans sv Manhao Ab [Titer] in Serum by Agglutination','593632','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.471_59364-0','59364-0','http://loinc.org','Leptospira interrogans sv Pyrogenes Ab [Titer] in Serum by Agglutination','593640','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.471_59365-7','59365-7','http://loinc.org','Leptospira interrogans sv Mini Ab [Titer] in Serum by Agglutination','593657','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.471_59366-5','59366-5','http://loinc.org','Leptospira interrogans sv Sejroe Ab [Titer] in Serum by Agglutination','593665','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.471_59367-3','59367-3','http://loinc.org','Leptospira interrogans sv Tarassovi Ab [Titer] in Serum by Agglutination','593673','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.471_59368-1','59368-1','http://loinc.org','Leptospira interrogans sv Bataviae Ab [Titer] in Serum by Agglutination','593681','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.471_59369-9','59369-9','http://loinc.org','Leptospira interrogans sv Hebdomadis Ab [Titer] in Serum by Agglutination','593699','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.471_59370-7','59370-7','http://loinc.org','Leptospira interrogans sv Australis Ab [Titer] in Serum by Agglutination','593707','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.471_59371-5','59371-5','http://loinc.org','Leptospira interrogans sv Autumnalis Ab [Titer] in Serum by Agglutination','593715','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.471_59372-3','59372-3','http://loinc.org','Leptospira interrogans sv Ballum Ab [Titer] in Serum by Agglutination','593723','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.471_59422-6','59422-6','http://loinc.org','Leptospira interrogans sv Javanica Ab [Titer] in Serum by Agglutination','594226','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.471_81098-6','81098-6','http://loinc.org','Leptospira borgpetersenii sv Arborea Ab [Titer] in Serum by Agglutination','810986','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.471_81099-4','81099-4','http://loinc.org','Leptospira interrogans sv Bulgarica Ab [Titer] in Serum by Agglutination','810994','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.471_81100-0','81100-0','http://loinc.org','Leptospira interrogans sv Celledoni Ab [Titer] in Serum by Agglutination','811000','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.471_81101-8','81101-8','http://loinc.org','Leptospira interrogans sv Copenhageni Ab [Titer] in Serum by Agglutination','811018','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.471_81102-6','81102-6','http://loinc.org','Leptospira interrogans sv Cynopteri Ab [Titer] in Serum by Agglutination','811026','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.471_81103-4','81103-4','http://loinc.org','Leptospira interrogans sv Kremastos Ab [Titer] in Serum by Agglutination','811034','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.471_81104-2','81104-2','http://loinc.org','Leptospira interrogans sv Medanensis Ab [Titer] in Serum by Agglutination','811042','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.471_81105-9','81105-9','http://loinc.org','Leptospira interrogans sv Panama Ab [Titer] in Serum by Agglutination','811059','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.471_81106-7','81106-7','http://loinc.org','Leptospira interrogans sv Robinsoni Ab [Titer] in Serum by Agglutination','811067','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.471_81107-5','81107-5','http://loinc.org','Leptospira interrogans sv Shermani Ab [Titer] in Serum by Agglutination','811075','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.471_81108-3','81108-3','http://loinc.org','Leptospira interrogans sv Szwajizak Ab [Titer] in Serum by Agglutination','811083','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.471_81109-1','81109-1','http://loinc.org','Leptospira interrogans sv Zanoni Ab [Titer] in Serum by Agglutination','811091','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.471_81110-9','81110-9','http://loinc.org','Leptospira weilii serovar Topaz Ab [Titer] in Serum by Agglutination','811109','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_11606-1','11606-1','http://loinc.org','Leptospira interrogans Ab [Units/volume] in Serum','116061','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_13264-7','13264-7','http://loinc.org','Leptospira sp IgG Ab [Titer] in Serum','132647','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_22400-6','22400-6','http://loinc.org','Leptospira interrogans sv Bratislava Ab [Titer] in Serum','224006','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_22401-4','22401-4','http://loinc.org','Leptospira interrogans sv Canicola Ab [Titer] in Serum','224014','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_22402-2','22402-2','http://loinc.org','Leptospira interrogans sv Grippotyphosa Ab [Titer] in Serum','224022','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_22403-0','22403-0','http://loinc.org','Leptospira interrogans sv Hardjo Ab [Titer] in Serum','224030','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_22404-8','22404-8','http://loinc.org','Leptospira interrogans sv Icterohaemorrhagiae Ab [Titer] in Serum','224048','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_22405-5','22405-5','http://loinc.org','Leptospira interrogans sv Pomona Ab [Titer] in Serum','224055','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_23163-9','23163-9','http://loinc.org','Leptospira interrogans sv Australis Ab [Presence] in Serum by Agglutination','231639','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_23164-7','23164-7','http://loinc.org','Leptospira interrogans sv Australis Ab [Presence] in Serum','231647','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_23165-4','23165-4','http://loinc.org','Leptospira interrogans sv Autumnalis Ab [Presence] in Serum by Agglutination','231654','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_23166-2','23166-2','http://loinc.org','Leptospira interrogans sv Autumnalis Ab [Presence] in Serum','231662','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_23167-0','23167-0','http://loinc.org','Leptospira borgpetersenii sv Ballum Ab [Presence] in Serum','231670','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_23168-8','23168-8','http://loinc.org','Leptospira borgpetersenii sv Ballum Ab [Presence] in Serum by Agglutination','231688','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_23169-6','23169-6','http://loinc.org','Leptospira interrogans sv Bataviae Ab [Presence] in Serum by Agglutination','231696','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_23170-4','23170-4','http://loinc.org','Leptospira interrogans sv Bataviae Ab [Presence] in Serum','231704','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_23171-2','23171-2','http://loinc.org','Leptospira interrogans sv Bratislava Ab [Presence] in Serum by Agglutination','231712','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_23172-0','23172-0','http://loinc.org','Leptospira interrogans sv Bratislava Ab [Presence] in Serum','231720','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_23173-8','23173-8','http://loinc.org','Leptospira interrogans sv Canicola Ab [Presence] in Serum','231738','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_23174-6','23174-6','http://loinc.org','Leptospira interrogans sv Canicola Ab [Presence] in Serum by Agglutination','231746','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_23175-3','23175-3','http://loinc.org','Leptospira interrogans sv Copenhageni Ab [Presence] in Serum','231753','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_23176-1','23176-1','http://loinc.org','Leptospira interrogans sv Copenhageni Ab [Presence] in Serum by Agglutination','231761','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_23177-9','23177-9','http://loinc.org','Leptospira interrogans sv Grippotyphosa Ab [Presence] in Serum','231779','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_23178-7','23178-7','http://loinc.org','Leptospira interrogans sv Grippotyphosa Ab [Presence] in Serum by Agglutination','231787','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_23179-5','23179-5','http://loinc.org','Leptospira interrogans sv Hardjo Ab [Presence] in Serum by Immunoassay','231795','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_23180-3','23180-3','http://loinc.org','Leptospira interrogans sv Hardjo Ab [Presence] in Serum by Agglutination','231803','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_23181-1','23181-1','http://loinc.org','Leptospira interrogans sv Hardjo Ab [Presence] in Serum','231811','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_23182-9','23182-9','http://loinc.org','Leptospira interrogans sv Hebdomadis Ab [Presence] in Serum by Agglutination','231829','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_23183-7','23183-7','http://loinc.org','Leptospira interrogans sv Hebdomadis Ab [Presence] in Serum','231837','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_23184-5','23184-5','http://loinc.org','Leptospira interrogans sv Icterohaemorrhagiae Ab [Presence] in Serum by Agglutination','231845','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_23185-2','23185-2','http://loinc.org','Leptospira interrogans sv Icterohaemorrhagiae Ab [Presence] in Serum','231852','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_23186-0','23186-0','http://loinc.org','Leptospira interrogans Ab [Presence] in Serum by Immunoassay','231860','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_23187-8','23187-8','http://loinc.org','Leptospira interrogans Ab [Presence] in Serum','231878','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_23188-6','23188-6','http://loinc.org','Leptospira interrogans Ab [Presence] in Serum by Agglutination','231886','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_23189-4','23189-4','http://loinc.org','Leptospira interrogans sv Mitis Ab [Presence] in Serum','231894','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_23190-2','23190-2','http://loinc.org','Leptospira interrogans sv Mitis Ab [Presence] in Serum by Agglutination','231902','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_23191-0','23191-0','http://loinc.org','Leptospira interrogans sv Pomona Ab [Presence] in Serum','231910','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_23192-8','23192-8','http://loinc.org','Leptospira interrogans sv Pomona Ab [Presence] in Serum by Agglutination','231928','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_23193-6','23193-6','http://loinc.org','Leptospira borgpetersenii sv Sejroe Ab [Presence] in Serum','231936','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_23194-4','23194-4','http://loinc.org','Leptospira borgpetersenii sv Sejroe Ab [Presence] in Serum by Agglutination','231944','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_23195-1','23195-1','http://loinc.org','Leptospira sp Ab [Presence] in Serum by Immunoassay','231951','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_23196-9','23196-9','http://loinc.org','Leptospira sp Ab [Presence] in Serum','231969','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_23197-7','23197-7','http://loinc.org','Leptospira sp Ab [Presence] in Serum by Agglutination','231977','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_23199-3','23199-3','http://loinc.org','Leptospira sp IgG Ab [Presence] in Serum by Immunoassay','231993','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_23200-9','23200-9','http://loinc.org','Leptospira sp IgG Ab [Presence] in Serum','232009','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_23208-2','23208-2','http://loinc.org','Leptospira borgpetersenii sv Tarrasovi Ab [Presence] in Serum','232082','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_23209-0','23209-0','http://loinc.org','Leptospira borgpetersenii sv Tarrasovi Ab [Presence] in Serum by Agglutination','232090','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_25709-7','25709-7','http://loinc.org','Leptospira interrogans sv Canicola Ab [Titer] in Serum by Complement fixation','257097','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_25710-5','25710-5','http://loinc.org','Leptospira interrogans sv Grippotyphosa Ab [Titer] in Serum by Complement fixation','257105','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_25711-3','25711-3','http://loinc.org','Leptospira interrogans sv Icterohaemorrhagiae Ab [Titer] in Serum by Complement fixation','257113','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_25712-1','25712-1','http://loinc.org','Leptospira interrogans sv Pomona Ab [Titer] in Serum by Complement fixation','257121','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_25866-5','25866-5','http://loinc.org','Leptospira borgpetersenii sv Sejroe Ab [Titer] in Serum','258665','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_25940-8','25940-8','http://loinc.org','Leptospira borgpetersenii sv Sejroe Ab [Titer] in Serum by Complement fixation','259408','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_27093-4','27093-4','http://loinc.org','Leptospira sp IgG Ab [Units/volume] in Cerebral spinal fluid by Immunoassay','270934','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_29694-7','29694-7','http://loinc.org','Leptospira interrogans sv Celledoni Ab [Presence] in Serum','296947','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_29695-4','29695-4','http://loinc.org','Leptospira interrogans sv Bulgarica Ab [Presence] in Serum','296954','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_29696-2','29696-2','http://loinc.org','Leptospira interrogans sv Cynopteri Ab [Presence] in Serum','296962','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_29697-0','29697-0','http://loinc.org','Leptospira interrogans sv Djasiman Ab [Presence] in Serum','296970','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_29698-8','29698-8','http://loinc.org','Leptospira interrogans sv Javanica Ab [Presence] in Serum','296988','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_29699-6','29699-6','http://loinc.org','Leptospira interrogans sv Panama Ab [Presence] in Serum','296996','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_29700-2','29700-2','http://loinc.org','Leptospira interrogans sv Shermani Ab [Presence] in Serum','297002','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_29701-0','29701-0','http://loinc.org','Leptospira interrogans sv Zanoni Ab [Presence] in Serum','297010','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_29724-2','29724-2','http://loinc.org','Leptospira interrogans sv Celledoni Ab [Presence] in Serum by Agglutination','297242','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_29725-9','29725-9','http://loinc.org','Leptospira interrogans sv Bulgarica Ab [Presence] in Serum by Agglutination','297259','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_29726-7','29726-7','http://loinc.org','Leptospira interrogans sv Cynopteri Ab [Presence] in Serum by Agglutination','297267','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_29727-5','29727-5','http://loinc.org','Leptospira interrogans sv Djasiman Ab [Presence] in Serum by Agglutination','297275','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_29728-3','29728-3','http://loinc.org','Leptospira interrogans sv Javanica Ab [Presence] in Serum by Agglutination','297283','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_29729-1','29729-1','http://loinc.org','Leptospira interrogans sv Panama Ab [Presence] in Serum by Agglutination','297291','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_29730-9','29730-9','http://loinc.org','Leptospira interrogans sv Shermani Ab [Presence] in Serum by Agglutination','297309','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_29731-7','29731-7','http://loinc.org','Leptospira interrogans sv Zanoni Ab [Presence] in Serum by Agglutination','297317','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_29732-5','29732-5','http://loinc.org','Leptospira interrogans sv Robinsoni Ab [Presence] in Serum by Agglutination','297325','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_29733-3','29733-3','http://loinc.org','Leptospira interrogans sv Kremastos Ab [Presence] in Serum by Agglutination','297333','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_29734-1','29734-1','http://loinc.org','Leptospira interrogans sv Szwajizak Ab [Presence] in Serum by Agglutination','297341','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_29735-8','29735-8','http://loinc.org','Leptospira interrogans sv Medanensis Ab [Presence] in Serum by Agglutination','297358','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_29738-2','29738-2','http://loinc.org','Leptospira interrogans sv Robinsoni Ab [Presence] in Serum','297382','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_29739-0','29739-0','http://loinc.org','Leptospira interrogans sv Kremastos Ab [Presence] in Serum','297390','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_29740-8','29740-8','http://loinc.org','Leptospira interrogans sv Szwajizak Ab [Presence] in Serum','297408','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_29741-6','29741-6','http://loinc.org','Leptospira interrogans sv Medanensis Ab [Presence] in Serum','297416','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_31476-5','31476-5','http://loinc.org','Leptospira borgpetersenii sv Sejroe Ab [Units/volume] in Serum','314765','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_31477-3','31477-3','http://loinc.org','Leptospira interrogans sv Bratislava Ab [Units/volume] in Serum','314773','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_31478-1','31478-1','http://loinc.org','Leptospira interrogans sv Canicola Ab [Units/volume] in Serum','314781','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_31479-9','31479-9','http://loinc.org','Leptospira interrogans sv Grippotyphosa Ab [Units/volume] in Serum','314799','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_31480-7','31480-7','http://loinc.org','Leptospira interrogans sv Hardjo Ab [Units/volume] in Serum','314807','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_31481-5','31481-5','http://loinc.org','Leptospira interrogans sv Icterohaemorrhagiae Ab [Units/volume] in Serum','314815','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_31482-3','31482-3','http://loinc.org','Leptospira interrogans sv Pomona Ab [Units/volume] in Serum','314823','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_31483-1','31483-1','http://loinc.org','Leptospira sp Ab [Units/volume] in Serum','314831','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_31484-9','31484-9','http://loinc.org','Leptospira sp IgG Ab [Units/volume] in Cerebral spinal fluid','314849','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_31485-6','31485-6','http://loinc.org','Leptospira sp IgG Ab [Units/volume] in Serum','314856','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_32604-1','32604-1','http://loinc.org','Leptospira sp Ab [Titer] in Serum --1st specimen','326041','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_32605-8','32605-8','http://loinc.org','Leptospira sp Ab [Titer] in Serum --2nd specimen','326058','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_42994-4','42994-4','http://loinc.org','Leptospira sp Ab [Titer] in Cerebral spinal fluid','429944','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_42995-1','42995-1','http://loinc.org','Leptospira borgpetersenii sv Tarrasovi Ab [Titer] in Serum','429951','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_42996-9','42996-9','http://loinc.org','Leptospira borgpetersenii sv Ballum Ab [Titer] in Serum','429969','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_45330-8','45330-8','http://loinc.org','Leptospira interrogans IgG Ab [Titer] in Serum by Immunofluorescence','453308','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_46196-2','46196-2','http://loinc.org','Leptospira interrogans IgG Ab [Titer] in Serum','461962','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_51815-9','51815-9','http://loinc.org','Leptospira sp IgG Ab [Units/volume] in Serum by Immunoassay','518159','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_7959-0','7959-0','http://loinc.org','Leptospira sp Ab [Titer] in Serum','79590','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_7960-8','7960-8','http://loinc.org','Leptospira interrogans Ab [Units/volume] in Serum by Hemagglutination','79608','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_13265-4','13265-4','http://loinc.org','Leptospira sp IgM Ab [Titer] in Serum','132654','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_15476-5','15476-5','http://loinc.org','Leptospira interrogans sv Bratislava Ab [Titer] in Serum by Agglutination','154765','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_15477-3','15477-3','http://loinc.org','Leptospira interrogans sv Canicola Ab [Titer] in Serum by Agglutination','154773','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_15478-1','15478-1','http://loinc.org','Leptospira interrogans sv Grippotyphosa Ab [Titer] in Serum by Agglutination','154781','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_15479-9','15479-9','http://loinc.org','Leptospira interrogans sv Hardjo Ab [Titer] in Serum by Agglutination','154799','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_15480-7','15480-7','http://loinc.org','Leptospira interrogans sv Icterohaemorrhagiae Ab [Titer] in Serum by Agglutination','154807','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_15481-5','15481-5','http://loinc.org','Leptospira interrogans sv Pomona Ab [Titer] in Serum by Agglutination','154815','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_23198-5','23198-5','http://loinc.org','Leptospira sp Ab [Titer] in Serum by Agglutination','231985','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_23201-7','23201-7','http://loinc.org','Leptospira sp IgM Ab [Presence] in Serum by Immunoassay','232017','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_23202-5','23202-5','http://loinc.org','Leptospira sp IgM Ab [Presence] in Serum','232025','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_27384-7','27384-7','http://loinc.org','Leptospira sp IgM Ab [Units/volume] in Cerebral spinal fluid by Immunoassay','273847','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_31486-4','31486-4','http://loinc.org','Leptospira sp IgM Ab [Units/volume] in Cerebral spinal fluid','314864','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_31487-2','31487-2','http://loinc.org','Leptospira sp IgM Ab [Units/volume] in Serum','314872','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_40643-9','40643-9','http://loinc.org','Leptospira borgpetersenii sv Ballum Ab [Titer] in Serum by Agglutination','406439','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_40644-7','40644-7','http://loinc.org','Leptospira borgpetersenii sv Sejroe Ab [Titer] in Serum by Agglutination','406447','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_40645-4','40645-4','http://loinc.org','Leptospira borgpetersenii sv Tarrasovi Ab [Titer] in Serum by Agglutination','406454','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_42518-1','42518-1','http://loinc.org','Leptospira sp Ab [Titer] in Cerebral spinal fluid by Agglutination','425181','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_51819-1','51819-1','http://loinc.org','Leptospira sp IgM Ab [Units/volume] in Serum by Immunoassay','518191','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_5239-9','5239-9','http://loinc.org','Leptospira sp Ab [Titer] in Serum by Latex agglutination','52399','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_56952-5','56952-5','http://loinc.org','Leptospira interrogans Ab [Titer] in Serum by Agglutination','569525','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_56953-3','56953-3','http://loinc.org','Leptospira interrogans IgM Ab [Presence] in Serum by Immunoassay','569533','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_59363-2','59363-2','http://loinc.org','Leptospira interrogans sv Manhao Ab [Titer] in Serum by Agglutination','593632','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_59364-0','59364-0','http://loinc.org','Leptospira interrogans sv Pyrogenes Ab [Titer] in Serum by Agglutination','593640','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_59365-7','59365-7','http://loinc.org','Leptospira interrogans sv Mini Ab [Titer] in Serum by Agglutination','593657','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_59366-5','59366-5','http://loinc.org','Leptospira interrogans sv Sejroe Ab [Titer] in Serum by Agglutination','593665','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_59367-3','59367-3','http://loinc.org','Leptospira interrogans sv Tarassovi Ab [Titer] in Serum by Agglutination','593673','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_59368-1','59368-1','http://loinc.org','Leptospira interrogans sv Bataviae Ab [Titer] in Serum by Agglutination','593681','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_59369-9','59369-9','http://loinc.org','Leptospira interrogans sv Hebdomadis Ab [Titer] in Serum by Agglutination','593699','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_59370-7','59370-7','http://loinc.org','Leptospira interrogans sv Australis Ab [Titer] in Serum by Agglutination','593707','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_59371-5','59371-5','http://loinc.org','Leptospira interrogans sv Autumnalis Ab [Titer] in Serum by Agglutination','593715','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_59372-3','59372-3','http://loinc.org','Leptospira interrogans sv Ballum Ab [Titer] in Serum by Agglutination','593723','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_59422-6','59422-6','http://loinc.org','Leptospira interrogans sv Javanica Ab [Titer] in Serum by Agglutination','594226','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_81098-6','81098-6','http://loinc.org','Leptospira borgpetersenii sv Arborea Ab [Titer] in Serum by Agglutination','810986','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_81099-4','81099-4','http://loinc.org','Leptospira interrogans sv Bulgarica Ab [Titer] in Serum by Agglutination','810994','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_81100-0','81100-0','http://loinc.org','Leptospira interrogans sv Celledoni Ab [Titer] in Serum by Agglutination','811000','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_81101-8','81101-8','http://loinc.org','Leptospira interrogans sv Copenhageni Ab [Titer] in Serum by Agglutination','811018','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_81102-6','81102-6','http://loinc.org','Leptospira interrogans sv Cynopteri Ab [Titer] in Serum by Agglutination','811026','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_81103-4','81103-4','http://loinc.org','Leptospira interrogans sv Kremastos Ab [Titer] in Serum by Agglutination','811034','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_81104-2','81104-2','http://loinc.org','Leptospira interrogans sv Medanensis Ab [Titer] in Serum by Agglutination','811042','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_81105-9','81105-9','http://loinc.org','Leptospira interrogans sv Panama Ab [Titer] in Serum by Agglutination','811059','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_81106-7','81106-7','http://loinc.org','Leptospira interrogans sv Robinsoni Ab [Titer] in Serum by Agglutination','811067','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_81107-5','81107-5','http://loinc.org','Leptospira interrogans sv Shermani Ab [Titer] in Serum by Agglutination','811075','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_81108-3','81108-3','http://loinc.org','Leptospira interrogans sv Szwajizak Ab [Titer] in Serum by Agglutination','811083','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_81109-1','81109-1','http://loinc.org','Leptospira interrogans sv Zanoni Ab [Titer] in Serum by Agglutination','811091','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.472_81110-9','81110-9','http://loinc.org','Leptospira weilii serovar Topaz Ab [Titer] in Serum by Agglutination','811109','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.474_21089-8','21089-8','http://loinc.org','Babesia microti DNA [Presence] in Blood by NAA with probe detection','210898','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.474_22853-6','22853-6','http://loinc.org','Babesia caballi rRNA [Presence] in Blood by Probe','228536','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.474_22856-9','22856-9','http://loinc.org','Babesia sp rRNA [Presence] in Tissue by Probe','228569','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.474_22857-7','22857-7','http://loinc.org','Babesia sp DNA [Presence] in Tissue by NAA with probe detection','228577','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.474_42641-1','42641-1','http://loinc.org','Babesia sp DNA [Presence] in Specimen by NAA with probe detection','426411','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.474_47396-7','47396-7','http://loinc.org','Babesia microti DNA [Presence] in Specimen by NAA with probe detection','473967','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.474_88233-2','88233-2','http://loinc.org','Babesia sp DNA [Presence] in Blood by NAA with probe detection','882332','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.474_88450-2','88450-2','http://loinc.org','Babesia divergens+MO-1 strain 18S rRNA gene [Presence] in Blood by NAA with non-probe detection','884502','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.474_88451-0','88451-0','http://loinc.org','Babesia duncani 18S rRNA gene [Presence] in Blood by NAA with non-probe detection','884510','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.474_88452-8','88452-8','http://loinc.org','Babesia microti 18S rRNA gene [Presence] in Blood by NAA with non-probe detection','884528','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.474_89342-0','89342-0','http://loinc.org','Babesia sp 18S rRNA [Presence] in Blood by NAA with probe detection','893420','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.474_67867-2','67867-2','http://loinc.org','Babesia sp identified in Specimen','678672','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.475_16117-4','16117-4','http://loinc.org','Babesia microti IgG Ab [Titer] in Serum','161174','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.475_16118-2','16118-2','http://loinc.org','Babesia microti IgM Ab [Titer] in Serum','161182','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.475_16425-1','16425-1','http://loinc.org','Babesia sp IgM Ab [Units/volume] in Serum by Immunofluorescence','164251','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.475_16426-9','16426-9','http://loinc.org','Babesia sp IgM Ab [Titer] in Serum','164269','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.475_16427-7','16427-7','http://loinc.org','Babesia microti Ab [Titer] in Serum','164277','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.475_20689-6','20689-6','http://loinc.org','Babesia caballi Ab [Presence] in Serum by Complement fixation','206896','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.475_22104-4','22104-4','http://loinc.org','Babesia caballi Ab [Presence] in Serum','221044','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.475_22106-9','22106-9','http://loinc.org','Babesia sp Ab [Titer] in Serum','221069','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.475_22107-7','22107-7','http://loinc.org','Babesia sp IgG Ab [Titer] in Serum','221077','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.475_22108-5','22108-5','http://loinc.org','Babesia sp IgM Ab [Units/volume] in Serum','221085','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.475_22844-5','22844-5','http://loinc.org','Babesia bigemina Ab [Presence] in Serum','228445','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.475_22845-2','22845-2','http://loinc.org','Babesia bigemina Ab [Presence] in Serum by Immunofluorescence','228452','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.475_22846-0','22846-0','http://loinc.org','Babesia bigemina Ab [Presence] in Serum by Immunoassay','228460','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.475_22847-8','22847-8','http://loinc.org','Babesia bovis Ab [Presence] in Serum','228478','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.475_22848-6','22848-6','http://loinc.org','Babesia bovis Ab [Presence] in Serum by Immunoassay','228486','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.475_22849-4','22849-4','http://loinc.org','Babesia bovis Ab [Presence] in Serum by Immunofluorescence','228494','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.475_22850-2','22850-2','http://loinc.org','Babesia caballi Ab [Presence] in Serum by Immunoassay','228502','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.475_22851-0','22851-0','http://loinc.org','Babesia caballi Ab [Presence] in Serum by Immunofluorescence','228510','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.475_22854-4','22854-4','http://loinc.org','Babesia divergens Ab [Presence] in Serum by Immunofluorescence','228544','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.475_22855-1','22855-1','http://loinc.org','Babesia divergens Ab [Presence] in Serum','228551','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.475_23662-0','23662-0','http://loinc.org','Babesia bigemina Ab [Presence] in Serum by Complement fixation','236620','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.475_23663-8','23663-8','http://loinc.org','Babesia bovis Ab [Presence] in Serum by Complement fixation','236638','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.475_23664-6','23664-6','http://loinc.org','Babesia canis Ab [Titer] in Serum by Immunofluorescence','236646','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.475_23665-3','23665-3','http://loinc.org','Babesia divergens Ab [Presence] in Serum by Complement fixation','236653','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.475_23666-1','23666-1','http://loinc.org','Babesia sp Ab [Titer] in Serum by Complement fixation','236661','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.475_26622-1','26622-1','http://loinc.org','Babesia duncani Ab [Presence] in Serum','266221','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.475_27965-3','27965-3','http://loinc.org','Babesia microti IgM Ab [Presence] in Serum','279653','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.475_31244-7','31244-7','http://loinc.org','Babesia microti IgG Ab [Units/volume] in Serum','312447','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.475_31245-4','31245-4','http://loinc.org','Babesia microti IgM Ab [Units/volume] in Serum','312454','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.475_31246-2','31246-2','http://loinc.org','Babesia sp IgG Ab [Units/volume] in Serum','312462','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.475_41413-6','41413-6','http://loinc.org','Babesia divergens Ab [Titer] in Serum by Immunofluorescence','414136','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.475_41414-4','41414-4','http://loinc.org','Babesia microti Ab [Titer] in Serum by Immunofluorescence','414144','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.475_41415-1','41415-1','http://loinc.org','Babesia duncani Ab [Titer] in Serum by Immunofluorescence','414151','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.475_42580-1','42580-1','http://loinc.org','Babesia sp IgM Ab [Presence] in Serum','425801','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.475_42581-9','42581-9','http://loinc.org','Babesia sp IgG Ab [Presence] in Serum','425819','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.475_43085-0','43085-0','http://loinc.org','Babesia duncani Ab [Titer] in Serum','430850','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.475_43086-8','43086-8','http://loinc.org','Babesia divergens Ab [Titer] in Serum','430868','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.475_43087-6','43087-6','http://loinc.org','Babesia canis Ab [Titer] in Serum','430876','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.475_43893-7','43893-7','http://loinc.org','Babesia microti IgG Ab [Presence] in Serum','438937','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.475_43918-2','43918-2','http://loinc.org','Babesia microti Ab [Presence] in Serum','439182','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.475_43926-5','43926-5','http://loinc.org','Babesia sp Ab [Presence] in Serum','439265','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.475_47071-6','47071-6','http://loinc.org','Babesia microti IgG Ab [Titer] in Cerebral spinal fluid','470716','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.475_47073-2','47073-2','http://loinc.org','Babesia microti IgM Ab [Titer] in Cerebral spinal fluid','470732','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.475_5054-2','5054-2','http://loinc.org','Babesia sp Ab [Titer] in Serum by Immunofluorescence','50542','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.475_60521-2','60521-2','http://loinc.org','Babesia microti IgG+IgM Ab [Presence] in Serum','605212','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.475_6311-5','6311-5','http://loinc.org','Babesia microti Ab [Units/volume] in Serum by Immunoassay','63115','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.475_7812-1','7812-1','http://loinc.org','Babesia microti Ab [Units/volume] in Serum','78121','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.475_7813-9','7813-9','http://loinc.org','Babesia sp Ab [Units/volume] in Serum','78139','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.475_82747-7','82747-7','http://loinc.org','Babesia microti IgG Ab [Presence] in Serum by Immunoblot','827477','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.475_93776-3','93776-3','http://loinc.org','Babesia duncani IgG Ab [Titer] in Serum by Immunofluorescence','937763','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.475_9584-4','9584-4','http://loinc.org','Babesia sp IgG Ab [Titer] in Serum by Immunofluorescence','95844','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.475_9585-1','9585-1','http://loinc.org','Babesia sp IgM Ab [Titer] in Serum by Immunofluorescence','95851','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.475_67867-2','67867-2','http://loinc.org','Babesia sp identified in Specimen','678672','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2049_13325-6','13325-6','http://loinc.org','Bartonella sp identified in Blood by Light microscopy','133256','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.476_10347-3','10347-3','http://loinc.org','Babesia microti identified in Blood by Light microscopy','103473','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.476_10647-6','10647-6','http://loinc.org','Babesia sp identified in Blood by Thick film','106476','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.476_10648-4','10648-4','http://loinc.org','Babesia sp identified in Blood by Thin film','106484','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.476_24408-7','24408-7','http://loinc.org','Babesia canis [Presence] in Blood by Giemsa stain','244087','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2047_16275-0','16275-0','http://loinc.org','Bartonella sp DNA [Presence] in Blood by NAA with probe detection','162750','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2047_89593-8','89593-8','http://loinc.org','Bartonella sp DNA [Presence] in Tissue by NAA with probe detection','895938','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2047_91862-3','91862-3','http://loinc.org','Bartonella sp DNA [Presence] in Aspirate by NAA with probe detection','918623','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2047_16276-8','16276-8','http://loinc.org','Bartonella henselae DNA [Presence] in Blood by NAA with probe detection','162768','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2047_33985-3','33985-3','http://loinc.org','Bartonella henselae DNA [Presence] in Tissue by NAA with probe detection','339853','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2047_91864-9','91864-9','http://loinc.org','Bartonella henselae DNA [Presence] in Aspirate by NAA with probe detection','918649','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2047_16277-6','16277-6','http://loinc.org','Bartonella quintana DNA [Presence] in Blood by NAA with probe detection','162776','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2047_48864-3','48864-3','http://loinc.org','Bartonella sp DNA [Presence] in Specimen by NAA with probe detection','488643','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2047_49123-3','49123-3','http://loinc.org','Bartonella sp identified in Specimen by Sequencing','491233','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2047_89592-0','89592-0','http://loinc.org','Bartonella quintana DNA [Presence] in Tissue by NAA with probe detection','895920','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2047_91863-1','91863-1','http://loinc.org','Bartonella quintana DNA [Presence] in Aspirate by NAA with probe detection','918631','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2047_33986-1','33986-1','http://loinc.org','Bartonella henselae DNA [Presence] in Specimen by NAA with probe detection','339861','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2047_17546-3','17546-3','http://loinc.org','Bartonella quintana rRNA [Presence] in Specimen by Probe','175463','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2047_57910-2','57910-2','http://loinc.org','Bartonella quintana DNA [Presence] in Specimen by NAA with probe detection','579102','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_20445-3','20445-3','http://loinc.org','Herpes virus identified in Specimen by Organism specific culture','204453','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_40436-8','40436-8','http://loinc.org','Parainfluenza virus identified in Specimen by Organism specific culture','404368','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_43695-6','43695-6','http://loinc.org','Herpes virus identified in Specimen by Shell vial culture','436956','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_49538-2','49538-2','http://loinc.org','Influenza virus identified in Specimen by Shell vial culture','495382','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_55095-4','55095-4','http://loinc.org','Adenovirus [Presence] in Specimen by Organism specific culture','550954','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_55097-0','55097-0','http://loinc.org','Parainfluenza virus 1 [Presence] in Specimen by Organism specific culture','550970','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_55098-8','55098-8','http://loinc.org','Parainfluenza virus 2 [Presence] in Specimen by Organism specific culture','550988','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_55099-6','55099-6','http://loinc.org','Parainfluenza virus 3 [Presence] in Specimen by Organism specific culture','550996','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_6604-3','6604-3','http://loinc.org','Influenza virus identified in Specimen by Organism specific culture','66043','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_9782-4','9782-4','http://loinc.org','Adenovirus sp identified in Specimen by Organism specific culture','97824','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_10860-5','10860-5','http://loinc.org','Varicella zoster virus [Presence] in Specimen by Organism specific culture','108605','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_13921-2','13921-2','http://loinc.org','Mumps virus [Presence] in Specimen by Organism specific culture','139212','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_14084-8','14084-8','http://loinc.org','Herpes simplex virus 1 [Presence] in Isolate by Immunofluorescence','140848','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_14085-5','14085-5','http://loinc.org','Herpes simplex virus 2 [Presence] in Isolate by Immunofluorescence','140855','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_16291-7','16291-7','http://loinc.org','Herpes simplex virus 1 [Presence] in Specimen by Organism specific culture','162917','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_35422-5','35422-5','http://loinc.org','Herpes simplex virus identified in Body fluid by Organism specific culture','354225','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_35431-6','35431-6','http://loinc.org','Herpes simplex virus identified in Tissue by Organism specific culture','354316','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_38382-8','38382-8','http://loinc.org','Influenza virus B [Presence] in Specimen by Organism specific culture','383828','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_43693-1','43693-1','http://loinc.org','Varicella zoster virus identified in Skin by Shell vial culture','436931','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_43697-2','43697-2','http://loinc.org','Herpes simplex virus identified in Specimen by Shell vial culture','436972','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_43698-0','43698-0','http://loinc.org','Enterovirus identified in Specimen by Shell vial culture','436980','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_43701-2','43701-2','http://loinc.org','Cytomegalovirus [Presence] in Specimen by Shell vial culture','437012','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_43704-6','43704-6','http://loinc.org','Cytomegalovirus [Presence] in Body fluid by Shell vial culture','437046','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_43707-9','43707-9','http://loinc.org','Cytomegalovirus [Presence] in Tissue by Shell vial culture','437079','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_44484-4','44484-4','http://loinc.org','Herpes simplex virus 2 [Presence] in Specimen by Organism specific culture','444844','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_5836-2','5836-2','http://loinc.org','Cytomegalovirus [Presence] in Tissue by Organism specific culture','58362','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_5838-8','5838-8','http://loinc.org','Cytomegalovirus [Presence] in Specimen by Organism specific culture','58388','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_5840-4','5840-4','http://loinc.org','Enterovirus identified in Isolate by Immunofluorescence','58404','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_5841-2','5841-2','http://loinc.org','Enterovirus identified in Isolate by Neutralization test','58412','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_5843-8','5843-8','http://loinc.org','Enterovirus identified in Specimen by Organism specific culture','58438','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_5857-8','5857-8','http://loinc.org','Herpes simplex virus identified in Isolate by Immunofluorescence','58578','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_5859-4','5859-4','http://loinc.org','Herpes simplex virus identified in Specimen by Organism specific culture','58594','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_60259-9','60259-9','http://loinc.org','Adenovirus DNA [Presence] in Isolate by NAA with probe detection','602599','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_62454-4','62454-4','http://loinc.org','Herpes simplex virus and Varicella zoster virus identified in Specimen by Organism specific culture','624544','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_6431-1','6431-1','http://loinc.org','HIV identified in Specimen by Organism specific culture','64311','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_6536-7','6536-7','http://loinc.org','Rabies virus identified in Tissue by Organism specific culture','65367','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_6539-1','6539-1','http://loinc.org','Rabies virus identified in Specimen by Organism specific culture','65391','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_6548-2','6548-2','http://loinc.org','Rubella virus identified in Serum by Organism specific culture','65482','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_76626-1','76626-1','http://loinc.org','Measles virus [Presence] in Specimen by Organism specific culture','766261','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_76632-9','76632-9','http://loinc.org','Enterovirus sp [Presence] in Isolate by Immunofluorescence','766329','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_82746-9','82746-9','http://loinc.org','Varicella zoster virus strain [Type] in Isolate','827469','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_86322-5','86322-5','http://loinc.org','Enterovirus [Presence] in Specimen by Organism specific culture','863225','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_91773-2','91773-2','http://loinc.org','Herpes simplex virus identified in Aspirate by Organism specific culture','917732','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_83325-1','83325-1','http://loinc.org','HIV 1 RNA genotype in Isolate','833251','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_83326-9','83326-9','http://loinc.org','HIV 1 RNA genotype and phenotype in Isolate','833269','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_83327-7','83327-7','http://loinc.org','HIV 1 RNA phenotype in Isolate','833277','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_22826-2','22826-2','http://loinc.org','Influenza virus A identified in Specimen by Bioassay','228262','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_48310-7','48310-7','http://loinc.org','Influenza virus A [Presence] in Specimen by Organism specific culture','483107','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_50697-2','50697-2','http://loinc.org','Influenza virus A Ag [Identifier] in Isolate','506972','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_60270-6','60270-6','http://loinc.org','Rabies virus RNA [Presence] in Isolate by NAA with probe detection','602706','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_67806-0','67806-0','http://loinc.org','Measles virus Ag [Presence] in Isolate by Immunofluorescence','678060','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_67812-8','67812-8','http://loinc.org','Varicella zoster virus Ag [Presence] in Isolate by Immunofluorescence','678128','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_85532-0','85532-0','http://loinc.org','Influenza virus A whole genome [Nucleotide sequence] in Isolate by Sequencing','855320','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_85802-7','85802-7','http://loinc.org','Influenza virus A H1 Ag [Titer] in Isolate by Hemagglutination inhibition','858027','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_85803-5','85803-5','http://loinc.org','Influenza virus A H3 Ag [Titer] in Isolate by Hemagglutination inhibition','858035','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_97732-2','97732-2','http://loinc.org','Enterovirus VP1 gene [Nucleotide sequence] in Isolate by Sequencing','977322','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_49522-6','49522-6','http://loinc.org','Influenza virus A H3 Ag [Presence] in Isolate by Immunofluorescence','495226','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_49529-1','49529-1','http://loinc.org','Influenza virus A Ag [Presence] in Isolate by Immunofluorescence','495291','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_49532-5','49532-5','http://loinc.org','Influenza virus A hemagglutinin type RNA [Identifier] in Isolate by Sequencing','495325','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_50701-2','50701-2','http://loinc.org','Influenza virus A H1 Ag [Presence] in Isolate by Immunofluorescence','507012','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_50702-0','50702-0','http://loinc.org','Influenza virus A matrix protein RNA [Presence] in Isolate by Sequencing','507020','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_50704-6','50704-6','http://loinc.org','Influenza virus A nucleoprotein RNA [Presence] in Isolate by Sequencing','507046','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_50705-3','50705-3','http://loinc.org','Influenza virus A non-structural protein RNA [Presence] in Isolate by Sequencing','507053','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_50706-1','50706-1','http://loinc.org','Influenza virus A polymerase A RNA [Presence] in Isolate by Sequencing','507061','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_50707-9','50707-9','http://loinc.org','Influenza virus A polymerase B1 cDNA [Presence] in Isolate by Sequencing','507079','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_50708-7','50708-7','http://loinc.org','Influenza virus A polymerase B2 RNA [Presence] in Isolate by Sequencing','507087','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_50711-1','50711-1','http://loinc.org','Influenza virus A polymerase RNA [Identifier] in Isolate by Sequencing','507111','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_67805-2','67805-2','http://loinc.org','Cytomegalovirus Ag [Presence] in Isolate by Immunofluorescence','678052','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_67807-8','67807-8','http://loinc.org','Mumps virus Ag [Presence] in Isolate by Immunofluorescence','678078','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_85804-3','85804-3','http://loinc.org','Influenza virus A H5 Ag [Titer] in Isolate by Hemagglutination inhibition','858043','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_85805-0','85805-0','http://loinc.org','Influenza virus A H7 Ag [Titer] in Isolate by Hemagglutination inhibition','858050','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_87714-2','87714-2','http://loinc.org','Influenza virus A M gene [Nucleotide sequence] in Isolate by Sequencing','877142','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_87715-9','87715-9','http://loinc.org','Influenza virus A HA gene [Nucleotide sequence] in Isolate by Sequencing','877159','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_87716-7','87716-7','http://loinc.org','Influenza virus A NA gene [Nucleotide sequence] in Isolate by Sequencing','877167','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_93759-9','93759-9','http://loinc.org','Influenza virus A PB2 gene [Nucleotide sequence] in Isolate by Sequencing','937599','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_93760-7','93760-7','http://loinc.org','Influenza virus A PB1 gene [Nucleotide sequence] in Isolate by Sequencing','937607','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_93761-5','93761-5','http://loinc.org','Influenza virus A PA gene [Nucleotide sequence] in Isolate by Sequencing','937615','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_93762-3','93762-3','http://loinc.org','Influenza virus A NP gene [Nucleotide sequence] in Isolate by Sequencing','937623','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_93763-1','93763-1','http://loinc.org','Influenza virus A NS1 gene [Nucleotide sequence] in Isolate by Sequencing','937631','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_60263-1','60263-1','http://loinc.org','Enterovirus RNA [Presence] in Isolate by NAA with probe detection','602631','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_60429-8','60429-8','http://loinc.org','Enterovirus 71 RNA [Presence] in Isolate by NAA with probe detection','604298','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_49520-0','49520-0','http://loinc.org','Influenza virus A H1 RNA [Presence] in Isolate by NAA with probe detection','495200','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_49523-4','49523-4','http://loinc.org','Influenza virus A H3 RNA [Presence] in Isolate by NAA with probe detection','495234','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_49531-7','49531-7','http://loinc.org','Influenza virus A RNA [Presence] in Isolate by NAA with probe detection','495317','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_55133-3','55133-3','http://loinc.org','Influenza virus A hemagglutinin cDNA [Identifier] in Isolate by NAA with probe detection','551333','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_55134-1','55134-1','http://loinc.org','Influenza virus A neuraminidase RNA [Identifier] in Isolate by NAA with probe detection','551341','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_59424-2','59424-2','http://loinc.org','Influenza virus A hemagglutinin type RNA [Identifier] in Isolate by NAA with probe detection','594242','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_49526-7','49526-7','http://loinc.org','Influenza virus A H5 RNA [Presence] in Isolate by NAA with probe detection','495267','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_49527-5','49527-5','http://loinc.org','Influenza virus A H7 RNA [Presence] in Isolate by NAA with probe detection','495275','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2168_60530-3','60530-3','http://loinc.org','Influenza virus A H9 RNA [Presence] in Isolate by NAA with probe detection','605303','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2048_43424-1','43424-1','http://loinc.org','Bartonella sp IgM Ab [Titer] in Cerebral spinal fluid','434241','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2048_43921-6','43921-6','http://loinc.org','Bartonella sp IgM Ab [Presence] in Serum','439216','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2048_44444-8','44444-8','http://loinc.org','Bartonella sp IgM Ab [Units/volume] in Serum by Immunoassay','444448','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2048_46159-0','46159-0','http://loinc.org','Bartonella sp IgM Ab [Units/volume] in Serum','461590','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2048_48845-2','48845-2','http://loinc.org','Bartonella elizabethae IgM Ab [Titer] in Serum by Immunofluorescence','488452','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2048_48846-0','48846-0','http://loinc.org','Bartonella vinsonii berkhoffii IgM Ab [Titer] in Serum by Immunofluorescence','488460','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2048_48881-7','48881-7','http://loinc.org','Bartonella elizabethae IgM Ab [Titer] in Body fluid by Immunofluorescence','488817','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2048_48886-6','48886-6','http://loinc.org','Bartonella vinsonii berkhoffii IgM Ab [Titer] in Body fluid by Immunofluorescence','488866','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2048_49198-5','49198-5','http://loinc.org','Bartonella vinsonii berkhoffii IgM Ab [Titer] in Body fluid','491985','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2048_49200-9','49200-9','http://loinc.org','Bartonella vinsonii berkhoffii IgM Ab [Titer] in Serum','492009','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2048_49205-8','49205-8','http://loinc.org','Bartonella elizabethae IgM Ab [Titer] in Body fluid','492058','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2048_49207-4','49207-4','http://loinc.org','Bartonella elizabethae IgM Ab [Titer] in Serum','492074','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2048_16175-2','16175-2','http://loinc.org','Bartonella henselae IgM Ab [Presence] in Cerebral spinal fluid','161752','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2048_16177-8','16177-8','http://loinc.org','Bartonella quintana IgM Ab [Units/volume] in Cerebral spinal fluid','161778','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2048_17545-5','17545-5','http://loinc.org','Bartonella quintana IgM Ab [Presence] in Cerebral spinal fluid','175455','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2048_22111-9','22111-9','http://loinc.org','Bartonella henselae IgM Ab [Titer] in Serum','221119','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2048_23955-8','23955-8','http://loinc.org','Bartonella henselae IgM Ab [Titer] in Cerebral spinal fluid by Immunofluorescence','239558','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2048_23960-8','23960-8','http://loinc.org','Bartonella quintana IgM Ab [Titer] in Cerebral spinal fluid','239608','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2048_23962-4','23962-4','http://loinc.org','Bartonella henselae IgM Ab [Titer] in Cerebral spinal fluid','239624','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2048_23975-6','23975-6','http://loinc.org','Bartonella quintana IgM Ab [Titer] in Cerebral spinal fluid by Immunofluorescence','239756','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2048_31251-2','31251-2','http://loinc.org','Bartonella henselae IgM Ab [Units/volume] in Cerebral spinal fluid','312512','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2048_32576-1','32576-1','http://loinc.org','Bartonella henselae IgM Ab [Presence] in Serum','325761','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2048_32578-7','32578-7','http://loinc.org','Bartonella quintana IgM Ab [Presence] in Serum','325787','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2048_44823-3','44823-3','http://loinc.org','Bartonella quintana IgM Ab [Units/volume] in Serum by Immunofluorescence','448233','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2048_44825-8','44825-8','http://loinc.org','Bartonella quintana IgM Ab [Titer] in Serum by Immunofluorescence','448258','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2048_48882-5','48882-5','http://loinc.org','Bartonella henselae IgM Ab [Titer] in Body fluid by Immunofluorescence','488825','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2048_48885-8','48885-8','http://loinc.org','Bartonella quintana IgM Ab [Titer] in Body fluid by Immunofluorescence','488858','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2048_49201-7','49201-7','http://loinc.org','Bartonella quintana IgM Ab [Titer] in Body fluid','492017','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2048_49204-1','49204-1','http://loinc.org','Bartonella henselae IgM Ab [Titer] in Body fluid','492041','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2048_51821-7','51821-7','http://loinc.org','Bartonella quintana IgM Ab [Units/volume] in Serum by Immunoassay','518217','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2048_5327-2','5327-2','http://loinc.org','Bartonella henselae IgM Ab [Units/volume] in Serum','53272','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2048_6312-3','6312-3','http://loinc.org','Bartonella henselae IgM Ab [Units/volume] in Serum by Immunoassay','63123','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2048_6955-9','6955-9','http://loinc.org','Bartonella henselae IgM Ab [Titer] in Serum by Immunofluorescence','69559','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2048_8010-1','8010-1','http://loinc.org','Bartonella quintana IgM Ab [Units/volume] in Serum','80101','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2048_9361-7','9361-7','http://loinc.org','Bartonella quintana IgM Ab [Titer] in Serum','93617','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2048_48843-7','48843-7','http://loinc.org','Bartonella bacilliformis IgM Ab [Titer] in Serum by Immunofluorescence','488437','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2048_48879-1','48879-1','http://loinc.org','Bartonella bacilliformis IgM Ab [Titer] in Body fluid by Immunofluorescence','488791','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2048_49209-0','49209-0','http://loinc.org','Bartonella bacilliformis IgM Ab [Titer] in Body fluid','492090','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2048_49211-6','49211-6','http://loinc.org','Bartonella bacilliformis IgM Ab [Titer] in Serum','492116','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2169_35419-1','35419-1','http://loinc.org','Herpes simplex virus identified in Cerebral spinal fluid by Organism specific culture','354191','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2169_43696-4','43696-4','http://loinc.org','Herpes simplex virus identified in Cerebral spinal fluid by Shell vial culture','436964','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2169_43702-0','43702-0','http://loinc.org','Cytomegalovirus [Presence] in Cerebral spinal fluid by Shell vial culture','437020','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2169_88623-4','88623-4','http://loinc.org','Cytomegalovirus [Presence] in Cerebral spinal fluid by Organism specific culture','886234','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2169_43699-8','43699-8','http://loinc.org','Enterovirus identified in Cerebral spinal fluid by Shell vial culture','436998','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2169_5839-6','5839-6','http://loinc.org','Enterovirus identified in Cerebral spinal fluid by Organism specific culture','58396','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2045_48843-7','48843-7','http://loinc.org','Bartonella bacilliformis IgM Ab [Titer] in Serum by Immunofluorescence','488437','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2045_48879-1','48879-1','http://loinc.org','Bartonella bacilliformis IgM Ab [Titer] in Body fluid by Immunofluorescence','488791','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2045_49209-0','49209-0','http://loinc.org','Bartonella bacilliformis IgM Ab [Titer] in Body fluid','492090','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2045_49211-6','49211-6','http://loinc.org','Bartonella bacilliformis IgM Ab [Titer] in Serum','492116','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.238_14461-8','14461-8','http://loinc.org','Chlamydia trachomatis [Presence] in Blood by Organism specific culture','144618','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.238_14462-6','14462-6','http://loinc.org','Chlamydia trachomatis [Presence] in Cerebral spinal fluid by Organism specific culture','144626','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.238_14463-4','14463-4','http://loinc.org','Chlamydia trachomatis [Presence] in Cervix by Organism specific culture','144634','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.238_14464-2','14464-2','http://loinc.org','Chlamydia trachomatis [Presence] in Vaginal fluid by Organism specific culture','144642','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.238_14465-9','14465-9','http://loinc.org','Chlamydia trachomatis [Presence] in Urethra by Organism specific culture','144659','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.238_14467-5','14467-5','http://loinc.org','Chlamydia trachomatis [Presence] in Urine sediment by Organism specific culture','144675','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.238_45093-2','45093-2','http://loinc.org','Chlamydia trachomatis [Presence] in Anal by Organism specific culture','450932','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.238_45094-0','45094-0','http://loinc.org','Chlamydia trachomatis [Presence] in Conjunctival specimen by Organism specific culture','450940','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.238_45095-7','45095-7','http://loinc.org','Chlamydia trachomatis [Presence] in Genital specimen by Organism specific culture','450957','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.238_45096-5','45096-5','http://loinc.org','Chlamydia trachomatis [Presence] in Nasopharynx by Organism specific culture','450965','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.238_6349-5','6349-5','http://loinc.org','Chlamydia trachomatis [Presence] in Specimen by Organism specific culture','63495','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.238_80367-6','80367-6','http://loinc.org','Chlamydia trachomatis [Presence] in Anorectal by Organism specific culture','803676','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.238_87950-2','87950-2','http://loinc.org','Chlamydia trachomatis [Presence] in Tissue by Organism specific culture','879502','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.238_89648-0','89648-0','http://loinc.org','Chlamydia trachomatis [Presence] in Throat by Organism specific culture','896480','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2046_48842-9','48842-9','http://loinc.org','Bartonella bacilliformis IgG Ab [Titer] in Serum by Immunofluorescence','488429','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2046_48878-3','48878-3','http://loinc.org','Bartonella bacilliformis IgG Ab [Titer] in Body fluid by Immunofluorescence','488783','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2046_49210-8','49210-8','http://loinc.org','Bartonella bacilliformis IgG Ab [Titer] in Body fluid','492108','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2046_49212-4','49212-4','http://loinc.org','Bartonella bacilliformis IgG Ab [Titer] in Serum','492124','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.239_16599-3','16599-3','http://loinc.org','Chlamydia trachomatis DNA [Presence] in Blood by NAA with probe detection','165993','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.239_16600-9','16600-9','http://loinc.org','Chlamydia trachomatis rRNA [Presence] in Genital specimen by Probe','166009','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.239_16601-7','16601-7','http://loinc.org','Chlamydia trachomatis rRNA [Presence] in Urine by Probe','166017','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.239_21187-0','21187-0','http://loinc.org','Chlamydia trachomatis DNA [Presence] in Conjunctival specimen by NAA with probe detection','211870','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.239_21188-8','21188-8','http://loinc.org','Chlamydia trachomatis rRNA [Presence] in Conjunctival specimen by Probe','211888','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.239_21189-6','21189-6','http://loinc.org','Chlamydia trachomatis DNA [Presence] in Cervical mucus by NAA with probe detection','211896','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.239_21190-4','21190-4','http://loinc.org','Chlamydia trachomatis DNA [Presence] in Cervix by NAA with probe detection','211904','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.239_21191-2','21191-2','http://loinc.org','Chlamydia trachomatis DNA [Presence] in Urethra by NAA with probe detection','211912','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.239_21192-0','21192-0','http://loinc.org','Chlamydia trachomatis rRNA [Presence] in Urethra by Probe','211920','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.239_21613-5','21613-5','http://loinc.org','Chlamydia trachomatis DNA [Presence] in Specimen by NAA with probe detection','216135','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.239_23838-6','23838-6','http://loinc.org','Chlamydia trachomatis rRNA [Presence] in Genital fluid by Probe','238386','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.239_38469-3','38469-3','http://loinc.org','Chlamydia trachomatis rRNA [Presence] in Blood by Probe','384693','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.239_42931-6','42931-6','http://loinc.org','Chlamydia trachomatis rRNA [Presence] in Urine by NAA with probe detection','429316','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.239_43304-5','43304-5','http://loinc.org','Chlamydia trachomatis rRNA [Presence] in Specimen by NAA with probe detection','433045','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.239_43404-3','43404-3','http://loinc.org','Chlamydia trachomatis DNA [Presence] in Specimen by Probe with signal amplification','434043','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.239_45078-3','45078-3','http://loinc.org','Chlamydia trachomatis rRNA [Presence] in Cervix by Probe','450783','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.239_45080-9','45080-9','http://loinc.org','Chlamydia trachomatis rRNA [Presence] in Vaginal fluid by Probe','450809','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.239_45084-1','45084-1','http://loinc.org','Chlamydia trachomatis DNA [Presence] in Vaginal fluid by NAA with probe detection','450841','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.239_45085-8','45085-8','http://loinc.org','Chlamydia trachomatis rRNA [Presence] in Nasopharynx by Probe','450858','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.239_45086-6','45086-6','http://loinc.org','Chlamydia trachomatis DNA [Presence] in Nasopharynx by NAA with probe detection','450866','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.239_45089-0','45089-0','http://loinc.org','Chlamydia trachomatis rRNA [Presence] in Anal by Probe','450890','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.239_45090-8','45090-8','http://loinc.org','Chlamydia trachomatis DNA [Presence] in Anal by NAA with probe detection','450908','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.239_47211-8','47211-8','http://loinc.org','Chlamydia trachomatis L2 DNA [Presence] in Specimen by NAA with probe detection','472118','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.239_47212-6','47212-6','http://loinc.org','Chlamydia trachomatis DNA [Identifier] in Specimen by NAA with probe detection','472126','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.239_49096-1','49096-1','http://loinc.org','Chlamydia trachomatis DNA [Units/volume] in Specimen by NAA with probe detection','490961','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.239_4993-2','4993-2','http://loinc.org','Chlamydia trachomatis rRNA [Presence] in Specimen by Probe','49932','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.239_50387-0','50387-0','http://loinc.org','Chlamydia trachomatis rRNA [Presence] in Cervix by NAA with probe detection','503870','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.239_51578-3','51578-3','http://loinc.org','Chlamydia trachomatis DNA [Presence] in Semen by NAA with probe detection','515783','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.239_53925-4','53925-4','http://loinc.org','Chlamydia trachomatis rRNA [Presence] in Urethra by NAA with probe detection','539254','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.239_53926-2','53926-2','http://loinc.org','Chlamydia trachomatis rRNA [Presence] in Vaginal fluid by NAA with probe detection','539262','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.239_57287-5','57287-5','http://loinc.org','Chlamydia trachomatis rRNA [Presence] in Anal by NAA with probe detection','572875','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.239_57288-3','57288-3','http://loinc.org','Chlamydia trachomatis rRNA [Presence] in Nasopharynx by NAA with probe detection','572883','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.239_6356-0','6356-0','http://loinc.org','Chlamydia trachomatis DNA [Presence] in Genital specimen by NAA with probe detection','63560','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.239_6357-8','6357-8','http://loinc.org','Chlamydia trachomatis DNA [Presence] in Urine by NAA with probe detection','63578','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.239_80363-5','80363-5','http://loinc.org','Chlamydia trachomatis DNA [Presence] in Anorectal by NAA with probe detection','803635','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.239_80364-3','80364-3','http://loinc.org','Chlamydia trachomatis rRNA [Presence] in Anorectal by NAA with probe detection','803643','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.239_82306-2','82306-2','http://loinc.org','Chlamydia trachomatis rRNA [Presence] in Throat by NAA with probe detection','823062','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.239_87949-4','87949-4','http://loinc.org','Chlamydia trachomatis DNA [Presence] in Tissue by NAA with probe detection','879494','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.239_88221-7','88221-7','http://loinc.org','Chlamydia trachomatis DNA [Presence] in Throat by NAA with probe detection','882217','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.239_99778-3','99778-3','http://loinc.org','Chlamydia trachomatis rRNA [Presence] in Conjunctival specimen by NAA with probe detection','997783','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.239_100356-5','100356-5','http://loinc.org','Chlamydia trachomatis and Neisseria gonorrhoeae and Trichomonas vaginalis DNA [Identifier] in Specimen by NAA with probe detection','1003565','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.239_36902-5','36902-5','http://loinc.org','Chlamydia trachomatis+Neisseria gonorrhoeae DNA [Presence] in Specimen by NAA with probe detection','369025','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.239_36903-3','36903-3','http://loinc.org','Chlamydia trachomatis and Neisseria gonorrhoeae DNA [Identifier] in Specimen by NAA with probe detection','369033','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.239_43405-0','43405-0','http://loinc.org','Chlamydia trachomatis and Neisseria gonorrhoeae DNA [Identifier] in Specimen by Probe with signal amplification','434050','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.239_43406-8','43406-8','http://loinc.org','Chlamydia trachomatis+Neisseria gonorrhoeae DNA [Presence] in Specimen by Probe with signal amplification','434068','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.239_44806-8','44806-8','http://loinc.org','Chlamydia trachomatis+Neisseria gonorrhoeae DNA [Presence] in Urine by NAA with probe detection','448068','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.239_44807-6','44807-6','http://loinc.org','Chlamydia trachomatis+Neisseria gonorrhoeae DNA [Presence] in Genital specimen by NAA with probe detection','448076','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.239_45067-6','45067-6','http://loinc.org','Chlamydia trachomatis+Neisseria gonorrhoeae rRNA [Presence] in Cervix by Probe','450676','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.239_45068-4','45068-4','http://loinc.org','Chlamydia trachomatis+Neisseria gonorrhoeae DNA [Presence] in Cervix by NAA with probe detection','450684','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.239_45069-2','45069-2','http://loinc.org','Chlamydia trachomatis+Neisseria gonorrhoeae rRNA [Presence] in Genital specimen by Probe','450692','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.239_45070-0','45070-0','http://loinc.org','Chlamydia trachomatis+Neisseria gonorrhoeae rRNA [Presence] in Vaginal fluid by Probe','450700','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.239_45072-6','45072-6','http://loinc.org','Chlamydia trachomatis+Neisseria gonorrhoeae rRNA [Presence] in Anal by Probe','450726','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.239_45073-4','45073-4','http://loinc.org','Chlamydia trachomatis+Neisseria gonorrhoeae rRNA [Presence] in Tissue by Probe','450734','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.239_45074-2','45074-2','http://loinc.org','Chlamydia trachomatis+Neisseria gonorrhoeae rRNA [Presence] in Urine by Probe','450742','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.239_45075-9','45075-9','http://loinc.org','Chlamydia trachomatis+Neisseria gonorrhoeae rRNA [Presence] in Urethra by Probe','450759','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.239_45076-7','45076-7','http://loinc.org','Chlamydia trachomatis+Neisseria gonorrhoeae rRNA [Presence] in Specimen by Probe','450767','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.239_80360-1','80360-1','http://loinc.org','Chlamydia trachomatis+Neisseria gonorrhoeae rRNA [Presence] in Urine by NAA with probe detection','803601','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.239_80361-9','80361-9','http://loinc.org','Chlamydia trachomatis+Neisseria gonorrhoeae rRNA [Presence] in Cervix by NAA with probe detection','803619','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.239_80362-7','80362-7','http://loinc.org','Chlamydia trachomatis+Neisseria gonorrhoeae rRNA [Presence] in Vaginal fluid by NAA with probe detection','803627','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.239_80365-0','80365-0','http://loinc.org','Chlamydia trachomatis+Neisseria gonorrhoeae rRNA [Presence] in Anorectal by NAA with probe detection','803650','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2043_16175-2','16175-2','http://loinc.org','Bartonella henselae IgM Ab [Presence] in Cerebral spinal fluid','161752','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2043_22111-9','22111-9','http://loinc.org','Bartonella henselae IgM Ab [Titer] in Serum','221119','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2043_23955-8','23955-8','http://loinc.org','Bartonella henselae IgM Ab [Titer] in Cerebral spinal fluid by Immunofluorescence','239558','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2043_23962-4','23962-4','http://loinc.org','Bartonella henselae IgM Ab [Titer] in Cerebral spinal fluid','239624','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2043_31251-2','31251-2','http://loinc.org','Bartonella henselae IgM Ab [Units/volume] in Cerebral spinal fluid','312512','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2043_32576-1','32576-1','http://loinc.org','Bartonella henselae IgM Ab [Presence] in Serum','325761','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2043_48882-5','48882-5','http://loinc.org','Bartonella henselae IgM Ab [Titer] in Body fluid by Immunofluorescence','488825','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2043_49204-1','49204-1','http://loinc.org','Bartonella henselae IgM Ab [Titer] in Body fluid','492041','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2043_5327-2','5327-2','http://loinc.org','Bartonella henselae IgM Ab [Units/volume] in Serum','53272','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2043_6312-3','6312-3','http://loinc.org','Bartonella henselae IgM Ab [Units/volume] in Serum by Immunoassay','63123','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2043_6955-9','6955-9','http://loinc.org','Bartonella henselae IgM Ab [Titer] in Serum by Immunofluorescence','69559','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2044_16174-5','16174-5','http://loinc.org','Bartonella henselae IgG Ab [Presence] in Cerebral spinal fluid','161745','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2044_22110-1','22110-1','http://loinc.org','Bartonella henselae IgG Ab [Titer] in Serum','221101','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2044_23668-7','23668-7','http://loinc.org','Bartonella henselae Ab [Titer] in Serum','236687','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2044_23954-1','23954-1','http://loinc.org','Bartonella henselae IgG Ab [Titer] in Cerebral spinal fluid by Immunofluorescence','239541','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2044_23957-4','23957-4','http://loinc.org','Bartonella henselae IgG Ab [Titer] in Cerebral spinal fluid','239574','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2044_26676-7','26676-7','http://loinc.org','Bartonella henselae Ab [Presence] in Serum','266767','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2044_31249-6','31249-6','http://loinc.org','Bartonella henselae Ab [Units/volume] in Serum','312496','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2044_31250-4','31250-4','http://loinc.org','Bartonella henselae IgG Ab [Units/volume] in Cerebral spinal fluid','312504','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2044_32575-3','32575-3','http://loinc.org','Bartonella henselae IgG Ab [Presence] in Serum','325753','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2044_34433-3','34433-3','http://loinc.org','Bartonella henselae Ab [Titer] in Serum by Flow cytometry (FC)','344333','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2044_35269-0','35269-0','http://loinc.org','Bartonella henselae Ab [Presence] in Serum by Immunofluorescence','352690','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2044_44442-2','44442-2','http://loinc.org','Bartonella henselae Ab [Units/volume] in Serum by Immunoassay','444422','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2044_48721-5','48721-5','http://loinc.org','Bartonella henselae IgG Ab [Units/volume] in Serum by Immunofluorescence','487215','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2044_48883-3','48883-3','http://loinc.org','Bartonella henselae IgG Ab [Titer] in Body fluid by Immunofluorescence','488833','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2044_49203-3','49203-3','http://loinc.org','Bartonella henselae IgG Ab [Titer] in Body fluid','492033','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2044_5326-4','5326-4','http://loinc.org','Bartonella henselae IgG Ab [Units/volume] in Serum','53264','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2044_6954-2','6954-2','http://loinc.org','Bartonella henselae IgG Ab [Titer] in Serum by Immunofluorescence','69542','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2044_7815-4','7815-4','http://loinc.org','Bartonella henselae IgG Ab [Units/volume] in Serum by Immunoassay','78154','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2173_29257-3','29257-3','http://loinc.org','Mycoplasma pneumoniae DNA [Presence] in Specimen by NAA with probe detection','292573','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2173_46725-8','46725-8','http://loinc.org','Tropheryma whipplei DNA [Presence] in Specimen by NAA with probe detection','467258','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2173_48683-7','48683-7','http://loinc.org','Streptococcus agalactiae DNA [Presence] in Specimen by NAA with probe detection','486837','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2173_49610-9','49610-9','http://loinc.org','Streptococcus pyogenes DNA [Identifier] in Specimen by NAA with probe detection','496109','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2173_5034-4','5034-4','http://loinc.org','Streptococcus agalactiae rRNA [Presence] in Specimen by Probe','50344','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2173_5036-9','5036-9','http://loinc.org','Streptococcus pyogenes rRNA [Presence] in Specimen by Probe','50369','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2173_53255-6','53255-6','http://loinc.org','Mycoplasma pneumoniae DNA [#/volume] in Specimen by NAA with probe detection','532556','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2173_6483-2','6483-2','http://loinc.org','Mycoplasma pneumoniae rRNA [Presence] in Specimen by Probe','64832','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2173_72268-6','72268-6','http://loinc.org','Streptococcus pyogenes exotoxin B speB gene [Presence] in Specimen by NAA with probe detection','722686','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2173_97206-7','97206-7','http://loinc.org','Tropheryma whipplei DNA [Presence] in Specimen by NAA with non-probe detection','972067','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2173_13956-8','13956-8','http://loinc.org','Mycobacterium tuberculosis DNA [Presence] in Specimen by NAA with probe detection','139568','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2173_17296-5','17296-5','http://loinc.org','Mycobacterium tuberculosis complex rRNA [Presence] in Specimen by Probe','172965','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2173_22926-0','22926-0','http://loinc.org','Brucella abortus rRNA [Presence] in Specimen by Probe','229260','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2173_22927-8','22927-8','http://loinc.org','Brucella abortus DNA [Presence] in Specimen by NAA with probe detection','229278','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2173_22936-9','22936-9','http://loinc.org','Brucella melitensis DNA [Presence] in Specimen by NAA with probe detection','229369','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2173_22954-2','22954-2','http://loinc.org','Brucella suis rRNA [Presence] in Specimen by Probe','229542','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2173_22955-9','22955-9','http://loinc.org','Brucella suis DNA [Presence] in Specimen by NAA with probe detection','229559','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2173_23024-3','23024-3','http://loinc.org','Coxiella burnetii DNA [Presence] in Specimen by NAA with probe detection','230243','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2173_24042-4','24042-4','http://loinc.org','Ehrlichia chaffeensis DNA [Presence] in Specimen by NAA with probe detection','240424','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2173_29560-0','29560-0','http://loinc.org','Anaplasma phagocytophilum DNA [Presence] in Specimen by NAA with probe detection','295600','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2173_38379-4','38379-4','http://loinc.org','Mycobacterium tuberculosis complex DNA [Presence] in Specimen by NAA with probe detection','383794','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2173_41625-5','41625-5','http://loinc.org','Brucella sp DNA [Identifier] in Specimen by NAA with probe detection','416255','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2173_41626-3','41626-3','http://loinc.org','Brucella sp DNA [Presence] in Specimen by NAA with probe detection','416263','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2173_48174-7','48174-7','http://loinc.org','Mycobacterium tuberculosis complex rRNA [Presence] in Specimen by NAA with probe detection','481747','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2173_48864-3','48864-3','http://loinc.org','Bartonella sp DNA [Presence] in Specimen by NAA with probe detection','488643','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2173_48865-0','48865-0','http://loinc.org','Ehrlichia ewingii DNA [Presence] in Specimen by NAA with probe detection','488650','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2173_48866-8','48866-8','http://loinc.org','Ehrlichia sp DNA [Presence] in Specimen by NAA with probe detection','488668','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2173_48868-4','48868-4','http://loinc.org','Rickettsia rickettsii DNA [Presence] in Specimen by NAA with probe detection','488684','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2173_49123-3','49123-3','http://loinc.org','Bartonella sp identified in Specimen by Sequencing','491233','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2173_49124-1','49124-1','http://loinc.org','Coxiella burnetii identified in Specimen by Sequencing','491241','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2173_49125-8','49125-8','http://loinc.org','Ehrlichia sp identified in Specimen by Sequencing','491258','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2173_5021-1','5021-1','http://loinc.org','Listeria monocytogenes rRNA [Presence] in Specimen by Probe','50211','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2173_5027-8','5027-8','http://loinc.org','Mycobacterium tuberculosis rRNA [Presence] in Specimen by Probe','50278','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2173_53257-2','53257-2','http://loinc.org','Mycobacterium tuberculosis DNA [#/volume] in Specimen by NAA with probe detection','532572','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2173_61369-5','61369-5','http://loinc.org','Listeria monocytogenes DNA [Presence] in Specimen by NAA with probe detection','613695','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2173_92827-5','92827-5','http://loinc.org','Mycobacterium tuberculosis complex species identified in Specimen by Sequencing','928275','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2173_94634-3','94634-3','http://loinc.org','Coxiella burnetii DNA [Cycle Threshold #] in Specimen by NAA with probe detection','946343','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2173_48863-5','48863-5','http://loinc.org','Rickettsia sp DNA [Identifier] in Specimen by RFLP','488635','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2173_48869-2','48869-2','http://loinc.org','Rickettsia sp DNA [Presence] in Specimen by NAA with probe detection','488692','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2173_49127-4','49127-4','http://loinc.org','Rickettsia sp identified in Specimen by Sequencing','491274','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2173_67726-0','67726-0','http://loinc.org','Rickettsia sp DNA [Identifier] in Specimen by NAA with probe detection','677260','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2173_17546-3','17546-3','http://loinc.org','Bartonella quintana rRNA [Presence] in Specimen by Probe','175463','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2173_33986-1','33986-1','http://loinc.org','Bartonella henselae DNA [Presence] in Specimen by NAA with probe detection','339861','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2173_4991-6','4991-6','http://loinc.org','Borrelia burgdorferi DNA [Presence] in Specimen by NAA with probe detection','49916','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2173_57910-2','57910-2','http://loinc.org','Bartonella quintana DNA [Presence] in Specimen by NAA with probe detection','579102','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2173_94250-8','94250-8','http://loinc.org','Borrelia burgdorferi oppA2 gene [Presence] in Specimen by NAA with non-probe detection','942508','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2174_101345-7','101345-7','http://loinc.org','Candida krusei DNA [Presence] in Specimen by NAA with probe detection','1013457','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2174_101781-3','101781-3','http://loinc.org','Candida guilliermondii DNA [Presence] in Specimen by NAA with probe detection','1017813','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2174_101936-3','101936-3','http://loinc.org','Candida albicans DNA [Presence] in Specimen by NAA with probe detection','1019363','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2174_101937-1','101937-1','http://loinc.org','Candida albicans+glabrata+tropicalis+parapsilosis DNA [Presence] in Specimen by NAA with probe detection','1019371','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2174_101938-9','101938-9','http://loinc.org','Candida dubliniensis DNA [Presence] in Specimen by NAA with probe detection','1019389','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2174_101939-7','101939-7','http://loinc.org','Candida dubliniensis+lusitaniae+krusei+auris DNA [Presence] in Specimen by NAA with probe detection','1019397','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2174_101940-5','101940-5','http://loinc.org','Candida glabrata DNA [Presence] in Specimen by NAA with probe detection','1019405','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2174_101942-1','101942-1','http://loinc.org','Candida lusitaniae DNA [Presence] in Specimen by NAA with probe detection','1019421','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2174_101943-9','101943-9','http://loinc.org','Candida parapsilosis DNA [Presence] in Specimen by NAA with probe detection','1019439','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2174_101945-4','101945-4','http://loinc.org','Candida tropicalis DNA [Presence] in Specimen by NAA with probe detection','1019454','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2174_101984-3','101984-3','http://loinc.org','Candida albicans DNA [Presence] in Body fluid by Probe.amp.tar','1019843','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2174_101985-0','101985-0','http://loinc.org','Candida parapsilosis DNA [Presence] in Body fluid by Probe.amp.tar','1019850','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2174_101986-8','101986-8','http://loinc.org','Candida krusei DNA [Presence] in Body fluid by Probe.amp.tar','1019868','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2174_101987-6','101987-6','http://loinc.org','Candida glabrata DNA [Presence] in Body fluid by Probe.amp.tar','1019876','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2174_101988-4','101988-4','http://loinc.org','Candida tropicalis DNA [Presence] in Body fluid by Probe.amp.tar','1019884','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2174_101989-2','101989-2','http://loinc.org','Candida dubliniensis DNA [Presence] in Body fluid by Probe.amp.tar','1019892','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2174_76580-0','76580-0','http://loinc.org','Candida albicans its gene [Presence] in Swab specimen by NAA with probe detection','765800','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2174_76595-8','76595-8','http://loinc.org','Candida albicans its gene [#/mass] in XXX.tissue by NAA with probe detection','765958','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2174_76608-9','76608-9','http://loinc.org','Candida albicans its gene [#/volume] in XXX.body fluid by NAA with probe detection','766089','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2174_91081-0','91081-0','http://loinc.org','Candida sp DNA [Presence] in Specimen by NAA with probe detection','910810','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2174_87620-1','87620-1','http://loinc.org','Candida auris ITS2 gene [Presence] in Specimen by NAA with probe detection','876201','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2174_95765-4','95765-4','http://loinc.org','Candida auris DNA [Presence] in Specimen by NAA with non-probe detection','957654','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2174_97936-9','97936-9','http://loinc.org','Candida auris DNA [Presence] in Specimen by NAA with probe detection','979369','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2174_103164-0','103164-0','http://loinc.org','Cryptococcus neoformans DNA [Presence] in Specimen by NAA with probe detection','1031640','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2174_103167-3','103167-3','http://loinc.org','Blastomyces dermatitidis DNA [Presence] in Specimen by NAA with probe detection','1031673','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2174_48588-8','48588-8','http://loinc.org','Coccidioides sp rRNA [Presence] in Specimen by NAA with probe detection','485888','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2174_49098-7','49098-7','http://loinc.org','Cryptococcus neoformans rRNA [Units/volume] in Specimen by NAA with probe detection','490987','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2174_4994-0','4994-0','http://loinc.org','Coccidioides immitis rRNA [Presence] in Specimen by Probe','49940','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2174_4995-7','4995-7','http://loinc.org','Cryptococcus neoformans rRNA [Presence] in Specimen by Probe','49957','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2174_5015-3','5015-3','http://loinc.org','Histoplasma capsulatum DNA [Presence] in Specimen by NAA with probe detection','50153','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2174_5016-1','5016-1','http://loinc.org','Histoplasma capsulatum rRNA [Presence] in Specimen by Probe','50161','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2174_51771-4','51771-4','http://loinc.org','Histoplasma capsulatum DNA [#/volume] in Specimen by NAA with probe detection','517714','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2174_70907-1','70907-1','http://loinc.org','Cryptococcus sp rRNA gene [Identifier] in Specimen by Sequencing','709071','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2174_81649-6','81649-6','http://loinc.org','Cryptococcus sp rRNA gene [Presence] in Specimen by NAA with probe detection','816496','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2174_88926-1','88926-1','http://loinc.org','Histoplasma capsulatum DNA [Presence] in Tissue by NAA with probe detection','889261','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2174_95913-0','95913-0','http://loinc.org','Coccidioides sp DNA [Presence] in Tissue by NAA with probe detection','959130','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2174_95914-8','95914-8','http://loinc.org','Blastomyces sp DNA [Presence] in Tissue by NAA with probe detection','959148','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2174_97916-1','97916-1','http://loinc.org','Coccidioides sp DNA [Presence] in Specimen by NAA with probe detection','979161','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2174_4990-8','4990-8','http://loinc.org','Blastomyces dermatitidis rRNA [Presence] in Specimen by Probe','49908','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2174_81653-8','81653-8','http://loinc.org','Blastomyces dermatitidis drk1 and Histoplasma capsulatum gapdh genes [Identifier] in Specimen by NAA with probe detection','816538','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2174_98393-2','98393-2','http://loinc.org','Candida sp [Identifier] in Isolate by Sequencing','983932','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2174_48589-6','48589-6','http://loinc.org','Coccidioides sp rRNA [Presence] in Isolate by NAA with probe detection','485896','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2174_98410-4','98410-4','http://loinc.org','Cryptococcus molecular type in Isolate by Sequencing','984104','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2050_38354-7','38354-7','http://loinc.org','Bartonella sp identified in Specimen by Organism specific culture','383547','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2171_554-6','554-6','http://loinc.org','Candida sp identified in Stool by Organism specific culture','5546','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2171_555-3','555-3','http://loinc.org','Candida sp identified in Specimen by Organism specific culture','5553','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2171_88717-4','88717-4','http://loinc.org','Candida sp identified in Isolate','887174','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2171_98394-0','98394-0','http://loinc.org','Candida sp [Identifier] in Isolate by MS.MALDI-TOF','983940','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2171_14197-8','14197-8','http://loinc.org','Blastomyces dermatitidis exoantigen [Identifier] in Isolate','141978','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2171_14206-7','14206-7','http://loinc.org','Coccidioides immitis exoantigen [Identifier] in Isolate','142067','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2171_14214-1','14214-1','http://loinc.org','Histoplasma capsulatum exoantigen [Identifier] in Isolate','142141','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2171_20767-0','20767-0','http://loinc.org','Coccidioides immitis [Presence] in Isolate','207670','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2171_38376-0','38376-0','http://loinc.org','Cryptococcus sp identified in Specimen by Organism specific culture','383760','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2171_90002-7','90002-7','http://loinc.org','Candida auris [Presence] in Specimen by Organism specific culture','900027','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2171_94419-9','94419-9','http://loinc.org','Candida auris [Presence] in Isolate by MS.MALDI-TOF','944199','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2171_97940-1','97940-1','http://loinc.org','Cryptococcus sp [Presence] in Isolate by Organism specific culture','979401','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2171_98393-2','98393-2','http://loinc.org','Candida sp [Identifier] in Isolate by Sequencing','983932','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2171_14205-9','14205-9','http://loinc.org','Coccidioides immitis Ag [Presence] in Isolate by Immune diffusion (ID)','142059','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2171_31782-6','31782-6','http://loinc.org','Coccidioides immitis Ag [Presence] in Isolate','317826','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2171_38377-8','38377-8','http://loinc.org','Cryptococcus neoformans [Presence] in Specimen by Organism specific culture','383778','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2171_48589-6','48589-6','http://loinc.org','Coccidioides sp rRNA [Presence] in Isolate by NAA with probe detection','485896','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2171_98410-4','98410-4','http://loinc.org','Cryptococcus molecular type in Isolate by Sequencing','984104','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2051_26678-3','26678-3','http://loinc.org','Bartonella elizabethae Ab [Presence] in Serum','266783','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2051_43425-8','43425-8','http://loinc.org','Bartonella sp IgG Ab [Titer] in Cerebral spinal fluid','434258','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2051_43866-3','43866-3','http://loinc.org','Bartonella sp Ab [Presence] in Serum','438663','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2051_43920-8','43920-8','http://loinc.org','Bartonella sp IgG Ab [Presence] in Serum','439208','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2051_44443-0','44443-0','http://loinc.org','Bartonella sp IgG Ab [Units/volume] in Serum by Immunoassay','444430','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2051_46158-2','46158-2','http://loinc.org','Bartonella sp IgG Ab [Units/volume] in Serum','461582','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2051_48844-5','48844-5','http://loinc.org','Bartonella elizabethae IgG Ab [Titer] in Serum by Immunofluorescence','488445','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2051_48847-8','48847-8','http://loinc.org','Bartonella vinsonii berkhoffii IgG Ab [Titer] in Serum by Immunofluorescence','488478','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2051_48880-9','48880-9','http://loinc.org','Bartonella elizabethae IgG Ab [Titer] in Body fluid by Immunofluorescence','488809','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2051_48887-4','48887-4','http://loinc.org','Bartonella vinsonii berkhoffii IgG Ab [Titer] in Body fluid by Immunofluorescence','488874','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2051_49197-7','49197-7','http://loinc.org','Bartonella vinsonii berkhoffii IgG Ab [Titer] in Body fluid','491977','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2051_49199-3','49199-3','http://loinc.org','Bartonella vinsonii berkhoffii IgG Ab [Titer] in Serum','491993','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2051_49206-6','49206-6','http://loinc.org','Bartonella elizabethae IgG Ab [Titer] in Body fluid','492066','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2051_49208-2','49208-2','http://loinc.org','Bartonella elizabethae IgG Ab [Titer] in Serum','492082','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2051_16174-5','16174-5','http://loinc.org','Bartonella henselae IgG Ab [Presence] in Cerebral spinal fluid','161745','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2051_16176-0','16176-0','http://loinc.org','Bartonella quintana IgG Ab [Units/volume] in Cerebral spinal fluid','161760','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2051_17544-8','17544-8','http://loinc.org','Bartonella quintana IgG Ab [Presence] in Cerebral spinal fluid','175448','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2051_22110-1','22110-1','http://loinc.org','Bartonella henselae IgG Ab [Titer] in Serum','221101','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2051_23668-7','23668-7','http://loinc.org','Bartonella henselae Ab [Titer] in Serum','236687','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2051_23954-1','23954-1','http://loinc.org','Bartonella henselae IgG Ab [Titer] in Cerebral spinal fluid by Immunofluorescence','239541','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2051_23957-4','23957-4','http://loinc.org','Bartonella henselae IgG Ab [Titer] in Cerebral spinal fluid','239574','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2051_23961-6','23961-6','http://loinc.org','Bartonella quintana IgG Ab [Titer] in Cerebral spinal fluid','239616','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2051_23974-9','23974-9','http://loinc.org','Bartonella quintana IgG Ab [Titer] in Cerebral spinal fluid by Immunofluorescence','239749','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2051_26676-7','26676-7','http://loinc.org','Bartonella henselae Ab [Presence] in Serum','266767','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2051_26677-5','26677-5','http://loinc.org','Bartonella quintana Ab [Presence] in Serum','266775','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2051_31249-6','31249-6','http://loinc.org','Bartonella henselae Ab [Units/volume] in Serum','312496','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2051_31250-4','31250-4','http://loinc.org','Bartonella henselae IgG Ab [Units/volume] in Cerebral spinal fluid','312504','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2051_32575-3','32575-3','http://loinc.org','Bartonella henselae IgG Ab [Presence] in Serum','325753','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2051_32577-9','32577-9','http://loinc.org','Bartonella quintana IgG Ab [Presence] in Serum','325779','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2051_34433-3','34433-3','http://loinc.org','Bartonella henselae Ab [Titer] in Serum by Flow cytometry (FC)','344333','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2051_35269-0','35269-0','http://loinc.org','Bartonella henselae Ab [Presence] in Serum by Immunofluorescence','352690','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2051_44442-2','44442-2','http://loinc.org','Bartonella henselae Ab [Units/volume] in Serum by Immunoassay','444422','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2051_44827-4','44827-4','http://loinc.org','Bartonella quintana IgG Ab [Titer] in Serum by Immunofluorescence','448274','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2051_48713-2','48713-2','http://loinc.org','Bartonella quintana IgG Ab [Units/volume] in Serum or Plasma by Immunofluorescence','487132','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2051_48721-5','48721-5','http://loinc.org','Bartonella henselae IgG Ab [Units/volume] in Serum by Immunofluorescence','487215','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2051_48842-9','48842-9','http://loinc.org','Bartonella bacilliformis IgG Ab [Titer] in Serum by Immunofluorescence','488429','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2051_48878-3','48878-3','http://loinc.org','Bartonella bacilliformis IgG Ab [Titer] in Body fluid by Immunofluorescence','488783','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2051_48883-3','48883-3','http://loinc.org','Bartonella henselae IgG Ab [Titer] in Body fluid by Immunofluorescence','488833','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2051_48884-1','48884-1','http://loinc.org','Bartonella quintana IgG Ab [Titer] in Body fluid by Immunofluorescence','488841','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2051_49202-5','49202-5','http://loinc.org','Bartonella quintana IgG Ab [Titer] in Body fluid','492025','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2051_49203-3','49203-3','http://loinc.org','Bartonella henselae IgG Ab [Titer] in Body fluid','492033','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2051_49210-8','49210-8','http://loinc.org','Bartonella bacilliformis IgG Ab [Titer] in Body fluid','492108','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2051_49212-4','49212-4','http://loinc.org','Bartonella bacilliformis IgG Ab [Titer] in Serum','492124','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2051_51451-3','51451-3','http://loinc.org','Bartonella quintana IgG Ab [Units/volume] in Serum or Plasma','514513','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2051_51816-7','51816-7','http://loinc.org','Bartonella quintana IgG Ab [Units/volume] in Serum by Immunoassay','518167','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2051_5326-4','5326-4','http://loinc.org','Bartonella henselae IgG Ab [Units/volume] in Serum','53264','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2051_6954-2','6954-2','http://loinc.org','Bartonella henselae IgG Ab [Titer] in Serum by Immunofluorescence','69542','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2051_7815-4','7815-4','http://loinc.org','Bartonella henselae IgG Ab [Units/volume] in Serum by Immunoassay','78154','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2051_8009-3','8009-3','http://loinc.org','Bartonella quintana IgG Ab [Units/volume] in Serum','80093','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2051_9360-9','9360-9','http://loinc.org','Bartonella quintana IgG Ab [Titer] in Serum','93609','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_101567-6','101567-6','http://loinc.org','Parainfluenza virus RNA in Specimen Document','1015676','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_29908-1','29908-1','http://loinc.org','Parainfluenza virus 1 RNA [Presence] in Specimen by NAA with probe detection','299081','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_29909-9','29909-9','http://loinc.org','Parainfluenza virus 2 RNA [Presence] in Specimen by NAA with probe detection','299099','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_29910-7','29910-7','http://loinc.org','Parainfluenza virus 3 RNA [Presence] in Specimen by NAA with probe detection','299107','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_32585-2','32585-2','http://loinc.org','Epstein Barr virus DNA [#/volume] (viral load) in Specimen by NAA with probe detection','325852','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_33027-4','33027-4','http://loinc.org','Herpes simplex virus+Varicella zoster virus DNA [Presence] in Specimen by NAA with probe detection','330274','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_33631-3','33631-3','http://loinc.org','Cytomegalovirus UL54 gene mutations detected [Identifier]','336313','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_33632-1','33632-1','http://loinc.org','Cytomegalovirus UL54+UL97 gene mutations detected [Identifier]','336321','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_39528-5','39528-5','http://loinc.org','Adenovirus DNA [Presence] in Specimen by NAA with probe detection','395285','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_40444-2','40444-2','http://loinc.org','CMV gene mutations detected [Identifier]','404442','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_40975-5','40975-5','http://loinc.org','Adenovirus DNA [Identifier] in Specimen by RFLP','409755','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_40976-3','40976-3','http://loinc.org','Adenovirus DNA [Identifier] in Specimen by NAA with probe detection','409763','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_41003-5','41003-5','http://loinc.org','Human coronavirus 229E RNA [Presence] in Specimen by NAA with probe detection','410035','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_41010-0','41010-0','http://loinc.org','Parainfluenza virus 4 RNA [Presence] in Specimen by NAA with probe detection','410100','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_49335-3','49335-3','http://loinc.org','Adenovirus DNA [#/volume] (viral load) in Tissue by NAA with probe detection','493353','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_49340-3','49340-3','http://loinc.org','Adenovirus DNA [#/volume] (viral load) in Specimen by NAA with probe detection','493403','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_5005-4','5005-4','http://loinc.org','Epstein Barr virus DNA [Presence] in Specimen by NAA with probe detection','50054','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_53252-3','53252-3','http://loinc.org','Parainfluenza virus 1 RNA [#/volume] (viral load) in Specimen by NAA with probe detection','532523','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_53253-1','53253-1','http://loinc.org','Parainfluenza virus 2 RNA [#/volume] (viral load) in Specimen by NAA with probe detection','532531','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_53254-9','53254-9','http://loinc.org','Parainfluenza virus 3 RNA [#/volume] (viral load) in Specimen by NAA with probe detection','532549','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_53774-6','53774-6','http://loinc.org','Epstein Barr virus DNA [Log #/volume] (viral load) in Specimen by NAA with probe detection','537746','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_60254-0','60254-0','http://loinc.org','Parainfluenza virus 1+2+3 RNA [Presence] in Specimen by NAA with probe detection','602540','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_61363-8','61363-8','http://loinc.org','Adenovirus 3+4+7+21 DNA [Presence] in Specimen by NAA with probe detection','613638','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_61365-3','61365-3','http://loinc.org','Parainfluenza virus RNA [Presence] in Specimen by NAA with probe detection','613653','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_6307-3','6307-3','http://loinc.org','Adenovirus rRNA [Presence] in Tissue by Probe','63073','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_6308-1','6308-1','http://loinc.org','Adenovirus rRNA [Presence] in Specimen by Probe','63081','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_64038-3','64038-3','http://loinc.org','Adenovirus DNA [Log #/volume] (viral load) in Specimen by NAA with probe detection','640383','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_66720-4','66720-4','http://loinc.org','Adenovirus DNA [Log #/volume] (viral load) in Body fluid by NAA with probe detection','667204','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_66721-2','66721-2','http://loinc.org','Adenovirus DNA [#/volume] (viral load) in Body fluid by NAA with probe detection','667212','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_66722-0','66722-0','http://loinc.org','Adenovirus DNA [Log #/volume] (viral load) in Tissue by NAA with probe detection','667220','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_67818-5','67818-5','http://loinc.org','Parainfluenza virus 4a RNA [Presence] in Specimen by NAA with probe detection','678185','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_67819-3','67819-3','http://loinc.org','Parainfluenza virus 4b RNA [Presence] in Specimen by NAA with probe detection','678193','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_72833-7','72833-7','http://loinc.org','Cytomegalovirus UL97 gene mutations detected [Identifier]','728337','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_86328-2','86328-2','http://loinc.org','Adenovirus B(21) DNA [Presence] in Specimen by NAA with probe detection','863282','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_86329-0','86329-0','http://loinc.org','Adenovirus B(16) DNA [Presence] in Specimen by NAA with probe detection','863290','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_86330-8','86330-8','http://loinc.org','Adenovirus B(11) DNA [Presence] in Specimen by NAA with probe detection','863308','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_86331-6','86331-6','http://loinc.org','Adenovirus B(14) DNA [Presence] in Specimen by NAA with probe detection','863316','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_86332-4','86332-4','http://loinc.org','Adenovirus B(7) DNA [Presence] in Specimen by NAA with probe detection','863324','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_86333-2','86333-2','http://loinc.org','Adenovirus E(4) DNA [Presence] in Specimen by NAA with probe detection','863332','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_86334-0','86334-0','http://loinc.org','Adenovirus B(3) DNA [Presence] in Specimen by NAA with probe detection','863340','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_86510-5','86510-5','http://loinc.org','Adenovirus DNA [Presence] in Tissue by NAA with probe detection','865105','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_88541-8','88541-8','http://loinc.org','Adenovirus DNA [Presence] in Aspirate by NAA with probe detection','885418','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_92828-3','92828-3','http://loinc.org','Adenovirus B+E DNA [Presence] in Specimen by NAA with probe detection','928283','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_95659-9','95659-9','http://loinc.org','Adenovirus RNA [Presence] in Specimen by NAA with probe detection','956599','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_97645-6','97645-6','http://loinc.org','Parainfluenza virus 1+2+3+4 RNA [Presence] in Specimen by NAA with probe detection','976456','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_100982-8','100982-8','http://loinc.org','Varicella zoster virus DNA [Log #/volume] (viral load) in Specimen by NAA with probe detection','1009828','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_11483-5','11483-5','http://loinc.org','Varicella zoster virus DNA [Presence] in Specimen by NAA with probe detection','114835','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_25842-6','25842-6','http://loinc.org','HIV 2 proviral DNA [Presence] in Specimen by NAA with probe detection','258426','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_35400-1','35400-1','http://loinc.org','Varicella zoster virus DNA [Presence] in Tissue by NAA with probe detection','354001','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_49450-0','49450-0','http://loinc.org','Varicella zoster virus DNA [#/volume] (viral load) in Tissue by NAA with probe detection','494500','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_49451-8','49451-8','http://loinc.org','Varicella zoster virus DNA [#/volume] (viral load) in Specimen by NAA with probe detection','494518','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_49656-2','49656-2','http://loinc.org','HIV protease gene mutations by Genotype method','496562','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_49661-2','49661-2','http://loinc.org','HIV protease gene mutations by Phenotype method','496612','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_5018-7','5018-7','http://loinc.org','HIV 1 RNA [Presence] in Specimen by NAA with probe detection','50187','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_51646-8','51646-8','http://loinc.org','Rabies virus RNA [Presence] in Specimen by NAA with probe detection','516468','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_51647-6','51647-6','http://loinc.org','Rabies virus RNA [Presence] in Specimen by Probe','516476','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_54091-4','54091-4','http://loinc.org','Rubella virus RNA [Presence] in Specimen by NAA with probe detection','540914','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_60259-9','60259-9','http://loinc.org','Adenovirus DNA [Presence] in Isolate by NAA with probe detection','602599','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_61364-6','61364-6','http://loinc.org','Echovirus+Coxsackievirus RNA [Presence] in Specimen by NAA with probe detection','613646','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_70867-7','70867-7','http://loinc.org','Rabies virus strain identified in Specimen by Sequencing','708677','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_73658-7','73658-7','http://loinc.org','HIV 1 subtype in Specimen by NAA with probe detection','736587','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_73659-5','73659-5','http://loinc.org','HIV 2 subtype in Specimen by NAA with probe detection','736595','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_74853-3','74853-3','http://loinc.org','HIV 1 proviral DNA [Presence] in Specimen by NAA with probe detection','748533','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_85690-6','85690-6','http://loinc.org','Rubella virus genotype in Specimen','856906','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_85796-1','85796-1','http://loinc.org','Rubella virus E1 gene [Cycle Threshold #] in Specimen by NAA with probe detection','857961','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_86502-2','86502-2','http://loinc.org','Varicella zoster virus strain DNA [Type] in Specimen by NAA with probe detection','865022','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_86509-7','86509-7','http://loinc.org','Varicella zoster virus clade [Type] in Specimen by Molecular genetics method','865097','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_87961-9','87961-9','http://loinc.org','Varicella zoster virus DNA [Presence] in Body fluid by NAA with probe detection','879619','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_88214-2','88214-2','http://loinc.org','Rabies virus RNA [Presence] in Tissue by NAA with probe detection','882142','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_88536-8','88536-8','http://loinc.org','Varicella zoster virus DNA [Presence] in Aspirate by NAA with probe detection','885368','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_94584-0','94584-0','http://loinc.org','Varicella zoster virus DNA [Presence] in Specimen by NAA with non-probe detection','945840','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_24041-6','24041-6','http://loinc.org','Cytomegalovirus DNA [Units/volume] (viral load) in Specimen by Probe with signal amplification','240416','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_25836-8','25836-8','http://loinc.org','HIV 1 RNA [#/volume] (viral load) in Specimen by NAA with probe detection','258368','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_29495-9','29495-9','http://loinc.org','Herpes virus 6 DNA [Presence] in Specimen by NAA with probe detection','294959','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_33006-8','33006-8','http://loinc.org','Cytomegalovirus DNA [#/volume] (viral load) in Specimen by NAA with probe detection','330068','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_33940-8','33940-8','http://loinc.org','Herpes virus 6 DNA [Presence] in Tissue by NAA with probe detection','339408','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_34700-5','34700-5','http://loinc.org','HIV reverse transcriptase+protease gene mutations tested for','347005','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_34720-3','34720-3','http://loinc.org','Cytomegalovirus DNA [Units/volume] (viral load) in Specimen by NAA with probe detection','347203','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_38348-9','38348-9','http://loinc.org','Herpes virus 6 DNA [Identifier] in Specimen by NAA with probe detection','383489','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_38349-7','38349-7','http://loinc.org','Herpes virus 6 DNA [#/volume] (viral load) in Specimen by NAA with probe detection','383497','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_38350-5','38350-5','http://loinc.org','Herpes virus 6 DNA [Log #/volume] (viral load) in Specimen by NAA with probe detection','383505','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_44423-2','44423-2','http://loinc.org','Herpes virus 7 DNA [Presence] in Specimen by NAA with probe detection','444232','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_48510-2','48510-2','http://loinc.org','HIV 1 RNA [Log #/volume] (viral load) in Serum or Plasma by Probe and target amplification method detection limit = 1.7 log copies/mL','485102','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_49351-0','49351-0','http://loinc.org','Cytomegalovirus DNA [#/volume] (viral load) in Tissue by NAA with probe detection','493510','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_49390-8','49390-8','http://loinc.org','Herpes virus 6 DNA [#/volume] (viral load) in Tissue by NAA with probe detection','493908','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_49399-9','49399-9','http://loinc.org','Herpes virus 7 DNA [#/volume] (viral load) in Specimen by NAA with probe detection','493999','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_49403-9','49403-9','http://loinc.org','Herpes virus 8 DNA [#/volume] (viral load) in Specimen by NAA with probe detection','494039','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_49890-7','49890-7','http://loinc.org','HIV 1 RNA [Log #/volume] (viral load) in Specimen by NAA with probe detection','498907','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_4997-3','4997-3','http://loinc.org','Cytomegalovirus DNA [Presence] in Tissue by Probe','49973','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_4998-1','4998-1','http://loinc.org','Cytomegalovirus DNA [Presence] in Tissue by NAA with probe detection','49981','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_5000-5','5000-5','http://loinc.org','Cytomegalovirus DNA [Presence] in Specimen by NAA with probe detection','50005','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_50790-5','50790-5','http://loinc.org','HIV 1 RNA tropism [Identifier]','507905','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_53763-9','53763-9','http://loinc.org','Cytomegalovirus DNA [Log #/volume] (viral load) in Specimen by NAA with probe detection','537639','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_53798-5','53798-5','http://loinc.org','HIV reverse transcriptase+protease gene mutations detected [Identifier]','537985','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_61199-6','61199-6','http://loinc.org','HIV 1 integrase gene mutations detected [Identifier]','611996','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_62485-8','62485-8','http://loinc.org','Herpes virus 6A DNA [Presence] in Specimen by NAA with probe detection','624858','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_62486-6','62486-6','http://loinc.org','Herpes virus 6B DNA [Presence] in Specimen by NAA with probe detection','624866','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_62860-2','62860-2','http://loinc.org','Influenza virus C RNA [Presence] in Specimen by NAA with probe detection','628602','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_68457-1','68457-1','http://loinc.org','Enterovirus and Parechovirus A RNA [Identifier] in Specimen by NAA with probe detection','684571','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_72605-9','72605-9','http://loinc.org','Cytomegalovirus glycoprotein genotype in Specimen by NAA with probe detection','726059','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_74855-8','74855-8','http://loinc.org','HIV 1 proviral DNA [Log #/volume] (viral load) in Specimen by NAA with probe detection','748558','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_78008-0','78008-0','http://loinc.org','HIV 1 proviral DNA [Entitic number] (viral load) in Mononuclear cells from unspecified specimen by NAA with probe detection','780080','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_78010-6','78010-6','http://loinc.org','HIV 1 proviral DNA [Logarithmic entitic number] (viral load) in Mononuclear cells from unspecified specimen by NAA with probe detection','780106','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_85526-2','85526-2','http://loinc.org','Influenza virus D PB2 gene [Cycle Threshold #] in Specimen by NAA with probe detection','855262','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_90885-5','90885-5','http://loinc.org','Influenza virus D RNA [Cycle Threshold #] in Specimen by NAA with probe detection','908855','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_96396-7','96396-7','http://loinc.org','Cytomegalovirus DNA [log units/volume] (viral load) in Specimen by NAA with probe detection','963967','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_83325-1','83325-1','http://loinc.org','HIV 1 RNA genotype in Isolate','833251','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_83326-9','83326-9','http://loinc.org','HIV 1 RNA genotype and phenotype in Isolate','833269','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_83327-7','83327-7','http://loinc.org','HIV 1 RNA phenotype in Isolate','833277','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_23553-1','23553-1','http://loinc.org','Venezuelan equine encephalitis virus subtype [Identifier] in Specimen by NAA with probe detection','235531','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_29591-5','29591-5','http://loinc.org','Enterovirus RNA [Presence] in Specimen by NAA with probe detection','295915','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_30554-0','30554-0','http://loinc.org','HIV reverse transcriptase gene mutations detected [Identifier]','305540','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_33630-5','33630-5','http://loinc.org','HIV protease gene mutations detected [Identifier]','336305','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_34892-0','34892-0','http://loinc.org','West Nile virus RNA [Presence] in Specimen by NAA with probe detection','348920','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_35396-1','35396-1','http://loinc.org','Enterovirus RNA [Presence] in Tissue by NAA with probe detection','353961','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_37985-9','37985-9','http://loinc.org','West Nile virus RNA [Presence] in Specimen by Probe','379859','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_45175-7','45175-7','http://loinc.org','HIV nucleoside reverse transcriptase gene mutations detected [Identifier]','451757','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_45176-5','45176-5','http://loinc.org','HIV nonnucleoside reverse transcriptase gene mutations detected [Identifier]','451765','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_51666-6','51666-6','http://loinc.org','Japanese encephalitis virus RNA [Presence] in Specimen by NAA with probe detection','516666','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_51667-4','51667-4','http://loinc.org','Lymphocytic choriomeningitis virus RNA [Presence] in Specimen by NAA with probe detection','516674','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_53256-4','53256-4','http://loinc.org','Enterovirus RNA [#/volume] (viral load) in Specimen by NAA with probe detection','532564','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_60270-6','60270-6','http://loinc.org','Rabies virus RNA [Presence] in Isolate by NAA with probe detection','602706','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_60528-7','60528-7','http://loinc.org','Enterovirus subtype in Specimen by NAA with probe detection','605287','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_62861-0','62861-0','http://loinc.org','Enterovirus 71 RNA [Presence] in Specimen by NAA with probe detection','628610','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_74423-5','74423-5','http://loinc.org','Enterovirus RNA [Cycle Threshold #] in Specimen by NAA with probe detection','744235','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_76072-8','76072-8','http://loinc.org','Enterovirus D68 RNA [Presence] in Specimen by NAA with probe detection','760728','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_79190-5','79190-5','http://loinc.org','Zika virus RNA [Presence] in Specimen by NAA with probe detection','791905','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_81650-4','81650-4','http://loinc.org','West Nile virus Kunjin strain RNA [Presence] in Specimen by NAA with probe detection','816504','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_87316-6','87316-6','http://loinc.org','Enterovirus G RNA [Presence] in Specimen by NAA with probe detection','873166','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_87395-0','87395-0','http://loinc.org','West Nile virus RNA [Cycle Threshold #] in Specimen by NAA with probe detection','873950','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_87960-1','87960-1','http://loinc.org','Enterovirus RNA [Presence] in Body fluid by NAA with probe detection','879601','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_88540-0','88540-0','http://loinc.org','Enterovirus RNA [Presence] in Aspirate by NAA with probe detection','885400','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_93856-3','93856-3','http://loinc.org','Enterovirus RNA [Presence] in Specimen by NAA with non-probe detection','938563','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_97932-8','97932-8','http://loinc.org','Colorado tick fever virus RNA [Presence] in Specimen by NAA with probe detection','979328','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_97951-8','97951-8','http://loinc.org','Venezuelan equine encephalitis virus RNA [Presence] in Specimen by NAA with probe detection','979518','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_16130-7','16130-7','http://loinc.org','Herpes simplex virus 1 DNA [Presence] in Specimen by NAA with probe detection','161307','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_16131-5','16131-5','http://loinc.org','Herpes simplex virus 2 DNA [Presence] in Specimen by NAA with probe detection','161315','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_20444-6','20444-6','http://loinc.org','Herpes simplex virus 1+2 DNA [Presence] in Specimen by NAA with probe detection','204446','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_37983-4','37983-4','http://loinc.org','Eastern equine encephalitis virus RNA [Presence] in Specimen by Probe','379834','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_37984-2','37984-2','http://loinc.org','Saint Louis encephalitis virus RNA [Presence] in Specimen by Probe','379842','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_40982-1','40982-1','http://loinc.org','Influenza virus B RNA [Presence] in Specimen by NAA with probe detection','409821','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_47532-7','47532-7','http://loinc.org','Mumps virus RNA [Presence] in Specimen by NAA with probe detection','475327','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_48508-6','48508-6','http://loinc.org','Measles virus RNA [Presence] in Specimen by NAA with probe detection','485086','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_48509-4','48509-4','http://loinc.org','Influenza virus A and B RNA [Identifier] in Specimen by NAA with probe detection','485094','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_49381-7','49381-7','http://loinc.org','Herpes simplex virus 1+2 DNA [#/volume] (viral load) in Specimen by NAA with probe detection','493817','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_49382-5','49382-5','http://loinc.org','Herpes simplex virus 1+2 DNA [#/volume] (viral load) in Tissue by NAA with probe detection','493825','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_49986-3','49986-3','http://loinc.org','Herpes simplex virus 1 DNA [#/volume] (viral load) in Body fluid by NAA with probe detection','499863','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_49989-7','49989-7','http://loinc.org','Herpes simplex virus 2 DNA [#/volume] (viral load) in Body fluid by NAA with probe detection','499897','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_5014-6','5014-6','http://loinc.org','Herpes simplex virus DNA [Presence] in Specimen by NAA with probe detection','50146','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_50547-9','50547-9','http://loinc.org','Eastern equine encephalitis virus RNA [Presence] in Specimen by NAA with probe detection','505479','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_51664-1','51664-1','http://loinc.org','Chikungunya virus RNA [Presence] in Specimen by NAA with probe detection','516641','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_53251-5','53251-5','http://loinc.org','Influenza virus B RNA [#/volume] (viral load) in Specimen by NAA with probe detection','532515','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_54036-9','54036-9','http://loinc.org','Western equine encephalitis virus RNA [Presence] in Specimen by NAA with probe detection','540369','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_54243-1','54243-1','http://loinc.org','Influenza virus RNA [Identifier] in Specimen by Probe','542431','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_55144-0','55144-0','http://loinc.org','Powassan virus RNA [Presence] in Specimen by NAA with probe detection','551440','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_55145-7','55145-7','http://loinc.org','Saint Louis encephalitis virus RNA [Presence] in Specimen by NAA with probe detection','551457','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_60422-3','60422-3','http://loinc.org','Measles virus genotype [Identifier] in Specimen by NAA with probe detection','604223','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_60461-1','60461-1','http://loinc.org','Herpes simplex virus 1 DNA [#/volume] (viral load) in Specimen by NAA with probe detection','604611','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_60462-9','60462-9','http://loinc.org','Herpes simplex virus 2 DNA [#/volume] (viral load) in Specimen by NAA with probe detection','604629','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_60538-6','60538-6','http://loinc.org','Influenza virus A H1+H3+B RNA [Presence] in Specimen by NAA with probe detection','605386','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_62471-8','62471-8','http://loinc.org','Herpes simplex virus 1 DNA [#/volume] (viral load) in Tissue by NAA with probe detection','624718','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_62475-9','62475-9','http://loinc.org','Herpes simplex virus 2 DNA [#/volume] (viral load) in Tissue by NAA with probe detection','624759','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_6387-5','6387-5','http://loinc.org','Dengue virus DNA [Presence] in Specimen by Probe','63875','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_72838-6','72838-6','http://loinc.org','Herpes simplex virus DNA [Identifier] in Specimen by NAA with probe detection','728386','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_74784-0','74784-0','http://loinc.org','Influenza virus B lineage RNA [Identifier] in Specimen by NAA with probe detection','747840','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_74785-7','74785-7','http://loinc.org','Influenza virus B Victoria lineage RNA [Presence] in Specimen by NAA with probe detection','747857','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_74786-5','74786-5','http://loinc.org','Influenza virus B Yamagata lineage RNA [Presence] in Specimen by NAA with probe detection','747865','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_85535-3','85535-3','http://loinc.org','Influenza virus A RNA TCID50 [#/volume] in Specimen','855353','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_85798-7','85798-7','http://loinc.org','Measles virus N gene [Cycle Threshold #] in Specimen by NAA with probe detection','857987','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_85800-1','85800-1','http://loinc.org','Mumps virus SH gene [Cycle Threshold #] in Specimen by NAA with probe detection','858001','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_85807-6','85807-6','http://loinc.org','Mumps virus genotype in Specimen','858076','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_86539-4','86539-4','http://loinc.org','Herpes simplex virus 1 DNA [Presence] in Tissue by NAA with probe detection','865394','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_86541-0','86541-0','http://loinc.org','Herpes simplex virus 2 DNA [Presence] in Tissue by NAA with probe detection','865410','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_86542-8','86542-8','http://loinc.org','Herpes simplex virus DNA [Presence] in Tissue by NAA with probe detection','865428','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_90450-8','90450-8','http://loinc.org','Herpes simplex virus DNA [Presence] in Aspirate by NAA with probe detection','904508','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_90451-6','90451-6','http://loinc.org','Herpes simplex virus 1 DNA [Presence] in Aspirate by NAA with probe detection','904516','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_90453-2','90453-2','http://loinc.org','Herpes simplex virus 2 DNA [Presence] in Aspirate by NAA with probe detection','904532','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_90886-3','90886-3','http://loinc.org','Influenza virus B RNA [Cycle Threshold #] in Specimen by NAA with probe detection','908863','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_93749-0','93749-0','http://loinc.org','Mumps virus N gene [Cycle Threshold #] in Specimen by NAA with probe detection','937490','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_94581-6','94581-6','http://loinc.org','Herpes simplex virus 1 DNA [Presence] in Specimen by NAA with non-probe detection','945816','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_94582-4','94582-4','http://loinc.org','Herpes simplex virus 2 DNA [Presence] in Specimen by NAA with non-probe detection','945824','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_97732-2','97732-2','http://loinc.org','Enterovirus VP1 gene [Nucleotide sequence] in Isolate by Sequencing','977322','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_53874-4','53874-4','http://loinc.org','Jamestown canyon virus RNA [Units/volume] (viral load) in Specimen by NAA with probe detection','538744','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_69767-2','69767-2','http://loinc.org','La Crosse virus RNA [Presence] in Specimen by NAA with probe detection','697672','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_97924-5','97924-5','http://loinc.org','Jamestown canyon virus RNA [Presence] in Specimen by NAA with probe detection','979245','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_22827-0','22827-0','http://loinc.org','Influenza virus A subtype [Identifier] in Specimen by NAA with probe detection','228270','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_34487-9','34487-9','http://loinc.org','Influenza virus A RNA [Presence] in Specimen by NAA with probe detection','344879','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_37986-7','37986-7','http://loinc.org','California serogroup RNA [Presence] in Specimen by Probe','379867','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_38381-0','38381-0','http://loinc.org','Influenza virus A cDNA [Presence] in Specimen by NAA with probe detection','383810','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_39025-2','39025-2','http://loinc.org','Influenza virus A hemagglutinin cDNA [Identifier] in Specimen by Sequencing','390252','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_39102-9','39102-9','http://loinc.org','Influenza virus A hemagglutinin cDNA [Identifier] in Specimen by NAA with probe detection','391029','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_39103-7','39103-7','http://loinc.org','Influenza virus A neuraminidase cDNA [Identifier] in Specimen by NAA with probe detection','391037','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_44263-2','44263-2','http://loinc.org','Influenza virus A RNA [Units/volume] (viral load) in Specimen by NAA with probe detection','442632','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_49521-8','49521-8','http://loinc.org','Influenza virus A H1 RNA [Presence] in Specimen by NAA with probe detection','495218','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_49524-2','49524-2','http://loinc.org','Influenza virus A H3 RNA [Presence] in Specimen by NAA with probe detection','495242','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_49532-5','49532-5','http://loinc.org','Influenza virus A hemagglutinin type RNA [Identifier] in Isolate by Sequencing','495325','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_50702-0','50702-0','http://loinc.org','Influenza virus A matrix protein RNA [Presence] in Isolate by Sequencing','507020','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_50704-6','50704-6','http://loinc.org','Influenza virus A nucleoprotein RNA [Presence] in Isolate by Sequencing','507046','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_50705-3','50705-3','http://loinc.org','Influenza virus A non-structural protein RNA [Presence] in Isolate by Sequencing','507053','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_50706-1','50706-1','http://loinc.org','Influenza virus A polymerase A RNA [Presence] in Isolate by Sequencing','507061','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_50707-9','50707-9','http://loinc.org','Influenza virus A polymerase B1 cDNA [Presence] in Isolate by Sequencing','507079','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_50708-7','50708-7','http://loinc.org','Influenza virus A polymerase B2 RNA [Presence] in Isolate by Sequencing','507087','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_50711-1','50711-1','http://loinc.org','Influenza virus A polymerase RNA [Identifier] in Isolate by Sequencing','507111','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_53250-7','53250-7','http://loinc.org','Influenza virus A RNA [#/volume] (viral load) in Specimen by NAA with probe detection','532507','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_55143-2','55143-2','http://loinc.org','California serogroup RNA [Presence] in Specimen by NAA with probe detection','551432','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_55463-4','55463-4','http://loinc.org','Influenza virus A swine origin RNA [Identifier] in Specimen by NAA with probe detection','554634','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_55464-2','55464-2','http://loinc.org','Influenza virus A swine origin RNA [Presence] in Specimen by NAA with probe detection','554642','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_55465-9','55465-9','http://loinc.org','Influenza virus A H1 2009 pandemic RNA [Presence] in Specimen by NAA with probe detection','554659','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_56024-3','56024-3','http://loinc.org','Influenza virus A N1 RNA [Units/volume] (viral load) in Specimen by NAA with probe detection','560243','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_59423-4','59423-4','http://loinc.org','Influenza virus A hemagglutinin type RNA [Identifier] in Specimen by NAA with probe detection','594234','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_60494-2','60494-2','http://loinc.org','Influenza virus A H1 2009 pandemic and Influenza virus A swine origin RNA [Interpretation] in Specimen Qualitative by NAA with probe detection','604942','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_61101-2','61101-2','http://loinc.org','Influenza virus A neuraminidase RNA [Type] in Specimen by Sequencing','611012','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_62462-7','62462-7','http://loinc.org','Influenza virus A+B RNA [Presence] in Specimen by NAA with probe detection','624627','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_74038-1','74038-1','http://loinc.org','Influenza virus A H1 RNA [Cycle Threshold #] in Specimen by NAA with probe detection','740381','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_74039-9','74039-9','http://loinc.org','Influenza virus A H3 RNA [Cycle Threshold #] in Specimen by NAA with probe detection','740399','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_74040-7','74040-7','http://loinc.org','Influenza virus A N2 RNA [Cycle Threshold #] in Specimen by NAA with probe detection','740407','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_86317-5','86317-5','http://loinc.org','Influenza virus A H1 2009 pandemic RNA [Cycle Threshold #] in Specimen by NAA with probe detection','863175','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_86569-1','86569-1','http://loinc.org','Influenza virus A RNA [Presence] in Tissue by NAA with probe detection','865691','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_87714-2','87714-2','http://loinc.org','Influenza virus A M gene [Nucleotide sequence] in Isolate by Sequencing','877142','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_87715-9','87715-9','http://loinc.org','Influenza virus A HA gene [Nucleotide sequence] in Isolate by Sequencing','877159','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_87716-7','87716-7','http://loinc.org','Influenza virus A NA gene [Nucleotide sequence] in Isolate by Sequencing','877167','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_88835-4','88835-4','http://loinc.org','Influenza virus A swine origin RNA [Cycle Threshold #] in Specimen by NAA with probe detection','888354','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_93759-9','93759-9','http://loinc.org','Influenza virus A PB2 gene [Nucleotide sequence] in Isolate by Sequencing','937599','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_93760-7','93760-7','http://loinc.org','Influenza virus A PB1 gene [Nucleotide sequence] in Isolate by Sequencing','937607','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_93761-5','93761-5','http://loinc.org','Influenza virus A PA gene [Nucleotide sequence] in Isolate by Sequencing','937615','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_93762-3','93762-3','http://loinc.org','Influenza virus A NP gene [Nucleotide sequence] in Isolate by Sequencing','937623','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_93763-1','93763-1','http://loinc.org','Influenza virus A NS1 gene [Nucleotide sequence] in Isolate by Sequencing','937631','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_97922-9','97922-9','http://loinc.org','California encephalitis virus RNA [Presence] in Specimen by NAA with probe detection','979229','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_99623-1','99623-1','http://loinc.org','Influenza virus A N1 RNA [Presence] in Specimen by NAA with probe detection','996231','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_60263-1','60263-1','http://loinc.org','Enterovirus RNA [Presence] in Isolate by NAA with probe detection','602631','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_60429-8','60429-8','http://loinc.org','Enterovirus 71 RNA [Presence] in Isolate by NAA with probe detection','604298','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_38270-5','38270-5','http://loinc.org','Influenza virus A H7 RNA [Presence] in Specimen by NAA with probe detection','382705','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_38271-3','38271-3','http://loinc.org','Influenza virus A H6 RNA [Presence] in Specimen by NAA with probe detection','382713','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_38272-1','38272-1','http://loinc.org','Influenza virus A H5 RNA [Presence] in Specimen by NAA with probe detection','382721','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_44264-0','44264-0','http://loinc.org','Influenza virus A H5 RNA [Units/volume] (viral load) in Specimen by NAA with probe detection','442640','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_44265-7','44265-7','http://loinc.org','Influenza virus A H6 RNA [Units/volume] (viral load) in Specimen by NAA with probe detection','442657','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_44266-5','44266-5','http://loinc.org','Influenza virus A H7 RNA [Units/volume] (viral load) in Specimen by NAA with probe detection','442665','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_44795-3','44795-3','http://loinc.org','Influenza virus A H5 Asian RNA [Presence] in Specimen by NAA with probe detection','447953','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_49528-3','49528-3','http://loinc.org','Influenza virus A H9 RNA [Presence] in Specimen by NAA with probe detection','495283','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_57985-4','57985-4','http://loinc.org','Influenza virus A H2 RNA [Presence] in Specimen by NAA with probe detection','579854','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_68986-9','68986-9','http://loinc.org','Influenza virus A H5a RNA [Presence] in Specimen by NAA with probe detection','689869','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_68987-7','68987-7','http://loinc.org','Influenza virus A H5b RNA [Presence] in Specimen by NAA with probe detection','689877','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_77605-4','77605-4','http://loinc.org','Influenza virus A H5 RNA [Cycle Threshold #] in Specimen by NAA with probe detection','776054','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_95658-1','95658-1','http://loinc.org','Influenza virus A H7 Eurasia RNA [Presence] in Specimen by NAA with probe detection','956581','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_49520-0','49520-0','http://loinc.org','Influenza virus A H1 RNA [Presence] in Isolate by NAA with probe detection','495200','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_49523-4','49523-4','http://loinc.org','Influenza virus A H3 RNA [Presence] in Isolate by NAA with probe detection','495234','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_49531-7','49531-7','http://loinc.org','Influenza virus A RNA [Presence] in Isolate by NAA with probe detection','495317','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_55133-3','55133-3','http://loinc.org','Influenza virus A hemagglutinin cDNA [Identifier] in Isolate by NAA with probe detection','551333','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_55134-1','55134-1','http://loinc.org','Influenza virus A neuraminidase RNA [Identifier] in Isolate by NAA with probe detection','551341','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_59424-2','59424-2','http://loinc.org','Influenza virus A hemagglutinin type RNA [Identifier] in Isolate by NAA with probe detection','594242','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_49526-7','49526-7','http://loinc.org','Influenza virus A H5 RNA [Presence] in Isolate by NAA with probe detection','495267','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_49527-5','49527-5','http://loinc.org','Influenza virus A H7 RNA [Presence] in Isolate by NAA with probe detection','495275','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_60530-3','60530-3','http://loinc.org','Influenza virus A H9 RNA [Presence] in Isolate by NAA with probe detection','605303','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2172_50700-4','50700-4','http://loinc.org','Influenza virus A.adamantane resistant RNA [Presence] by NAA with probe detection','507004','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2170_19054-6','19054-6','http://loinc.org','Mycoplasma pneumoniae [Presence] in Specimen by Organism specific culture','190546','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2170_44797-9','44797-9','http://loinc.org','Brucella sp [Presence] in Specimen by Organism specific culture','447979','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2170_552-0','552-0','http://loinc.org','Brucella sp identified in Specimen by Organism specific culture','5520','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2170_17656-0','17656-0','http://loinc.org','Streptococcus pyogenes [Presence] in Specimen by Organism specific culture','176560','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2170_44799-5','44799-5','http://loinc.org','Coxiella burnetii [Presence] in Specimen by Organism specific culture','447995','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2170_48872-6','48872-6','http://loinc.org','Anaplasma phagocytophilum [Presence] in Specimen by Organism specific culture','488726','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2170_11550-1','11550-1','http://loinc.org','Borrelia burgdorferi [Presence] in Specimen by Organism specific culture','115501','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2170_48873-4','48873-4','http://loinc.org','Ehrlichia sp identified in Specimen by Organism specific culture','488734','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2170_6546-6','6546-6','http://loinc.org','Rickettsia sp identified in Specimen by Organism specific culture','65466','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2170_38354-7','38354-7','http://loinc.org','Bartonella sp identified in Specimen by Organism specific culture','383547','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2170_586-8','586-8','http://loinc.org','Streptococcus agalactiae [Presence] in Specimen by Organism specific culture','5868','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.342_100911-7','100911-7','http://loinc.org','Campylobacter sp [Presence] in Stool by Organism specific culture','1009117','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.342_20738-1','20738-1','http://loinc.org','Campylobacter sp identified in Isolate by Organism specific culture','207381','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.342_20739-9','20739-9','http://loinc.org','Campylobacter sp identified in Body fluid by Organism specific culture','207399','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.342_20740-7','20740-7','http://loinc.org','Campylobacter sp identified in Tissue by Organism specific culture','207407','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.342_6330-5','6330-5','http://loinc.org','Campylobacter sp identified in Blood by Organism specific culture','63305','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.342_6331-3','6331-3','http://loinc.org','Campylobacter sp identified in Stool by Organism specific culture','63313','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.342_6332-1','6332-1','http://loinc.org','Campylobacter sp identified in Specimen by Organism specific culture','63321','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.342_82302-1','82302-1','http://loinc.org','Campylobacter sp [Presence] in Stool by Culture','823021','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.342_97513-6','97513-6','http://loinc.org','Campylobacter sp [Presence] in Specimen by Organism specific culture','975136','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.343_101552-8','101552-8','http://loinc.org','Campylobacter coli DNA [Presence] in Stool by NAA with probe detection','1015528','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.343_101554-4','101554-4','http://loinc.org','Campylobacter jejuni DNA [Presence] in Stool by NAA with probe detection','1015544','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.343_101555-1','101555-1','http://loinc.org','Campylobacter upsaliensis DNA [Presence] in Stool by NAA with probe detection','1015551','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.343_103168-1','103168-1','http://loinc.org','Campylobacter coli+jejuni DNA [Presence] in Wound by NAA with probe detection','1031681','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.343_16528-2','16528-2','http://loinc.org','Campylobacter coli rRNA [Units/volume] in Serum by Probe','165282','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.343_16529-0','16529-0','http://loinc.org','Campylobacter jejuni rRNA [Units/volume] in Serum by Probe','165290','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.343_16530-8','16530-8','http://loinc.org','Campylobacter jejuni rRNA [Presence] in Serum by Probe','165308','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.343_16531-6','16531-6','http://loinc.org','Campylobacter lari rRNA [Units/volume] in Serum by Probe','165316','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.343_16532-4','16532-4','http://loinc.org','Campylobacter lari rRNA [Presence] in Serum by Probe','165324','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.343_16534-0','16534-0','http://loinc.org','Campylobacter sp rRNA [Presence] in Serum by Probe','165340','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.343_49614-1','49614-1','http://loinc.org','Campylobacter sp DNA [Identifier] in Specimen by NAA with probe detection','496141','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.343_4992-4','4992-4','http://loinc.org','Campylobacter sp rRNA [Presence] in Specimen by Probe','49924','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.343_61368-7','61368-7','http://loinc.org','Campylobacter jejuni DNA [Presence] in Specimen by NAA with probe detection','613687','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.343_6329-7','6329-7','http://loinc.org','Campylobacter coli rRNA [Presence] in Specimen by Probe','63297','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.343_6333-9','6333-9','http://loinc.org','Campylobacter jejuni rRNA [Presence] in Specimen by Probe','63339','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.343_6334-7','6334-7','http://loinc.org','Campylobacter lari rRNA [Presence] in Specimen by Probe','63347','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.343_71429-5','71429-5','http://loinc.org','Campylobacter sp DNA.diarrheagenic [Presence] in Stool by NAA with probe detection','714295','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.343_79382-8','79382-8','http://loinc.org','Campylobacter coli+jejuni+lari fusA gene [Presence] in Stool by NAA with probe detection','793828','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.343_80684-4','80684-4','http://loinc.org','Campylobacter coli+jejuni+lari 16S rRNA [Presence] in Stool by NAA with probe detection','806844','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.343_81656-1','81656-1','http://loinc.org','Campylobacter coli+jejuni tuf gene [Presence] in Stool by NAA with probe detection','816561','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.343_82196-7','82196-7','http://loinc.org','Campylobacter coli+jejuni+upsaliensis DNA [Presence] in Stool by NAA with non-probe detection','821967','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.343_97312-3','97312-3','http://loinc.org','Campylobacter coli+jejuni+upsaliensis DNA [Presence] in Stool by NAA with probe detection','973123','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.464_101305-1','101305-1','http://loinc.org','Plasmodium sp DNA [Presence] in Blood by NAA with non-probe detection','1013051','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.464_101306-9','101306-9','http://loinc.org','Plasmodium falciparum DNA [Presence] in Blood by NAA with non-probe detection','1013069','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.464_101307-7','101307-7','http://loinc.org','Plasmodium vivax+ovale DNA [Presence] in Blood by NAA with non-probe detection','1013077','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.464_41447-4','41447-4','http://loinc.org','Plasmodium falciparum DNA [Presence] in Blood by NAA with probe detection','414474','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.464_41448-2','41448-2','http://loinc.org','Plasmodium malariae DNA [Presence] in Blood by NAA with probe detection','414482','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.464_41449-0','41449-0','http://loinc.org','Plasmodium ovale DNA [Presence] in Blood by NAA with probe detection','414490','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.464_41450-8','41450-8','http://loinc.org','Plasmodium vivax DNA [Presence] in Blood by NAA with probe detection','414508','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.464_47085-6','47085-6','http://loinc.org','Plasmodium sp DNA [Presence] in Blood by NAA with probe detection','470856','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.464_47260-5','47260-5','http://loinc.org','Plasmodium sp DNA [Identifier] in Blood by NAA with probe detection','472605','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.464_70568-1','70568-1','http://loinc.org','Plasmodium knowlesi DNA [Presence] in Blood by NAA with probe detection','705681','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.344_100867-1','100867-1','http://loinc.org','Campylobacter jejuni+coli+lari+upsaliensis Ag [Presence] in Stool by Rapid immunoassay','1008671','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.344_22964-1','22964-1','http://loinc.org','Campylobacter fetus Ag [Presence] in Genital fluid by Immunofluorescence','229641','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.344_22965-8','22965-8','http://loinc.org','Campylobacter fetus Ag [Presence] in Specimen by Immunofluorescence','229658','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.344_22966-6','22966-6','http://loinc.org','Campylobacter fetus Ag [Presence] in Tissue by Immunofluorescence','229666','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.344_31755-2','31755-2','http://loinc.org','Campylobacter fetus Ag [Presence] in Genital fluid','317552','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.344_31756-0','31756-0','http://loinc.org','Campylobacter fetus Ag [Presence] in Specimen','317560','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.344_57768-4','57768-4','http://loinc.org','Campylobacter jejuni+Campylobacter coli Ag [Presence] in Stool','577684','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.465_31931-9','31931-9','http://loinc.org','Plasmodium vivax Ag [Units/volume] in Blood','319319','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.465_46094-9','46094-9','http://loinc.org','Plasmodium sp Ag [Presence] in Blood by Immunoassay','460949','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.465_50687-3','50687-3','http://loinc.org','Plasmodium sp Ag [Presence] in Blood','506873','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.465_50688-1','50688-1','http://loinc.org','Plasmodium sp lactate dehydrogenase [Identifier] in Blood','506881','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.465_51865-4','51865-4','http://loinc.org','Plasmodium sp Ag [Identifier] in Blood','518654','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.465_53248-1','53248-1','http://loinc.org','Plasmodium sp lactate dehydrogenase [Presence] in Blood','532481','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.465_70569-9','70569-9','http://loinc.org','Plasmodium sp Ag [Identifier] in Blood by Rapid immunoassay','705699','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.465_76772-3','76772-3','http://loinc.org','Plasmodium falciparum Ag [Presence] in Blood by Rapid immunoassay','767723','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.465_10709-4','10709-4','http://loinc.org','Plasmodium falciparum Ag [Units/volume] in Blood by Immunofluorescence','107094','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.465_10711-0','10711-0','http://loinc.org','Plasmodium vivax Ag [Units/volume] in Blood by Immunofluorescence','107110','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.466_21465-0','21465-0','http://loinc.org','Plasmodium falciparum Ab [Titer] in Serum by Immunofluorescence','214650','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.466_21466-8','21466-8','http://loinc.org','Plasmodium malariae Ab [Titer] in Serum by Immunofluorescence','214668','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.466_21467-6','21467-6','http://loinc.org','Plasmodium ovale Ab [Titer] in Serum by Immunofluorescence','214676','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.466_21468-4','21468-4','http://loinc.org','Plasmodium vivax Ab [Titer] in Serum by Immunofluorescence','214684','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.466_49741-2','49741-2','http://loinc.org','Plasmodium malariae IgG Ab [Titer] in Serum by Immunofluorescence','497412','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.466_49742-0','49742-0','http://loinc.org','Plasmodium vivax IgG Ab [Titer] in Serum by Immunofluorescence','497420','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.466_49743-8','49743-8','http://loinc.org','Plasmodium falciparum IgG Ab [Titer] in Serum by Immunofluorescence','497438','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.466_49744-6','49744-6','http://loinc.org','Plasmodium ovale IgG Ab [Titer] in Serum by Immunofluorescence','497446','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.466_51842-3','51842-3','http://loinc.org','Plasmodium falciparum IgM Ab [Titer] in Serum by Immunofluorescence','518423','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.466_52980-0','52980-0','http://loinc.org','Plasmodium sp IgG Ab [Titer] in Serum by Immunofluorescence','529800','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.466_56515-0','56515-0','http://loinc.org','Plasmodium falciparum IgG Ab [Presence] in Serum by Immunofluorescence','565150','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.466_56968-1','56968-1','http://loinc.org','Plasmodium sp Ab [Presence] in Serum by Immunofluorescence','569681','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.466_10710-2','10710-2','http://loinc.org','Plasmodium sp identified in Blood by Thin film','107102','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.466_17280-9','17280-9','http://loinc.org','Plasmodium sp identified in Tissue by Thick film','172809','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.466_32206-5','32206-5','http://loinc.org','Plasmodium sp identified in Blood by Light microscopy','322065','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.466_41451-6','41451-6','http://loinc.org','Plasmodium stage [Identifier] in Blood by Light microscopy','414516','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.466_48427-9','48427-9','http://loinc.org','Erythrocytes.Plasmodium sp infected/1000 erythrocytes in Blood','484279','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.466_51587-4','51587-4','http://loinc.org','Plasmodium sp [Presence] in Blood by Light microscopy','515874','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.466_53556-7','53556-7','http://loinc.org','Erythrocytes.Plasmodium sp infected/100 erythrocytes in Blood','535567','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.466_637-9','637-9','http://loinc.org','Plasmodium sp identified in Blood by Thick film','6379','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.466_10709-4','10709-4','http://loinc.org','Plasmodium falciparum Ag [Units/volume] in Blood by Immunofluorescence','107094','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.466_10711-0','10711-0','http://loinc.org','Plasmodium vivax Ag [Units/volume] in Blood by Immunofluorescence','107110','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2058_14082-2','14082-2','http://loinc.org','Echinococcus sp IgG Ab [Units/volume] in Serum by Immunoblot','140822','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2058_16794-0','16794-0','http://loinc.org','Echinococcus sp IgM Ab [Units/volume] in Serum','167940','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2058_21252-2','21252-2','http://loinc.org','Echinococcus granulosus IgG Ab [Presence] in Serum by Immunoblot','212522','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2058_22264-6','22264-6','http://loinc.org','Echinococcus granulosus IgG Ab [Presence] in Serum','222646','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2058_22265-3','22265-3','http://loinc.org','Echinococcus sp IgG Ab [Units/volume] in Serum','222653','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2058_25339-3','25339-3','http://loinc.org','Echinococcus sp Ab [Presence] in Serum','253393','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2058_25397-1','25397-1','http://loinc.org','Echinococcus sp Ab [Presence] in Serum by Immunoassay','253971','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2058_25398-9','25398-9','http://loinc.org','Echinococcus sp Ab [Units/volume] in Serum by Counterimmunoelectrophoresis (CIE)','253989','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2058_25867-3','25867-3','http://loinc.org','Echinococcus sp Ab [Titer] in Serum','258673','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2058_26007-5','26007-5','http://loinc.org','Echinococcus sp Ab [Presence] in Serum by Hemagglutination','260075','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2058_26008-3','26008-3','http://loinc.org','Echinococcus sp Ab [Titer] in Serum by Hemagglutination','260083','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2058_26673-4','26673-4','http://loinc.org','Echinococcus granulosus Ab [Presence] in Serum','266734','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2058_32171-1','32171-1','http://loinc.org','Echinococcus sp IgG Ab [Presence] in Serum','321711','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2058_35416-7','35416-7','http://loinc.org','Echinococcus granulosus Ab [Presence] in Serum by Immunoblot','354167','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2058_40749-4','40749-4','http://loinc.org','Echinococcus sp Ab [Presence] in Serum by Complement fixation','407494','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2058_41416-9','41416-9','http://loinc.org','Echinococcus sp Ab [Presence] in Serum by Immunoblot','414169','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2058_42496-0','42496-0','http://loinc.org','Echinococcus sp Ab [Presence] in Cerebral spinal fluid','424960','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2058_43602-2','43602-2','http://loinc.org','Echinococcus granulosus Ab [Units/volume] in Serum by Immunoassay','436022','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2058_46184-8','46184-8','http://loinc.org','Echinococcus granulosus Ab [Units/volume] in Serum','461848','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2058_47308-2','47308-2','http://loinc.org','Echinococcus granulosus IgG Ab [Units/volume] in Serum by Immunoassay','473082','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2058_47431-2','47431-2','http://loinc.org','Echinococcus granulosus IgG Ab [Units/volume] in Serum','474312','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2058_48359-4','48359-4','http://loinc.org','Echinococcus granulosus Ab [Titer] in Serum by Hemagglutination','483594','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2058_49181-1','49181-1','http://loinc.org','Echinococcus granulosus Ab [Titer] in Serum','491811','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2058_5135-9','5135-9','http://loinc.org','Echinococcus sp Ab [Units/volume] in Serum by Hemagglutination','51359','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2058_52982-6','52982-6','http://loinc.org','Echinococcus sp IgG1 Ab [Units/volume] in Serum by Immunoassay','529826','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2058_52983-4','52983-4','http://loinc.org','Echinococcus sp IgG4 Ab [Units/volume] in Serum by Immunoassay','529834','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2058_53369-5','53369-5','http://loinc.org','Echinococcus sp IgG1 Ab [Units/volume] in Serum','533695','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2058_53370-3','53370-3','http://loinc.org','Echinococcus sp IgG4 Ab [Units/volume] in Serum','533703','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2058_55165-5','55165-5','http://loinc.org','Echinococcus sp IgG4 Ab [Presence] in Serum','551655','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2058_6390-9','6390-9','http://loinc.org','Echinococcus sp Ab [Units/volume] in Serum by Complement fixation','63909','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2058_6391-7','6391-7','http://loinc.org','Echinococcus sp Ab [Units/volume] in Serum by Immunoassay','63917','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2058_7863-4','7863-4','http://loinc.org','Echinococcus sp Ab [Units/volume] in Serum','78634','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2058_88921-2','88921-2','http://loinc.org','Echinococcus granulosus Ab [Titer] in Serum by Complement fixation','889212','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2058_9656-0','9656-0','http://loinc.org','Echinococcus sp IgG Ab [Units/volume] in Serum by Immunoassay','96560','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2058_9657-8','9657-8','http://loinc.org','Echinococcus sp IgM Ab [Units/volume] in Serum by Immunoassay','96578','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2179_97527-6','97527-6','http://loinc.org','Acanthamoeba sp Ag [Presence] in Specimen by Immunofluorescence','975276','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2179_97526-8','97526-8','http://loinc.org','Balamuthia mandrillaris Ag [Presence] in Specimen by Immunofluorescence','975268','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2179_97528-4','97528-4','http://loinc.org','Naegleria fowleri Ag [Presence] in Specimen by Immunofluorescence','975284','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2179_86737-4','86737-4','http://loinc.org','Toxoplasma gondii Ag [Presence] in Tissue by Immune stain','867374','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2059_10683-1','10683-1','http://loinc.org','Hydatid cyst identified in Aspirate by Immune stain','106831','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2059_10684-9','10684-9','http://loinc.org','Hydatid cyst identified in Liver by Wet preparation','106849','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2059_10685-6','10685-6','http://loinc.org','Hydatid cyst identified in Lung tissue by Wet preparation','106856','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2059_11474-4','11474-4','http://loinc.org','Hydatid cyst identified in Specimen by Wet preparation','114744','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2059_18306-1','18306-1','http://loinc.org','Hydatid cyst identified in Aspirate by Iron hematoxylin stain','183061','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.347_7904-6','7904-6','http://loinc.org','Hepatitis A virus RNA [Presence] in Serum by NAA with probe detection','79046','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.347_89373-5','89373-5','http://loinc.org','Hepatitis A virus genotype in Specimen by NAA with probe detection','893735','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.347_91070-3','91070-3','http://loinc.org','Hepatitis A virus RNA [Presence] in Stool by NAA with probe detection','910703','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.347_97523-5','97523-5','http://loinc.org','Hepatitis A virus RNA [Presence] in Specimen by NAA with probe detection','975235','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.468_101302-8','101302-8','http://loinc.org','Leptospira sp DNA [Presence] in Blood by NAA with non-probe detection','1013028','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.468_23205-8','23205-8','http://loinc.org','Leptospira sp DNA [Presence] in Body fluid by NAA with probe detection','232058','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.468_23206-6','23206-6','http://loinc.org','Leptospira sp DNA [Presence] in Tissue by NAA with probe detection','232066','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.468_35491-0','35491-0','http://loinc.org','Leptospira sp DNA [Presence] in Specimen by NAA with probe detection','354910','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.468_52988-3','52988-3','http://loinc.org','Leptospira sp DNA [Presence] in Cerebral spinal fluid by NAA with probe detection','529883','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.468_52989-1','52989-1','http://loinc.org','Leptospira sp DNA [Presence] in Blood by NAA with probe detection','529891','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.468_52990-9','52990-9','http://loinc.org','Leptospira sp DNA [Presence] in Urine by NAA with probe detection','529909','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.468_86730-9','86730-9','http://loinc.org','Leptospira borgpetersenii sv Hardjo-bovis DNA [Cycle Threshold #] in Specimen by NAA with probe detection','867309','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.468_86731-7','86731-7','http://loinc.org','Leptospira sp DNA [Cycle Threshold #] in Specimen by NAA with probe detection','867317','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2177_48336-2','48336-2','http://loinc.org','Candida sp Ag [Presence] in Tissue by Immune stain','483362','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2177_11473-6','11473-6','http://loinc.org','Cryptococcus sp Ag [Titer] in Specimen','114736','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2177_16692-6','16692-6','http://loinc.org','Cryptococcus sp Ag [Presence] in Body fluid','166926','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2177_19109-8','19109-8','http://loinc.org','Histoplasma capsulatum Ag [Presence] in Specimen','191098','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2177_29533-7','29533-7','http://loinc.org','Cryptococcus sp Ag [Presence] in Specimen','295337','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2177_31792-5','31792-5','http://loinc.org','Cryptococcus sp Ag [Units/volume] in Specimen','317925','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2177_34171-9','34171-9','http://loinc.org','Histoplasma capsulatum Ag [Units/volume] in Specimen','341719','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2177_42916-7','42916-7','http://loinc.org','Histoplasma capsulatum Ag [Units/volume] in Specimen by Immunoassay','429167','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2177_43228-6','43228-6','http://loinc.org','Cryptococcus sp Ag [Presence] in Specimen by Latex agglutination','432286','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2177_43229-4','43229-4','http://loinc.org','Cryptococcus sp Ag [Titer] in Specimen by Latex agglutination','432294','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2177_48338-8','48338-8','http://loinc.org','Histoplasma capsulatum Ag [Presence] in Tissue by Immune stain','483388','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2177_54455-1','54455-1','http://loinc.org','Blastomyces dermatitidis Ag [Units/volume] in Body fluid','544551','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2177_57766-8','57766-8','http://loinc.org','Histoplasma capsulatum Ag [Mass/volume] in Body fluid','577668','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2177_70908-9','70908-9','http://loinc.org','Cryptococcus sp Ag [Presence] in Tissue by Immunofluorescence','709089','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2177_70909-7','70909-7','http://loinc.org','Cryptococcus sp Ag [Presence] in Tissue by Immune stain','709097','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2177_99082-0','99082-0','http://loinc.org','Coccidioides sp Ag [Mass/volume] in Body fluid by Immunoassay','990820','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2177_99083-8','99083-8','http://loinc.org','Blastomyces sp Ag [Mass/volume] in Body fluid by Immunoassay','990838','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2177_14205-9','14205-9','http://loinc.org','Coccidioides immitis Ag [Presence] in Isolate by Immune diffusion (ID)','142059','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2177_31782-6','31782-6','http://loinc.org','Coccidioides immitis Ag [Presence] in Isolate','317826','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.469_20869-4','20869-4','http://loinc.org','Leptospira sp [Presence] in Tissue by Organism specific culture','208694','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.469_23599-4','23599-4','http://loinc.org','Leptospira sp identified in Tissue by Organism specific culture','235994','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.469_594-2','594-2','http://loinc.org','Leptospira sp identified in Specimen by Organism specific culture','5942','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.469_6453-5','6453-5','http://loinc.org','Leptospira sp identified in Blood by Organism specific culture','64535','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.469_6454-3','6454-3','http://loinc.org','Leptospira sp identified in Cerebral spinal fluid by Organism specific culture','64543','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.469_6455-0','6455-0','http://loinc.org','Leptospira sp identified in Urine by Organism specific culture','64550','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.469_71378-4','71378-4','http://loinc.org','Leptospira sp [Identifier] in Isolate by Agglutination','713784','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.469_86732-5','86732-5','http://loinc.org','Leptospira sp identified [Type] in Isolate by Sequencing','867325','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2178_11266-4','11266-4','http://loinc.org','Streptococcus agalactiae Ag [Presence] in Specimen','112664','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2178_20459-4','20459-4','http://loinc.org','Streptococcus agalactiae Ag [Presence] in Specimen by Latex agglutination','204594','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2178_31971-5','31971-5','http://loinc.org','Streptococcus pyogenes Ag [Presence] in Specimen','319715','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2178_41624-8','41624-8','http://loinc.org','Brucella sp Ag [Presence] in Specimen by Immunofluorescence','416248','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2178_44271-5','44271-5','http://loinc.org','Brucella sp Ag [Identifier] in Specimen by Immunofluorescence','442715','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2178_47001-3','47001-3','http://loinc.org','Brucella sp Ag [Presence] in Specimen by Agglutination','470013','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2178_6558-1','6558-1','http://loinc.org','Streptococcus pyogenes Ag [Presence] in Specimen by Immunoassay','65581','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2178_6559-9','6559-9','http://loinc.org','Streptococcus pyogenes Ag [Presence] in Specimen by Immunofluorescence','65599','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2178_94601-2','94601-2','http://loinc.org','Listeria monocytogenes Ag [Presence] in Tissue by Immune stain','946012','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2178_23023-5','23023-5','http://loinc.org','Coxiella burnetii Ag [Presence] in Specimen by Immunofluorescence','230235','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2178_23977-2','23977-2','http://loinc.org','Borrelia burgdorferi Ag [Presence] in Specimen by Immunofluorescence','239772','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2178_31738-8','31738-8','http://loinc.org','Borrelia burgdorferi Ag [Presence] in Specimen','317388','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2178_31784-2','31784-2','http://loinc.org','Coxiella burnetii Ag [Presence] in Specimen','317842','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2299_85769-8','85769-8','http://loinc.org','Streptococcus pyogenes DNA [Presence] by NAA with non-probe detection in Positive blood culture','857698','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2299_88276-1','88276-1','http://loinc.org','Streptococcus pyogenes hsp60 gene [Presence] by Probe in Positive blood culture','882761','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2299_92770-7','92770-7','http://loinc.org','Streptococcus pyogenes DNA [Presence] by NAA with probe detection in Positive blood culture','927707','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.349_13950-1','13950-1','http://loinc.org','Hepatitis A virus IgM Ab [Presence] in Serum or Plasma by Immunoassay','139501','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.349_22314-9','22314-9','http://loinc.org','Hepatitis A virus IgM Ab [Presence] in Serum','223149','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.349_22315-6','22315-6','http://loinc.org','Hepatitis A virus IgM Ab [Units/volume] in Serum','223156','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.349_51660-9','51660-9','http://loinc.org','Hepatitis A virus IgM Ab [Presence] in Body fluid','516609','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.349_5181-3','5181-3','http://loinc.org','Hepatitis A virus IgM Ab [Units/volume] in Serum by Immunoassay','51813','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.349_5182-1','5182-1','http://loinc.org','Hepatitis A virus IgM Ab [Units/volume] in Serum by Radioimmunoassay (RIA)','51821','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2175_23529-1','23529-1','http://loinc.org','Trypanosoma evansi DNA [Presence] in Specimen by NAA with probe detection','235291','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2175_23530-9','23530-9','http://loinc.org','Trypanosoma evansi rRNA [Presence] in Specimen by Probe','235309','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2175_70294-4','70294-4','http://loinc.org','Entamoeba sp DNA [Identifier] in Specimen by Sequencing','702944','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2175_91765-8','91765-8','http://loinc.org','Entamoeba sp DNA [Identifier] in Aspirate by Sequencing','917658','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2175_10725-0','10725-0','http://loinc.org','Toxoplasma gondii DNA [Units/volume] in Body fluid by Probe with amplification','107250','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2175_29904-0','29904-0','http://loinc.org','Toxoplasma gondii DNA [Presence] in Specimen by NAA with probe detection','299040','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2175_41429-2','41429-2','http://loinc.org','Acanthamoeba sp DNA [Presence] in Specimen by NAA with probe detection','414292','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2175_41432-6','41432-6','http://loinc.org','Balamuthia mandrillaris DNA [Presence] in Specimen by NAA with probe detection','414326','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2175_49448-4','49448-4','http://loinc.org','Toxoplasma gondii DNA [#/volume] in Specimen by NAA with probe detection','494484','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2175_57441-8','57441-8','http://loinc.org','Toxoplasma gondii DNA [Presence] in Body fluid by NAA with probe detection','574418','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2175_87758-9','87758-9','http://loinc.org','Naegleria fowleri DNA [Presence] in Specimen by NAA with probe detection','877589','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2175_87984-1','87984-1','http://loinc.org','Toxoplasma gondii DNA [Presence] in Tissue by NAA with probe detection','879841','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2175_88232-4','88232-4','http://loinc.org','Trypanosoma cruzi DNA [Presence] in Tissue by NAA with probe detection','882324','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2175_88914-7','88914-7','http://loinc.org','Acanthamoeba sp DNA [Presence] in Tissue by NAA with probe detection','889147','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_10677-3','10677-3','http://loinc.org','Herpes simplex virus 1 Ag [Presence] in Tissue by Immune stain','106773','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_10678-1','10678-1','http://loinc.org','Herpes simplex virus 1+2 Ag [Presence] in Tissue by Immune stain','106781','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_10679-9','10679-9','http://loinc.org','Herpes simplex virus 2 Ag [Presence] in Tissue by Immune stain','106799','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_12251-5','12251-5','http://loinc.org','Rubella virus Ag [Presence] in Specimen by Immunofluorescence','122515','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_13327-2','13327-2','http://loinc.org','Parainfluenza virus Ag [Presence] in Specimen by Immunofluorescence','133272','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_16945-8','16945-8','http://loinc.org','Herpes simplex virus Ag [Presence] in Specimen','169458','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_17414-4','17414-4','http://loinc.org','Parainfluenza virus 1+2+3 Ag [Presence] in Specimen','174144','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_23391-6','23391-6','http://loinc.org','Rabies virus Ag [Presence] in Specimen by Immune stain','233916','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_29721-8','29721-8','http://loinc.org','Influenza virus C Ag [Presence] in Specimen by Immunofluorescence','297218','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_31714-9','31714-9','http://loinc.org','Adenovirus Ag [Presence] in Specimen','317149','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_31848-5','31848-5','http://loinc.org','Herpes simplex virus 1 Ag [Presence] in Specimen','318485','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_31851-9','31851-9','http://loinc.org','Herpes simplex virus 2 Ag [Presence] in Specimen','318519','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_31862-6','31862-6','http://loinc.org','Influenza virus A+B+C Ag [Presence] in Specimen','318626','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_31865-9','31865-9','http://loinc.org','Influenza virus C Ag [Presence] in Specimen','318659','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_31924-4','31924-4','http://loinc.org','Parainfluenza virus 1 Ag [Presence] in Specimen','319244','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_31926-9','31926-9','http://loinc.org','Parainfluenza virus 2 Ag [Presence] in Specimen','319269','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_31928-5','31928-5','http://loinc.org','Parainfluenza virus 3 Ag [Presence] in Specimen','319285','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_31929-3','31929-3','http://loinc.org','Parainfluenza virus Ag [Presence] in Specimen','319293','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_31946-7','31946-7','http://loinc.org','Rabies virus Ag [Presence] in Brain','319467','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_31947-5','31947-5','http://loinc.org','Rabies virus Ag [Presence] in Specimen','319475','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_31948-3','31948-3','http://loinc.org','Rabies virus Ag [Units/volume] in Specimen','319483','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_31966-5','31966-5','http://loinc.org','Rubella virus Ag [Presence] in Specimen','319665','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_40986-2','40986-2','http://loinc.org','Parainfluenza virus 4 Ag [Presence] in Specimen by Immunofluorescence','409862','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_41004-3','41004-3','http://loinc.org','Human coronavirus 229E Ag [Presence] in Specimen by Immunofluorescence','410043','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_43366-4','43366-4','http://loinc.org','Parainfluenza virus Ag [Identifier] in Specimen by Immunofluorescence','433664','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_44475-2','44475-2','http://loinc.org','Herpes simplex virus 1 Ag [Presence] in Tissue','444752','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_44502-3','44502-3','http://loinc.org','Herpes simplex virus 2 Ag [Presence] in Tissue','445023','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_48400-6','48400-6','http://loinc.org','Herpes simplex virus 1+2 Ag [Presence] in Tissue by Immunofluorescence','484006','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_48673-8','48673-8','http://loinc.org','EBV-LMP Ag [Presence] in Tissue by Immune stain','486738','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_5829-7','5829-7','http://loinc.org','Adenovirus Ag [Presence] in Tissue by Immunoassay','58297','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_5830-5','5830-5','http://loinc.org','Adenovirus Ag [Presence] in Tissue by Immunofluorescence','58305','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_5833-9','5833-9','http://loinc.org','Adenovirus Ag [Presence] in Specimen by Immunoassay','58339','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_5834-7','5834-7','http://loinc.org','Adenovirus Ag [Presence] in Specimen by Immunofluorescence','58347','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_5846-1','5846-1','http://loinc.org','Herpes simplex virus 1 Ag [Presence] in Specimen by Immunofluorescence','58461','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_5849-5','5849-5','http://loinc.org','Herpes simplex virus 2 Ag [Presence] in Specimen by Immunofluorescence','58495','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_5854-5','5854-5','http://loinc.org','Herpes simplex virus Ag [Presence] in Specimen by Immunoassay','58545','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_5855-2','5855-2','http://loinc.org','Herpes simplex virus Ag [Presence] in Specimen by Immunofluorescence','58552','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_5869-3','5869-3','http://loinc.org','Parainfluenza virus 1 Ag [Presence] in Specimen by Immunofluorescence','58693','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_5871-9','5871-9','http://loinc.org','Parainfluenza virus 2 Ag [Presence] in Specimen by Immunofluorescence','58719','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_5873-5','5873-5','http://loinc.org','Parainfluenza virus 3 Ag [Presence] in Specimen by Immunofluorescence','58735','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_60424-9','60424-9','http://loinc.org','Parainfluenza virus 4 Ag [Presence] in Specimen','604249','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_6441-0','6441-0','http://loinc.org','Influenza virus A+B+C Ag [Presence] in Specimen by Immunoassay','64410','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_6442-8','6442-8','http://loinc.org','Influenza virus A+B+C Ag [Presence] in Specimen by Immunofluorescence','64428','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_86323-3','86323-3','http://loinc.org','Enterovirus Ag [Presence] in Specimen by Immunofluorescence','863233','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_86540-2','86540-2','http://loinc.org','Herpes simplex virus 2 Ag [Presence] in Tissue by Immunofluorescence','865402','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_88201-9','88201-9','http://loinc.org','Herpes simplex virus 1 Ag [Presence] in Tissue by Immunofluorescence','882019','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_91076-0','91076-0','http://loinc.org','Rabies virus Ag [Presence] in Tissue by Immunoassay','910760','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_12232-5','12232-5','http://loinc.org','Measles virus Ag [Presence] in Specimen by Immunofluorescence','122325','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_12237-4','12237-4','http://loinc.org','Mumps virus Ag [Presence] in Specimen by Immunofluorescence','122374','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_23548-1','23548-1','http://loinc.org','Venezuelan equine encephalitis virus Ag [Presence] in Specimen by Neutralization test','235481','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_23549-9','23549-9','http://loinc.org','Venezuelan equine encephalitis virus Ag [Presence] in Specimen by Immunofluorescence','235499','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_23550-7','23550-7','http://loinc.org','Venezuelan equine encephalitis virus Ag [Presence] in Specimen by Hemagglutination inhibition','235507','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_23551-5','23551-5','http://loinc.org','Venezuelan equine encephalitis virus Ag [Presence] in Specimen by Complement fixation','235515','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_23589-5','23589-5','http://loinc.org','Western equine encephalitis virus Ag [Presence] in Specimen by Neutralization test','235895','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_23590-3','23590-3','http://loinc.org','Western equine encephalitis virus Ag [Presence] in Specimen by Immunofluorescence','235903','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_23591-1','23591-1','http://loinc.org','Western equine encephalitis virus Ag [Presence] in Specimen by Complement fixation','235911','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_31799-0','31799-0','http://loinc.org','Dengue virus Ag [Presence] in Specimen','317990','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_31887-3','31887-3','http://loinc.org','Measles virus Ag [Presence] in Specimen','318873','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_31900-4','31900-4','http://loinc.org','Mumps virus Ag [Presence] in Specimen','319004','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_31982-2','31982-2','http://loinc.org','Varicella zoster virus Ag [Presence] in Specimen','319822','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_31984-8','31984-8','http://loinc.org','Venezuelan equine encephalitis virus Ag [Presence] in Specimen','319848','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_31988-9','31988-9','http://loinc.org','Western equine encephalitis virus Ag [Presence] in Specimen','319889','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_5882-6','5882-6','http://loinc.org','Varicella zoster virus Ag [Presence] in Specimen by Immunofluorescence','58826','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_6385-9','6385-9','http://loinc.org','Dengue virus Ag [Presence] in Specimen by Immunofluorescence','63859','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_86592-3','86592-3','http://loinc.org','Varicella zoster virus Ag [Presence] in Tissue by Immunofluorescence','865923','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_23048-2','23048-2','http://loinc.org','Eastern equine encephalitis virus Ag [Presence] in Specimen by Immunofluorescence','230482','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_23049-0','23049-0','http://loinc.org','Eastern equine encephalitis virus Ag [Presence] in Specimen by Complement fixation','230490','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_23050-8','23050-8','http://loinc.org','Eastern equine encephalitis virus Ag [Presence] in Specimen by Neutralization test','230508','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_23148-0','23148-0','http://loinc.org','Japanese encephalitis virus Ag [Presence] in Specimen by Immunofluorescence','231480','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_23149-8','23149-8','http://loinc.org','Japanese encephalitis virus Ag [Presence] in Specimen by Hemagglutination inhibition','231498','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_24015-0','24015-0','http://loinc.org','Influenza virus A+B Ag [Presence] in Specimen','240150','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_31797-4','31797-4','http://loinc.org','Cytomegalovirus Ag [Presence] in Specimen','317974','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_31808-9','31808-9','http://loinc.org','Eastern equine encephalitis virus Ag [Presence] in Specimen','318089','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_31864-2','31864-2','http://loinc.org','Influenza virus B Ag [Presence] in Specimen','318642','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_31866-7','31866-7','http://loinc.org','Japanese encephalitis virus Ag [Presence] in Specimen','318667','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_41643-8','41643-8','http://loinc.org','West Nile virus Ag [Presence] in Specimen by Immunofluorescence','416438','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_42336-8','42336-8','http://loinc.org','Cytomegalovirus Ag [#/area] in Specimen','423368','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_54240-7','54240-7','http://loinc.org','Influenza virus Ag [Presence] in Specimen','542407','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_5866-9','5866-9','http://loinc.org','Influenza virus B Ag [Presence] in Specimen by Immunoassay','58669','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_5867-7','5867-7','http://loinc.org','Influenza virus B Ag [Presence] in Specimen by Immunofluorescence','58677','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_60541-0','60541-0','http://loinc.org','Cytomegalovirus early Ag [Presence] in Specimen','605410','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_61102-0','61102-0','http://loinc.org','Influenza virus A and B Ag [Identifier] in Specimen by Immunofluorescence','611020','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_6379-2','6379-2','http://loinc.org','Cytomegalovirus Ag [Presence] in Specimen by Immunoassay','63792','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_6381-8','6381-8','http://loinc.org','Cytomegalovirus Ag [Presence] in Specimen by Immunofluorescence','63818','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_6437-8','6437-8','http://loinc.org','Influenza virus A+B Ag [Presence] in Specimen by Immunoassay','64378','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_6438-6','6438-6','http://loinc.org','Influenza virus A+B Ag [Presence] in Specimen by Immunofluorescence','64386','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_6528-4','6528-4','http://loinc.org','Rabies virus Ag [Presence] in Tissue by Immunofluorescence','65284','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_6532-6','6532-6','http://loinc.org','Rabies virus Ag [Presence] in Specimen by Immunofluorescence','65326','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_6533-4','6533-4','http://loinc.org','Rabies virus Ag [Units/volume] in Specimen by Immunofluorescence','65334','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_72356-9','72356-9','http://loinc.org','Influenza virus A and B Ag [Identifier] in Specimen by Rapid immunoassay','723569','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_86517-0','86517-0','http://loinc.org','Cytomegalovirus Ag [Presence] in Tissue by Immunofluorescence','865170','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_67812-8','67812-8','http://loinc.org','Varicella zoster virus Ag [Presence] in Isolate by Immunofluorescence','678128','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_22825-4','22825-4','http://loinc.org','Influenza virus A Ag [Presence] in Specimen by Immune diffusion (ID)','228254','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_31859-2','31859-2','http://loinc.org','Influenza virus A Ag [Presence] in Specimen','318592','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_5862-8','5862-8','http://loinc.org','Influenza virus A Ag [Presence] in Specimen by Immunoassay','58628','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_5863-6','5863-6','http://loinc.org','Influenza virus A Ag [Presence] in Specimen by Immunofluorescence','58636','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_67806-0','67806-0','http://loinc.org','Measles virus Ag [Presence] in Isolate by Immunofluorescence','678060','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_86565-9','86565-9','http://loinc.org','Influenza virus A Ag [Presence] in Tissue by Immunofluorescence','865659','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_67807-8','67807-8','http://loinc.org','Mumps virus Ag [Presence] in Isolate by Immunofluorescence','678078','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_10660-9','10660-9','http://loinc.org','Cytomegalovirus Ag [Presence] in Tissue by Immune stain','106609','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_49522-6','49522-6','http://loinc.org','Influenza virus A H3 Ag [Presence] in Isolate by Immunofluorescence','495226','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_49529-1','49529-1','http://loinc.org','Influenza virus A Ag [Presence] in Isolate by Immunofluorescence','495291','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_50701-2','50701-2','http://loinc.org','Influenza virus A H1 Ag [Presence] in Isolate by Immunofluorescence','507012','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2176_67805-2','67805-2','http://loinc.org','Cytomegalovirus Ag [Presence] in Isolate by Immunofluorescence','678052','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2183_42536-3','42536-3','http://loinc.org','Tropheryma whipplei DNA [Presence] in Cerebral spinal fluid by NAA with probe detection','425363','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2183_82186-8','82186-8','http://loinc.org','Streptococcus agalactiae DNA [Presence] in Cerebral spinal fluid by NAA with non-probe detection','821868','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2183_99093-7','99093-7','http://loinc.org','Streptococcus agalactiae DNA [Presence] in Cerebral spinal fluid by NAA with probe detection','990937','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2183_99095-2','99095-2','http://loinc.org','Streptococcus pyogenes DNA [Presence] in Cerebral spinal fluid by NAA with probe detection','990952','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2183_99096-0','99096-0','http://loinc.org','Mycoplasma pneumoniae DNA [Presence] in Cerebral spinal fluid by NAA with probe detection','990960','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2183_63465-9','63465-9','http://loinc.org','Brucella sp DNA [Presence] in Cerebral spinal fluid by NAA with probe detection','634659','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2183_14561-5','14561-5','http://loinc.org','Mycobacterium tuberculosis DNA [Presence] in Cerebral spinal fluid by NAA with probe detection','145615','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2183_11551-9','11551-9','http://loinc.org','Borrelia burgdorferi DNA [Presence] in Cerebral spinal fluid by Probe with amplification','115519','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2183_32668-6','32668-6','http://loinc.org','Borrelia burgdorferi DNA [Presence] in Cerebral spinal fluid by NAA with probe detection','326686','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2183_82184-3','82184-3','http://loinc.org','Listeria monocytogenes DNA [Presence] in Cerebral spinal fluid by NAA with non-probe detection','821843','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2183_99091-1','99091-1','http://loinc.org','Listeria monocytogenes DNA [Presence] in Cerebral spinal fluid by NAA with probe detection','990911','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2180_10695-5','10695-5','http://loinc.org','Naegleria sp identified in Tissue by Wet preparation','106955','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2180_14839-5','14839-5','http://loinc.org','Trypanosoma sp identified in Buffy Coat by Light microscopy','148395','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2180_23509-3','23509-3','http://loinc.org','Trypanosoma equiperdum [Presence] in Body fluid by Light microscopy','235093','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2180_6670-4','6670-4','http://loinc.org','Microscopic observation [Identifier] in Tissue by Malaria smear','66704','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2180_10727-6','10727-6','http://loinc.org','Toxoplasma gondii identified in Tissue','107276','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2180_42343-4','42343-4','http://loinc.org','Toxoplasma gondii identified in Specimen by Other stain','423434','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.693_73674-4','73674-4','http://loinc.org','Streptococcus pneumoniae serotype [Type] in Isolate by Agglutination','736744','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.693_73685-0','73685-0','http://loinc.org','Streptococcus pneumoniae Ag [Presence] in Isolate by Latex agglutination','736850','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.693_88722-4','88722-4','http://loinc.org','Streptococcus pneumoniae serotype [Type] in Isolate','887224','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.693_85768-0','85768-0','http://loinc.org','Streptococcus pneumoniae DNA [Presence] by NAA with non-probe detection in Positive blood culture','857680','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.693_88275-3','88275-3','http://loinc.org','Streptococcus pneumoniae gryB gene [Presence] by Probe in Positive blood culture','882753','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.693_92771-5','92771-5','http://loinc.org','Streptococcus pneumoniae DNA [Presence] by NAA with probe detection in Positive blood culture','927715','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.575_97917-9','97917-9','http://loinc.org','Oropouche virus RNA [Presence] in Specimen by NAA with probe detection','979179','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.575_97920-3','97920-3','http://loinc.org','Tick-borne encephalitis virus RNA [Presence] in Specimen by NAA with probe detection','979203','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.575_97925-2','97925-2','http://loinc.org','Barmah forest virus RNA [Presence] in Specimen by NAA with probe detection','979252','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.575_97927-8','97927-8','http://loinc.org','Tahyna virus RNA [Presence] in Specimen by NAA with probe detection','979278','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.575_97930-2','97930-2','http://loinc.org','Sindbis virus RNA [Presence] in Specimen by NAA with probe detection','979302','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.575_97931-0','97931-0','http://loinc.org','Mayaro virus RNA [Presence] in Specimen by NAA with probe detection','979310','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.575_97947-6','97947-6','http://loinc.org','Rocio virus RNA [Presence] in Specimen by NAA with probe detection','979476','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.575_49114-2','49114-2','http://loinc.org','Flavivirus rRNA [Units/volume] (viral load) in Blood by NAA with probe detection','491142','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.575_51665-8','51665-8','http://loinc.org','Flavivirus RNA [Presence] in Specimen by NAA with probe detection','516658','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.575_81651-2','81651-2','http://loinc.org','Murray Valley encephalitis virus RNA [Presence] in Specimen by NAA with probe detection','816512','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.575_81688-4','81688-4','http://loinc.org','Barmah forest virus RNA [Presence] in Blood by NAA with probe detection','816884','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.575_94183-1','94183-1','http://loinc.org','Heartland banyangvirus RNA [Presence] in Specimen by NAA with probe detection','941831','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.575_97918-7','97918-7','http://loinc.org','Rift valley fever virus RNA [Presence] in Specimen by NAA with probe detection','979187','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.575_97928-6','97928-6','http://loinc.org','Highlands J virus RNA [Presence] in Specimen by NAA with probe detection','979286','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.575_97929-4','97929-4','http://loinc.org','Ross River virus RNA [Presence] in Specimen by NAA with probe detection','979294','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.575_97934-4','97934-4','http://loinc.org','Toscana virus RNA [Presence] in Specimen by NAA with probe detection','979344','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.575_97935-1','97935-1','http://loinc.org','Bourbon virus RNA [Presence] in Specimen by NAA with probe detection','979351','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.575_23553-1','23553-1','http://loinc.org','Venezuelan equine encephalitis virus subtype [Identifier] in Specimen by NAA with probe detection','235531','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.575_81117-4','81117-4','http://loinc.org','Ross River virus RNA [Presence] in Serum by NAA with probe detection','811174','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.575_86591-5','86591-5','http://loinc.org','Toscana virus RNA [Presence] in Serum by NAA with probe detection','865915','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.575_97951-8','97951-8','http://loinc.org','Venezuelan equine encephalitis virus RNA [Presence] in Specimen by NAA with probe detection','979518','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.575_88598-8','88598-8','http://loinc.org','Toscana virus RNA [Presence] in Cerebral spinal fluid by NAA with probe detection','885988','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.576_31983-0','31983-0','http://loinc.org','Venezuelan equine encephalitis virus Ag [Presence] in Serum','319830','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.576_6572-2','6572-2','http://loinc.org','Venezuelan equine encephalitis virus Ag [Presence] in Serum by Immunoassay','65722','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.576_6573-0','6573-0','http://loinc.org','Venezuelan equine encephalitis virus Ag [Presence] in Serum by Immunofluorescence','65730','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.576_71699-3','71699-3','http://loinc.org','Flavivirus Ag [Presence] in Specimen by Immune stain','716993','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.576_23401-3','23401-3','http://loinc.org','Rift valley fever virus Ag [Presence] in Tissue by Neutralization test','234013','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.576_23402-1','23402-1','http://loinc.org','Rift valley fever virus Ag [Presence] in Blood by Neutralization test','234021','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.576_23403-9','23403-9','http://loinc.org','Rift valley fever virus Ag [Presence] in Specimen by Immunofluorescence','234039','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.576_23404-7','23404-7','http://loinc.org','Rift valley fever virus Ag [Presence] in Tissue by Immunofluorescence','234047','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.576_23405-4','23405-4','http://loinc.org','Rift valley fever virus Ag [Presence] in Tissue by Immune diffusion (ID)','234054','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.576_23406-2','23406-2','http://loinc.org','Rift valley fever virus Ag [Presence] in Serum by Immune diffusion (ID)','234062','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.576_23548-1','23548-1','http://loinc.org','Venezuelan equine encephalitis virus Ag [Presence] in Specimen by Neutralization test','235481','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.576_23549-9','23549-9','http://loinc.org','Venezuelan equine encephalitis virus Ag [Presence] in Specimen by Immunofluorescence','235499','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.576_23550-7','23550-7','http://loinc.org','Venezuelan equine encephalitis virus Ag [Presence] in Specimen by Hemagglutination inhibition','235507','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.576_23551-5','23551-5','http://loinc.org','Venezuelan equine encephalitis virus Ag [Presence] in Specimen by Complement fixation','235515','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.576_31951-7','31951-7','http://loinc.org','Rift valley fever virus Ag [Presence] in Specimen','319517','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.576_31984-8','31984-8','http://loinc.org','Venezuelan equine encephalitis virus Ag [Presence] in Specimen','319848','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.576_71778-5','71778-5','http://loinc.org','Rift valley fever virus Ag [Presence] in Serum by Immunoassay','717785','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.335_50698-0','50698-0','http://loinc.org','Influenza virus A.adamantane resistance [Presence] by Phenotype method','506980','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.335_50699-8','50699-8','http://loinc.org','Influenza virus A.adamantane resistance [Presence]','506998','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.335_50703-8','50703-8','http://loinc.org','Influenza virus A.neuraminidase inhibitor resistance [Susceptibility] Qualitative by Phenotype method','507038','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.335_72200-9','72200-9','http://loinc.org','Influenza virus A neuraminidase segment sequence identifier','722009','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.335_72201-7','72201-7','http://loinc.org','Influenza virus A matrix protein segment sequence identifier','722017','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.335_72767-7','72767-7','http://loinc.org','Influenza virus A hemagglutinin segment sequence identifier','727677','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.335_22826-2','22826-2','http://loinc.org','Influenza virus A identified in Specimen by Bioassay','228262','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.335_48310-7','48310-7','http://loinc.org','Influenza virus A [Presence] in Specimen by Organism specific culture','483107','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.335_50697-2','50697-2','http://loinc.org','Influenza virus A Ag [Identifier] in Isolate','506972','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.335_85532-0','85532-0','http://loinc.org','Influenza virus A whole genome [Nucleotide sequence] in Isolate by Sequencing','855320','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.335_85535-3','85535-3','http://loinc.org','Influenza virus A RNA TCID50 [#/volume] in Specimen','855353','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.335_85802-7','85802-7','http://loinc.org','Influenza virus A H1 Ag [Titer] in Isolate by Hemagglutination inhibition','858027','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.335_85803-5','85803-5','http://loinc.org','Influenza virus A H3 Ag [Titer] in Isolate by Hemagglutination inhibition','858035','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.335_49522-6','49522-6','http://loinc.org','Influenza virus A H3 Ag [Presence] in Isolate by Immunofluorescence','495226','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.335_49529-1','49529-1','http://loinc.org','Influenza virus A Ag [Presence] in Isolate by Immunofluorescence','495291','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.335_49532-5','49532-5','http://loinc.org','Influenza virus A hemagglutinin type RNA [Identifier] in Isolate by Sequencing','495325','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.335_50701-2','50701-2','http://loinc.org','Influenza virus A H1 Ag [Presence] in Isolate by Immunofluorescence','507012','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.335_50702-0','50702-0','http://loinc.org','Influenza virus A matrix protein RNA [Presence] in Isolate by Sequencing','507020','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.335_50704-6','50704-6','http://loinc.org','Influenza virus A nucleoprotein RNA [Presence] in Isolate by Sequencing','507046','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.335_50705-3','50705-3','http://loinc.org','Influenza virus A non-structural protein RNA [Presence] in Isolate by Sequencing','507053','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.335_50706-1','50706-1','http://loinc.org','Influenza virus A polymerase A RNA [Presence] in Isolate by Sequencing','507061','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.335_50707-9','50707-9','http://loinc.org','Influenza virus A polymerase B1 cDNA [Presence] in Isolate by Sequencing','507079','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.335_50708-7','50708-7','http://loinc.org','Influenza virus A polymerase B2 RNA [Presence] in Isolate by Sequencing','507087','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.335_50711-1','50711-1','http://loinc.org','Influenza virus A polymerase RNA [Identifier] in Isolate by Sequencing','507111','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.335_85804-3','85804-3','http://loinc.org','Influenza virus A H5 Ag [Titer] in Isolate by Hemagglutination inhibition','858043','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.335_85805-0','85805-0','http://loinc.org','Influenza virus A H7 Ag [Titer] in Isolate by Hemagglutination inhibition','858050','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.335_87714-2','87714-2','http://loinc.org','Influenza virus A M gene [Nucleotide sequence] in Isolate by Sequencing','877142','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.335_87715-9','87715-9','http://loinc.org','Influenza virus A HA gene [Nucleotide sequence] in Isolate by Sequencing','877159','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.335_87716-7','87716-7','http://loinc.org','Influenza virus A NA gene [Nucleotide sequence] in Isolate by Sequencing','877167','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.335_93759-9','93759-9','http://loinc.org','Influenza virus A PB2 gene [Nucleotide sequence] in Isolate by Sequencing','937599','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.335_93760-7','93760-7','http://loinc.org','Influenza virus A PB1 gene [Nucleotide sequence] in Isolate by Sequencing','937607','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.335_93761-5','93761-5','http://loinc.org','Influenza virus A PA gene [Nucleotide sequence] in Isolate by Sequencing','937615','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.335_93762-3','93762-3','http://loinc.org','Influenza virus A NP gene [Nucleotide sequence] in Isolate by Sequencing','937623','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.335_93763-1','93763-1','http://loinc.org','Influenza virus A NS1 gene [Nucleotide sequence] in Isolate by Sequencing','937631','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.335_49520-0','49520-0','http://loinc.org','Influenza virus A H1 RNA [Presence] in Isolate by NAA with probe detection','495200','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.335_49523-4','49523-4','http://loinc.org','Influenza virus A H3 RNA [Presence] in Isolate by NAA with probe detection','495234','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.335_49531-7','49531-7','http://loinc.org','Influenza virus A RNA [Presence] in Isolate by NAA with probe detection','495317','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.335_55133-3','55133-3','http://loinc.org','Influenza virus A hemagglutinin cDNA [Identifier] in Isolate by NAA with probe detection','551333','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.335_55134-1','55134-1','http://loinc.org','Influenza virus A neuraminidase RNA [Identifier] in Isolate by NAA with probe detection','551341','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.335_59424-2','59424-2','http://loinc.org','Influenza virus A hemagglutinin type RNA [Identifier] in Isolate by NAA with probe detection','594242','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.335_49526-7','49526-7','http://loinc.org','Influenza virus A H5 RNA [Presence] in Isolate by NAA with probe detection','495267','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.335_49527-5','49527-5','http://loinc.org','Influenza virus A H7 RNA [Presence] in Isolate by NAA with probe detection','495275','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.335_50700-4','50700-4','http://loinc.org','Influenza virus A.adamantane resistant RNA [Presence] by NAA with probe detection','507004','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.335_60530-3','60530-3','http://loinc.org','Influenza virus A H9 RNA [Presence] in Isolate by NAA with probe detection','605303','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.577_23546-5','23546-5','http://loinc.org','Venezuelan equine encephalitis virus IgM Ab [Presence] in Serum','235465','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.577_23547-3','23547-3','http://loinc.org','Venezuelan equine encephalitis virus IgM Ab [Presence] in Serum by Immunoassay','235473','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.577_24118-2','24118-2','http://loinc.org','Barmah forest virus IgM Ab [Presence] in Serum by Immunoassay','241182','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.577_24120-8','24120-8','http://loinc.org','Ross River virus IgM Ab [Presence] in Serum by Immunoassay','241208','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.577_31248-8','31248-8','http://loinc.org','Barmah forest virus IgM Ab [Presence] in Serum','312488','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.577_31615-8','31615-8','http://loinc.org','Ross River virus IgM Ab [Presence] in Serum','316158','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.577_40584-5','40584-5','http://loinc.org','Arbovirus IgM Ab [Presence] in Serum','405845','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.577_71779-3','71779-3','http://loinc.org','Rift valley fever virus IgM Ab [Titer] in Serum by Immunoassay','717793','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.577_71781-9','71781-9','http://loinc.org','Rift valley fever virus IgM Ab [Presence] in Serum by Immunoassay','717819','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.577_74033-2','74033-2','http://loinc.org','Arbovirus IgM Ab [Presence] in Serum by Immunofluorescence','740332','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.577_77950-4','77950-4','http://loinc.org','Toscana virus IgM Ab [Presence] in Serum by Immunoassay','779504','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.577_78019-7','78019-7','http://loinc.org','Toscana virus IgM Ab [Presence] in Cerebral spinal fluid by Immunoassay','780197','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.577_8051-5','8051-5','http://loinc.org','Venezuelan equine encephalitis virus IgM Ab [Units/volume] in Serum','80515','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.577_81113-3','81113-3','http://loinc.org','Murray Valley encephalitis virus IgM Ab [Presence] in Serum','811133','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.577_81114-1','81114-1','http://loinc.org','Murray Valley encephalitis virus IgM Ab [Titer] in Serum','811141','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.577_95679-7','95679-7','http://loinc.org','Barmah forest virus IgM Ab [Presence] in Specimen by Immunoassay','956797','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.577_95681-3','95681-3','http://loinc.org','Tahyna virus IgM Ab [Presence] in Specimen by Immunoassay','956813','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.577_95683-9','95683-9','http://loinc.org','Highlands J virus IgM Ab [Presence] in Specimen by Immunoassay','956839','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.577_95684-7','95684-7','http://loinc.org','Murray Valley encephalitis virus IgM Ab [Presence] in Specimen by Immunoassay','956847','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.577_95685-4','95685-4','http://loinc.org','Ross River virus IgM Ab [Presence] in Specimen by Immunoassay','956854','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.577_95686-2','95686-2','http://loinc.org','Sindbis virus IgM Ab [Presence] in Specimen by Immunoassay','956862','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.577_95689-6','95689-6','http://loinc.org','Mayaro virus IgM Ab [Presence] in Specimen by Immunoassay','956896','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.577_95691-2','95691-2','http://loinc.org','Venezuelan equine encephalitis virus IgM Ab [Presence] in Specimen by Immunoassay','956912','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.577_96524-4','96524-4','http://loinc.org','Rocio virus IgM Ab [Presence] in Specimen by Immunoassay','965244','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.577_96527-7','96527-7','http://loinc.org','Bourbon virus IgM Ab [Presence] in Specimen by Immunoassay','965277','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.577_96528-5','96528-5','http://loinc.org','Toscana virus IgM Ab [Presence] in Specimen by Immunoassay','965285','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.577_96531-9','96531-9','http://loinc.org','Oropouche virus IgM Ab [Presence] in Specimen by Immunoassay','965319','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.577_96532-7','96532-7','http://loinc.org','Rift valley fever virus IgM Ab [Presence] in Specimen by Immunoassay','965327','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.577_96534-3','96534-3','http://loinc.org','Heartland banyangvirus IgM Ab [Presence] in Specimen by Immunoassay','965343','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.577_96535-0','96535-0','http://loinc.org','Tick-borne encephalitis virus IgM Ab [Presence] in Specimen by Immunoassay','965350','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.577_97644-9','97644-9','http://loinc.org','Barmah forest virus IgM Ab [Presence] in Cerebral spinal fluid by Immunoassay','976449','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_100974-5','100974-5','http://loinc.org','Influenza virus B RNA [Presence] in Nose by NAA with non-probe detection','1009745','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_101295-4','101295-4','http://loinc.org','Influenza virus B RNA [Presence] in Throat by NAA with non-probe detection','1012954','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_101983-5','101983-5','http://loinc.org','Influenza virus A+B RNA [Presence] in Respiratory system specimen by NAA with probe detection','1019835','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_100973-7','100973-7','http://loinc.org','Influenza virus A RNA [Presence] in Nose by NAA with non-probe detection','1009737','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_101292-1','101292-1','http://loinc.org','Influenza virus A RNA [Presence] in Throat by NAA with non-probe detection','1012921','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_101293-9','101293-9','http://loinc.org','Influenza virus A H1 2009 pandemic RNA [Presence] in Throat by NAA with non-probe detection','1012939','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_101294-7','101294-7','http://loinc.org','Influenza virus A H3 RNA [Presence] in Throat by NAA with non-probe detection','1012947','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_101423-2','101423-2','http://loinc.org','Influenza virus A H1 RNA [Presence] in Respiratory system specimen by NAA with probe detection','1014232','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_101424-0','101424-0','http://loinc.org','Influenza virus A H3 RNA [Presence] in Respiratory system specimen by NAA with probe detection','1014240','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_100343-3','100343-3','http://loinc.org','Influenza virus B RNA [Presence] in Saliva (oral fluid) by NAA with probe detection','1003433','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_76079-3','76079-3','http://loinc.org','Influenza virus B RNA [Presence] in Bronchoalveolar lavage by NAA with probe detection','760793','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_76080-1','76080-1','http://loinc.org','Influenza virus B RNA [Presence] in Nasopharynx by NAA with probe detection','760801','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_80591-1','80591-1','http://loinc.org','Influenza virus B NS gene [Presence] in Nasopharynx by NAA with probe detection','805911','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_81309-7','81309-7','http://loinc.org','Influenza virus B RNA [Cycle Threshold #] in Respiratory system specimen by NAA with probe detection','813097','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_81325-3','81325-3','http://loinc.org','Influenza virus B Yamagata lineage RNA [Cycle Threshold #] in Respiratory system specimen by NAA with probe detection','813253','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_81327-9','81327-9','http://loinc.org','Influenza virus B Victoria lineage RNA [Cycle Threshold #] in Respiratory system specimen by NAA with probe detection','813279','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_82170-2','82170-2','http://loinc.org','Influenza virus B RNA [Presence] in Nasopharynx by NAA with non-probe detection','821702','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_82461-5','82461-5','http://loinc.org','Influenza virus A and B and H1 2009 pandemic RNA [Identifier] in Upper respiratory specimen by NAA with probe detection','824615','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_85478-6','85478-6','http://loinc.org','Influenza virus B RNA [Presence] in Upper respiratory specimen by NAA with probe detection','854786','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_86572-5','86572-5','http://loinc.org','Influenza virus B RNA [Presence] in Tissue by NAA with probe detection','865725','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_88195-3','88195-3','http://loinc.org','Influenza virus B RNA [Presence] in Cornea or Conjunctiva by NAA with probe detection','881953','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_88592-1','88592-1','http://loinc.org','Influenza virus B RNA [Presence] in Lower respiratory specimen by NAA with probe detection','885921','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_88596-2','88596-2','http://loinc.org','Influenza virus B RNA [Presence] in Pericardial fluid by NAA with probe detection','885962','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_92141-1','92141-1','http://loinc.org','Influenza virus B RNA [Presence] in Respiratory system specimen by NAA with probe detection','921411','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_92976-0','92976-0','http://loinc.org','Influenza virus B RNA [Presence] in Lower respiratory specimen by NAA with non-probe detection','929760','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_100344-1','100344-1','http://loinc.org','Influenza virus A RNA [Presence] in Saliva (oral fluid) by NAA with probe detection','1003441','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_40982-1','40982-1','http://loinc.org','Influenza virus B RNA [Presence] in Specimen by NAA with probe detection','409821','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_48509-4','48509-4','http://loinc.org','Influenza virus A and B RNA [Identifier] in Specimen by NAA with probe detection','485094','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_53251-5','53251-5','http://loinc.org','Influenza virus B RNA [#/volume] (viral load) in Specimen by NAA with probe detection','532515','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_54243-1','54243-1','http://loinc.org','Influenza virus RNA [Identifier] in Specimen by Probe','542431','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_60538-6','60538-6','http://loinc.org','Influenza virus A H1+H3+B RNA [Presence] in Specimen by NAA with probe detection','605386','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_74784-0','74784-0','http://loinc.org','Influenza virus B lineage RNA [Identifier] in Specimen by NAA with probe detection','747840','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_74785-7','74785-7','http://loinc.org','Influenza virus B Victoria lineage RNA [Presence] in Specimen by NAA with probe detection','747857','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_74786-5','74786-5','http://loinc.org','Influenza virus B Yamagata lineage RNA [Presence] in Specimen by NAA with probe detection','747865','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_76077-7','76077-7','http://loinc.org','Influenza virus A RNA [Presence] in Bronchoalveolar lavage by NAA with probe detection','760777','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_76078-5','76078-5','http://loinc.org','Influenza virus A RNA [Presence] in Nasopharynx by NAA with probe detection','760785','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_77026-3','77026-3','http://loinc.org','Influenza virus A H1 RNA [Presence] in Nasopharynx by NAA with probe detection','770263','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_77027-1','77027-1','http://loinc.org','Influenza virus A H3 RNA [Presence] in Nasopharynx by NAA with probe detection','770271','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_77028-9','77028-9','http://loinc.org','Influenza virus A H1 2009 pandemic RNA [Presence] in Nasopharynx by NAA with probe detection','770289','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_80588-7','80588-7','http://loinc.org','Influenza virus A M gene [Presence] in Nasopharynx by NAA with probe detection','805887','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_80589-5','80589-5','http://loinc.org','Influenza virus A H1 HA gene [Presence] in Nasopharynx by NAA with probe detection','805895','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_80590-3','80590-3','http://loinc.org','Influenza virus A H3 HA gene [Presence] in Nasopharynx by NAA with probe detection','805903','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_81305-5','81305-5','http://loinc.org','Influenza virus A H1 2009 pandemic RNA [Cycle Threshold #] in Respiratory system specimen by NAA with probe detection','813055','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_81308-9','81308-9','http://loinc.org','Influenza virus A RNA [Cycle Threshold #] in Respiratory system specimen by NAA with probe detection','813089','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_82166-0','82166-0','http://loinc.org','Influenza virus A RNA [Presence] in Nasopharynx by NAA with non-probe detection','821660','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_82167-8','82167-8','http://loinc.org','Influenza virus A H1 RNA [Presence] in Nasopharynx by NAA with non-probe detection','821678','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_82168-6','82168-6','http://loinc.org','Influenza virus A H1 2009 pandemic RNA [Presence] in Nasopharynx by NAA with non-probe detection','821686','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_82169-4','82169-4','http://loinc.org','Influenza virus A H3 RNA [Presence] in Nasopharynx by NAA with non-probe detection','821694','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_85477-8','85477-8','http://loinc.org','Influenza virus A RNA [Presence] in Upper respiratory specimen by NAA with probe detection','854778','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_88187-0','88187-0','http://loinc.org','Influenza virus A subtype [Identifier] in Cornea or Conjunctiva by NAA with probe detection','881870','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_88193-8','88193-8','http://loinc.org','Influenza virus A RNA [Presence] in Cornea or Conjunctiva by NAA with probe detection','881938','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_88599-6','88599-6','http://loinc.org','Influenza virus A RNA [Presence] in Lower respiratory specimen by NAA with probe detection','885996','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_88600-2','88600-2','http://loinc.org','Influenza virus A RNA [Presence] in Pericardial fluid by NAA with probe detection','886002','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_90886-3','90886-3','http://loinc.org','Influenza virus B RNA [Cycle Threshold #] in Specimen by NAA with probe detection','908863','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_91072-9','91072-9','http://loinc.org','Influenza virus A subtype [Identifier] in Lower respiratory specimen by NAA with probe detection','910729','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_91771-6','91771-6','http://loinc.org','Influenza virus A subtype [Identifier] in Upper respiratory specimen by NAA with probe detection','917716','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_92142-9','92142-9','http://loinc.org','Influenza virus A RNA [Presence] in Respiratory system specimen by NAA with probe detection','921429','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_92808-5','92808-5','http://loinc.org','Influenza virus A H3 RNA [Presence] in Upper respiratory specimen by NAA with probe detection','928085','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_92809-3','92809-3','http://loinc.org','Influenza virus A H1 RNA [Presence] in Upper respiratory specimen by NAA with probe detection','928093','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_92977-8','92977-8','http://loinc.org','Influenza virus A RNA [Presence] in Lower respiratory specimen by NAA with non-probe detection','929778','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_94394-4','94394-4','http://loinc.org','Influenza virus A H3 RNA [Presence] in Lower respiratory specimen by NAA with probe detection','943944','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_94395-1','94395-1','http://loinc.org','Influenza virus A H1 2009 pandemic RNA [Presence] in Lower respiratory specimen by NAA with probe detection','943951','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_94396-9','94396-9','http://loinc.org','Influenza virus A H1 RNA [Presence] in Lower respiratory specimen by NAA with probe detection','943969','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_22827-0','22827-0','http://loinc.org','Influenza virus A subtype [Identifier] in Specimen by NAA with probe detection','228270','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_34487-9','34487-9','http://loinc.org','Influenza virus A RNA [Presence] in Specimen by NAA with probe detection','344879','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_38381-0','38381-0','http://loinc.org','Influenza virus A cDNA [Presence] in Specimen by NAA with probe detection','383810','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_39025-2','39025-2','http://loinc.org','Influenza virus A hemagglutinin cDNA [Identifier] in Specimen by Sequencing','390252','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_39102-9','39102-9','http://loinc.org','Influenza virus A hemagglutinin cDNA [Identifier] in Specimen by NAA with probe detection','391029','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_39103-7','39103-7','http://loinc.org','Influenza virus A neuraminidase cDNA [Identifier] in Specimen by NAA with probe detection','391037','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_44263-2','44263-2','http://loinc.org','Influenza virus A RNA [Units/volume] (viral load) in Specimen by NAA with probe detection','442632','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_49521-8','49521-8','http://loinc.org','Influenza virus A H1 RNA [Presence] in Specimen by NAA with probe detection','495218','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_49524-2','49524-2','http://loinc.org','Influenza virus A H3 RNA [Presence] in Specimen by NAA with probe detection','495242','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_53250-7','53250-7','http://loinc.org','Influenza virus A RNA [#/volume] (viral load) in Specimen by NAA with probe detection','532507','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_55463-4','55463-4','http://loinc.org','Influenza virus A swine origin RNA [Identifier] in Specimen by NAA with probe detection','554634','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_55464-2','55464-2','http://loinc.org','Influenza virus A swine origin RNA [Presence] in Specimen by NAA with probe detection','554642','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_55465-9','55465-9','http://loinc.org','Influenza virus A H1 2009 pandemic RNA [Presence] in Specimen by NAA with probe detection','554659','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_56024-3','56024-3','http://loinc.org','Influenza virus A N1 RNA [Units/volume] (viral load) in Specimen by NAA with probe detection','560243','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_59423-4','59423-4','http://loinc.org','Influenza virus A hemagglutinin type RNA [Identifier] in Specimen by NAA with probe detection','594234','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_60494-2','60494-2','http://loinc.org','Influenza virus A H1 2009 pandemic and Influenza virus A swine origin RNA [Interpretation] in Specimen Qualitative by NAA with probe detection','604942','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_61101-2','61101-2','http://loinc.org','Influenza virus A neuraminidase RNA [Type] in Specimen by Sequencing','611012','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_62462-7','62462-7','http://loinc.org','Influenza virus A+B RNA [Presence] in Specimen by NAA with probe detection','624627','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_74038-1','74038-1','http://loinc.org','Influenza virus A H1 RNA [Cycle Threshold #] in Specimen by NAA with probe detection','740381','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_74039-9','74039-9','http://loinc.org','Influenza virus A H3 RNA [Cycle Threshold #] in Specimen by NAA with probe detection','740399','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_74040-7','74040-7','http://loinc.org','Influenza virus A N2 RNA [Cycle Threshold #] in Specimen by NAA with probe detection','740407','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_81307-1','81307-1','http://loinc.org','Influenza virus A H7 Eurasia RNA [Cycle Threshold #] in Respiratory system specimen by NAA with probe detection','813071','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_81320-4','81320-4','http://loinc.org','Influenza virus A H5 Asian RNA [Cycle Threshold #] in Respiratory system specimen by Nucleic acid amplification using primer-probe set H5a','813204','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_81321-2','81321-2','http://loinc.org','Influenza virus A H5 Asian RNA [Cycle Threshold #] in Respiratory system specimen by Nucleic acid amplification using primer-probe set H5b','813212','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_81428-5','81428-5','http://loinc.org','Influenza virus A H7 Eurasia RNA [Presence] in Respiratory system specimen by NAA with probe detection','814285','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_86317-5','86317-5','http://loinc.org','Influenza virus A H1 2009 pandemic RNA [Cycle Threshold #] in Specimen by NAA with probe detection','863175','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_86569-1','86569-1','http://loinc.org','Influenza virus A RNA [Presence] in Tissue by NAA with probe detection','865691','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_86571-7','86571-7','http://loinc.org','Influenza virus B RNA [Presence] in Cerebral spinal fluid by NAA with probe detection','865717','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_88835-4','88835-4','http://loinc.org','Influenza virus A swine origin RNA [Cycle Threshold #] in Specimen by NAA with probe detection','888354','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_99623-1','99623-1','http://loinc.org','Influenza virus A N1 RNA [Presence] in Specimen by NAA with probe detection','996231','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_38270-5','38270-5','http://loinc.org','Influenza virus A H7 RNA [Presence] in Specimen by NAA with probe detection','382705','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_38271-3','38271-3','http://loinc.org','Influenza virus A H6 RNA [Presence] in Specimen by NAA with probe detection','382713','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_38272-1','38272-1','http://loinc.org','Influenza virus A H5 RNA [Presence] in Specimen by NAA with probe detection','382721','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_44264-0','44264-0','http://loinc.org','Influenza virus A H5 RNA [Units/volume] (viral load) in Specimen by NAA with probe detection','442640','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_44265-7','44265-7','http://loinc.org','Influenza virus A H6 RNA [Units/volume] (viral load) in Specimen by NAA with probe detection','442657','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_44266-5','44266-5','http://loinc.org','Influenza virus A H7 RNA [Units/volume] (viral load) in Specimen by NAA with probe detection','442665','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_44795-3','44795-3','http://loinc.org','Influenza virus A H5 Asian RNA [Presence] in Specimen by NAA with probe detection','447953','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_49528-3','49528-3','http://loinc.org','Influenza virus A H9 RNA [Presence] in Specimen by NAA with probe detection','495283','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_57985-4','57985-4','http://loinc.org','Influenza virus A H2 RNA [Presence] in Specimen by NAA with probe detection','579854','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_68986-9','68986-9','http://loinc.org','Influenza virus A H5a RNA [Presence] in Specimen by NAA with probe detection','689869','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_68987-7','68987-7','http://loinc.org','Influenza virus A H5b RNA [Presence] in Specimen by NAA with probe detection','689877','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_77605-4','77605-4','http://loinc.org','Influenza virus A H5 RNA [Cycle Threshold #] in Specimen by NAA with probe detection','776054','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_86568-3','86568-3','http://loinc.org','Influenza virus A RNA [Presence] in Cerebral spinal fluid by NAA with probe detection','865683','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_95658-1','95658-1','http://loinc.org','Influenza virus A H7 Eurasia RNA [Presence] in Specimen by NAA with probe detection','956581','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.336_50700-4','50700-4','http://loinc.org','Influenza virus A.adamantane resistant RNA [Presence] by NAA with probe detection','507004','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.578_20980-9','20980-9','http://loinc.org','Venezuelan equine encephalitis virus neutralizing antibody [Titer] in Serum by Neutralization test','209809','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.578_22607-6','22607-6','http://loinc.org','Venezuelan equine encephalitis virus Ab [Titer] in Serum','226076','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.578_23396-5','23396-5','http://loinc.org','Rift valley fever virus neutralizing antibody [Titer] in Serum by Neutralization test','233965','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.578_23398-1','23398-1','http://loinc.org','Rift valley fever virus Ab [Titer] in Serum by Hemagglutination inhibition','233981','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.578_23400-5','23400-5','http://loinc.org','Rift valley fever virus Ab [Titer] in Serum','234005','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.578_23543-2','23543-2','http://loinc.org','Venezuelan equine encephalitis virus Ab [Titer] in Serum by Hemagglutination inhibition','235432','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.578_23787-5','23787-5','http://loinc.org','Venezuelan equine encephalitis virus Ab [Titer] in Serum by Complement fixation','237875','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.578_26014-1','26014-1','http://loinc.org','Arbovirus NOS Ab [Titer] in Serum by Complement fixation','260141','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.578_29784-6','29784-6','http://loinc.org','Highlands J virus neutralizing antibody [Titer] in Specimen by Neutralization test','297846','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.578_29797-8','29797-8','http://loinc.org','Highlands J virus neutralizing antibody [Titer] in Cerebral spinal fluid by Neutralization test','297978','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.578_29810-9','29810-9','http://loinc.org','Highlands J virus neutralizing antibody [Titer] in Serum by Neutralization test','298109','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.578_29823-2','29823-2','http://loinc.org','Highlands J virus Ab [Titer] in Specimen','298232','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.578_29835-6','29835-6','http://loinc.org','Highlands J virus Ab [Titer] in Cerebral spinal fluid','298356','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.578_29847-1','29847-1','http://loinc.org','Highlands J virus Ab [Titer] in Serum','298471','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.578_31223-1','31223-1','http://loinc.org','Arbovirus NOS Ab [Units/volume] in Serum','312231','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.578_31420-3','31420-3','http://loinc.org','Highlands J virus Ab [Units/volume] in Cerebral spinal fluid','314203','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.578_31421-1','31421-1','http://loinc.org','Highlands J virus Ab [Units/volume] in Serum','314211','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.578_31422-9','31422-9','http://loinc.org','Highlands J virus Ab [Units/volume] in Specimen','314229','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.578_31612-5','31612-5','http://loinc.org','Rift valley fever virus Ab [Units/volume] in Serum','316125','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.578_40503-5','40503-5','http://loinc.org','Sindbis virus Ab [Titer] in Serum by Hemagglutination inhibition','405035','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.578_42954-8','42954-8','http://loinc.org','Sindbis virus Ab [Titer] in Serum','429548','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.578_43092-6','43092-6','http://loinc.org','Arbovirus NOS Ab [Titer] in Serum','430926','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.578_43341-7','43341-7','http://loinc.org','Venezuelan equine encephalitis virus Ab [Titer] in Serum by Immunoassay','433417','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.578_6571-4','6571-4','http://loinc.org','Venezuelan equine encephalitis virus Ab [Units/volume] in Serum','65714','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.578_71784-3','71784-3','http://loinc.org','Rift valley fever virus IgG Ab [Titer] in Serum by Immunoassay','717843','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.578_8050-7','8050-7','http://loinc.org','Venezuelan equine encephalitis virus IgG Ab [Units/volume] in Serum','80507','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.578_81112-5','81112-5','http://loinc.org','Murray Valley encephalitis virus IgG Ab [Titer] in Serum','811125','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.578_81115-8','81115-8','http://loinc.org','Murray Valley encephalitis virus Ab [Titer] in Serum','811158','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.578_81120-8','81120-8','http://loinc.org','Barmah forest virus Ab [Titer] in Serum','811208','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.578_95641-7','95641-7','http://loinc.org','Barmah forest virus neutralizing antibody [Titer] in Specimen by Neutralization test','956417','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.578_95643-3','95643-3','http://loinc.org','Tahyna virus neutralizing antibody [Titer] in Specimen by Neutralization test','956433','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.578_95645-8','95645-8','http://loinc.org','Murray Valley encephalitis virus neutralizing antibody [Titer] in Specimen by Neutralization test','956458','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.578_95646-6','95646-6','http://loinc.org','Ross River virus neutralizing antibody [Titer] in Specimen by Neutralization test','956466','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.578_95648-2','95648-2','http://loinc.org','Sindbis virus neutralizing antibody [Titer] in Specimen by Neutralization test','956482','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.578_95650-8','95650-8','http://loinc.org','Mayaro virus neutralizing antibody [Titer] in Specimen by Neutralization test','956508','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.578_95652-4','95652-4','http://loinc.org','Venezuelan equine encephalitis virus neutralizing antibody [Titer] in Specimen by Neutralization test','956524','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.578_99112-5','99112-5','http://loinc.org','Rocio virus neutralizing antibody [Titer] in Specimen by Neutralization test','991125','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.578_99116-6','99116-6','http://loinc.org','Bourbon virus neutralizing antibody [Titer] in Specimen by Neutralization test','991166','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.578_99117-4','99117-4','http://loinc.org','Toscana virus neutralizing antibody [Titer] in Specimen by Neutralization test','991174','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.578_99120-8','99120-8','http://loinc.org','Oropouche virus neutralizing antibody [Titer] in Specimen by Neutralization test','991208','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.578_99121-6','99121-6','http://loinc.org','Rift valley fever virus neutralizing antibody [Titer] in Specimen by Neutralization test','991216','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.578_99123-2','99123-2','http://loinc.org','Heartland banyangvirus neutralizing antibody [Titer] in Specimen by Neutralization test','991232','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.578_99124-0','99124-0','http://loinc.org','Tick-borne encephalitis virus neutralizing antibody [Titer] in Specimen by Neutralization test','991240','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.578_71779-3','71779-3','http://loinc.org','Rift valley fever virus IgM Ab [Titer] in Serum by Immunoassay','717793','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.578_8051-5','8051-5','http://loinc.org','Venezuelan equine encephalitis virus IgM Ab [Units/volume] in Serum','80515','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.578_81114-1','81114-1','http://loinc.org','Murray Valley encephalitis virus IgM Ab [Titer] in Serum','811141','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2067_14973-2','14973-2','http://loinc.org','Mycobacterium sp DNA [Presence] in Sputum by NAA with probe detection','149732','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2067_21405-6','21405-6','http://loinc.org','Mycobacterium sp DNA [Presence] in Bronchial specimen by NAA with probe detection','214056','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2067_85581-7','85581-7','http://loinc.org','Mycobacterium avium and Mycobacterium intracellulare DNA [Identifier] in Sputum or Bronchial by NAA with probe detection','855817','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2188_31789-1','31789-1','http://loinc.org','Cryptococcus sp Ag [Units/volume] in Cerebral spinal fluid','317891','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2188_32674-4','32674-4','http://loinc.org','Cryptococcus sp Ag [Titer] in Cerebral spinal fluid','326744','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2188_34158-6','34158-6','http://loinc.org','Histoplasma capsulatum Ag [Units/volume] in Cerebral spinal fluid','341586','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2188_38385-1','38385-1','http://loinc.org','Coccidioides immitis Ag [Presence] in Cerebral spinal fluid','383851','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2188_51754-0','51754-0','http://loinc.org','Histoplasma capsulatum Ag [Mass/volume] in Cerebral spinal fluid by Immunoassay','517540','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2188_53931-2','53931-2','http://loinc.org','Histoplasma capsulatum Ag [Units/volume] in Cerebral spinal fluid by Immunoassay','539312','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2188_93225-1','93225-1','http://loinc.org','Coccidioides sp Ag [Mass/volume] in Cerebral spinal fluid by Immunoassay','932251','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2188_93431-5','93431-5','http://loinc.org','Blastomyces sp Ag [Mass/volume] in Cerebral spinal fluid by Immunoassay','934315','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2188_9817-8','9817-8','http://loinc.org','Cryptococcus sp Ag [Titer] in Cerebral spinal fluid by Immunoassay','98178','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2188_9819-4','9819-4','http://loinc.org','Cryptococcus sp Ag [Titer] in Cerebral spinal fluid by Latex agglutination','98194','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2188_29896-8','29896-8','http://loinc.org','Cryptococcus sp Ag [Presence] in Cerebral spinal fluid by Immunoassay','298968','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2188_31788-3','31788-3','http://loinc.org','Cryptococcus sp Ag [Presence] in Cerebral spinal fluid','317883','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2188_40776-7','40776-7','http://loinc.org','Histoplasma capsulatum Ag [Presence] in Cerebral spinal fluid','407767','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2188_46964-3','46964-3','http://loinc.org','Cryptococcus sp Ag [Presence] in Cerebral spinal fluid by Latex agglutination','469643','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2188_70911-3','70911-3','http://loinc.org','Cryptococcus sp Ag [Presence] in Cerebral spinal fluid by Rapid immunoassay','709113','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.337_31860-0','31860-0','http://loinc.org','Influenza virus A+B Ag [Presence] in Throat','318600','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.337_31863-4','31863-4','http://loinc.org','Influenza virus B Ag [Presence] in Throat','318634','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.337_33535-6','33535-6','http://loinc.org','Influenza virus A+B Ag [Presence] in Nasopharynx','335356','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.337_43895-2','43895-2','http://loinc.org','Influenza virus B Ag [Presence] in Nasopharynx','438952','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.337_44566-8','44566-8','http://loinc.org','Influenza virus A+B Ag [Presence] in Bronchial specimen','445668','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.337_44567-6','44567-6','http://loinc.org','Influenza virus A+B Ag [Presence] in Nose','445676','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.337_44571-8','44571-8','http://loinc.org','Influenza virus B Ag [Presence] in Nasopharynx by Immunofluorescence','445718','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.337_44572-6','44572-6','http://loinc.org','Influenza virus B Ag [Presence] in Bronchial specimen by Immunofluorescence','445726','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.337_44573-4','44573-4','http://loinc.org','Influenza virus B Ag [Presence] in Nose by Immunofluorescence','445734','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.337_44574-2','44574-2','http://loinc.org','Influenza virus B Ag [Presence] in Trachea by Immunofluorescence','445742','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.337_44575-9','44575-9','http://loinc.org','Influenza virus B Ag [Presence] in Nose by Immunoassay','445759','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.337_44576-7','44576-7','http://loinc.org','Influenza virus B Ag [Presence] in Bronchial specimen','445767','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.337_44577-5','44577-5','http://loinc.org','Influenza virus B Ag [Presence] in Nose','445775','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.337_46083-2','46083-2','http://loinc.org','Influenza virus B Ag [Presence] in Nasopharynx by Immunoassay','460832','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.337_5864-4','5864-4','http://loinc.org','Influenza virus B Ag [Presence] in Throat by Immunoassay','58644','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.337_5865-1','5865-1','http://loinc.org','Influenza virus B Ag [Presence] in Throat by Immunofluorescence','58651','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.337_6435-2','6435-2','http://loinc.org','Influenza virus A+B Ag [Presence] in Throat by Immunoassay','64352','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.337_6436-0','6436-0','http://loinc.org','Influenza virus A+B Ag [Presence] in Throat by Immunofluorescence','64360','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.337_72365-0','72365-0','http://loinc.org','Influenza virus A and B Ag [Identifier] in Nose by Immunofluorescence','723650','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.337_72366-8','72366-8','http://loinc.org','Influenza virus A and B Ag [Identifier] in Nose by Rapid immunoassay','723668','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.337_72367-6','72367-6','http://loinc.org','Influenza virus A+B Ag [Presence] in Nose by Rapid immunoassay','723676','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.337_77384-6','77384-6','http://loinc.org','Influenza virus B Ag [Presence] in Bronchoalveolar lavage by Immunofluorescence','773846','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.337_80383-3','80383-3','http://loinc.org','Influenza virus B Ag [Presence] in Upper respiratory specimen by Rapid immunoassay','803833','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.337_88194-6','88194-6','http://loinc.org','Influenza virus B Ag [Presence] in Tissue by Immunofluorescence','881946','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.337_88905-5','88905-5','http://loinc.org','Influenza virus B Ag [Presence] in Lower respiratory specimen by Immunofluorescence','889055','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.337_23769-3','23769-3','http://loinc.org','Porcine influenza virus A Ag [Presence] in Tissue by Immune stain','237693','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.337_23781-8','23781-8','http://loinc.org','Swine influenza virus Ag [Presence] in Tissue by Immunofluorescence','237818','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.337_23782-6','23782-6','http://loinc.org','Swine influenza virus Ag [Presence] in Tissue by Immune stain','237826','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.337_24015-0','24015-0','http://loinc.org','Influenza virus A+B Ag [Presence] in Specimen','240150','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.337_31858-4','31858-4','http://loinc.org','Influenza virus A Ag [Presence] in Throat','318584','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.337_31864-2','31864-2','http://loinc.org','Influenza virus B Ag [Presence] in Specimen','318642','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.337_43874-7','43874-7','http://loinc.org','Influenza virus A Ag [Presence] in Nasopharynx','438747','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.337_44558-5','44558-5','http://loinc.org','Influenza virus A Ag [Presence] in Nasopharynx by Immunofluorescence','445585','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.337_44559-3','44559-3','http://loinc.org','Influenza virus A Ag [Presence] in Bronchial specimen by Immunofluorescence','445593','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.337_44560-1','44560-1','http://loinc.org','Influenza virus A Ag [Presence] in Nose by Immunofluorescence','445601','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.337_44561-9','44561-9','http://loinc.org','Influenza virus A Ag [Presence] in Trachea by Immunofluorescence','445619','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.337_44562-7','44562-7','http://loinc.org','Influenza virus A Ag [Presence] in Bronchial specimen','445627','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.337_44563-5','44563-5','http://loinc.org','Influenza virus A Ag [Presence] in Nose','445635','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.337_44564-3','44564-3','http://loinc.org','Influenza virus A Ag [Presence] in Nose by Immunoassay','445643','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.337_46082-4','46082-4','http://loinc.org','Influenza virus A Ag [Presence] in Nasopharynx by Immunoassay','460824','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.337_54240-7','54240-7','http://loinc.org','Influenza virus Ag [Presence] in Specimen','542407','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.337_5860-2','5860-2','http://loinc.org','Influenza virus A Ag [Presence] in Throat by Immunoassay','58602','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.337_5861-0','5861-0','http://loinc.org','Influenza virus A Ag [Presence] in Throat by Immunofluorescence','58610','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.337_5866-9','5866-9','http://loinc.org','Influenza virus B Ag [Presence] in Specimen by Immunoassay','58669','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.337_5867-7','5867-7','http://loinc.org','Influenza virus B Ag [Presence] in Specimen by Immunofluorescence','58677','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.337_61102-0','61102-0','http://loinc.org','Influenza virus A and B Ag [Identifier] in Specimen by Immunofluorescence','611020','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.337_6437-8','6437-8','http://loinc.org','Influenza virus A+B Ag [Presence] in Specimen by Immunoassay','64378','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.337_6438-6','6438-6','http://loinc.org','Influenza virus A+B Ag [Presence] in Specimen by Immunofluorescence','64386','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.337_72356-9','72356-9','http://loinc.org','Influenza virus A and B Ag [Identifier] in Specimen by Rapid immunoassay','723569','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.337_77383-8','77383-8','http://loinc.org','Influenza virus A Ag [Presence] in Bronchoalveolar lavage by Immunofluorescence','773838','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.337_80382-5','80382-5','http://loinc.org','Influenza virus A Ag [Presence] in Upper respiratory specimen by Rapid immunoassay','803825','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.337_88904-8','88904-8','http://loinc.org','Influenza virus A Ag [Presence] in Lower respiratory specimen by Immunofluorescence','889048','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.337_22825-4','22825-4','http://loinc.org','Influenza virus A Ag [Presence] in Specimen by Immune diffusion (ID)','228254','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.337_31859-2','31859-2','http://loinc.org','Influenza virus A Ag [Presence] in Specimen','318592','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.337_5862-8','5862-8','http://loinc.org','Influenza virus A Ag [Presence] in Specimen by Immunoassay','58628','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.337_5863-6','5863-6','http://loinc.org','Influenza virus A Ag [Presence] in Specimen by Immunofluorescence','58636','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.337_86565-9','86565-9','http://loinc.org','Influenza virus A Ag [Presence] in Tissue by Immunofluorescence','865659','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_23397-3','23397-3','http://loinc.org','Rift valley fever virus Ab [Presence] in Serum','233973','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_23399-9','23399-9','http://loinc.org','Rift valley fever virus Ab [Presence] in Serum by Immunoassay','233999','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_23541-6','23541-6','http://loinc.org','Venezuelan equine encephalitis virus Ab [Presence] in Serum by Complement fixation','235416','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_23542-4','23542-4','http://loinc.org','Venezuelan equine encephalitis virus Ab [Presence] in Serum by Hemagglutination inhibition','235424','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_23544-0','23544-0','http://loinc.org','Venezuelan equine encephalitis virus Ab [Presence] in Serum','235440','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_23545-7','23545-7','http://loinc.org','Venezuelan equine encephalitis virus neutralizing antibody [Presence] in Serum by Neutralization test','235457','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_23552-3','23552-3','http://loinc.org','Venezuelan equine encephalitis virus subtype [Identifier] in Specimen by Neutralization test','235523','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_23554-9','23554-9','http://loinc.org','Venezuelan equine encephalitis virus subtype [Identifier] in Specimen by Immunofluorescence','235549','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_24117-4','24117-4','http://loinc.org','Ross River virus IgG Ab [Presence] in Serum by Immunoassay','241174','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_24121-6','24121-6','http://loinc.org','Barmah forest virus IgG Ab [Presence] in Serum by Immunoassay','241216','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_26648-6','26648-6','http://loinc.org','Sindbis virus Ab [Presence] in Serum','266486','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_26672-6','26672-6','http://loinc.org','Ross River virus Ab [Presence] in Serum','266726','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_31247-0','31247-0','http://loinc.org','Barmah forest virus IgG Ab [Presence] in Serum','312470','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_31614-1','31614-1','http://loinc.org','Ross River virus IgG Ab [Presence] in Serum','316141','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_36895-1','36895-1','http://loinc.org','Arbovirus Ab [Identifier] in Specimen by Immunofluorescence','368951','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_36899-3','36899-3','http://loinc.org','Arbovirus Ab [Identifier] in Specimen','368993','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_43905-9','43905-9','http://loinc.org','Arbovirus IgG Ab [Presence] in Serum','439059','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_44074-3','44074-3','http://loinc.org','Arbovirus Ab [Interpretation] in Serum by Immunofluorescence','440743','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_50034-8','50034-8','http://loinc.org','Arbovirus neutralizing antibody [Identifier] in Specimen by Neutralization test','500348','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_53802-5','53802-5','http://loinc.org','Arbovirus IgG Ab [Interpretation] in Serum by Immunofluorescence Narrative','538025','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_71780-1','71780-1','http://loinc.org','Rift valley fever virus IgG Ab [Presence] in Serum by Immunoassay','717801','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_74031-6','74031-6','http://loinc.org','Arbovirus identified in Serum by Immunofluorescence','740316','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_74845-9','74845-9','http://loinc.org','Sindbis virus Ab [Presence] in Serum by Hemagglutination inhibition','748459','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_77951-2','77951-2','http://loinc.org','Toscana virus IgG Ab [Presence] in Serum by Immunoassay','779512','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_78018-9','78018-9','http://loinc.org','Toscana virus IgG Ab [Presence] in Cerebral spinal fluid by Immunoassay','780189','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_81111-7','81111-7','http://loinc.org','Murray Valley encephalitis virus IgG Ab [Presence] in Serum','811117','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_81121-6','81121-6','http://loinc.org','Murray Valley encephalitis virus Ab [Presence] in Serum','811216','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_86857-0','86857-0','http://loinc.org','Flavivirus neutralizing antibody [Presence] in Specimen by Neutralization test','868570','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_95657-3','95657-3','http://loinc.org','Flavivirus identified in Specimen by Neutralization test','956573','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_95661-5','95661-5','http://loinc.org','Barmah forest virus IgG Ab [Presence] in Specimen by Immunoassay','956615','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_95666-4','95666-4','http://loinc.org','Tahyna virus IgG Ab [Presence] in Specimen by Immunoassay','956664','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_95668-0','95668-0','http://loinc.org','Highlands J virus IgG Ab [Presence] in Specimen by Immunoassay','956680','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_95669-8','95669-8','http://loinc.org','Murray Valley encephalitis virus IgG Ab [Presence] in Specimen by Immunoassay','956698','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_95670-6','95670-6','http://loinc.org','Ross River virus IgG Ab [Presence] in Specimen by Immunoassay','956706','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_95671-4','95671-4','http://loinc.org','Sindbis virus IgG Ab [Presence] in Specimen by Immunoassay','956714','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_95674-8','95674-8','http://loinc.org','Mayaro virus IgG Ab [Presence] in Specimen by Immunoassay','956748','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_95676-3','95676-3','http://loinc.org','Venezuelan equine encephalitis virus IgG Ab [Presence] in Specimen by Immunoassay','956763','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_95696-1','95696-1','http://loinc.org','Barmah forest virus IgA Ab [Presence] in Specimen by Immunoassay','956961','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_95698-7','95698-7','http://loinc.org','Tahyna virus IgA Ab [Presence] in Specimen by Immunoassay','956987','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_95699-5','95699-5','http://loinc.org','Highlands J virus IgA Ab [Presence] in Specimen by Immunoassay','956995','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_95700-1','95700-1','http://loinc.org','Murray Valley encephalitis virus IgA Ab [Presence] in Specimen by Immunoassay','957001','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_95701-9','95701-9','http://loinc.org','Ross River virus IgA Ab [Presence] in Specimen by Immunoassay','957019','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_95704-3','95704-3','http://loinc.org','Sindbis virus IgA Ab [Presence] in Specimen by Immunoassay','957043','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_95707-6','95707-6','http://loinc.org','Mayaro virus IgA Ab [Presence] in Specimen by Immunoassay','957076','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_95709-2','95709-2','http://loinc.org','Venezuelan equine encephalitis virus IgA Ab [Presence] in Specimen by Immunoassay','957092','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_95717-5','95717-5','http://loinc.org','Barmah forest virus Ab [Presence] in Serum by Immunoassay','957175','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_95719-1','95719-1','http://loinc.org','Flavivirus Ab [Presence] in Serum or Plasma','957191','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_96506-1','96506-1','http://loinc.org','Oropouche virus IgG Ab [Presence] in Specimen by Immunoassay','965061','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_96509-5','96509-5','http://loinc.org','Tick-borne encephalitis virus IgG Ab [Presence] in Specimen by Immunoassay','965095','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_96510-3','96510-3','http://loinc.org','Heartland banyangvirus IgG Ab [Presence] in Specimen by Immunoassay','965103','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_96512-9','96512-9','http://loinc.org','Rift valley fever virus IgG Ab [Presence] in Specimen by Immunoassay','965129','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_96516-0','96516-0','http://loinc.org','Toscana virus IgG Ab [Presence] in Specimen by Immunoassay','965160','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_96517-8','96517-8','http://loinc.org','Bourbon virus IgG Ab [Presence] in Specimen by Immunoassay','965178','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_96538-4','96538-4','http://loinc.org','Rocio virus IgG Ab [Presence] in Specimen by Immunoassay','965384','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_97643-1','97643-1','http://loinc.org','Barmah forest virus IgG Ab [Presence] in Cerebral spinal fluid by Immunoassay','976431','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_23401-3','23401-3','http://loinc.org','Rift valley fever virus Ag [Presence] in Tissue by Neutralization test','234013','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_23402-1','23402-1','http://loinc.org','Rift valley fever virus Ag [Presence] in Blood by Neutralization test','234021','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_23403-9','23403-9','http://loinc.org','Rift valley fever virus Ag [Presence] in Specimen by Immunofluorescence','234039','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_23404-7','23404-7','http://loinc.org','Rift valley fever virus Ag [Presence] in Tissue by Immunofluorescence','234047','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_23405-4','23405-4','http://loinc.org','Rift valley fever virus Ag [Presence] in Tissue by Immune diffusion (ID)','234054','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_23406-2','23406-2','http://loinc.org','Rift valley fever virus Ag [Presence] in Serum by Immune diffusion (ID)','234062','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_31951-7','31951-7','http://loinc.org','Rift valley fever virus Ag [Presence] in Specimen','319517','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_71778-5','71778-5','http://loinc.org','Rift valley fever virus Ag [Presence] in Serum by Immunoassay','717785','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_81651-2','81651-2','http://loinc.org','Murray Valley encephalitis virus RNA [Presence] in Specimen by NAA with probe detection','816512','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_81688-4','81688-4','http://loinc.org','Barmah forest virus RNA [Presence] in Blood by NAA with probe detection','816884','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_23546-5','23546-5','http://loinc.org','Venezuelan equine encephalitis virus IgM Ab [Presence] in Serum','235465','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_23547-3','23547-3','http://loinc.org','Venezuelan equine encephalitis virus IgM Ab [Presence] in Serum by Immunoassay','235473','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_24118-2','24118-2','http://loinc.org','Barmah forest virus IgM Ab [Presence] in Serum by Immunoassay','241182','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_24120-8','24120-8','http://loinc.org','Ross River virus IgM Ab [Presence] in Serum by Immunoassay','241208','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_31248-8','31248-8','http://loinc.org','Barmah forest virus IgM Ab [Presence] in Serum','312488','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_31615-8','31615-8','http://loinc.org','Ross River virus IgM Ab [Presence] in Serum','316158','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_40584-5','40584-5','http://loinc.org','Arbovirus IgM Ab [Presence] in Serum','405845','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_71781-9','71781-9','http://loinc.org','Rift valley fever virus IgM Ab [Presence] in Serum by Immunoassay','717819','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_74033-2','74033-2','http://loinc.org','Arbovirus IgM Ab [Presence] in Serum by Immunofluorescence','740332','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_77950-4','77950-4','http://loinc.org','Toscana virus IgM Ab [Presence] in Serum by Immunoassay','779504','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_78019-7','78019-7','http://loinc.org','Toscana virus IgM Ab [Presence] in Cerebral spinal fluid by Immunoassay','780197','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_81113-3','81113-3','http://loinc.org','Murray Valley encephalitis virus IgM Ab [Presence] in Serum','811133','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_95679-7','95679-7','http://loinc.org','Barmah forest virus IgM Ab [Presence] in Specimen by Immunoassay','956797','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_95681-3','95681-3','http://loinc.org','Tahyna virus IgM Ab [Presence] in Specimen by Immunoassay','956813','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_95683-9','95683-9','http://loinc.org','Highlands J virus IgM Ab [Presence] in Specimen by Immunoassay','956839','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_95684-7','95684-7','http://loinc.org','Murray Valley encephalitis virus IgM Ab [Presence] in Specimen by Immunoassay','956847','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_95685-4','95685-4','http://loinc.org','Ross River virus IgM Ab [Presence] in Specimen by Immunoassay','956854','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_95686-2','95686-2','http://loinc.org','Sindbis virus IgM Ab [Presence] in Specimen by Immunoassay','956862','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_95689-6','95689-6','http://loinc.org','Mayaro virus IgM Ab [Presence] in Specimen by Immunoassay','956896','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_95691-2','95691-2','http://loinc.org','Venezuelan equine encephalitis virus IgM Ab [Presence] in Specimen by Immunoassay','956912','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_96524-4','96524-4','http://loinc.org','Rocio virus IgM Ab [Presence] in Specimen by Immunoassay','965244','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_96527-7','96527-7','http://loinc.org','Bourbon virus IgM Ab [Presence] in Specimen by Immunoassay','965277','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_96528-5','96528-5','http://loinc.org','Toscana virus IgM Ab [Presence] in Specimen by Immunoassay','965285','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_96531-9','96531-9','http://loinc.org','Oropouche virus IgM Ab [Presence] in Specimen by Immunoassay','965319','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_96532-7','96532-7','http://loinc.org','Rift valley fever virus IgM Ab [Presence] in Specimen by Immunoassay','965327','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_96534-3','96534-3','http://loinc.org','Heartland banyangvirus IgM Ab [Presence] in Specimen by Immunoassay','965343','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_96535-0','96535-0','http://loinc.org','Tick-borne encephalitis virus IgM Ab [Presence] in Specimen by Immunoassay','965350','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_97644-9','97644-9','http://loinc.org','Barmah forest virus IgM Ab [Presence] in Cerebral spinal fluid by Immunoassay','976449','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_81117-4','81117-4','http://loinc.org','Ross River virus RNA [Presence] in Serum by NAA with probe detection','811174','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_86591-5','86591-5','http://loinc.org','Toscana virus RNA [Presence] in Serum by NAA with probe detection','865915','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.579_88598-8','88598-8','http://loinc.org','Toscana virus RNA [Presence] in Cerebral spinal fluid by NAA with probe detection','885988','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2189_14840-3','14840-3','http://loinc.org','Trypanosoma sp identified in Cerebral spinal fluid by Wet preparation','148403','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.338_15469-0','15469-0','http://loinc.org','Equine influenza virus A1 Ab [Titer] in Serum by Hemagglutination inhibition','154690','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.338_15471-6','15471-6','http://loinc.org','Equine influenza virus A2 Ab [Titer] in Serum by Hemagglutination inhibition','154716','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.338_20862-9','20862-9','http://loinc.org','Influenza virus A Ab [Presence] in Serum by Hemagglutination inhibition','208629','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.338_22824-7','22824-7','http://loinc.org','Influenza virus A Ab [Titer] in Serum by Hemagglutination inhibition','228247','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.338_23438-5','23438-5','http://loinc.org','Swine influenza virus Ab [Presence] in Serum by Hemagglutination inhibition','234385','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.338_23768-5','23768-5','http://loinc.org','Porcine influenza virus A Ab [Titer] in Serum by Hemagglutination inhibition','237685','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.338_39296-9','39296-9','http://loinc.org','Influenza virus A H1 Ab [Titer] in Serum by Hemagglutination inhibition','392969','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.338_39297-7','39297-7','http://loinc.org','Influenza virus A H10 Ab [Titer] in Serum by Hemagglutination inhibition','392977','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.338_39298-5','39298-5','http://loinc.org','Influenza virus A H11 Ab [Titer] in Serum by Hemagglutination inhibition','392985','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.338_39299-3','39299-3','http://loinc.org','Influenza virus A H12 Ab [Titer] in Serum by Hemagglutination inhibition','392993','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.338_39300-9','39300-9','http://loinc.org','Influenza virus A H13 Ab [Titer] in Serum by Hemagglutination inhibition','393009','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.338_39301-7','39301-7','http://loinc.org','Influenza virus A H14 Ab [Titer] in Serum by Hemagglutination inhibition','393017','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.338_39302-5','39302-5','http://loinc.org','Influenza virus A H15 Ab [Titer] in Serum by Hemagglutination inhibition','393025','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.338_39303-3','39303-3','http://loinc.org','Influenza virus A H2 Ab [Titer] in Serum by Hemagglutination inhibition','393033','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.338_39304-1','39304-1','http://loinc.org','Influenza virus A H3 Ab [Titer] in Serum by Hemagglutination inhibition','393041','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.338_39305-8','39305-8','http://loinc.org','Influenza virus A H4 Ab [Titer] in Serum by Hemagglutination inhibition','393058','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.338_39306-6','39306-6','http://loinc.org','Influenza virus A H5 Ab [Titer] in Serum by Hemagglutination inhibition','393066','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.338_39307-4','39307-4','http://loinc.org','Influenza virus A H6 Ab [Titer] in Serum by Hemagglutination inhibition','393074','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.338_39308-2','39308-2','http://loinc.org','Influenza virus A H7 Ab [Titer] in Serum by Hemagglutination inhibition','393082','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.338_39309-0','39309-0','http://loinc.org','Influenza virus A H8 Ab [Titer] in Serum by Hemagglutination inhibition','393090','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.338_39310-8','39310-8','http://loinc.org','Influenza virus A H9 Ab [Titer] in Serum by Hemagglutination inhibition','393108','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.338_39311-6','39311-6','http://loinc.org','Influenza virus A N1 neutralizing antibody [Presence] in Serum by Neutralization test','393116','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.338_39312-4','39312-4','http://loinc.org','Influenza virus A N2 neutralizing antibody [Presence] in Serum by Neutralization test','393124','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.338_39313-2','39313-2','http://loinc.org','Influenza virus A N3 neutralizing antibody [Presence] in Serum by Neutralization test','393132','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.338_39314-0','39314-0','http://loinc.org','Influenza virus A N4 neutralizing antibody [Presence] in Serum by Neutralization test','393140','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.338_39315-7','39315-7','http://loinc.org','Influenza virus A N5 neutralizing antibody [Presence] in Serum by Neutralization test','393157','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.338_39316-5','39316-5','http://loinc.org','Influenza virus A N6 neutralizing antibody [Presence] in Serum by Neutralization test','393165','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.338_39317-3','39317-3','http://loinc.org','Influenza virus A N7 neutralizing antibody [Presence] in Serum by Neutralization test','393173','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.338_39318-1','39318-1','http://loinc.org','Influenza virus A N8 neutralizing antibody [Presence] in Serum by Neutralization test','393181','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.338_39319-9','39319-9','http://loinc.org','Influenza virus A N9 neutralizing antibody [Presence] in Serum by Neutralization test','393199','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.338_39537-6','39537-6','http://loinc.org','Influenza virus B Ab [Units/volume] in Serum by Hemagglutination inhibition','395376','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.338_49519-2','49519-2','http://loinc.org','Influenza virus A H16 Ab [Titer] in Serum by Hemagglutination inhibition','495192','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.338_50696-4','50696-4','http://loinc.org','Influenza virus A neutralizing antibody [Identifier] in Serum by Neutralization test','506964','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.338_50709-5','50709-5','http://loinc.org','Influenza virus B Ab [Titer] in Serum by Hemagglutination inhibition','507095','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.338_6634-0','6634-0','http://loinc.org','Influenza virus A Hong Kong Ab [Units/volume] in Serum by Hemagglutination inhibition','66340','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.338_6635-7','6635-7','http://loinc.org','Influenza virus A England Ab [Units/volume] in Serum by Hemagglutination inhibition','66357','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.338_6636-5','6636-5','http://loinc.org','Influenza virus A Port Chalmers Ab [Units/volume] in Serum by Hemagglutination inhibition','66365','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.338_6637-3','6637-3','http://loinc.org','Influenza virus A Victoria Ab [Units/volume] in Serum by Hemagglutination inhibition','66373','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.338_6638-1','6638-1','http://loinc.org','Influenza virus A Texas Ab [Units/volume] in Serum by Hemagglutination inhibition','66381','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.338_6639-9','6639-9','http://loinc.org','Influenza virus A Bangkok Ab [Units/volume] in Serum by Hemagglutination inhibition','66399','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.338_6640-7','6640-7','http://loinc.org','Influenza virus A Phillipines Ab [Units/volume] in Serum by Hemagglutination inhibition','66407','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.338_6641-5','6641-5','http://loinc.org','Influenza virus A Mississippi Ab [Units/volume] in Serum by Hemagglutination inhibition','66415','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.338_6642-3','6642-3','http://loinc.org','Influenza virus A Leningrad Ab [Units/volume] in Serum by Hemagglutination inhibition','66423','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2187_82181-9','82181-9','http://loinc.org','Cryptococcus gattii+neoformans DNA [Presence] in Cerebral spinal fluid by NAA with non-probe detection','821819','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2187_90337-7','90337-7','http://loinc.org','Cryptococcus sp rRNA gene [Presence] in Cerebral spinal fluid by NAA with probe detection','903377','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2187_99088-7','99088-7','http://loinc.org','Cryptococcus gattii+neoformans DNA [Presence] in Cerebral spinal fluid by NAA with probe detection','990887','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2187_29896-8','29896-8','http://loinc.org','Cryptococcus sp Ag [Presence] in Cerebral spinal fluid by Immunoassay','298968','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2187_31788-3','31788-3','http://loinc.org','Cryptococcus sp Ag [Presence] in Cerebral spinal fluid','317883','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2187_40776-7','40776-7','http://loinc.org','Histoplasma capsulatum Ag [Presence] in Cerebral spinal fluid','407767','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2187_46964-3','46964-3','http://loinc.org','Cryptococcus sp Ag [Presence] in Cerebral spinal fluid by Latex agglutination','469643','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2187_70911-3','70911-3','http://loinc.org','Cryptococcus sp Ag [Presence] in Cerebral spinal fluid by Rapid immunoassay','709113','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2193_14523-5','14523-5','http://loinc.org','Rubella virus Ag [Presence] in Cerebral spinal fluid by Immunofluorescence','145235','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2193_31955-8','31955-8','http://loinc.org','Rubella virus Ag [Presence] in Cerebral spinal fluid','319558','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2193_44514-8','44514-8','http://loinc.org','Herpes simplex virus Ag [Presence] in Cerebral spinal fluid by Immunoassay','445148','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2193_47229-0','47229-0','http://loinc.org','Herpes simplex virus Ag [Presence] in Cerebral spinal fluid','472290','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2193_87959-3','87959-3','http://loinc.org','Adenovirus Ag [Presence] in Cerebral spinal fluid by Immunoassay','879593','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2193_88211-8','88211-8','http://loinc.org','Rabies virus Ag [Presence] in Cerebral spinal fluid by Immunoassay','882118','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2193_88680-4','88680-4','http://loinc.org','Herpes simplex virus Ag [Presence] in Cerebral spinal fluid by Immunofluorescence','886804','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2193_89586-2','89586-2','http://loinc.org','Herpes simplex virus 1 Ag [Presence] in Cerebral spinal fluid by Immunofluorescence','895862','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2193_89588-8','89588-8','http://loinc.org','Herpes simplex virus 2 Ag [Presence] in Cerebral spinal fluid by Immunofluorescence','895888','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2193_14534-2','14534-2','http://loinc.org','Measles virus Ag [Presence] in Cerebral spinal fluid by Immunofluorescence','145342','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2193_14545-8','14545-8','http://loinc.org','Mumps virus Ag [Presence] in Cerebral spinal fluid by Immunofluorescence','145458','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2193_16977-1','16977-1','http://loinc.org','HIV 1 Ag [Presence] in Cerebral spinal fluid','169771','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2193_31875-8','31875-8','http://loinc.org','Measles virus Ag [Presence] in Cerebral spinal fluid','318758','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2193_31888-1','31888-1','http://loinc.org','Mumps virus Ag [Presence] in Cerebral spinal fluid','318881','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2193_49718-0','49718-0','http://loinc.org','HIV 1 p24 Ag [Presence] in Cerebral spinal fluid','497180','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2193_89583-9','89583-9','http://loinc.org','Cytomegalovirus Ag [Presence] in Cerebral spinal fluid by Immunofluorescence','895839','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2193_89589-6','89589-6','http://loinc.org','Varicella zoster virus Ag [Presence] in Cerebral spinal fluid by Immunofluorescence','895896','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.560_103721-7','103721-7','http://loinc.org','West Nile virus RNA [Presence] in Blood by NAA with non-probe detection','1037217','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.560_32361-8','32361-8','http://loinc.org','West Nile virus RNA [Presence] in Serum by NAA with probe detection','323618','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.560_32370-9','32370-9','http://loinc.org','West Nile virus RNA [Presence] in Tissue by NAA with probe detection','323709','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.560_34460-6','34460-6','http://loinc.org','West Nile virus RNA [Presence] in Blood by NAA with probe detection','344606','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.560_97185-3','97185-3','http://loinc.org','West Nile virus RNA [Presence] in Urine by NAA with probe detection','971853','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.560_34892-0','34892-0','http://loinc.org','West Nile virus RNA [Presence] in Specimen by NAA with probe detection','348920','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.560_37985-9','37985-9','http://loinc.org','West Nile virus RNA [Presence] in Specimen by Probe','379859','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.560_81650-4','81650-4','http://loinc.org','West Nile virus Kunjin strain RNA [Presence] in Specimen by NAA with probe detection','816504','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.560_87395-0','87395-0','http://loinc.org','West Nile virus RNA [Cycle Threshold #] in Specimen by NAA with probe detection','873950','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.560_34461-4','34461-4','http://loinc.org','West Nile virus RNA [Presence] in Cerebral spinal fluid by NAA with probe detection','344614','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2192_101815-9','101815-9','http://loinc.org','Cytomegalovirus DNA [Units/volume] (viral load) in Cerebral spinal fluid by NAA with probe detection','1018159','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2192_101817-5','101817-5','http://loinc.org','Epstein Barr virus DNA [Units/volume] (viral load) in Cerebral spinal fluid by NAA with probe detection','1018175','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2192_23858-4','23858-4','http://loinc.org','Epstein Barr virus DNA [Presence] in Cerebral spinal fluid by NAA with probe detection','238584','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2192_34593-4','34593-4','http://loinc.org','Epstein Barr virus DNA [#/volume] (viral load) in Cerebral spinal fluid by NAA with probe detection','345934','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2192_38375-2','38375-2','http://loinc.org','Adenovirus DNA [Presence] in Cerebral spinal fluid by NAA with probe detection','383752','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2192_49338-7','49338-7','http://loinc.org','Adenovirus DNA [#/volume] (viral load) in Cerebral spinal fluid by NAA with probe detection','493387','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2192_66730-3','66730-3','http://loinc.org','Adenovirus DNA [Log #/volume] (viral load) in Cerebral spinal fluid by NAA with probe detection','667303','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2192_100692-3','100692-3','http://loinc.org','Varicella zoster virus DNA [Log #/volume] (viral load) in Cerebral spinal fluid by NAA with probe detection','1006923','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2192_21598-8','21598-8','http://loinc.org','Varicella zoster virus DNA [Presence] in Cerebral spinal fluid by NAA with probe detection','215988','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2192_30326-3','30326-3','http://loinc.org','Cytomegalovirus DNA [Presence] in Cerebral spinal fluid by NAA with probe detection','303263','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2192_39003-9','39003-9','http://loinc.org','Cytomegalovirus DNA [#/volume] (viral load) in Cerebral spinal fluid by NAA with probe detection','390039','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2192_42917-5','42917-5','http://loinc.org','HIV 1 RNA [Presence] in Cerebral spinal fluid by NAA with probe detection','429175','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2192_47002-1','47002-1','http://loinc.org','Varicella zoster virus DNA [#/volume] (viral load) in Cerebral spinal fluid by NAA with probe detection','470021','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2192_82188-4','82188-4','http://loinc.org','Varicella zoster virus DNA [Presence] in Cerebral spinal fluid by NAA with non-probe detection','821884','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2192_82189-2','82189-2','http://loinc.org','Cytomegalovirus DNA [Presence] in Cerebral spinal fluid by NAA with non-probe detection','821892','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2192_86588-1','86588-1','http://loinc.org','Rabies virus RNA [Presence] in Cerebral spinal fluid by NAA with probe detection','865881','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2192_87962-7','87962-7','http://loinc.org','HIV 1 subtype identified in Cerebral spinal fluid by NAA with probe detection','879627','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2192_87963-5','87963-5','http://loinc.org','HIV 1 RNA tropism [Identifier] in Cerebral spinal fluid','879635','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2192_88212-6','88212-6','http://loinc.org','HIV 1 proviral DNA [Presence] in Cerebral spinal fluid by NAA with probe detection','882126','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2192_88542-6','88542-6','http://loinc.org','HIV 1 RNA integrase gene mutations detected [Identifier] in Cerebral spinal fluid by Sequencing','885426','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2192_88543-4','88543-4','http://loinc.org','HIV 1 RNA protease gene mutations detected [Identifier] in Cerebral spinal fluid by Sequencing','885434','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2192_88544-2','88544-2','http://loinc.org','HIV 1 RNA reverse transcriptase gene mutations detected [Identifier] in Cerebral spinal fluid by Sequencing','885442','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2192_16979-7','16979-7','http://loinc.org','HIV 1 p24 Ag [Units/volume] in Cerebral spinal fluid','169797','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2192_41497-9','41497-9','http://loinc.org','HIV 1 RNA [Log #/volume] (viral load) in Cerebral spinal fluid by NAA with probe detection','414979','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2192_41498-7','41498-7','http://loinc.org','HIV 1 RNA [#/volume] (viral load) in Cerebral spinal fluid by NAA with probe detection','414987','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2192_86547-7','86547-7','http://loinc.org','HIV 2 RNA [#/volume] (viral load) in Cerebral spinal fluid by NAA with probe detection','865477','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2192_86549-3','86549-3','http://loinc.org','HIV 2 RNA [Log #/volume] (viral load) in Cerebral spinal fluid by NAA with probe detection','865493','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2192_94426-4','94426-4','http://loinc.org','Dengue virus 1+2+3+4 3'' UTR RNA [Presence] in Cerebral spinal fluid by NAA with probe detection','944264','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2192_27947-1','27947-1','http://loinc.org','Coxsackievirus A7 RNA [Units/volume] (viral load) in Cerebral spinal fluid by Probe','279471','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2192_27954-7','27954-7','http://loinc.org','Coxsackievirus B6 RNA [Units/volume] (viral load) in Cerebral spinal fluid by Probe','279547','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2192_27960-4','27960-4','http://loinc.org','Coxsackievirus B5 RNA [Units/volume] (viral load) in Cerebral spinal fluid by Probe','279604','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2192_27969-5','27969-5','http://loinc.org','Coxsackievirus A9 RNA [Units/volume] (viral load) in Cerebral spinal fluid by Probe','279695','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2192_101818-3','101818-3','http://loinc.org','Herpes virus 6 DNA [Units/volume] in Cerebral spinal fluid by NAA with probe detection','1018183','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2192_33942-4','33942-4','http://loinc.org','Herpes virus 6 DNA [Presence] in Cerebral spinal fluid by NAA with probe detection','339424','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2192_49388-2','49388-2','http://loinc.org','Herpes virus 6 DNA [#/volume] (viral load) in Cerebral spinal fluid by NAA with probe detection','493882','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2192_49400-5','49400-5','http://loinc.org','Herpes virus 7 DNA [#/volume] (viral load) in Cerebral spinal fluid by NAA with probe detection','494005','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2192_49407-0','49407-0','http://loinc.org','Herpes virus 8 DNA [#/volume] (viral load) in Cerebral spinal fluid by NAA with probe detection','494070','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2192_62481-7','62481-7','http://loinc.org','Herpes virus 6A DNA [Presence] in Cerebral spinal fluid by NAA with probe detection','624817','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2192_62482-5','62482-5','http://loinc.org','Herpes virus 6B DNA [Presence] in Cerebral spinal fluid by NAA with probe detection','624825','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2192_82192-6','82192-6','http://loinc.org','Herpes virus 6 DNA [Presence] in Cerebral spinal fluid by NAA with non-probe detection','821926','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2192_97752-0','97752-0','http://loinc.org','Herpes virus 6 DNA [Log #/volume] (viral load) in Cerebral spinal fluid by NAA with probe detection','977520','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2192_34461-4','34461-4','http://loinc.org','West Nile virus RNA [Presence] in Cerebral spinal fluid by NAA with probe detection','344614','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2192_80826-1','80826-1','http://loinc.org','Zika virus envelope E gene [Presence] in Cerebral spinal fluid by NAA with probe detection','808261','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2192_86594-9','86594-9','http://loinc.org','Zika virus RNA [Presence] in Cerebral spinal fluid by NAA with probe detection','865949','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2192_26690-8','26690-8','http://loinc.org','Western equine encephalitis virus RNA [Presence] in Cerebral spinal fluid by Probe','266908','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2192_26825-0','26825-0','http://loinc.org','Eastern equine encephalitis virus RNA [Presence] in Cerebral spinal fluid by Probe','268250','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2192_27950-5','27950-5','http://loinc.org','Saint Louis encephalitis virus RNA [Presence] in Cerebral spinal fluid by Probe','279505','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2192_34450-7','34450-7','http://loinc.org','Eastern equine encephalitis virus RNA [Presence] in Cerebral spinal fluid by NAA with probe detection','344507','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2192_34457-2','34457-2','http://loinc.org','Powassan virus RNA [Presence] in Cerebral spinal fluid by NAA with probe detection','344572','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2192_34459-8','34459-8','http://loinc.org','Saint Louis encephalitis virus RNA [Presence] in Cerebral spinal fluid by NAA with probe detection','344598','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2192_77958-7','77958-7','http://loinc.org','Dengue virus 1 and 2 and 3 and 4 RNA [Identifier] in Cerebral spinal fluid by NAA with probe detection','779587','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2192_7968-1','7968-1','http://loinc.org','Mumps virus RNA [Presence] in Cerebral spinal fluid by NAA with probe detection','79681','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2192_81151-3','81151-3','http://loinc.org','Dengue virus 1+2+3+4 5'' UTR RNA [Presence] in Cerebral spinal fluid by NAA with probe detection','811513','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2192_81153-9','81153-9','http://loinc.org','Chikungunya virus non-structural protein 1 (nsP1) RNA [Presence] in Cerebral spinal fluid by NAA with probe detection','811539','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2192_86571-7','86571-7','http://loinc.org','Influenza virus B RNA [Presence] in Cerebral spinal fluid by NAA with probe detection','865717','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2192_86575-8','86575-8','http://loinc.org','Measles virus RNA [Presence] in Cerebral spinal fluid by NAA with probe detection','865758','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2192_27952-1','27952-1','http://loinc.org','Enterovirus RNA [Presence] in Cerebral spinal fluid by Probe','279521','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2192_29558-4','29558-4','http://loinc.org','Enterovirus RNA [Presence] in Cerebral spinal fluid by NAA with probe detection','295584','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2192_34453-1','34453-1','http://loinc.org','Jamestown canyon virus RNA [Presence] in Cerebral spinal fluid by NAA with probe detection','344531','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2192_34455-6','34455-6','http://loinc.org','La Crosse virus RNA [Presence] in Cerebral spinal fluid by NAA with probe detection','344556','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2192_62463-5','62463-5','http://loinc.org','Enterovirus RNA [#/volume] (viral load) in Cerebral spinal fluid by NAA with probe detection','624635','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2192_82194-2','82194-2','http://loinc.org','Enterovirus RNA [Presence] in Cerebral spinal fluid by NAA with non-probe detection','821942','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2192_16952-4','16952-4','http://loinc.org','Herpes simplex virus 1 DNA [Presence] in Cerebral spinal fluid by NAA with probe detection','169524','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2192_16960-7','16960-7','http://loinc.org','Herpes simplex virus 2 DNA [Presence] in Cerebral spinal fluid by NAA with probe detection','169607','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2192_32141-4','32141-4','http://loinc.org','Herpes simplex virus 1+2 DNA [Presence] in Cerebral spinal fluid by NAA with probe detection','321414','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2192_34462-2','34462-2','http://loinc.org','California serogroup RNA [Presence] in Cerebral spinal fluid by NAA with probe detection','344622','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2192_34655-1','34655-1','http://loinc.org','Herpes simplex virus 1+2 DNA [#/volume] (viral load) in Cerebral spinal fluid by NAA with probe detection','346551','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2192_49987-1','49987-1','http://loinc.org','Herpes simplex virus 1 DNA [#/volume] (viral load) in Cerebral spinal fluid by NAA with probe detection','499871','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2192_49990-5','49990-5','http://loinc.org','Herpes simplex virus 2 DNA [#/volume] (viral load) in Cerebral spinal fluid by NAA with probe detection','499905','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2192_5013-8','5013-8','http://loinc.org','Herpes simplex virus DNA [Presence] in Cerebral spinal fluid by NAA with probe detection','50138','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2192_82190-0','82190-0','http://loinc.org','Herpes simplex virus 1 DNA [Presence] in Cerebral spinal fluid by NAA with non-probe detection','821900','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2192_82191-8','82191-8','http://loinc.org','Herpes simplex virus 2 DNA [Presence] in Cerebral spinal fluid by NAA with non-probe detection','821918','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2192_86568-3','86568-3','http://loinc.org','Influenza virus A RNA [Presence] in Cerebral spinal fluid by NAA with probe detection','865683','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2192_88207-6','88207-6','http://loinc.org','Lymphocytic choriomeningitis virus RNA [Presence] in Cerebral spinal fluid by NAA with probe detection','882076','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.440_20752-2','20752-2','http://loinc.org','Chlamydophila psittaci [Presence] in Specimen by Organism specific culture','207522','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.440_59065-3','59065-3','http://loinc.org','Chlamydophila psittaci [Presence] in Bronchial brush by Organism specific culture','590653','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.561_32371-7','32371-7','http://loinc.org','West Nile virus Ag [Presence] in Tissue by Immune stain','323717','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.561_41643-8','41643-8','http://loinc.org','West Nile virus Ag [Presence] in Specimen by Immunofluorescence','416438','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.441_23001-1','23001-1','http://loinc.org','Chlamydophila psittaci DNA [Presence] in Specimen by NAA with probe detection','230011','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.441_24402-0','24402-0','http://loinc.org','Chlamydophila pneumoniae+Chlamydophila psittaci DNA [Presence] in Specimen by Probe with amplification','244020','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.441_33943-2','33943-2','http://loinc.org','Chlamydophila pneumoniae+Chlamydophila psittaci DNA [Presence] in Cerebral spinal fluid by NAA with probe detection','339432','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.441_35639-4','35639-4','http://loinc.org','Chlamydophila pneumoniae+Chlamydophila psittaci DNA [Presence] in Tissue by NAA with probe detection','356394','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.441_43216-1','43216-1','http://loinc.org','Chlamydophila pneumoniae+Chlamydophila psittaci DNA [Presence] in Throat by NAA with probe detection','432161','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.562_29536-0','29536-0','http://loinc.org','West Nile virus IgM Ab [Units/volume] in Serum','295360','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.562_29538-6','29538-6','http://loinc.org','West Nile virus IgM Ab [Units/volume] in Cerebral spinal fluid','295386','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.562_29567-5','29567-5','http://loinc.org','West Nile virus IgM Ab [Presence] in Serum by Immunoassay','295675','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.562_29569-1','29569-1','http://loinc.org','West Nile virus IgM Ab [Presence] in Cerebral spinal fluid by Immunoassay','295691','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.562_29778-8','29778-8','http://loinc.org','West Nile virus IgM Ab [Presence] in Specimen by Immunoassay','297788','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.562_29780-4','29780-4','http://loinc.org','West Nile virus IgM Ab [Presence] in Specimen','297804','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.562_31703-2','31703-2','http://loinc.org','West Nile virus IgM Ab [Presence] in Cerebral spinal fluid','317032','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.562_31704-0','31704-0','http://loinc.org','West Nile virus IgM Ab [Presence] in Serum','317040','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.562_33330-2','33330-2','http://loinc.org','West Nile virus IgM Ab [Titer] in Cerebral spinal fluid','333302','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.562_33331-0','33331-0','http://loinc.org','West Nile virus IgM Ab [Titer] in Serum','333310','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.562_38166-5','38166-5','http://loinc.org','West Nile virus IgM Ab [Units/volume] in Serum by Immunoassay','381665','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.562_39573-1','39573-1','http://loinc.org','West Nile virus IgM Ab [Units/volume] in Cerebral spinal fluid by Immunoassay','395731','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.562_41195-9','41195-9','http://loinc.org','West Nile virus IgM Ab [Titer] in Body fluid','411959','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.562_41642-0','41642-0','http://loinc.org','West Nile virus IgM Ab [Presence] in Specimen by Immunofluorescence','416420','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.562_43342-5','43342-5','http://loinc.org','West Nile virus IgM Ab [Titer] in Cerebral spinal fluid by Immunoassay','433425','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.562_43343-3','43343-3','http://loinc.org','West Nile virus IgM Ab [Titer] in Serum by Immunoassay','433433','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.562_62436-1','62436-1','http://loinc.org','West Nile virus IgM Ab [Presence] in Body fluid by Immunoassay','624361','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.562_81096-0','81096-0','http://loinc.org','West Nile virus Kunjin strain IgM Ab [Presence] in Serum','810960','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2190_41444-1','41444-1','http://loinc.org','Naegleria fowleri DNA [Presence] in Cerebral spinal fluid by NAA with probe detection','414441','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2190_100690-7','100690-7','http://loinc.org','Toxoplasma gondii DNA [Log #/volume] in Cerebral spinal fluid by NAA with probe detection','1006907','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2190_42626-2','42626-2','http://loinc.org','Toxoplasma gondii DNA [Presence] in Cerebral spinal fluid by NAA with probe detection','426262','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2190_62465-0','62465-0','http://loinc.org','Toxoplasma gondii DNA [#/volume] in Cerebral spinal fluid by NAA with probe detection','624650','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2190_88570-7','88570-7','http://loinc.org','Acanthamoeba sp DNA [Presence] in Cerebral spinal fluid by NAA with probe detection','885707','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.442_16588-6','16588-6','http://loinc.org','Chlamydophila psittaci IgM Ab [Units/volume] in Cerebral spinal fluid','165886','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.442_22181-2','22181-2','http://loinc.org','Chlamydophila psittaci IgM Ab [Titer] in Serum','221812','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.442_27404-3','27404-3','http://loinc.org','Chlamydophila psittaci IgM Ab [Titer] in Cerebral spinal fluid by Immunofluorescence','274043','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.442_43057-9','43057-9','http://loinc.org','Chlamydophila psittaci IgM Ab [Titer] in Cerebral spinal fluid','430579','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.442_44977-7','44977-7','http://loinc.org','Chlamydophila psittaci IgM Ab [Presence] in Serum','449777','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.442_5081-5','5081-5','http://loinc.org','Chlamydophila psittaci IgM Ab [Units/volume] in Serum','50815','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.442_51809-2','51809-2','http://loinc.org','Chlamydophila psittaci IgM Ab [Units/volume] in Serum by Immunoassay','518092','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.442_6917-9','6917-9','http://loinc.org','Chlamydophila psittaci IgM Ab [Titer] in Serum by Immunofluorescence','69179','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.563_29535-2','29535-2','http://loinc.org','West Nile virus IgG Ab [Units/volume] in Serum','295352','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.563_29537-8','29537-8','http://loinc.org','West Nile virus IgG Ab [Units/volume] in Cerebral spinal fluid','295378','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.563_29568-3','29568-3','http://loinc.org','West Nile virus neutralizing antibody [Titer] in Serum by Neutralization test','295683','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.563_29570-9','29570-9','http://loinc.org','West Nile virus neutralizing antibody [Titer] in Cerebral spinal fluid by Neutralization test','295709','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.563_29779-6','29779-6','http://loinc.org','West Nile virus neutralizing antibody [Titer] in Specimen by Neutralization test','297796','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.563_29781-2','29781-2','http://loinc.org','West Nile virus Ab [Titer] in Specimen','297812','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.563_31700-8','31700-8','http://loinc.org','West Nile virus Ab [Units/volume] in Specimen','317008','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.563_33328-6','33328-6','http://loinc.org','West Nile virus IgG Ab [Titer] in Cerebral spinal fluid','333286','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.563_33329-4','33329-4','http://loinc.org','West Nile virus IgG Ab [Titer] in Serum','333294','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.563_38997-3','38997-3','http://loinc.org','West Nile virus IgG Ab [Units/volume] in Serum by Immunoassay','389973','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.563_39555-8','39555-8','http://loinc.org','West Nile virus Ab [Units/volume] in Serum','395558','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.563_39572-3','39572-3','http://loinc.org','West Nile virus IgG Ab [Units/volume] in Cerebral spinal fluid by Immunoassay','395723','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.563_41194-2','41194-2','http://loinc.org','West Nile virus Ab [Units/volume] in Serum by Immunoassay','411942','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.563_41196-7','41196-7','http://loinc.org','West Nile virus IgG Ab [Titer] in Body fluid','411967','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.563_41206-4','41206-4','http://loinc.org','West Nile virus Ab [Units/volume] in Cerebral spinal fluid','412064','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.563_41224-7','41224-7','http://loinc.org','West Nile virus Ab [Titer] in Cerebral spinal fluid','412247','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.563_41225-4','41225-4','http://loinc.org','West Nile virus Ab [Titer] in Serum','412254','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.563_55380-0','55380-0','http://loinc.org','West Nile virus Ab [Titer] in Serum by Hemagglutination inhibition','553800','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.443_16587-8','16587-8','http://loinc.org','Chlamydophila psittaci IgG Ab [Titer] in Cerebral spinal fluid by Immunofluorescence','165878','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.443_22179-6','22179-6','http://loinc.org','Chlamydophila psittaci IgG Ab [Titer] in Cerebral spinal fluid','221796','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.443_22180-4','22180-4','http://loinc.org','Chlamydophila psittaci IgG Ab [Titer] in Serum','221804','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.443_31307-2','31307-2','http://loinc.org','Chlamydophila psittaci IgG Ab [Units/volume] in Cerebral spinal fluid','313072','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.443_43868-9','43868-9','http://loinc.org','Chlamydophila psittaci IgG Ab [Presence] in Serum','438689','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.443_5080-7','5080-7','http://loinc.org','Chlamydophila psittaci IgG Ab [Units/volume] in Serum','50807','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.443_51808-4','51808-4','http://loinc.org','Chlamydophila psittaci IgG Ab [Units/volume] in Serum by Immunoassay','518084','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.443_6916-1','6916-1','http://loinc.org','Chlamydophila psittaci IgG Ab [Titer] in Serum by Immunofluorescence','69161','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.564_29566-7','29566-7','http://loinc.org','West Nile virus IgG Ab [Presence] in Serum by Immunoassay','295667','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.564_30178-8','30178-8','http://loinc.org','West Nile virus IgG Ab [Presence] in Specimen by Immunoassay','301788','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.564_31701-6','31701-6','http://loinc.org','West Nile virus IgG Ab [Presence] in Serum','317016','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.564_31702-4','31702-4','http://loinc.org','West Nile virus IgG Ab [Presence] in Specimen','317024','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.564_33468-0','33468-0','http://loinc.org','West Nile virus Ab [Presence] in Specimen','334680','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.564_36896-9','36896-9','http://loinc.org','West Nile virus polyvalent E Ab [Presence] in Specimen by Immunoassay','368969','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.564_36897-7','36897-7','http://loinc.org','West Nile virus Ab [Presence] in Specimen by Immunoassay','368977','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.564_36898-5','36898-5','http://loinc.org','West Nile virus NS5 Ab [Presence] in Specimen by Immunoassay','368985','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.564_36900-9','36900-9','http://loinc.org','West Nile virus polyvalent E Ab [Presence] in Specimen','369009','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.564_36901-7','36901-7','http://loinc.org','West Nile virus NS5 Ab [Presence] in Specimen','369017','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.564_39558-2','39558-2','http://loinc.org','West Nile virus Ab [Presence] in Cerebral spinal fluid','395582','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.564_41211-4','41211-4','http://loinc.org','West Nile virus IgG+IgM Ab [Presence] in Serum','412114','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.564_41232-0','41232-0','http://loinc.org','West Nile virus Ab [Presence] in Serum','412320','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.564_41236-1','41236-1','http://loinc.org','West Nile virus IgG Ab [Presence] in Cerebral spinal fluid','412361','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.564_60028-8','60028-8','http://loinc.org','West Nile virus IgG Ab avidity [Presence] in Serum by Immunoassay','600288','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.564_60029-6','60029-6','http://loinc.org','West Nile virus IgG Ab avidity [Presence] in Serum by Immunofluorescence','600296','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.564_60030-4','60030-4','http://loinc.org','West Nile virus IgG Ab [Presence] in Serum by Immunofluorescence','600304','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.564_75404-4','75404-4','http://loinc.org','West Nile virus Ab [Presence] in Serum by Hemagglutination inhibition','754044','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.564_77953-8','77953-8','http://loinc.org','West Nile virus IgG Ab [Presence] in Cerebral spinal fluid by Immunoassay','779538','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.564_81097-8','81097-8','http://loinc.org','West Nile virus Kunjin strain Ab [Presence] in Serum','810978','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.564_94289-6','94289-6','http://loinc.org','West Nile virus neutralizing antibody [Presence] in Specimen by Neutralization test','942896','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.445_17057-1','17057-1','http://loinc.org','Legionella pneumophila Ag [Presence] in Specimen','170571','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.445_17058-9','17058-9','http://loinc.org','Legionella pneumophila Ag [Presence] in Urine by Latex agglutination','170589','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.445_17059-7','17059-7','http://loinc.org','Legionella pneumophila Ag [Presence] in Urine by Immunofluorescence','170597','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.445_26621-3','26621-3','http://loinc.org','Legionella sp Ag [Presence] in Specimen','266213','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.445_31868-3','31868-3','http://loinc.org','Legionella pneumophila 1 Ag [Presence] in Urine','318683','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.445_31869-1','31869-1','http://loinc.org','Legionella pneumophila Ag [Presence] in Sputum','318691','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.445_31870-9','31870-9','http://loinc.org','Legionella pneumophila Ag [Presence] in Urine','318709','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.445_32781-7','32781-7','http://loinc.org','Legionella sp Ag [Presence] in Urine','327817','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.445_38460-2','38460-2','http://loinc.org','Legionella sp Ag [Presence] in Bronchial specimen by Immunofluorescence','384602','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.445_38461-0','38461-0','http://loinc.org','Legionella sp Ag [Presence] in Pleural fluid by Immunofluorescence','384610','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.445_38462-8','38462-8','http://loinc.org','Legionella sp Ag [Presence] in Sputum by Immunofluorescence','384628','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.445_38463-6','38463-6','http://loinc.org','Legionella sp Ag [Presence] in Urine by Immunofluorescence','384636','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.445_39541-8','39541-8','http://loinc.org','Legionella sp Ag [Presence] in Specimen by Immunofluorescence','395418','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.445_41499-5','41499-5','http://loinc.org','Legionella pneumophila 1 Ag [Presence] in Urine by Immunoassay','414995','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.445_588-4','588-4','http://loinc.org','Legionella pneumophila Ag [Presence] in Specimen by Immunofluorescence','5884','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.445_6445-1','6445-1','http://loinc.org','Legionella pneumophila Ag [Presence] in Sputum by Immunofluorescence','64451','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.445_6446-9','6446-9','http://loinc.org','Legionella pneumophila Ag [Presence] in Sputum by Latex agglutination','64469','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.445_6447-7','6447-7','http://loinc.org','Legionella pneumophila Ag [Presence] in Urine by Immunoassay','64477','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.445_6448-5','6448-5','http://loinc.org','Legionella pneumophila Ag [Presence] in Urine by Radioimmunoassay (RIA)','64485','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.445_6449-3','6449-3','http://loinc.org','Legionella pneumophila Ag [Presence] in Specimen by Latex agglutination','64493','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.445_77684-9','77684-9','http://loinc.org','Legionella pneumophila 1 Ag [Presence] in Urine by Rapid immunoassay','776849','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.445_89594-6','89594-6','http://loinc.org','Legionella pneumophila Ag [Presence] in Lower respiratory specimen by Immunofluorescence','895946','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.445_89595-3','89595-3','http://loinc.org','Legionella pneumophila Ag [Presence] in Tissue by Immunofluorescence','895953','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.445_9543-0','9543-0','http://loinc.org','Legionella pneumophila 1 Ag [Presence] in Urine by Radioimmunoassay (RIA)','95430','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.566_10659-1','10659-1','http://loinc.org','Cyclospora sp identified in Stool by Acid fast stain','106591','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.566_50313-6','50313-6','http://loinc.org','Cyclospora sp identified in Stool by Safranin stain','503136','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.566_10850-6','10850-6','http://loinc.org','Cyclospora cayetanensis [Presence] in Specimen','108506','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.325_33400-3','33400-3','http://loinc.org','Neisseria meningitidis serogroup B+Escherichia coli K1 Ag [Presence] in Serum by Latex agglutination','334003','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.325_19134-6','19134-6','http://loinc.org','Neisseria meningitidis serogroup B+Escherichia coli K1 Ag [Presence] in Cerebral spinal fluid by Latex agglutination','191346','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.325_17333-6','17333-6','http://loinc.org','Neisseria meningitidis serogroup w135 Ag [Presence] in Serum or Plasma by Latex agglutination','173336','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.325_33397-1','33397-1','http://loinc.org','Neisseria meningitidis serogroups A+C+w135+Y Ag [Presence] in Serum by Latex agglutination','333971','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.325_17324-5','17324-5','http://loinc.org','Neisseria meningitidis Ag [Units/volume] in Cerebral spinal fluid by Latex agglutination','173245','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.325_19133-8','19133-8','http://loinc.org','Neisseria meningitidis serogroups A+C+w135+Y Ag [Presence] in Cerebral spinal fluid by Latex agglutination','191338','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.325_59421-8','59421-8','http://loinc.org','Neisseria meningitidis serogroups A+B+C+w135+Y Ag [Presence] in Cerebral spinal fluid by Latex agglutination','594218','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.325_6494-9','6494-9','http://loinc.org','Neisseria meningitidis serogroup A Ag [Presence] in Cerebral spinal fluid by Latex agglutination','64949','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.325_6498-0','6498-0','http://loinc.org','Neisseria meningitidis serogroup B Ag [Presence] in Cerebral spinal fluid by Latex agglutination','64980','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.325_6500-3','6500-3','http://loinc.org','Neisseria meningitidis serogroup C Ag [Presence] in Cerebral spinal fluid by Latex agglutination','65003','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.325_6505-2','6505-2','http://loinc.org','Neisseria meningitidis serogroup Y Ag [Presence] in Cerebral spinal fluid by Latex agglutination','65052','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.325_6507-8','6507-8','http://loinc.org','Neisseria meningitidis serogroup w135 Ag [Presence] in Cerebral spinal fluid by Latex agglutination','65078','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.446_100748-3','100748-3','http://loinc.org','Legionella spp [Presence] in Specimen by NAA with probe detection','1007483','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.446_100749-1','100749-1','http://loinc.org','Legionella pneumophila serogroup 1 [Presence] in Specimen by NAA with probe detection','1007491','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.446_100750-9','100750-9','http://loinc.org','Legionella pneumophila non-serogroup 1 [Presence] in Specimen by NAA with probe detection','1007509','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.446_101219-4','101219-4','http://loinc.org','Legionella sp DNA [Presence] in Specimen by NAA with probe detection','1012194','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.446_21363-7','21363-7','http://loinc.org','Legionella pneumophila DNA [Presence] in Specimen by NAA with probe detection','213637','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.446_49616-6','49616-6','http://loinc.org','Legionella sp DNA [Identifier] in Specimen by NAA with probe detection','496166','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.446_5020-3','5020-3','http://loinc.org','Legionella sp rRNA [Presence] in Specimen by Probe','50203','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.446_67563-7','67563-7','http://loinc.org','Legionella micdadei DNA [Presence] in Specimen by NAA with probe detection','675637','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.446_81690-0','81690-0','http://loinc.org','Legionella longbeachae 1 and 2 DNA [Identifier] in Specimen by NAA with probe detection','816900','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.446_88577-2','88577-2','http://loinc.org','Legionella pneumophila DNA [Presence] in Tissue by NAA with probe detection','885772','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.446_88587-1','88587-1','http://loinc.org','Legionella sp DNA [Identifier] in Tissue by NAA with probe detection','885871','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.446_88588-9','88588-9','http://loinc.org','Legionella sp DNA [Identifier] in Lower respiratory specimen by NAA with probe detection','885889','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.446_88590-5','88590-5','http://loinc.org','Legionella pneumophila DNA [Presence] in Lower respiratory specimen by NAA with probe detection','885905','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.446_92145-2','92145-2','http://loinc.org','Legionella pneumophila DNA [Presence] in Respiratory system specimen by NAA with probe detection','921452','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.446_92969-5','92969-5','http://loinc.org','Legionella pneumophila DNA [Presence] in Lower respiratory specimen by NAA with non-probe detection','929695','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.567_11255-7','11255-7','http://loinc.org','Haemophilus ducreyi [Presence] in Specimen by Organism specific culture','112557','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.567_91789-8','91789-8','http://loinc.org','Haemophilus ducreyi [Presence] in Genital specimen by Organism specific culture','917898','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.447_38393-5','38393-5','http://loinc.org','Legionella sp identified in Pleural fluid by Organism specific culture','383935','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.447_38394-3','38394-3','http://loinc.org','Legionella sp identified in Urine by Organism specific culture','383943','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.447_589-2','589-2','http://loinc.org','Legionella sp identified in Bronchial specimen by Organism specific culture','5892','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.447_590-0','590-0','http://loinc.org','Legionella sp identified in Sputum by Organism specific culture','5900','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.447_593-4','593-4','http://loinc.org','Legionella sp identified in Specimen by Organism specific culture','5934','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.447_71377-6','71377-6','http://loinc.org','Legionella sp [Identifier] in Isolate by Agglutination','713776','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.447_73671-0','73671-0','http://loinc.org','Legionella pneumophila serogroup [Type] in Isolate by Agglutination','736710','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.447_87956-9','87956-9','http://loinc.org','Legionella sp identified in Tissue by Organism specific culture','879569','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.447_88585-5','88585-5','http://loinc.org','Legionella sp identified in Lower respiratory specimen by Organism specific culture','885855','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.449_16133-1','16133-1','http://loinc.org','Legionella pneumophila IgM Ab [Titer] in Serum by Immunofluorescence','161331','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.449_17054-8','17054-8','http://loinc.org','Legionella longbeachae 1 IgM Ab [Presence] in Serum','170548','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.449_17056-3','17056-3','http://loinc.org','Legionella longbeachae 2 IgM Ab [Presence] in Serum','170563','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.449_17061-3','17061-3','http://loinc.org','Legionella pneumophila 1 IgM Ab [Units/volume] in Serum','170613','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.449_17063-9','17063-9','http://loinc.org','Legionella pneumophila 2 IgM Ab [Units/volume] in Serum','170639','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.449_17065-4','17065-4','http://loinc.org','Legionella pneumophila 3 IgM Ab [Units/volume] in Serum','170654','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.449_17067-0','17067-0','http://loinc.org','Legionella pneumophila 4 IgM Ab [Units/volume] in Serum','170670','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.449_17069-6','17069-6','http://loinc.org','Legionella pneumophila 5 IgM Ab [Units/volume] in Serum','170696','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.449_18237-8','18237-8','http://loinc.org','Legionella pneumophila atypical IgM Ab [Presence] in Serum','182378','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.449_22382-6','22382-6','http://loinc.org','Legionella pneumophila 1 IgM Ab [Titer] in Serum','223826','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.449_22384-2','22384-2','http://loinc.org','Legionella pneumophila 2 IgM Ab [Titer] in Serum','223842','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.449_22386-7','22386-7','http://loinc.org','Legionella pneumophila 3 IgM Ab [Titer] in Serum','223867','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.449_22388-3','22388-3','http://loinc.org','Legionella pneumophila 4 IgM Ab [Titer] in Serum','223883','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.449_22390-9','22390-9','http://loinc.org','Legionella pneumophila 5 IgM Ab [Titer] in Serum','223909','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.449_22392-5','22392-5','http://loinc.org','Legionella pneumophila 6 IgM Ab [Titer] in Serum','223925','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.449_22398-2','22398-2','http://loinc.org','Legionella pneumophila IgM Ab [Titer] in Serum','223982','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.449_28612-0','28612-0','http://loinc.org','Legionella sp IgM Ab [Titer] in Serum by Immunofluorescence','286120','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.449_31075-5','31075-5','http://loinc.org','Legionella pneumophila 1 IgM Ab [Titer] in Cerebral spinal fluid by Immunofluorescence','310755','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.449_31456-7','31456-7','http://loinc.org','Legionella pneumophila 1 IgM Ab [Units/volume] in Cerebral spinal fluid','314567','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.449_31467-4','31467-4','http://loinc.org','Legionella pneumophila 6 IgM Ab [Units/volume] in Serum','314674','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.449_31472-4','31472-4','http://loinc.org','Legionella pneumophila IgM Ab [Units/volume] in Serum','314724','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.449_31474-0','31474-0','http://loinc.org','Legionella sp IgM Ab [Units/volume] in Serum','314740','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.449_35395-3','35395-3','http://loinc.org','Legionella pneumophila 1 IgM Ab [Presence] in Serum','353953','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.449_39559-0','39559-0','http://loinc.org','Legionella sp IgM Ab [Titer] in Serum','395590','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.449_43002-5','43002-5','http://loinc.org','Legionella pneumophila 1 IgM Ab [Titer] in Cerebral spinal fluid','430025','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.449_43853-1','43853-1','http://loinc.org','Legionella pneumophila 1+3+4+5+6+8 IgM Ab [Presence] in Serum','438531','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.449_47054-2','47054-2','http://loinc.org','Legionella pneumophila 10 IgM Ab [Titer] in Serum by Immunofluorescence','470542','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.449_47056-7','47056-7','http://loinc.org','Legionella pneumophila 11 IgM Ab [Titer] in Serum by Immunofluorescence','470567','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.449_47058-3','47058-3','http://loinc.org','Legionella pneumophila 12 IgM Ab [Titer] in Serum by Immunofluorescence','470583','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.449_47060-9','47060-9','http://loinc.org','Legionella pneumophila 13 IgM Ab [Titer] in Serum by Immunofluorescence','470609','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.449_47062-5','47062-5','http://loinc.org','Legionella pneumophila 14 IgM Ab [Titer] in Serum by Immunofluorescence','470625','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.449_47077-3','47077-3','http://loinc.org','Legionella pneumophila 7 IgM Ab [Titer] in Serum by Immunofluorescence','470773','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.449_47079-9','47079-9','http://loinc.org','Legionella pneumophila 8 IgM Ab [Titer] in Serum by Immunofluorescence','470799','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.449_47081-5','47081-5','http://loinc.org','Legionella pneumophila 9 IgM Ab [Titer] in Serum by Immunofluorescence','470815','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.449_47460-1','47460-1','http://loinc.org','Legionella pneumophila 10 IgM Ab [Titer] in Serum','474601','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.449_47462-7','47462-7','http://loinc.org','Legionella pneumophila 11 IgM Ab [Titer] in Serum','474627','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.449_47464-3','47464-3','http://loinc.org','Legionella pneumophila 12 IgM Ab [Titer] in Serum','474643','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.449_47466-8','47466-8','http://loinc.org','Legionella pneumophila 13 IgM Ab [Titer] in Serum','474668','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.449_47468-4','47468-4','http://loinc.org','Legionella pneumophila 14 IgM Ab [Titer] in Serum','474684','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.449_47470-0','47470-0','http://loinc.org','Legionella pneumophila 7 IgM Ab [Titer] in Serum','474700','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.449_47472-6','47472-6','http://loinc.org','Legionella pneumophila 8 IgM Ab [Titer] in Serum','474726','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.449_47474-2','47474-2','http://loinc.org','Legionella pneumophila 9 IgM Ab [Titer] in Serum','474742','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.449_49914-5','49914-5','http://loinc.org','Legionella pneumophila 1+2+3+4+5+6 IgM Ab [Presence] in Serum','499145','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.449_51814-2','51814-2','http://loinc.org','Legionella pneumophila IgM Ab [Units/volume] in Serum by Immunoassay','518142','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.449_53784-5','53784-5','http://loinc.org','Legionella pneumophila 1+2+3+4+5+6 IgM Ab [Titer] in Serum','537845','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.449_58798-0','58798-0','http://loinc.org','Legionella pneumophila 2 IgM Ab [Units/volume] in Serum by Immunoassay','587980','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.449_81118-2','81118-2','http://loinc.org','Legionella sp IgM Ab [Presence] in Serum','811182','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.449_9542-2','9542-2','http://loinc.org','Legionella pneumophila 1 IgM Ab [Titer] in Serum by Immunofluorescence','95422','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.449_9545-5','9545-5','http://loinc.org','Legionella pneumophila 2 IgM Ab [Titer] in Serum by Immunofluorescence','95455','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.449_9547-1','9547-1','http://loinc.org','Legionella pneumophila 3 IgM Ab [Titer] in Serum by Immunofluorescence','95471','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.449_9549-7','9549-7','http://loinc.org','Legionella pneumophila 4 IgM Ab [Titer] in Serum by Immunofluorescence','95497','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.449_9551-3','9551-3','http://loinc.org','Legionella pneumophila 5 IgM Ab [Titer] in Serum by Immunofluorescence','95513','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.449_9553-9','9553-9','http://loinc.org','Legionella pneumophila 6 IgM Ab [Titer] in Serum by Immunofluorescence','95539','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.449_98210-8','98210-8','http://loinc.org','Legionella pneumophila IgM Ab [Presence] in Serum by Immunoassay','982108','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.550_103199-6','103199-6','http://loinc.org','Treponema pallidum DNA [Presence] in Urine by Probe with amplification','1031996','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.550_41163-7','41163-7','http://loinc.org','Treponema pallidum DNA [Presence] in Specimen by NAA with probe detection','411637','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.550_49799-0','49799-0','http://loinc.org','Treponema pallidum DNA [Presence] in Cerebral spinal fluid by NAA with probe detection','497990','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.550_53605-2','53605-2','http://loinc.org','Treponema pallidum DNA [Presence] in Blood by NAA with probe detection','536052','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.550_76766-5','76766-5','http://loinc.org','Treponema pallidum polA gene [Presence] in Genital specimen by NAA with probe detection','767665','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.550_91846-6','91846-6','http://loinc.org','Treponema pallidum DNA [Presence] in Genital specimen by NAA with probe detection','918466','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.553_22799-1','22799-1','http://loinc.org','Anaplasma sp identified in Tissue by Modified Giemsa stain','227991','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.553_22800-7','22800-7','http://loinc.org','Anaplasma sp identified in Blood by Modified Giemsa stain','228007','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.553_48981-5','48981-5','http://loinc.org','Anaplasma sp [Presence] in Specimen by Light microscopy','489815','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.433_22608-4','22608-4','http://loinc.org','Escherichia coli verotoxin 1 Ab [Titer] in Stool','226084','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.433_22609-2','22609-2','http://loinc.org','Escherichia coli verotoxin 2 Ab [Titer] in Stool','226092','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.433_31381-7','31381-7','http://loinc.org','Escherichia coli verotoxin 1 Ab [Units/volume] in Stool','313817','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.433_31382-5','31382-5','http://loinc.org','Escherichia coli verotoxin 2 Ab [Units/volume] in Stool','313825','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.433_35878-8','35878-8','http://loinc.org','Escherichia coli O157:H7 IgM Ab [Units/volume] in Serum','358788','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.433_35879-6','35879-6','http://loinc.org','Escherichia coli O157:H7 IgG Ab [Units/volume] in Serum','358796','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.433_6575-5','6575-5','http://loinc.org','Escherichia coli verotoxin 1 neutralizing antibody [Titer] in Stool by Neutralization test','65755','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.433_6577-1','6577-1','http://loinc.org','Escherichia coli verotoxin 2 neutralizing antibody [Titer] in Stool by Neutralization test','65771','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.797_49012-8','49012-8','http://loinc.org','Influenza virus A and B identified in Specimen by Bioassay','490128','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.797_49534-1','49534-1','http://loinc.org','Influenza virus B Ag [Presence] in Isolate by Immunofluorescence','495341','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.797_49536-6','49536-6','http://loinc.org','Influenza virus B RNA [Identifier] in Isolate by Sequencing','495366','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.797_54241-5','54241-5','http://loinc.org','Influenza virus B Ag [Presence] in Isolate','542415','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.797_80204-1','80204-1','http://loinc.org','Influenza virus A and B identified in Nasopharynx by Shell vial culture','802041','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.797_85801-9','85801-9','http://loinc.org','Influenza virus B Yamagata lineage Ag [Titer] in Isolate by Hemagglutination inhibition','858019','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.797_85821-7','85821-7','http://loinc.org','Influenza virus B Victoria lineage Ag [Presence] in Isolate by Hemagglutination inhibition','858217','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.797_86318-3','86318-3','http://loinc.org','Influenza virus B Yamagata lineage Ag [Presence] in Isolate by Hemagglutination inhibition','863183','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.797_38382-8','38382-8','http://loinc.org','Influenza virus B [Presence] in Specimen by Organism specific culture','383828','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.797_49535-8','49535-8','http://loinc.org','Influenza virus B RNA [Presence] in Isolate by NAA with probe detection','495358','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.797_49537-4','49537-4','http://loinc.org','Influenza virus A and B RNA [Identifier] in Isolate by NAA with probe detection','495374','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.797_50698-0','50698-0','http://loinc.org','Influenza virus A.adamantane resistance [Presence] by Phenotype method','506980','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.797_50699-8','50699-8','http://loinc.org','Influenza virus A.adamantane resistance [Presence]','506998','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.797_50703-8','50703-8','http://loinc.org','Influenza virus A.neuraminidase inhibitor resistance [Susceptibility] Qualitative by Phenotype method','507038','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.797_72200-9','72200-9','http://loinc.org','Influenza virus A neuraminidase segment sequence identifier','722009','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.797_72201-7','72201-7','http://loinc.org','Influenza virus A matrix protein segment sequence identifier','722017','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.797_72767-7','72767-7','http://loinc.org','Influenza virus A hemagglutinin segment sequence identifier','727677','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.797_22826-2','22826-2','http://loinc.org','Influenza virus A identified in Specimen by Bioassay','228262','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.797_48310-7','48310-7','http://loinc.org','Influenza virus A [Presence] in Specimen by Organism specific culture','483107','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.797_50697-2','50697-2','http://loinc.org','Influenza virus A Ag [Identifier] in Isolate','506972','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.797_85532-0','85532-0','http://loinc.org','Influenza virus A whole genome [Nucleotide sequence] in Isolate by Sequencing','855320','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.797_85535-3','85535-3','http://loinc.org','Influenza virus A RNA TCID50 [#/volume] in Specimen','855353','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.797_85802-7','85802-7','http://loinc.org','Influenza virus A H1 Ag [Titer] in Isolate by Hemagglutination inhibition','858027','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.797_85803-5','85803-5','http://loinc.org','Influenza virus A H3 Ag [Titer] in Isolate by Hemagglutination inhibition','858035','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.797_49522-6','49522-6','http://loinc.org','Influenza virus A H3 Ag [Presence] in Isolate by Immunofluorescence','495226','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.797_49529-1','49529-1','http://loinc.org','Influenza virus A Ag [Presence] in Isolate by Immunofluorescence','495291','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.797_49532-5','49532-5','http://loinc.org','Influenza virus A hemagglutinin type RNA [Identifier] in Isolate by Sequencing','495325','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.797_50701-2','50701-2','http://loinc.org','Influenza virus A H1 Ag [Presence] in Isolate by Immunofluorescence','507012','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.797_50702-0','50702-0','http://loinc.org','Influenza virus A matrix protein RNA [Presence] in Isolate by Sequencing','507020','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.797_50704-6','50704-6','http://loinc.org','Influenza virus A nucleoprotein RNA [Presence] in Isolate by Sequencing','507046','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.797_50705-3','50705-3','http://loinc.org','Influenza virus A non-structural protein RNA [Presence] in Isolate by Sequencing','507053','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.797_50706-1','50706-1','http://loinc.org','Influenza virus A polymerase A RNA [Presence] in Isolate by Sequencing','507061','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.797_50707-9','50707-9','http://loinc.org','Influenza virus A polymerase B1 cDNA [Presence] in Isolate by Sequencing','507079','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.797_50708-7','50708-7','http://loinc.org','Influenza virus A polymerase B2 RNA [Presence] in Isolate by Sequencing','507087','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.797_50711-1','50711-1','http://loinc.org','Influenza virus A polymerase RNA [Identifier] in Isolate by Sequencing','507111','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.797_85804-3','85804-3','http://loinc.org','Influenza virus A H5 Ag [Titer] in Isolate by Hemagglutination inhibition','858043','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.797_85805-0','85805-0','http://loinc.org','Influenza virus A H7 Ag [Titer] in Isolate by Hemagglutination inhibition','858050','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.797_87714-2','87714-2','http://loinc.org','Influenza virus A M gene [Nucleotide sequence] in Isolate by Sequencing','877142','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.797_87715-9','87715-9','http://loinc.org','Influenza virus A HA gene [Nucleotide sequence] in Isolate by Sequencing','877159','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.797_87716-7','87716-7','http://loinc.org','Influenza virus A NA gene [Nucleotide sequence] in Isolate by Sequencing','877167','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.797_93759-9','93759-9','http://loinc.org','Influenza virus A PB2 gene [Nucleotide sequence] in Isolate by Sequencing','937599','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.797_93760-7','93760-7','http://loinc.org','Influenza virus A PB1 gene [Nucleotide sequence] in Isolate by Sequencing','937607','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.797_93761-5','93761-5','http://loinc.org','Influenza virus A PA gene [Nucleotide sequence] in Isolate by Sequencing','937615','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.797_93762-3','93762-3','http://loinc.org','Influenza virus A NP gene [Nucleotide sequence] in Isolate by Sequencing','937623','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.797_93763-1','93763-1','http://loinc.org','Influenza virus A NS1 gene [Nucleotide sequence] in Isolate by Sequencing','937631','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.797_49520-0','49520-0','http://loinc.org','Influenza virus A H1 RNA [Presence] in Isolate by NAA with probe detection','495200','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.797_49523-4','49523-4','http://loinc.org','Influenza virus A H3 RNA [Presence] in Isolate by NAA with probe detection','495234','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.797_49531-7','49531-7','http://loinc.org','Influenza virus A RNA [Presence] in Isolate by NAA with probe detection','495317','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.797_55133-3','55133-3','http://loinc.org','Influenza virus A hemagglutinin cDNA [Identifier] in Isolate by NAA with probe detection','551333','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.797_55134-1','55134-1','http://loinc.org','Influenza virus A neuraminidase RNA [Identifier] in Isolate by NAA with probe detection','551341','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.797_59424-2','59424-2','http://loinc.org','Influenza virus A hemagglutinin type RNA [Identifier] in Isolate by NAA with probe detection','594242','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.797_49526-7','49526-7','http://loinc.org','Influenza virus A H5 RNA [Presence] in Isolate by NAA with probe detection','495267','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.797_49527-5','49527-5','http://loinc.org','Influenza virus A H7 RNA [Presence] in Isolate by NAA with probe detection','495275','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.797_60530-3','60530-3','http://loinc.org','Influenza virus A H9 RNA [Presence] in Isolate by NAA with probe detection','605303','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.797_50700-4','50700-4','http://loinc.org','Influenza virus A.adamantane resistant RNA [Presence] by NAA with probe detection','507004','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.556_41216-3','41216-3','http://loinc.org','Yellow fever virus IgM Ab [Presence] in Serum','412163','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.556_6593-8','6593-8','http://loinc.org','Yellow fever virus IgM Ab [Units/volume] in Serum by Immunoassay','65938','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.556_71782-7','71782-7','http://loinc.org','Yellow fever virus IgM Ab [Presence] in Cerebral spinal fluid by Immunoassay','717827','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.556_77955-3','77955-3','http://loinc.org','Yellow fever virus IgM Ab [Presence] in Serum by Immunofluorescence','779553','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.556_8056-4','8056-4','http://loinc.org','Yellow fever virus IgM Ab [Units/volume] in Serum','80564','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.556_95690-4','95690-4','http://loinc.org','Yellow fever virus IgM Ab [Presence] in Specimen by Immunoassay','956904','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.798_100973-7','100973-7','http://loinc.org','Influenza virus A RNA [Presence] in Nose by NAA with non-probe detection','1009737','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.798_101292-1','101292-1','http://loinc.org','Influenza virus A RNA [Presence] in Throat by NAA with non-probe detection','1012921','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.798_101293-9','101293-9','http://loinc.org','Influenza virus A H1 2009 pandemic RNA [Presence] in Throat by NAA with non-probe detection','1012939','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.798_101294-7','101294-7','http://loinc.org','Influenza virus A H3 RNA [Presence] in Throat by NAA with non-probe detection','1012947','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.798_101423-2','101423-2','http://loinc.org','Influenza virus A H1 RNA [Presence] in Respiratory system specimen by NAA with probe detection','1014232','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.798_101424-0','101424-0','http://loinc.org','Influenza virus A H3 RNA [Presence] in Respiratory system specimen by NAA with probe detection','1014240','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.798_100344-1','100344-1','http://loinc.org','Influenza virus A RNA [Presence] in Saliva (oral fluid) by NAA with probe detection','1003441','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.798_76077-7','76077-7','http://loinc.org','Influenza virus A RNA [Presence] in Bronchoalveolar lavage by NAA with probe detection','760777','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.798_76078-5','76078-5','http://loinc.org','Influenza virus A RNA [Presence] in Nasopharynx by NAA with probe detection','760785','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.798_77026-3','77026-3','http://loinc.org','Influenza virus A H1 RNA [Presence] in Nasopharynx by NAA with probe detection','770263','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.798_77027-1','77027-1','http://loinc.org','Influenza virus A H3 RNA [Presence] in Nasopharynx by NAA with probe detection','770271','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.798_77028-9','77028-9','http://loinc.org','Influenza virus A H1 2009 pandemic RNA [Presence] in Nasopharynx by NAA with probe detection','770289','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.798_80588-7','80588-7','http://loinc.org','Influenza virus A M gene [Presence] in Nasopharynx by NAA with probe detection','805887','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.798_80589-5','80589-5','http://loinc.org','Influenza virus A H1 HA gene [Presence] in Nasopharynx by NAA with probe detection','805895','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.798_80590-3','80590-3','http://loinc.org','Influenza virus A H3 HA gene [Presence] in Nasopharynx by NAA with probe detection','805903','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.798_81305-5','81305-5','http://loinc.org','Influenza virus A H1 2009 pandemic RNA [Cycle Threshold #] in Respiratory system specimen by NAA with probe detection','813055','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.798_81308-9','81308-9','http://loinc.org','Influenza virus A RNA [Cycle Threshold #] in Respiratory system specimen by NAA with probe detection','813089','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.798_82166-0','82166-0','http://loinc.org','Influenza virus A RNA [Presence] in Nasopharynx by NAA with non-probe detection','821660','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.798_82167-8','82167-8','http://loinc.org','Influenza virus A H1 RNA [Presence] in Nasopharynx by NAA with non-probe detection','821678','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.798_82168-6','82168-6','http://loinc.org','Influenza virus A H1 2009 pandemic RNA [Presence] in Nasopharynx by NAA with non-probe detection','821686','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.798_82169-4','82169-4','http://loinc.org','Influenza virus A H3 RNA [Presence] in Nasopharynx by NAA with non-probe detection','821694','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.798_85477-8','85477-8','http://loinc.org','Influenza virus A RNA [Presence] in Upper respiratory specimen by NAA with probe detection','854778','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.798_88187-0','88187-0','http://loinc.org','Influenza virus A subtype [Identifier] in Cornea or Conjunctiva by NAA with probe detection','881870','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.798_88193-8','88193-8','http://loinc.org','Influenza virus A RNA [Presence] in Cornea or Conjunctiva by NAA with probe detection','881938','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.798_88599-6','88599-6','http://loinc.org','Influenza virus A RNA [Presence] in Lower respiratory specimen by NAA with probe detection','885996','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.798_88600-2','88600-2','http://loinc.org','Influenza virus A RNA [Presence] in Pericardial fluid by NAA with probe detection','886002','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.798_91072-9','91072-9','http://loinc.org','Influenza virus A subtype [Identifier] in Lower respiratory specimen by NAA with probe detection','910729','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.798_91771-6','91771-6','http://loinc.org','Influenza virus A subtype [Identifier] in Upper respiratory specimen by NAA with probe detection','917716','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.798_92142-9','92142-9','http://loinc.org','Influenza virus A RNA [Presence] in Respiratory system specimen by NAA with probe detection','921429','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.798_92808-5','92808-5','http://loinc.org','Influenza virus A H3 RNA [Presence] in Upper respiratory specimen by NAA with probe detection','928085','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.798_92809-3','92809-3','http://loinc.org','Influenza virus A H1 RNA [Presence] in Upper respiratory specimen by NAA with probe detection','928093','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.798_92977-8','92977-8','http://loinc.org','Influenza virus A RNA [Presence] in Lower respiratory specimen by NAA with non-probe detection','929778','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.798_94394-4','94394-4','http://loinc.org','Influenza virus A H3 RNA [Presence] in Lower respiratory specimen by NAA with probe detection','943944','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.798_94395-1','94395-1','http://loinc.org','Influenza virus A H1 2009 pandemic RNA [Presence] in Lower respiratory specimen by NAA with probe detection','943951','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.798_94396-9','94396-9','http://loinc.org','Influenza virus A H1 RNA [Presence] in Lower respiratory specimen by NAA with probe detection','943969','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.798_22827-0','22827-0','http://loinc.org','Influenza virus A subtype [Identifier] in Specimen by NAA with probe detection','228270','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.798_34487-9','34487-9','http://loinc.org','Influenza virus A RNA [Presence] in Specimen by NAA with probe detection','344879','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.798_38381-0','38381-0','http://loinc.org','Influenza virus A cDNA [Presence] in Specimen by NAA with probe detection','383810','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.798_39025-2','39025-2','http://loinc.org','Influenza virus A hemagglutinin cDNA [Identifier] in Specimen by Sequencing','390252','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.798_39102-9','39102-9','http://loinc.org','Influenza virus A hemagglutinin cDNA [Identifier] in Specimen by NAA with probe detection','391029','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.798_39103-7','39103-7','http://loinc.org','Influenza virus A neuraminidase cDNA [Identifier] in Specimen by NAA with probe detection','391037','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.798_44263-2','44263-2','http://loinc.org','Influenza virus A RNA [Units/volume] (viral load) in Specimen by NAA with probe detection','442632','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.798_49521-8','49521-8','http://loinc.org','Influenza virus A H1 RNA [Presence] in Specimen by NAA with probe detection','495218','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.798_49524-2','49524-2','http://loinc.org','Influenza virus A H3 RNA [Presence] in Specimen by NAA with probe detection','495242','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.798_53250-7','53250-7','http://loinc.org','Influenza virus A RNA [#/volume] (viral load) in Specimen by NAA with probe detection','532507','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.798_55463-4','55463-4','http://loinc.org','Influenza virus A swine origin RNA [Identifier] in Specimen by NAA with probe detection','554634','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.798_55464-2','55464-2','http://loinc.org','Influenza virus A swine origin RNA [Presence] in Specimen by NAA with probe detection','554642','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.798_55465-9','55465-9','http://loinc.org','Influenza virus A H1 2009 pandemic RNA [Presence] in Specimen by NAA with probe detection','554659','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.798_56024-3','56024-3','http://loinc.org','Influenza virus A N1 RNA [Units/volume] (viral load) in Specimen by NAA with probe detection','560243','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.798_59423-4','59423-4','http://loinc.org','Influenza virus A hemagglutinin type RNA [Identifier] in Specimen by NAA with probe detection','594234','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.798_60494-2','60494-2','http://loinc.org','Influenza virus A H1 2009 pandemic and Influenza virus A swine origin RNA [Interpretation] in Specimen Qualitative by NAA with probe detection','604942','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.798_61101-2','61101-2','http://loinc.org','Influenza virus A neuraminidase RNA [Type] in Specimen by Sequencing','611012','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.798_62462-7','62462-7','http://loinc.org','Influenza virus A+B RNA [Presence] in Specimen by NAA with probe detection','624627','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.798_74038-1','74038-1','http://loinc.org','Influenza virus A H1 RNA [Cycle Threshold #] in Specimen by NAA with probe detection','740381','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.798_74039-9','74039-9','http://loinc.org','Influenza virus A H3 RNA [Cycle Threshold #] in Specimen by NAA with probe detection','740399','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.798_74040-7','74040-7','http://loinc.org','Influenza virus A N2 RNA [Cycle Threshold #] in Specimen by NAA with probe detection','740407','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.798_81307-1','81307-1','http://loinc.org','Influenza virus A H7 Eurasia RNA [Cycle Threshold #] in Respiratory system specimen by NAA with probe detection','813071','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.798_81320-4','81320-4','http://loinc.org','Influenza virus A H5 Asian RNA [Cycle Threshold #] in Respiratory system specimen by Nucleic acid amplification using primer-probe set H5a','813204','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.798_81321-2','81321-2','http://loinc.org','Influenza virus A H5 Asian RNA [Cycle Threshold #] in Respiratory system specimen by Nucleic acid amplification using primer-probe set H5b','813212','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.798_81428-5','81428-5','http://loinc.org','Influenza virus A H7 Eurasia RNA [Presence] in Respiratory system specimen by NAA with probe detection','814285','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.798_86317-5','86317-5','http://loinc.org','Influenza virus A H1 2009 pandemic RNA [Cycle Threshold #] in Specimen by NAA with probe detection','863175','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.798_86569-1','86569-1','http://loinc.org','Influenza virus A RNA [Presence] in Tissue by NAA with probe detection','865691','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.798_88835-4','88835-4','http://loinc.org','Influenza virus A swine origin RNA [Cycle Threshold #] in Specimen by NAA with probe detection','888354','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.798_99623-1','99623-1','http://loinc.org','Influenza virus A N1 RNA [Presence] in Specimen by NAA with probe detection','996231','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.798_38270-5','38270-5','http://loinc.org','Influenza virus A H7 RNA [Presence] in Specimen by NAA with probe detection','382705','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.798_38271-3','38271-3','http://loinc.org','Influenza virus A H6 RNA [Presence] in Specimen by NAA with probe detection','382713','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.798_38272-1','38272-1','http://loinc.org','Influenza virus A H5 RNA [Presence] in Specimen by NAA with probe detection','382721','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.798_44264-0','44264-0','http://loinc.org','Influenza virus A H5 RNA [Units/volume] (viral load) in Specimen by NAA with probe detection','442640','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.798_44265-7','44265-7','http://loinc.org','Influenza virus A H6 RNA [Units/volume] (viral load) in Specimen by NAA with probe detection','442657','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.798_44266-5','44266-5','http://loinc.org','Influenza virus A H7 RNA [Units/volume] (viral load) in Specimen by NAA with probe detection','442665','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.798_44795-3','44795-3','http://loinc.org','Influenza virus A H5 Asian RNA [Presence] in Specimen by NAA with probe detection','447953','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.798_49528-3','49528-3','http://loinc.org','Influenza virus A H9 RNA [Presence] in Specimen by NAA with probe detection','495283','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.798_57985-4','57985-4','http://loinc.org','Influenza virus A H2 RNA [Presence] in Specimen by NAA with probe detection','579854','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.798_68986-9','68986-9','http://loinc.org','Influenza virus A H5a RNA [Presence] in Specimen by NAA with probe detection','689869','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.798_68987-7','68987-7','http://loinc.org','Influenza virus A H5b RNA [Presence] in Specimen by NAA with probe detection','689877','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.798_77605-4','77605-4','http://loinc.org','Influenza virus A H5 RNA [Cycle Threshold #] in Specimen by NAA with probe detection','776054','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.798_86568-3','86568-3','http://loinc.org','Influenza virus A RNA [Presence] in Cerebral spinal fluid by NAA with probe detection','865683','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.798_95658-1','95658-1','http://loinc.org','Influenza virus A H7 Eurasia RNA [Presence] in Specimen by NAA with probe detection','956581','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.798_50700-4','50700-4','http://loinc.org','Influenza virus A.adamantane resistant RNA [Presence] by NAA with probe detection','507004','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.436_13948-5','13948-5','http://loinc.org','Coccidioides immitis IgM Ab [Presence] in Serum by Immunoassay','139485','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.436_16639-7','16639-7','http://loinc.org','Coccidioides immitis IgM Ab [Units/volume] in Cerebral spinal fluid','166397','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.436_22210-9','22210-9','http://loinc.org','Coccidioides immitis IgM Ab [Presence] in Serum','222109','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.436_30208-3','30208-3','http://loinc.org','Coccidioides immitis IgM Ab [Presence] in Cerebral spinal fluid','302083','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.436_33510-9','33510-9','http://loinc.org','Coccidioides immitis IgM Ab [Presence] in Specimen by Immunoassay','335109','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.436_33534-9','33534-9','http://loinc.org','Coccidioides immitis IgM Ab [Presence] in Specimen','335349','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.436_43850-7','43850-7','http://loinc.org','Coccidioides sp IgM Ab [Presence] in Serum by Immunoassay','438507','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.436_46183-0','46183-0','http://loinc.org','Coccidioides sp IgM Ab [Presence] in Serum','461830','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.436_48393-3','48393-3','http://loinc.org','Coccidioides immitis IgM Ab [Units/volume] in Body fluid','483933','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.436_51477-8','51477-8','http://loinc.org','Coccidioides sp IgM Ab [Presence] in Specimen by Immune diffusion (ID)','514778','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.436_53367-9','53367-9','http://loinc.org','Coccidioides sp IgM Ab [Presence] in Specimen','533679','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.436_62457-7','62457-7','http://loinc.org','Coccidioides sp TP Ab [Presence] in Serum by Immune diffusion (ID)','624577','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.436_62458-5','62458-5','http://loinc.org','Coccidioides immitis IgM Ab [Presence] in Serum by Immune diffusion (ID)','624585','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.436_75710-4','75710-4','http://loinc.org','Coccidioides immitis+posadasii IgM Ab [Presence] in Cerebral spinal fluid by Immune diffusion (ID)','757104','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.436_7827-9','7827-9','http://loinc.org','Coccidioides immitis IgM Ab [Units/volume] in Serum','78279','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.436_90448-2','90448-2','http://loinc.org','Coccidioides sp IgM Ab [Units/volume] in Serum or Plasma','904482','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.436_93834-0','93834-0','http://loinc.org','Coccidioides sp IgM Ab [Units/volume] in Cerebral spinal fluid by Immunoassay','938340','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.436_93835-7','93835-7','http://loinc.org','Coccidioides sp IgM Ab [Units/volume] in Serum or Plasma by Immunoassay','938357','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.436_94663-2','94663-2','http://loinc.org','Coccidioides immitis IgM Ab [Presence] in Cerebral spinal fluid by Immune diffusion (ID)','946632','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.436_98956-6','98956-6','http://loinc.org','Coccidioides immitis IgM Ab [Units/volume] in Specimen by Immunoassay','989566','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.557_104461-9','104461-9','http://loinc.org','Yellow fever virus IgG Ab [Titer] in Serum by Immunoassay','1044619','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.557_104463-5','104463-5','http://loinc.org','Yellow fever virus IgG Ab [Titer] in Serum by Immunoassay --2nd specimen','1044635','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.557_22618-3','22618-3','http://loinc.org','Yellow fever virus Ab [Titer] in Serum','226183','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.557_41246-0','41246-0','http://loinc.org','Yellow fever virus Ab [Titer] in Serum --2nd specimen','412460','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.557_41247-8','41247-8','http://loinc.org','Yellow fever virus Ab [Titer] in Serum --1st specimen','412478','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.557_6587-0','6587-0','http://loinc.org','Yellow fever virus Ab [Titer] in Serum by Complement fixation','65870','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.557_6588-8','6588-8','http://loinc.org','Yellow fever virus Ab [Units/volume] in Serum by Hemagglutination inhibition','65888','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.557_6589-6','6589-6','http://loinc.org','Yellow fever virus Ab [Titer] in Serum by Immunofluorescence','65896','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.557_6590-4','6590-4','http://loinc.org','Yellow fever virus Ab [Titer] in Serum by Latex agglutination','65904','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.557_6592-0','6592-0','http://loinc.org','Yellow fever virus IgG Ab [Units/volume] in Serum by Immunoassay','65920','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.557_8054-9','8054-9','http://loinc.org','Yellow fever virus Ab [Units/volume] in Serum','80549','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.557_8055-6','8055-6','http://loinc.org','Yellow fever virus IgG Ab [Units/volume] in Serum','80556','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.557_95651-6','95651-6','http://loinc.org','Yellow fever virus neutralizing antibody [Titer] in Specimen by Neutralization test','956516','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.557_6593-8','6593-8','http://loinc.org','Yellow fever virus IgM Ab [Units/volume] in Serum by Immunoassay','65938','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.557_8056-4','8056-4','http://loinc.org','Yellow fever virus IgM Ab [Units/volume] in Serum','80564','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.799_23769-3','23769-3','http://loinc.org','Porcine influenza virus A Ag [Presence] in Tissue by Immune stain','237693','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.799_23781-8','23781-8','http://loinc.org','Swine influenza virus Ag [Presence] in Tissue by Immunofluorescence','237818','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.799_23782-6','23782-6','http://loinc.org','Swine influenza virus Ag [Presence] in Tissue by Immune stain','237826','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.799_31858-4','31858-4','http://loinc.org','Influenza virus A Ag [Presence] in Throat','318584','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.799_43874-7','43874-7','http://loinc.org','Influenza virus A Ag [Presence] in Nasopharynx','438747','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.799_44558-5','44558-5','http://loinc.org','Influenza virus A Ag [Presence] in Nasopharynx by Immunofluorescence','445585','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.799_44559-3','44559-3','http://loinc.org','Influenza virus A Ag [Presence] in Bronchial specimen by Immunofluorescence','445593','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.799_44560-1','44560-1','http://loinc.org','Influenza virus A Ag [Presence] in Nose by Immunofluorescence','445601','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.799_44561-9','44561-9','http://loinc.org','Influenza virus A Ag [Presence] in Trachea by Immunofluorescence','445619','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.799_44562-7','44562-7','http://loinc.org','Influenza virus A Ag [Presence] in Bronchial specimen','445627','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.799_44563-5','44563-5','http://loinc.org','Influenza virus A Ag [Presence] in Nose','445635','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.799_44564-3','44564-3','http://loinc.org','Influenza virus A Ag [Presence] in Nose by Immunoassay','445643','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.799_46082-4','46082-4','http://loinc.org','Influenza virus A Ag [Presence] in Nasopharynx by Immunoassay','460824','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.799_5860-2','5860-2','http://loinc.org','Influenza virus A Ag [Presence] in Throat by Immunoassay','58602','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.799_5861-0','5861-0','http://loinc.org','Influenza virus A Ag [Presence] in Throat by Immunofluorescence','58610','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.799_77383-8','77383-8','http://loinc.org','Influenza virus A Ag [Presence] in Bronchoalveolar lavage by Immunofluorescence','773838','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.799_80382-5','80382-5','http://loinc.org','Influenza virus A Ag [Presence] in Upper respiratory specimen by Rapid immunoassay','803825','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.799_88904-8','88904-8','http://loinc.org','Influenza virus A Ag [Presence] in Lower respiratory specimen by Immunofluorescence','889048','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.799_22825-4','22825-4','http://loinc.org','Influenza virus A Ag [Presence] in Specimen by Immune diffusion (ID)','228254','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.799_31859-2','31859-2','http://loinc.org','Influenza virus A Ag [Presence] in Specimen','318592','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.799_5862-8','5862-8','http://loinc.org','Influenza virus A Ag [Presence] in Specimen by Immunoassay','58628','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.799_5863-6','5863-6','http://loinc.org','Influenza virus A Ag [Presence] in Specimen by Immunofluorescence','58636','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.799_86565-9','86565-9','http://loinc.org','Influenza virus A Ag [Presence] in Tissue by Immunofluorescence','865659','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.437_95915-5','95915-5','http://loinc.org','Coccidioides sp DNA [Presence] in Lower respiratory specimen by NAA with probe detection','959155','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.437_48588-8','48588-8','http://loinc.org','Coccidioides sp rRNA [Presence] in Specimen by NAA with probe detection','485888','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.437_4994-0','4994-0','http://loinc.org','Coccidioides immitis rRNA [Presence] in Specimen by Probe','49940','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.437_95913-0','95913-0','http://loinc.org','Coccidioides sp DNA [Presence] in Tissue by NAA with probe detection','959130','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.437_97916-1','97916-1','http://loinc.org','Coccidioides sp DNA [Presence] in Specimen by NAA with probe detection','979161','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.558_41217-1','41217-1','http://loinc.org','Yellow fever virus IgG Ab [Presence] in Serum','412171','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.558_41239-5','41239-5','http://loinc.org','Yellow fever virus Ab [Presence] in Cerebral spinal fluid','412395','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.558_41249-4','41249-4','http://loinc.org','Yellow fever virus Ab [Presence] in Serum','412494','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.558_77954-6','77954-6','http://loinc.org','Yellow fever virus IgG Ab [Presence] in Serum by Immunofluorescence','779546','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.558_95675-5','95675-5','http://loinc.org','Yellow fever virus IgG Ab [Presence] in Specimen by Immunoassay','956755','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.558_95708-4','95708-4','http://loinc.org','Yellow fever virus IgA Ab [Presence] in Specimen by Immunoassay','957084','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.558_41216-3','41216-3','http://loinc.org','Yellow fever virus IgM Ab [Presence] in Serum','412163','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.558_71782-7','71782-7','http://loinc.org','Yellow fever virus IgM Ab [Presence] in Cerebral spinal fluid by Immunoassay','717827','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.558_77955-3','77955-3','http://loinc.org','Yellow fever virus IgM Ab [Presence] in Serum by Immunofluorescence','779553','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.558_95690-4','95690-4','http://loinc.org','Yellow fever virus IgM Ab [Presence] in Specimen by Immunoassay','956904','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.317_101427-3','101427-3','http://loinc.org','Shigella sp DNA [Presence] in Stool by NAA with probe detection','1014273','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.317_46455-2','46455-2','http://loinc.org','Shigella sp DNA [Presence] in Specimen by NAA with probe detection','464552','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.317_70242-3','70242-3','http://loinc.org','Shigella species+EIEC invasion plasmid antigen H ipaH gene [Presence] in Stool by NAA with probe detection','702423','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.317_80350-2','80350-2','http://loinc.org','Shigella species+EIEC invasion plasmid antigen H ipaH gene [Presence] in Stool by NAA with non-probe detection','803502','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.438_93224-4','93224-4','http://loinc.org','Coccidioides sp Ag [Mass/volume] in Bronchoalveolar lavage by Immunoassay','932244','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.438_93226-9','93226-9','http://loinc.org','Coccidioides sp Ag [Mass/volume] in Serum or Plasma by Immunoassay','932269','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.438_93227-7','93227-7','http://loinc.org','Coccidioides sp Ag [Mass/volume] in Urine by Immunoassay','932277','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.438_38385-1','38385-1','http://loinc.org','Coccidioides immitis Ag [Presence] in Cerebral spinal fluid','383851','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.438_93225-1','93225-1','http://loinc.org','Coccidioides sp Ag [Mass/volume] in Cerebral spinal fluid by Immunoassay','932251','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.438_99082-0','99082-0','http://loinc.org','Coccidioides sp Ag [Mass/volume] in Body fluid by Immunoassay','990820','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.308_49672-9','49672-9','http://loinc.org','Streptococcus pneumoniae DNA [Presence] in Specimen by NAA with probe detection','496729','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.308_5035-1','5035-1','http://loinc.org','Streptococcus pneumoniae rRNA [Presence] in Specimen by Probe','50351','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.308_76572-7','76572-7','http://loinc.org','Streptococcus pneumoniae nanA gene [Presence] in Swab specimen by NAA with probe detection','765727','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.308_76587-5','76587-5','http://loinc.org','Streptococcus pneumoniae nanA gene [#/mass] in XXX.tissue by NAA with probe detection','765875','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.308_85496-8','85496-8','http://loinc.org','Streptococcus pneumoniae serotype [Identifier] in Specimen by NAA with probe detection','854968','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.308_85688-0','85688-0','http://loinc.org','Streptococcus pneumoniae lytA gene [Cycle Threshold #] in Specimen by NAA with probe detection','856880','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.308_85740-9','85740-9','http://loinc.org','Streptococcus pneumoniae Danish serotype 5 DNA [Cycle Threshold #] in Specimen by NAA with probe detection','857409','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.308_85741-7','85741-7','http://loinc.org','Streptococcus pneumoniae Danish serotype 4 DNA [Cycle Threshold #] in Specimen by NAA with probe detection','857417','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.308_85742-5','85742-5','http://loinc.org','Streptococcus pneumoniae Danish serotype 3 DNA [Cycle Threshold #] in Specimen by NAA with probe detection','857425','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.308_85743-3','85743-3','http://loinc.org','Streptococcus pneumoniae Danish serotype 23F DNA [Cycle Threshold #] in Specimen by NAA with probe detection','857433','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.308_85744-1','85744-1','http://loinc.org','Streptococcus pneumoniae Danish serotype 2 DNA [Cycle Threshold #] in Specimen by NAA with probe detection','857441','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.308_85745-8','85745-8','http://loinc.org','Streptococcus pneumoniae Danish serotype 19F DNA [Cycle Threshold #] in Specimen by NAA with probe detection','857458','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.308_85746-6','85746-6','http://loinc.org','Streptococcus pneumoniae Danish serotype 14 DNA [Cycle Threshold #] in Specimen by NAA with probe detection','857466','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.308_85747-4','85747-4','http://loinc.org','Streptococcus pneumoniae Danish serotype 1 DNA [Cycle Threshold #] in Specimen by NAA with probe detection','857474','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.308_85748-2','85748-2','http://loinc.org','Streptococcus pneumoniae Danish serotypes 7A+7F DNA [Cycle Threshold #] in Specimen by NAA with probe detection','857482','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.308_85749-0','85749-0','http://loinc.org','Streptococcus pneumoniae Danish serotypes 22A+22F DNA [Cycle Threshold #] in Specimen by NAA with probe detection','857490','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.308_85750-8','85750-8','http://loinc.org','Streptococcus pneumoniae Danish serotype 23A DNA [Cycle Threshold #] in Specimen by NAA with probe detection','857508','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.308_85751-6','85751-6','http://loinc.org','Streptococcus pneumoniae Danish serotype 16F DNA [Cycle Threshold #] in Specimen by NAA with probe detection','857516','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.308_85752-4','85752-4','http://loinc.org','Streptococcus pneumoniae Danish serotypes 9A+9V DNA [Cycle Threshold #] in Specimen by NAA with probe detection','857524','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.308_85753-2','85753-2','http://loinc.org','Streptococcus pneumoniae Danish serotypes 6C+6D DNA [Cycle Threshold #] in Specimen by NAA with probe detection','857532','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.308_85754-0','85754-0','http://loinc.org','Streptococcus pneumoniae Danish serotypes 6A+6B+6C+6D DNA [Cycle Threshold #] in Specimen by NAA with probe detection','857540','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.308_85755-7','85755-7','http://loinc.org','Streptococcus pneumoniae Danish serotypes 33A+33F+37 DNA [Cycle Threshold #] in Specimen by NAA with probe detection','857557','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.308_85756-5','85756-5','http://loinc.org','Streptococcus pneumoniae Danish serotypes 18A+18B+18C+18F DNA [Cycle Threshold #] in Specimen by NAA with probe detection','857565','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.308_85757-3','85757-3','http://loinc.org','Streptococcus pneumoniae Danish serotypes 15A+15F DNA [Cycle Threshold #] in Specimen by NAA with probe detection','857573','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.308_85758-1','85758-1','http://loinc.org','Streptococcus pneumoniae Danish serotypes 12A+12F+44+46 DNA [Cycle Threshold #] in Specimen by NAA with probe detection','857581','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.308_85759-9','85759-9','http://loinc.org','Streptococcus pneumoniae Danish serotypes 11A+11D DNA [Cycle Threshold #] in Specimen by NAA with probe detection','857599','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.308_85760-7','85760-7','http://loinc.org','Streptococcus pneumoniae Danish serotype 19A DNA [Cycle Threshold #] in Specimen by NAA with probe detection','857607','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.308_86503-0','86503-0','http://loinc.org','Deprecated Streptococcus pneumoniae serotype DNA [Identifier] in Unspecified specimen by NAA with probe detection','865030','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.308_92125-4','92125-4','http://loinc.org','Streptococcus pneumoniae DNA [Presence] in Respiratory system specimen by NAA with probe detection','921254','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.308_92948-9','92948-9','http://loinc.org','Streptococcus pneumoniae DNA [NCncRange] in Sputum by NAA with non-probe detection','929489','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.308_92949-7','92949-7','http://loinc.org','Streptococcus pneumoniae DNA [NCncRange] in Bronchoalveolar lavage by NAA with non-probe detection','929497','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.308_94367-0','94367-0','http://loinc.org','Streptococcus pneumoniae DNA [Presence] in Lower respiratory specimen by NAA with probe detection','943670','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.308_96330-6','96330-6','http://loinc.org','Streptococcus pneumoniae DNA [NCncRange] in Lower respiratory specimen by NAA with non-probe detection','963306','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.308_53917-1','53917-1','http://loinc.org','Streptococcus pneumoniae DNA [Presence] in Blood by NAA with probe detection','539171','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.308_76600-6','76600-6','http://loinc.org','Streptococcus pneumoniae nanA gene [#/volume] in XXX.body fluid by NAA with probe detection','766006','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.308_82187-6','82187-6','http://loinc.org','Streptococcus pneumoniae DNA [Presence] in Cerebral spinal fluid by NAA with non-probe detection','821876','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.308_97637-3','97637-3','http://loinc.org','Streptococcus pneumoniae DNA [Presence] in Synovial fluid by NAA with non-probe detection','976373','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.308_51668-2','51668-2','http://loinc.org','Streptococcus pneumoniae DNA and Haemophilus influenza DNA and Pseudomonas aeruginosa DNA [Identifier] in Unspecified specimen by NAA with probe detection','516682','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.308_62493-2','62493-2','http://loinc.org','Streptococcus pneumoniae DNA and Haemophilus influenza DNA and Streptococcus agalactiae DNA [Identifier] in Unspecified specimen by NAA with probe detection','624932','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.308_92771-5','92771-5','http://loinc.org','Streptococcus pneumoniae DNA [Presence] by NAA with probe detection in Positive blood culture','927715','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.309_17652-9','17652-9','http://loinc.org','Streptococcus pneumoniae Ag [Presence] in Specimen by Latex agglutination','176529','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.309_24027-5','24027-5','http://loinc.org','Streptococcus pneumoniae Ag [Presence] in Urine','240275','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.309_31968-1','31968-1','http://loinc.org','Streptococcus pneumoniae Ag [Presence] in Sputum','319681','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.309_31969-9','31969-9','http://loinc.org','Streptococcus pneumoniae Ag [Presence] in Specimen','319699','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.309_6554-0','6554-0','http://loinc.org','Streptococcus pneumoniae Ag [Presence] in Sputum by Immunofluorescence','65540','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.309_6555-7','6555-7','http://loinc.org','Streptococcus pneumoniae Ag [Presence] in Specimen by Immunofluorescence','65557','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.309_77949-6','77949-6','http://loinc.org','Streptococcus pneumoniae Ag [Presence] in Urine by Rapid immunoassay','779496','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.309_11086-6','11086-6','http://loinc.org','Streptococcus pneumoniae Ag [Presence] in Serum','110866','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.309_14322-2','14322-2','http://loinc.org','Streptococcus pneumoniae Ag [Presence] in Cerebral spinal fluid by Latex agglutination','143222','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.309_20489-1','20489-1','http://loinc.org','Streptococcus pneumoniae Ag [Presence] in Cerebral spinal fluid','204891','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.309_6553-2','6553-2','http://loinc.org','Streptococcus pneumoniae Ag [Presence] in Cerebral spinal fluid by Immunofluorescence','65532','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.309_86590-7','86590-7','http://loinc.org','Streptococcus pneumoniae Ag [Presence] in Cerebral spinal fluid by Rapid immunoassay','865907','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.540_54033-6','54033-6','http://loinc.org','Rickettsia spotted fever group Ag [Presence] in Tissue by Immune stain','540336','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.540_6543-3','6543-3','http://loinc.org','Rickettsia rickettsii Ag [Identifier] in Tissue by Immunofluorescence','65433','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.301_17576-0','17576-0','http://loinc.org','Shigella sp identified in Specimen by Organism specific culture','175760','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.301_42256-8','42256-8','http://loinc.org','Shigella boydii Ag [Presence] in Isolate','422568','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.301_42257-6','42257-6','http://loinc.org','Shigella dysenteriae Ag [Presence] in Isolate','422576','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.301_42258-4','42258-4','http://loinc.org','Shigella flexneri Ag [Presence] in Isolate','422584','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.301_42259-2','42259-2','http://loinc.org','Shigella sonnei Ag [Presence] in Isolate','422592','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.301_46454-5','46454-5','http://loinc.org','Shigella sp [Presence] in Specimen by Organism specific culture','464545','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.301_49056-5','49056-5','http://loinc.org','Shigella sp serotype [Identifier] in Isolate by Agglutination','490565','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.301_82300-5','82300-5','http://loinc.org','Shigella sp [Presence] in Stool by Culture','823005','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.301_88586-3','88586-3','http://loinc.org','Shigella sp identified in Stool by Organism specific culture','885863','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.544_34458-0','34458-0','http://loinc.org','Saint Louis encephalitis virus RNA [Presence] in Blood by NAA with probe detection','344580','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.544_8025-9','8025-9','http://loinc.org','Saint Louis encephalitis virus RNA [Presence] in Serum by NAA with probe detection','80259','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.544_37984-2','37984-2','http://loinc.org','Saint Louis encephalitis virus RNA [Presence] in Specimen by Probe','379842','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.544_55145-7','55145-7','http://loinc.org','Saint Louis encephalitis virus RNA [Presence] in Specimen by NAA with probe detection','551457','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.544_27950-5','27950-5','http://loinc.org','Saint Louis encephalitis virus RNA [Presence] in Cerebral spinal fluid by Probe','279505','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.544_34459-8','34459-8','http://loinc.org','Saint Louis encephalitis virus RNA [Presence] in Cerebral spinal fluid by NAA with probe detection','344598','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.545_6549-0','6549-0','http://loinc.org','Saint Louis encephalitis virus Ag [Units/volume] in Serum','65490','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.425_10851-4','10851-4','http://loinc.org','Escherichia coli O157:H7 [Presence] in Stool by Organism specific culture','108514','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.425_16835-1','16835-1','http://loinc.org','Escherichia coli shiga-like toxin identified in Stool by Organism specific culture','168351','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.425_16836-9','16836-9','http://loinc.org','Escherichia coli verotoxic identified in Stool by Organism specific culture','168369','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.425_44089-1','44089-1','http://loinc.org','Escherichia coli O157:H7 [Identifier] in Specimen by Organism specific culture','440891','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.425_44090-9','44090-9','http://loinc.org','Escherichia coli O157:H7 [Presence] in Isolate by Organism specific culture','440909','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.425_45162-5','45162-5','http://loinc.org','Escherichia coli O157 Ag [Presence] in Isolate by Latex agglutination','451625','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.425_53955-1','53955-1','http://loinc.org','Escherichia coli O157 identified in Isolate by Organism specific culture','539551','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.425_82303-9','82303-9','http://loinc.org','Escherichia coli O157 [Presence] in Stool by Culture','823039','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.425_87376-0','87376-0','http://loinc.org','Escherichia coli Stx1 toxin stx1 gene [Presence] in Isolate by NAA with probe detection','873760','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.425_87377-8','87377-8','http://loinc.org','Escherichia coli Stx2 toxin stx2 gene [Presence] in Isolate by NAA with probe detection','873778','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.425_87380-2','87380-2','http://loinc.org','Escherichia coli Stx2e toxin stx2e gene [Presence] in Isolate by NAA with probe detection','873802','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.546_42005-9','42005-9','http://loinc.org','Saint Louis encephalitis virus IgM Ab [Presence] in Serum by Immunoassay','420059','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.546_42006-7','42006-7','http://loinc.org','Saint Louis encephalitis virus IgM Ab [Presence] in Cerebral spinal fluid by Immunoassay','420067','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.546_42965-4','42965-4','http://loinc.org','Saint Louis encephalitis virus IgM Ab [Presence] in Serum','429654','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.546_42966-2','42966-2','http://loinc.org','Saint Louis encephalitis virus IgM Ab [Presence] in Cerebral spinal fluid','429662','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.546_48507-8','48507-8','http://loinc.org','Saint Louis encephalitis virus IgM Ab [Presence] in Body fluid by Immunoassay','485078','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.546_49144-9','49144-9','http://loinc.org','Saint Louis encephalitis virus IgM Ab [Presence] in Body fluid','491449','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.546_62434-6','62434-6','http://loinc.org','Saint Louis encephalitis virus IgM Ab [Presence] in Body fluid by Immunofluorescence','624346','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.546_95692-0','95692-0','http://loinc.org','Saint Louis encephalitis virus IgM Ab [Presence] in Specimen by Immunoassay','956920','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.546_10907-4','10907-4','http://loinc.org','Saint Louis encephalitis virus IgM Ab [Titer] in Serum by Immunofluorescence','109074','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.546_13231-6','13231-6','http://loinc.org','Saint Louis encephalitis virus IgM Ab [Units/volume] in Cerebral spinal fluid','132316','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.546_21510-3','21510-3','http://loinc.org','Saint Louis encephalitis virus IgM Ab [Titer] in Cerebral spinal fluid by Immunofluorescence','215103','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.546_22513-6','22513-6','http://loinc.org','Saint Louis encephalitis virus IgM Ab [Titer] in Cerebral spinal fluid','225136','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.546_22514-4','22514-4','http://loinc.org','Saint Louis encephalitis virus IgM Ab [Titer] in Serum','225144','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.546_8017-6','8017-6','http://loinc.org','Saint Louis encephalitis virus IgM Ab [Units/volume] in Serum','80176','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.546_9635-4','9635-4','http://loinc.org','Saint Louis encephalitis virus IgM Ab [Titer] in Specimen','96354','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.788_17321-1','17321-1','http://loinc.org','Neisseria meningitidis serogroups A+Y Ag [Presence] in Urine','173211','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.788_17323-7','17323-7','http://loinc.org','Neisseria meningitidis Ag [Presence] in Urine','173237','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.788_17325-2','17325-2','http://loinc.org','Neisseria meningitidis serogroups C+w135 Ag [Presence] in Urine','173252','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.788_17330-2','17330-2','http://loinc.org','Neisseria meningitidis serogroup Y Ag [Presence] in Cerebral spinal fluid','173302','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.788_17332-8','17332-8','http://loinc.org','Neisseria meningitidis polyvalent Ag [Presence] in Cerebral spinal fluid','173328','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.788_19022-3','19022-3','http://loinc.org','Neisseria meningitidis serogroups C+w135 Ag [Presence] in Cerebral spinal fluid','190223','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.788_20487-5','20487-5','http://loinc.org','Neisseria meningitidis serogroups A+Y Ag [Presence] in Cerebral spinal fluid','204875','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.788_24017-6','24017-6','http://loinc.org','Neisseria meningitidis serogroup B Ag [Presence] in Cerebral spinal fluid','240176','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.788_24018-4','24018-4','http://loinc.org','Neisseria meningitidis serogroup B Ag [Presence] in Urine','240184','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.788_31907-9','31907-9','http://loinc.org','Neisseria meningitidis serogroup A Ag [Presence] in Cerebral spinal fluid','319079','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.788_31908-7','31908-7','http://loinc.org','Neisseria meningitidis serogroup A Ag [Presence] in Specimen','319087','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.788_31909-5','31909-5','http://loinc.org','Neisseria meningitidis serogroups A+C+w135+Y Ag [Presence] in Cerebral spinal fluid','319095','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.788_31910-3','31910-3','http://loinc.org','Neisseria meningitidis serogroups A+C+w135+Y Ag [Presence] in Specimen','319103','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.788_31911-1','31911-1','http://loinc.org','Neisseria meningitidis Ag [Units/volume] in Cerebral spinal fluid','319111','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.788_31912-9','31912-9','http://loinc.org','Neisseria meningitidis Ag [Presence] in Specimen','319129','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.788_31913-7','31913-7','http://loinc.org','Neisseria meningitidis serogroup B Ag [Presence] in Specimen','319137','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.788_31915-2','31915-2','http://loinc.org','Neisseria meningitidis serogroup B+Escherichia coli K1 Ag [Presence] in Specimen','319152','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.788_31916-0','31916-0','http://loinc.org','Neisseria meningitidis serogroup C Ag [Presence] in Cerebral spinal fluid','319160','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.788_31917-8','31917-8','http://loinc.org','Neisseria meningitidis serogroup C Ag [Presence] in Specimen','319178','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.788_31918-6','31918-6','http://loinc.org','Neisseria meningitidis serogroup w135 Ag [Presence] in Cerebral spinal fluid','319186','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.788_31919-4','31919-4','http://loinc.org','Neisseria meningitidis serogroup w135 Ag [Presence] in Serum or Plasma','319194','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.788_31920-2','31920-2','http://loinc.org','Neisseria meningitidis serogroup w135 Ag [Presence] in Specimen','319202','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.788_31921-0','31921-0','http://loinc.org','Neisseria meningitidis serogroup Y Ag [Presence] in Specimen','319210','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.788_32706-4','32706-4','http://loinc.org','Neisseria meningitidis serogroups A+C+w135+Y Ag [Presence] in Urine','327064','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.788_32707-2','32707-2','http://loinc.org','Neisseria meningitidis serogroup B+Escherichia coli K1 Ag [Presence] in Urine','327072','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.788_32841-9','32841-9','http://loinc.org','Neisseria meningitidis serogroups C+w135 Ag [Presence] in Specimen','328419','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.788_32848-4','32848-4','http://loinc.org','Neisseria meningitidis serogroups A+Y Ag [Presence] in Specimen','328484','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.788_33396-3','33396-3','http://loinc.org','Neisseria meningitidis serogroups A+C+w135+Y Ag [Presence] in Serum','333963','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.788_41503-4','41503-4','http://loinc.org','Neisseria meningitidis serogroup B Ag [Presence] in Body fluid','415034','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.788_41844-2','41844-2','http://loinc.org','Neisseria meningitidis serogroups A+B+C+w135+Y+Escherichia coli K1 Ag [Presence] in Serum by Agglutination','418442','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.788_42341-8','42341-8','http://loinc.org','Neisseria meningitidis serogroups A+w135 Ag [Presence] in Body fluid','423418','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.788_43430-8','43430-8','http://loinc.org','Neisseria meningitidis serogroup B Ag [Presence] in Serum','434308','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.788_6508-6','6508-6','http://loinc.org','Neisseria meningitidis Ag [Presence] in Cerebral spinal fluid','65086','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.788_17326-0','17326-0','http://loinc.org','Neisseria meningitidis serogroup A Ag [Presence] in Cerebral spinal fluid by Immunofluorescence','173260','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.788_17329-4','17329-4','http://loinc.org','Neisseria meningitidis serogroup C Ag [Presence] in Cerebral spinal fluid by Immunofluorescence','173294','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.788_6492-3','6492-3','http://loinc.org','Neisseria meningitidis Ag [Presence] in Specimen by Immunofluorescence','64923','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.788_6493-1','6493-1','http://loinc.org','Neisseria meningitidis serogroup A Ag [Presence] in Cerebral spinal fluid by Immunoassay','64931','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.788_6495-6','6495-6','http://loinc.org','Neisseria meningitidis serogroup A Ag [Presence] in Specimen by Immunofluorescence','64956','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.788_6496-4','6496-4','http://loinc.org','Neisseria meningitidis serogroup B Ag [Presence] in Cerebral spinal fluid by Immunoassay','64964','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.788_6497-2','6497-2','http://loinc.org','Neisseria meningitidis serogroup B Ag [Presence] in Cerebral spinal fluid by Immunofluorescence','64972','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.788_6499-8','6499-8','http://loinc.org','Neisseria meningitidis serogroup C Ag [Presence] in Cerebral spinal fluid by Immunoassay','64998','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.788_6501-1','6501-1','http://loinc.org','Neisseria meningitidis serogroup C Ag [Presence] in Specimen by Immunofluorescence','65011','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.788_6503-7','6503-7','http://loinc.org','Neisseria meningitidis serogroup Y Ag [Presence] in Cerebral spinal fluid by Immunoassay','65037','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.788_6504-5','6504-5','http://loinc.org','Neisseria meningitidis serogroup Y Ag [Presence] in Cerebral spinal fluid by Immunofluorescence','65045','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.788_6506-0','6506-0','http://loinc.org','Neisseria meningitidis serogroup w135 Ag [Presence] in Cerebral spinal fluid by Immunofluorescence','65060','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.788_17328-6','17328-6','http://loinc.org','Neisseria meningitidis serogroup B Ag [Presence] in Urine by Latex agglutination','173286','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.788_19259-1','19259-1','http://loinc.org','Neisseria meningitidis serogroups A+C+w135+Y Ag [Presence] in Specimen by Latex agglutination','192591','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.788_30094-7','30094-7','http://loinc.org','Neisseria meningitidis serogroup A Ag [Presence] in Specimen by Latex agglutination','300947','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.788_30095-4','30095-4','http://loinc.org','Neisseria meningitidis serogroup B Ag [Presence] in Specimen by Latex agglutination','300954','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.788_30096-2','30096-2','http://loinc.org','Neisseria meningitidis serogroup C Ag [Presence] in Specimen by Latex agglutination','300962','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.788_30097-0','30097-0','http://loinc.org','Neisseria meningitidis serogroup w135 Ag [Presence] in Specimen by Latex agglutination','300970','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.788_30098-8','30098-8','http://loinc.org','Neisseria meningitidis serogroup Y Ag [Presence] in Specimen by Latex agglutination','300988','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.788_32800-5','32800-5','http://loinc.org','Neisseria meningitidis serogroups C+w135 Ag [Presence] in Specimen by Latex agglutination','328005','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.788_32851-8','32851-8','http://loinc.org','Neisseria meningitidis serogroups A+Y Ag [Presence] in Specimen by Latex agglutination','328518','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.788_33398-9','33398-9','http://loinc.org','Neisseria meningitidis serogroups A+C+w135+Y Ag [Presence] in Urine by Latex agglutination','333989','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.788_65763-5','65763-5','http://loinc.org','Neisseria meningitidis Ag [Presence] in Tissue by Immune stain','657635','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.788_17333-6','17333-6','http://loinc.org','Neisseria meningitidis serogroup w135 Ag [Presence] in Serum or Plasma by Latex agglutination','173336','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.788_19134-6','19134-6','http://loinc.org','Neisseria meningitidis serogroup B+Escherichia coli K1 Ag [Presence] in Cerebral spinal fluid by Latex agglutination','191346','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.788_33397-1','33397-1','http://loinc.org','Neisseria meningitidis serogroups A+C+w135+Y Ag [Presence] in Serum by Latex agglutination','333971','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.788_17324-5','17324-5','http://loinc.org','Neisseria meningitidis Ag [Units/volume] in Cerebral spinal fluid by Latex agglutination','173245','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.788_19133-8','19133-8','http://loinc.org','Neisseria meningitidis serogroups A+C+w135+Y Ag [Presence] in Cerebral spinal fluid by Latex agglutination','191338','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.788_59421-8','59421-8','http://loinc.org','Neisseria meningitidis serogroups A+B+C+w135+Y Ag [Presence] in Cerebral spinal fluid by Latex agglutination','594218','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.788_6494-9','6494-9','http://loinc.org','Neisseria meningitidis serogroup A Ag [Presence] in Cerebral spinal fluid by Latex agglutination','64949','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.788_6498-0','6498-0','http://loinc.org','Neisseria meningitidis serogroup B Ag [Presence] in Cerebral spinal fluid by Latex agglutination','64980','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.788_6500-3','6500-3','http://loinc.org','Neisseria meningitidis serogroup C Ag [Presence] in Cerebral spinal fluid by Latex agglutination','65003','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.788_6505-2','6505-2','http://loinc.org','Neisseria meningitidis serogroup Y Ag [Presence] in Cerebral spinal fluid by Latex agglutination','65052','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.788_6507-8','6507-8','http://loinc.org','Neisseria meningitidis serogroup w135 Ag [Presence] in Cerebral spinal fluid by Latex agglutination','65078','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.426_13329-8','13329-8','http://loinc.org','Escherichia coli labile toxin [Presence] in Specimen','133298','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.426_16283-4','16283-4','http://loinc.org','Escherichia coli verotoxin [Presence] in Specimen','162834','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.426_21262-1','21262-1','http://loinc.org','Escherichia coli shiga-like toxin [Presence] in Stool by Immunoassay','212621','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.426_28035-4','28035-4','http://loinc.org','Escherichia coli shiga-like toxin [Units/volume] in Specimen by Immunoassay','280354','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.426_51939-7','51939-7','http://loinc.org','Escherichia coli shiga-like toxin 2 [Presence] in Stool by Immunoassay','519397','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.426_51940-5','51940-5','http://loinc.org','Escherichia coli shiga-like toxin 1 [Presence] in Stool by Immunoassay','519405','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.426_53946-0','53946-0','http://loinc.org','Escherichia coli shiga-like toxin identified in Specimen','539460','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.426_64013-6','64013-6','http://loinc.org','Escherichia coli shiga-like toxin 1 and 2 [Identifier] in Stool by Immunoassay','640136','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.426_6574-8','6574-8','http://loinc.org','Escherichia coli verotoxin 1 [Presence] in Stool','65748','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.426_6576-3','6576-3','http://loinc.org','Escherichia coli verotoxin 2 [Presence] in Stool','65763','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.426_82299-9','82299-9','http://loinc.org','Escherichia coli shiga-like toxin 1+2 [Presence] in Stool by Immunoassay','822999','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.547_10906-6','10906-6','http://loinc.org','Saint Louis encephalitis virus IgG Ab [Titer] in Serum by Immunofluorescence','109066','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.547_13230-8','13230-8','http://loinc.org','Saint Louis encephalitis virus IgG Ab [Units/volume] in Cerebral spinal fluid','132308','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.547_17558-8','17558-8','http://loinc.org','Saint Louis encephalitis virus Ab [Units/volume] in Cerebral spinal fluid','175588','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.547_21509-5','21509-5','http://loinc.org','Saint Louis encephalitis virus IgG Ab [Titer] in Cerebral spinal fluid by Immunofluorescence','215095','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.547_22509-4','22509-4','http://loinc.org','Saint Louis encephalitis virus Ab [Titer] in Cerebral spinal fluid','225094','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.547_22510-2','22510-2','http://loinc.org','Saint Louis encephalitis virus Ab [Titer] in Serum','225102','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.547_22511-0','22511-0','http://loinc.org','Saint Louis encephalitis virus IgG Ab [Titer] in Cerebral spinal fluid','225110','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.547_22512-8','22512-8','http://loinc.org','Saint Louis encephalitis virus IgG Ab [Titer] in Serum','225128','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.547_24201-6','24201-6','http://loinc.org','Saint Louis encephalitis virus Ab [Titer] in Serum by Immunofluorescence --1st specimen','242016','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.547_24202-4','24202-4','http://loinc.org','Saint Louis encephalitis virus Ab [Titer] in Serum by Immunofluorescence --2nd specimen','242024','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.547_24275-0','24275-0','http://loinc.org','Saint Louis encephalitis virus Ab [Titer] in Serum --1st specimen','242750','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.547_24276-8','24276-8','http://loinc.org','Saint Louis encephalitis virus Ab [Titer] in Serum --2nd specimen','242768','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.547_29783-8','29783-8','http://loinc.org','Saint Louis encephalitis virus neutralizing antibody [Titer] in Specimen by Neutralization test','297838','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.547_29796-0','29796-0','http://loinc.org','Saint Louis encephalitis virus neutralizing antibody [Titer] in Cerebral spinal fluid by Neutralization test','297960','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.547_29809-1','29809-1','http://loinc.org','Saint Louis encephalitis virus neutralizing antibody [Titer] in Serum by Neutralization test','298091','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.547_29822-4','29822-4','http://loinc.org','Saint Louis encephalitis virus Ab [Titer] in Specimen','298224','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.547_31617-4','31617-4','http://loinc.org','Saint Louis encephalitis virus Ab [Units/volume] in Specimen','316174','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.547_40502-7','40502-7','http://loinc.org','Saint Louis encephalitis virus Ab [Titer] in Serum by Complement fixation','405027','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.547_40514-2','40514-2','http://loinc.org','Saint Louis encephalitis virus Ab [Titer] in Serum by Hemagglutination inhibition','405142','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.547_5365-2','5365-2','http://loinc.org','Saint Louis encephalitis virus Ab [Units/volume] in Serum','53652','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.547_8016-8','8016-8','http://loinc.org','Saint Louis encephalitis virus IgG Ab [Units/volume] in Serum','80168','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.547_8022-6','8022-6','http://loinc.org','Saint Louis encephalitis virus Ab [Units/volume] in Serum by Complement fixation','80226','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.547_9577-8','9577-8','http://loinc.org','Saint Louis encephalitis virus Ab [Titer] in Cerebral spinal fluid by Immunofluorescence','95778','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.547_9578-6','9578-6','http://loinc.org','Saint Louis encephalitis virus Ab [Titer] in Serum by Immunofluorescence','95786','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.547_9634-7','9634-7','http://loinc.org','Saint Louis encephalitis virus IgG Ab [Titer] in Specimen','96347','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.547_10907-4','10907-4','http://loinc.org','Saint Louis encephalitis virus IgM Ab [Titer] in Serum by Immunofluorescence','109074','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.547_13231-6','13231-6','http://loinc.org','Saint Louis encephalitis virus IgM Ab [Units/volume] in Cerebral spinal fluid','132316','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.547_21510-3','21510-3','http://loinc.org','Saint Louis encephalitis virus IgM Ab [Titer] in Cerebral spinal fluid by Immunofluorescence','215103','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.547_22513-6','22513-6','http://loinc.org','Saint Louis encephalitis virus IgM Ab [Titer] in Cerebral spinal fluid','225136','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.547_22514-4','22514-4','http://loinc.org','Saint Louis encephalitis virus IgM Ab [Titer] in Serum','225144','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.547_8017-6','8017-6','http://loinc.org','Saint Louis encephalitis virus IgM Ab [Units/volume] in Serum','80176','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.547_9635-4','9635-4','http://loinc.org','Saint Louis encephalitis virus IgM Ab [Titer] in Specimen','96354','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.427_103555-9','103555-9','http://loinc.org','Escherichia coli O157:H7 DNA [Presence] in Wound by NAA with probe detection','1035559','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.427_33764-2','33764-2','http://loinc.org','Shiga toxin stx gene [Identifier] in Specimen by NAA with probe detection','337642','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.427_38990-8','38990-8','http://loinc.org','Escherichia coli O157:H7 DNA [Presence] in Specimen by NAA with probe detection','389908','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.427_44088-3','44088-3','http://loinc.org','Escherichia coli O157:H7 DNA [Identifier] in Specimen by NAA with probe detection','440883','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.427_53947-8','53947-8','http://loinc.org','Escherichia coli Stx1 and Stx2 toxin stx1 and stx2 and H7 flagellar fliC genes [Identifier] in Specimen by NAA with probe detection','539478','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.427_63427-9','63427-9','http://loinc.org','Escherichia coli Stx1 toxin stx1 gene [Presence] in Specimen by NAA with probe detection','634279','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.427_63428-7','63428-7','http://loinc.org','Escherichia coli Stx2 toxin stx2 gene [Presence] in Specimen by NAA with probe detection','634287','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.427_79386-9','79386-9','http://loinc.org','Escherichia coli Stx1 toxin stx1 gene [Presence] in Stool by NAA with probe detection','793869','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.427_79387-7','79387-7','http://loinc.org','Escherichia coli Stx2 toxin stx2 gene [Presence] in Stool by NAA with probe detection','793877','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.427_80676-0','80676-0','http://loinc.org','Escherichia coli O157 rfbE gene [Presence] in Stool by NAA with probe detection','806760','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.427_80679-4','80679-4','http://loinc.org','Escherichia coli Stx1 and Stx2 toxin stx1+stx2 genes [Presence] in Stool by NAA with probe detection','806794','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.427_81285-9','81285-9','http://loinc.org','Escherichia coli Stx1 and Stx2 toxin stx1 and stx2 genes [Identifier] in Stool by NAA with probe detection','812859','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.427_82203-1','82203-1','http://loinc.org','Escherichia coli Stx1 and Stx2 toxin stx1+stx2 genes [Presence] in Stool by NAA with non-probe detection','822031','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.427_82204-9','82204-9','http://loinc.org','Escherichia coli O157 DNA [Presence] in Stool by NAA with non-probe detection','822049','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.427_97320-6','97320-6','http://loinc.org','Escherichia coli O157 DNA [Presence] in Stool by NAA with probe detection','973206','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.548_20806-6','20806-6','http://loinc.org','Saint Louis encephalitis virus Ab [Presence] in Serum','208066','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.548_22507-8','22507-8','http://loinc.org','Saint Louis encephalitis virus Ab [Presence] in Cerebral spinal fluid','225078','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.548_43232-8','43232-8','http://loinc.org','Saint Louis encephalitis virus IgG Ab [Presence] in Serum','432328','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.548_49068-0','49068-0','http://loinc.org','Saint Louis encephalitis virus IgG and IgM [Interpretation] in Cerebral spinal fluid','490680','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.548_49095-3','49095-3','http://loinc.org','Saint Louis encephalitis virus IgG and IgM [Interpretation] in Serum','490953','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.548_52821-6','52821-6','http://loinc.org','Saint Louis encephalitis virus IgG Ab [Presence] in Serum by Immunoassay','528216','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.548_62435-3','62435-3','http://loinc.org','Saint Louis encephalitis virus IgG Ab [Presence] in Body fluid by Immunoassay','624353','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.548_74825-1','74825-1','http://loinc.org','Saint Louis encephalitis virus Ab [Presence] in Serum by Hemagglutination inhibition','748251','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.548_8021-8','8021-8','http://loinc.org','Saint Louis encephalitis virus Ab [Presence] in Cerebral spinal fluid by Immunoassay','80218','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.548_8023-4','8023-4','http://loinc.org','Saint Louis encephalitis virus Ab [Presence] in Serum by Immunoassay','80234','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.548_8024-2','8024-2','http://loinc.org','Saint Louis encephalitis virus Ab [Presence] in Serum by Immunofluorescence','80242','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.548_94290-4','94290-4','http://loinc.org','Saint Louis encephalitis virus neutralizing antibody [Presence] in Specimen by Neutralization test','942904','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.548_95677-1','95677-1','http://loinc.org','Saint Louis encephalitis virus IgG Ab [Presence] in Specimen by Immunoassay','956771','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.548_95711-8','95711-8','http://loinc.org','Saint Louis encephalitis virus IgA Ab [Presence] in Specimen by Immunoassay','957118','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.548_42005-9','42005-9','http://loinc.org','Saint Louis encephalitis virus IgM Ab [Presence] in Serum by Immunoassay','420059','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.548_42006-7','42006-7','http://loinc.org','Saint Louis encephalitis virus IgM Ab [Presence] in Cerebral spinal fluid by Immunoassay','420067','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.548_42965-4','42965-4','http://loinc.org','Saint Louis encephalitis virus IgM Ab [Presence] in Serum','429654','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.548_42966-2','42966-2','http://loinc.org','Saint Louis encephalitis virus IgM Ab [Presence] in Cerebral spinal fluid','429662','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.548_48507-8','48507-8','http://loinc.org','Saint Louis encephalitis virus IgM Ab [Presence] in Body fluid by Immunoassay','485078','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.548_49144-9','49144-9','http://loinc.org','Saint Louis encephalitis virus IgM Ab [Presence] in Body fluid','491449','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.548_62434-6','62434-6','http://loinc.org','Saint Louis encephalitis virus IgM Ab [Presence] in Body fluid by Immunofluorescence','624346','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.548_95692-0','95692-0','http://loinc.org','Saint Louis encephalitis virus IgM Ab [Presence] in Specimen by Immunoassay','956920','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.307_13265-4','13265-4','http://loinc.org','Leptospira sp IgM Ab [Titer] in Serum','132654','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.307_23201-7','23201-7','http://loinc.org','Leptospira sp IgM Ab [Presence] in Serum by Immunoassay','232017','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.307_23202-5','23202-5','http://loinc.org','Leptospira sp IgM Ab [Presence] in Serum','232025','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.307_27384-7','27384-7','http://loinc.org','Leptospira sp IgM Ab [Units/volume] in Cerebral spinal fluid by Immunoassay','273847','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.307_31486-4','31486-4','http://loinc.org','Leptospira sp IgM Ab [Units/volume] in Cerebral spinal fluid','314864','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.307_31487-2','31487-2','http://loinc.org','Leptospira sp IgM Ab [Units/volume] in Serum','314872','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.307_51819-1','51819-1','http://loinc.org','Leptospira sp IgM Ab [Units/volume] in Serum by Immunoassay','518191','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.307_56953-3','56953-3','http://loinc.org','Leptospira interrogans IgM Ab [Presence] in Serum by Immunoassay','569533','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.428_32777-5','32777-5','http://loinc.org','Escherichia coli O157:H7 Ag [Presence] in Stool','327775','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.428_44087-5','44087-5','http://loinc.org','Escherichia coli O157 Ag [Presence] in Specimen','440875','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.539_5878-4','5878-4','http://loinc.org','Rickettsia sp identified in Blood by Organism specific culture','58784','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.539_6544-1','6544-1','http://loinc.org','Rickettsia sp identified in Genital specimen by Organism specific culture','65441','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.539_6545-8','6545-8','http://loinc.org','Rickettsia sp identified in Sputum by Organism specific culture','65458','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.539_6546-6','6546-6','http://loinc.org','Rickettsia sp identified in Specimen by Organism specific culture','65466','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.770_99094-5','99094-5','http://loinc.org','Streptococcus pneumoniae DNA [Presence] in Cerebral spinal fluid by NAA with probe detection','990945','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.770_53917-1','53917-1','http://loinc.org','Streptococcus pneumoniae DNA [Presence] in Blood by NAA with probe detection','539171','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.770_76600-6','76600-6','http://loinc.org','Streptococcus pneumoniae nanA gene [#/volume] in XXX.body fluid by NAA with probe detection','766006','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.770_82187-6','82187-6','http://loinc.org','Streptococcus pneumoniae DNA [Presence] in Cerebral spinal fluid by NAA with non-probe detection','821876','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.770_97637-3','97637-3','http://loinc.org','Streptococcus pneumoniae DNA [Presence] in Synovial fluid by NAA with non-probe detection','976373','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.770_92771-5','92771-5','http://loinc.org','Streptococcus pneumoniae DNA [Presence] by NAA with probe detection in Positive blood culture','927715','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.771_85768-0','85768-0','http://loinc.org','Streptococcus pneumoniae DNA [Presence] by NAA with non-probe detection in Positive blood culture','857680','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.771_88275-3','88275-3','http://loinc.org','Streptococcus pneumoniae gryB gene [Presence] by Probe in Positive blood culture','882753','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.771_92771-5','92771-5','http://loinc.org','Streptococcus pneumoniae DNA [Presence] by NAA with probe detection in Positive blood culture','927715','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.530_49615-8','49615-8','http://loinc.org','Borrelia sp DNA [Identifier] in Specimen by NAA with probe detection','496158','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.530_82781-6','82781-6','http://loinc.org','Borrelia miyamotoi flaB gene [Presence] in Specimen by NAA with probe detection','827816','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.530_87947-8','87947-8','http://loinc.org','Borrelia sp DNA identified in Tissue by NAA with probe detection','879478','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.530_88581-4','88581-4','http://loinc.org','Borrelia sp DNA [Identifier] in Cerebral spinal fluid by NAA with probe detection','885814','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.530_82476-3','82476-3','http://loinc.org','Borrelia miyamotoi glpQ gene [Presence] in Cerebral spinal fluid by NAA with non-probe detection','824763','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.530_94185-6','94185-6','http://loinc.org','Borrelia miyamotoi glpQ gene [Presence] in Specimen by NAA with probe detection','941856','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.530_96056-7','96056-7','http://loinc.org','Borrelia sp DNA [Presence] in Blood by NAA with probe detection','960567','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.530_101749-0','101749-0','http://loinc.org','Borrelia miyamotoi DNA [Presence] in Blood by NAA with probe detection','1017490','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.530_82475-5','82475-5','http://loinc.org','Borrelia miyamotoi glpQ gene [Presence] in Blood by NAA with non-probe detection','824755','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.772_85778-9','85778-9','http://loinc.org','Haemophilus influenzae DNA [Presence] by NAA with non-probe detection in Positive blood culture','857789','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.531_13202-7','13202-7','http://loinc.org','Borrelia burgdorferi IgG Ab [Presence] in Cerebral spinal fluid by Immunoblot','132027','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.531_13203-5','13203-5','http://loinc.org','Borrelia burgdorferi IgM Ab [Presence] in Cerebral spinal fluid by Immunoblot','132035','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.531_13206-8','13206-8','http://loinc.org','Borrelia burgdorferi IgG Ab [Presence] in Synovial fluid by Immunoblot','132068','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.531_13207-6','13207-6','http://loinc.org','Borrelia burgdorferi IgM Ab [Presence] in Synovial fluid by Immunoblot','132076','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.531_18203-0','18203-0','http://loinc.org','Borrelia burgdorferi IgG+IgM Ab [Presence] in Serum by Immunoblot','182030','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.531_21116-9','21116-9','http://loinc.org','Borrelia burgdorferi 66kD IgM Ab [Presence] in Serum by Immunoblot','211169','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.531_21117-7','21117-7','http://loinc.org','Borrelia burgdorferi 93kD IgM Ab [Presence] in Serum by Immunoblot','211177','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.531_23980-6','23980-6','http://loinc.org','Borrelia burgdorferi IgG Ab [Presence] in Body fluid by Immunoblot','239806','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.531_23982-2','23982-2','http://loinc.org','Borrelia burgdorferi IgM Ab [Presence] in Body fluid by Immunoblot','239822','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.531_28036-2','28036-2','http://loinc.org','Borrelia burgdorferi 39kD IgG Ab [Presence] in Cerebral spinal fluid by Immunoblot','280362','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.531_28037-0','28037-0','http://loinc.org','Borrelia burgdorferi 39kD IgM Ab [Presence] in Cerebral spinal fluid by Immunoblot','280370','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.531_28039-6','28039-6','http://loinc.org','Borrelia burgdorferi 66kD IgG Ab [Presence] in Cerebral spinal fluid by Immunoblot','280396','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.531_28040-4','28040-4','http://loinc.org','Borrelia burgdorferi 41kD IgG Ab [Presence] in Cerebral spinal fluid by Immunoblot','280404','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.531_28043-8','28043-8','http://loinc.org','Borrelia burgdorferi 41kD IgM Ab [Presence] in Cerebral spinal fluid by Immunoblot','280438','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.531_28048-7','28048-7','http://loinc.org','Borrelia burgdorferi 58kD IgG Ab [Presence] in Cerebral spinal fluid by Immunoblot','280487','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.531_28053-7','28053-7','http://loinc.org','Borrelia burgdorferi 30kD IgG Ab [Presence] in Cerebral spinal fluid by Immunoblot','280537','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.531_28054-5','28054-5','http://loinc.org','Borrelia burgdorferi 93kD IgG Ab [Presence] in Cerebral spinal fluid by Immunoblot','280545','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.531_28055-2','28055-2','http://loinc.org','Borrelia burgdorferi 45kD IgG Ab [Presence] in Cerebral spinal fluid by Immunoblot','280552','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.531_28056-0','28056-0','http://loinc.org','Borrelia burgdorferi 28kD IgG Ab [Presence] in Cerebral spinal fluid by Immunoblot','280560','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.531_28057-8','28057-8','http://loinc.org','Borrelia burgdorferi 23kD IgG Ab [Presence] in Cerebral spinal fluid by Immunoblot','280578','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.531_28058-6','28058-6','http://loinc.org','Borrelia burgdorferi 21kD IgG Ab [Presence] in Cerebral spinal fluid by Immunoblot','280586','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.531_28062-8','28062-8','http://loinc.org','Borrelia burgdorferi 23kD IgM Ab [Presence] in Cerebral spinal fluid by Immunoblot','280628','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.531_29898-4','29898-4','http://loinc.org','Borrelia burgdorferi IgG Ab [Presence] in Specimen by Immunoblot','298984','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.531_30010-3','30010-3','http://loinc.org','Borrelia burgdorferi 93kD IgG Ab [Presence] in Synovial fluid by Immunoblot','300103','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.531_30011-1','30011-1','http://loinc.org','Borrelia burgdorferi 45kD IgG Ab [Presence] in Synovial fluid by Immunoblot','300111','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.531_30012-9','30012-9','http://loinc.org','Borrelia burgdorferi 28kD IgG Ab [Presence] in Synovial fluid by Immunoblot','300129','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.531_30013-7','30013-7','http://loinc.org','Borrelia burgdorferi 23kD IgG Ab [Presence] in Synovial fluid by Immunoblot','300137','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.531_30014-5','30014-5','http://loinc.org','Borrelia burgdorferi 21kD IgG Ab [Presence] in Synovial fluid by Immunoblot','300145','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.531_30015-2','30015-2','http://loinc.org','Borrelia burgdorferi 41kD IgG Ab [Presence] in Synovial fluid by Immunoblot','300152','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.531_30016-0','30016-0','http://loinc.org','Borrelia burgdorferi 66kD IgG Ab [Presence] in Synovial fluid by Immunoblot','300160','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.531_30017-8','30017-8','http://loinc.org','Borrelia burgdorferi 58kD IgG Ab [Presence] in Synovial fluid by Immunoblot','300178','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.531_30018-6','30018-6','http://loinc.org','Borrelia burgdorferi 30kD IgG Ab [Presence] in Synovial fluid by Immunoblot','300186','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.531_30019-4','30019-4','http://loinc.org','Borrelia burgdorferi 41kD IgM Ab [Presence] in Synovial fluid by Immunoblot','300194','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.531_30020-2','30020-2','http://loinc.org','Borrelia burgdorferi 39kD IgM Ab [Presence] in Synovial fluid by Immunoblot','300202','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.531_30021-0','30021-0','http://loinc.org','Borrelia burgdorferi 23kD IgM Ab [Presence] in Synovial fluid by Immunoblot','300210','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.531_32666-0','32666-0','http://loinc.org','Borrelia burgdorferi 25kD IgM Ab [Presence] in Serum by Immunoblot','326660','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.531_42237-8','42237-8','http://loinc.org','Borrelia burgdorferi 18kD IgG Ab [Presence] in Synovial fluid by Immunoblot','422378','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.531_42239-4','42239-4','http://loinc.org','Borrelia burgdorferi 39kD IgG Ab [Presence] in Synovial fluid by Immunoblot','422394','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.531_43573-5','43573-5','http://loinc.org','Borrelia burgdorferi IgM Ab [Units/volume] in Cerebral spinal fluid by Immunoblot','435735','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.531_44946-2','44946-2','http://loinc.org','Borrelia burgdorferi 31kD IgG Ab [Presence] in Serum by Immunoblot','449462','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.531_44947-0','44947-0','http://loinc.org','Borrelia burgdorferi 31kD IgM Ab [Presence] in Serum by Immunoblot','449470','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.531_44948-8','44948-8','http://loinc.org','Borrelia burgdorferi 34kD IgM Ab [Presence] in Serum by Immunoblot','449488','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.531_44949-6','44949-6','http://loinc.org','Borrelia burgdorferi 34kD IgG Ab [Presence] in Serum by Immunoblot','449496','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.531_48500-3','48500-3','http://loinc.org','Borrelia burgdorferi 18kD IgG Ab [Presence] in Cerebral spinal fluid by Immunoblot','485003','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.531_49973-1','49973-1','http://loinc.org','Borrelia burgdorferi 31kD IgG Ab [Presence] in Cerebral spinal fluid by Immunoblot','499731','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.531_49974-9','49974-9','http://loinc.org','Borrelia burgdorferi 31kD IgM Ab [Presence] in Cerebral spinal fluid by Immunoblot','499749','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.531_49975-6','49975-6','http://loinc.org','Borrelia burgdorferi 34kD IgG Ab [Presence] in Cerebral spinal fluid by Immunoblot','499756','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.531_49976-4','49976-4','http://loinc.org','Borrelia burgdorferi 34kD IgM Ab [Presence] in Cerebral spinal fluid by Immunoblot','499764','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.531_49977-2','49977-2','http://loinc.org','Borrelia burgdorferi 35kD IgG Ab [Presence] in Serum by Immunoblot','499772','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.531_49978-0','49978-0','http://loinc.org','Borrelia burgdorferi 35kD IgG Ab [Presence] in Cerebral spinal fluid by Immunoblot','499780','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.531_49979-8','49979-8','http://loinc.org','Borrelia burgdorferi 35kD IgM Ab [Presence] in Serum by Immunoblot','499798','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.531_49980-6','49980-6','http://loinc.org','Borrelia burgdorferi 35kD IgM Ab [Presence] in Cerebral spinal fluid by Immunoblot','499806','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.531_49981-4','49981-4','http://loinc.org','Borrelia burgdorferi 37kD IgG Ab [Presence] in Serum by Immunoblot','499814','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.531_49982-2','49982-2','http://loinc.org','Borrelia burgdorferi 37kD IgG Ab [Presence] in Cerebral spinal fluid by Immunoblot','499822','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.531_49983-0','49983-0','http://loinc.org','Borrelia burgdorferi 37kD IgM Ab [Presence] in Serum by Immunoblot','499830','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.531_49984-8','49984-8','http://loinc.org','Borrelia burgdorferi 37kD IgM Ab [Presence] in Cerebral spinal fluid by Immunoblot','499848','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.531_49991-3','49991-3','http://loinc.org','Borrelia burgdorferi 18/20kD IgG Ab [Presence] in Cerebral spinal fluid by Immunoblot','499913','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.531_49992-1','49992-1','http://loinc.org','Borrelia burgdorferi 18/20kD IgG Ab [Presence] in Serum by Immunoblot','499921','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.531_49993-9','49993-9','http://loinc.org','Borrelia burgdorferi 18/20kD IgM Ab [Presence] in Cerebral spinal fluid by Immunoblot','499939','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.531_49994-7','49994-7','http://loinc.org','Borrelia burgdorferi 18/20kD IgM Ab [Presence] in Serum by Immunoblot','499947','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.531_49995-4','49995-4','http://loinc.org','Borrelia burgdorferi 83/93kD IgG Ab [Presence] in Cerebral spinal fluid by Immunoblot','499954','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.531_49996-2','49996-2','http://loinc.org','Borrelia burgdorferi 83/93kD IgG Ab [Presence] in Serum by Immunoblot','499962','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.531_49997-0','49997-0','http://loinc.org','Borrelia burgdorferi 83/93kD IgM Ab [Presence] in Serum by Immunoblot','499970','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.531_49998-8','49998-8','http://loinc.org','Borrelia burgdorferi 83/93kD IgM Ab [Presence] in Cerebral spinal fluid by Immunoblot','499988','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.531_51745-8','51745-8','http://loinc.org','Borrelia burgdorferi G39/40 IgG Ab [Presence] in Serum by Immunoblot','517458','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.531_51746-6','51746-6','http://loinc.org','Borrelia burgdorferi 49736 IgG Ab [Presence] in Serum by Immunoblot','517466','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.531_6320-6','6320-6','http://loinc.org','Borrelia burgdorferi IgG Ab [Presence] in Serum by Immunoblot','63206','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.531_6321-4','6321-4','http://loinc.org','Borrelia burgdorferi IgM Ab [Presence] in Serum by Immunoblot','63214','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.531_9587-7','9587-7','http://loinc.org','Borrelia burgdorferi 41kD IgM Ab [Presence] in Serum by Immunoblot','95877','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.531_9588-5','9588-5','http://loinc.org','Borrelia burgdorferi 18kD IgG Ab [Presence] in Serum by Immunoblot','95885','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.531_9589-3','9589-3','http://loinc.org','Borrelia burgdorferi 23kD IgG Ab [Presence] in Serum by Immunoblot','95893','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.531_9590-1','9590-1','http://loinc.org','Borrelia burgdorferi 28kD IgG Ab [Presence] in Serum by Immunoblot','95901','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.531_9591-9','9591-9','http://loinc.org','Borrelia burgdorferi 30kD IgG Ab [Presence] in Serum by Immunoblot','95919','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.531_9592-7','9592-7','http://loinc.org','Borrelia burgdorferi 39kD IgG Ab [Presence] in Serum by Immunoblot','95927','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.531_9593-5','9593-5','http://loinc.org','Borrelia burgdorferi 41kD IgG Ab [Presence] in Serum by Immunoblot','95935','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.531_9594-3','9594-3','http://loinc.org','Borrelia burgdorferi 45kD IgG Ab [Presence] in Serum by Immunoblot','95943','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.531_9595-0','9595-0','http://loinc.org','Borrelia burgdorferi 58kD IgG Ab [Presence] in Serum by Immunoblot','95950','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.531_9596-8','9596-8','http://loinc.org','Borrelia burgdorferi 66kD IgG Ab [Presence] in Serum by Immunoblot','95968','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.531_9597-6','9597-6','http://loinc.org','Borrelia burgdorferi 93kD IgG Ab [Presence] in Serum by Immunoblot','95976','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.531_9598-4','9598-4','http://loinc.org','Borrelia burgdorferi 23kD IgM Ab [Presence] in Serum by Immunoblot','95984','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.531_9599-2','9599-2','http://loinc.org','Borrelia burgdorferi 39kD IgM Ab [Presence] in Serum by Immunoblot','95992','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.531_98206-6','98206-6','http://loinc.org','Borrelia burgdorferi 21kD IgG Ab [Presence] in Serum by Immunoblot','982066','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.773_53607-8','53607-8','http://loinc.org','Haemophilus influenzae B DNA [Presence] in Blood by NAA with probe detection','536078','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.773_76589-1','76589-1','http://loinc.org','Haemophilus influenzae lex2 gene [#/mass] in XXX.tissue by NAA with probe detection','765891','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.773_76602-2','76602-2','http://loinc.org','Haemophilus influenzae lex2 gene [#/volume] in XXX.body fluid by NAA with probe detection','766022','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.773_82183-5','82183-5','http://loinc.org','Haemophilus influenzae DNA [Presence] in Cerebral spinal fluid by NAA with non-probe detection','821835','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.773_99090-3','99090-3','http://loinc.org','Haemophilus influenzae DNA [Presence] in Cerebral spinal fluid by NAA with probe detection','990903','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.532_100711-1','100711-1','http://loinc.org','Borrelia burgdorferi.VlsE1+pepC10 Ab [Units/volume] in Serum by Immunoassay','1007111','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.532_101353-1','101353-1','http://loinc.org','Borrelia burgdorferi Ab [Interpretation] in Serum Qualitative by IA.MTTT','1013531','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.532_101357-2','101357-2','http://loinc.org','Borrelia burgdorferi.VlsE+OspC IgG+IgM Ab [Presence] in Serum by Immunoassay','1013572','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.532_101403-4','101403-4','http://loinc.org','Borrelia burgdorferi.VlsE1+pepC10 IgG+IgM Ab [Presence] in Serum by Immunoassay','1014034','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.532_13204-3','13204-3','http://loinc.org','Borrelia burgdorferi IgG Ab [Units/volume] in Cerebral spinal fluid by Immunofluorescence','132043','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.532_13205-0','13205-0','http://loinc.org','Borrelia burgdorferi IgM Ab [Units/volume] in Cerebral spinal fluid by Immunofluorescence','132050','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.532_14077-2','14077-2','http://loinc.org','Borrelia burgdorferi IgG Ab [Units/volume] in Cerebral spinal fluid by Immunoassay','140772','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.532_14078-0','14078-0','http://loinc.org','Borrelia burgdorferi IgM Ab [Units/volume] in Cerebral spinal fluid by Immunoassay','140780','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.532_16475-6','16475-6','http://loinc.org','Borrelia burgdorferi Ab [Presence] in Cerebral spinal fluid by Immunoassay','164756','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.532_16476-4','16476-4','http://loinc.org','Borrelia burgdorferi Ab [Presence] in Body fluid by Immunoassay','164764','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.532_16478-0','16478-0','http://loinc.org','Borrelia burgdorferi IgA Ab [Presence] in Serum by Immunoassay','164780','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.532_16479-8','16479-8','http://loinc.org','Borrelia burgdorferi IgA Ab [Presence] in Cerebral spinal fluid by Immunoassay','164798','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.532_16480-6','16480-6','http://loinc.org','Borrelia burgdorferi IgG Ab [Presence] in Serum or Plasma by Immunoassay','164806','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.532_16481-4','16481-4','http://loinc.org','Borrelia burgdorferi IgG Ab [Units/volume] in Body fluid by Immunoassay','164814','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.532_16482-2','16482-2','http://loinc.org','Borrelia burgdorferi IgM Ab [Units/volume] in Body fluid by Immunoassay','164822','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.532_20449-5','20449-5','http://loinc.org','Borrelia burgdorferi Ab [Presence] in Serum by Immunoassay','204495','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.532_21118-5','21118-5','http://loinc.org','Borrelia burgdorferi IgG Ab [Presence] in Synovial fluid by Immunoassay','211185','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.532_21119-3','21119-3','http://loinc.org','Borrelia burgdorferi IgM Ab [Presence] in Synovial fluid by Immunoassay','211193','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.532_23676-0','23676-0','http://loinc.org','Borrelia burgdorferi Ab [Presence] in Serum by Immunofluorescence','236760','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.532_23978-0','23978-0','http://loinc.org','Borrelia burgdorferi IgG Ab [Titer] in Cerebral spinal fluid by Immunofluorescence','239780','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.532_23984-8','23984-8','http://loinc.org','Borrelia burgdorferi IgM Ab [Titer] in Cerebral spinal fluid by Immunofluorescence','239848','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.532_30526-8','30526-8','http://loinc.org','Borrelia burgdorferi IgM Ab [Presence] in Serum by Immunofluorescence','305268','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.532_31155-5','31155-5','http://loinc.org','Borrelia burgdorferi Ab [Units/volume] in Specimen by Immunoassay','311555','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.532_38173-1','38173-1','http://loinc.org','Borrelia burgdorferi C6 Ab [Units/volume] in Serum by Immunoassay','381731','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.532_38174-9','38174-9','http://loinc.org','Borrelia burgdorferi C6 Ab [Units/volume] in Cerebral spinal fluid by Immunoassay','381749','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.532_40612-4','40612-4','http://loinc.org','Borrelia burgdorferi IgM Ab [Presence] in Serum or Plasma by Immunoassay','406124','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.532_43842-4','43842-4','http://loinc.org','Borrelia burgdorferi Ab [Titer] in Serum by Immunoassay','438424','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.532_44455-4','44455-4','http://loinc.org','Borrelia burgdorferi Ab [Units/volume] in Serum by Immunoassay --1st specimen','444554','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.532_45165-8','45165-8','http://loinc.org','Borrelia burgdorferi IgA Ab [Units/volume] in Serum by Immunofluorescence','451658','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.532_45189-8','45189-8','http://loinc.org','Borrelia burgdorferi Ab [Presence] in Cerebral spinal fluid by Immunofluorescence','451898','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.532_5060-9','5060-9','http://loinc.org','Borrelia burgdorferi Ab [Units/volume] in Serum by Immunoassay','50609','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.532_5061-7','5061-7','http://loinc.org','Borrelia burgdorferi Ab [Titer] in Serum by Immunofluorescence','50617','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.532_5062-5','5062-5','http://loinc.org','Borrelia burgdorferi IgG Ab [Units/volume] in Serum by Immunoassay','50625','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.532_5063-3','5063-3','http://loinc.org','Borrelia burgdorferi IgG Ab [Titer] in Serum by Immunofluorescence','50633','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.532_5064-1','5064-1','http://loinc.org','Borrelia burgdorferi IgM Ab [Units/volume] in Serum by Immunoassay','50641','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.532_5065-8','5065-8','http://loinc.org','Borrelia burgdorferi IgM Ab [Titer] in Serum by Immunofluorescence','50658','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.532_51742-5','51742-5','http://loinc.org','Borrelia burgdorferi 49736 IgM Ab [Units/volume] in Serum by Immunoassay','517425','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.532_51743-3','51743-3','http://loinc.org','Borrelia burgdorferi 49736 IgG Ab [Units/volume] in Serum by Immunoassay','517433','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.532_51744-1','51744-1','http://loinc.org','Borrelia burgdorferi 49736 IgA Ab [Units/volume] in Serum by Immunoassay','517441','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.532_6318-0','6318-0','http://loinc.org','Borrelia burgdorferi Ab [Units/volume] in Cerebral spinal fluid by Immunoassay','63180','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.532_6319-8','6319-8','http://loinc.org','Borrelia burgdorferi Ab [Units/volume] in Body fluid by Immunoassay','63198','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.532_79708-4','79708-4','http://loinc.org','Borrelia burgdorferi IgG Ab [Presence] in Serum or Plasma by Immunofluorescence','797084','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.532_79709-2','79709-2','http://loinc.org','Borrelia burgdorferi IgG Ab [Presence] in Cerebral spinal fluid by Immunofluorescence','797092','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.532_83080-2','83080-2','http://loinc.org','Borrelia burgdorferi IgG Ab [Presence] in Cerebral spinal fluid by Immunoassay','830802','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.532_83081-0','83081-0','http://loinc.org','Borrelia burgdorferi IgG+IgM Ab [Presence] in Serum by Immunoassay','830810','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.532_98208-2','98208-2','http://loinc.org','Borrelia burgdorferi IgM Ab [Presence] in Cerebral spinal fluid by Immunoassay','982082','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.413_14807-2','14807-2','http://loinc.org','Lead [Moles/volume] in Blood','148072','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.413_17052-2','17052-2','http://loinc.org','Lead [Presence] in Blood','170522','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.413_17698-2','17698-2','http://loinc.org','Tetraethyl lead [Mass/volume] in Blood','176982','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.413_27129-6','27129-6','http://loinc.org','Lead [Mass/mass] in Red Blood Cells','271296','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.413_32325-3','32325-3','http://loinc.org','Lead [Moles/volume] in Red Blood Cells','323253','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.413_5671-3','5671-3','http://loinc.org','Lead [Mass/volume] in Blood','56713','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.413_5674-7','5674-7','http://loinc.org','Lead [Mass/volume] in Red Blood Cells','56747','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.413_10368-9','10368-9','http://loinc.org','Lead [Mass/volume] in Capillary blood','103689','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.413_77307-7','77307-7','http://loinc.org','Lead [Mass/volume] in Venous blood','773077','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.414_77307-7','77307-7','http://loinc.org','Lead [Mass/volume] in Venous blood','773077','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.535_53608-6','53608-6','http://loinc.org','Rickettsia sp DNA [Presence] in Blood by NAA with probe detection','536086','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.535_48863-5','48863-5','http://loinc.org','Rickettsia sp DNA [Identifier] in Specimen by RFLP','488635','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.535_48869-2','48869-2','http://loinc.org','Rickettsia sp DNA [Presence] in Specimen by NAA with probe detection','488692','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.535_49127-4','49127-4','http://loinc.org','Rickettsia sp identified in Specimen by Sequencing','491274','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.535_67726-0','67726-0','http://loinc.org','Rickettsia sp DNA [Identifier] in Specimen by NAA with probe detection','677260','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.415_10368-9','10368-9','http://loinc.org','Lead [Mass/volume] in Capillary blood','103689','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.536_13199-5','13199-5','http://loinc.org','Rickettsia conorii IgG Ab [Units/volume] in Serum','131995','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.536_18429-1','18429-1','http://loinc.org','Rickettsia rickettsii IgG Ab [Units/volume] in Cerebral spinal fluid','184291','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.536_21492-4','21492-4','http://loinc.org','Rickettsia conorii IgG Ab [Titer] in Serum','214924','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.536_21494-0','21494-0','http://loinc.org','Rickettsia spotted fever group IgG Ab [Titer] in Cerebral spinal fluid by Immunofluorescence','214940','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.536_22476-6','22476-6','http://loinc.org','Rickettsia spotted fever group IgG Ab [Titer] in Cerebral spinal fluid','224766','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.536_22477-4','22477-4','http://loinc.org','Rickettsia spotted fever group IgG Ab [Titer] in Serum','224774','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.536_22482-4','22482-4','http://loinc.org','Rickettsia rickettsii IgG Ab [Titer] in Serum','224824','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.536_24207-3','24207-3','http://loinc.org','Rickettsia spotted fever group IgG Ab [Titer] in Serum by Immunofluorescence --1st specimen','242073','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.536_24208-1','24208-1','http://loinc.org','Rickettsia spotted fever group IgG Ab [Titer] in Serum by Immunofluorescence --2nd specimen','242081','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.536_24281-8','24281-8','http://loinc.org','Rickettsia spotted fever group IgG Ab [Titer] in Serum --1st specimen','242818','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.536_24282-6','24282-6','http://loinc.org','Rickettsia spotted fever group IgG Ab [Titer] in Serum --2nd specimen','242826','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.536_25749-3','25749-3','http://loinc.org','Rickettsia conorii IgG Ab [Titer] in Serum by Immunofluorescence','257493','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.536_32999-5','32999-5','http://loinc.org','Rickettsia spotted fever group IgG Ab [Presence] in Serum','329995','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.536_41476-3','41476-3','http://loinc.org','Rickettsia rickettsii IgG Ab [Presence] in Serum by Immunoassay','414763','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.536_42968-8','42968-8','http://loinc.org','Rickettsia rickettsii IgG Ab [Presence] in Serum','429688','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.536_47069-0','47069-0','http://loinc.org','Rickettsia rickettsii IgG Ab [Titer] in Cerebral spinal fluid by Immunofluorescence','470690','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.536_47477-5','47477-5','http://loinc.org','Rickettsia rickettsii IgG Ab [Titer] in Cerebral spinal fluid','474775','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.536_48858-5','48858-5','http://loinc.org','Rickettsia africae IgG Ab [Titer] in Serum by Immunofluorescence','488585','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.536_48859-3','48859-3','http://loinc.org','Rickettsia akari IgG Ab [Titer] in Serum by Immunofluorescence','488593','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.536_48862-7','48862-7','http://loinc.org','Rickettsia parkeri IgG Ab [Titer] in Serum by Immunofluorescence','488627','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.536_48903-9','48903-9','http://loinc.org','Rickettsia africae IgG Ab [Titer] in Body fluid by Immunofluorescence','489039','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.536_48904-7','48904-7','http://loinc.org','Rickettsia akari IgG Ab [Titer] in Body fluid by Immunofluorescence','489047','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.536_48907-0','48907-0','http://loinc.org','Rickettsia conorii IgG Ab [Titer] in Body fluid by Immunofluorescence','489070','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.536_48909-6','48909-6','http://loinc.org','Rickettsia parkeri IgG Ab [Titer] in Body fluid by Immunofluorescence','489096','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.536_48913-8','48913-8','http://loinc.org','Rickettsia rickettsii IgG Ab [Titer] in Body fluid by Immunofluorescence','489138','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.536_49145-6','49145-6','http://loinc.org','Rickettsia rickettsii IgG Ab [Titer] in Body fluid','491456','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.536_49149-8','49149-8','http://loinc.org','Rickettsia parkeri IgG Ab [Titer] in Body fluid','491498','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.536_49151-4','49151-4','http://loinc.org','Rickettsia parkeri IgG Ab [Titer] in Serum','491514','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.536_49154-8','49154-8','http://loinc.org','Rickettsia conorii IgG Ab [Titer] in Body fluid','491548','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.536_49157-1','49157-1','http://loinc.org','Rickettsia akari IgG Ab [Titer] in Serum','491571','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.536_49158-9','49158-9','http://loinc.org','Rickettsia akari IgG Ab [Titer] in Body fluid','491589','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.536_49159-7','49159-7','http://loinc.org','Rickettsia africae IgG Ab [Titer] in Body fluid','491597','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.536_49161-3','49161-3','http://loinc.org','Rickettsia africae IgG Ab [Titer] in Serum','491613','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.536_51804-3','51804-3','http://loinc.org','Rickettsia conorii IgG Ab [Units/volume] in Serum by Immunoassay','518043','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.536_5307-4','5307-4','http://loinc.org','Rickettsia rickettsii IgG Ab [Titer] in Serum by Immunofluorescence','53074','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.536_5312-4','5312-4','http://loinc.org','Rickettsia spotted fever group IgG Ab [Units/volume] in Serum by Immunoassay','53124','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.536_5313-2','5313-2','http://loinc.org','Rickettsia spotted fever group IgG Ab [Titer] in Serum by Immunofluorescence','53132','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.536_58809-5','58809-5','http://loinc.org','Rickettsia conorii IgG Ab [Titer] in Cerebral spinal fluid by Immunofluorescence','588095','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.536_7998-8','7998-8','http://loinc.org','Rickettsia spotted fever group IgG Ab [Units/volume] in Serum','79988','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.536_8003-6','8003-6','http://loinc.org','Rickettsia rickettsii IgG Ab [Units/volume] in Serum','80036','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.536_87924-7','87924-7','http://loinc.org','Rickettsia conorii IgG Ab [Presence] in Serum by Immunoassay','879247','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.537_13200-1','13200-1','http://loinc.org','Rickettsia conorii IgM Ab [Units/volume] in Serum','132001','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.537_18430-9','18430-9','http://loinc.org','Rickettsia rickettsii IgM Ab [Units/volume] in Cerebral spinal fluid','184309','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.537_21493-2','21493-2','http://loinc.org','Rickettsia conorii IgM Ab [Titer] in Serum','214932','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.537_21495-7','21495-7','http://loinc.org','Rickettsia spotted fever group IgM Ab [Titer] in Cerebral spinal fluid by Immunofluorescence','214957','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.537_22478-2','22478-2','http://loinc.org','Rickettsia spotted fever group IgM Ab [Titer] in Cerebral spinal fluid','224782','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.537_22479-0','22479-0','http://loinc.org','Rickettsia spotted fever group IgM Ab [Titer] in Serum','224790','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.537_22483-2','22483-2','http://loinc.org','Rickettsia rickettsii IgM Ab [Titer] in Serum','224832','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.537_25750-1','25750-1','http://loinc.org','Rickettsia conorii IgM Ab [Titer] in Serum by Immunofluorescence','257501','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.537_31601-8','31601-8','http://loinc.org','Rickettsia spotted fever group IgM Ab [Units/volume] in Cerebral spinal fluid','316018','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.537_33000-1','33000-1','http://loinc.org','Rickettsia spotted fever group IgM Ab [Presence] in Serum','330001','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.537_41475-5','41475-5','http://loinc.org','Rickettsia rickettsii IgM Ab [Presence] in Serum by Immunoassay','414755','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.537_42969-6','42969-6','http://loinc.org','Rickettsia rickettsii IgM Ab [Presence] in Serum','429696','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.537_47070-8','47070-8','http://loinc.org','Rickettsia rickettsii IgM Ab [Titer] in Cerebral spinal fluid by Immunofluorescence','470708','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.537_47478-3','47478-3','http://loinc.org','Rickettsia rickettsii IgM Ab [Titer] in Cerebral spinal fluid','474783','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.537_48857-7','48857-7','http://loinc.org','Rickettsia africae IgM Ab [Titer] in Serum by Immunofluorescence','488577','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.537_48860-1','48860-1','http://loinc.org','Rickettsia akari IgM Ab [Titer] in Serum by Immunofluorescence','488601','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.537_48861-9','48861-9','http://loinc.org','Rickettsia parkeri IgM Ab [Titer] in Serum by Immunofluorescence','488619','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.537_48902-1','48902-1','http://loinc.org','Rickettsia africae IgM Ab [Titer] in Body fluid by Immunofluorescence','489021','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.537_48905-4','48905-4','http://loinc.org','Rickettsia akari IgM Ab [Titer] in Body fluid by Immunofluorescence','489054','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.537_48906-2','48906-2','http://loinc.org','Rickettsia conorii IgM Ab [Titer] in Body fluid by Immunofluorescence','489062','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.537_48908-8','48908-8','http://loinc.org','Rickettsia parkeri IgM Ab [Titer] in Body fluid by Immunofluorescence','489088','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.537_48912-0','48912-0','http://loinc.org','Rickettsia rickettsii IgM Ab [Titer] in Body fluid by Immunofluorescence','489120','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.537_49146-4','49146-4','http://loinc.org','Rickettsia rickettsii IgM Ab [Titer] in Body fluid','491464','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.537_49150-6','49150-6','http://loinc.org','Rickettsia parkeri IgM Ab [Titer] in Body fluid','491506','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.537_49152-2','49152-2','http://loinc.org','Rickettsia parkeri IgM Ab [Titer] in Serum','491522','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.537_49153-0','49153-0','http://loinc.org','Rickettsia conorii IgM Ab [Titer] in Body fluid','491530','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.537_49155-5','49155-5','http://loinc.org','Rickettsia akari IgM Ab [Titer] in Serum','491555','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.537_49156-3','49156-3','http://loinc.org','Rickettsia akari IgM Ab [Titer] in Body fluid','491563','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.537_49160-5','49160-5','http://loinc.org','Rickettsia africae IgM Ab [Titer] in Body fluid','491605','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.537_49162-1','49162-1','http://loinc.org','Rickettsia africae IgM Ab [Titer] in Serum','491621','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.537_51805-0','51805-0','http://loinc.org','Rickettsia conorii IgM Ab [Units/volume] in Serum by Immunoassay','518050','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.537_5308-2','5308-2','http://loinc.org','Rickettsia rickettsii IgM Ab [Titer] in Serum by Immunofluorescence','53082','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.537_5314-0','5314-0','http://loinc.org','Rickettsia spotted fever group IgM Ab [Units/volume] in Serum by Immunoassay','53140','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.537_5315-7','5315-7','http://loinc.org','Rickettsia spotted fever group IgM Ab [Titer] in Serum by Immunofluorescence','53157','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.537_70135-9','70135-9','http://loinc.org','Rickettsia spotted fever group IgM Ab [Titer] in Serum by Immunofluorescence --1st specimen','701359','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.537_70136-7','70136-7','http://loinc.org','Rickettsia spotted fever group IgM Ab [Titer] in Serum by Immunofluorescence --2nd specimen','701367','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.537_7999-6','7999-6','http://loinc.org','Rickettsia spotted fever group IgM Ab [Units/volume] in Serum','79996','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.537_8004-4','8004-4','http://loinc.org','Rickettsia rickettsii IgM Ab [Units/volume] in Serum','80044','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.537_87923-9','87923-9','http://loinc.org','Rickettsia conorii IgM Ab [Presence] in Serum by Immunoassay','879239','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.417_2030-5','2030-5','http://loinc.org','Carboxyhemoglobin/Hemoglobin.total in Arterial blood','20305','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.417_2031-3','2031-3','http://loinc.org','Carboxyhemoglobin/Hemoglobin.total in Capillary blood','20313','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.417_2032-1','2032-1','http://loinc.org','Carboxyhemoglobin/Hemoglobin.total in Venous blood','20321','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.417_20563-3','20563-3','http://loinc.org','Carboxyhemoglobin/Hemoglobin.total in Blood','205633','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.417_31157-1','31157-1','http://loinc.org','Carboxyhemoglobin [Mass/volume] in Blood','311571','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.417_41648-7','41648-7','http://loinc.org','Carboxyhemoglobin/Hemoglobin.total in Mixed venous blood','416487','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.417_63523-5','63523-5','http://loinc.org','Carboxyhemoglobin/Hemoglobin.total in Arterial cord blood','635235','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.417_63524-3','63524-3','http://loinc.org','Carboxyhemoglobin/Hemoglobin.total in Venous cord blood','635243','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.417_71884-1','71884-1','http://loinc.org','Carboxyhemoglobin/Hemoglobin.total [Pure mass fraction] in Venous blood','718841','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.417_71885-8','71885-8','http://loinc.org','Carboxyhemoglobin/Hemoglobin.total [Pure mass fraction] in Mixed venous blood','718858','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.417_71886-6','71886-6','http://loinc.org','Carboxyhemoglobin/Hemoglobin.total [Pure mass fraction] in Venous cord blood','718866','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.417_71887-4','71887-4','http://loinc.org','Carboxyhemoglobin/Hemoglobin.total [Pure mass fraction] in Arterial cord blood','718874','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.417_71888-2','71888-2','http://loinc.org','Carboxyhemoglobin/Hemoglobin.total [Pure mass fraction] in Capillary blood','718882','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.417_71889-0','71889-0','http://loinc.org','Carboxyhemoglobin/Hemoglobin.total [Pure mass fraction] in Arterial blood','718890','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.417_71890-8','71890-8','http://loinc.org','Carboxyhemoglobin/Hemoglobin.total [Pure mass fraction] in Blood','718908','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.417_97551-6','97551-6','http://loinc.org','Carboxyhemoglobin/Hemoglobin.total in Central venous blood','975516','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.538_11482-7','11482-7','http://loinc.org','Rickettsia rickettsii RNA [Presence] in Tissue by NAA with probe detection','114827','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.538_17537-2','17537-2','http://loinc.org','Rickettsia spotted fever group RNA [Presence] in Serum by NAA with probe detection','175372','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.538_17538-0','17538-0','http://loinc.org','Rickettsia spotted fever group RNA [Presence] in Serum by Probe','175380','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.538_48870-0','48870-0','http://loinc.org','Rickettsia spotted fever group DNA [Presence] in Specimen by NAA with probe detection','488700','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.538_8005-1','8005-1','http://loinc.org','Rickettsia rickettsii RNA [Presence] in Serum by NAA with probe detection','80051','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.538_48868-4','48868-4','http://loinc.org','Rickettsia rickettsii DNA [Presence] in Specimen by NAA with probe detection','488684','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1106_89596-1','89596-1','http://loinc.org','Listeria monocytogenes DNA [Presence] in Blood by NAA with probe detection','895961','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1106_82184-3','82184-3','http://loinc.org','Listeria monocytogenes DNA [Presence] in Cerebral spinal fluid by NAA with non-probe detection','821843','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1106_99091-1','99091-1','http://loinc.org','Listeria monocytogenes DNA [Presence] in Cerebral spinal fluid by NAA with probe detection','990911','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1344_41639-6','41639-6','http://loinc.org','Ricin toxin IgM Ab [Presence] in Serum by Immunofluorescence','416396','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1344_41640-4','41640-4','http://loinc.org','Ricin toxin IgG Ab [Presence] in Serum by Immunofluorescence','416404','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1465_100907-5','100907-5','http://loinc.org','Vancomycin resistant enterococcus [Identifier] in Specimen by Organism specific culture','1009075','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1465_13316-5','13316-5','http://loinc.org','Vancomycin resistant enterococcus [Presence] in Specimen by Organism specific culture','133165','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1465_59150-3','59150-3','http://loinc.org','Vancomycin resistant enterococcus [Presence] in Anal by Organism specific culture','591503','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1465_59151-1','59151-1','http://loinc.org','Vancomycin resistant enterococcus [Presence] in Urine by Organism specific culture','591511','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1343_35493-6','35493-6','http://loinc.org','Ricin [Presence] in Specimen','354936','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1343_41641-2','41641-2','http://loinc.org','Ricin toxin [Presence] in Specimen by Immunofluorescence','416412','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1467_73963-1','73963-1','http://loinc.org','Enterococcus faecalis and other enterococcus sp rRNA [Identifier] by FISH in Positive blood culture','739631','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1467_88256-3','88256-3','http://loinc.org','Enterococcus faecalis hsp60 gene [Presence] by Probe in Positive blood culture','882563','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1467_88257-1','88257-1','http://loinc.org','Enterococcus faecium hsp60 gene [Presence] by Probe in Positive blood culture','882571','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1467_92782-2','92782-2','http://loinc.org','Enterococcus faecium DNA [Presence] by NAA with probe detection in Positive blood culture','927822','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1467_92783-0','92783-0','http://loinc.org','Enterococcus faecalis DNA [Presence] by NAA with probe detection in Positive blood culture','927830','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1467_96304-1','96304-1','http://loinc.org','Enterococcus faecalis DNA [Presence] by NAA with non-probe detection in Positive blood culture','963041','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1467_96305-8','96305-8','http://loinc.org','Enterococcus faecium DNA [Presence] by NAA with non-probe detection in Positive blood culture','963058','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1345_54934-5','54934-5','http://loinc.org','Ricinine [Mass/volume] in Urine','549345','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1466_85775-5','85775-5','http://loinc.org','Enterococcus sp DNA [Presence] by NAA with non-probe detection in Positive blood culture','857755','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1466_92784-8','92784-8','http://loinc.org','Enterococcus sp DNA [Presence] by NAA with probe detection in Positive blood culture','927848','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1466_73963-1','73963-1','http://loinc.org','Enterococcus faecalis and other enterococcus sp rRNA [Identifier] by FISH in Positive blood culture','739631','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1466_88256-3','88256-3','http://loinc.org','Enterococcus faecalis hsp60 gene [Presence] by Probe in Positive blood culture','882563','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1466_88257-1','88257-1','http://loinc.org','Enterococcus faecium hsp60 gene [Presence] by Probe in Positive blood culture','882571','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1466_92782-2','92782-2','http://loinc.org','Enterococcus faecium DNA [Presence] by NAA with probe detection in Positive blood culture','927822','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1466_92783-0','92783-0','http://loinc.org','Enterococcus faecalis DNA [Presence] by NAA with probe detection in Positive blood culture','927830','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1466_96304-1','96304-1','http://loinc.org','Enterococcus faecalis DNA [Presence] by NAA with non-probe detection in Positive blood culture','963041','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1466_96305-8','96305-8','http://loinc.org','Enterococcus faecium DNA [Presence] by NAA with non-probe detection in Positive blood culture','963058','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1466_100907-5','100907-5','http://loinc.org','Vancomycin resistant enterococcus [Identifier] in Specimen by Organism specific culture','1009075','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1466_13316-5','13316-5','http://loinc.org','Vancomycin resistant enterococcus [Presence] in Specimen by Organism specific culture','133165','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1466_59150-3','59150-3','http://loinc.org','Vancomycin resistant enterococcus [Presence] in Anal by Organism specific culture','591503','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1466_59151-1','59151-1','http://loinc.org','Vancomycin resistant enterococcus [Presence] in Urine by Organism specific culture','591511','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1340_101648-4','101648-4','http://loinc.org','14-3-3 Ag [Mass/volume] in Cerebral spinal fluid by Immunoassay','1016484','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1340_24031-7','24031-7','http://loinc.org','14-3-3 Ag [Presence] in Cerebral spinal fluid by Immunoblot','240317','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1340_27072-8','27072-8','http://loinc.org','14-3-3 Ag [Units/volume] in Cerebral spinal fluid by Immunoassay','270728','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1340_31989-7','31989-7','http://loinc.org','14-3-3 Ag [Presence] in Cerebral spinal fluid','319897','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1340_31990-5','31990-5','http://loinc.org','14-3-3 Ag [Units/volume] in Cerebral spinal fluid','319905','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1340_36924-9','36924-9','http://loinc.org','14-3-3 Ag [Mass/volume] in Cerebral spinal fluid','369249','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1340_91065-3','91065-3','http://loinc.org','14-3-3 protein [Presence] in Tissue by NAA with probe detection','910653','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_82304-7','82304-7','http://loinc.org','Plesiomonas shigelloides [Presence] in Stool by Culture','823047','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_85771-4','85771-4','http://loinc.org','Enterobacteriaceae DNA [Presence] by NAA with non-probe detection in Positive blood culture','857714','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_85776-3','85776-3','http://loinc.org','Proteus sp DNA [Presence] by NAA with non-probe detection in Positive blood culture','857763','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_85777-1','85777-1','http://loinc.org','Serratia marcescens DNA [Presence] by NAA with non-probe detection in Positive blood culture','857771','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_88254-8','88254-8','http://loinc.org','Citrobacter sp ompA+mrkC genes [Presence] by Probe in Positive blood culture','882548','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_88267-0','88267-0','http://loinc.org','Proteus sp atpD gene [Presence] by Probe in Positive blood culture','882670','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_90067-0','90067-0','http://loinc.org','Enterobacteriaceae identified in Isolate by Organism specific culture','900670','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_93384-6','93384-6','http://loinc.org','Serratia sp DNA [Presence] by NAA with probe detection in Positive blood culture','933846','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_93387-9','93387-9','http://loinc.org','Proteus mirabilis DNA [Presence] by NAA with probe detection in Positive blood culture','933879','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_93392-9','93392-9','http://loinc.org','Serratia marcescens DNA [Presence] by NAA with probe detection in Positive blood culture','933929','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_93393-7','93393-7','http://loinc.org','Proteus sp DNA [Presence] by NAA with probe detection in Positive blood culture','933937','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_93394-5','93394-5','http://loinc.org','Morganella morganii DNA [Presence] by NAA with probe detection in Positive blood culture','933945','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_93403-4','93403-4','http://loinc.org','Citrobacter sp DNA [Presence] by NAA with probe detection in Positive blood culture','934034','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_100899-4','100899-4','http://loinc.org','Enterobacteriaceae.extended spectrum beta lactamase resistance phenotype [Identifier] in Specimen by Organism specific culture','1008994','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_100901-8','100901-8','http://loinc.org','Enterobacteriaceae.carbapenemase resistance phenotype [Identifier] in Anal by Organism specific culture','1009018','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_100902-6','100902-6','http://loinc.org','Enterobacteriaceae.carbapenemase resistance phenotype.OXA-48 [Identifier] in Anal by Organism specific culture','1009026','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_17563-8','17563-8','http://loinc.org','Salmonella sp identified in Specimen by Organism specific culture','175638','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_20811-6','20811-6','http://loinc.org','Escherichia coli [Presence] in Specimen by Culture FDA method','208116','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_20813-2','20813-2','http://loinc.org','Escherichia coli F41 [Presence] in Isolate by Agglutination','208132','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_20816-5','20816-5','http://loinc.org','Escherichia coli K88 [Presence] in Isolate by Agglutination','208165','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_20819-9','20819-9','http://loinc.org','Escherichia coli K99 [Presence] in Isolate by Agglutination','208199','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_20951-0','20951-0','http://loinc.org','Salmonella sp serotype [Identifier] in Isolate by Agglutination','209510','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_20953-6','20953-6','http://loinc.org','Salmonella sp identified in Tissue by Organism specific culture','209536','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_20955-1','20955-1','http://loinc.org','Salmonella sp identified in Stool by Organism specific culture','209551','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_23602-6','23602-6','http://loinc.org','Salmonella enteritidis [Presence] in Stool by Organism specific culture','236026','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_28549-4','28549-4','http://loinc.org','Yersinia sp identified in Stool by Organism specific culture','285494','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_33685-9','33685-9','http://loinc.org','Yersinia pestis [Presence] in Specimen by Organism specific culture','336859','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_33686-7','33686-7','http://loinc.org','Yersinia pestis [Presence] in Isolate by Organism specific culture','336867','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_33688-3','33688-3','http://loinc.org','Yersinia pestis Ag [Presence] in Isolate by Immunofluorescence','336883','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_33693-3','33693-3','http://loinc.org','Yersinia pestis [Presence] in Isolate by Phage lysis','336933','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_34891-2','34891-2','http://loinc.org','Salmonella enteritidis [Presence] in Specimen by Organism specific culture','348912','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_42255-0','42255-0','http://loinc.org','Salmonella and Shigella sp identified in Specimen by Organism specific culture','422550','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_43371-4','43371-4','http://loinc.org','Salmonella and Shigella sp identified in Stool by Organism specific culture','433714','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_56475-7','56475-7','http://loinc.org','Salmonella sp antigenic formula [Identifier] in Isolate by Agglutination','564757','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_59846-6','59846-6','http://loinc.org','Salmonella sp identified [Type] in Isolate','598466','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_65756-9','65756-9','http://loinc.org','Salmonella sp serovar [Type] in Isolate','657569','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_6595-3','6595-3','http://loinc.org','Klebsiella granulomatis [Presence] in Isolate by Organism specific culture','65953','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_701-3','701-3','http://loinc.org','Yersinia sp identified in Specimen by Organism specific culture','7013','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_73664-5','73664-5','http://loinc.org','Yersinia adhesion protein YadA [Presence] in Isolate','736645','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_73672-8','73672-8','http://loinc.org','Salmonella sp phage type in Isolate','736728','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_73673-6','73673-6','http://loinc.org','Yersinia enterocolitica serotype [Type] in Isolate by Agglutination','736736','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_77924-9','77924-9','http://loinc.org','Enterobacteriaceae.carbapenem resistant [Presence] in Anorectal or stool specimen by Organism specific culture','779249','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_82298-1','82298-1','http://loinc.org','Yersinia enterocolitica [Presence] in Specimen by Culture','822981','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_82301-3','82301-3','http://loinc.org','Salmonella sp [Presence] in Stool by Culture','823013','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_85761-5','85761-5','http://loinc.org','Klebsiella pneumoniae DNA [Presence] by NAA with non-probe detection in Positive blood culture','857615','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_85772-2','85772-2','http://loinc.org','Enterobacter cloacae complex DNA [Presence] by NAA with non-probe detection in Positive blood culture','857722','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_85773-0','85773-0','http://loinc.org','Escherichia coli DNA [Presence] by NAA with non-probe detection in Positive blood culture','857730','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_85774-8','85774-8','http://loinc.org','Klebsiella oxytoca DNA [Presence] by NAA with non-probe detection in Positive blood culture','857748','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_88255-5','88255-5','http://loinc.org','Enterobacter sp gyrB+metB genes [Presence] by Probe in Positive blood culture','882555','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_88263-9','88263-9','http://loinc.org','Klebsiella oxytoca ompA gene [Presence] by Probe in Positive blood culture','882639','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_88264-7','88264-7','http://loinc.org','Klebsiella pneumoniae yggE gene [Presence] by Probe in Positive blood culture','882647','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_93385-3','93385-3','http://loinc.org','Salmonella sp DNA [Presence] by NAA with probe detection in Positive blood culture','933853','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_93395-2','93395-2','http://loinc.org','Klebsiella pneumoniae DNA [Presence] by NAA with probe detection in Positive blood culture','933952','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_93398-6','93398-6','http://loinc.org','Klebsiella oxytoca DNA [Presence] by NAA with probe detection in Positive blood culture','933986','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_93400-0','93400-0','http://loinc.org','Enterobacter aerogenes+Enterobacter amnigenus+Enterobacter gergoviae DNA [Presence] by NAA with probe detection in Positive blood culture','934000','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_93401-8','93401-8','http://loinc.org','Escherichia coli DNA [Presence] by NAA with probe detection in Positive blood culture','934018','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_93404-2','93404-2','http://loinc.org','Enterobacter cloacae complex DNA [Presence] by NAA with probe detection in Positive blood culture','934042','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_96307-4','96307-4','http://loinc.org','Klebsiella pneumoniae+Klebsiella variicola+Klebsiella quasipneumoniae DNA [Presence] by NAA with non-probe detection in Positive blood culture','963074','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_96308-2','96308-2','http://loinc.org','Klebsiella aerogenes DNA [Presence] by NAA with non-probe detection in Positive blood culture','963082','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_96313-2','96313-2','http://loinc.org','Salmonella sp DNA [Presence] by NAA with non-probe detection in Positive blood culture','963132','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_100909-1','100909-1','http://loinc.org','Cronobacter sakazakii [Presence] by Organism specific culture','1009091','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_17576-0','17576-0','http://loinc.org','Shigella sp identified in Specimen by Organism specific culture','175760','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_42256-8','42256-8','http://loinc.org','Shigella boydii Ag [Presence] in Isolate','422568','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_42257-6','42257-6','http://loinc.org','Shigella dysenteriae Ag [Presence] in Isolate','422576','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_42258-4','42258-4','http://loinc.org','Shigella flexneri Ag [Presence] in Isolate','422584','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_42259-2','42259-2','http://loinc.org','Shigella sonnei Ag [Presence] in Isolate','422592','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_46454-5','46454-5','http://loinc.org','Shigella sp [Presence] in Specimen by Organism specific culture','464545','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_49056-5','49056-5','http://loinc.org','Shigella sp serotype [Identifier] in Isolate by Agglutination','490565','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_53956-9','53956-9','http://loinc.org','Salmonella typhi [Identifier] in Isolate by Agglutination','539569','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_82300-5','82300-5','http://loinc.org','Shigella sp [Presence] in Stool by Culture','823005','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_88586-3','88586-3','http://loinc.org','Shigella sp identified in Stool by Organism specific culture','885863','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_93402-6','93402-6','http://loinc.org','Cronobacter sakazakii DNA [Presence] by NAA with probe detection in Positive blood culture','934026','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_33692-5','33692-5','http://loinc.org','Yersinia pestis DNA [Presence] in Isolate by NAA with probe detection','336925','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_48806-4','48806-4','http://loinc.org','Salmonella sp+Shigella sp+Escherichia coli enterotoxic identified in Stool by Organism specific culture','488064','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_13318-1','13318-1','http://loinc.org','Escherichia coli enteroinvasive identified in Stool by Organism specific culture','133181','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_16832-8','16832-8','http://loinc.org','Escherichia coli enterotoxic identified in Stool by Organism specific culture','168328','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_20789-4','20789-4','http://loinc.org','Escherichia coli serotype [Identifier] in Isolate','207894','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_53944-5','53944-5','http://loinc.org','Escherichia coli enteroinvasive [Presence] in Isolate','539445','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_53945-2','53945-2','http://loinc.org','Escherichia coli adherence pattern [Identifier] in Isolate by Hep2 substrate','539452','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_73961-5','73961-5','http://loinc.org','Escherichia coli and Klebsiella pneumoniae and Pseudomonas aeruginosa rRNA [Identifier] by FISH in Positive blood culture','739615','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_88258-9','88258-9','http://loinc.org','Escherichia coli oppA gene [Presence] by Probe in Positive blood culture','882589','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_10851-4','10851-4','http://loinc.org','Escherichia coli O157:H7 [Presence] in Stool by Organism specific culture','108514','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_16835-1','16835-1','http://loinc.org','Escherichia coli shiga-like toxin identified in Stool by Organism specific culture','168351','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_16836-9','16836-9','http://loinc.org','Escherichia coli verotoxic identified in Stool by Organism specific culture','168369','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_44089-1','44089-1','http://loinc.org','Escherichia coli O157:H7 [Identifier] in Specimen by Organism specific culture','440891','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_44090-9','44090-9','http://loinc.org','Escherichia coli O157:H7 [Presence] in Isolate by Organism specific culture','440909','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_45162-5','45162-5','http://loinc.org','Escherichia coli O157 Ag [Presence] in Isolate by Latex agglutination','451625','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_53955-1','53955-1','http://loinc.org','Escherichia coli O157 identified in Isolate by Organism specific culture','539551','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_82303-9','82303-9','http://loinc.org','Escherichia coli O157 [Presence] in Stool by Culture','823039','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_87318-2','87318-2','http://loinc.org','Escherichia coli eaeA gene [Presence] in Isolate by NAA with probe detection','873182','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_87319-0','87319-0','http://loinc.org','Escherichia coli enteroaggregative astA gene [Presence] in Isolate by NAA with probe detection','873190','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_87320-8','87320-8','http://loinc.org','Escherichia coli enterotoxigenic heat-labile toxin DNA [Presence] in Isolate by NAA with probe detection','873208','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_87321-6','87321-6','http://loinc.org','Escherichia coli enterotoxigenic sta gene [Presence] in Isolate by NAA with probe detection','873216','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_87322-4','87322-4','http://loinc.org','Escherichia coli enterotoxigenic stb gene [Presence] in Isolate by NAA with probe detection','873224','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_87370-3','87370-3','http://loinc.org','Escherichia coli fasA gene [Presence] in Isolate by NAA with probe detection','873703','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_87371-1','87371-1','http://loinc.org','Escherichia coli fedF gene [Presence] in Isolate by NAA with probe detection','873711','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_87372-9','87372-9','http://loinc.org','Escherichia coli FimF41a gene [Presence] in Isolate by NAA with probe detection','873729','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_87373-7','87373-7','http://loinc.org','Escherichia coli K88 DNA [Presence] in Isolate by NAA with probe detection','873737','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_87374-5','87374-5','http://loinc.org','Escherichia coli K99 DNA [Presence] in Isolate by NAA with probe detection','873745','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_87375-2','87375-2','http://loinc.org','Escherichia coli paa gene [Presence] in Isolate by NAA with probe detection','873752','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_87402-4','87402-4','http://loinc.org','Escherichia coli aidA-I gene [Presence] in Isolate by NAA with probe detection','874024','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_87376-0','87376-0','http://loinc.org','Escherichia coli Stx1 toxin stx1 gene [Presence] in Isolate by NAA with probe detection','873760','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_87377-8','87377-8','http://loinc.org','Escherichia coli Stx2 toxin stx2 gene [Presence] in Isolate by NAA with probe detection','873778','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1220_87380-2','87380-2','http://loinc.org','Escherichia coli Stx2e toxin stx2e gene [Presence] in Isolate by NAA with probe detection','873802','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1341_101662-5','101662-5','http://loinc.org','Abnormal Prion Protein [Presence] in Cerebral spinal fluid by RT-QuIC','1016625','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1341_102036-1','102036-1','http://loinc.org','Abnormal Prion Protein [Interpretation] in Cerebral spinal fluid Document by RT-QuIC','1020361','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1341_23379-1','23379-1','http://loinc.org','Abnormal Prion Protein [Presence] in Brain by Immunoblot','233791','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1341_23380-9','23380-9','http://loinc.org','Abnormal Prion Protein [Presence] in Brain by Immune stain','233809','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1341_23381-7','23381-7','http://loinc.org','Abnormal Prion Protein [Presence] in Brain by Electron microscopy','233817','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1341_37425-6','37425-6','http://loinc.org','Abnormal Prion Protein [Presence] in Brain by Immunoassay','374256','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1341_39020-3','39020-3','http://loinc.org','Abnormal Prion Protein [Presence] in Tissue by Immune stain','390203','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1341_39021-1','39021-1','http://loinc.org','Abnormal Prion Protein [Presence] in Tissue by Immunoassay','390211','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1341_39320-7','39320-7','http://loinc.org','Abnormal Prion Protein [Presence] in Tissue by Immunoblot','393207','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1341_74035-7','74035-7','http://loinc.org','Abnormal Prion Protein [Identifier] in Tissue by Immune stain','740357','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1341_74036-5','74036-5','http://loinc.org','Abnormal Prion Protein [Identifier] in Tissue by Immunoblot','740365','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1341_97503-7','97503-7','http://loinc.org','Abnormal Prion Protein [Presence] in Cerebral spinal fluid','975037','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1462_73558-9','73558-9','http://loinc.org','Staphylococcus aureus and Staphylococcus sp.coagulase negative rRNA [Identifier] by FISH in Positive blood culture','735589','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1462_85765-6','85765-6','http://loinc.org','Staphylococcus aureus DNA [Presence] by NAA with non-probe detection in Positive blood culture','857656','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1462_88269-6','88269-6','http://loinc.org','Staphylococcus aureus gyrB gene [Presence] by Probe in Positive blood culture','882696','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1462_92777-2','92777-2','http://loinc.org','Staphylococcus aureus DNA [Presence] by NAA with probe detection in Positive blood culture','927772','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1359_101208-7','101208-7','http://loinc.org','Hepatitis E virus IgM Ab [Presence] in Serum or Plasma by Line blot','1012087','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1359_14212-5','14212-5','http://loinc.org','Hepatitis E virus IgM Ab [Presence] in Serum','142125','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1359_51798-7','51798-7','http://loinc.org','Hepatitis E virus IgM Ab [Units/volume] in Serum','517987','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1359_83128-9','83128-9','http://loinc.org','Hepatitis E virus IgM Ab [Presence] in Serum or Plasma by Immunoassay','831289','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.70_101536-1','101536-1','http://loinc.org','Salmonella sp whole genome [Nucleotide sequence] in Isolate by Sequencing','1015361','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.70_17563-8','17563-8','http://loinc.org','Salmonella sp identified in Specimen by Organism specific culture','175638','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.70_20951-0','20951-0','http://loinc.org','Salmonella sp serotype [Identifier] in Isolate by Agglutination','209510','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.70_20953-6','20953-6','http://loinc.org','Salmonella sp identified in Tissue by Organism specific culture','209536','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.70_20955-1','20955-1','http://loinc.org','Salmonella sp identified in Stool by Organism specific culture','209551','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.70_23602-6','23602-6','http://loinc.org','Salmonella enteritidis [Presence] in Stool by Organism specific culture','236026','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.70_34891-2','34891-2','http://loinc.org','Salmonella enteritidis [Presence] in Specimen by Organism specific culture','348912','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.70_42255-0','42255-0','http://loinc.org','Salmonella and Shigella sp identified in Specimen by Organism specific culture','422550','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.70_43371-4','43371-4','http://loinc.org','Salmonella and Shigella sp identified in Stool by Organism specific culture','433714','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.70_56475-7','56475-7','http://loinc.org','Salmonella sp antigenic formula [Identifier] in Isolate by Agglutination','564757','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.70_59846-6','59846-6','http://loinc.org','Salmonella sp identified [Type] in Isolate','598466','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.70_65756-9','65756-9','http://loinc.org','Salmonella sp serovar [Type] in Isolate','657569','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.70_73672-8','73672-8','http://loinc.org','Salmonella sp phage type in Isolate','736728','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.70_82301-3','82301-3','http://loinc.org','Salmonella sp [Presence] in Stool by Culture','823013','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.70_93385-3','93385-3','http://loinc.org','Salmonella sp DNA [Presence] by NAA with probe detection in Positive blood culture','933853','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.70_96313-2','96313-2','http://loinc.org','Salmonella sp DNA [Presence] by NAA with non-probe detection in Positive blood culture','963132','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.70_48806-4','48806-4','http://loinc.org','Salmonella sp+Shigella sp+Escherichia coli enterotoxic identified in Stool by Organism specific culture','488064','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.71_101511-4','101511-4','http://loinc.org','Salmonella enterica serotype 1,4,[5],12:i:- [Cycle Threshold #] in Specimen by NAA with probe detection','1015114','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.71_23431-0','23431-0','http://loinc.org','Salmonella gallinarum DNA [Presence] in Specimen by NAA with probe detection','234310','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.71_23432-8','23432-8','http://loinc.org','Salmonella gallinarum rRNA [Presence] in Specimen by Probe','234328','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.71_23435-1','23435-1','http://loinc.org','Salmonella pullorum DNA [Presence] in Specimen by NAA with probe detection','234351','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.71_23436-9','23436-9','http://loinc.org','Salmonella pullorum rRNA [Presence] in Specimen by Probe','234369','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.71_49612-5','49612-5','http://loinc.org','Salmonella sp DNA [Presence] in Specimen by NAA with probe detection','496125','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.71_61370-3','61370-3','http://loinc.org','Salmonella enterica DNA [Presence] in Specimen by NAA with probe detection','613703','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.71_79383-6','79383-6','http://loinc.org','Salmonella sp rpoD gene [Presence] in Stool by NAA with probe detection','793836','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.71_80678-6','80678-6','http://loinc.org','Salmonella sp invA+fliC genes [Presence] in Stool by NAA with probe detection','806786','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.71_81657-9','81657-9','http://loinc.org','Salmonella sp spaO gene [Presence] in Stool by NAA with probe detection','816579','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.71_82199-1','82199-1','http://loinc.org','Salmonella enterica+bongori DNA [Presence] in Stool by NAA with non-probe detection','821991','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.71_87394-3','87394-3','http://loinc.org','Salmonella sp DNA [Cycle Threshold #] in Specimen by NAA with probe detection','873943','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.71_97313-1','97313-1','http://loinc.org','Salmonella sp DNA [Presence] in Stool by NAA with probe detection','973131','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.71_97632-4','97632-4','http://loinc.org','Salmonella sp DNA [Presence] in Synovial fluid by NAA with non-probe detection','976324','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1591_13471-8','13471-8','http://loinc.org','Cadmium/Creatinine [Mass Ratio] in Urine','134718','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1591_13828-9','13828-9','http://loinc.org','Cadmium/Creatinine [Mass Ratio] in 24 hour Urine','138289','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1591_21130-0','21130-0','http://loinc.org','Cadmium [Mass/volume] in 24 hour Urine','211300','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1591_22696-9','22696-9','http://loinc.org','Cadmium/Creatinine [Molar ratio] in Urine','226969','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1591_25360-9','25360-9','http://loinc.org','Cadmium [Moles/volume] in Urine','253609','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1591_30925-2','30925-2','http://loinc.org','Cadmium [Mass/volume] in Urine collected for unspecified duration','309252','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1591_32304-8','32304-8','http://loinc.org','Cadmium [Moles/time] in 24 hour Urine','323048','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1591_34254-3','34254-3','http://loinc.org','Cadmium [Moles/volume] in 24 hour Urine','342543','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1591_34255-0','34255-0','http://loinc.org','Cadmium [Moles/time] in Urine','342550','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1591_50835-8','50835-8','http://loinc.org','Cadmium/Creatinine [Molar ratio] in 24 hour Urine','508358','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1591_5611-9','5611-9','http://loinc.org','Cadmium [Mass/volume] in Urine','56119','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1591_5612-7','5612-7','http://loinc.org','Cadmium [Mass/time] in 24 hour Urine','56127','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1591_56651-3','56651-3','http://loinc.org','Cadmium/Creatinine [Ratio] in Urine','566513','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1590_12505-4','12505-4','http://loinc.org','Cadmium [Mass/volume] in Red Blood Cells','125054','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1590_15117-5','15117-5','http://loinc.org','Cadmium [Moles/volume] in Blood','151175','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1590_27117-1','27117-1','http://loinc.org','Cadmium [Mass/mass] in Red Blood Cells','271171','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1590_50834-1','50834-1','http://loinc.org','Cadmium [Moles/volume] in Red Blood Cells','508341','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1590_5609-3','5609-3','http://loinc.org','Cadmium [Mass/volume] in Blood','56093','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1476_6396-6','6396-6','http://loinc.org','Entamoeba histolytica DNA [Presence] in Specimen by NAA with probe detection','63966','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1476_80682-8','80682-8','http://loinc.org','Entamoeba histolytica 18S rRNA [Presence] in Stool by NAA with probe detection','806828','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1476_82207-2','82207-2','http://loinc.org','Entamoeba histolytica DNA [Presence] in Stool by NAA with non-probe detection','822072','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1476_91766-6','91766-6','http://loinc.org','Entamoeba histolytica DNA [Presence] in Aspirate by NAA with probe detection','917666','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1476_92689-9','92689-9','http://loinc.org','Entamoeba histolytica DNA [Presence] in Stool by NAA with probe detection','926899','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1475_29905-7','29905-7','http://loinc.org','Entamoeba histolytica Ag [Presence] in Stool by Immunoassay','299057','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1475_6397-4','6397-4','http://loinc.org','Entamoeba histolytica Ag [Units/volume] in Serum by Immunoassay','63974','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1475_6398-2','6398-2','http://loinc.org','Entamoeba histolytica Ag [Units/volume] in Stool by Immunoassay','63982','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1475_6399-0','6399-0','http://loinc.org','Entamoeba histolytica Ag [Units/volume] in Specimen by Immunoassay','63990','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1478_5150-8','5150-8','http://loinc.org','Entamoeba histolytica Ab [Units/volume] in Serum by Immunoassay','51508','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1478_56922-8','56922-8','http://loinc.org','Entamoeba histolytica IgG Ab [Presence] in Serum by Immunoassay','569228','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1478_90297-3','90297-3','http://loinc.org','Entamoeba histolytica Ab [Presence] in Serum by Immunoassay','902973','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1478_9521-6','9521-6','http://loinc.org','Entamoeba histolytica IgA Ab [Units/volume] in Serum by Immunoassay','95216','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1478_9522-4','9522-4','http://loinc.org','Entamoeba histolytica IgG Ab [Units/volume] in Serum by Immunoassay','95224','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1478_9523-2','9523-2','http://loinc.org','Entamoeba histolytica IgM Ab [Units/volume] in Serum by Immunoassay','95232','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1477_16817-9','16817-9','http://loinc.org','Entamoeba histolytica Ab [Presence] in Serum by Immune diffusion (ID)','168179','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1477_16818-7','16818-7','http://loinc.org','Entamoeba histolytica Ab [Units/volume] in Cerebral spinal fluid','168187','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1477_16819-5','16819-5','http://loinc.org','Entamoeba histolytica Ab [Units/volume] in Serum by Immunofluorescence','168195','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1477_16820-3','16820-3','http://loinc.org','Entamoeba histolytica Ab [Units/volume] in Serum by Complement fixation','168203','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1477_21259-7','21259-7','http://loinc.org','Entamoeba histolytica Ab [Titer] in Serum by Hemagglutination','212597','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1477_22285-1','22285-1','http://loinc.org','Entamoeba histolytica Ab [Presence] in Serum','222851','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1477_22286-9','22286-9','http://loinc.org','Entamoeba histolytica Ab [Titer] in Serum','222869','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1477_22287-7','22287-7','http://loinc.org','Entamoeba histolytica IgA Ab [Units/volume] in Serum','222877','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1477_22288-5','22288-5','http://loinc.org','Entamoeba histolytica IgG Ab [Units/volume] in Serum','222885','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1477_22289-3','22289-3','http://loinc.org','Entamoeba histolytica IgM Ab [Units/volume] in Serum','222893','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1477_25400-3','25400-3','http://loinc.org','Entamoeba histolytica Ab [Titer] in Serum by Immunofluorescence','254003','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1477_27090-0','27090-0','http://loinc.org','Entamoeba histolytica IgA Ab [Presence] in Saliva (oral fluid)','270900','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1477_47406-4','47406-4','http://loinc.org','Entamoeba histolytica Ab [Presence] in Cerebral spinal fluid','474064','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1477_5151-6','5151-6','http://loinc.org','Entamoeba histolytica Ab [Units/volume] in Serum by Hemagglutination','51516','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1477_56921-0','56921-0','http://loinc.org','Entamoeba histolytica Ab [Presence] in Serum by Immunofluorescence','569210','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1477_7880-8','7880-8','http://loinc.org','Entamoeba histolytica Ab [Units/volume] in Serum','78808','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1477_9420-1','9420-1','http://loinc.org','Entamoeba histolytica Ab [Titer] in Serum by Complement fixation','94201','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1477_9421-9','9421-9','http://loinc.org','Entamoeba histolytica Ab [Units/volume] in Serum by Immune diffusion (ID)','94219','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1477_5150-8','5150-8','http://loinc.org','Entamoeba histolytica Ab [Units/volume] in Serum by Immunoassay','51508','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1477_56922-8','56922-8','http://loinc.org','Entamoeba histolytica IgG Ab [Presence] in Serum by Immunoassay','569228','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1477_90297-3','90297-3','http://loinc.org','Entamoeba histolytica Ab [Presence] in Serum by Immunoassay','902973','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1477_9521-6','9521-6','http://loinc.org','Entamoeba histolytica IgA Ab [Units/volume] in Serum by Immunoassay','95216','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1477_9522-4','9522-4','http://loinc.org','Entamoeba histolytica IgG Ab [Units/volume] in Serum by Immunoassay','95224','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1477_9523-2','9523-2','http://loinc.org','Entamoeba histolytica IgM Ab [Units/volume] in Serum by Immunoassay','95232','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1592_87478-4','87478-4','http://loinc.org','Cadmium [Mass/mass] in Specimen','874784','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1592_9687-5','9687-5','http://loinc.org','Cadmium [Mass/volume] in Specimen','96875','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1474_31810-5','31810-5','http://loinc.org','Entamoeba histolytica Ag [Units/volume] in Serum','318105','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1474_31811-3','31811-3','http://loinc.org','Entamoeba histolytica Ag [Units/volume] in Stool','318113','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1474_31812-1','31812-1','http://loinc.org','Entamoeba histolytica Ag [Units/volume] in Specimen','318121','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1474_29905-7','29905-7','http://loinc.org','Entamoeba histolytica Ag [Presence] in Stool by Immunoassay','299057','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1474_6397-4','6397-4','http://loinc.org','Entamoeba histolytica Ag [Units/volume] in Serum by Immunoassay','63974','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1474_6398-2','6398-2','http://loinc.org','Entamoeba histolytica Ag [Units/volume] in Stool by Immunoassay','63982','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1474_6399-0','6399-0','http://loinc.org','Entamoeba histolytica Ag [Units/volume] in Specimen by Immunoassay','63990','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1128_6323-0','6323-0','http://loinc.org','Borrelia sp identified in Specimen by Organism specific culture','63230','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1128_87945-2','87945-2','http://loinc.org','Borrelia sp identified in Cerebral spinal fluid by Organism specific culture','879452','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1128_87946-0','87946-0','http://loinc.org','Borrelia sp identified in Tissue by Organism specific culture','879460','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1249_14197-8','14197-8','http://loinc.org','Blastomyces dermatitidis exoantigen [Identifier] in Isolate','141978','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1248_28549-4','28549-4','http://loinc.org','Yersinia sp identified in Stool by Organism specific culture','285494','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1248_701-3','701-3','http://loinc.org','Yersinia sp identified in Specimen by Organism specific culture','7013','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1248_73664-5','73664-5','http://loinc.org','Yersinia adhesion protein YadA [Presence] in Isolate','736645','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1248_73673-6','73673-6','http://loinc.org','Yersinia enterocolitica serotype [Type] in Isolate by Agglutination','736736','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1248_82298-1','82298-1','http://loinc.org','Yersinia enterocolitica [Presence] in Specimen by Culture','822981','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1129_16483-0','16483-0','http://loinc.org','Borrelia hermsii [Presence] in Specimen by Organism specific culture','164830','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1360_101207-9','101207-9','http://loinc.org','Hepatitis E virus IgG Ab [Presence] in Serum or Plasma by Line blot','1012079','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1360_104413-0','104413-0','http://loinc.org','Hepatitis E virus IgG Ab [Titer] in Serum by Immunoassay --1st specimen','1044130','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1360_104414-8','104414-8','http://loinc.org','Hepatitis E virus IgG Ab [Titer] in Serum by Immunoassay --2nd specimen','1044148','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1360_13294-4','13294-4','http://loinc.org','Hepatitis E virus Ab [Presence] in Serum','132944','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1360_14211-7','14211-7','http://loinc.org','Hepatitis E virus IgG Ab [Presence] in Serum','142117','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1360_49693-5','49693-5','http://loinc.org','Hepatitis E virus IgG Ab [Presence] in Serum by Immunoassay','496935','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1360_49776-8','49776-8','http://loinc.org','Hepatitis E virus Ab [Units/volume] in Serum by Immunoassay','497768','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1360_51459-6','51459-6','http://loinc.org','Hepatitis E virus Ab [Units/volume] in Serum','514596','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1360_51653-4','51653-4','http://loinc.org','Hepatitis E virus Ab [Presence] in Body fluid','516534','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1360_56513-5','56513-5','http://loinc.org','Hepatitis E virus IgG Ab [Units/volume] in Serum or Plasma by Immunoassay','565135','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1360_58936-6','58936-6','http://loinc.org','Hepatitis E virus Ab [Presence] in Serum by Immunoassay','589366','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1360_95240-8','95240-8','http://loinc.org','Hepatitis E virus Ab [Interpretation] in Serum or Plasma','952408','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1360_101208-7','101208-7','http://loinc.org','Hepatitis E virus IgM Ab [Presence] in Serum or Plasma by Line blot','1012087','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1360_14212-5','14212-5','http://loinc.org','Hepatitis E virus IgM Ab [Presence] in Serum','142125','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1360_51798-7','51798-7','http://loinc.org','Hepatitis E virus IgM Ab [Units/volume] in Serum','517987','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1360_83128-9','83128-9','http://loinc.org','Hepatitis E virus IgM Ab [Presence] in Serum or Plasma by Immunoassay','831289','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1368_23749-5','23749-5','http://loinc.org','Lead [Mass/volume] in Specimen','237495','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1368_23890-7','23890-7','http://loinc.org','Lead [Mass/mass] in Specimen','238907','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1483_80375-9','80375-9','http://loinc.org','Norovirus Ag [Presence] in Stool by Rapid immunoassay','803759','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1361_60430-6','60430-6','http://loinc.org','Hepatitis E virus genotype [Identifier] in Blood by NAA with probe detection','604306','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1361_69577-5','69577-5','http://loinc.org','Hepatitis E virus RNA [Presence] in Blood by NAA with probe detection','695775','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1361_69961-1','69961-1','http://loinc.org','Hepatitis E virus RNA [Units/volume] (viral load) in Serum or Plasma by NAA with probe detection','699611','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1361_74858-2','74858-2','http://loinc.org','Hepatitis E virus genotypes 1+2+3+4 RNA [Presence] in Serum or Plasma from Donor by NAA with probe detection','748582','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1361_78750-7','78750-7','http://loinc.org','Hepatitis E virus RNA [log units/volume] (viral load) in Serum or Plasma by NAA with probe detection','787507','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1361_90460-7','90460-7','http://loinc.org','Hepatitis E virus RNA [Presence] in Serum or Plasma by NAA with probe detection','904607','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1361_91071-1','91071-1','http://loinc.org','Hepatitis E virus RNA [Presence] in Stool by NAA with probe detection','910711','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1361_95156-6','95156-6','http://loinc.org','Hepatitis E virus RNA [Presence] in Specimen by NAA with probe detection','951566','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1482_41035-7','41035-7','http://loinc.org','Norovirus RNA [Presence] in Specimen by Probe','410357','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1482_54905-5','54905-5','http://loinc.org','Norovirus genogroup I RNA [Presence] in Stool by NAA with probe detection','549055','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1482_54906-3','54906-3','http://loinc.org','Norovirus genogroup II RNA [Presence] in Stool by NAA with probe detection','549063','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1482_56748-7','56748-7','http://loinc.org','Norovirus RNA [Presence] in Specimen by NAA with probe detection','567487','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1482_76628-7','76628-7','http://loinc.org','Norovirus genogroup I and II RNA [Identifier] in Stool by NAA with probe detection','766287','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1482_79388-5','79388-5','http://loinc.org','Norovirus genogroup I+II orf1-orf2 junction region [Presence] in Stool by NAA with probe detection','793885','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1482_7974-9','7974-9','http://loinc.org','Norovirus RNA [Presence] in Stool by NAA with probe detection','79749','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1482_82211-4','82211-4','http://loinc.org','Norovirus genogroup I+II RNA [Presence] in Stool by NAA with non-probe detection','822114','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1482_90287-4','90287-4','http://loinc.org','Norovirus RNA [Presence] in Vomitus by NAA with probe detection','902874','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1482_90288-2','90288-2','http://loinc.org','Norovirus genogroup I RNA [Presence] in Vomitus by NAA with probe detection','902882','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1482_90289-0','90289-0','http://loinc.org','Norovirus genogroup II RNA [Presence] in Vomitus by NAA with probe detection','902890','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1482_90449-0','90449-0','http://loinc.org','Norovirus genogroup I and II RNA [Identifier] in Specimen by NAA with probe detection','904490','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1482_92692-3','92692-3','http://loinc.org','Norovirus genogroup I+II RNA [Presence] in Stool by NAA with probe detection','926923','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1482_97525-0','97525-0','http://loinc.org','Norovirus genogroup I RNA [Presence] in Specimen by NAA with probe detection','975250','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1482_97532-6','97532-6','http://loinc.org','Norovirus genogroup II RNA [Presence] in Specimen by NAA with probe detection','975326','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2211_13196-1','13196-1','http://loinc.org','Ehrlichia sp IgG Ab [Presence] in Serum','131961','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2211_22283-6','22283-6','http://loinc.org','Ehrlichia chaffeensis IgG Ab [Presence] in Serum','222836','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2211_22284-4','22284-4','http://loinc.org','Ehrlichia chaffeensis IgG Ab [Units/volume] in Serum','222844','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2211_32011-9','32011-9','http://loinc.org','Ehrlichia sp IgG Ab [Titer] in Serum','320119','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2211_32678-5','32678-5','http://loinc.org','Ehrlichia chaffeensis IgG Ab [Presence] in Cerebral spinal fluid','326785','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2211_49180-3','49180-3','http://loinc.org','Ehrlichia chaffeensis IgG Ab [Titer] in Body fluid','491803','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2211_6401-4','6401-4','http://loinc.org','Ehrlichia chaffeensis IgG Ab [Presence] in Serum by Immunoassay','64014','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2211_7875-8','7875-8','http://loinc.org','Ehrlichia chaffeensis IgG Ab [Units/volume] in Serum by Immunoassay','78758','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2211_9783-2','9783-2','http://loinc.org','Ehrlichia chaffeensis IgG Ab [Titer] in Serum','97832','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2211_47405-6','47405-6','http://loinc.org','Ehrlichia chaffeensis IgG Ab [Titer] in Serum by Immunofluorescence','474056','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2211_48894-0','48894-0','http://loinc.org','Ehrlichia chaffeensis IgG Ab [Titer] in Body fluid by Immunofluorescence','488940','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1000_43383-9','43383-9','http://loinc.org','Neisseria sp identified in Throat by Organism specific culture','433839','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1000_43384-7','43384-7','http://loinc.org','Neisseria sp identified in Urethra by Organism specific culture','433847','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1000_43385-4','43385-4','http://loinc.org','Neisseria sp identified in Cervix by Organism specific culture','433854','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1000_43386-2','43386-2','http://loinc.org','Neisseria sp identified in Anal by Organism specific culture','433862','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1000_43387-0','43387-0','http://loinc.org','Neisseria sp identified in Specimen by Organism specific culture','433870','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1000_80369-2','80369-2','http://loinc.org','Neisseria sp identified in Anorectal by Organism specific culture','803692','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1000_90072-0','90072-0','http://loinc.org','Haemophilus and Neisseria species identified in Isolate by Organism specific culture','900720','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1484_80375-9','80375-9','http://loinc.org','Norovirus Ag [Presence] in Stool by Rapid immunoassay','803759','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1018_70021-1','70021-1','http://loinc.org','Salmonella typhi DNA [Presence] in Blood by NAA with probe detection','700211','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1139_48814-8','48814-8','http://loinc.org','Vancomycin resistance vanA gene [Presence] by Molecular method','488148','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1139_62261-3','62261-3','http://loinc.org','Vancomycin resistance vanA + vanB genes [Presence] by Molecular method','622613','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1139_69379-6','69379-6','http://loinc.org','Vancomycin resistance vanA and vanB and vanC1 and vanC2 genes [Identifier] by Molecular method','693796','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1139_72421-1','72421-1','http://loinc.org','Vancomycin resistance vanB gene [Presence] by Molecular method','724211','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1139_72836-0','72836-0','http://loinc.org','Vancomycin resistance vanC2+vanC3 genes [Presence] by Molecular method','728360','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1139_72837-8','72837-8','http://loinc.org','Vancomycin resistance vanC1 gene [Presence] by Molecular method','728378','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1139_75753-4','75753-4','http://loinc.org','Vancomycin resistance vanD gene [Presence] by Molecular method','757534','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1139_85787-0','85787-0','http://loinc.org','Vancomycin resistance vanA + vanB genes [Presence] by NAA with non-probe detection in Positive blood culture','857870','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1139_88252-2','88252-2','http://loinc.org','Vancomycin resistance vanA gene [Presence] by Probe in Positive blood culture','882522','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1139_88253-0','88253-0','http://loinc.org','Vancomycin resistance vanB gene [Presence] by Probe in Positive blood culture','882530','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1139_92241-9','92241-9','http://loinc.org','Vancomycin [Susceptibility] by Genotype method','922419','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2229_32675-1','32675-1','http://loinc.org','Cytomegalovirus [Presence] in Bronchial specimen by Organism specific culture','326751','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2229_43700-4','43700-4','http://loinc.org','Cytomegalovirus [Presence] in Urine by Shell vial culture','437004','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2229_43703-8','43703-8','http://loinc.org','Cytomegalovirus [Presence] in Blood by Shell vial culture','437038','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2229_43705-3','43705-3','http://loinc.org','Cytomegalovirus [Presence] in Bone marrow by Shell vial culture','437053','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2229_43706-1','43706-1','http://loinc.org','Cytomegalovirus [Presence] in Anal by Shell vial culture','437061','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2229_5835-4','5835-4','http://loinc.org','Cytomegalovirus [Presence] in Blood by Organism specific culture','58354','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2229_5837-0','5837-0','http://loinc.org','Cytomegalovirus [Presence] in Urine by Organism specific culture','58370','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2229_81328-7','81328-7','http://loinc.org','Cytomegalovirus [Presence] in Lower respiratory specimen by Shell vial culture','813287','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2229_88564-0','88564-0','http://loinc.org','Cytomegalovirus [Presence] in Bone marrow by Organism specific culture','885640','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2229_88622-6','88622-6','http://loinc.org','Cytomegalovirus [Presence] in Ocular fluid by Shell vial culture','886226','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2229_88625-9','88625-9','http://loinc.org','Cytomegalovirus [Presence] in Ocular fluid by Organism specific culture','886259','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2229_91783-1','91783-1','http://loinc.org','Cytomegalovirus [Presence] in Lower respiratory specimen by Organism specific culture','917831','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2229_34201-4','34201-4','http://loinc.org','Cytomegalovirus [Presence] in Amniotic fluid by Organism specific culture','342014','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2229_43701-2','43701-2','http://loinc.org','Cytomegalovirus [Presence] in Specimen by Shell vial culture','437012','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2229_43702-0','43702-0','http://loinc.org','Cytomegalovirus [Presence] in Cerebral spinal fluid by Shell vial culture','437020','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2229_43704-6','43704-6','http://loinc.org','Cytomegalovirus [Presence] in Body fluid by Shell vial culture','437046','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2229_43707-9','43707-9','http://loinc.org','Cytomegalovirus [Presence] in Tissue by Shell vial culture','437079','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2229_5836-2','5836-2','http://loinc.org','Cytomegalovirus [Presence] in Tissue by Organism specific culture','58362','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2229_5838-8','5838-8','http://loinc.org','Cytomegalovirus [Presence] in Specimen by Organism specific culture','58388','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2229_88623-4','88623-4','http://loinc.org','Cytomegalovirus [Presence] in Cerebral spinal fluid by Organism specific culture','886234','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2229_88624-2','88624-2','http://loinc.org','Cytomegalovirus [Presence] in Amniotic fluid by Shell vial culture','886242','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2229_67805-2','67805-2','http://loinc.org','Cytomegalovirus Ag [Presence] in Isolate by Immunofluorescence','678052','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1017_104450-2','104450-2','http://loinc.org','Salmonella typhi DNA [Presence] in Isolate by NAA with probe detection','1044502','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1017_53956-9','53956-9','http://loinc.org','Salmonella typhi [Identifier] in Isolate by Agglutination','539569','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1138_100897-8','100897-8','http://loinc.org','Staphylococcus aureus [Presence] in Specimen by Organism specific culture','1008978','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1138_103141-8','103141-8','http://loinc.org','Staphylococcus aureus MLVA complex [Type] in Isolate or Specimen by Molecular genetics method','1031418','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1138_85042-0','85042-0','http://loinc.org','Staphylococcus aureus glycopeptide resistant identified [Type] in Isolate','850420','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1138_85045-3','85045-3','http://loinc.org','Staphylococcus aureus glycopeptide resistant based on vancomycin and teicoplanin IC [Identifier] by ARD gradient strip','850453','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1138_73558-9','73558-9','http://loinc.org','Staphylococcus aureus and Staphylococcus sp.coagulase negative rRNA [Identifier] by FISH in Positive blood culture','735589','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1138_85765-6','85765-6','http://loinc.org','Staphylococcus aureus DNA [Presence] by NAA with non-probe detection in Positive blood culture','857656','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1138_88269-6','88269-6','http://loinc.org','Staphylococcus aureus gyrB gene [Presence] by Probe in Positive blood culture','882696','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1138_92777-2','92777-2','http://loinc.org','Staphylococcus aureus DNA [Presence] by NAA with probe detection in Positive blood culture','927772','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1138_13317-3','13317-3','http://loinc.org','Methicillin resistant Staphylococcus aureus [Presence] in Specimen by Organism specific culture','133173','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1138_52969-3','52969-3','http://loinc.org','Methicillin resistant Staphylococcus aureus [Presence] in Nose by Organism specific culture','529693','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1138_53572-4','53572-4','http://loinc.org','Methicillin resistant Staphylococcus aureus [Presence] in Genital specimen by Organism specific culture','535724','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1138_76081-9','76081-9','http://loinc.org','Methicillin resistant Staphylococcus aureus [Presence] in Pharynx by Organism specific culture','760819','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1138_97325-5','97325-5','http://loinc.org','Staphylococcus aureus VNTR pattern [Type] in Isolate or Specimen by Molecular genetics method','973255','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2109_15082-1','15082-1','http://loinc.org','Methemoglobin [Mass/volume] in Blood','150821','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2109_2614-6','2614-6','http://loinc.org','Methemoglobin/Hemoglobin.total in Blood','26146','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2109_2615-3','2615-3','http://loinc.org','Methemoglobin/Hemoglobin.total in Arterial blood','26153','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2109_2616-1','2616-1','http://loinc.org','Methemoglobin/Hemoglobin.total in Capillary blood','26161','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2109_2617-9','2617-9','http://loinc.org','Methemoglobin/Hemoglobin.total in Venous blood','26179','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2109_2618-7','2618-7','http://loinc.org','Methemoglobin/Hemoglobin.total in Red Blood Cells','26187','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2109_41607-3','41607-3','http://loinc.org','Methemoglobin/Hemoglobin.total in Mixed venous blood','416073','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2109_55942-7','55942-7','http://loinc.org','Methemoglobin/Hemoglobin.total in Cord blood','559427','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2109_56040-9','56040-9','http://loinc.org','Methemoglobin [Moles/volume] in Blood','560409','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2109_71879-1','71879-1','http://loinc.org','Methemoglobin/Hemoglobin.total [Pure mass fraction] in Venous blood','718791','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2109_71880-9','71880-9','http://loinc.org','Methemoglobin/Hemoglobin.total [Pure mass fraction] in Mixed venous blood','718809','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2109_71881-7','71881-7','http://loinc.org','Methemoglobin/Hemoglobin.total [Pure mass fraction] in Capillary blood','718817','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2109_71882-5','71882-5','http://loinc.org','Methemoglobin/Hemoglobin.total [Pure mass fraction] in Arterial blood','718825','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2109_71883-3','71883-3','http://loinc.org','Methemoglobin/Hemoglobin.total [Pure mass fraction] in Blood','718833','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2109_72360-1','72360-1','http://loinc.org','Methemoglobin/Hemoglobin.total in Venous cord blood','723601','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2109_72361-9','72361-9','http://loinc.org','Methemoglobin/Hemoglobin.total in Arterial cord blood','723619','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2109_97554-0','97554-0','http://loinc.org','Methemoglobin/Hemoglobin.total in Central venous blood','975540','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2227_78001-5','78001-5','http://loinc.org','Cytomegalovirus pp65 Ag/100000 PMN cells in Blood by Immunofluorescence','780015','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2227_16718-9','16718-9','http://loinc.org','Cytomegalovirus Ag [Presence] in Blood','167189','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2227_54164-9','54164-9','http://loinc.org','Cytomegalovirus immediate-early Ag [Presence] in Blood','541649','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2227_6375-0','6375-0','http://loinc.org','Deprecated Cytomegalovirus Ag in blood','63750','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1019_13284-5','13284-5','http://loinc.org','Salmonella typhi H D Ab [Presence] in Serum','132845','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1019_13285-2','13285-2','http://loinc.org','Salmonella typhi O D Ab [Presence] in Serum','132852','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1019_14227-3','14227-3','http://loinc.org','Salmonella typhi H D Ab [Titer] in Serum','142273','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1019_17564-6','17564-6','http://loinc.org','Salmonella typhi O D Ab [Presence] in Serum by Latex agglutination','175646','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1019_17565-3','17565-3','http://loinc.org','Salmonella typhi H D Ab [Presence] in Serum by Latex agglutination','175653','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1019_17566-1','17566-1','http://loinc.org','Salmonella typhi O Ab [Presence] in Serum','175661','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1019_22529-2','22529-2','http://loinc.org','Salmonella typhi H Ab [Presence] in Serum','225292','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1019_23930-1','23930-1','http://loinc.org','Salmonella typhi O D Ab [Titer] in Serum by Agglutination','239301','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1019_23931-9','23931-9','http://loinc.org','Salmonella typhi O D [Titer] in Serum by Immunofluorescence','239319','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1019_31621-6','31621-6','http://loinc.org','Salmonella typhi H D Ab [Units/volume] in Serum','316216','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1019_31622-4','31622-4','http://loinc.org','Salmonella typhi O D Ab [Units/volume] in Serum','316224','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1019_34371-5','34371-5','http://loinc.org','Salmonella typhi H Ab [Titer] in Serum by Agglutination','343715','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1019_34372-3','34372-3','http://loinc.org','Salmonella typhi O Ab [Titer] in Serum by Agglutination','343723','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1019_42959-7','42959-7','http://loinc.org','Salmonella typhi O Ab [Titer] in Serum','429597','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1019_42960-5','42960-5','http://loinc.org','Salmonella typhi H Ab [Titer] in Serum','429605','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1019_46204-4','46204-4','http://loinc.org','Salmonella typhi O D Ab [Titer] in Serum','462044','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1019_47388-4','47388-4','http://loinc.org','Salmonella typhi H D Ab [Titer] in Serum by Agglutination','473884','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1019_5345-4','5345-4','http://loinc.org','Salmonella typhi H Ab [Presence] in Serum by Latex agglutination','53454','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1019_5346-2','5346-2','http://loinc.org','Salmonella typhi O Ab [Presence] in Serum by Latex agglutination','53462','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1019_57769-2','57769-2','http://loinc.org','Salmonella typhi O Vi Ab [Presence] in Serum','577692','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2228_16717-1','16717-1','http://loinc.org','Cytomegalovirus Ag [Presence] in Urine by Immunoassay','167171','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2228_31795-8','31795-8','http://loinc.org','Cytomegalovirus Ag [Presence] in Serum or Plasma','317958','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2228_31796-6','31796-6','http://loinc.org','Cytomegalovirus Ag [Presence] in Urine','317966','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2228_33616-4','33616-4','http://loinc.org','Cytomegalovirus early Ag [Presence] in Urine','336164','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2228_6376-8','6376-8','http://loinc.org','Cytomegalovirus Ag [Presence] in Serum or Plasma by Immunoassay','63768','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2228_6377-6','6377-6','http://loinc.org','Cytomegalovirus Ag [Presence] in Serum or Plasma by Immunofluorescence','63776','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2228_6378-4','6378-4','http://loinc.org','Deprecated Cytomegalovirus Ag in urine','63784','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2228_6380-0','6380-0','http://loinc.org','Deprecated Cytomegalovirus Ag in unspecified specimen','63800','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2228_77388-7','77388-7','http://loinc.org','Cytomegalovirus Ag [Presence] in Bronchoalveolar lavage by Immunofluorescence','773887','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2228_88566-5','88566-5','http://loinc.org','Cytomegalovirus Ag [Presence] in Bone marrow by Immunofluorescence','885665','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2228_16718-9','16718-9','http://loinc.org','Cytomegalovirus Ag [Presence] in Blood','167189','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2228_31797-4','31797-4','http://loinc.org','Cytomegalovirus Ag [Presence] in Specimen','317974','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2228_42336-8','42336-8','http://loinc.org','Cytomegalovirus Ag [#/area] in Specimen','423368','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2228_54164-9','54164-9','http://loinc.org','Cytomegalovirus immediate-early Ag [Presence] in Blood','541649','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2228_60541-0','60541-0','http://loinc.org','Cytomegalovirus early Ag [Presence] in Specimen','605410','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2228_6375-0','6375-0','http://loinc.org','Deprecated Cytomegalovirus Ag in blood','63750','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2228_6379-2','6379-2','http://loinc.org','Cytomegalovirus Ag [Presence] in Specimen by Immunoassay','63792','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2228_6381-8','6381-8','http://loinc.org','Cytomegalovirus Ag [Presence] in Specimen by Immunofluorescence','63818','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2228_86517-0','86517-0','http://loinc.org','Cytomegalovirus Ag [Presence] in Tissue by Immunofluorescence','865170','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2228_89583-9','89583-9','http://loinc.org','Cytomegalovirus Ag [Presence] in Cerebral spinal fluid by Immunofluorescence','895839','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2228_10660-9','10660-9','http://loinc.org','Cytomegalovirus Ag [Presence] in Tissue by Immune stain','106609','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2228_67805-2','67805-2','http://loinc.org','Cytomegalovirus Ag [Presence] in Isolate by Immunofluorescence','678052','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1250_103201-0','103201-0','http://loinc.org','Yersinia enterocolitica DNA [Presence] in Wound by NAA with probe detection','1032010','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1250_48646-4','48646-4','http://loinc.org','Yersinia sp DNA [Identifier] in Specimen by NAA with probe detection','486464','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1250_79385-1','79385-1','http://loinc.org','Yersinia enterocolitica recN gene [Presence] in Stool by NAA with probe detection','793851','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1250_82202-3','82202-3','http://loinc.org','Yersinia enterocolitica DNA [Presence] in Stool by NAA with non-probe detection','822023','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1250_92723-6','92723-6','http://loinc.org','Yersinia enterocolitica DNA [Presence] in Stool by NAA with probe detection','927236','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1492_54067-4','54067-4','http://loinc.org','Clostridioides difficile toxin genes [Presence] in Stool by NAA with probe detection','540674','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1492_74822-8','74822-8','http://loinc.org','Clostridioides difficile toxin B tcdB gene [Presence] in Stool by NAA with probe detection','748228','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1492_80685-1','80685-1','http://loinc.org','Clostridioides difficile toxin A+B tcdA+tcdB genes [Presence] in Stool by NAA with probe detection','806851','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1492_82197-5','82197-5','http://loinc.org','Clostridioides difficile toxin A+B tcdA+tcdB genes [Presence] in Stool by NAA with non-probe detection','821975','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1491_103171-5','103171-5','http://loinc.org','Clostridioides difficile toxin A+B DNA [Presence] in Wound by NAA with probe detection','1031715','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1491_54067-4','54067-4','http://loinc.org','Clostridioides difficile toxin genes [Presence] in Stool by NAA with probe detection','540674','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1491_74822-8','74822-8','http://loinc.org','Clostridioides difficile toxin B tcdB gene [Presence] in Stool by NAA with probe detection','748228','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1491_80685-1','80685-1','http://loinc.org','Clostridioides difficile toxin A+B tcdA+tcdB genes [Presence] in Stool by NAA with probe detection','806851','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1491_82197-5','82197-5','http://loinc.org','Clostridioides difficile toxin A+B tcdA+tcdB genes [Presence] in Stool by NAA with non-probe detection','821975','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1377_7936-8','7936-8','http://loinc.org','Japanese encephalitis virus RNA [Presence] in Serum by NAA with probe detection','79368','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1377_51666-6','51666-6','http://loinc.org','Japanese encephalitis virus RNA [Presence] in Specimen by NAA with probe detection','516666','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1498_46131-9','46131-9','http://loinc.org','Clostridioides difficile toxin B [Presence] in Stool by Cytotoxin tissue culture assay','461319','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1498_6362-8','6362-8','http://loinc.org','Clostridioides difficile toxin A+B [Presence] in Stool by Cytotoxin tissue culture assay','63628','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2225_34201-4','34201-4','http://loinc.org','Cytomegalovirus [Presence] in Amniotic fluid by Organism specific culture','342014','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2225_88624-2','88624-2','http://loinc.org','Cytomegalovirus [Presence] in Amniotic fluid by Shell vial culture','886242','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2346_10368-9','10368-9','http://loinc.org','Lead [Mass/volume] in Capillary blood','103689','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1376_60531-1','60531-1','http://loinc.org','Japanese encephalitis virus IgM Ab [Titer] in Serum','605311','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1376_60532-9','60532-9','http://loinc.org','Japanese encephalitis virus IgM Ab [Titer] in Cerebral spinal fluid','605329','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1376_63562-3','63562-3','http://loinc.org','Japanese encephalitis virus IgM Ab [Presence] in Serum by Immunoassay','635623','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1376_63563-1','63563-1','http://loinc.org','Japanese encephalitis virus IgM Ab [Presence] in Cerebral spinal fluid by Immunoassay','635631','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1376_95682-1','95682-1','http://loinc.org','Japanese encephalitis virus IgM Ab [Presence] in Specimen by Immunoassay','956821','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2226_34719-5','34719-5','http://loinc.org','Cytomegalovirus DNA [Presence] in Amniotic fluid by NAA with probe detection','347195','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2226_49348-6','49348-6','http://loinc.org','Cytomegalovirus DNA [#/volume] (viral load) in Amniotic fluid by NAA with probe detection','493486','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2226_94823-2','94823-2','http://loinc.org','Cytomegalovirus DNA [Log #/volume] (viral load) in Amniotic fluid by NAA with probe detection','948232','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2223_10660-9','10660-9','http://loinc.org','Cytomegalovirus Ag [Presence] in Tissue by Immune stain','106609','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1378_103625-0','103625-0','http://loinc.org','Mycobacterium marinum DNA [Presence] in Specimen by NAA with probe detection','1036250','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1378_103626-8','103626-8','http://loinc.org','Mycobacterium ulcerans DNA [Presence] in Specimen by NAA with probe detection','1036268','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1378_14974-0','14974-0','http://loinc.org','Mycobacterium sp DNA [Presence] in Specimen by NAA with probe detection','149740','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1378_20463-6','20463-6','http://loinc.org','Mycobacterium avium complex rRNA [Presence] in Specimen by NAA with probe detection','204636','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1378_43854-9','43854-9','http://loinc.org','Mycobacterium sp rRNA [Presence] in Specimen by Probe','438549','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1378_45117-9','45117-9','http://loinc.org','Mycobacterium kansasii rRNA [Presence] in Specimen by NAA with probe detection','451179','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1378_5022-9','5022-9','http://loinc.org','Mycobacterium avium complex rRNA [Presence] in Specimen by Probe','50229','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1378_5023-7','5023-7','http://loinc.org','Mycobacterium avium ss avium rRNA [Presence] in Specimen by Probe','50237','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1378_5025-2','5025-2','http://loinc.org','Mycobacterium intracellulare rRNA [Presence] in Specimen by Probe','50252','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1378_5026-0','5026-0','http://loinc.org','Mycobacterium kansasii rRNA [Presence] in Specimen by Probe','50260','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1378_71719-9','71719-9','http://loinc.org','Mycobacterium avium complex DNA [Presence] in Specimen by NAA with probe detection','717199','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1378_90306-2','90306-2','http://loinc.org','Mycobacterium sp identified in Specimen by Sequencing','903062','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1499_57901-1','57901-1','http://loinc.org','Clostridioides difficile glutamate dehydrogenase [Presence] in Stool','579011','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1499_83087-7','83087-7','http://loinc.org','Clostridioides difficile glutamate dehydrogenase [Presence] in Stool by Immunoassay','830877','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2224_10660-9','10660-9','http://loinc.org','Cytomegalovirus Ag [Presence] in Tissue by Immune stain','106609','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2345_77307-7','77307-7','http://loinc.org','Lead [Mass/volume] in Venous blood','773077','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1131_92810-1','92810-1','http://loinc.org','Borrelia afzelii+burgdorferi+garinii IgG Ab [Units/volume] in Serum by Immunoassay','928101','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1131_92812-7','92812-7','http://loinc.org','Borrelia afzelii+burgdorferi+garinii IgG Ab [Units/volume] in Cerebral spinal fluid by Immunoassay','928127','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1131_92813-5','92813-5','http://loinc.org','Borrelia afzelii+burgdorferi+garinii IgG Ab [Presence] in Cerebral spinal fluid by Immunoassay','928135','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1131_92814-3','92814-3','http://loinc.org','Borrelia afzelii+burgdorferi+garinii IgG Ab [Presence] in Serum by Immunoassay','928143','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1252_13201-9','13201-9','http://loinc.org','Blastomyces dermatitidis Ab [Units/volume] in Cerebral spinal fluid','132019','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1252_16470-7','16470-7','http://loinc.org','Blastomyces dermatitidis Ab [Presence] in Serum by Complement fixation','164707','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1252_16471-5','16471-5','http://loinc.org','Blastomyces dermatitidis Ab [Units/volume] in Serum','164715','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1252_18197-4','18197-4','http://loinc.org','Blastomyces dermatitidis Ab [Presence] in Cerebral spinal fluid','181974','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1252_18198-2','18198-2','http://loinc.org','Blastomyces dermatitidis IgE Ab [Presence] in Serum','181982','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1252_18199-0','18199-0','http://loinc.org','Blastomyces dermatitidis IgG Ab [Presence] in Serum','181990','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1252_18200-6','18200-6','http://loinc.org','Blastomyces dermatitidis IgM Ab [Presence] in Serum','182006','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1252_22112-7','22112-7','http://loinc.org','Blastomyces dermatitidis Ab [Titer] in Serum','221127','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1252_23959-0','23959-0','http://loinc.org','Blastomyces dermatitidis Ab [Titer] in Cerebral spinal fluid','239590','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1252_23976-4','23976-4','http://loinc.org','Blastomyces dermatitidis Ab [Titer] in Cerebral spinal fluid by Complement fixation','239764','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1252_27386-2','27386-2','http://loinc.org','Blastomyces dermatitidis Ab [Presence] in Body fluid by Immune diffusion (ID)','273862','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1252_31259-5','31259-5','http://loinc.org','Blastomyces dermatitidis Ab [Presence] in Body fluid','312595','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1252_38443-8','38443-8','http://loinc.org','Blastomyces dermatitidis IgM Ab [Presence] in Serum by Immunoassay','384438','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1252_42490-3','42490-3','http://loinc.org','Blastomyces dermatitidis Ab [Titer] in Pleural fluid by Complement fixation','424903','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1252_43084-3','43084-3','http://loinc.org','Blastomyces dermatitidis Ab [Titer] in Pleural fluid','430843','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1252_43864-8','43864-8','http://loinc.org','Blastomyces dermatitidis IgG Ab [Presence] in Cerebral spinal fluid by Immunoassay','438648','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1252_43865-5','43865-5','http://loinc.org','Blastomyces dermatitidis IgG Ab [Presence] in Serum by Immunoassay','438655','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1252_43900-0','43900-0','http://loinc.org','Blastomyces dermatitidis Ab [Presence] in Cerebral spinal fluid by Complement fixation','439000','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1252_44451-3','44451-3','http://loinc.org','Blastomyces dermatitidis Ab [Units/volume] in Serum by Complement fixation','444513','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1252_46160-8','46160-8','http://loinc.org','Blastomyces dermatitidis IgG Ab [Presence] in Cerebral spinal fluid','461608','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1252_5057-5','5057-5','http://loinc.org','Blastomyces dermatitidis Ab [Titer] in Serum by Complement fixation','50575','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1252_5058-3','5058-3','http://loinc.org','Blastomyces dermatitidis Ab [Presence] in Serum by Immune diffusion (ID)','50583','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1252_51741-7','51741-7','http://loinc.org','Blastomyces dermatitidis Ab [Presence] in Cerebral spinal fluid by Immune diffusion (ID)','517417','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1252_51787-0','51787-0','http://loinc.org','Blastomyces dermatitidis Ab [Titer] in Serum by Immune diffusion (ID)','517870','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1252_7816-2','7816-2','http://loinc.org','Blastomyces dermatitidis Ab [Presence] in Serum','78162','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1252_9494-6','9494-6','http://loinc.org','Blastomyces dermatitidis IgG Ab [Units/volume] in Serum','94946','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1252_97519-3','97519-3','http://loinc.org','Blastomyces sp Ab band pattern [Identifier] in Specimen by Immune diffusion (ID)','975193','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1252_97855-1','97855-1','http://loinc.org','Blastomyces sp Ab [Titer] in Specimen by Complement fixation','978551','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1252_99097-8','99097-8','http://loinc.org','Blastomyces dermatitidis IgG Ab [Units/volume] in Cerebral spinal fluid by Immunoassay','990978','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1252_99098-6','99098-6','http://loinc.org','Blastomyces dermatitidis IgG Ab [Units/volume] in Serum by Immunoassay','990986','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1373_22369-3','22369-3','http://loinc.org','Japanese encephalitis virus Ab [Presence] in Cerebral spinal fluid','223693','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1373_22370-1','22370-1','http://loinc.org','Japanese encephalitis virus Ab [Presence] in Serum','223701','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1373_23146-4','23146-4','http://loinc.org','Japanese encephalitis virus Ab [Presence] in Serum by Hemagglutination inhibition','231464','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1373_7933-5','7933-5','http://loinc.org','Japanese encephalitis virus Ab [Presence] in Cerebral spinal fluid by Immunoassay','79335','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1373_7934-3','7934-3','http://loinc.org','Japanese encephalitis virus Ab [Presence] in Serum by Immunoassay','79343','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1373_95662-3','95662-3','http://loinc.org','Japanese encephalitis virus IgA Ab [Presence] in Specimen by Immunoassay','956623','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1373_95667-2','95667-2','http://loinc.org','Japanese encephalitis virus IgG Ab [Presence] in Specimen by Immunoassay','956672','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1373_99624-9','99624-9','http://loinc.org','Japanese encephalitis virus IgG Ab [Presence] in Serum by Immunoassay','996249','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1373_63562-3','63562-3','http://loinc.org','Japanese encephalitis virus IgM Ab [Presence] in Serum by Immunoassay','635623','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1373_63563-1','63563-1','http://loinc.org','Japanese encephalitis virus IgM Ab [Presence] in Cerebral spinal fluid by Immunoassay','635631','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1373_95682-1','95682-1','http://loinc.org','Japanese encephalitis virus IgM Ab [Presence] in Specimen by Immunoassay','956821','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1494_13957-6','13957-6','http://loinc.org','Clostridioides difficile toxin A [Presence] in Stool by Immunoassay','139576','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1494_34468-9','34468-9','http://loinc.org','Clostridioides difficile toxin A+B [Presence] in Stool by Immunoassay','344689','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1494_6359-4','6359-4','http://loinc.org','Clostridioides difficile toxin A [Units/volume] in Stool by Immunoassay','63594','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1494_6363-6','6363-6','http://loinc.org','Clostridioides difficile toxin A+B [Units/volume] in Stool by Immunoassay','63636','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1494_6365-1','6365-1','http://loinc.org','Clostridioides difficile toxin B [Units/volume] in Stool by Immunoassay','63651','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1130_82781-6','82781-6','http://loinc.org','Borrelia miyamotoi flaB gene [Presence] in Specimen by NAA with probe detection','827816','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1130_82476-3','82476-3','http://loinc.org','Borrelia miyamotoi glpQ gene [Presence] in Cerebral spinal fluid by NAA with non-probe detection','824763','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1130_94185-6','94185-6','http://loinc.org','Borrelia miyamotoi glpQ gene [Presence] in Specimen by NAA with probe detection','941856','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1130_101749-0','101749-0','http://loinc.org','Borrelia miyamotoi DNA [Presence] in Blood by NAA with probe detection','1017490','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1130_82475-5','82475-5','http://loinc.org','Borrelia miyamotoi glpQ gene [Presence] in Blood by NAA with non-probe detection','824755','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1251_95916-3','95916-3','http://loinc.org','Blastomyces sp DNA [Presence] in Lower respiratory specimen by NAA with probe detection','959163','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1251_103167-3','103167-3','http://loinc.org','Blastomyces dermatitidis DNA [Presence] in Specimen by NAA with probe detection','1031673','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1251_16472-3','16472-3','http://loinc.org','Blastomyces dermatitidis rRNA [Presence] in Serum by Probe','164723','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1251_95914-8','95914-8','http://loinc.org','Blastomyces sp DNA [Presence] in Tissue by NAA with probe detection','959148','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1251_4990-8','4990-8','http://loinc.org','Blastomyces dermatitidis rRNA [Presence] in Specimen by Probe','49908','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1493_6360-2','6360-2','http://loinc.org','Clostridioides difficile toxin A [Units/volume] in Specimen by Immunoassay','63602','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1493_6361-0','6361-0','http://loinc.org','Clostridioides difficile toxin A+B [Units/volume] in Serum by Immunoassay','63610','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1493_6364-4','6364-4','http://loinc.org','Clostridioides difficile toxin A+B [Units/volume] in Specimen by Immunoassay','63644','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1493_6366-9','6366-9','http://loinc.org','Clostridioides difficile toxin B [Units/volume] in Specimen by Immunoassay','63669','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1493_13957-6','13957-6','http://loinc.org','Clostridioides difficile toxin A [Presence] in Stool by Immunoassay','139576','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1493_34468-9','34468-9','http://loinc.org','Clostridioides difficile toxin A+B [Presence] in Stool by Immunoassay','344689','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1493_6359-4','6359-4','http://loinc.org','Clostridioides difficile toxin A [Units/volume] in Stool by Immunoassay','63594','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1493_6363-6','6363-6','http://loinc.org','Clostridioides difficile toxin A+B [Units/volume] in Stool by Immunoassay','63636','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1493_6365-1','6365-1','http://loinc.org','Clostridioides difficile toxin B [Units/volume] in Stool by Immunoassay','63651','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2343_104404-9','104404-9','http://loinc.org','Giardia lamblia cysts [Presence] in Stool by Microscopy','1044049','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2343_104405-6','104405-6','http://loinc.org','Giardia lamblia trophozoites [Presence] in Stool by Microscopy','1044056','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1375_23148-0','23148-0','http://loinc.org','Japanese encephalitis virus Ag [Presence] in Specimen by Immunofluorescence','231480','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1375_23149-8','23149-8','http://loinc.org','Japanese encephalitis virus Ag [Presence] in Specimen by Hemagglutination inhibition','231498','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1375_31866-7','31866-7','http://loinc.org','Japanese encephalitis virus Ag [Presence] in Specimen','318667','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1496_20762-1','20762-1','http://loinc.org','Clostridioides difficile [Presence] in Stool by Aerobe culture','207621','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1496_34712-0','34712-0','http://loinc.org','Clostridioides difficile [Presence] in Stool','347120','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1496_562-9','562-9','http://loinc.org','Clostridioides difficile [Presence] in Stool by Organism specific culture','5629','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1132_6591-2','6591-2','http://loinc.org','Yellow fever virus neutralizing antibody [Units/volume] in Serum by Neutralization test','65912','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1132_71783-5','71783-5','http://loinc.org','Yellow fever virus neutralizing antibody [Titer] in Cerebral spinal fluid by Neutralization test','717835','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1253_31731-3','31731-3','http://loinc.org','Blastomyces dermatitidis Ag [Presence] in Serum','317313','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1253_41746-9','41746-9','http://loinc.org','Blastomyces dermatitidis Ag [Presence] in Urine by Immunoassay','417469','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1253_6313-1','6313-1','http://loinc.org','Blastomyces dermatitidis Ag [Presence] in Serum by Immunoassay','63131','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1253_93429-9','93429-9','http://loinc.org','Blastomyces sp Ag [Mass/volume] in Urine by Immunoassay','934299','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1253_93430-7','93430-7','http://loinc.org','Blastomyces sp Ag [Mass/volume] in Serum or Plasma by Immunoassay','934307','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1253_93432-3','93432-3','http://loinc.org','Blastomyces sp Ag [Mass/volume] in Bronchoalveolar lavage by Immunoassay','934323','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1253_93431-5','93431-5','http://loinc.org','Blastomyces sp Ag [Mass/volume] in Cerebral spinal fluid by Immunoassay','934315','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1253_54455-1','54455-1','http://loinc.org','Blastomyces dermatitidis Ag [Units/volume] in Body fluid','544551','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1253_99083-8','99083-8','http://loinc.org','Blastomyces sp Ag [Mass/volume] in Body fluid by Immunoassay','990838','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1374_11608-7','11608-7','http://loinc.org','Japanese encephalitis virus Ab [Units/volume] in Serum','116087','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1374_23144-9','23144-9','http://loinc.org','Japanese encephalitis virus neutralizing antibody [Titer] in Serum by Neutralization test','231449','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1374_23145-6','23145-6','http://loinc.org','Japanese encephalitis virus Ab [Titer] in Serum by Complement fixation','231456','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1374_23147-2','23147-2','http://loinc.org','Japanese encephalitis virus Ab [Titer] in Serum','231472','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1374_49912-9','49912-9','http://loinc.org','Japanese encephalitis virus Ab [Titer] in Cerebral spinal fluid','499129','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1374_7935-0','7935-0','http://loinc.org','Japanese encephalitis virus Ab [Units/volume] in Serum by Hemagglutination inhibition','79350','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1374_95644-1','95644-1','http://loinc.org','Japanese encephalitis virus neutralizing antibody [Titer] in Specimen by Neutralization test','956441','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1374_60531-1','60531-1','http://loinc.org','Japanese encephalitis virus IgM Ab [Titer] in Serum','605311','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1374_60532-9','60532-9','http://loinc.org','Japanese encephalitis virus IgM Ab [Titer] in Cerebral spinal fluid','605329','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1495_563-7','563-7','http://loinc.org','Clostridioides difficile [Presence] in Specimen by Organism specific culture','5637','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1495_20762-1','20762-1','http://loinc.org','Clostridioides difficile [Presence] in Stool by Aerobe culture','207621','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1495_34712-0','34712-0','http://loinc.org','Clostridioides difficile [Presence] in Stool','347120','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1495_562-9','562-9','http://loinc.org','Clostridioides difficile [Presence] in Stool by Organism specific culture','5629','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1028_88265-4','88265-4','http://loinc.org','Listeria sp tuf gene [Presence] by Probe in Positive blood culture','882654','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1028_92767-3','92767-3','http://loinc.org','Listeria sp DNA [Presence] by NAA with probe detection in Positive blood culture','927673','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1028_85763-1','85763-1','http://loinc.org','Listeria monocytogenes DNA [Presence] by NAA with non-probe detection in Positive blood culture','857631','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1028_92780-6','92780-6','http://loinc.org','Listeria monocytogenes DNA [Presence] by NAA with probe detection in Positive blood culture','927806','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2238_10723-5','10723-5','http://loinc.org','Toxoplasma gondii IgA Ab [Units/volume] in Serum by Immunoassay','107235','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2238_10724-3','10724-3','http://loinc.org','Toxoplasma gondii IgE Ab [Units/volume] in Serum by Immunoassay','107243','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2238_14922-9','14922-9','http://loinc.org','Toxoplasma gondii IgA+IgE Ab [Units/volume] in Serum by Immunoassay','149229','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2238_17716-2','17716-2','http://loinc.org','Toxoplasma gondii IgE Ab [Units/volume] in Serum','177162','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2238_22578-9','22578-9','http://loinc.org','Toxoplasma gondii IgA Ab [Units/volume] in Serum','225789','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2238_22579-7','22579-7','http://loinc.org','Toxoplasma gondii IgA+IgE Ab [Units/volume] in Serum','225797','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2238_27354-0','27354-0','http://loinc.org','Toxoplasma gondii IgE Ab [Presence] in Serum','273540','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2238_33459-9','33459-9','http://loinc.org','Toxoplasma gondii IgA Ab [Presence] in Serum','334599','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2238_60428-0','60428-0','http://loinc.org','Toxoplasma gondii IgA Ab [Titer] in Serum','604280','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2238_74830-1','74830-1','http://loinc.org','Toxoplasma gondii IgA Ab [Presence] in Serum by Immunoassay','748301','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2238_74847-5','74847-5','http://loinc.org','Toxoplasma gondii IgE Ab [Presence] in Serum by Immunoassay','748475','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2238_104452-8','104452-8','http://loinc.org','Toxoplasma gondii IgG Ab [Presence] in Serum by Immunoblot','1044528','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2238_12261-4','12261-4','http://loinc.org','Toxoplasma gondii IgG Ab [Titer] in Serum by Immunoassay','122614','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2238_12262-2','12262-2','http://loinc.org','Toxoplasma gondii IgM Ab [Titer] in Serum by Immunoassay','122622','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2238_13286-0','13286-0','http://loinc.org','Toxoplasma gondii IgG Ab [Units/volume] in Serum --2nd specimen','132860','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2238_17717-0','17717-0','http://loinc.org','Toxoplasma gondii IgG+IgM Ab [Presence] in Serum','177170','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2238_21570-7','21570-7','http://loinc.org','Toxoplasma gondii IgG Ab [Presence] in Serum by Sabin dye test','215707','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2238_22580-5','22580-5','http://loinc.org','Toxoplasma gondii IgG Ab [Presence] in Serum','225805','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2238_22582-1','22582-1','http://loinc.org','Toxoplasma gondii IgG Ab [Titer] in Serum','225821','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2238_22584-7','22584-7','http://loinc.org','Toxoplasma gondii IgM Ab [Titer] in Serum','225847','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2238_24242-0','24242-0','http://loinc.org','Toxoplasma gondii IgG Ab [Units/volume] in Serum --1st specimen','242420','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2238_25300-5','25300-5','http://loinc.org','Toxoplasma gondii IgG Ab [Ratio] in Serum --1st specimen/2nd specimen','253005','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2238_25542-2','25542-2','http://loinc.org','Toxoplasma gondii IgM Ab [Presence] in Serum','255422','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2238_33336-9','33336-9','http://loinc.org','Toxoplasma gondii IgM Ab [Presence] in Serum by Agglutination','333369','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2238_34422-6','34422-6','http://loinc.org','Toxoplasma gondii IgG Ab avidity [Ratio] in Serum','344226','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2238_35281-5','35281-5','http://loinc.org','Toxoplasma gondii IgG Ab [Presence] in Serum by Immunofluorescence','352815','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2238_35282-3','35282-3','http://loinc.org','Toxoplasma gondii IgM Ab [Presence] in Serum or Plasma by Immunofluorescence','352823','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2238_40677-7','40677-7','http://loinc.org','Toxoplasma gondii IgG Ab [Presence] in Serum by Immunoassay','406777','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2238_40678-5','40678-5','http://loinc.org','Toxoplasma gondii IgM Ab [Presence] in Serum or Plasma by Immunoassay','406785','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2238_40785-8','40785-8','http://loinc.org','Toxoplasma gondii IgM Ab [Titer] in Serum --1st specimen','407858','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2238_40786-6','40786-6','http://loinc.org','Toxoplasma gondii IgG Ab [Titer] in Serum --2nd specimen','407866','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2238_47389-2','47389-2','http://loinc.org','Toxoplasma gondii IgG Ab avidity [Presence] in Serum','473892','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2238_47390-0','47390-0','http://loinc.org','Toxoplasma gondii IgG Ab [Units/volume] in Serum by Sabin dye test','473900','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2238_5388-4','5388-4','http://loinc.org','Toxoplasma gondii IgG Ab [Units/volume] in Serum or Plasma by Immunoassay','53884','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2238_5389-2','5389-2','http://loinc.org','Toxoplasma gondii IgG Ab [Titer] in Serum by Immunofluorescence','53892','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2238_5390-0','5390-0','http://loinc.org','Toxoplasma gondii IgM Ab [Units/volume] in Serum by Immunoassay','53900','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2238_5391-8','5391-8','http://loinc.org','Toxoplasma gondii IgM Ab [Titer] in Serum or Plasma by Immunofluorescence','53918','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2238_54087-2','54087-2','http://loinc.org','Toxoplasma gondii IgG Ab [Presence] in DBS','540872','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2238_54088-0','54088-0','http://loinc.org','Toxoplasma gondii IgM Ab [Presence] in DBS','540880','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2238_56990-5','56990-5','http://loinc.org','Toxoplasma gondii IgG Ab avidity [Ratio] in Serum by Immunoassay','569905','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2238_56991-3','56991-3','http://loinc.org','Toxoplasma gondii IgG Ab avidity [Presence] in Serum or Plasma by Immunoassay','569913','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2238_8039-0','8039-0','http://loinc.org','Toxoplasma gondii IgG Ab [Units/volume] in Serum','80390','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2238_8040-8','8040-8','http://loinc.org','Toxoplasma gondii IgM Ab [Units/volume] in Serum','80408','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2238_83123-0','83123-0','http://loinc.org','Toxoplasma gondii IgG+IgM Ab [Presence] in Serum or Plasma by Immunoassay','831230','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2239_33320-3','33320-3','http://loinc.org','Toxoplasma gondii IgG Ab [Units/volume] in Body fluid','333203','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2239_33321-1','33321-1','http://loinc.org','Toxoplasma gondii IgM Ab [Units/volume] in Body fluid','333211','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2239_40697-5','40697-5','http://loinc.org','Toxoplasma gondii IgM Ab index [Units/volume] in Serum and CSF','406975','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2239_86738-2','86738-2','http://loinc.org','Toxoplasma gondii IgG Ab [Presence] in Specimen by Immunoassay','867382','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2239_18348-3','18348-3','http://loinc.org','Toxoplasma gondii IgM Ab [Units/volume] in Cerebral spinal fluid','183483','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2239_21569-9','21569-9','http://loinc.org','Toxoplasma gondii IgG Ab [Titer] in Cerebral spinal fluid by Immunofluorescence','215699','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2239_21571-5','21571-5','http://loinc.org','Toxoplasma gondii IgM Ab [Titer] in Cerebral spinal fluid by Immunofluorescence','215715','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2239_22581-3','22581-3','http://loinc.org','Toxoplasma gondii IgG Ab [Titer] in Cerebral spinal fluid','225813','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2239_22583-9','22583-9','http://loinc.org','Toxoplasma gondii IgM Ab [Titer] in Cerebral spinal fluid','225839','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2239_30038-4','30038-4','http://loinc.org','Toxoplasma gondii IgG Ab [Units/volume] in Cerebral spinal fluid by Immunoassay','300384','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2239_30568-0','30568-0','http://loinc.org','Toxoplasma gondii IgG Ab [Presence] in Cerebral spinal fluid by Immunoassay','305680','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2239_30569-8','30569-8','http://loinc.org','Toxoplasma gondii IgM Ab [Presence] in Cerebral spinal fluid by Immunoassay','305698','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2239_31178-7','31178-7','http://loinc.org','Toxoplasma gondii IgM Ab [Units/volume] in Cerebral spinal fluid by Immunoassay','311787','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2239_31181-1','31181-1','http://loinc.org','Toxoplasma gondii IgM Ab [Presence] in Cerebral spinal fluid','311811','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2239_31685-1','31685-1','http://loinc.org','Toxoplasma gondii IgG Ab [Presence] in Cerebral spinal fluid','316851','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2239_9741-0','9741-0','http://loinc.org','Toxoplasma gondii IgG Ab [Units/volume] in Cerebral spinal fluid','97410','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2239_104452-8','104452-8','http://loinc.org','Toxoplasma gondii IgG Ab [Presence] in Serum by Immunoblot','1044528','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2239_12261-4','12261-4','http://loinc.org','Toxoplasma gondii IgG Ab [Titer] in Serum by Immunoassay','122614','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2239_12262-2','12262-2','http://loinc.org','Toxoplasma gondii IgM Ab [Titer] in Serum by Immunoassay','122622','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2239_13286-0','13286-0','http://loinc.org','Toxoplasma gondii IgG Ab [Units/volume] in Serum --2nd specimen','132860','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2239_17717-0','17717-0','http://loinc.org','Toxoplasma gondii IgG+IgM Ab [Presence] in Serum','177170','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2239_21570-7','21570-7','http://loinc.org','Toxoplasma gondii IgG Ab [Presence] in Serum by Sabin dye test','215707','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2239_22580-5','22580-5','http://loinc.org','Toxoplasma gondii IgG Ab [Presence] in Serum','225805','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2239_22582-1','22582-1','http://loinc.org','Toxoplasma gondii IgG Ab [Titer] in Serum','225821','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2239_22584-7','22584-7','http://loinc.org','Toxoplasma gondii IgM Ab [Titer] in Serum','225847','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2239_24242-0','24242-0','http://loinc.org','Toxoplasma gondii IgG Ab [Units/volume] in Serum --1st specimen','242420','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2239_25300-5','25300-5','http://loinc.org','Toxoplasma gondii IgG Ab [Ratio] in Serum --1st specimen/2nd specimen','253005','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2239_25542-2','25542-2','http://loinc.org','Toxoplasma gondii IgM Ab [Presence] in Serum','255422','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2239_33336-9','33336-9','http://loinc.org','Toxoplasma gondii IgM Ab [Presence] in Serum by Agglutination','333369','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2239_34422-6','34422-6','http://loinc.org','Toxoplasma gondii IgG Ab avidity [Ratio] in Serum','344226','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2239_35281-5','35281-5','http://loinc.org','Toxoplasma gondii IgG Ab [Presence] in Serum by Immunofluorescence','352815','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2239_35282-3','35282-3','http://loinc.org','Toxoplasma gondii IgM Ab [Presence] in Serum or Plasma by Immunofluorescence','352823','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2239_40677-7','40677-7','http://loinc.org','Toxoplasma gondii IgG Ab [Presence] in Serum by Immunoassay','406777','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2239_40678-5','40678-5','http://loinc.org','Toxoplasma gondii IgM Ab [Presence] in Serum or Plasma by Immunoassay','406785','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2239_40785-8','40785-8','http://loinc.org','Toxoplasma gondii IgM Ab [Titer] in Serum --1st specimen','407858','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2239_40786-6','40786-6','http://loinc.org','Toxoplasma gondii IgG Ab [Titer] in Serum --2nd specimen','407866','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2239_47389-2','47389-2','http://loinc.org','Toxoplasma gondii IgG Ab avidity [Presence] in Serum','473892','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2239_47390-0','47390-0','http://loinc.org','Toxoplasma gondii IgG Ab [Units/volume] in Serum by Sabin dye test','473900','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2239_5388-4','5388-4','http://loinc.org','Toxoplasma gondii IgG Ab [Units/volume] in Serum or Plasma by Immunoassay','53884','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2239_5389-2','5389-2','http://loinc.org','Toxoplasma gondii IgG Ab [Titer] in Serum by Immunofluorescence','53892','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2239_5390-0','5390-0','http://loinc.org','Toxoplasma gondii IgM Ab [Units/volume] in Serum by Immunoassay','53900','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2239_5391-8','5391-8','http://loinc.org','Toxoplasma gondii IgM Ab [Titer] in Serum or Plasma by Immunofluorescence','53918','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2239_54087-2','54087-2','http://loinc.org','Toxoplasma gondii IgG Ab [Presence] in DBS','540872','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2239_54088-0','54088-0','http://loinc.org','Toxoplasma gondii IgM Ab [Presence] in DBS','540880','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2239_56990-5','56990-5','http://loinc.org','Toxoplasma gondii IgG Ab avidity [Ratio] in Serum by Immunoassay','569905','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2239_56991-3','56991-3','http://loinc.org','Toxoplasma gondii IgG Ab avidity [Presence] in Serum or Plasma by Immunoassay','569913','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2239_8039-0','8039-0','http://loinc.org','Toxoplasma gondii IgG Ab [Units/volume] in Serum','80390','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2239_8040-8','8040-8','http://loinc.org','Toxoplasma gondii IgM Ab [Units/volume] in Serum','80408','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2239_83123-0','83123-0','http://loinc.org','Toxoplasma gondii IgG+IgM Ab [Presence] in Serum or Plasma by Immunoassay','831230','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.282_73656-1','73656-1','http://loinc.org','Varicella zoster virus ORF28 genotype [Identifier]','736561','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.282_73657-9','73657-9','http://loinc.org','Varicella zoster virus ORF36 genotype [Identifier]','736579','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.282_88135-9','88135-9','http://loinc.org','Varicella zoster virus [Presence] in Cornea or Conjunctiva by Organism specific culture','881359','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.282_88136-7','88136-7','http://loinc.org','Varicella zoster virus [Presence] in Ocular fluid by Organism specific culture','881367','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.282_91784-9','91784-9','http://loinc.org','Varicella zoster virus [Presence] in Lower respiratory specimen by Organism specific culture','917849','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.282_10860-5','10860-5','http://loinc.org','Varicella zoster virus [Presence] in Specimen by Organism specific culture','108605','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.282_43693-1','43693-1','http://loinc.org','Varicella zoster virus identified in Skin by Shell vial culture','436931','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.282_62454-4','62454-4','http://loinc.org','Herpes simplex virus and Varicella zoster virus identified in Specimen by Organism specific culture','624544','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.282_82746-9','82746-9','http://loinc.org','Varicella zoster virus strain [Type] in Isolate','827469','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.282_67812-8','67812-8','http://loinc.org','Varicella zoster virus Ag [Presence] in Isolate by Immunofluorescence','678128','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.283_100691-5','100691-5','http://loinc.org','Varicella zoster virus DNA [Log #/volume] (viral load) in Blood by NAA with probe detection','1006915','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.283_101428-1','101428-1','http://loinc.org','Varicella zoster virus DNA [Presence] in Respiratory system specimen by NAA with probe detection','1014281','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.283_29248-2','29248-2','http://loinc.org','Varicella zoster virus DNA [Presence] in Blood by NAA with probe detection','292482','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.283_35399-5','35399-5','http://loinc.org','Varicella zoster virus DNA [Presence] in Eye by NAA with probe detection','353995','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.283_47003-9','47003-9','http://loinc.org','Varicella zoster virus DNA [#/volume] (viral load) in Serum or Plasma by NAA with probe detection','470039','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.283_49452-6','49452-6','http://loinc.org','Varicella zoster virus DNA [#/volume] (viral load) in Urine by NAA with probe detection','494526','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.283_49453-4','49453-4','http://loinc.org','Varicella zoster virus DNA [#/volume] (viral load) in Bone marrow by NAA with probe detection','494534','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.283_49454-2','49454-2','http://loinc.org','Varicella zoster virus DNA [#/volume] (viral load) in Amniotic fluid by NAA with probe detection','494542','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.283_49455-9','49455-9','http://loinc.org','Varicella zoster virus DNA [#/volume] (viral load) in Bronchoalveolar lavage by NAA with probe detection','494559','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.283_8049-9','8049-9','http://loinc.org','Varicella zoster virus DNA [Presence] in Serum by NAA with probe detection','80499','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.283_86593-1','86593-1','http://loinc.org','Varicella zoster virus DNA [Presence] in Amniotic fluid by NAA with probe detection','865931','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.283_88132-6','88132-6','http://loinc.org','Varicella zoster virus DNA [Presence] in Cornea or Conjunctiva by NAA with probe detection','881326','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.283_88134-2','88134-2','http://loinc.org','Varicella zoster virus DNA [Presence] in Ocular fluid by NAA with probe detection','881342','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.283_88565-7','88565-7','http://loinc.org','Varicella zoster virus DNA [Presence] in Lower respiratory specimen by NAA with probe detection','885657','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.283_91791-4','91791-4','http://loinc.org','Varicella zoster virus DNA [Presence] in Upper respiratory specimen by NAA with probe detection','917914','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.283_92848-1','92848-1','http://loinc.org','Varicella zoster virus DNA [#/volume] (viral load) in Blood by NAA with probe detection','928481','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.283_92888-7','92888-7','http://loinc.org','Varicella zoster virus DNA [Presence] in Skin by NAA with probe detection','928887','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.283_94831-5','94831-5','http://loinc.org','Varicella zoster virus DNA [Units/volume] (viral load) in Amniotic fluid by NAA with probe detection','948315','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.283_94832-3','94832-3','http://loinc.org','Varicella zoster virus DNA [log units/volume] (viral load) in Amniotic fluid by NAA with probe detection','948323','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.283_94833-1','94833-1','http://loinc.org','Varicella zoster virus DNA [Log #/volume] (viral load) in Amniotic fluid by NAA with probe detection','948331','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.283_100692-3','100692-3','http://loinc.org','Varicella zoster virus DNA [Log #/volume] (viral load) in Cerebral spinal fluid by NAA with probe detection','1006923','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.283_100982-8','100982-8','http://loinc.org','Varicella zoster virus DNA [Log #/volume] (viral load) in Specimen by NAA with probe detection','1009828','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.283_11483-5','11483-5','http://loinc.org','Varicella zoster virus DNA [Presence] in Specimen by NAA with probe detection','114835','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.283_21598-8','21598-8','http://loinc.org','Varicella zoster virus DNA [Presence] in Cerebral spinal fluid by NAA with probe detection','215988','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.283_35400-1','35400-1','http://loinc.org','Varicella zoster virus DNA [Presence] in Tissue by NAA with probe detection','354001','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.283_47002-1','47002-1','http://loinc.org','Varicella zoster virus DNA [#/volume] (viral load) in Cerebral spinal fluid by NAA with probe detection','470021','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.283_49450-0','49450-0','http://loinc.org','Varicella zoster virus DNA [#/volume] (viral load) in Tissue by NAA with probe detection','494500','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.283_49451-8','49451-8','http://loinc.org','Varicella zoster virus DNA [#/volume] (viral load) in Specimen by NAA with probe detection','494518','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.283_82188-4','82188-4','http://loinc.org','Varicella zoster virus DNA [Presence] in Cerebral spinal fluid by NAA with non-probe detection','821884','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.283_86502-2','86502-2','http://loinc.org','Varicella zoster virus strain DNA [Type] in Specimen by NAA with probe detection','865022','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.283_86509-7','86509-7','http://loinc.org','Varicella zoster virus clade [Type] in Specimen by Molecular genetics method','865097','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.283_87961-9','87961-9','http://loinc.org','Varicella zoster virus DNA [Presence] in Body fluid by NAA with probe detection','879619','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.283_88536-8','88536-8','http://loinc.org','Varicella zoster virus DNA [Presence] in Aspirate by NAA with probe detection','885368','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.283_94584-0','94584-0','http://loinc.org','Varicella zoster virus DNA [Presence] in Specimen by NAA with non-probe detection','945840','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.284_31981-4','31981-4','http://loinc.org','Varicella zoster virus Ag [Presence] in Skin','319814','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.284_5881-8','5881-8','http://loinc.org','Varicella zoster virus Ag [Presence] in Skin by Immunofluorescence','58818','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.284_91774-0','91774-0','http://loinc.org','Varicella zoster virus Ag [Presence] in Lower respiratory specimen by Immunofluorescence','917740','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.284_89589-6','89589-6','http://loinc.org','Varicella zoster virus Ag [Presence] in Cerebral spinal fluid by Immunofluorescence','895896','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.284_31982-2','31982-2','http://loinc.org','Varicella zoster virus Ag [Presence] in Specimen','319822','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.284_5882-6','5882-6','http://loinc.org','Varicella zoster virus Ag [Presence] in Specimen by Immunofluorescence','58826','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.284_86592-3','86592-3','http://loinc.org','Varicella zoster virus Ag [Presence] in Tissue by Immunofluorescence','865923','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.286_17766-7','17766-7','http://loinc.org','Varicella zoster virus IgM Ab [Units/volume] in Serum by Immunofluorescence','177667','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.286_21596-2','21596-2','http://loinc.org','Varicella zoster virus IgM Ab [Titer] in Cerebral spinal fluid by Immunofluorescence','215962','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.286_21597-0','21597-0','http://loinc.org','Varicella zoster virus IgM Ab [Presence] in Serum','215970','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.286_22605-0','22605-0','http://loinc.org','Varicella zoster virus IgM Ab [Titer] in Cerebral spinal fluid','226050','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.286_22606-8','22606-8','http://loinc.org','Varicella zoster virus IgM Ab [Titer] in Serum','226068','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.286_29662-4','29662-4','http://loinc.org','Varicella zoster virus IgM Ab [Presence] in Serum by Immunoassay','296624','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.286_31695-0','31695-0','http://loinc.org','Varicella zoster virus IgM Ab [Units/volume] in Cerebral spinal fluid','316950','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.286_43588-3','43588-3','http://loinc.org','Varicella zoster virus IgM Ab [Presence] in Serum by Immunofluorescence','435883','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.286_53535-1','53535-1','http://loinc.org','Varicella zoster virus IgM Ab [Presence] in Body fluid by Immunoassay','535351','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.286_5404-9','5404-9','http://loinc.org','Varicella zoster virus IgM Ab [Units/volume] in Serum by Immunoassay','54049','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.286_57322-0','57322-0','http://loinc.org','Varicella zoster virus IgM Ab [Units/volume] in Serum by Immunoassay --1st specimen','573220','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.286_57323-8','57323-8','http://loinc.org','Varicella zoster virus IgM Ab [Units/volume] in Serum by Immunoassay --2nd specimen','573238','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.286_6570-6','6570-6','http://loinc.org','Varicella zoster virus IgM Ab [Titer] in Serum by Immunofluorescence','65706','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.286_69930-6','69930-6','http://loinc.org','Varicella zoster virus IgM Ab [Presence] in Cerebral spinal fluid by Immunoassay','699306','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.286_74414-4','74414-4','http://loinc.org','Varicella zoster virus IgM Ab [Units/volume] in Body fluid by Immunoassay','744144','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.286_8048-1','8048-1','http://loinc.org','Varicella zoster virus IgM Ab [Units/volume] in Serum','80481','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.286_96960-0','96960-0','http://loinc.org','Varicella zoster virus IgM Ab index [Units/volume] in Serum and CSF','969600','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2236_86737-4','86737-4','http://loinc.org','Toxoplasma gondii Ag [Presence] in Tissue by Immune stain','867374','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2237_87361-2','87361-2','http://loinc.org','Toxoplasma gondii Ab/Negative control in Serum or Plasma by Immunoassay','873612','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2237_23485-6','23485-6','http://loinc.org','Toxoplasma gondii Ab [Presence] in Serum by Agglutination','234856','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2237_23486-4','23486-4','http://loinc.org','Toxoplasma gondii Ab [Presence] in Serum by Latex agglutination','234864','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2237_23784-2','23784-2','http://loinc.org','Toxoplasma gondii Ab [Titer] in Serum by Hemagglutination','237842','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2237_33265-0','33265-0','http://loinc.org','Toxoplasma gondii IgA Ab [Units/volume] in Cerebral spinal fluid','332650','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2237_35287-2','35287-2','http://loinc.org','Toxoplasma gondii HS Ab [Units/volume] in Serum by Agglutination','352872','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2237_35305-2','35305-2','http://loinc.org','Toxoplasma gondii AC Ab [Units/volume] in Serum by Agglutination','353052','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2237_41123-1','41123-1','http://loinc.org','Toxoplasma gondii HS Ab [Units/volume] in Serum','411231','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2237_41124-9','41124-9','http://loinc.org','Toxoplasma gondii AC Ab [Units/volume] in Serum','411249','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2237_42949-8','42949-8','http://loinc.org','Toxoplasma gondii Ab [Titer] in Serum','429498','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2237_49109-2','49109-2','http://loinc.org','Toxoplasma gondii Ab [Units/volume] in Cerebral spinal fluid by Immunoassay','491092','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2237_5387-6','5387-6','http://loinc.org','Toxoplasma gondii Ab [Presence] in Serum by Sabin dye test','53876','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2237_93859-7','93859-7','http://loinc.org','Toxoplasma gondii IgG Ab [Presence] in Serum from Donor by Immunoassay','938597','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2237_93860-5','93860-5','http://loinc.org','Toxoplasma gondii IgG Ab [Units/volume] in Serum from Donor by Immunoassay','938605','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2237_10723-5','10723-5','http://loinc.org','Toxoplasma gondii IgA Ab [Units/volume] in Serum by Immunoassay','107235','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2237_10724-3','10724-3','http://loinc.org','Toxoplasma gondii IgE Ab [Units/volume] in Serum by Immunoassay','107243','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2237_14922-9','14922-9','http://loinc.org','Toxoplasma gondii IgA+IgE Ab [Units/volume] in Serum by Immunoassay','149229','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2237_17716-2','17716-2','http://loinc.org','Toxoplasma gondii IgE Ab [Units/volume] in Serum','177162','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2237_22578-9','22578-9','http://loinc.org','Toxoplasma gondii IgA Ab [Units/volume] in Serum','225789','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2237_22579-7','22579-7','http://loinc.org','Toxoplasma gondii IgA+IgE Ab [Units/volume] in Serum','225797','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2237_27354-0','27354-0','http://loinc.org','Toxoplasma gondii IgE Ab [Presence] in Serum','273540','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2237_33320-3','33320-3','http://loinc.org','Toxoplasma gondii IgG Ab [Units/volume] in Body fluid','333203','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2237_33321-1','33321-1','http://loinc.org','Toxoplasma gondii IgM Ab [Units/volume] in Body fluid','333211','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2237_33459-9','33459-9','http://loinc.org','Toxoplasma gondii IgA Ab [Presence] in Serum','334599','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2237_40697-5','40697-5','http://loinc.org','Toxoplasma gondii IgM Ab index [Units/volume] in Serum and CSF','406975','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2237_60428-0','60428-0','http://loinc.org','Toxoplasma gondii IgA Ab [Titer] in Serum','604280','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2237_74830-1','74830-1','http://loinc.org','Toxoplasma gondii IgA Ab [Presence] in Serum by Immunoassay','748301','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2237_74847-5','74847-5','http://loinc.org','Toxoplasma gondii IgE Ab [Presence] in Serum by Immunoassay','748475','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2237_86738-2','86738-2','http://loinc.org','Toxoplasma gondii IgG Ab [Presence] in Specimen by Immunoassay','867382','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2237_104452-8','104452-8','http://loinc.org','Toxoplasma gondii IgG Ab [Presence] in Serum by Immunoblot','1044528','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2237_12261-4','12261-4','http://loinc.org','Toxoplasma gondii IgG Ab [Titer] in Serum by Immunoassay','122614','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2237_12262-2','12262-2','http://loinc.org','Toxoplasma gondii IgM Ab [Titer] in Serum by Immunoassay','122622','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2237_13286-0','13286-0','http://loinc.org','Toxoplasma gondii IgG Ab [Units/volume] in Serum --2nd specimen','132860','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2237_17717-0','17717-0','http://loinc.org','Toxoplasma gondii IgG+IgM Ab [Presence] in Serum','177170','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2237_18348-3','18348-3','http://loinc.org','Toxoplasma gondii IgM Ab [Units/volume] in Cerebral spinal fluid','183483','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2237_21569-9','21569-9','http://loinc.org','Toxoplasma gondii IgG Ab [Titer] in Cerebral spinal fluid by Immunofluorescence','215699','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2237_21570-7','21570-7','http://loinc.org','Toxoplasma gondii IgG Ab [Presence] in Serum by Sabin dye test','215707','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2237_21571-5','21571-5','http://loinc.org','Toxoplasma gondii IgM Ab [Titer] in Cerebral spinal fluid by Immunofluorescence','215715','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2237_22580-5','22580-5','http://loinc.org','Toxoplasma gondii IgG Ab [Presence] in Serum','225805','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2237_22581-3','22581-3','http://loinc.org','Toxoplasma gondii IgG Ab [Titer] in Cerebral spinal fluid','225813','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2237_22582-1','22582-1','http://loinc.org','Toxoplasma gondii IgG Ab [Titer] in Serum','225821','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2237_22583-9','22583-9','http://loinc.org','Toxoplasma gondii IgM Ab [Titer] in Cerebral spinal fluid','225839','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2237_22584-7','22584-7','http://loinc.org','Toxoplasma gondii IgM Ab [Titer] in Serum','225847','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2237_24242-0','24242-0','http://loinc.org','Toxoplasma gondii IgG Ab [Units/volume] in Serum --1st specimen','242420','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2237_25300-5','25300-5','http://loinc.org','Toxoplasma gondii IgG Ab [Ratio] in Serum --1st specimen/2nd specimen','253005','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2237_25542-2','25542-2','http://loinc.org','Toxoplasma gondii IgM Ab [Presence] in Serum','255422','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2237_30038-4','30038-4','http://loinc.org','Toxoplasma gondii IgG Ab [Units/volume] in Cerebral spinal fluid by Immunoassay','300384','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2237_30568-0','30568-0','http://loinc.org','Toxoplasma gondii IgG Ab [Presence] in Cerebral spinal fluid by Immunoassay','305680','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2237_30569-8','30569-8','http://loinc.org','Toxoplasma gondii IgM Ab [Presence] in Cerebral spinal fluid by Immunoassay','305698','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2237_31178-7','31178-7','http://loinc.org','Toxoplasma gondii IgM Ab [Units/volume] in Cerebral spinal fluid by Immunoassay','311787','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2237_31181-1','31181-1','http://loinc.org','Toxoplasma gondii IgM Ab [Presence] in Cerebral spinal fluid','311811','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2237_31685-1','31685-1','http://loinc.org','Toxoplasma gondii IgG Ab [Presence] in Cerebral spinal fluid','316851','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2237_33336-9','33336-9','http://loinc.org','Toxoplasma gondii IgM Ab [Presence] in Serum by Agglutination','333369','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2237_34422-6','34422-6','http://loinc.org','Toxoplasma gondii IgG Ab avidity [Ratio] in Serum','344226','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2237_35281-5','35281-5','http://loinc.org','Toxoplasma gondii IgG Ab [Presence] in Serum by Immunofluorescence','352815','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2237_35282-3','35282-3','http://loinc.org','Toxoplasma gondii IgM Ab [Presence] in Serum or Plasma by Immunofluorescence','352823','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2237_40677-7','40677-7','http://loinc.org','Toxoplasma gondii IgG Ab [Presence] in Serum by Immunoassay','406777','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2237_40678-5','40678-5','http://loinc.org','Toxoplasma gondii IgM Ab [Presence] in Serum or Plasma by Immunoassay','406785','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2237_40785-8','40785-8','http://loinc.org','Toxoplasma gondii IgM Ab [Titer] in Serum --1st specimen','407858','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2237_40786-6','40786-6','http://loinc.org','Toxoplasma gondii IgG Ab [Titer] in Serum --2nd specimen','407866','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2237_47389-2','47389-2','http://loinc.org','Toxoplasma gondii IgG Ab avidity [Presence] in Serum','473892','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2237_47390-0','47390-0','http://loinc.org','Toxoplasma gondii IgG Ab [Units/volume] in Serum by Sabin dye test','473900','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2237_5388-4','5388-4','http://loinc.org','Toxoplasma gondii IgG Ab [Units/volume] in Serum or Plasma by Immunoassay','53884','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2237_5389-2','5389-2','http://loinc.org','Toxoplasma gondii IgG Ab [Titer] in Serum by Immunofluorescence','53892','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2237_5390-0','5390-0','http://loinc.org','Toxoplasma gondii IgM Ab [Units/volume] in Serum by Immunoassay','53900','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2237_5391-8','5391-8','http://loinc.org','Toxoplasma gondii IgM Ab [Titer] in Serum or Plasma by Immunofluorescence','53918','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2237_54087-2','54087-2','http://loinc.org','Toxoplasma gondii IgG Ab [Presence] in DBS','540872','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2237_54088-0','54088-0','http://loinc.org','Toxoplasma gondii IgM Ab [Presence] in DBS','540880','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2237_56990-5','56990-5','http://loinc.org','Toxoplasma gondii IgG Ab avidity [Ratio] in Serum by Immunoassay','569905','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2237_56991-3','56991-3','http://loinc.org','Toxoplasma gondii IgG Ab avidity [Presence] in Serum or Plasma by Immunoassay','569913','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2237_8039-0','8039-0','http://loinc.org','Toxoplasma gondii IgG Ab [Units/volume] in Serum','80390','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2237_8040-8','8040-8','http://loinc.org','Toxoplasma gondii IgM Ab [Units/volume] in Serum','80408','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2237_83123-0','83123-0','http://loinc.org','Toxoplasma gondii IgG+IgM Ab [Presence] in Serum or Plasma by Immunoassay','831230','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2237_9741-0','9741-0','http://loinc.org','Toxoplasma gondii IgG Ab [Units/volume] in Cerebral spinal fluid','97410','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2235_86737-4','86737-4','http://loinc.org','Toxoplasma gondii Ag [Presence] in Tissue by Immune stain','867374','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1142_101289-7','101289-7','http://loinc.org','SARS-CoV-2 (COVID-19) RNA [Presence] in Throat by NAA with non-probe detection','1012897','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1142_94307-6','94307-6','http://loinc.org','SARS-CoV-2 (COVID-19) N gene [Presence] in Specimen by Nucleic acid amplification using CDC primer-probe set N1','943076','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1142_94308-4','94308-4','http://loinc.org','SARS-CoV-2 (COVID-19) N gene [Presence] in Specimen by Nucleic acid amplification using CDC primer-probe set N2','943084','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1142_94309-2','94309-2','http://loinc.org','SARS-CoV-2 (COVID-19) RNA [Presence] in Specimen by NAA with probe detection','943092','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1142_94311-8','94311-8','http://loinc.org','SARS-CoV-2 (COVID-19) N gene [Cycle Threshold #] in Specimen by Nucleic acid amplification using CDC primer-probe set N1','943118','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1142_94312-6','94312-6','http://loinc.org','SARS-CoV-2 (COVID-19) N gene [Cycle Threshold #] in Specimen by Nucleic acid amplification using CDC primer-probe set N2','943126','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1142_94314-2','94314-2','http://loinc.org','SARS-CoV-2 (COVID-19) RdRp gene [Presence] in Specimen by NAA with probe detection','943142','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1142_94316-7','94316-7','http://loinc.org','SARS-CoV-2 (COVID-19) N gene [Presence] in Specimen by NAA with probe detection','943167','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1142_94500-6','94500-6','http://loinc.org','SARS-CoV-2 (COVID-19) RNA [Presence] in Respiratory system specimen by NAA with probe detection','945006','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1142_94510-5','94510-5','http://loinc.org','SARS-CoV-2 (COVID-19) N gene [Cycle Threshold #] in Specimen by NAA with probe detection','945105','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1142_94511-3','94511-3','http://loinc.org','SARS-CoV-2 (COVID-19) ORF1ab region [Cycle Threshold #] in Specimen by NAA with probe detection','945113','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1142_94533-7','94533-7','http://loinc.org','SARS-CoV-2 (COVID-19) N gene [Presence] in Respiratory system specimen by NAA with probe detection','945337','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1142_94534-5','94534-5','http://loinc.org','SARS-CoV-2 (COVID-19) RdRp gene [Presence] in Respiratory system specimen by NAA with probe detection','945345','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1142_94559-2','94559-2','http://loinc.org','SARS-CoV-2 (COVID-19) ORF1ab region [Presence] in Respiratory system specimen by NAA with probe detection','945592','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1142_94565-9','94565-9','http://loinc.org','SARS-CoV-2 (COVID-19) RNA [Presence] in Nasopharynx by NAA with non-probe detection','945659','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1142_94639-2','94639-2','http://loinc.org','SARS-CoV-2 (COVID-19) ORF1ab region [Presence] in Specimen by NAA with probe detection','946392','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1142_94640-0','94640-0','http://loinc.org','SARS-CoV-2 (COVID-19) S gene [Presence] in Respiratory system specimen by NAA with probe detection','946400','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1142_94641-8','94641-8','http://loinc.org','SARS-CoV-2 (COVID-19) S gene [Presence] in Specimen by NAA with probe detection','946418','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1142_94642-6','94642-6','http://loinc.org','SARS-CoV-2 (COVID-19) S gene [Cycle Threshold #] in Respiratory system specimen by NAA with probe detection','946426','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1142_94643-4','94643-4','http://loinc.org','SARS-CoV-2 (COVID-19) S gene [Cycle Threshold #] in Specimen by NAA with probe detection','946434','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1142_94644-2','94644-2','http://loinc.org','SARS-CoV-2 (COVID-19) ORF1ab region [Cycle Threshold #] in Respiratory system specimen by NAA with probe detection','946442','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1142_94645-9','94645-9','http://loinc.org','SARS-CoV-2 (COVID-19) RdRp gene [Cycle Threshold #] in Specimen by NAA with probe detection','946459','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1142_94646-7','94646-7','http://loinc.org','SARS-CoV-2 (COVID-19) RdRp gene [Cycle Threshold #] in Respiratory system specimen by NAA with probe detection','946467','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1142_94660-8','94660-8','http://loinc.org','SARS-CoV-2 (COVID-19) RNA [Presence] in Serum or Plasma by NAA with probe detection','946608','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1142_94745-7','94745-7','http://loinc.org','SARS-CoV-2 (COVID-19) RNA [Cycle Threshold #] in Respiratory system specimen by NAA with probe detection','947457','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1142_94746-5','94746-5','http://loinc.org','SARS-CoV-2 (COVID-19) RNA [Cycle Threshold #] in Specimen by NAA with probe detection','947465','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1142_94756-4','94756-4','http://loinc.org','SARS-CoV-2 (COVID-19) N gene [Presence] in Respiratory system specimen by Nucleic acid amplification using CDC primer-probe set N1','947564','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1142_94757-2','94757-2','http://loinc.org','SARS-CoV-2 (COVID-19) N gene [Presence] in Respiratory system specimen by Nucleic acid amplification using CDC primer-probe set N2','947572','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1142_94759-8','94759-8','http://loinc.org','SARS-CoV-2 (COVID-19) RNA [Presence] in Nasopharynx by NAA with probe detection','947598','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1142_94760-6','94760-6','http://loinc.org','SARS-CoV-2 (COVID-19) N gene [Presence] in Nasopharynx by NAA with probe detection','947606','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1142_94766-3','94766-3','http://loinc.org','SARS-CoV-2 (COVID-19) N gene [Presence] in Serum or Plasma by NAA with probe detection','947663','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1142_94767-1','94767-1','http://loinc.org','SARS-CoV-2 (COVID-19) S gene [Presence] in Serum or Plasma by NAA with probe detection','947671','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1142_94819-0','94819-0','http://loinc.org','SARS-CoV-2 (COVID-19) RNA [Log #/volume] (viral load) in Specimen by NAA with probe detection','948190','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1142_94822-4','94822-4','http://loinc.org','SARS-CoV-2 (COVID-19) RNA [Presence] in Saliva (oral fluid) by Sequencing','948224','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1142_94845-5','94845-5','http://loinc.org','SARS-CoV-2 (COVID-19) RNA [Presence] in Saliva (oral fluid) by NAA with probe detection','948455','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1142_95406-5','95406-5','http://loinc.org','SARS-CoV-2 (COVID-19) RNA [Presence] in Nose by NAA with probe detection','954065','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1142_95409-9','95409-9','http://loinc.org','SARS-CoV-2 (COVID-19) N gene [Presence] in Nose by NAA with probe detection','954099','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1142_95424-8','95424-8','http://loinc.org','SARS-CoV-2 (COVID-19) RNA [Presence] in Respiratory system specimen by Sequencing','954248','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1142_95425-5','95425-5','http://loinc.org','SARS-CoV-2 (COVID-19) N gene [Presence] in Saliva (oral fluid) by NAA with probe detection','954255','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1142_95521-1','95521-1','http://loinc.org','SARS-CoV-2 (COVID-19) N gene [#/volume] (viral load) in Respiratory system specimen by NAA with probe detection','955211','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1142_95522-9','95522-9','http://loinc.org','SARS-CoV-2 (COVID-19) N gene [Log #/volume] (viral load) in Respiratory system specimen by NAA with probe detection','955229','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1142_95608-6','95608-6','http://loinc.org','SARS-CoV-2 (COVID-19) RNA [Presence] in Respiratory system specimen by NAA with non-probe detection','956086','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1142_95609-4','95609-4','http://loinc.org','SARS-CoV-2 (COVID-19) S gene [Presence] in Respiratory system specimen by Sequencing','956094','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1142_95824-9','95824-9','http://loinc.org','SARS-CoV-2 (COVID-19) ORF1ab region [Presence] in Saliva (oral fluid) by NAA with probe detection','958249','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1142_95970-0','95970-0','http://loinc.org','SARS-CoV-2 (COVID-19) specific TCRB gene rearrangements [Presence] in Blood by Sequencing','959700','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1142_96091-4','96091-4','http://loinc.org','SARS-CoV-2 (COVID-19) RdRp gene [Presence] in Saliva (oral fluid) by NAA with probe detection','960914','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1142_96120-1','96120-1','http://loinc.org','SARS-CoV-2 (COVID-19) RdRp gene [Presence] in Lower respiratory specimen by NAA with probe detection','961201','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1142_96123-5','96123-5','http://loinc.org','SARS-CoV-2 (COVID-19) RdRp gene [Presence] in Upper respiratory specimen by NAA with probe detection','961235','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1142_96448-6','96448-6','http://loinc.org','SARS-CoV-2 (COVID-19) N gene [Presence] in Saliva (oral fluid) by Nucleic acid amplification using CDC primer-probe set N1','964486','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1142_96756-2','96756-2','http://loinc.org','SARS-CoV-2 (COVID-19) S gene codon N501= [Presence] in Specimen by Molecular genetics method','967562','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1142_96757-0','96757-0','http://loinc.org','SARS-CoV-2 (COVID-19) S gene codon N501Y [Presence] in Specimen by Molecular genetics method','967570','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1142_96763-8','96763-8','http://loinc.org','SARS-CoV-2 (COVID-19) E gene [Presence] in Respiratory system specimen by NAA with probe detection','967638','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1142_96764-6','96764-6','http://loinc.org','SARS-CoV-2 (COVID-19) E gene [Cycle Threshold #] in Respiratory system specimen by NAA with probe detection','967646','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1142_96765-3','96765-3','http://loinc.org','SARS-CoV-2 (COVID-19) S gene [Presence] in Saliva (oral fluid) by NAA with probe detection','967653','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1142_96797-6','96797-6','http://loinc.org','SARS-CoV-2 (COVID-19) RNA [Presence] in Oropharyngeal wash by NAA with probe detection','967976','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1142_96898-2','96898-2','http://loinc.org','SARS-CoV-2 (COVID-19) N gene [Cycle Threshold #] in Oropharyngeal wash by NAA with probe detection','968982','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1142_96899-0','96899-0','http://loinc.org','SARS-CoV-2 (COVID-19) ORF1ab region [Cycle Threshold #] in Oropharyngeal wash by NAA with probe detection','968990','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1142_96900-6','96900-6','http://loinc.org','SARS-CoV-2 (COVID-19) S gene [Cycle Threshold #] in Oropharyngeal wash by NAA with probe detection','969006','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1142_96957-6','96957-6','http://loinc.org','SARS-CoV-2 (COVID-19) M gene [Presence] in Upper respiratory specimen by NAA with probe detection','969576','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1142_96958-4','96958-4','http://loinc.org','SARS-CoV-2 (COVID-19) N gene [Presence] in Saliva (oral fluid) by Nucleic acid amplification using CDC primer-probe set N2','969584','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1142_96986-5','96986-5','http://loinc.org','SARS-CoV-2 (COVID-19) N gene [Presence] in Nose by NAA with non-probe detection','969865','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1142_97098-8','97098-8','http://loinc.org','SARS-CoV-2 (COVID-19) Nsp2 gene [Presence] in Upper respiratory specimen by NAA with probe detection','970988','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1142_97104-4','97104-4','http://loinc.org','SARS-CoV-2 (COVID-19) ORF1ab region [Units/volume] (viral load) in Upper respiratory specimen by NAA with probe detection','971044','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1142_98131-6','98131-6','http://loinc.org','SARS-CoV-2 (COVID-19) ORF1b region [Presence] in Respiratory system specimen by NAA with probe detection','981316','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1142_98132-4','98132-4','http://loinc.org','SARS-CoV-2 (COVID-19) ORF1a region [Presence] in Respiratory system specimen by NAA with probe detection','981324','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1142_98493-0','98493-0','http://loinc.org','SARS-CoV-2 (COVID-19) ORF1b region [Presence] in Saliva (oral fluid) by NAA with probe detection','984930','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1142_98494-8','98494-8','http://loinc.org','SARS-CoV-2 (COVID-19) ORF1a region [Presence] in Saliva (oral fluid) by NAA with probe detection','984948','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1142_94310-0','94310-0','http://loinc.org','SARS-related coronavirus N gene [Presence] in Specimen by Nucleic acid amplification using CDC primer-probe set N3','943100','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1142_94313-4','94313-4','http://loinc.org','SARS-related coronavirus N gene [Cycle Threshold #] in Specimen by Nucleic acid amplification using CDC primer-probe set N3','943134','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1142_94315-9','94315-9','http://loinc.org','SARS-related coronavirus E gene [Presence] in Specimen by NAA with probe detection','943159','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1142_94502-2','94502-2','http://loinc.org','SARS-related coronavirus RNA [Presence] in Respiratory system specimen by NAA with probe detection','945022','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1142_94509-7','94509-7','http://loinc.org','SARS-related coronavirus E gene [Cycle Threshold #] in Specimen by NAA with probe detection','945097','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1142_94532-9','94532-9','http://loinc.org','SARS-related coronavirus+MERS coronavirus RNA [Presence] in Respiratory system specimen by NAA with probe detection','945329','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1142_94647-5','94647-5','http://loinc.org','SARS-related coronavirus RNA [Presence] in Specimen by NAA with probe detection','946475','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1142_94758-0','94758-0','http://loinc.org','SARS-related coronavirus E gene [Presence] in Respiratory system specimen by NAA with probe detection','947580','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1142_94765-5','94765-5','http://loinc.org','SARS-related coronavirus E gene [Presence] in Serum or Plasma by NAA with probe detection','947655','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1142_95823-1','95823-1','http://loinc.org','SARS-related coronavirus E gene [Presence] in Saliva (oral fluid) by NAA with probe detection','958231','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1142_96121-9','96121-9','http://loinc.org','SARS-related coronavirus E gene [Presence] in Lower respiratory specimen by NAA with probe detection','961219','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1142_96122-7','96122-7','http://loinc.org','SARS-related coronavirus E gene [Presence] in Upper respiratory specimen by NAA with probe detection','961227','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1263_88570-7','88570-7','http://loinc.org','Acanthamoeba sp DNA [Presence] in Cerebral spinal fluid by NAA with probe detection','885707','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1263_41429-2','41429-2','http://loinc.org','Acanthamoeba sp DNA [Presence] in Specimen by NAA with probe detection','414292','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1263_88914-7','88914-7','http://loinc.org','Acanthamoeba sp DNA [Presence] in Tissue by NAA with probe detection','889147','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2353_10785-4','10785-4','http://loinc.org','Microscopic observation [Identifier] in Tissue by Fite-Faraco stain','107854','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1020_11264-9','11264-9','http://loinc.org','Salmonella paratyphi A Ab [Presence] in Serum by Agglutination','112649','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1020_11265-6','11265-6','http://loinc.org','Salmonella paratyphi B Ab [Presence] in Serum by Agglutination','112656','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1020_21511-1','21511-1','http://loinc.org','Salmonella paratyphi A H Ab [Titer] in Serum by Agglutination','215111','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1020_21512-9','21512-9','http://loinc.org','Salmonella paratyphi A H Ab [Titer] in Serum by Immunofluorescence','215129','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1020_21513-7','21513-7','http://loinc.org','Salmonella paratyphi B H Ab [Titer] in Serum by Agglutination','215137','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1020_21514-5','21514-5','http://loinc.org','Salmonella paratyphi B H Ab [Titer] in Serum by Immunofluorescence','215145','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1020_22516-9','22516-9','http://loinc.org','Salmonella paratyphi A Ab [Presence] in Serum','225169','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1020_22517-7','22517-7','http://loinc.org','Salmonella paratyphi A H Ab [Presence] in Serum','225177','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1020_22518-5','22518-5','http://loinc.org','Salmonella paratyphi A H Ab [Titer] in Serum','225185','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1020_22519-3','22519-3','http://loinc.org','Salmonella paratyphi A O Ab [Presence] in Serum','225193','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1020_22520-1','22520-1','http://loinc.org','Salmonella paratyphi B Ab [Presence] in Serum','225201','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1020_22521-9','22521-9','http://loinc.org','Salmonella paratyphi B H Ab [Presence] in Serum','225219','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1020_22522-7','22522-7','http://loinc.org','Salmonella paratyphi B H Ab [Titer] in Serum','225227','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1020_22523-5','22523-5','http://loinc.org','Salmonella paratyphi B O Ab [Presence] in Serum','225235','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1020_22524-3','22524-3','http://loinc.org','Salmonella paratyphi C H Ab [Presence] in Serum','225243','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1020_22525-0','22525-0','http://loinc.org','Salmonella paratyphi C O Ab [Presence] in Serum','225250','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1020_27938-0','27938-0','http://loinc.org','Salmonella paratyphi B O Ab [Titer] in Serum by Agglutination','279380','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1020_31618-2','31618-2','http://loinc.org','Salmonella paratyphi B H Ab [Units/volume] in Serum','316182','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1020_31619-0','31619-0','http://loinc.org','Salmonella paratyphi B O Ab [Units/volume] in Serum','316190','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1020_32212-3','32212-3','http://loinc.org','Salmonella paratyphi A Ab [Titer] in Serum','322123','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1020_32213-1','32213-1','http://loinc.org','Salmonella paratyphi B Ab [Titer] in Serum','322131','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1020_33316-1','33316-1','http://loinc.org','Salmonella paratyphi A O Ab [Titer] in Serum','333161','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1020_33470-6','33470-6','http://loinc.org','Salmonella paratyphi A O Ab [Titer] in Serum by Agglutination','334706','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1020_34369-9','34369-9','http://loinc.org','Salmonella paratyphi C H Ab [Titer] in Serum by Agglutination','343699','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1020_34370-7','34370-7','http://loinc.org','Salmonella paratyphi C O Ab [Titer] in Serum by Agglutination','343707','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1020_42962-1','42962-1','http://loinc.org','Salmonella paratyphi C O Ab [Titer] in Serum','429621','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1020_42963-9','42963-9','http://loinc.org','Salmonella paratyphi C H Ab [Titer] in Serum','429639','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1020_42964-7','42964-7','http://loinc.org','Salmonella paratyphi B O Ab [Titer] in Serum','429647','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1020_48686-0','48686-0','http://loinc.org','Salmonella paratyphi C Ab [Titer] in Serum','486860','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1020_5339-7','5339-7','http://loinc.org','Salmonella paratyphi A H Ab [Presence] in Serum by Latex agglutination','53397','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1020_5340-5','5340-5','http://loinc.org','Salmonella paratyphi A O Ab [Presence] in Serum by Latex agglutination','53405','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1020_5341-3','5341-3','http://loinc.org','Salmonella paratyphi B H Ab [Presence] in Serum by Latex agglutination','53413','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1020_5342-1','5342-1','http://loinc.org','Salmonella paratyphi B O Ab [Presence] in Serum by Latex agglutination','53421','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1020_5343-9','5343-9','http://loinc.org','Salmonella paratyphi C H Ab [Presence] in Serum by Latex agglutination','53439','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1020_5344-7','5344-7','http://loinc.org','Salmonella paratyphi C O Ab [Presence] in Serum by Latex agglutination','53447','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1262_10635-1','10635-1','http://loinc.org','Acanthamoeba sp identified in Eye by Organism specific culture','106351','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1262_87990-8','87990-8','http://loinc.org','Acanthamoeba sp identified in Cerebral spinal fluid by Organism specific culture','879908','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1262_9781-6','9781-6','http://loinc.org','Acanthamoeba sp identified in Specimen by Organism specific culture','97816','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1383_15379-1','15379-1','http://loinc.org','Haemophilus influenzae B Ag [Presence] in Urine','153791','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1383_21320-7','21320-7','http://loinc.org','Haemophilus influenzae B Ag [Presence] in Specimen by Latex agglutination','213207','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1383_31834-5','31834-5','http://loinc.org','Haemophilus influenzae B Ag [Presence] in Specimen','318345','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1383_41495-3','41495-3','http://loinc.org','Haemophilus influenzae B Ag [Presence] in Body fluid','414953','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1383_43429-0','43429-0','http://loinc.org','Haemophilus influenzae B Ag [Presence] in Serum','434290','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1383_6599-5','6599-5','http://loinc.org','Haemophilus influenzae B Ag [Presence] in Specimen by Immunofluorescence','65995','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1383_14321-4','14321-4','http://loinc.org','Haemophilus influenzae B Ag [Presence] in Cerebral spinal fluid by Latex agglutination','143214','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1383_20486-7','20486-7','http://loinc.org','Haemophilus influenzae B Ag [Units/volume] in Cerebral spinal fluid','204867','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1383_24010-1','24010-1','http://loinc.org','Haemophilus influenzae B Ag [Presence] in Cerebral spinal fluid','240101','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1383_6611-8','6611-8','http://loinc.org','Haemophilus influenzae B Ag [Presence] in Cerebral spinal fluid by Immunofluorescence','66118','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2230_100675-8','100675-8','http://loinc.org','Cytomegalovirus DNA [Units/volume] (viral load) in Blood by NAA with probe detection','1006758','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2230_100676-6','100676-6','http://loinc.org','Cytomegalovirus DNA [log units/volume] (viral load) in Blood by NAA with probe detection','1006766','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2230_28008-1','28008-1','http://loinc.org','Cytomegalovirus DNA [Presence] in Blood by Probe with signal amplification','280081','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2230_29590-7','29590-7','http://loinc.org','Cytomegalovirus DNA [Mass/volume] (viral load) in Blood by Probe','295907','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2230_29604-6','29604-6','http://loinc.org','Cytomegalovirus DNA [#/volume] (viral load) in Blood by NAA with probe detection','296046','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2230_30246-3','30246-3','http://loinc.org','Cytomegalovirus DNA [Presence] in Serum or Plasma by NAA with probe detection','302463','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2230_30247-1','30247-1','http://loinc.org','Cytomegalovirus DNA [#/volume] (viral load) in Serum or Plasma by NAA with probe detection','302471','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2230_35401-9','35401-9','http://loinc.org','Cytomegalovirus DNA [Presence] in Bronchial specimen by NAA with probe detection','354019','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2230_49347-8','49347-8','http://loinc.org','Cytomegalovirus DNA [#/volume] (viral load) in Urine by NAA with probe detection','493478','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2230_49349-4','49349-4','http://loinc.org','Cytomegalovirus DNA [#/volume] (viral load) in Bronchoalveolar lavage by NAA with probe detection','493494','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2230_49350-2','49350-2','http://loinc.org','Cytomegalovirus DNA [#/volume] (viral load) in Bone marrow by NAA with probe detection','493502','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2230_4996-5','4996-5','http://loinc.org','Cytomegalovirus DNA [Presence] in Blood by NAA with probe detection','49965','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2230_4999-9','4999-9','http://loinc.org','Cytomegalovirus DNA [Presence] in Urine by NAA with probe detection','49999','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2230_54163-1','54163-1','http://loinc.org','Cytomegalovirus DNA [#/volume] (viral load) in Urine by Probe and target amplification method detection limit = 200 copies/ml','541631','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2230_54206-8','54206-8','http://loinc.org','Cytomegalovirus DNA [Log #/volume] (viral load) in Serum or Plasma by NAA with probe detection','542068','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2230_72493-0','72493-0','http://loinc.org','Cytomegalovirus DNA [Units/volume] (viral load) in Serum or Plasma by NAA with probe detection','724930','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2230_72494-8','72494-8','http://loinc.org','Cytomegalovirus DNA [log units/volume] (viral load) in Serum or Plasma by NAA with probe detection','724948','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2230_83065-3','83065-3','http://loinc.org','Cytomegalovirus DNA [Presence] in Saliva (oral fluid) by NAA with probe detection','830653','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2230_88130-0','88130-0','http://loinc.org','Cytomegalovirus DNA [#/volume] (viral load) in Ocular fluid by NAA with probe detection','881300','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2230_88131-8','88131-8','http://loinc.org','Cytomegalovirus DNA [Presence] in Ocular fluid by NAA with probe detection','881318','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2230_88535-0','88535-0','http://loinc.org','Cytomegalovirus DNA [Presence] in DBS by NAA with probe detection','885350','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2230_88545-9','88545-9','http://loinc.org','Cytomegalovirus DNA [#/volume] (viral load) in DBS by NAA with probe detection','885459','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2230_88558-2','88558-2','http://loinc.org','Cytomegalovirus DNA [Presence] in Lower respiratory specimen by NAA with probe detection','885582','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2230_88567-3','88567-3','http://loinc.org','Cytomegalovirus DNA [Presence] in Bone marrow by NAA with probe detection','885673','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2230_98081-3','98081-3','http://loinc.org','Cytomegalovirus DNA [#/volume] (viral load) in Saliva (oral fluid) by NAA with probe detection','980813','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2230_24041-6','24041-6','http://loinc.org','Cytomegalovirus DNA [Units/volume] (viral load) in Specimen by Probe with signal amplification','240416','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2230_33006-8','33006-8','http://loinc.org','Cytomegalovirus DNA [#/volume] (viral load) in Specimen by NAA with probe detection','330068','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2230_34719-5','34719-5','http://loinc.org','Cytomegalovirus DNA [Presence] in Amniotic fluid by NAA with probe detection','347195','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2230_34720-3','34720-3','http://loinc.org','Cytomegalovirus DNA [Units/volume] (viral load) in Specimen by NAA with probe detection','347203','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2230_49348-6','49348-6','http://loinc.org','Cytomegalovirus DNA [#/volume] (viral load) in Amniotic fluid by NAA with probe detection','493486','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2230_49351-0','49351-0','http://loinc.org','Cytomegalovirus DNA [#/volume] (viral load) in Tissue by NAA with probe detection','493510','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2230_4997-3','4997-3','http://loinc.org','Cytomegalovirus DNA [Presence] in Tissue by Probe','49973','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2230_4998-1','4998-1','http://loinc.org','Cytomegalovirus DNA [Presence] in Tissue by NAA with probe detection','49981','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2230_5000-5','5000-5','http://loinc.org','Cytomegalovirus DNA [Presence] in Specimen by NAA with probe detection','50005','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2230_53763-9','53763-9','http://loinc.org','Cytomegalovirus DNA [Log #/volume] (viral load) in Specimen by NAA with probe detection','537639','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2230_72605-9','72605-9','http://loinc.org','Cytomegalovirus glycoprotein genotype in Specimen by NAA with probe detection','726059','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2230_94823-2','94823-2','http://loinc.org','Cytomegalovirus DNA [Log #/volume] (viral load) in Amniotic fluid by NAA with probe detection','948232','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2230_96396-7','96396-7','http://loinc.org','Cytomegalovirus DNA [log units/volume] (viral load) in Specimen by NAA with probe detection','963967','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2230_30326-3','30326-3','http://loinc.org','Cytomegalovirus DNA [Presence] in Cerebral spinal fluid by NAA with probe detection','303263','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2230_39003-9','39003-9','http://loinc.org','Cytomegalovirus DNA [#/volume] (viral load) in Cerebral spinal fluid by NAA with probe detection','390039','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2230_82189-2','82189-2','http://loinc.org','Cytomegalovirus DNA [Presence] in Cerebral spinal fluid by NAA with non-probe detection','821892','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2352_10785-4','10785-4','http://loinc.org','Microscopic observation [Identifier] in Tissue by Fite-Faraco stain','107854','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2009_41430-0','41430-0','http://loinc.org','Angiostrongylus cantonensis DNA [Presence] in Specimen by NAA with probe detection','414300','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2009_41431-8','41431-8','http://loinc.org','Angiostrongylus costaricensis DNA [Presence] in Specimen by NAA with probe detection','414318','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2128_21771-1','21771-1','http://loinc.org','Chromosome 21 trisomy [Presence] in Blood or Tissue by Cytogenetics','217711','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2128_75976-1','75976-1','http://loinc.org','Fetal Chromosome 21 trisomy [Interpretation] based on Plasma cell-free DNA by Dosage of chromosome-specific cfDNA Qualitative','759761','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2128_75983-7','75983-7','http://loinc.org','Fetal Chromosome 21 trisomy [Presence] based on Plasma cell-free DNA by Dosage of chromosome-specific cfDNA','759837','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2128_77011-5','77011-5','http://loinc.org','Fetal Chromosome 21 trisomy [Presence] based on Plasma cell-free DNA by Sequencing','770115','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2249_74843-4','74843-4','http://loinc.org','Baylisascaris sp IgG Ab [Presence] in Cerebral spinal fluid by Immunoassay','748434','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2249_74844-2','74844-2','http://loinc.org','Baylisascaris sp IgG Ab [Presence] in Serum by Immunoassay','748442','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2360_104447-8','104447-8','http://loinc.org','Salmonella paratyphi DNA [Presence] in Isolate by NAA with probe detection','1044478','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2360_104448-6','104448-6','http://loinc.org','Salmonella paratyphi [Identifier] in Isolate by Agglutination','1044486','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.391_23499-7','23499-7','http://loinc.org','Trichinella spiralis [Presence] in Tissue by Light microscopy','234997','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2240_18348-3','18348-3','http://loinc.org','Toxoplasma gondii IgM Ab [Units/volume] in Cerebral spinal fluid','183483','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2240_21569-9','21569-9','http://loinc.org','Toxoplasma gondii IgG Ab [Titer] in Cerebral spinal fluid by Immunofluorescence','215699','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2240_21571-5','21571-5','http://loinc.org','Toxoplasma gondii IgM Ab [Titer] in Cerebral spinal fluid by Immunofluorescence','215715','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2240_22581-3','22581-3','http://loinc.org','Toxoplasma gondii IgG Ab [Titer] in Cerebral spinal fluid','225813','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2240_22583-9','22583-9','http://loinc.org','Toxoplasma gondii IgM Ab [Titer] in Cerebral spinal fluid','225839','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2240_30038-4','30038-4','http://loinc.org','Toxoplasma gondii IgG Ab [Units/volume] in Cerebral spinal fluid by Immunoassay','300384','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2240_30568-0','30568-0','http://loinc.org','Toxoplasma gondii IgG Ab [Presence] in Cerebral spinal fluid by Immunoassay','305680','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2240_30569-8','30569-8','http://loinc.org','Toxoplasma gondii IgM Ab [Presence] in Cerebral spinal fluid by Immunoassay','305698','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2240_31178-7','31178-7','http://loinc.org','Toxoplasma gondii IgM Ab [Units/volume] in Cerebral spinal fluid by Immunoassay','311787','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2240_31181-1','31181-1','http://loinc.org','Toxoplasma gondii IgM Ab [Presence] in Cerebral spinal fluid','311811','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2240_31685-1','31685-1','http://loinc.org','Toxoplasma gondii IgG Ab [Presence] in Cerebral spinal fluid','316851','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2240_9741-0','9741-0','http://loinc.org','Toxoplasma gondii IgG Ab [Units/volume] in Cerebral spinal fluid','97410','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2361_104449-4','104449-4','http://loinc.org','Salmonella paratyphi DNA [Presence] in Blood by NAA with probe detection','1044494','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.276_49721-4','49721-4','http://loinc.org','Haemophilus influenzae type [Identifier] in Isolate','497214','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.276_58739-4','58739-4','http://loinc.org','Haemophilus influenzae serotype [Identifier] in Isolate by Agglutination','587394','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.276_69410-9','69410-9','http://loinc.org','Haemophilus influenzae [Identifier] in Specimen by Organism specific culture','694109','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.276_85778-9','85778-9','http://loinc.org','Haemophilus influenzae DNA [Presence] by NAA with non-probe detection in Positive blood culture','857789','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.277_29906-5','29906-5','http://loinc.org','Haemophilus influenzae A DNA [Presence] in Specimen by NAA with probe detection','299065','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.277_29907-3','29907-3','http://loinc.org','Haemophilus influenzae B DNA [Presence] in Specimen by NAA with probe detection','299073','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.277_5006-2','5006-2','http://loinc.org','Haemophilus influenzae rRNA [Presence] in Specimen by Probe','50062','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.277_58473-0','58473-0','http://loinc.org','Haemophilus influenzae serotype DNA [Identifier] in Specimen by NAA with probe detection','584730','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.277_61366-1','61366-1','http://loinc.org','Haemophilus influenzae DNA [Presence] in Specimen by NAA with probe detection','613661','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.277_76574-3','76574-3','http://loinc.org','Haemophilus influenzae lex2 gene [Presence] in Swab specimen by NAA with probe detection','765743','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.277_85627-8','85627-8','http://loinc.org','Haemophilus influenzae hpd gene [Cycle Threshold #] in Specimen by NAA with probe detection','856278','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.277_85678-1','85678-1','http://loinc.org','Haemophilus influenzae acs gene [Cycle Threshold #] in Specimen by NAA with probe detection','856781','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.277_85679-9','85679-9','http://loinc.org','Haemophilus influenzae bex gene [Cycle Threshold #] in Specimen by NAA with probe detection','856799','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.277_85680-7','85680-7','http://loinc.org','Haemophilus influenzae ecs gene [Cycle Threshold #] in Specimen by NAA with probe detection','856807','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.277_85681-5','85681-5','http://loinc.org','Haemophilus influenzae dcs gene [Cycle Threshold #] in Specimen by NAA with probe detection','856815','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.277_85682-3','85682-3','http://loinc.org','Haemophilus influenzae ccs gene [Cycle Threshold #] in Specimen by NAA with probe detection','856823','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.277_85683-1','85683-1','http://loinc.org','Haemophilus influenzae bcs gene [Cycle Threshold #] in Specimen by NAA with probe detection','856831','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.277_92127-0','92127-0','http://loinc.org','Haemophilus influenzae DNA [Presence] in Respiratory system specimen by NAA with probe detection','921270','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.277_92980-2','92980-2','http://loinc.org','Haemophilus influenzae DNA [NCncRange] in Sputum by NAA with non-probe detection','929802','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.277_92981-0','92981-0','http://loinc.org','Haemophilus influenzae DNA [NCncRange] in Bronchoalveolar lavage by NAA with non-probe detection','929810','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.277_93397-8','93397-8','http://loinc.org','Haemophilus influenzae DNA [Presence] by NAA with probe detection in Positive blood culture','933978','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.277_94377-9','94377-9','http://loinc.org','Haemophilus influenzae DNA [Presence] in Lower respiratory specimen by NAA with probe detection','943779','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.277_96321-5','96321-5','http://loinc.org','Haemophilus influenzae DNA [NCncRange] in Lower respiratory specimen by NAA with non-probe detection','963215','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.277_97621-7','97621-7','http://loinc.org','Haemophilus influenzae DNA [Presence] in Synovial fluid by NAA with non-probe detection','976217','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.277_51668-2','51668-2','http://loinc.org','Streptococcus pneumoniae DNA and Haemophilus influenza DNA and Pseudomonas aeruginosa DNA [Identifier] in Unspecified specimen by NAA with probe detection','516682','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.277_53607-8','53607-8','http://loinc.org','Haemophilus influenzae B DNA [Presence] in Blood by NAA with probe detection','536078','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.277_62493-2','62493-2','http://loinc.org','Streptococcus pneumoniae DNA and Haemophilus influenza DNA and Streptococcus agalactiae DNA [Identifier] in Unspecified specimen by NAA with probe detection','624932','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.277_76589-1','76589-1','http://loinc.org','Haemophilus influenzae lex2 gene [#/mass] in XXX.tissue by NAA with probe detection','765891','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.277_76602-2','76602-2','http://loinc.org','Haemophilus influenzae lex2 gene [#/volume] in XXX.body fluid by NAA with probe detection','766022','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.277_82183-5','82183-5','http://loinc.org','Haemophilus influenzae DNA [Presence] in Cerebral spinal fluid by NAA with non-probe detection','821835','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.277_99090-3','99090-3','http://loinc.org','Haemophilus influenzae DNA [Presence] in Cerebral spinal fluid by NAA with probe detection','990903','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.398_10676-5','10676-5','http://loinc.org','Hepatitis C virus RNA [Units/volume] (viral load) in Serum or Plasma by Probe with amplification','106765','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.398_11011-4','11011-4','http://loinc.org','Hepatitis C virus RNA [Units/volume] (viral load) in Serum or Plasma by NAA with probe detection','110114','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.398_11259-9','11259-9','http://loinc.org','Hepatitis C virus RNA [Presence] in Serum or Plasma by NAA with probe detection','112599','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.398_20416-4','20416-4','http://loinc.org','Hepatitis C virus RNA [#/volume] (viral load) in Serum or Plasma by NAA with probe detection','204164','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.398_20571-6','20571-6','http://loinc.org','Hepatitis C virus RNA [#/volume] (viral load) in Serum or Plasma by Probe with signal amplification','205716','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.398_29609-5','29609-5','http://loinc.org','Hepatitis C virus RNA [Units/volume] (viral load) in Serum or Plasma by Probe with signal amplification','296095','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.398_32286-7','32286-7','http://loinc.org','Hepatitis C virus genotype [Identifier] in Serum or Plasma by NAA with probe detection','322867','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.398_34703-9','34703-9','http://loinc.org','Hepatitis C virus RNA [Units/volume] (viral load) in Serum or Plasma by Probe and target amplification method detection limit = 500 IU/mL','347039','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.398_34704-7','34704-7','http://loinc.org','Hepatitis C virus RNA [Units/volume] (viral load) in Serum or Plasma by Probe and target amplification method detection limit = 50 iU/mL','347047','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.398_38180-6','38180-6','http://loinc.org','Hepatitis C virus RNA [log units/volume] (viral load) in Serum or Plasma by NAA with probe detection','381806','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.398_38998-1','38998-1','http://loinc.org','HIV 1+Hepatitis C virus RNA [Presence] in Serum or Plasma from Blood product unit by NAA with probe detection','389981','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.398_42003-4','42003-4','http://loinc.org','Hepatitis C virus RNA [Log #/volume] (viral load) in Serum or Plasma by Probe with signal amplification','420034','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.398_42617-1','42617-1','http://loinc.org','Hepatitis C virus RNA [log units/volume] (viral load) in Serum or Plasma by Probe with signal amplification','426171','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.398_47252-2','47252-2','http://loinc.org','Hepatitis C virus RNA [Log #/volume] (viral load) in Serum or Plasma by NAA with probe detection','472522','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.398_48574-8','48574-8','http://loinc.org','Hepatitis C virus genotype [Identifier] in Blood by NAA with probe detection','485748','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.398_48575-5','48575-5','http://loinc.org','Hepatitis C virus genotype [Identifier] in Specimen by NAA with probe detection','485755','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.398_48576-3','48576-3','http://loinc.org','Hepatitis C virus RNA [Presence] in Specimen by Probe with signal amplification','485763','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.398_49369-2','49369-2','http://loinc.org','Hepatitis C virus RNA [#/volume] (viral load) in Cerebral spinal fluid by NAA with probe detection','493692','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.398_49370-0','49370-0','http://loinc.org','Hepatitis C virus RNA [#/volume] (viral load) in Bone marrow by NAA with probe detection','493700','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.398_49371-8','49371-8','http://loinc.org','Hepatitis C virus RNA [#/volume] (viral load) in Tissue by NAA with probe detection','493718','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.398_49372-6','49372-6','http://loinc.org','Hepatitis C virus RNA [Log #/volume] (viral load) in Specimen by NAA with probe detection','493726','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.398_49373-4','49373-4','http://loinc.org','Hepatitis C virus RNA [Log #/volume] (viral load) in Cerebral spinal fluid by NAA with probe detection','493734','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.398_49374-2','49374-2','http://loinc.org','Hepatitis C virus RNA [Log #/volume] (viral load) in Bone marrow by NAA with probe detection','493742','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.398_49375-9','49375-9','http://loinc.org','Hepatitis C virus RNA [Log #/volume] (viral load) in Tissue by NAA with probe detection','493759','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.398_49376-7','49376-7','http://loinc.org','Hepatitis C virus RNA [Units/volume] (viral load) in Specimen by NAA with probe detection','493767','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.398_49377-5','49377-5','http://loinc.org','Hepatitis C virus RNA [Units/volume] (viral load) in Cerebral spinal fluid by NAA with probe detection','493775','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.398_49378-3','49378-3','http://loinc.org','Hepatitis C virus RNA [Units/volume] (viral load) in Bone marrow by NAA with probe detection','493783','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.398_49379-1','49379-1','http://loinc.org','Hepatitis C virus RNA [Units/volume] (viral load) in Tissue by NAA with probe detection','493791','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.398_49380-9','49380-9','http://loinc.org','Hepatitis C virus RNA [#/volume] (viral load) in Specimen by NAA with probe detection','493809','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.398_49603-4','49603-4','http://loinc.org','Hepatitis C virus RNA [log units/volume] (viral load) in Cerebral spinal fluid by NAA with probe detection','496034','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.398_49604-2','49604-2','http://loinc.org','Hepatitis C virus RNA [log units/volume] (viral load) in Bone marrow by NAA with probe detection','496042','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.398_49605-9','49605-9','http://loinc.org','Hepatitis C virus RNA [log units/volume] (viral load) in Specimen by NAA with probe detection','496059','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.398_49607-5','49607-5','http://loinc.org','Hepatitis C virus genotype [Identifier] in Tissue by NAA with probe detection','496075','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.398_49608-3','49608-3','http://loinc.org','Hepatitis C virus RNA [log units/volume] (viral load) in Tissue by NAA with probe detection','496083','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.398_49758-6','49758-6','http://loinc.org','Hepatitis C virus RNA [Units/volume] (viral load) in Serum or Plasma by Probe and target amplification method detection limit = 5 iU/mL','497586','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.398_5010-4','5010-4','http://loinc.org','Hepatitis C virus RNA [Presence] in Blood by NAA with probe detection','50104','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.398_5011-2','5011-2','http://loinc.org','Hepatitis C virus RNA [Presence] in Tissue by NAA with probe detection','50112','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.398_5012-0','5012-0','http://loinc.org','Hepatitis C virus RNA [Presence] in Specimen by NAA with probe detection','50120','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.398_51655-9','51655-9','http://loinc.org','Hepatitis C virus RNA [Presence] in Body fluid by NAA with probe detection','516559','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.398_73654-6','73654-6','http://loinc.org','Hepatitis C virus NS3 gene mutations detected [Identifier] by Genotype method','736546','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.398_73655-3','73655-3','http://loinc.org','Hepatitis C virus NS5 gene mutations detected [Identifier] by Genotype method','736553','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.398_82380-7','82380-7','http://loinc.org','Hepatitis C virus genotype 1 NS5a gene mutations detected [Identifier]','823807','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.398_82381-5','82381-5','http://loinc.org','Hepatitis C virus genotype 1 NS5b gene mutations detected [Identifier]','823815','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.398_82512-5','82512-5','http://loinc.org','Hepatitis C virus genotype 1 [Type] in Serum or Plasma by NAA with probe detection','825125','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.398_82513-3','82513-3','http://loinc.org','Hepatitis C virus genotype 3 [Presence] in Serum or Plasma by NAA with probe detection','825133','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.398_82514-1','82514-1','http://loinc.org','Hepatitis C virus genotype 3 NS5a gene mutations detected [Identifier]','825141','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.398_92731-9','92731-9','http://loinc.org','Hepatitis C virus genotype in Serum or Plasma by Sequencing','927319','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.398_53825-6','53825-6','http://loinc.org','HIV 1+Hepatitis C virus RNA [Presence] in Serum or Plasma by NAA with probe detection','538256','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.398_59052-1','59052-1','http://loinc.org','HIV 1+Hepatitis C virus RNA+Hepatitis B virus DNA [Presence] in Serum or Plasma by NAA with probe detection','590521','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1157_94505-5','94505-5','http://loinc.org','SARS-CoV-2 (COVID-19) IgG Ab [Units/volume] in Serum or Plasma by Immunoassay','945055','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1157_94506-3','94506-3','http://loinc.org','SARS-CoV-2 (COVID-19) IgM Ab [Units/volume] in Serum or Plasma by Immunoassay','945063','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1157_94507-1','94507-1','http://loinc.org','SARS-CoV-2 (COVID-19) IgG Ab [Presence] in Serum, Plasma or Blood by Rapid immunoassay','945071','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1157_94508-9','94508-9','http://loinc.org','SARS-CoV-2 (COVID-19) IgM Ab [Presence] in Serum, Plasma or Blood by Rapid immunoassay','945089','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1157_94547-7','94547-7','http://loinc.org','SARS-CoV-2 (COVID-19) IgG+IgM Ab [Presence] in Serum or Plasma by Immunoassay','945477','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1157_94562-6','94562-6','http://loinc.org','SARS-CoV-2 (COVID-19) IgA Ab [Presence] in Serum or Plasma by Immunoassay','945626','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1157_94563-4','94563-4','http://loinc.org','SARS-CoV-2 (COVID-19) IgG Ab [Presence] in Serum or Plasma by Immunoassay','945634','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1157_94564-2','94564-2','http://loinc.org','SARS-CoV-2 (COVID-19) IgM Ab [Presence] in Serum or Plasma by Immunoassay','945642','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1157_94661-6','94661-6','http://loinc.org','SARS-CoV-2 (COVID-19) Ab [Interpretation] in Serum or Plasma','946616','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1157_94720-0','94720-0','http://loinc.org','SARS-CoV-2 (COVID-19) IgA Ab [Units/volume] in Serum or Plasma by Immunoassay','947200','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1157_94761-4','94761-4','http://loinc.org','SARS-CoV-2 (COVID-19) IgG Ab [Presence] in DBS by Immunoassay','947614','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1157_94762-2','94762-2','http://loinc.org','SARS-CoV-2 (COVID-19) Ab [Presence] in Serum or Plasma by Immunoassay','947622','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1157_94768-9','94768-9','http://loinc.org','SARS-CoV-2 (COVID-19) IgA Ab [Presence] in Serum, Plasma or Blood by Rapid immunoassay','947689','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1157_94769-7','94769-7','http://loinc.org','SARS-CoV-2 (COVID-19) Ab [Units/volume] in Serum or Plasma by Immunoassay','947697','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1157_95125-1','95125-1','http://loinc.org','SARS-CoV-2 (COVID-19) IgA+IgM [Presence] in Serum or Plasma by Immunoassay','951251','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1157_95410-7','95410-7','http://loinc.org','SARS-CoV-2 (COVID-19) neutralizing antibody [Titer] in Serum by pVNT','954107','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1157_95411-5','95411-5','http://loinc.org','SARS-CoV-2 (COVID-19) neutralizing antibody [Presence] in Serum by pVNT','954115','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1157_95427-1','95427-1','http://loinc.org','SARS-CoV-2 (COVID-19) IgA Ab [Titer] in Serum or Plasma by Immunofluorescence','954271','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1157_95428-9','95428-9','http://loinc.org','SARS-CoV-2 (COVID-19) IgM Ab [Titer] in Serum or Plasma by Immunofluorescence','954289','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1157_95429-7','95429-7','http://loinc.org','SARS-CoV-2 (COVID-19) IgG Ab [Titer] in Serum or Plasma by Immunofluorescence','954297','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1157_95542-7','95542-7','http://loinc.org','SARS-CoV-2 (COVID-19) Ab [Presence] in Serum, Plasma or Blood by Rapid immunoassay','955427','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1157_95825-6','95825-6','http://loinc.org','SARS-CoV-2 (COVID-19) Ab [Presence] in DBS by Immunoassay','958256','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1157_96603-6','96603-6','http://loinc.org','SARS-CoV-2 (COVID-19) S protein RBD neutralizing antibody [Presence] in Serum or Plasma by sVNT','966036','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1157_96742-2','96742-2','http://loinc.org','SARS-CoV-2 (COVID-19) IgG Ab [Mass/volume] in Serum or Plasma by Immunoassay','967422','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1157_98069-8','98069-8','http://loinc.org','SARS-CoV-2 (COVID-19) Ab [Presence] in Saliva (oral fluid) by Rapid immunoassay','980698','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1157_98732-1','98732-1','http://loinc.org','SARS-CoV-2 (COVID-19) S protein RBD neutralizing antibody [Titer] in Serum or Plasma by Immunoassay','987321','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1157_98733-9','98733-9','http://loinc.org','Percent neutralization by SARS coronavirus 2 spike protein RBD neutralizing antibody in Serum or Plasma by Immunoassay','987339','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1157_98734-7','98734-7','http://loinc.org','SARS-CoV-2 (COVID-19) S protein RBD neutralizing antibody [Units/volume] in Serum or Plasma by Immunoassay','987347','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1157_99596-9','99596-9','http://loinc.org','SARS-CoV-2 (COVID-19) N protein IgG Ab [Presence] in Serum or Plasma by Immunoassay','995969','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1157_99597-7','99597-7','http://loinc.org','SARS-CoV-2 (COVID-19) S protein IgG Ab [Presence] in Serum or Plasma by Immunoassay','995977','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1278_14214-1','14214-1','http://loinc.org','Histoplasma capsulatum exoantigen [Identifier] in Isolate','142141','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1399_13292-8','13292-8','http://loinc.org','Colorado tick fever virus IgG Ab [Units/volume] in Serum','132928','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1399_16121-6','16121-6','http://loinc.org','Colorado tick fever virus IgG Ab [Titer] in Serum','161216','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1399_34623-9','34623-9','http://loinc.org','Colorado tick fever virus Ab [Titer] in Serum','346239','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1399_42614-8','42614-8','http://loinc.org','Colorado tick fever virus Ab [Titer] in Cerebral spinal fluid','426148','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1399_61200-2','61200-2','http://loinc.org','Colorado tick fever virus IgG Ab [Titer] in Serum by Immunofluorescence','612002','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1399_95640-9','95640-9','http://loinc.org','Colorado tick fever virus neutralizing antibody [Titer] in Specimen by Neutralization test','956409','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1399_13293-6','13293-6','http://loinc.org','Colorado tick fever virus IgM Ab [Units/volume] in Serum','132936','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1399_16122-4','16122-4','http://loinc.org','Colorado tick fever virus IgM Ab [Titer] in Serum','161224','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1399_42896-1','42896-1','http://loinc.org','Colorado tick fever virus IgM Ab [Titer] in Serum by Immunofluorescence','428961','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2005_11605-3','11605-3','http://loinc.org','Lymphocytic choriomeningitis virus Ab [Units/volume] in Serum','116053','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2005_17228-8','17228-8','http://loinc.org','Lymphocytic choriomeningitis virus Ab [Titer] in Cerebral spinal fluid','172288','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2005_17229-6','17229-6','http://loinc.org','Lymphocytic choriomeningitis virus IgM Ab [Titer] in Cerebral spinal fluid','172296','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2005_22408-9','22408-9','http://loinc.org','Lymphocytic choriomeningitis virus Ab [Titer] in Serum','224089','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2005_22409-7','22409-7','http://loinc.org','Lymphocytic choriomeningitis virus IgG Ab [Titer] in Cerebral spinal fluid','224097','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2005_22410-5','22410-5','http://loinc.org','Lymphocytic choriomeningitis virus IgG Ab [Titer] in Serum','224105','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2005_22411-3','22411-3','http://loinc.org','Lymphocytic choriomeningitis virus IgM Ab [Titer] in Serum','224113','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2005_31491-4','31491-4','http://loinc.org','Lymphocytic choriomeningitis virus Ab [Units/volume] in Cerebral spinal fluid','314914','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2005_31492-2','31492-2','http://loinc.org','Lymphocytic choriomeningitis virus IgG Ab [Units/volume] in Cerebral spinal fluid','314922','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2005_31493-0','31493-0','http://loinc.org','Lymphocytic choriomeningitis virus IgG Ab [Units/volume] in Serum','314930','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2005_31494-8','31494-8','http://loinc.org','Lymphocytic choriomeningitis virus IgM Ab [Units/volume] in Cerebral spinal fluid','314948','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2005_31495-5','31495-5','http://loinc.org','Lymphocytic choriomeningitis virus IgM Ab [Units/volume] in Serum','314955','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2005_40499-6','40499-6','http://loinc.org','Lymphocytic choriomeningitis virus IgM Ab [Titer] in Serum by Immunoassay','404996','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2005_40500-1','40500-1','http://loinc.org','Lymphocytic choriomeningitis virus IgG Ab [Titer] in Serum by Immunoassay','405001','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2005_45218-5','45218-5','http://loinc.org','Lymphocytic choriomeningitis virus IgG Ab [Presence] in Serum','452185','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2005_45219-3','45219-3','http://loinc.org','Lymphocytic choriomeningitis virus IgG Ab [Presence] in Cerebral spinal fluid','452193','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2005_45220-1','45220-1','http://loinc.org','Lymphocytic choriomeningitis virus IgM Ab [Presence] in Serum','452201','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2005_45221-9','45221-9','http://loinc.org','Lymphocytic choriomeningitis virus IgM Ab [Presence] in Cerebral spinal fluid','452219','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2005_5241-5','5241-5','http://loinc.org','Lymphocytic choriomeningitis virus Ab [Titer] in Serum by Complement fixation','52415','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2005_6458-4','6458-4','http://loinc.org','Lymphocytic choriomeningitis virus Ab [Titer] in Serum by Immunofluorescence','64584','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2005_88205-0','88205-0','http://loinc.org','Lymphocytic choriomeningitis virus IgM Ab [Presence] in Serum by Immunoassay','882050','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2005_88206-8','88206-8','http://loinc.org','Lymphocytic choriomeningitis virus IgG Ab [Presence] in Serum by Immunoassay','882068','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2005_93787-0','93787-0','http://loinc.org','Lymphocytic choriomeningitis virus IgG+IgM Ab [Presence] in Cerebral spinal fluid','937870','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2005_9564-6','9564-6','http://loinc.org','Lymphocytic choriomeningitis virus Ab [Titer] in Cerebral spinal fluid by Complement fixation','95646','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2005_9765-9','9765-9','http://loinc.org','Lymphocytic choriomeningitis virus IgG Ab [Titer] in Serum by Immunofluorescence','97659','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2005_9766-7','9766-7','http://loinc.org','Lymphocytic choriomeningitis virus IgG Ab [Titer] in Cerebral spinal fluid by Immunofluorescence','97667','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2005_9767-5','9767-5','http://loinc.org','Lymphocytic choriomeningitis virus IgM Ab [Titer] in Serum by Immunofluorescence','97675','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2005_9768-3','9768-3','http://loinc.org','Lymphocytic choriomeningitis virus IgM Ab [Titer] in Cerebral spinal fluid by Immunofluorescence','97683','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.278_14321-4','14321-4','http://loinc.org','Haemophilus influenzae B Ag [Presence] in Cerebral spinal fluid by Latex agglutination','143214','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.278_20486-7','20486-7','http://loinc.org','Haemophilus influenzae B Ag [Units/volume] in Cerebral spinal fluid','204867','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.278_24010-1','24010-1','http://loinc.org','Haemophilus influenzae B Ag [Presence] in Cerebral spinal fluid','240101','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.278_6611-8','6611-8','http://loinc.org','Haemophilus influenzae B Ag [Presence] in Cerebral spinal fluid by Immunofluorescence','66118','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.399_54914-7','54914-7','http://loinc.org','Hepatitis C virus core Ag [Units/volume] in Serum by Immunoassay','549147','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.399_79189-7','79189-7','http://loinc.org','Hepatitis C virus core Ag [Presence] in Serum or Plasma by Immunoassay','791897','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.399_81116-6','81116-6','http://loinc.org','Hepatitis C virus core Ab+Ag [Presence] in Serum','811166','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1277_95917-1','95917-1','http://loinc.org','Histoplasma capsulatum DNA [Presence] in Lower respiratory specimen by NAA with probe detection','959171','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1277_5015-3','5015-3','http://loinc.org','Histoplasma capsulatum DNA [Presence] in Specimen by NAA with probe detection','50153','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1277_5016-1','5016-1','http://loinc.org','Histoplasma capsulatum rRNA [Presence] in Specimen by Probe','50161','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1277_51771-4','51771-4','http://loinc.org','Histoplasma capsulatum DNA [#/volume] in Specimen by NAA with probe detection','517714','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1277_88926-1','88926-1','http://loinc.org','Histoplasma capsulatum DNA [Presence] in Tissue by NAA with probe detection','889261','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1277_81653-8','81653-8','http://loinc.org','Blastomyces dermatitidis drk1 and Histoplasma capsulatum gapdh genes [Identifier] in Specimen by NAA with probe detection','816538','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2248_101996-7','101996-7','http://loinc.org','Erythrocytes.Plasmodium falciparum infected/100 erythrocytes in Blood by Microscopy','1019967','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2248_10710-2','10710-2','http://loinc.org','Plasmodium sp identified in Blood by Thin film','107102','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2248_17280-9','17280-9','http://loinc.org','Plasmodium sp identified in Tissue by Thick film','172809','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2248_32206-5','32206-5','http://loinc.org','Plasmodium sp identified in Blood by Light microscopy','322065','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2248_41451-6','41451-6','http://loinc.org','Plasmodium stage [Identifier] in Blood by Light microscopy','414516','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2248_48427-9','48427-9','http://loinc.org','Erythrocytes.Plasmodium sp infected/1000 erythrocytes in Blood','484279','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2248_51587-4','51587-4','http://loinc.org','Plasmodium sp [Presence] in Blood by Light microscopy','515874','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2248_53556-7','53556-7','http://loinc.org','Erythrocytes.Plasmodium sp infected/100 erythrocytes in Blood','535567','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2248_637-9','637-9','http://loinc.org','Plasmodium sp identified in Blood by Thick film','6379','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2003_88207-6','88207-6','http://loinc.org','Lymphocytic choriomeningitis virus RNA [Presence] in Cerebral spinal fluid by NAA with probe detection','882076','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1158_101928-0','101928-0','http://loinc.org','SARS-CoV-2 Ag [Presence] in Nasopharynx by Immunofluorescence','1019280','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1158_94558-4','94558-4','http://loinc.org','SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory system specimen by Rapid immunoassay','945584','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1158_95209-3','95209-3','http://loinc.org','SARS-CoV+SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory system specimen by Rapid immunoassay','952093','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1158_96119-3','96119-3','http://loinc.org','SARS-CoV-2 (COVID-19) Ag [Presence] in Upper respiratory specimen by Immunoassay','961193','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1158_97097-0','97097-0','http://loinc.org','SARS-CoV-2 (COVID-19) Ag [Presence] in Upper respiratory specimen by Rapid immunoassay','970970','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1279_13971-7','13971-7','http://loinc.org','Histoplasma capsulatum Ag [Units/volume] in Urine by Immunoassay','139717','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1279_19107-2','19107-2','http://loinc.org','Histoplasma capsulatum Ag [Units/volume] in Serum by Radioimmunoassay (RIA)','191072','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1279_19108-0','19108-0','http://loinc.org','Histoplasma capsulatum Ag [Presence] in Serum','191080','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1279_31855-0','31855-0','http://loinc.org','Histoplasma capsulatum Ag [Units/volume] in Serum','318550','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1279_31856-8','31856-8','http://loinc.org','Histoplasma capsulatum Ag [Units/volume] in Urine','318568','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1279_35734-3','35734-3','http://loinc.org','Histoplasma capsulatum Ag [Presence] in Urine','357343','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1279_44524-7','44524-7','http://loinc.org','Histoplasma capsulatum Ag [Presence] in Urine by Immunoassay','445247','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1279_44525-4','44525-4','http://loinc.org','Histoplasma capsulatum Ag [Presence] in Serum by Immunoassay','445254','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1279_44870-4','44870-4','http://loinc.org','Histoplasma capsulatum Ag [Presence] in Urine by Radioimmunoassay (RIA)','448704','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1279_48952-6','48952-6','http://loinc.org','Histoplasma capsulatum Ag [Mass/volume] in Urine','489526','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1279_51753-2','51753-2','http://loinc.org','Histoplasma capsulatum Ag [Mass/volume] in Serum by Immunoassay','517532','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1279_53930-4','53930-4','http://loinc.org','Histoplasma capsulatum Ag [Units/volume] in Bronchoalveolar lavage by Immunoassay','539304','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1279_6428-7','6428-7','http://loinc.org','Histoplasma capsulatum Ag [Units/volume] in Serum by Immunoassay','64287','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1279_95073-3','95073-3','http://loinc.org','Histoplasma capsulatum Ag [Mass/volume] in Bronchoalveolar lavage by Immunoassay','950733','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1279_34158-6','34158-6','http://loinc.org','Histoplasma capsulatum Ag [Units/volume] in Cerebral spinal fluid','341586','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1279_51754-0','51754-0','http://loinc.org','Histoplasma capsulatum Ag [Mass/volume] in Cerebral spinal fluid by Immunoassay','517540','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1279_53931-2','53931-2','http://loinc.org','Histoplasma capsulatum Ag [Units/volume] in Cerebral spinal fluid by Immunoassay','539312','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1279_19109-8','19109-8','http://loinc.org','Histoplasma capsulatum Ag [Presence] in Specimen','191098','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1279_34171-9','34171-9','http://loinc.org','Histoplasma capsulatum Ag [Units/volume] in Specimen','341719','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1279_42916-7','42916-7','http://loinc.org','Histoplasma capsulatum Ag [Units/volume] in Specimen by Immunoassay','429167','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1279_48338-8','48338-8','http://loinc.org','Histoplasma capsulatum Ag [Presence] in Tissue by Immune stain','483388','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1279_57766-8','57766-8','http://loinc.org','Histoplasma capsulatum Ag [Mass/volume] in Body fluid','577668','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1279_40776-7','40776-7','http://loinc.org','Histoplasma capsulatum Ag [Presence] in Cerebral spinal fluid','407767','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2004_45277-1','45277-1','http://loinc.org','Lymphocytic choriomeningitis virus IgM Ab [Presence] in Body fluid','452771','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2004_45278-9','45278-9','http://loinc.org','Lymphocytic choriomeningitis virus IgG Ab [Presence] in Body fluid','452789','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2004_11605-3','11605-3','http://loinc.org','Lymphocytic choriomeningitis virus Ab [Units/volume] in Serum','116053','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2004_17228-8','17228-8','http://loinc.org','Lymphocytic choriomeningitis virus Ab [Titer] in Cerebral spinal fluid','172288','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2004_17229-6','17229-6','http://loinc.org','Lymphocytic choriomeningitis virus IgM Ab [Titer] in Cerebral spinal fluid','172296','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2004_22408-9','22408-9','http://loinc.org','Lymphocytic choriomeningitis virus Ab [Titer] in Serum','224089','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2004_22409-7','22409-7','http://loinc.org','Lymphocytic choriomeningitis virus IgG Ab [Titer] in Cerebral spinal fluid','224097','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2004_22410-5','22410-5','http://loinc.org','Lymphocytic choriomeningitis virus IgG Ab [Titer] in Serum','224105','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2004_22411-3','22411-3','http://loinc.org','Lymphocytic choriomeningitis virus IgM Ab [Titer] in Serum','224113','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2004_31491-4','31491-4','http://loinc.org','Lymphocytic choriomeningitis virus Ab [Units/volume] in Cerebral spinal fluid','314914','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2004_31492-2','31492-2','http://loinc.org','Lymphocytic choriomeningitis virus IgG Ab [Units/volume] in Cerebral spinal fluid','314922','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2004_31493-0','31493-0','http://loinc.org','Lymphocytic choriomeningitis virus IgG Ab [Units/volume] in Serum','314930','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2004_31494-8','31494-8','http://loinc.org','Lymphocytic choriomeningitis virus IgM Ab [Units/volume] in Cerebral spinal fluid','314948','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2004_31495-5','31495-5','http://loinc.org','Lymphocytic choriomeningitis virus IgM Ab [Units/volume] in Serum','314955','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2004_40499-6','40499-6','http://loinc.org','Lymphocytic choriomeningitis virus IgM Ab [Titer] in Serum by Immunoassay','404996','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2004_40500-1','40500-1','http://loinc.org','Lymphocytic choriomeningitis virus IgG Ab [Titer] in Serum by Immunoassay','405001','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2004_45218-5','45218-5','http://loinc.org','Lymphocytic choriomeningitis virus IgG Ab [Presence] in Serum','452185','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2004_45219-3','45219-3','http://loinc.org','Lymphocytic choriomeningitis virus IgG Ab [Presence] in Cerebral spinal fluid','452193','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2004_45220-1','45220-1','http://loinc.org','Lymphocytic choriomeningitis virus IgM Ab [Presence] in Serum','452201','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2004_45221-9','45221-9','http://loinc.org','Lymphocytic choriomeningitis virus IgM Ab [Presence] in Cerebral spinal fluid','452219','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2004_5241-5','5241-5','http://loinc.org','Lymphocytic choriomeningitis virus Ab [Titer] in Serum by Complement fixation','52415','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2004_6458-4','6458-4','http://loinc.org','Lymphocytic choriomeningitis virus Ab [Titer] in Serum by Immunofluorescence','64584','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2004_88205-0','88205-0','http://loinc.org','Lymphocytic choriomeningitis virus IgM Ab [Presence] in Serum by Immunoassay','882050','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2004_88206-8','88206-8','http://loinc.org','Lymphocytic choriomeningitis virus IgG Ab [Presence] in Serum by Immunoassay','882068','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2004_93787-0','93787-0','http://loinc.org','Lymphocytic choriomeningitis virus IgG+IgM Ab [Presence] in Cerebral spinal fluid','937870','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2004_9564-6','9564-6','http://loinc.org','Lymphocytic choriomeningitis virus Ab [Titer] in Cerebral spinal fluid by Complement fixation','95646','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2004_9765-9','9765-9','http://loinc.org','Lymphocytic choriomeningitis virus IgG Ab [Titer] in Serum by Immunofluorescence','97659','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2004_9766-7','9766-7','http://loinc.org','Lymphocytic choriomeningitis virus IgG Ab [Titer] in Cerebral spinal fluid by Immunofluorescence','97667','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2004_9767-5','9767-5','http://loinc.org','Lymphocytic choriomeningitis virus IgM Ab [Titer] in Serum by Immunofluorescence','97675','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2004_9768-3','9768-3','http://loinc.org','Lymphocytic choriomeningitis virus IgM Ab [Titer] in Cerebral spinal fluid by Immunofluorescence','97683','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2243_80618-2','80618-2','http://loinc.org','Zika virus IgM Ab [Units/volume] in Cerebral spinal fluid by Immunoassay','806182','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2243_80823-8','80823-8','http://loinc.org','Zika virus IgM Ab [Presence] in Cerebral spinal fluid by Immunoassay','808238','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2243_91678-3','91678-3','http://loinc.org','Zika virus IgM Ab [Presence] in Serum, Plasma or Blood by Rapid immunoassay','916783','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1273_41432-6','41432-6','http://loinc.org','Balamuthia mandrillaris DNA [Presence] in Specimen by NAA with probe detection','414326','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2002_51667-4','51667-4','http://loinc.org','Lymphocytic choriomeningitis virus RNA [Presence] in Specimen by NAA with probe detection','516674','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2002_88207-6','88207-6','http://loinc.org','Lymphocytic choriomeningitis virus RNA [Presence] in Cerebral spinal fluid by NAA with probe detection','882076','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2139_57309-7','57309-7','http://loinc.org','PRNP gene mutations found [Identifier] in Blood or Tissue by Molecular genetics method Nominal','573097','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2139_81868-2','81868-2','http://loinc.org','PRNP gene targeted mutation analysis in Blood or Tissue by Molecular genetics method','818682','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.390_13922-0','13922-0','http://loinc.org','Trichinella spiralis IgA Ab [Presence] in Serum by Immunoassay','139220','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.390_13923-8','13923-8','http://loinc.org','Trichinella spiralis IgM Ab [Presence] in Serum by Immunoassay','139238','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.390_17732-9','17732-9','http://loinc.org','Trichinella spiralis Ab [Presence] in Serum by Latex agglutination','177329','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.390_17733-7','17733-7','http://loinc.org','Trichinella spiralis IgA Ab [Presence] in Serum','177337','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.390_17734-5','17734-5','http://loinc.org','Trichinella spiralis IgG Ab [Units/volume] in Serum','177345','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.390_17735-2','17735-2','http://loinc.org','Trichinella spiralis IgM Ab [Presence] in Serum','177352','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.390_19253-4','19253-4','http://loinc.org','Trichinella spiralis Ab [Presence] in Serum by Immunoassay','192534','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.390_22595-3','22595-3','http://loinc.org','Trichinella spiralis Ab [Presence] in Serum','225953','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.390_22596-1','22596-1','http://loinc.org','Trichinella spiralis Ab [Titer] in Serum','225961','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.390_25423-5','25423-5','http://loinc.org','Trichinella spiralis IgG Ab [Units/volume] in Serum by Immunoassay','254235','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.390_25993-7','25993-7','http://loinc.org','Trichinella spiralis Ab [Titer] in Serum by Immunofluorescence','259937','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.390_26661-9','26661-9','http://loinc.org','Trichinella sp Ab [Presence] in Serum','266619','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.390_27426-6','27426-6','http://loinc.org','Trichinella sp IgM Ab [Units/volume] in Serum by Immunoassay','274266','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.390_31687-7','31687-7','http://loinc.org','Trichinella sp IgM Ab [Units/volume] in Serum','316877','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.390_32723-9','32723-9','http://loinc.org','Trichinella sp IgG Ab [Units/volume] in Serum by Immunoassay','327239','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.390_32768-4','32768-4','http://loinc.org','Trichinella sp IgG Ab [Units/volume] in Serum','327684','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.390_33587-7','33587-7','http://loinc.org','Trichinella sp IgA Ab [Units/volume] in Serum','335877','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.390_41426-8','41426-8','http://loinc.org','Trichinella spiralis Ab [Units/volume] in Serum by Immunoassay','414268','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.390_52979-2','52979-2','http://loinc.org','Trichinella spiralis IgG Ab [Titer] in Serum by Immunofluorescence','529792','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.390_53387-7','53387-7','http://loinc.org','Trichinella spiralis IgG Ab [Titer] in Serum','533877','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.390_5395-9','5395-9','http://loinc.org','Trichinella spiralis Ab [Titer] in Serum by Latex agglutination','53959','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.390_56992-1','56992-1','http://loinc.org','Trichinella sp IgG Ab [Presence] in Serum by Immunofluorescence','569921','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.390_6563-1','6563-1','http://loinc.org','Trichinella spiralis IgG Ab [Presence] in Serum by Immunoassay','65631','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.390_8042-4','8042-4','http://loinc.org','Trichinella spiralis Ab [Units/volume] in Serum','80424','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.390_8043-2','8043-2','http://loinc.org','Trichinella spiralis IgG Ab [Presence] in Serum','80432','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1281_35732-7','35732-7','http://loinc.org','Histoplasma capsulatum H Ab [Presence] in Serum by Immune diffusion (ID)','357327','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1281_35733-5','35733-5','http://loinc.org','Histoplasma capsulatum M Ab [Presence] in Serum by Immune diffusion (ID)','357335','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1281_44526-2','44526-2','http://loinc.org','Histoplasma capsulatum H Ab [Presence] in Cerebral spinal fluid','445262','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1281_44527-0','44527-0','http://loinc.org','Histoplasma capsulatum H Ab [Presence] in Serum','445270','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1281_44528-8','44528-8','http://loinc.org','Histoplasma capsulatum M Ab [Presence] in Serum','445288','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1281_44808-4','44808-4','http://loinc.org','Histoplasma capsulatum H Ab band pattern [Interpretation] in Serum by Immunoblot','448084','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1281_44809-2','44809-2','http://loinc.org','Histoplasma capsulatum M Ab band pattern [Interpretation] in Serum by Immunoblot','448092','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1281_49904-6','49904-6','http://loinc.org','Histoplasma capsulatum M Ab [Presence] in Cerebral spinal fluid','499046','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.380_14210-9','14210-9','http://loinc.org','Giardia lamblia Ag [Presence] in Stool by Immunofluorescence','142109','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.380_16898-9','16898-9','http://loinc.org','Giardia lamblia 65 Ag [Presence] in Stool','168989','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.380_16899-7','16899-7','http://loinc.org','Giardia lamblia Ag [Presence] in Specimen','168997','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.380_21302-5','21302-5','http://loinc.org','Giardia lamblia Ag [Presence] in Stool by Immunoassay --2nd specimen','213025','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.380_21303-3','21303-3','http://loinc.org','Giardia lamblia Ag [Presence] in Stool by Immunoassay --3rd specimen','213033','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.380_23744-6','23744-6','http://loinc.org','Giardia lamblia Ag [Presence] in Specimen by Immunofluorescence','237446','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.380_27265-8','27265-8','http://loinc.org','Giardia sp Ag [Presence] in Stool','272658','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.380_31830-3','31830-3','http://loinc.org','Giardia lamblia Ag [Presence] in Stool','318303','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.380_31831-1','31831-1','http://loinc.org','Giardia lamblia Ag [Presence] in Stool --2nd specimen','318311','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.380_31832-9','31832-9','http://loinc.org','Giardia lamblia Ag [Presence] in Stool --3rd specimen','318329','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.380_34470-5','34470-5','http://loinc.org','Giardia lamblia Ag [Presence] in Bile fluid','344705','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.380_6412-1','6412-1','http://loinc.org','Giardia lamblia Ag [Presence] in Stool by Immunoassay','64121','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.380_6413-9','6413-9','http://loinc.org','Giardia lamblia Ag [Presence] in Specimen by Immunoassay','64139','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.380_91676-7','91676-7','http://loinc.org','Giardia lamblia Ag [Presence] in Stool by Rapid immunoassay','916767','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.380_91761-7','91761-7','http://loinc.org','Giardia sp Ag [Presence] in Stool by Rapid immunoassay','917617','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.380_48059-0','48059-0','http://loinc.org','Giardia lamblia+Cryptosporidium sp Ag [Presence] in Stool by Immunoassay','480590','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.380_48060-8','48060-8','http://loinc.org','Giardia lamblia+Cryptosporidium sp Ag [Presence] in Stool','480608','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.380_48061-6','48061-6','http://loinc.org','Giardia lamblia+Cryptosporidium sp Ag [Presence] in Stool by Immunofluorescence','480616','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.380_48062-4','48062-4','http://loinc.org','Giardia lamblia+Cryptosporidium parvum Ag [Presence] in Stool by Immunofluorescence','480624','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.380_48063-2','48063-2','http://loinc.org','Giardia lamblia+Cryptosporidium parvum Ag [Presence] in Stool by Immunoassay','480632','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.380_48064-0','48064-0','http://loinc.org','Giardia lamblia+Cryptosporidium parvum Ag [Presence] in Stool','480640','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.380_49232-2','49232-2','http://loinc.org','Giardia lamblia+Cryptosporidium sp Ag [Presence] in Stool by Rapid, less than 30 minutes','492322','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.380_49233-0','49233-0','http://loinc.org','Giardia lamblia+Cryptosporidium parvum Ag [Presence] in Stool by Rapid, less than 30 minutes','492330','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.380_51911-6','51911-6','http://loinc.org','Giardia lamblia+Cryptosporidium sp Ag [Presence] in Stool --3rd specimen','519116','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.380_51912-4','51912-4','http://loinc.org','Giardia lamblia+Cryptosporidium sp Ag [Presence] in Stool --2nd specimen','519124','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.380_63564-9','63564-9','http://loinc.org','Giardia lamblia Ag and Cryptosporidium parvum Ag and Entamoeba histolytica/dispar Ag [Identifier] in Stool','635649','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1280_20573-2','20573-2','http://loinc.org','Histoplasma capsulatum mycelial phase Ab [Titer] in Serum by Complement fixation','205732','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1280_20574-0','20574-0','http://loinc.org','Histoplasma capsulatum yeast phase Ab [Titer] in Serum by Complement fixation','205740','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1280_27209-6','27209-6','http://loinc.org','Histoplasma capsulatum yeast phase Ab [Titer] in Cerebral spinal fluid by Complement fixation','272096','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1280_27220-3','27220-3','http://loinc.org','Histoplasma capsulatum mycelial phase Ab [Titer] in Cerebral spinal fluid by Complement fixation','272203','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1280_31070-6','31070-6','http://loinc.org','Histoplasma capsulatum yeast phase Ab [Titer] in Body fluid by Complement fixation','310706','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1280_31071-4','31071-4','http://loinc.org','Histoplasma capsulatum mycelial phase Ab [Titer] in Body fluid by Complement fixation','310714','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1280_5219-1','5219-1','http://loinc.org','Histoplasma capsulatum Ab [Titer] in Serum by Complement fixation','52191','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1280_97856-9','97856-9','http://loinc.org','Histoplasma capsulatum yeast phase Ab [Titer] in Specimen by Complement fixation','978569','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1280_97857-7','97857-7','http://loinc.org','Histoplasma capsulatum mycelial phase Ab [Titer] in Specimen by Complement fixation','978577','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.384_101559-3','101559-3','http://loinc.org','Listeria monocytogenes DNA [Presence] in Stool by NAA with probe detection','1015593','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.384_5021-1','5021-1','http://loinc.org','Listeria monocytogenes rRNA [Presence] in Specimen by Probe','50211','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.384_61369-5','61369-5','http://loinc.org','Listeria monocytogenes DNA [Presence] in Specimen by NAA with probe detection','613695','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.384_89596-1','89596-1','http://loinc.org','Listeria monocytogenes DNA [Presence] in Blood by NAA with probe detection','895961','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.384_82184-3','82184-3','http://loinc.org','Listeria monocytogenes DNA [Presence] in Cerebral spinal fluid by NAA with non-probe detection','821843','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.384_99091-1','99091-1','http://loinc.org','Listeria monocytogenes DNA [Presence] in Cerebral spinal fluid by NAA with probe detection','990911','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.385_6609-2','6609-2','http://loinc.org','Listeria sp identified in Specimen by Organism specific culture','66092','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.385_90100-9','90100-9','http://loinc.org','Listeria sp identified in Isolate by Organism specific culture','901009','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.385_88265-4','88265-4','http://loinc.org','Listeria sp tuf gene [Presence] by Probe in Positive blood culture','882654','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.385_92767-3','92767-3','http://loinc.org','Listeria sp DNA [Presence] by NAA with probe detection in Positive blood culture','927673','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.385_85763-1','85763-1','http://loinc.org','Listeria monocytogenes DNA [Presence] by NAA with non-probe detection in Positive blood culture','857631','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.385_92780-6','92780-6','http://loinc.org','Listeria monocytogenes DNA [Presence] by NAA with probe detection in Positive blood culture','927806','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.387_6578-9','6578-9','http://loinc.org','Vibrio sp identified in Blood by Organism specific culture','65789','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.387_6579-7','6579-7','http://loinc.org','Vibrio sp identified in Stool by Organism specific culture','65797','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.387_6581-3','6581-3','http://loinc.org','Vibrio sp identified in Specimen by Organism specific culture','65813','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1168_23051-6','23051-6','http://loinc.org','Eastern equine encephalitis virus RNA [Presence] in Tissue by NAA with probe detection','230516','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1168_23052-4','23052-4','http://loinc.org','Eastern equine encephalitis virus RNA [Presence] in Tissue by Probe','230524','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1168_34449-9','34449-9','http://loinc.org','Eastern equine encephalitis virus RNA [Presence] in Blood by NAA with probe detection','344499','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1168_37983-4','37983-4','http://loinc.org','Eastern equine encephalitis virus RNA [Presence] in Specimen by Probe','379834','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1168_50547-9','50547-9','http://loinc.org','Eastern equine encephalitis virus RNA [Presence] in Specimen by NAA with probe detection','505479','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1168_26825-0','26825-0','http://loinc.org','Eastern equine encephalitis virus RNA [Presence] in Cerebral spinal fluid by Probe','268250','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1168_34450-7','34450-7','http://loinc.org','Eastern equine encephalitis virus RNA [Presence] in Cerebral spinal fluid by NAA with probe detection','344507','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.267_14546-6','14546-6','http://loinc.org','Mumps virus Ag [Presence] in Throat by Immunofluorescence','145466','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.267_14547-4','14547-4','http://loinc.org','Mumps virus Ag [Presence] in Skin by Immunofluorescence','145474','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.267_14548-2','14548-2','http://loinc.org','Mumps virus Ag [Presence] in Eye by Immunofluorescence','145482','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.267_14549-0','14549-0','http://loinc.org','Mumps virus Ag [Presence] in Nose by Immunofluorescence','145490','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.267_14550-8','14550-8','http://loinc.org','Mumps virus Ag [Presence] in Sputum by Immunofluorescence','145508','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.267_14551-6','14551-6','http://loinc.org','Mumps virus Ag [Presence] in Cervix by Immunofluorescence','145516','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.267_14552-4','14552-4','http://loinc.org','Mumps virus Ag [Presence] in Vaginal fluid by Immunofluorescence','145524','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.267_14553-2','14553-2','http://loinc.org','Mumps virus Ag [Presence] in Urine sediment by Immunofluorescence','145532','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.267_14554-0','14554-0','http://loinc.org','Mumps virus Ag [Presence] in Penis by Immunofluorescence','145540','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.267_14555-7','14555-7','http://loinc.org','Mumps virus Ag [Presence] in Urethra by Immunofluorescence','145557','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.267_31889-9','31889-9','http://loinc.org','Mumps virus Ag [Presence] in Cervix','318899','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.267_31890-7','31890-7','http://loinc.org','Mumps virus Ag [Presence] in Eye','318907','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.267_31891-5','31891-5','http://loinc.org','Mumps virus Ag [Presence] in Vaginal fluid','318915','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.267_31892-3','31892-3','http://loinc.org','Mumps virus Ag [Presence] in Nose','318923','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.267_31893-1','31893-1','http://loinc.org','Mumps virus Ag [Presence] in Penis','318931','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.267_31894-9','31894-9','http://loinc.org','Mumps virus Ag [Presence] in Serum','318949','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.267_31895-6','31895-6','http://loinc.org','Mumps virus Ag [Presence] in Skin','318956','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.267_31896-4','31896-4','http://loinc.org','Mumps virus Ag [Presence] in Sputum','318964','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.267_31897-2','31897-2','http://loinc.org','Mumps virus Ag [Presence] in Throat','318972','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.267_31898-0','31898-0','http://loinc.org','Mumps virus Ag [Presence] in Urine sediment','318980','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.267_31899-8','31899-8','http://loinc.org','Mumps virus Ag [Presence] in Urethra','318998','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.267_6480-8','6480-8','http://loinc.org','Mumps virus Ag [Presence] in Serum by Immunofluorescence','64808','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.267_14545-8','14545-8','http://loinc.org','Mumps virus Ag [Presence] in Cerebral spinal fluid by Immunofluorescence','145458','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.267_31888-1','31888-1','http://loinc.org','Mumps virus Ag [Presence] in Cerebral spinal fluid','318881','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.267_12237-4','12237-4','http://loinc.org','Mumps virus Ag [Presence] in Specimen by Immunofluorescence','122374','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.267_31900-4','31900-4','http://loinc.org','Mumps virus Ag [Presence] in Specimen','319004','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.267_67807-8','67807-8','http://loinc.org','Mumps virus Ag [Presence] in Isolate by Immunofluorescence','678078','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.388_41857-4','41857-4','http://loinc.org','Vibrio parahaemolyticus DNA [Presence] in Specimen by NAA with probe detection','418574','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.388_49609-1','49609-1','http://loinc.org','Vibrio sp DNA [Identifier] in Specimen by NAA with probe detection','496091','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.388_79384-4','79384-4','http://loinc.org','Vibrio cholerae+parahaemolyticus rfbL+trkH+tnaA genes [Presence] in Stool by NAA with probe detection','793844','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.388_82200-7','82200-7','http://loinc.org','Vibrio cholerae+parahaemolyticus+vulnificus DNA [Presence] in Stool by NAA with non-probe detection','822007','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.388_92686-5','92686-5','http://loinc.org','Vibrio cholerae+parahaemolyticus+vulnificus DNA [Presence] in Stool by NAA with probe detection','926865','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.388_97315-6','97315-6','http://loinc.org','Vibrio parahaemolyticus DNA [Presence] in Stool by NAA with probe detection','973156','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.388_97316-4','97316-4','http://loinc.org','Vibrio vulnificus DNA [Presence] in Stool by NAA with probe detection','973164','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1169_101303-6','101303-6','http://loinc.org','Chikungunya virus RNA [Presence] in Blood by NAA with non-probe detection','1013036','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1169_60260-7','60260-7','http://loinc.org','Chikungunya virus RNA [Presence] in Serum or Plasma by NAA with probe detection','602607','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1169_81152-1','81152-1','http://loinc.org','Chikungunya virus non-structural protein 1 (nsP1) RNA [Presence] in Serum by NAA with probe detection','811521','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1169_86514-7','86514-7','http://loinc.org','Chikungunya virus RNA [Presence] in Amniotic fluid by NAA with probe detection','865147','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1169_86515-4','86515-4','http://loinc.org','Chikungunya virus RNA [Presence] in Urine by NAA with probe detection','865154','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1169_51664-1','51664-1','http://loinc.org','Chikungunya virus RNA [Presence] in Specimen by NAA with probe detection','516641','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1169_81153-9','81153-9','http://loinc.org','Chikungunya virus non-structural protein 1 (nsP1) RNA [Presence] in Cerebral spinal fluid by NAA with probe detection','811539','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2254_76687-3','76687-3','http://loinc.org','Mycobacterium sp identified in Bronchoalveolar lavage by Organism specific culture','766873','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2254_89636-5','89636-5','http://loinc.org','Mycobacterium sp identified in Lower respiratory specimen by Organism specific culture','896365','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2254_9823-6','9823-6','http://loinc.org','Mycobacterium sp identified in Bronchial specimen by Organism specific culture','98236','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2254_53909-8','53909-8','http://loinc.org','Mycobacterium sp identified in Pleural fluid by Organism specific culture','539098','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1045_95764-7','95764-7','http://loinc.org','Candida auris DNA [Presence] in Urine by NAA with non-probe detection','957647','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1045_95766-2','95766-2','http://loinc.org','Candida auris DNA [Presence] in Blood by NAA with non-probe detection','957662','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1045_87620-1','87620-1','http://loinc.org','Candida auris ITS2 gene [Presence] in Specimen by NAA with probe detection','876201','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1045_95765-4','95765-4','http://loinc.org','Candida auris DNA [Presence] in Specimen by NAA with non-probe detection','957654','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1045_97936-9','97936-9','http://loinc.org','Candida auris DNA [Presence] in Specimen by NAA with probe detection','979369','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1045_96302-5','96302-5','http://loinc.org','Candida auris DNA [Presence] by NAA with non-probe detection in Positive blood culture','963025','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1044_92791-3','92791-3','http://loinc.org','Candida auris DNA [Presence] by NAA with probe detection in Positive blood culture','927913','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1044_90002-7','90002-7','http://loinc.org','Candida auris [Presence] in Specimen by Organism specific culture','900027','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1044_94419-9','94419-9','http://loinc.org','Candida auris [Presence] in Isolate by MS.MALDI-TOF','944199','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1044_96302-5','96302-5','http://loinc.org','Candida auris DNA [Presence] by NAA with non-probe detection in Positive blood culture','963025','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1171_54036-9','54036-9','http://loinc.org','Western equine encephalitis virus RNA [Presence] in Specimen by NAA with probe detection','540369','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1171_26690-8','26690-8','http://loinc.org','Western equine encephalitis virus RNA [Presence] in Cerebral spinal fluid by Probe','266908','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1170_34456-4','34456-4','http://loinc.org','Powassan virus RNA [Presence] in Blood by NAA with probe detection','344564','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1170_55144-0','55144-0','http://loinc.org','Powassan virus RNA [Presence] in Specimen by NAA with probe detection','551440','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1170_34457-2','34457-2','http://loinc.org','Powassan virus RNA [Presence] in Cerebral spinal fluid by NAA with probe detection','344572','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.491_47405-6','47405-6','http://loinc.org','Ehrlichia chaffeensis IgG Ab [Titer] in Serum by Immunofluorescence','474056','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.491_48894-0','48894-0','http://loinc.org','Ehrlichia chaffeensis IgG Ab [Titer] in Body fluid by Immunofluorescence','488940','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1173_23047-4','23047-4','http://loinc.org','Eastern equine encephalitis virus Ag [Presence] in Brain by Complement fixation','230474','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1173_31806-3','31806-3','http://loinc.org','Eastern equine encephalitis virus Ag [Presence] in Brain','318063','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1173_31807-1','31807-1','http://loinc.org','Eastern equine encephalitis virus Ag [Presence] in Serum','318071','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1173_6388-3','6388-3','http://loinc.org','Eastern equine encephalitis virus Ag [Presence] in Serum by Immunoassay','63883','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1173_6389-1','6389-1','http://loinc.org','Eastern equine encephalitis virus Ag [Presence] in Serum by Immunofluorescence','63891','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1173_23048-2','23048-2','http://loinc.org','Eastern equine encephalitis virus Ag [Presence] in Specimen by Immunofluorescence','230482','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1173_23049-0','23049-0','http://loinc.org','Eastern equine encephalitis virus Ag [Presence] in Specimen by Complement fixation','230490','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1173_23050-8','23050-8','http://loinc.org','Eastern equine encephalitis virus Ag [Presence] in Specimen by Neutralization test','230508','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1173_31808-9','31808-9','http://loinc.org','Eastern equine encephalitis virus Ag [Presence] in Specimen','318089','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1172_34452-3','34452-3','http://loinc.org','Jamestown canyon virus RNA [Presence] in Blood by NAA with probe detection','344523','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1172_34454-9','34454-9','http://loinc.org','La Crosse virus RNA [Presence] in Blood by NAA with probe detection','344549','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1172_42515-7','42515-7','http://loinc.org','Jamestown canyon virus RNA [Presence] in Urine by NAA with probe detection','425157','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1172_34463-0','34463-0','http://loinc.org','California serogroup RNA [Presence] in Blood by NAA with probe detection','344630','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1172_97926-0','97926-0','http://loinc.org','Snowshoe hare virus RNA [Presence] in Specimen by NAA with probe detection','979260','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1172_53874-4','53874-4','http://loinc.org','Jamestown canyon virus RNA [Units/volume] (viral load) in Specimen by NAA with probe detection','538744','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1172_69767-2','69767-2','http://loinc.org','La Crosse virus RNA [Presence] in Specimen by NAA with probe detection','697672','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1172_97924-5','97924-5','http://loinc.org','Jamestown canyon virus RNA [Presence] in Specimen by NAA with probe detection','979245','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1172_37986-7','37986-7','http://loinc.org','California serogroup RNA [Presence] in Specimen by Probe','379867','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1172_55143-2','55143-2','http://loinc.org','California serogroup RNA [Presence] in Specimen by NAA with probe detection','551432','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1172_97922-9','97922-9','http://loinc.org','California encephalitis virus RNA [Presence] in Specimen by NAA with probe detection','979229','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1172_34453-1','34453-1','http://loinc.org','Jamestown canyon virus RNA [Presence] in Cerebral spinal fluid by NAA with probe detection','344531','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1172_34455-6','34455-6','http://loinc.org','La Crosse virus RNA [Presence] in Cerebral spinal fluid by NAA with probe detection','344556','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1172_34462-2','34462-2','http://loinc.org','California serogroup RNA [Presence] in Cerebral spinal fluid by NAA with probe detection','344622','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.372_100868-9','100868-9','http://loinc.org','Cryptosporidium sp 18S-LC2 rRNA [Genotype] in Specimen by Molecular genetics method','1008689','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.372_100869-7','100869-7','http://loinc.org','Cryptosporidium gp60 gene [Type] in Specimen by Molecular genetics method','1008697','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.372_100870-5','100870-5','http://loinc.org','Cryptosporidium 18S rRNA [Genotype] in Specimen by Molecular genetics method','1008705','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.372_41433-4','41433-4','http://loinc.org','Cryptosporidium hominis DNA [Presence] in Specimen by NAA with probe detection','414334','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.372_41434-2','41434-2','http://loinc.org','Cryptosporidium parvum DNA [Presence] in Specimen by NAA with probe detection','414342','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.372_60545-1','60545-1','http://loinc.org','Cryptosporidium sp DNA [Presence] in Specimen by NAA with probe detection','605451','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.372_80681-0','80681-0','http://loinc.org','Cryptosporidium parvum+hominis oocyst wall protein COWP gene [Presence] in Stool by NAA with probe detection','806810','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.372_82205-6','82205-6','http://loinc.org','Cryptosporidium sp DNA [Presence] in Stool by NAA with non-probe detection','822056','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.372_88927-9','88927-9','http://loinc.org','Cryptosporidium sp DNA [Presence] in Tissue by NAA with probe detection','889279','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.372_88928-7','88928-7','http://loinc.org','Cryptosporidium sp DNA [Presence] in Stool by NAA with probe detection','889287','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.372_92688-1','92688-1','http://loinc.org','Cryptosporidium parvum+hominis DNA [Presence] in Stool by NAA with probe detection','926881','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.372_94633-5','94633-5','http://loinc.org','Cryptosporidium parvum DNA [Cycle Threshold #] in Specimen by NAA with probe detection','946335','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.372_98411-2','98411-2','http://loinc.org','Cryptosporidium sp [Identifier] in Isolate by RFLP.rRNA','984112','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.493_48982-3','48982-3','http://loinc.org','Ehrlichia sp [Presence] in Specimen by Light microscopy','489823','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.373_21233-2','21233-2','http://loinc.org','Cryptosporidium sp Ag [Presence] in Stool','212332','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.373_31793-3','31793-3','http://loinc.org','Cryptosporidium sp Ag [Units/volume] in Stool','317933','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.373_31794-1','31794-1','http://loinc.org','Cryptosporidium sp Ag [Presence] in Specimen','317941','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.373_39534-3','39534-3','http://loinc.org','Cryptosporidium sp Ag [Presence] in Stool by Immunofluorescence','395343','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.373_41487-0','41487-0','http://loinc.org','Cryptosporidium parvum Ag [Presence] in Stool by Immunoassay','414870','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.373_566-0','566-0','http://loinc.org','Cryptosporidium sp Ag [Presence] in Specimen by Immunofluorescence','5660','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.373_6371-9','6371-9','http://loinc.org','Cryptosporidium sp Ag [Presence] in Stool by Immunoassay','63719','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.373_6372-7','6372-7','http://loinc.org','Cryptosporidium sp Ag [Titer] in Stool by Immunofluorescence','63727','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.373_91677-5','91677-5','http://loinc.org','Cryptosporidium parvum Ag [Presence] in Stool by Rapid immunoassay','916775','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.373_48059-0','48059-0','http://loinc.org','Giardia lamblia+Cryptosporidium sp Ag [Presence] in Stool by Immunoassay','480590','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.373_48060-8','48060-8','http://loinc.org','Giardia lamblia+Cryptosporidium sp Ag [Presence] in Stool','480608','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.373_48061-6','48061-6','http://loinc.org','Giardia lamblia+Cryptosporidium sp Ag [Presence] in Stool by Immunofluorescence','480616','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.373_48062-4','48062-4','http://loinc.org','Giardia lamblia+Cryptosporidium parvum Ag [Presence] in Stool by Immunofluorescence','480624','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.373_48063-2','48063-2','http://loinc.org','Giardia lamblia+Cryptosporidium parvum Ag [Presence] in Stool by Immunoassay','480632','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.373_48064-0','48064-0','http://loinc.org','Giardia lamblia+Cryptosporidium parvum Ag [Presence] in Stool','480640','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.373_49232-2','49232-2','http://loinc.org','Giardia lamblia+Cryptosporidium sp Ag [Presence] in Stool by Rapid, less than 30 minutes','492322','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.373_49233-0','49233-0','http://loinc.org','Giardia lamblia+Cryptosporidium parvum Ag [Presence] in Stool by Rapid, less than 30 minutes','492330','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.373_51911-6','51911-6','http://loinc.org','Giardia lamblia+Cryptosporidium sp Ag [Presence] in Stool --3rd specimen','519116','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.373_51912-4','51912-4','http://loinc.org','Giardia lamblia+Cryptosporidium sp Ag [Presence] in Stool --2nd specimen','519124','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.373_63564-9','63564-9','http://loinc.org','Giardia lamblia Ag and Cryptosporidium parvum Ag and Entamoeba histolytica/dispar Ag [Identifier] in Stool','635649','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.374_20780-3','20780-3','http://loinc.org','Cryptosporidium sp [Presence] in Large intestine or small intestine Tissue by Acid fast stain','207803','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.374_20781-1','20781-1','http://loinc.org','Cryptosporidium sp [Presence] in Stool by Acid fast stain','207811','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.374_41488-8','41488-8','http://loinc.org','Cryptosporidium sp [Presence] in Specimen by Acid fast stain','414888','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.496_104377-7','104377-7','http://loinc.org','Coxiella burnetii IgG Ab [Titer] in Serum by Immunoassay --1st specimen','1043777','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.496_104378-5','104378-5','http://loinc.org','Coxiella burnetii IgG Ab [Titer] in Serum by Immunoassay --2nd specimen','1043785','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.496_104380-1','104380-1','http://loinc.org','Coxiella burnetii IgM Ab [Titer] in Serum by Immunoassay --2nd specimen','1043801','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.496_104381-9','104381-9','http://loinc.org','Coxiella burnetii IgM Ab [Titer] in Serum by Immunoassay --1st specimen','1043819','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.496_16677-7','16677-7','http://loinc.org','Coxiella burnetii IgG Ab [Units/volume] in Serum','166777','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.496_16678-5','16678-5','http://loinc.org','Coxiella burnetii IgM Ab [Units/volume] in Serum','166785','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.496_22211-7','22211-7','http://loinc.org','Coxiella burnetii Ab [Titer] in Serum','222117','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.496_23018-5','23018-5','http://loinc.org','Coxiella burnetii Ab [Presence] in Serum by Immunofluorescence','230185','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.496_23019-3','23019-3','http://loinc.org','Coxiella burnetii Ab [Presence] in Serum by Immunoassay','230193','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.496_23020-1','23020-1','http://loinc.org','Coxiella burnetii Ab [Presence] in Serum','230201','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.496_25335-1','25335-1','http://loinc.org','Coxiella burnetii IgG Ab [Titer] in Serum','253351','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.496_25336-9','25336-9','http://loinc.org','Coxiella burnetii IgM Ab [Titer] in Serum','253369','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.496_25384-9','25384-9','http://loinc.org','Coxiella burnetii IgG Ab [Titer] in Serum by Immunofluorescence','253849','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.496_25385-6','25385-6','http://loinc.org','Coxiella burnetii IgM Ab [Titer] in Serum by Immunofluorescence','253856','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.496_27945-5','27945-5','http://loinc.org','Coxiella burnetii phase 2 Ab [Titer] in Serum by Immunofluorescence','279455','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.496_27951-3','27951-3','http://loinc.org','Coxiella burnetii phase 1 Ab [Titer] in Serum by Immunofluorescence','279513','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.496_29773-9','29773-9','http://loinc.org','Coxiella burnetii phase 2 IgM Ab [Presence] in Serum by Immunoassay','297739','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.496_29777-0','29777-0','http://loinc.org','Coxiella burnetii phase 2 IgG Ab [Presence] in Serum by Immunoassay','297770','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.496_30212-5','30212-5','http://loinc.org','Coxiella burnetii IgG Ab [Presence] in Serum','302125','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.496_30213-3','30213-3','http://loinc.org','Coxiella burnetii IgM Ab [Presence] in Serum','302133','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.496_31311-4','31311-4','http://loinc.org','Coxiella burnetii phase 1 Ab [Units/volume] in Serum','313114','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.496_31313-0','31313-0','http://loinc.org','Coxiella burnetii phase 2 Ab [Units/volume] in Serum','313130','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.496_31314-8','31314-8','http://loinc.org','Coxiella burnetii phase 2 IgG Ab [Presence] in Serum','313148','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.496_31315-5','31315-5','http://loinc.org','Coxiella burnetii phase 2 IgM Ab [Presence] in Serum','313155','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.496_32566-2','32566-2','http://loinc.org','Coxiella burnetii Ab [Titer] in Cerebral spinal fluid','325662','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.496_32644-7','32644-7','http://loinc.org','Coxiella burnetii phase 1 IgG Ab [Presence] in Serum','326447','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.496_32645-4','32645-4','http://loinc.org','Coxiella burnetii phase 1 IgM Ab [Presence] in Serum','326454','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.496_38389-3','38389-3','http://loinc.org','Coxiella burnetii phase 2 Ab [Titer] in Serum','383893','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.496_42897-9','42897-9','http://loinc.org','Coxiella burnetii phase 1 IgM Ab [Units/volume] in Serum by Immunofluorescence','428979','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.496_43050-4','43050-4','http://loinc.org','Coxiella burnetii phase 1 Ab [Titer] in Serum','430504','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.496_43928-1','43928-1','http://loinc.org','Coxiella burnetii phase 2 IgM Ab [Presence] in Serum by Immunofluorescence','439281','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.496_44814-2','44814-2','http://loinc.org','Coxiella burnetii phase 2 IgM Ab [Titer] in Serum by Immunofluorescence','448142','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.496_47075-7','47075-7','http://loinc.org','Coxiella burnetii phase 1 IgM Ab [Titer] in Serum by Immunofluorescence','470757','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.496_48719-9','48719-9','http://loinc.org','Coxiella burnetii phase 2 IgG Ab [Presence] in Serum by Immunofluorescence','487199','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.496_48720-7','48720-7','http://loinc.org','Coxiella burnetii phase 1 IgG Ab [Presence] in Serum by Immunofluorescence','487207','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.496_48890-8','48890-8','http://loinc.org','Coxiella burnetii phase 1 IgM Ab [Titer] in Body fluid by Immunofluorescence','488908','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.496_48892-4','48892-4','http://loinc.org','Coxiella burnetii phase 2 IgM Ab [Titer] in Body fluid by Immunofluorescence','488924','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.496_49182-9','49182-9','http://loinc.org','Coxiella burnetii phase 2 IgM Ab [Titer] in Body fluid','491829','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.496_49183-7','49183-7','http://loinc.org','Coxiella burnetii phase 2 IgG Ab [Titer] in Body fluid','491837','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.496_49185-2','49185-2','http://loinc.org','Coxiella burnetii phase 1 IgM Ab [Titer] in Body fluid','491852','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.496_49186-0','49186-0','http://loinc.org','Coxiella burnetii phase 1 IgG Ab [Titer] in Body fluid','491860','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.496_51810-0','51810-0','http://loinc.org','Coxiella burnetii phase 1 IgG Ab [Units/volume] in Serum by Immunoassay','518100','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.496_51811-8','51811-8','http://loinc.org','Coxiella burnetii phase 1 IgM Ab [Units/volume] in Serum by Immunoassay','518118','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.496_51812-6','51812-6','http://loinc.org','Coxiella burnetii phase 2 IgG Ab [Units/volume] in Serum by Immunoassay','518126','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.496_51813-4','51813-4','http://loinc.org','Coxiella burnetii phase 2 IgM Ab [Units/volume] in Serum by Immunoassay','518134','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.496_56915-2','56915-2','http://loinc.org','Coxiella burnetii IgG Ab [Presence] in Serum by Immunofluorescence','569152','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.496_56916-0','56916-0','http://loinc.org','Coxiella burnetii IgM Ab [Units/volume] in Serum by Immunofluorescence --2nd specimen','569160','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.496_56917-8','56917-8','http://loinc.org','Coxiella burnetii IgM Ab [Presence] in Serum by Immunofluorescence','569178','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.496_56918-6','56918-6','http://loinc.org','Coxiella burnetii IgM Ab [Titer] in Serum by Immunofluorescence --1st specimen','569186','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.496_56919-4','56919-4','http://loinc.org','Coxiella burnetii IgG Ab [Titer] in Serum by Immunofluorescence --2nd specimen','569194','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.496_56920-2','56920-2','http://loinc.org','Coxiella burnetii IgG Ab [Titer] in Serum by Immunofluorescence --1st specimen','569202','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.496_57673-6','57673-6','http://loinc.org','Coxiella burnetii IgM Ab [Presence] in Serum by Immunofluorescence --1st specimen','576736','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.496_57674-4','57674-4','http://loinc.org','Coxiella burnetii IgM Ab [Presence] in Serum by Immunofluorescence --2nd specimen','576744','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.496_57681-9','57681-9','http://loinc.org','Coxiella burnetii IgG Ab [Presence] in Serum by Immunofluorescence --1st specimen','576819','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.496_57682-7','57682-7','http://loinc.org','Coxiella burnetii IgG Ab [Presence] in Serum by Immunofluorescence --2nd specimen','576827','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.496_58762-6','58762-6','http://loinc.org','Coxiella burnetii phase 2 IgG Ab [Units/volume] in Cerebral spinal fluid by Immunoassay','587626','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.496_63455-0','63455-0','http://loinc.org','Coxiella burnetii phase 1 IgM Ab [Presence] in Serum by Immunofluorescence','634550','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.496_7828-7','7828-7','http://loinc.org','Coxiella burnetii Ab [Units/volume] in Serum','78287','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.496_7829-5','7829-5','http://loinc.org','Coxiella burnetii phase 1 IgG Ab [Units/volume] in Serum','78295','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.496_7830-3','7830-3','http://loinc.org','Coxiella burnetii phase 2 IgG Ab [Units/volume] in Serum','78303','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.496_7831-1','7831-1','http://loinc.org','Coxiella burnetii phase 1 IgM Ab [Units/volume] in Serum','78311','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.496_7832-9','7832-9','http://loinc.org','Coxiella burnetii phase 2 IgM Ab [Units/volume] in Serum','78329','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.496_9708-9','9708-9','http://loinc.org','Coxiella burnetii phase 1 IgG Ab [Titer] in Serum','97089','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.496_9709-7','9709-7','http://loinc.org','Coxiella burnetii phase 2 IgG Ab [Titer] in Serum','97097','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.496_9710-5','9710-5','http://loinc.org','Coxiella burnetii phase 1 IgM Ab [Titer] in Serum','97105','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.496_9711-3','9711-3','http://loinc.org','Coxiella burnetii phase 2 IgM Ab [Titer] in Serum','97113','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.376_41436-7','41436-7','http://loinc.org','Cyclospora cayetanensis DNA [Presence] in Specimen by NAA with probe detection','414367','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.376_82206-4','82206-4','http://loinc.org','Cyclospora cayetanensis DNA [Presence] in Stool by NAA with non-probe detection','822064','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.376_97321-4','97321-4','http://loinc.org','Cyclospora cayetanensis DNA [Presence] in Stool by NAA with probe detection','973214','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.376_10850-6','10850-6','http://loinc.org','Cyclospora cayetanensis [Presence] in Specimen','108506','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.497_34716-1','34716-1','http://loinc.org','Coxiella burnetii phase 1 IgG Ab [Titer] in Serum by Immunofluorescence','347161','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.497_48888-2','48888-2','http://loinc.org','Coxiella burnetii phase 1 IgG Ab [Titer] in Body fluid by Immunofluorescence','488882','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1179_10905-8','10905-8','http://loinc.org','La Crosse virus IgM Ab [Titer] in Serum by Immunofluorescence','109058','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1179_17039-9','17039-9','http://loinc.org','La Crosse virus IgM Ab [Titer] in Serum','170399','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1179_22375-0','22375-0','http://loinc.org','La Crosse virus IgM Ab [Titer] in Cerebral spinal fluid','223750','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1179_29786-1','29786-1','http://loinc.org','Jamestown canyon virus IgM Ab [Units/volume] in Specimen by Immunofluorescence','297861','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1179_29787-9','29787-9','http://loinc.org','Jamestown canyon virus IgM Ab [Presence] in Specimen by Immunofluorescence','297879','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1179_29790-3','29790-3','http://loinc.org','La Crosse virus IgM Ab [Presence] in Specimen by Immunofluorescence','297903','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1179_29799-4','29799-4','http://loinc.org','Jamestown canyon virus IgM Ab [Units/volume] in Cerebral spinal fluid by Immunofluorescence','297994','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1179_29800-0','29800-0','http://loinc.org','Jamestown canyon virus IgM Ab [Presence] in Cerebral spinal fluid by Immunofluorescence','298000','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1179_29803-4','29803-4','http://loinc.org','La Crosse virus IgM Ab [Presence] in Cerebral spinal fluid by Immunofluorescence','298034','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1179_29812-5','29812-5','http://loinc.org','Jamestown canyon virus IgM Ab [Units/volume] in Serum by Immunofluorescence','298125','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1179_29813-3','29813-3','http://loinc.org','Jamestown canyon virus IgM Ab [Presence] in Serum by Immunofluorescence','298133','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1179_29816-6','29816-6','http://loinc.org','La Crosse virus IgM Ab [Presence] in Serum by Immunofluorescence','298166','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1179_29825-7','29825-7','http://loinc.org','Jamestown canyon virus IgM Ab [Units/volume] in Specimen','298257','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1179_29826-5','29826-5','http://loinc.org','Jamestown canyon virus IgM Ab [Presence] in Specimen','298265','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1179_29829-9','29829-9','http://loinc.org','La Crosse virus IgM Ab [Presence] in Specimen','298299','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1179_29837-2','29837-2','http://loinc.org','Jamestown canyon virus IgM Ab [Units/volume] in Cerebral spinal fluid','298372','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1179_29838-0','29838-0','http://loinc.org','Jamestown canyon virus IgM Ab [Presence] in Cerebral spinal fluid','298380','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1179_29841-4','29841-4','http://loinc.org','La Crosse virus IgM Ab [Presence] in Cerebral spinal fluid','298414','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1179_29849-7','29849-7','http://loinc.org','Jamestown canyon virus IgM Ab [Units/volume] in Serum','298497','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1179_29850-5','29850-5','http://loinc.org','Jamestown canyon virus IgM Ab [Presence] in Serum','298505','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1179_29853-9','29853-9','http://loinc.org','La Crosse virus IgM Ab [Presence] in Serum','298539','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1179_31451-8','31451-8','http://loinc.org','La Crosse virus IgM Ab [Units/volume] in Cerebral spinal fluid','314518','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1179_40508-4','40508-4','http://loinc.org','Jamestown canyon virus IgM Ab [Titer] in Serum by Neutralization test','405084','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1179_40509-2','40509-2','http://loinc.org','Snowshoe hare virus IgM Ab [Titer] in Serum by Neutralization test','405092','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1179_42953-0','42953-0','http://loinc.org','Snowshoe hare virus IgM Ab [Titer] in Serum','429530','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1179_43003-3','43003-3','http://loinc.org','Jamestown canyon virus IgM Ab [Titer] in Serum','430033','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1179_44822-5','44822-5','http://loinc.org','La Crosse virus IgM Ab [Titer] in Serum by Immunoassay','448225','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1179_52824-0','52824-0','http://loinc.org','La Crosse virus IgM Ab [Presence] in Serum by Immunoassay','528240','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1179_52825-7','52825-7','http://loinc.org','La Crosse virus IgM Ab [Presence] in Cerebral spinal fluid by Immunoassay','528257','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1179_55379-2','55379-2','http://loinc.org','Snowshoe hare virus IgM Ab [Presence] in Serum by Immunoassay','553792','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1179_62432-0','62432-0','http://loinc.org','La Crosse virus IgM Ab [Presence] in Body fluid by Immunoassay','624320','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1179_62946-9','62946-9','http://loinc.org','Jamestown canyon virus IgM Ab [Titer] in Body fluid by Immunofluorescence','629469','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1179_74846-7','74846-7','http://loinc.org','Snowshoe hare virus IgM Ab [Presence] in Serum by Immunofluorescence','748467','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1179_7941-8','7941-8','http://loinc.org','La Crosse virus IgM Ab [Units/volume] in Serum','79418','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1179_9540-6','9540-6','http://loinc.org','La Crosse virus IgM Ab [Titer] in Cerebral spinal fluid by Immunofluorescence','95406','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1179_95680-5','95680-5','http://loinc.org','Snowshoe hare virus IgM Ab [Presence] in Specimen by Immunoassay','956805','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1179_35695-6','35695-6','http://loinc.org','California encephalitis virus IgM Ab [Titer] in Serum','356956','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1179_49139-9','49139-9','http://loinc.org','California encephalitis virus IgM Ab [Titer] in Cerebral spinal fluid by Immunofluorescence','491399','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1179_49141-5','49141-5','http://loinc.org','California encephalitis virus IgM Ab [Titer] in Serum by Immunofluorescence','491415','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1179_49193-6','49193-6','http://loinc.org','California encephalitis virus IgM Ab [Titer] in Cerebral spinal fluid','491936','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1179_96537-6','96537-6','http://loinc.org','California encephalitis virus IgM Ab [Presence] in Specimen by Immunoassay','965376','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.498_34717-9','34717-9','http://loinc.org','Coxiella burnetii phase 2 IgG Ab [Titer] in Serum by Immunofluorescence','347179','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.498_48893-2','48893-2','http://loinc.org','Coxiella burnetii phase 2 IgG Ab [Titer] in Body fluid by Immunofluorescence','488932','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.498_58761-8','58761-8','http://loinc.org','Coxiella burnetii phase 2 IgG Ab [Titer] in Cerebral spinal fluid by Immunofluorescence','587618','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1178_22615-9','22615-9','http://loinc.org','Western equine encephalitis virus IgM Ab [Titer] in Cerebral spinal fluid','226159','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1178_22616-7','22616-7','http://loinc.org','Western equine encephalitis virus IgM Ab [Titer] in Serum','226167','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1178_23587-9','23587-9','http://loinc.org','Western equine encephalitis virus IgM Ab [Presence] in Serum','235879','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1178_23588-7','23588-7','http://loinc.org','Western equine encephalitis virus IgM Ab [Presence] in Serum by Immunoassay','235887','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1178_34956-3','34956-3','http://loinc.org','Western equine encephalitis virus IgM Ab [Units/volume] in Cerebral spinal fluid','349563','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1178_41259-3','41259-3','http://loinc.org','Western equine encephalitis virus IgM Ab [Presence] in Cerebral spinal fluid','412593','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1178_6958-3','6958-3','http://loinc.org','Western equine encephalitis virus IgM Ab [Titer] in Serum by Immunofluorescence','69583','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1178_8053-1','8053-1','http://loinc.org','Western equine encephalitis virus IgM Ab [Units/volume] in Serum','80531','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1178_9316-1','9316-1','http://loinc.org','Western equine encephalitis virus IgM Ab [Titer] in Cerebral spinal fluid by Immunofluorescence','93161','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1178_95693-8','95693-8','http://loinc.org','Western equine encephalitis virus IgM Ab [Presence] in Specimen by Immunoassay','956938','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.379_100864-8','100864-8','http://loinc.org','Giardia lamblia bg gene [Genotype] in Specimen by Molecular genetics method','1008648','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.379_100871-3','100871-3','http://loinc.org','Giardia lamblia gdh gene [Genotype] in Specimen by Molecular genetics method','1008713','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.379_100873-9','100873-9','http://loinc.org','Giardia lamblia tpi gene [Genotype] in Specimen by Molecular genetics method','1008739','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.379_60544-4','60544-4','http://loinc.org','Giardia lamblia DNA [Presence] in Specimen by NAA with probe detection','605444','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.379_80683-6','80683-6','http://loinc.org','Giardia lamblia 18S rRNA [Presence] in Stool by NAA with probe detection','806836','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.379_82208-0','82208-0','http://loinc.org','Giardia lamblia DNA [Presence] in Stool by NAA with non-probe detection','822080','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.379_90299-9','90299-9','http://loinc.org','Giardia sp DNA [Presence] in Stool by NAA with probe detection','902999','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.379_91767-4','91767-4','http://loinc.org','Giardia sp DNA [Presence] in Duodenal fluid by NAA with probe detection','917674','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.379_91836-7','91836-7','http://loinc.org','Giardia sp DNA [Presence] in Lower respiratory specimen by NAA with probe detection','918367','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.379_92687-3','92687-3','http://loinc.org','Giardia lamblia DNA [Presence] in Stool by NAA with probe detection','926873','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1175_56130-8','56130-8','http://loinc.org','Chikungunya virus IgM Ab [Titer] in Serum or Plasma by Immunofluorescence','561308','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1175_83067-9','83067-9','http://loinc.org','Chikungunya virus structural proteins (E1+E2) IgM Ab [Units/volume] in Serum or Plasma by Immunoassay','830679','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1175_97867-6','97867-6','http://loinc.org','Chikungunya virus IgM Ab [Units/volume] in Serum or Plasma by Immunoassay','978676','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1175_56131-6','56131-6','http://loinc.org','Chikungunya virus IgM Ab [Presence] in Serum or Plasma by Immunofluorescence','561316','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1175_57934-2','57934-2','http://loinc.org','Chikungunya virus IgM Ab [Presence] in Serum or Plasma','579342','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1175_88629-1','88629-1','http://loinc.org','Chikungunya virus IgM Ab [Presence] in Serum or Plasma by Immunoassay','886291','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1175_95687-0','95687-0','http://loinc.org','Chikungunya virus IgM Ab [Presence] in Specimen by Immunoassay','956870','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1174_31987-1','31987-1','http://loinc.org','Western equine encephalitis virus Ag [Presence] in Serum','319871','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1174_6585-4','6585-4','http://loinc.org','Western equine encephalitis virus Ag [Presence] in Serum by Immunoassay','65854','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1174_6586-2','6586-2','http://loinc.org','Western equine encephalitis virus Ag [Presence] in Serum by Immunofluorescence','65862','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1174_23589-5','23589-5','http://loinc.org','Western equine encephalitis virus Ag [Presence] in Specimen by Neutralization test','235895','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1174_23590-3','23590-3','http://loinc.org','Western equine encephalitis virus Ag [Presence] in Specimen by Immunofluorescence','235903','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1174_23591-1','23591-1','http://loinc.org','Western equine encephalitis virus Ag [Presence] in Specimen by Complement fixation','235911','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1174_31988-9','31988-9','http://loinc.org','Western equine encephalitis virus Ag [Presence] in Specimen','319889','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1177_29792-9','29792-9','http://loinc.org','Powassan virus IgM Ab [Presence] in Specimen by Immunofluorescence','297929','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1177_29805-9','29805-9','http://loinc.org','Powassan virus IgM Ab [Presence] in Cerebral spinal fluid by Immunofluorescence','298059','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1177_29818-2','29818-2','http://loinc.org','Powassan virus IgM Ab [Presence] in Serum by Immunofluorescence','298182','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1177_29831-5','29831-5','http://loinc.org','Powassan virus IgM Ab [Presence] in Specimen','298315','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1177_29843-0','29843-0','http://loinc.org','Powassan virus IgM Ab [Presence] in Cerebral spinal fluid','298430','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1177_29855-4','29855-4','http://loinc.org','Powassan virus IgM Ab [Presence] in Serum','298554','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1177_29565-9','29565-9','http://loinc.org','Powassan virus IgM Ab [Titer] in Serum by Immunofluorescence','295659','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1177_30179-6','30179-6','http://loinc.org','Powassan virus IgM Ab [Titer] in Specimen by Immunofluorescence','301796','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1177_31575-4','31575-4','http://loinc.org','Powassan virus IgM Ab [Units/volume] in Serum','315754','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1177_31576-2','31576-2','http://loinc.org','Powassan virus IgM Ab [Units/volume] in Specimen','315762','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1177_42971-2','42971-2','http://loinc.org','Powassan virus IgM Ab [Titer] in Specimen','429712','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1177_42972-0','42972-0','http://loinc.org','Powassan virus IgM Ab [Titer] in Serum','429720','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1055_87985-8','87985-8','http://loinc.org','Trichinella spiralis DNA [Presence] in Tissue by NAA with probe detection','879858','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1176_10898-5','10898-5','http://loinc.org','Eastern equine encephalitis virus IgM Ab [Titer] in Serum by Immunofluorescence','108985','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1176_10899-3','10899-3','http://loinc.org','Eastern equine encephalitis virus IgM Ab [Titer] in Cerebral spinal fluid by Immunofluorescence','108993','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1176_13229-0','13229-0','http://loinc.org','Eastern equine encephalitis virus IgM Ab [Units/volume] in Cerebral spinal fluid','132290','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1176_22260-4','22260-4','http://loinc.org','Eastern equine encephalitis virus IgM Ab [Titer] in Cerebral spinal fluid','222604','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1176_22261-2','22261-2','http://loinc.org','Eastern equine encephalitis virus IgM Ab [Titer] in Serum','222612','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1176_38763-9','38763-9','http://loinc.org','Eastern equine encephalitis virus IgM Ab [Units/volume] in Specimen','387639','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1176_43330-0','43330-0','http://loinc.org','Eastern equine encephalitis virus IgM Ab [Titer] in Serum by Immunoassay','433300','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1176_7861-8','7861-8','http://loinc.org','Eastern equine encephalitis virus IgM Ab [Units/volume] in Serum','78618','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1176_23045-8','23045-8','http://loinc.org','Eastern equine encephalitis virus IgM Ab [Presence] in Serum by Immunoassay','230458','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1176_23046-6','23046-6','http://loinc.org','Eastern equine encephalitis virus IgM Ab [Presence] in Serum','230466','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1176_42004-2','42004-2','http://loinc.org','Eastern equine encephalitis virus IgM Ab [Presence] in Cerebral spinal fluid by Immunoassay','420042','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1176_43044-7','43044-7','http://loinc.org','Eastern equine encephalitis virus IgM Ab [Presence] in Cerebral spinal fluid','430447','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1176_43096-7','43096-7','http://loinc.org','Eastern equine encephalitis virus IgM Ab [Presence] in Specimen','430967','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1176_62429-6','62429-6','http://loinc.org','Eastern equine encephalitis virus IgM Ab [Presence] in Body fluid by Immunofluorescence','624296','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1176_62430-4','62430-4','http://loinc.org','Eastern equine encephalitis virus IgM Ab [Presence] in Body fluid by Immunoassay','624304','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1176_95660-7','95660-7','http://loinc.org','Eastern equine encephalitis virus IgM Ab [Presence] in Specimen by Immunoassay','956607','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1747_17547-1','17547-1','http://loinc.org','Rotavirus Ag [Presence] in Stool','175471','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1747_5879-2','5879-2','http://loinc.org','Rotavirus Ag [Presence] in Stool by Agglutination','58792','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1747_5880-0','5880-0','http://loinc.org','Rotavirus Ag [Presence] in Stool by Immunoassay','58800','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1747_72174-6','72174-6','http://loinc.org','Rotavirus Ag [Presence] in Stool by Rapid immunoassay','721746','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1747_86199-7','86199-7','http://loinc.org','Rotavirus A Ag [Presence] in Tissue by Immune stain','861997','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1868_5374-4','5374-4','http://loinc.org','Taenia saginata Ab [Units/volume] in Serum by Immunoassay','53744','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1868_8036-6','8036-6','http://loinc.org','Taenia saginata Ab [Units/volume] in Serum','80366','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1868_100089-2','100089-2','http://loinc.org','Taenia solium larva 6-8kD Ab [Presence] in Serum by Immunoblot','1000892','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1868_100090-0','100090-0','http://loinc.org','Taenia solium larva 45kD Ab [Presence] in Serum by Immunoblot','1000900','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1868_10719-3','10719-3','http://loinc.org','Taenia solium adult Ab [Units/volume] in Serum by Immunoblot','107193','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1868_16706-4','16706-4','http://loinc.org','Taenia solium larva IgM Ab [Units/volume] in Cerebral spinal fluid','167064','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1868_16707-2','16707-2','http://loinc.org','Taenia solium larva IgM Ab [Units/volume] in Serum','167072','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1868_16708-0','16708-0','http://loinc.org','Taenia solium larva Ab [Units/volume] in Cerebral spinal fluid','167080','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1868_22238-0','22238-0','http://loinc.org','Taenia solium larva Ab [Presence] in Serum','222380','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1868_25337-7','25337-7','http://loinc.org','Taenia solium larva IgG Ab [Units/volume] in Serum','253377','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1868_25389-8','25389-8','http://loinc.org','Taenia solium larva IgG Ab [Units/volume] in Serum by Immunoassay','253898','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1868_35349-0','35349-0','http://loinc.org','Taenia solium larva Ab [Presence] in Cerebral spinal fluid by Immunoblot','353490','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1868_35391-2','35391-2','http://loinc.org','Taenia solium larva IgG Ab [Units/volume] in Cerebral spinal fluid','353912','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1868_41462-3','41462-3','http://loinc.org','Taenia solium larva Ab [Presence] in Specimen by Immunoblot','414623','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1868_44804-3','44804-3','http://loinc.org','Taenia solium IgG Ab [Units/volume] in Serum by Immunoblot','448043','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1868_49798-2','49798-2','http://loinc.org','Taenia solium larva Ab [Units/volume] in Cerebral spinal fluid by Immunoassay','497982','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1868_5120-1','5120-1','http://loinc.org','Taenia solium larva Ab [Units/volume] in Serum by Hemagglutination','51201','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1868_5375-1','5375-1','http://loinc.org','Taenia solium adult Ab [Units/volume] in Serum by Immunoassay','53751','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1868_56480-7','56480-7','http://loinc.org','Taenia solium larva Ab [Presence] in Cerebral spinal fluid by Immunoassay','564807','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1868_56485-6','56485-6','http://loinc.org','Taenia solium IgG Ab [Presence] in Serum by Immunoassay','564856','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1868_56486-4','56486-4','http://loinc.org','Taenia solium IgG Ab [Units/volume] in Serum by Immunoassay','564864','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1868_56665-3','56665-3','http://loinc.org','Taenia solium IgG Ab [Titer] in Serum by Immunofluorescence','566653','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1868_56984-8','56984-8','http://loinc.org','Taenia solium larva Ab [Presence] in Serum by Immunoassay','569848','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1868_57455-8','57455-8','http://loinc.org','Taenia solium IgG Ab [Units/volume] in Serum','574558','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1868_58455-7','58455-7','http://loinc.org','Taenia solium Ab [Presence] in Cerebral spinal fluid by Immunoassay','584557','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1868_6373-5','6373-5','http://loinc.org','Taenia solium larva IgG Ab [Presence] in Cerebral spinal fluid by Immunoblot','63735','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1868_6374-3','6374-3','http://loinc.org','Taenia solium larva IgG Ab [Presence] in Serum by Immunoblot','63743','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1868_7844-4','7844-4','http://loinc.org','Taenia solium larva IgA Ab [Presence] in Cerebral spinal fluid','78444','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1868_7845-1','7845-1','http://loinc.org','Taenia solium larva IgA Ab [Presence] in Serum','78451','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1868_7846-9','7846-9','http://loinc.org','Taenia solium larva IgG Ab [Presence] in Cerebral spinal fluid','78469','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1868_7847-7','7847-7','http://loinc.org','Taenia solium larva IgG Ab [Presence] in Serum','78477','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1868_7848-5','7848-5','http://loinc.org','Taenia solium larva IgM Ab [Presence] in Cerebral spinal fluid','78485','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1868_7849-3','7849-3','http://loinc.org','Taenia solium larva IgM Ab [Presence] in Serum','78493','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1868_7850-1','7850-1','http://loinc.org','Taenia solium larva Ab [Units/volume] in Serum','78501','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1868_8037-4','8037-4','http://loinc.org','Taenia solium adult Ab [Units/volume] in Serum','80374','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1868_88919-6','88919-6','http://loinc.org','Taenia solium larva IgG Ab [Presence] in Cerebral spinal fluid by Immunoassay','889196','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1868_9600-8','9600-8','http://loinc.org','Taenia solium larva Ab [Presence] in Serum by Immunoblot','96008','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1868_9601-6','9601-6','http://loinc.org','Taenia solium larva 13kD Ab [Presence] in Serum by Immunoblot','96016','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1868_9602-4','9602-4','http://loinc.org','Taenia solium larva 14kD Ab [Presence] in Serum by Immunoblot','96024','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1868_9603-2','9603-2','http://loinc.org','Taenia solium larva 18kD Ab [Presence] in Serum by Immunoblot','96032','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1868_9604-0','9604-0','http://loinc.org','Taenia solium larva 21kD Ab [Presence] in Serum by Immunoblot','96040','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1868_9605-7','9605-7','http://loinc.org','Taenia solium larva 24kD Ab [Presence] in Serum by Immunoblot','96057','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1868_9606-5','9606-5','http://loinc.org','Taenia solium larva 39-42kD Ab [Presence] in Serum by Immunoblot','96065','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1868_9607-3','9607-3','http://loinc.org','Taenia solium larva 50kD Ab [Presence] in Serum by Immunoblot','96073','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1867_23450-0','23450-0','http://loinc.org','Taenia sp Ag [Presence] in Stool by Immunoassay','234500','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1867_31975-6','31975-6','http://loinc.org','Taenia sp Ag [Presence] in Stool','319756','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1867_48804-9','48804-9','http://loinc.org','Taenia solium Ag [Presence] in Stool','488049','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1867_53602-9','53602-9','http://loinc.org','Taenia solium larva Ag [Units/volume] in Serum','536029','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1867_88920-4','88920-4','http://loinc.org','Taenia solium larva Ag [Presence] in Serum by Immunoassay','889204','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1746_101560-1','101560-1','http://loinc.org','Rotavirus B RNA [Presence] in Stool by NAA with probe detection','1015601','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1746_101561-9','101561-9','http://loinc.org','Rotavirus C RNA [Presence] in Stool by NAA with probe detection','1015619','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1746_17548-9','17548-9','http://loinc.org','Rotavirus RNA [Presence] in Specimen by Probe','175489','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1746_60273-0','60273-0','http://loinc.org','Rotavirus RNA [Presence] in Isolate by NAA with probe detection','602730','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1746_62859-4','62859-4','http://loinc.org','Rotavirus RNA [Presence] in Specimen by NAA with probe detection','628594','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1746_71700-9','71700-9','http://loinc.org','Rotavirus RNA [Identifier] in Stool by NAA with probe detection','717009','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1746_71759-5','71759-5','http://loinc.org','Rotavirus RNA [Identifier] in Isolate by NAA with probe detection','717595','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1746_71760-3','71760-3','http://loinc.org','Rotavirus identified in Stool by Sequencing','717603','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1746_71761-1','71761-1','http://loinc.org','Rotavirus identified in Isolate by Sequencing','717611','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1746_79389-3','79389-3','http://loinc.org','Rotavirus A nsp5 gene [Presence] in Stool by NAA with probe detection','793893','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1746_8012-7','8012-7','http://loinc.org','Rotavirus dsRNA [Presence] in Stool by NAA with probe detection','80127','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1746_80675-2','80675-2','http://loinc.org','Rotavirus A VP6 gene [Presence] in Stool by NAA with probe detection','806752','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1746_82212-2','82212-2','http://loinc.org','Rotavirus A RNA [Presence] in Stool by NAA with non-probe detection','822122','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1746_86688-9','86688-9','http://loinc.org','Rotavirus C [Presence] in Specimen by Organism specific culture','866889','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1746_86690-5','86690-5','http://loinc.org','Rotavirus C RNA [Presence] in Specimen by NAA with probe detection','866905','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1746_86691-3','86691-3','http://loinc.org','Rotavirus B RNA [Presence] in Specimen by NAA with probe detection','866913','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1746_86692-1','86692-1','http://loinc.org','Rotavirus A RNA [Presence] in Specimen by NAA with probe detection','866921','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1746_86696-2','86696-2','http://loinc.org','Rotavirus B RNA [Nucleotide sequence] in Isolate by Sequencing','866962','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1746_86697-0','86697-0','http://loinc.org','Rotavirus A RNA [Nucleotide sequence] in Isolate by Sequencing','866970','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1746_86699-6','86699-6','http://loinc.org','Rotavirus C RNA [Nucleotide sequence] in Isolate by Sequencing','866996','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1746_86700-2','86700-2','http://loinc.org','Rotavirus C RNA [Cycle Threshold #] in Specimen by NAA with probe detection','867002','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1746_86701-0','86701-0','http://loinc.org','Rotavirus A RNA [Cycle Threshold #] in Specimen by NAA with probe detection','867010','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1746_86702-8','86702-8','http://loinc.org','Rotavirus B RNA [Cycle Threshold #] in Specimen by NAA with probe detection','867028','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1746_87710-0','87710-0','http://loinc.org','Rotavirus C VP7 gene [Nucleotide sequence] in Isolate by Sequencing','877100','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1746_87711-8','87711-8','http://loinc.org','Rotavirus B VP7 gene [Nucleotide sequence] in Isolate by Sequencing','877118','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1746_87712-6','87712-6','http://loinc.org','Rotavirus A VP7 gene [Nucleotide sequence] in Isolate by Sequencing','877126','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1746_87713-4','87713-4','http://loinc.org','Rotavirus A VP4 gene [Nucleotide sequence] in Isolate by Sequencing','877134','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1746_92693-1','92693-1','http://loinc.org','Rotavirus A RNA [Presence] in Stool by NAA with probe detection','926931','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1985_35694-9','35694-9','http://loinc.org','California encephalitis virus IgG Ab [Titer] in Serum','356949','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1985_35696-4','35696-4','http://loinc.org','California encephalitis virus Ab [Titer] in Cerebral spinal fluid','356964','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1985_43132-0','43132-0','http://loinc.org','California encephalitis virus Ab [Units/volume] in Serum Qualitative','431320','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1985_43931-5','43931-5','http://loinc.org','California encephalitis virus Ab [Titer] in Serum','439315','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1985_49138-1','49138-1','http://loinc.org','California encephalitis virus IgG Ab [Titer] in Cerebral spinal fluid by Immunofluorescence','491381','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1985_49140-7','49140-7','http://loinc.org','California encephalitis virus IgG Ab [Titer] in Serum by Immunofluorescence','491407','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1985_49194-4','49194-4','http://loinc.org','California encephalitis virus IgG Ab [Titer] in Cerebral spinal fluid','491944','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1985_49195-1','49195-1','http://loinc.org','California encephalitis virus IgG Ab [Units/volume] in Serum','491951','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1985_88456-9','88456-9','http://loinc.org','California encephalitis virus IgG+IgM Ab [Interpretation] in Serum Qualitative by Immunofluorescence','884569','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1985_95638-3','95638-3','http://loinc.org','California encephalitis virus neutralizing antibody [Titer] in Specimen by Neutralization test','956383','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1985_96507-9','96507-9','http://loinc.org','California encephalitis virus IgG Ab [Presence] in Specimen by Immunoassay','965079','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1985_35695-6','35695-6','http://loinc.org','California encephalitis virus IgM Ab [Titer] in Serum','356956','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1985_49139-9','49139-9','http://loinc.org','California encephalitis virus IgM Ab [Titer] in Cerebral spinal fluid by Immunofluorescence','491399','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1985_49141-5','49141-5','http://loinc.org','California encephalitis virus IgM Ab [Titer] in Serum by Immunofluorescence','491415','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1985_49193-6','49193-6','http://loinc.org','California encephalitis virus IgM Ab [Titer] in Cerebral spinal fluid','491936','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1985_96537-6','96537-6','http://loinc.org','California encephalitis virus IgM Ab [Presence] in Specimen by Immunoassay','965376','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1509_80141-5','80141-5','http://loinc.org','Arsenic [Moles/volume] in Body fluid','801415','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1509_87481-8','87481-8','http://loinc.org','Arsenic [Mass/volume] in Specimen','874818','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1509_9366-6','9366-6','http://loinc.org','Arsenic [Mass/mass] in Specimen','93666','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1509_9489-6','9489-6','http://loinc.org','Arsenic [Mass/volume] in Body fluid','94896','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1983_34463-0','34463-0','http://loinc.org','California serogroup RNA [Presence] in Blood by NAA with probe detection','344630','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1983_37986-7','37986-7','http://loinc.org','California serogroup RNA [Presence] in Specimen by Probe','379867','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1983_55143-2','55143-2','http://loinc.org','California serogroup RNA [Presence] in Specimen by NAA with probe detection','551432','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1983_97922-9','97922-9','http://loinc.org','California encephalitis virus RNA [Presence] in Specimen by NAA with probe detection','979229','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1983_34462-2','34462-2','http://loinc.org','California serogroup RNA [Presence] in Cerebral spinal fluid by NAA with probe detection','344622','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1984_35695-6','35695-6','http://loinc.org','California encephalitis virus IgM Ab [Titer] in Serum','356956','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1984_49139-9','49139-9','http://loinc.org','California encephalitis virus IgM Ab [Titer] in Cerebral spinal fluid by Immunofluorescence','491399','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1984_49141-5','49141-5','http://loinc.org','California encephalitis virus IgM Ab [Titer] in Serum by Immunofluorescence','491415','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1984_49193-6','49193-6','http://loinc.org','California encephalitis virus IgM Ab [Titer] in Cerebral spinal fluid','491936','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1984_96537-6','96537-6','http://loinc.org','California encephalitis virus IgM Ab [Presence] in Specimen by Immunoassay','965376','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1860_88915-4','88915-4','http://loinc.org','Filaria DNA [Presence] in Tissue by NAA with probe detection','889154','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1860_88918-8','88918-8','http://loinc.org','Filaria DNA [Presence] in Blood by NAA with probe detection','889188','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1639_48871-8','48871-8','http://loinc.org','Rickettsia typhus group DNA [Presence] in Specimen by NAA with probe detection','488718','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1639_49128-2','49128-2','http://loinc.org','Rickettsia typhus group identified in Specimen by Sequencing','491282','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1639_60272-2','60272-2','http://loinc.org','Rickettsia typhus group DNA [Presence] in Serum or Plasma by NAA with probe detection','602722','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1877_59388-9','59388-9','http://loinc.org','Taenia solium larva DNA [Presence] in Cerebral spinal fluid by NAA with probe detection','593889','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1877_88911-3','88911-3','http://loinc.org','Taenia solium larva DNA [Presence] in Tissue by NAA with probe detection','889113','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1877_88912-1','88912-1','http://loinc.org','Taenia solium larva DNA [Presence] in Blood by NAA with probe detection','889121','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1757_51764-9','51764-9','http://loinc.org','Trypanosoma cruzi IgG and IgM [Interpretation] in Serum or Plasma','517649','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1757_13290-2','13290-2','http://loinc.org','Trypanosoma cruzi IgM Ab [Units/volume] in Serum','132902','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1757_15397-3','15397-3','http://loinc.org','Trypanosoma cruzi IgM Ab [Titer] in Serum','153973','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1757_26989-4','26989-4','http://loinc.org','Trypanosoma cruzi IgM Ab [Presence] in Serum by Immunofluorescence','269894','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1757_30105-1','30105-1','http://loinc.org','Trypanosoma cruzi IgM Ab [Titer] in Specimen','301051','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1757_32726-2','32726-2','http://loinc.org','Trypanosoma cruzi IgM Ab [Presence] in Serum','327262','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1757_51827-4','51827-4','http://loinc.org','Trypanosoma cruzi IgM Ab [Units/volume] in Serum by Immunoassay','518274','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1757_87997-3','87997-3','http://loinc.org','Trypanosoma cruzi IgM Ab [Presence] in Serum by Immunoassay','879973','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1875_24039-0','24039-0','http://loinc.org','Taenia solium larva IgG band pattern [Interpretation] in Serum by Immunoblot','240390','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1875_24040-8','24040-8','http://loinc.org','Taenia solium larva IgG band pattern [Interpretation] in Cerebral spinal fluid by Immunoblot','240408','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1875_100089-2','100089-2','http://loinc.org','Taenia solium larva 6-8kD Ab [Presence] in Serum by Immunoblot','1000892','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1875_100090-0','100090-0','http://loinc.org','Taenia solium larva 45kD Ab [Presence] in Serum by Immunoblot','1000900','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1875_10719-3','10719-3','http://loinc.org','Taenia solium adult Ab [Units/volume] in Serum by Immunoblot','107193','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1875_16706-4','16706-4','http://loinc.org','Taenia solium larva IgM Ab [Units/volume] in Cerebral spinal fluid','167064','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1875_16707-2','16707-2','http://loinc.org','Taenia solium larva IgM Ab [Units/volume] in Serum','167072','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1875_16708-0','16708-0','http://loinc.org','Taenia solium larva Ab [Units/volume] in Cerebral spinal fluid','167080','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1875_22238-0','22238-0','http://loinc.org','Taenia solium larva Ab [Presence] in Serum','222380','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1875_25337-7','25337-7','http://loinc.org','Taenia solium larva IgG Ab [Units/volume] in Serum','253377','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1875_25389-8','25389-8','http://loinc.org','Taenia solium larva IgG Ab [Units/volume] in Serum by Immunoassay','253898','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1875_35349-0','35349-0','http://loinc.org','Taenia solium larva Ab [Presence] in Cerebral spinal fluid by Immunoblot','353490','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1875_35391-2','35391-2','http://loinc.org','Taenia solium larva IgG Ab [Units/volume] in Cerebral spinal fluid','353912','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1875_41462-3','41462-3','http://loinc.org','Taenia solium larva Ab [Presence] in Specimen by Immunoblot','414623','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1875_44804-3','44804-3','http://loinc.org','Taenia solium IgG Ab [Units/volume] in Serum by Immunoblot','448043','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1875_49798-2','49798-2','http://loinc.org','Taenia solium larva Ab [Units/volume] in Cerebral spinal fluid by Immunoassay','497982','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1875_5120-1','5120-1','http://loinc.org','Taenia solium larva Ab [Units/volume] in Serum by Hemagglutination','51201','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1875_5375-1','5375-1','http://loinc.org','Taenia solium adult Ab [Units/volume] in Serum by Immunoassay','53751','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1875_56480-7','56480-7','http://loinc.org','Taenia solium larva Ab [Presence] in Cerebral spinal fluid by Immunoassay','564807','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1875_56485-6','56485-6','http://loinc.org','Taenia solium IgG Ab [Presence] in Serum by Immunoassay','564856','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1875_56486-4','56486-4','http://loinc.org','Taenia solium IgG Ab [Units/volume] in Serum by Immunoassay','564864','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1875_56665-3','56665-3','http://loinc.org','Taenia solium IgG Ab [Titer] in Serum by Immunofluorescence','566653','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1875_56984-8','56984-8','http://loinc.org','Taenia solium larva Ab [Presence] in Serum by Immunoassay','569848','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1875_57455-8','57455-8','http://loinc.org','Taenia solium IgG Ab [Units/volume] in Serum','574558','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1875_58455-7','58455-7','http://loinc.org','Taenia solium Ab [Presence] in Cerebral spinal fluid by Immunoassay','584557','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1875_6373-5','6373-5','http://loinc.org','Taenia solium larva IgG Ab [Presence] in Cerebral spinal fluid by Immunoblot','63735','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1875_6374-3','6374-3','http://loinc.org','Taenia solium larva IgG Ab [Presence] in Serum by Immunoblot','63743','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1875_7844-4','7844-4','http://loinc.org','Taenia solium larva IgA Ab [Presence] in Cerebral spinal fluid','78444','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1875_7845-1','7845-1','http://loinc.org','Taenia solium larva IgA Ab [Presence] in Serum','78451','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1875_7846-9','7846-9','http://loinc.org','Taenia solium larva IgG Ab [Presence] in Cerebral spinal fluid','78469','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1875_7847-7','7847-7','http://loinc.org','Taenia solium larva IgG Ab [Presence] in Serum','78477','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1875_7848-5','7848-5','http://loinc.org','Taenia solium larva IgM Ab [Presence] in Cerebral spinal fluid','78485','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1875_7849-3','7849-3','http://loinc.org','Taenia solium larva IgM Ab [Presence] in Serum','78493','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1875_7850-1','7850-1','http://loinc.org','Taenia solium larva Ab [Units/volume] in Serum','78501','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1875_8037-4','8037-4','http://loinc.org','Taenia solium adult Ab [Units/volume] in Serum','80374','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1875_88919-6','88919-6','http://loinc.org','Taenia solium larva IgG Ab [Presence] in Cerebral spinal fluid by Immunoassay','889196','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1875_9600-8','9600-8','http://loinc.org','Taenia solium larva Ab [Presence] in Serum by Immunoblot','96008','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1875_9601-6','9601-6','http://loinc.org','Taenia solium larva 13kD Ab [Presence] in Serum by Immunoblot','96016','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1875_9602-4','9602-4','http://loinc.org','Taenia solium larva 14kD Ab [Presence] in Serum by Immunoblot','96024','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1875_9603-2','9603-2','http://loinc.org','Taenia solium larva 18kD Ab [Presence] in Serum by Immunoblot','96032','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1875_9604-0','9604-0','http://loinc.org','Taenia solium larva 21kD Ab [Presence] in Serum by Immunoblot','96040','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1875_9605-7','9605-7','http://loinc.org','Taenia solium larva 24kD Ab [Presence] in Serum by Immunoblot','96057','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1875_9606-5','9606-5','http://loinc.org','Taenia solium larva 39-42kD Ab [Presence] in Serum by Immunoblot','96065','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1875_9607-3','9607-3','http://loinc.org','Taenia solium larva 50kD Ab [Presence] in Serum by Immunoblot','96073','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1756_100093-4','100093-4','http://loinc.org','Trypanosoma cruzi 15-16kD IgG Ab [Presence] in Serum by Immunoblot','1000934','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1756_100094-2','100094-2','http://loinc.org','Trypanosoma cruzi 21-22kD IgG Ab [Presence] in Serum by Immunoblot','1000942','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1756_100095-9','100095-9','http://loinc.org','Trypanosoma cruzi 27-28kD IgG Ab [Presence] in Serum by Immunoblot','1000959','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1756_100096-7','100096-7','http://loinc.org','Trypanosoma cruzi 42kD IgG Ab [Presence] in Serum by Immunoblot','1000967','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1756_100097-5','100097-5','http://loinc.org','Trypanosoma cruzi 45-47kD IgG Ab [Presence] in Serum by Immunoblot','1000975','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1756_100098-3','100098-3','http://loinc.org','Trypanosoma cruzi 120-200kD IgG Ab [Presence] in Serum by Immunoblot','1000983','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1756_100099-1','100099-1','http://loinc.org','Trypanosoma cruzi 160kD IgG Ab [Presence] in Serum by Immunoblot','1000991','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1756_13291-0','13291-0','http://loinc.org','Trypanosoma cruzi IgG Ab [Units/volume] in Serum','132910','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1756_14094-7','14094-7','http://loinc.org','Trypanosoma cruzi IgG Ab [Titer] in Serum','140947','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1756_30104-4','30104-4','http://loinc.org','Trypanosoma cruzi IgG Ab [Titer] in Specimen','301044','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1756_31691-9','31691-9','http://loinc.org','Trypanosoma cruzi IgG Ab [Units/volume] in Specimen','316919','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1756_32725-4','32725-4','http://loinc.org','Trypanosoma cruzi IgG Ab [Presence] in Serum','327254','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1756_44816-7','44816-7','http://loinc.org','Trypanosoma cruzi IgG Ab [Presence] in Serum by Immunofluorescence','448167','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1756_59387-1','59387-1','http://loinc.org','Trypanosoma cruzi IgG Ab [Units/volume] in Serum by Immunoassay','593871','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1756_59393-9','59393-9','http://loinc.org','Trypanosoma cruzi IgG Ab [Titer] in Serum by Immunofluorescence','593939','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1756_87994-0','87994-0','http://loinc.org','Trypanosoma cruzi IgG Ab [Presence] in Serum by Immunoassay','879940','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1876_48804-9','48804-9','http://loinc.org','Taenia solium Ag [Presence] in Stool','488049','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1876_53602-9','53602-9','http://loinc.org','Taenia solium larva Ag [Units/volume] in Serum','536029','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1876_88920-4','88920-4','http://loinc.org','Taenia solium larva Ag [Presence] in Serum by Immunoassay','889204','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1511_15114-2','15114-2','http://loinc.org','Arsenic [Moles/volume] in Blood','151142','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1511_50812-7','50812-7','http://loinc.org','Arsenic [Moles/volume] in Red Blood Cells','508127','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1511_5583-0','5583-0','http://loinc.org','Arsenic [Mass/volume] in Blood','55830','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1753_103163-2','103163-2','http://loinc.org','Staphylococcus aureus enterotoxin A + Staphylococcus aureus enterotoxin B DNA [Presence] in Wound by NAA with probe detection','1031632','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1753_44880-3','44880-3','http://loinc.org','Staphylococcus aureus enterotoxin B seb gene [Presence] in Specimen by NAA with probe detection','448803','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1753_71787-6','71787-6','http://loinc.org','Staphylococcus aureus exfoliative toxin B etb gene [Presence] in Specimen by NAA with probe detection','717876','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1510_12481-8','12481-8','http://loinc.org','Arsenic.inorganic [Mass/volume] in Urine','124818','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1510_15115-9','15115-9','http://loinc.org','Arsenic [Moles/volume] in Urine','151159','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1510_18406-9','18406-9','http://loinc.org','Arsenic trioxide [Mass/volume] in Urine','184069','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1510_21074-0','21074-0','http://loinc.org','Arsenic [Mass/volume] in 24 hour Urine','210740','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1510_30924-5','30924-5','http://loinc.org','Arsenic [Mass/volume] in Urine collected for unspecified duration','309245','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1510_34245-1','34245-1','http://loinc.org','Arsenic [Moles/volume] in 24 hour Urine','342451','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1510_41992-9','41992-9','http://loinc.org','Arsenic.inorganic [Mass/volume] in 24 hour Urine','419929','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1510_43181-7','43181-7','http://loinc.org','Arsenic organic [Mass/volume] in 24 hour Urine','431817','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1510_50814-3','50814-3','http://loinc.org','Arsenic.inorganic [Moles/volume] in Urine','508143','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1510_50816-8','50816-8','http://loinc.org','Arsenic organic [Moles/volume] in Urine','508168','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1510_53778-7','53778-7','http://loinc.org','Arsenic organic [Mass/volume] in Urine','537787','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1510_53779-5','53779-5','http://loinc.org','Arsenic.methylated [Mass/volume] in Urine','537795','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1510_53839-7','53839-7','http://loinc.org','Arsenic organic [Mass/time] in 24 hour Urine','538397','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1510_5586-3','5586-3','http://loinc.org','Arsenic [Mass/volume] in Urine','55863','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1510_96250-6','96250-6','http://loinc.org','Arsenic.inorganic+methylated [Mass/volume] in Urine','962506','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1510_96251-4','96251-4','http://loinc.org','Arsenic.inorganic+methylated [Mass/volume] in 24 hour Urine','962514','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1510_96252-2','96252-2','http://loinc.org','Arsenic.methylated [Mass/volume] in 24 hour Urine','962522','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1752_23933-5','23933-5','http://loinc.org','Staphylococcus aureus enterotoxin B [Presence] in Specimen','239335','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1752_41855-8','41855-8','http://loinc.org','Staphylococcus aureus enterotoxin B [Presence] in Specimen by Immunofluorescence','418558','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1528_23896-4','23896-4','http://loinc.org','Mercury [Mass/mass] in Specimen','238964','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1528_47121-9','47121-9','http://loinc.org','Mercury [Moles/mass] in Specimen','471219','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1649_70853-7','70853-7','http://loinc.org','Burkholderia mallei DNA [Presence] in Specimen by NAA with probe detection','708537','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1527_13465-0','13465-0','http://loinc.org','Mercury/Creatinine [Mass Ratio] in Urine','134650','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1527_21383-5','21383-5','http://loinc.org','Mercury [Mass/volume] in 24 hour Urine','213835','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1527_22680-3','22680-3','http://loinc.org','Mercury/Creatinine [Molar ratio] in Urine','226803','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1527_25471-4','25471-4','http://loinc.org','Mercury [Moles/time] in 24 hour Urine','254714','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1527_26688-2','26688-2','http://loinc.org','Mercury/Creatinine [Mass Ratio] in 24 hour Urine','266882','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1527_30921-1','30921-1','http://loinc.org','Mercury [Mass/volume] in Urine collected for unspecified duration','309211','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1527_34337-6','34337-6','http://loinc.org','Mercury [Moles/volume] in 24 hour Urine','343376','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1527_34338-4','34338-4','http://loinc.org','Mercury [Moles/volume] in Urine','343384','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1527_52929-7','52929-7','http://loinc.org','Mercury/Creatinine [Molar ratio] in 24 hour Urine','529297','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1527_56653-9','56653-9','http://loinc.org','Mercury/Creatinine [Ratio] in Urine','566539','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1527_5689-5','5689-5','http://loinc.org','Mercury [Mass/volume] in Urine','56895','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1527_6693-6','6693-6','http://loinc.org','Mercury [Mass/time] in 24 hour Urine','66936','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1648_70850-3','70850-3','http://loinc.org','Burkholderia mallei [Presence] in Specimen by Organism specific culture','708503','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1409_100156-9','100156-9','http://loinc.org','SARS-CoV-2 (COVID-19) variant [Type] in Specimen by NAA with probe detection','1001569','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1409_100157-7','100157-7','http://loinc.org','SARS-CoV-2 (COVID-19) lineage [Type] in Specimen by Sequencing','1001577','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1409_94764-8','94764-8','http://loinc.org','SARS-CoV-2 (COVID-19) whole genome [Nucleotide sequence] in Isolate or Specimen by Sequencing','947648','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1409_96741-4','96741-4','http://loinc.org','SARS-CoV-2 (COVID-19) variant [Type] in Specimen by Sequencing','967414','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1409_96751-3','96751-3','http://loinc.org','SARS-CoV-2 (COVID-19) S gene mutation detected [Identifier] in Specimen by Molecular genetics method','967513','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1409_96752-1','96752-1','http://loinc.org','SARS-CoV-2 (COVID-19) S gene mutation [Presence] in Specimen by Molecular genetics method','967521','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1409_96755-4','96755-4','http://loinc.org','SARS-CoV-2 (COVID-19) variant interpretation in Specimen Narrative','967554','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1409_96895-8','96895-8','http://loinc.org','SARS-CoV-2 (COVID-19) lineage [Identifier] in Specimen by Molecular genetics method','968958','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1409_96896-6','96896-6','http://loinc.org','SARS-CoV-2 (COVID-19) clade [Type] in Specimen by Molecular genetics method','968966','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1409_99314-7','99314-7','http://loinc.org','SARS-CoV-2 (COVID-19) RdRp gene mutation detected [Identifier] in Specimen by Molecular genetics method','993147','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1408_22458-4','22458-4','http://loinc.org','Rabies virus Ab [Units/volume] in Tissue','224584','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1408_6525-0','6525-0','http://loinc.org','Rabies virus neutralizing antibody [Units/volume] in Tissue by Neutralization test','65250','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1408_6526-8','6526-8','http://loinc.org','Rabies virus Ab [Units/volume] in Specimen','65268','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1408_6527-6','6527-6','http://loinc.org','Rabies virus neutralizing antibody [Units/volume] in Specimen by Neutralization test','65276','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1408_97512-8','97512-8','http://loinc.org','Rabies virus IgM Ab [Presence] in Specimen by Immunofluorescence','975128','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1408_97517-7','97517-7','http://loinc.org','Rabies virus IgG Ab [Presence] in Specimen by Immunofluorescence','975177','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1408_99136-4','99136-4','http://loinc.org','Rabies virus IgM Ab [Titer] in Specimen by Immunofluorescence','991364','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1408_99137-2','99137-2','http://loinc.org','Rabies virus IgG Ab [Titer] in Specimen by Immunofluorescence','991372','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1408_14128-3','14128-3','http://loinc.org','Rabies virus Ab [Titer] in Serum','141283','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1408_30553-2','30553-2','http://loinc.org','Rabies virus Ab [Presence] in Serum','305532','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1408_40742-9','40742-9','http://loinc.org','Rabies virus IgG Ab [Presence] in Serum by Immunofluorescence','407429','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1408_41128-0','41128-0','http://loinc.org','Rabies virus IgG Ab [Presence] in Serum','411280','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1408_41507-5','41507-5','http://loinc.org','Rabies virus Ab [Presence] in Serum by Immunoassay','415075','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1408_43590-9','43590-9','http://loinc.org','Rabies virus Ab [Units/volume] in Serum by Immunoassay','435909','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1408_43980-2','43980-2','http://loinc.org','Rabies virus neutralizing antibody [Titer] in Serum by Neutralization test','439802','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1408_5288-6','5288-6','http://loinc.org','Rabies virus Ab [Units/volume] in Serum','52886','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1408_58023-3','58023-3','http://loinc.org','Rabies virus IgG Ab [Units/volume] in Serum','580233','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1408_6524-3','6524-3','http://loinc.org','Rabies virus neutralizing antibody [Units/volume] in Serum by Neutralization test','65243','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1408_70858-6','70858-6','http://loinc.org','Rabies virus neutralizing antibody [Presence] in Serum by Neutralization test','708586','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1408_70863-6','70863-6','http://loinc.org','Rabies virus IgM Ab [Presence] in Serum by Immunofluorescence','708636','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1408_70864-4','70864-4','http://loinc.org','Rabies virus IgM Ab [Titer] in Serum by Immunofluorescence','708644','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1408_86587-3','86587-3','http://loinc.org','Rabies virus IgG Ab [Presence] in Serum by Immunoassay','865873','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1408_6522-7','6522-7','http://loinc.org','Rabies virus Ab [Units/volume] in Cerebral spinal fluid','65227','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1408_6523-5','6523-5','http://loinc.org','Rabies virus neutralizing antibody [Units/volume] in Cerebral spinal fluid by Neutralization test','65235','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1408_70856-0','70856-0','http://loinc.org','Rabies virus Ab [Units/volume] in Cerebral spinal fluid by Immunoassay','708560','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1408_70857-8','70857-8','http://loinc.org','Rabies virus Ab [Presence] in Cerebral spinal fluid by Immunoassay','708578','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1408_70859-4','70859-4','http://loinc.org','Rabies virus neutralizing antibody [Presence] in Cerebral spinal fluid by Neutralization test','708594','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1408_70860-2','70860-2','http://loinc.org','Rabies virus IgG Ab [Units/volume] in Cerebral spinal fluid by Immunofluorescence','708602','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1408_70861-0','70861-0','http://loinc.org','Rabies virus IgG Ab [Presence] in Cerebral spinal fluid by Immunofluorescence','708610','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1408_70862-8','70862-8','http://loinc.org','Rabies virus IgM Ab [Presence] in Cerebral spinal fluid by Immunofluorescence','708628','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1408_70865-1','70865-1','http://loinc.org','Rabies virus IgM Ab [Titer] in Cerebral spinal fluid by Immunofluorescence','708651','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1524_16693-4','16693-4','http://loinc.org','Cryptococcus sp Ag [Presence] in Urine','166934','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1524_29903-2','29903-2','http://loinc.org','Cryptococcus sp Ag [Presence] in Serum by Immunoassay','299032','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1524_30324-8','30324-8','http://loinc.org','Cryptococcus sp Ag [Presence] in Serum by Latex agglutination','303248','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1524_31790-9','31790-9','http://loinc.org','Cryptococcus sp Ag [Presence] in Serum','317909','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1524_31791-7','31791-7','http://loinc.org','Cryptococcus sp Ag [Units/volume] in Serum','317917','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1524_40768-4','40768-4','http://loinc.org','Cryptococcus sp Ag [Titer] in Serum','407684','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1524_70910-5','70910-5','http://loinc.org','Cryptococcus sp Ag [Presence] in Serum by Rapid immunoassay','709105','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1524_93766-4','93766-4','http://loinc.org','Cryptococcus sp Ag [Titer] in Urine by Rapid immunoassay','937664','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1524_9818-6','9818-6','http://loinc.org','Cryptococcus sp Ag [Titer] in Serum by Immunoassay','98186','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1524_9820-2','9820-2','http://loinc.org','Cryptococcus sp Ag [Titer] in Serum by Latex agglutination','98202','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1524_31789-1','31789-1','http://loinc.org','Cryptococcus sp Ag [Units/volume] in Cerebral spinal fluid','317891','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1524_32674-4','32674-4','http://loinc.org','Cryptococcus sp Ag [Titer] in Cerebral spinal fluid','326744','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1524_9817-8','9817-8','http://loinc.org','Cryptococcus sp Ag [Titer] in Cerebral spinal fluid by Immunoassay','98178','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1524_9819-4','9819-4','http://loinc.org','Cryptococcus sp Ag [Titer] in Cerebral spinal fluid by Latex agglutination','98194','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1524_11473-6','11473-6','http://loinc.org','Cryptococcus sp Ag [Titer] in Specimen','114736','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1524_16692-6','16692-6','http://loinc.org','Cryptococcus sp Ag [Presence] in Body fluid','166926','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1524_29533-7','29533-7','http://loinc.org','Cryptococcus sp Ag [Presence] in Specimen','295337','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1524_31792-5','31792-5','http://loinc.org','Cryptococcus sp Ag [Units/volume] in Specimen','317925','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1524_43228-6','43228-6','http://loinc.org','Cryptococcus sp Ag [Presence] in Specimen by Latex agglutination','432286','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1524_43229-4','43229-4','http://loinc.org','Cryptococcus sp Ag [Titer] in Specimen by Latex agglutination','432294','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1524_70908-9','70908-9','http://loinc.org','Cryptococcus sp Ag [Presence] in Tissue by Immunofluorescence','709089','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1524_70909-7','70909-7','http://loinc.org','Cryptococcus sp Ag [Presence] in Tissue by Immune stain','709097','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1524_29896-8','29896-8','http://loinc.org','Cryptococcus sp Ag [Presence] in Cerebral spinal fluid by Immunoassay','298968','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1524_31788-3','31788-3','http://loinc.org','Cryptococcus sp Ag [Presence] in Cerebral spinal fluid','317883','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1524_46964-3','46964-3','http://loinc.org','Cryptococcus sp Ag [Presence] in Cerebral spinal fluid by Latex agglutination','469643','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1524_70911-3','70911-3','http://loinc.org','Cryptococcus sp Ag [Presence] in Cerebral spinal fluid by Rapid immunoassay','709113','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1523_90338-5','90338-5','http://loinc.org','Cryptococcus sp rRNA gene [Presence] in Blood by NAA with probe detection','903385','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1523_103164-0','103164-0','http://loinc.org','Cryptococcus neoformans DNA [Presence] in Specimen by NAA with probe detection','1031640','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1523_49098-7','49098-7','http://loinc.org','Cryptococcus neoformans rRNA [Units/volume] in Specimen by NAA with probe detection','490987','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1523_4995-7','4995-7','http://loinc.org','Cryptococcus neoformans rRNA [Presence] in Specimen by Probe','49957','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1523_70907-1','70907-1','http://loinc.org','Cryptococcus sp rRNA gene [Identifier] in Specimen by Sequencing','709071','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1523_81649-6','81649-6','http://loinc.org','Cryptococcus sp rRNA gene [Presence] in Specimen by NAA with probe detection','816496','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1523_82181-9','82181-9','http://loinc.org','Cryptococcus gattii+neoformans DNA [Presence] in Cerebral spinal fluid by NAA with non-probe detection','821819','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1523_90337-7','90337-7','http://loinc.org','Cryptococcus sp rRNA gene [Presence] in Cerebral spinal fluid by NAA with probe detection','903377','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1523_99088-7','99088-7','http://loinc.org','Cryptococcus gattii+neoformans DNA [Presence] in Cerebral spinal fluid by NAA with probe detection','990887','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1889_16808-8','16808-8','http://loinc.org','Anaplasma phagocytophilum IgG Ab [Units/volume] in Serum','168088','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1889_29793-7','29793-7','http://loinc.org','Anaplasma phagocytophilum IgG Ab [Presence] in Specimen by Immunoblot','297937','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1889_29806-7','29806-7','http://loinc.org','Anaplasma phagocytophilum IgG Ab [Presence] in Cerebral spinal fluid by Immunoblot','298067','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1889_29819-0','29819-0','http://loinc.org','Anaplasma phagocytophilum IgG Ab [Presence] in Serum by Immunoblot','298190','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1889_29832-3','29832-3','http://loinc.org','Anaplasma phagocytophilum IgG Ab [Presence] in Specimen','298323','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1889_29844-8','29844-8','http://loinc.org','Anaplasma phagocytophilum IgG Ab [Presence] in Cerebral spinal fluid','298448','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1889_29856-2','29856-2','http://loinc.org','Anaplasma phagocytophilum IgG Ab [Presence] in Serum','298562','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1889_32691-8','32691-8','http://loinc.org','Anaplasma phagocytophilum IgG Ab [Titer] in Serum','326918','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1889_49213-2','49213-2','http://loinc.org','Anaplasma phagocytophilum IgG Ab [Titer] in Body fluid','492132','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1889_23877-4','23877-4','http://loinc.org','Anaplasma phagocytophilum IgG Ab [Titer] in Serum by Immunofluorescence','238774','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1889_48877-5','48877-5','http://loinc.org','Anaplasma phagocytophilum IgG Ab [Titer] in Body fluid by Immunofluorescence','488775','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1526_12774-6','12774-6','http://loinc.org','Mercury [Mass/volume] in Red Blood Cells','127746','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1526_25170-2','25170-2','http://loinc.org','Mercury [Moles/volume] in Blood','251702','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1526_27130-4','27130-4','http://loinc.org','Mercury [Mass/mass] in Red Blood Cells','271304','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1526_50878-8','50878-8','http://loinc.org','Mercury [Moles/volume] in Red Blood Cells','508788','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1526_5685-3','5685-3','http://loinc.org','Mercury [Mass/volume] in Blood','56853','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1647_22956-7','22956-7','http://loinc.org','Burkholderia mallei Ab [Presence] in Serum','229567','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1647_22958-3','22958-3','http://loinc.org','Burkholderia mallei Ab [Presence] in Serum by Immunoassay','229583','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1647_22959-1','22959-1','http://loinc.org','Burkholderia mallei Ab [Presence] in Serum by Complement fixation','229591','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1887_16952-4','16952-4','http://loinc.org','Herpes simplex virus 1 DNA [Presence] in Cerebral spinal fluid by NAA with probe detection','169524','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1887_16960-7','16960-7','http://loinc.org','Herpes simplex virus 2 DNA [Presence] in Cerebral spinal fluid by NAA with probe detection','169607','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1887_32141-4','32141-4','http://loinc.org','Herpes simplex virus 1+2 DNA [Presence] in Cerebral spinal fluid by NAA with probe detection','321414','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1887_34655-1','34655-1','http://loinc.org','Herpes simplex virus 1+2 DNA [#/volume] (viral load) in Cerebral spinal fluid by NAA with probe detection','346551','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1887_49987-1','49987-1','http://loinc.org','Herpes simplex virus 1 DNA [#/volume] (viral load) in Cerebral spinal fluid by NAA with probe detection','499871','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1887_49990-5','49990-5','http://loinc.org','Herpes simplex virus 2 DNA [#/volume] (viral load) in Cerebral spinal fluid by NAA with probe detection','499905','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1887_5013-8','5013-8','http://loinc.org','Herpes simplex virus DNA [Presence] in Cerebral spinal fluid by NAA with probe detection','50138','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1887_82190-0','82190-0','http://loinc.org','Herpes simplex virus 1 DNA [Presence] in Cerebral spinal fluid by NAA with non-probe detection','821900','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1887_82191-8','82191-8','http://loinc.org','Herpes simplex virus 2 DNA [Presence] in Cerebral spinal fluid by NAA with non-probe detection','821918','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1520_96303-3','96303-3','http://loinc.org','Cryptococcus gattii+neoformans DNA [Presence] by NAA with non-probe detection in Positive blood culture','963033','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1520_92801-0','92801-0','http://loinc.org','Cryptococcus gattii DNA [Presence] by NAA with probe detection in Positive blood culture','928010','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1520_92802-8','92802-8','http://loinc.org','Cryptococcus neoformans DNA [Presence] by NAA with probe detection in Positive blood culture','928028','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1520_38376-0','38376-0','http://loinc.org','Cryptococcus sp identified in Specimen by Organism specific culture','383760','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1520_97940-1','97940-1','http://loinc.org','Cryptococcus sp [Presence] in Isolate by Organism specific culture','979401','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1520_38377-8','38377-8','http://loinc.org','Cryptococcus neoformans [Presence] in Specimen by Organism specific culture','383778','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1520_98410-4','98410-4','http://loinc.org','Cryptococcus molecular type in Isolate by Sequencing','984104','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1641_17541-4','17541-4','http://loinc.org','Rickettsia typhi IgG Ab [Presence] in Serum by Immunoassay','175414','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1641_22480-8','22480-8','http://loinc.org','Rickettsia typhus group IgG Ab [Titer] in Cerebral spinal fluid','224808','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1641_22488-1','22488-1','http://loinc.org','Rickettsia typhi IgG Ab [Presence] in Serum','224881','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1641_22489-9','22489-9','http://loinc.org','Rickettsia typhi IgG Ab [Titer] in Serum','224899','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1641_22493-1','22493-1','http://loinc.org','Rickettsia typhus group IgG Ab [Titer] in Serum','224931','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1641_24279-2','24279-2','http://loinc.org','Rickettsia typhi IgG Ab [Titer] in Serum --1st specimen','242792','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1641_24280-0','24280-0','http://loinc.org','Rickettsia typhi IgG Ab [Titer] in Serum --2nd specimen','242800','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1641_29321-7','29321-7','http://loinc.org','Rickettsia typhi IgG Ab [Presence] in Body fluid','293217','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1641_30555-7','30555-7','http://loinc.org','Rickettsia typhus group IgG Ab [Presence] in Serum','305557','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1641_31076-3','31076-3','http://loinc.org','Rickettsia typhi IgG Ab [Titer] in Body fluid','310763','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1641_47479-1','47479-1','http://loinc.org','Rickettsia typhi IgG Ab [Titer] in Cerebral spinal fluid','474791','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1641_5319-9','5319-9','http://loinc.org','Rickettsia typhus group IgG Ab [Units/volume] in Serum by Immunoassay','53199','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1641_56881-6','56881-6','http://loinc.org','Rickettsia typhi IgG Ab [Presence] in Serum by Immunofluorescence','568816','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1641_8001-0','8001-0','http://loinc.org','Rickettsia typhus group IgG Ab [Units/volume] in Serum','80010','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1641_8007-7','8007-7','http://loinc.org','Rickettsia typhi IgG Ab [Units/volume] in Serum','80077','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1641_21496-5','21496-5','http://loinc.org','Rickettsia typhus group IgG Ab [Titer] in Cerebral spinal fluid by Immunofluorescence','214965','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1641_24205-7','24205-7','http://loinc.org','Rickettsia typhi IgG Ab [Titer] in Serum by Immunofluorescence --1st specimen','242057','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1641_24206-5','24206-5','http://loinc.org','Rickettsia typhi IgG Ab [Titer] in Serum by Immunofluorescence --2nd specimen','242065','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1641_47065-8','47065-8','http://loinc.org','Rickettsia typhi IgG Ab [Titer] in Cerebral spinal fluid by Immunofluorescence','470658','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1641_48914-6','48914-6','http://loinc.org','Rickettsia typhi IgG Ab [Titer] in Body fluid by Immunofluorescence','489146','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1641_5320-7','5320-7','http://loinc.org','Rickettsia typhus group IgG Ab [Titer] in Serum by Immunofluorescence','53207','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1641_5324-9','5324-9','http://loinc.org','Rickettsia typhi IgG Ab [Titer] in Serum by Immunofluorescence','53249','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1641_70131-8','70131-8','http://loinc.org','Rickettsia typhus group IgG Ab [Titer] in Serum by Immunofluorescence --1st specimen','701318','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1641_70132-6','70132-6','http://loinc.org','Rickettsia typhus group IgG Ab [Titer] in Serum by Immunofluorescence --2nd specimen','701326','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1401_96505-3','96505-3','http://loinc.org','Colorado tick fever virus IgM Ab [Presence] in Specimen by Immunoassay','965053','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1401_13293-6','13293-6','http://loinc.org','Colorado tick fever virus IgM Ab [Units/volume] in Serum','132936','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1401_16122-4','16122-4','http://loinc.org','Colorado tick fever virus IgM Ab [Titer] in Serum','161224','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1401_42896-1','42896-1','http://loinc.org','Colorado tick fever virus IgM Ab [Titer] in Serum by Immunofluorescence','428961','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1522_92801-0','92801-0','http://loinc.org','Cryptococcus gattii DNA [Presence] by NAA with probe detection in Positive blood culture','928010','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1643_21496-5','21496-5','http://loinc.org','Rickettsia typhus group IgG Ab [Titer] in Cerebral spinal fluid by Immunofluorescence','214965','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1643_24205-7','24205-7','http://loinc.org','Rickettsia typhi IgG Ab [Titer] in Serum by Immunofluorescence --1st specimen','242057','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1643_24206-5','24206-5','http://loinc.org','Rickettsia typhi IgG Ab [Titer] in Serum by Immunofluorescence --2nd specimen','242065','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1643_47065-8','47065-8','http://loinc.org','Rickettsia typhi IgG Ab [Titer] in Cerebral spinal fluid by Immunofluorescence','470658','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1643_48914-6','48914-6','http://loinc.org','Rickettsia typhi IgG Ab [Titer] in Body fluid by Immunofluorescence','489146','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1643_5320-7','5320-7','http://loinc.org','Rickettsia typhus group IgG Ab [Titer] in Serum by Immunofluorescence','53207','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1643_5324-9','5324-9','http://loinc.org','Rickettsia typhi IgG Ab [Titer] in Serum by Immunofluorescence','53249','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1643_70131-8','70131-8','http://loinc.org','Rickettsia typhus group IgG Ab [Titer] in Serum by Immunofluorescence --1st specimen','701318','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1643_70132-6','70132-6','http://loinc.org','Rickettsia typhus group IgG Ab [Titer] in Serum by Immunofluorescence --2nd specimen','701326','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1400_26653-6','26653-6','http://loinc.org','Colorado tick fever virus Ab [Presence] in Serum','266536','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1400_42895-3','42895-3','http://loinc.org','Colorado tick fever virus IgG Ab [Presence] in Serum by Immunofluorescence','428953','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1400_43051-2','43051-2','http://loinc.org','Colorado tick fever virus IgG Ab [Presence] in Serum','430512','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1400_50035-5','50035-5','http://loinc.org','Colorado tick fever virus neutralizing antibody [Presence] in Specimen by Neutralization test','500355','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1400_53368-7','53368-7','http://loinc.org','Colorado tick fever virus Ab [Presence] in Specimen','533687','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1400_57773-4','57773-4','http://loinc.org','Colorado tick fever virus IgG and IgM [Interpretation] in Serum Narrative','577734','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1400_95695-3','95695-3','http://loinc.org','Colorado tick fever virus IgA Ab [Presence] in Specimen by Immunoassay','956953','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1400_96522-8','96522-8','http://loinc.org','Colorado tick fever virus IgG Ab [Presence] in Specimen by Immunoassay','965228','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1400_96505-3','96505-3','http://loinc.org','Colorado tick fever virus IgM Ab [Presence] in Specimen by Immunoassay','965053','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1521_92802-8','92802-8','http://loinc.org','Cryptococcus neoformans DNA [Presence] by NAA with probe detection in Positive blood culture','928028','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1521_38377-8','38377-8','http://loinc.org','Cryptococcus neoformans [Presence] in Specimen by Organism specific culture','383778','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1642_22481-6','22481-6','http://loinc.org','Rickettsia typhus group IgM Ab [Titer] in Cerebral spinal fluid','224816','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1642_22490-7','22490-7','http://loinc.org','Rickettsia typhi IgM Ab [Titer] in Serum','224907','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1642_22494-9','22494-9','http://loinc.org','Rickettsia typhus group IgM Ab [Titer] in Serum','224949','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1642_29322-5','29322-5','http://loinc.org','Rickettsia typhi IgM Ab [Presence] in Body fluid','293225','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1642_31077-1','31077-1','http://loinc.org','Rickettsia typhi IgM Ab [Titer] in Body fluid','310771','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1642_31602-6','31602-6','http://loinc.org','Rickettsia typhus group IgM Ab [Units/volume] in Cerebral spinal fluid','316026','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1642_31611-7','31611-7','http://loinc.org','Rickettsia typhi IgM Ab [Units/volume] in Body fluid','316117','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1642_32714-8','32714-8','http://loinc.org','Rickettsia typhus group IgM Ab [Presence] in Serum','327148','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1642_33001-9','33001-9','http://loinc.org','Rickettsia typhi IgM Ab [Presence] in Serum','330019','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1642_47480-9','47480-9','http://loinc.org','Rickettsia typhi IgM Ab [Titer] in Cerebral spinal fluid','474809','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1642_5321-5','5321-5','http://loinc.org','Rickettsia typhus group IgM Ab [Units/volume] in Serum by Immunoassay','53215','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1642_8002-8','8002-8','http://loinc.org','Rickettsia typhus group IgM Ab [Units/volume] in Serum','80028','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1642_8008-5','8008-5','http://loinc.org','Rickettsia typhi IgM Ab [Units/volume] in Serum','80085','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1642_21497-3','21497-3','http://loinc.org','Rickettsia typhus group IgM Ab [Titer] in Cerebral spinal fluid by Immunofluorescence','214973','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1642_47067-4','47067-4','http://loinc.org','Rickettsia typhi IgM Ab [Titer] in Cerebral spinal fluid by Immunofluorescence','470674','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1642_48915-3','48915-3','http://loinc.org','Rickettsia typhi IgM Ab [Titer] in Body fluid by Immunofluorescence','489153','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1642_5322-3','5322-3','http://loinc.org','Rickettsia typhus group IgM Ab [Titer] in Serum by Immunofluorescence','53223','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1642_5325-6','5325-6','http://loinc.org','Rickettsia typhi IgM Ab [Titer] in Serum by Immunofluorescence','53256','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1642_70133-4','70133-4','http://loinc.org','Rickettsia typhus group IgM Ab [Titer] in Serum by Immunofluorescence --1st specimen','701334','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1642_70134-2','70134-2','http://loinc.org','Rickettsia typhus group IgM Ab [Titer] in Serum by Immunofluorescence --2nd specimen','701342','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1880_61361-2','61361-2','http://loinc.org','Klebsiella aerogenes DNA [Presence] in Specimen by NAA with probe detection','613612','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1880_61398-4','61398-4','http://loinc.org','Escherichia coli DNA [Presence] in Specimen by NAA with probe detection','613984','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1880_61399-2','61399-2','http://loinc.org','Klebsiella pneumoniae DNA [Presence] in Specimen by NAA with probe detection','613992','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1880_63423-8','63423-8','http://loinc.org','Escherichia coli eaeA gene [Presence] in Specimen by NAA with probe detection','634238','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1880_70019-5','70019-5','http://loinc.org','Klebsiella oxytoca DNA [Presence] in Blood by NAA with probe detection','700195','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1880_76583-4','76583-4','http://loinc.org','Klebsiella pneumoniae phoE gene [Presence] in Swab specimen by NAA with probe detection','765834','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1880_76598-2','76598-2','http://loinc.org','Klebsiella pneumoniae phoE gene [#/mass] in XXX.tissue by NAA with probe detection','765982','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1880_76611-3','76611-3','http://loinc.org','Klebsiella pneumoniae phoE gene [#/volume] in XXX.body fluid by NAA with probe detection','766113','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1880_80348-6','80348-6','http://loinc.org','Escherichia coli enteropathogenic eae gene [Presence] in Stool by NAA with non-probe detection','803486','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1880_80349-4','80349-4','http://loinc.org','Escherichia coli enteroaggregative pAA plasmid aggR+aatA genes [Presence] in Stool by NAA with non-probe detection','803494','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1880_80351-0','80351-0','http://loinc.org','Escherichia coli enterotoxigenic ltA+st1a+st1b genes [Presence] in Stool by NAA with non-probe detection','803510','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1880_80677-8','80677-8','http://loinc.org','Escherichia coli enterotoxigenic eltA+estB genes [Presence] in Stool by NAA with probe detection','806778','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1880_81659-5','81659-5','http://loinc.org','Escherichia coli Stx1 and Stx2 toxin stx1 and stx2 genes panel - Stool by NAA with probe detection','816595','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1880_82182-7','82182-7','http://loinc.org','Escherichia coli K1 DNA [Presence] in Cerebral spinal fluid by NAA with non-probe detection','821827','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1880_87951-0','87951-0','http://loinc.org','Escherichia coli eaeA gene [Presence] in Stool by NAA with probe detection','879510','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1880_88116-9','88116-9','http://loinc.org','Escherichia coli gene panel - Specimen by NAA with probe detection','881169','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1880_88125-0','88125-0','http://loinc.org','Escherichia coli enterotoxigenic gene panel - Specimen by NAA with probe detection','881250','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1880_92970-3','92970-3','http://loinc.org','Klebsiella pneumoniae+Klebsiella variicola+Klebsiella quasipneumoniae DNA [NCncRange] in Sputum Qualitative by NAA with non-probe detection','929703','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1880_92971-1','92971-1','http://loinc.org','Klebsiella pneumoniae+Klebsiella variicola+Klebsiella quasipneumoniae DNA [NCncRange] in Bronchoalveolar lavage Qualitative by NAA with non-probe detection','929711','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1880_92972-9','92972-9','http://loinc.org','Klebsiella oxytoca DNA [NCncRange] in Sputum by NAA with non-probe detection','929729','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1880_92973-7','92973-7','http://loinc.org','Klebsiella oxytoca DNA [NCncRange] in Bronchoalveolar lavage by NAA with non-probe detection','929737','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1880_92974-5','92974-5','http://loinc.org','Klebsiella aerogenes DNA [NCncRange] in Sputum by NAA with non-probe detection','929745','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1880_92975-2','92975-2','http://loinc.org','Klebsiella aerogenes DNA [NCncRange] in Bronchoalveolar lavage by NAA with non-probe detection','929752','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1880_92982-8','92982-8','http://loinc.org','Escherichia coli DNA [NCncRange] in Sputum by NAA with non-probe detection','929828','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1880_92983-6','92983-6','http://loinc.org','Escherichia coli DNA [NCncRange] in Bronchoalveolar lavage by NAA with non-probe detection','929836','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1880_92984-4','92984-4','http://loinc.org','Enterobacter cloacae complex DNA [NCncRange] in Sputum by NAA with non-probe detection','929844','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1880_92985-1','92985-1','http://loinc.org','Enterobacter cloacae complex DNA [NCncRange] in Bronchoalveolar lavage by NAA with non-probe detection','929851','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1880_94374-6','94374-6','http://loinc.org','Klebsiella pneumoniae DNA [Presence] in Lower respiratory specimen by NAA with probe detection','943746','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1880_94375-3','94375-3','http://loinc.org','Klebsiella oxytoca DNA [Presence] in Lower respiratory specimen by NAA with probe detection','943753','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1880_94376-1','94376-1','http://loinc.org','Klebsiella aerogenes DNA [Presence] in Lower respiratory specimen by NAA with probe detection','943761','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1880_94378-7','94378-7','http://loinc.org','Escherichia coli DNA [Presence] in Lower respiratory specimen by NAA with probe detection','943787','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1880_94379-5','94379-5','http://loinc.org','Enterobacter cloacae complex DNA [Presence] in Lower respiratory specimen by NAA with probe detection','943795','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1880_94632-7','94632-7','http://loinc.org','Escherichia coli K99 DNA [Cycle Threshold #] in Specimen by NAA with probe detection','946327','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1880_96318-1','96318-1','http://loinc.org','Enterobacter cloacae complex DNA [NCncRange] in Lower respiratory specimen by NAA with non-probe detection','963181','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1880_96319-9','96319-9','http://loinc.org','Escherichia coli DNA [NCncRange] in Lower respiratory specimen by NAA with non-probe detection','963199','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1880_96322-3','96322-3','http://loinc.org','Klebsiella oxytoca DNA [NCncRange] in Lower respiratory specimen by NAA with non-probe detection','963223','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1880_96323-1','96323-1','http://loinc.org','Klebsiella aerogenes DNA [NCncRange] in Lower respiratory specimen by NAA with non-probe detection','963231','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1880_96324-9','96324-9','http://loinc.org','Klebsiella pneumoniae+Klebsiella variicola+Klebsiella quasipneumoniae DNA [NCncRange] in Lower respiratory specimen by NAA with non-probe detection','963249','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1880_97317-2','97317-2','http://loinc.org','Escherichia coli enteroaggregative DNA [Presence] in Stool by NAA with probe detection','973172','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1880_97318-0','97318-0','http://loinc.org','Escherichia coli enteropathogenic DNA [Presence] in Stool by NAA with probe detection','973180','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1880_97319-8','97319-8','http://loinc.org','Escherichia coli enterotoxigenic DNA [Presence] in Stool by NAA with probe detection','973198','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1880_97616-7','97616-7','http://loinc.org','Enterobacter cloacae complex DNA [Presence] in Synovial fluid by NAA with non-probe detection','976167','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1880_97619-1','97619-1','http://loinc.org','Escherichia coli DNA [Presence] in Synovial fluid by NAA with non-probe detection','976191','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1880_97623-3','97623-3','http://loinc.org','Klebsiella aerogenes DNA [Presence] in Synovial fluid by NAA with non-probe detection','976233','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1880_97624-1','97624-1','http://loinc.org','Klebsiella pneumoniae+Klebsiella variicola+Klebsiella quasipneumoniae DNA [Presence] in Synovial fluid by NAA with non-probe detection','976241','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1880_99016-8','99016-8','http://loinc.org','Enterobacter cloacae complex DNA [Presence] in Urine by NAA with probe detection','990168','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1880_99019-2','99019-2','http://loinc.org','Escherichia coli DNA [Presence] in Urine by NAA with probe detection','990192','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1880_99020-0','99020-0','http://loinc.org','Klebsiella aerogenes DNA [Presence] in Urine by NAA with probe detection','990200','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1880_99021-8','99021-8','http://loinc.org','Klebsiella oxytoca DNA [Presence] in Urine by NAA with probe detection','990218','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1880_99022-6','99022-6','http://loinc.org','Klebsiella pneumoniae DNA [Presence] in Urine by NAA with probe detection','990226','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1880_99089-5','99089-5','http://loinc.org','Escherichia coli K1 DNA [Presence] in Cerebral spinal fluid by NAA with probe detection','990895','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1880_38990-8','38990-8','http://loinc.org','Escherichia coli O157:H7 DNA [Presence] in Specimen by NAA with probe detection','389908','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1880_44088-3','44088-3','http://loinc.org','Escherichia coli O157:H7 DNA [Identifier] in Specimen by NAA with probe detection','440883','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1880_53947-8','53947-8','http://loinc.org','Escherichia coli Stx1 and Stx2 toxin stx1 and stx2 and H7 flagellar fliC genes [Identifier] in Specimen by NAA with probe detection','539478','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1880_63427-9','63427-9','http://loinc.org','Escherichia coli Stx1 toxin stx1 gene [Presence] in Specimen by NAA with probe detection','634279','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1880_63428-7','63428-7','http://loinc.org','Escherichia coli Stx2 toxin stx2 gene [Presence] in Specimen by NAA with probe detection','634287','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1880_79386-9','79386-9','http://loinc.org','Escherichia coli Stx1 toxin stx1 gene [Presence] in Stool by NAA with probe detection','793869','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1880_79387-7','79387-7','http://loinc.org','Escherichia coli Stx2 toxin stx2 gene [Presence] in Stool by NAA with probe detection','793877','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1880_80676-0','80676-0','http://loinc.org','Escherichia coli O157 rfbE gene [Presence] in Stool by NAA with probe detection','806760','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1880_80679-4','80679-4','http://loinc.org','Escherichia coli Stx1 and Stx2 toxin stx1+stx2 genes [Presence] in Stool by NAA with probe detection','806794','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1880_81285-9','81285-9','http://loinc.org','Escherichia coli Stx1 and Stx2 toxin stx1 and stx2 genes [Identifier] in Stool by NAA with probe detection','812859','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1880_82203-1','82203-1','http://loinc.org','Escherichia coli Stx1 and Stx2 toxin stx1+stx2 genes [Presence] in Stool by NAA with non-probe detection','822031','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1880_82204-9','82204-9','http://loinc.org','Escherichia coli O157 DNA [Presence] in Stool by NAA with non-probe detection','822049','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1880_97320-6','97320-6','http://loinc.org','Escherichia coli O157 DNA [Presence] in Stool by NAA with probe detection','973206','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1880_87318-2','87318-2','http://loinc.org','Escherichia coli eaeA gene [Presence] in Isolate by NAA with probe detection','873182','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1880_87319-0','87319-0','http://loinc.org','Escherichia coli enteroaggregative astA gene [Presence] in Isolate by NAA with probe detection','873190','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1880_87320-8','87320-8','http://loinc.org','Escherichia coli enterotoxigenic heat-labile toxin DNA [Presence] in Isolate by NAA with probe detection','873208','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1880_87321-6','87321-6','http://loinc.org','Escherichia coli enterotoxigenic sta gene [Presence] in Isolate by NAA with probe detection','873216','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1880_87322-4','87322-4','http://loinc.org','Escherichia coli enterotoxigenic stb gene [Presence] in Isolate by NAA with probe detection','873224','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1880_87370-3','87370-3','http://loinc.org','Escherichia coli fasA gene [Presence] in Isolate by NAA with probe detection','873703','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1880_87371-1','87371-1','http://loinc.org','Escherichia coli fedF gene [Presence] in Isolate by NAA with probe detection','873711','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1880_87372-9','87372-9','http://loinc.org','Escherichia coli FimF41a gene [Presence] in Isolate by NAA with probe detection','873729','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1880_87373-7','87373-7','http://loinc.org','Escherichia coli K88 DNA [Presence] in Isolate by NAA with probe detection','873737','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1880_87374-5','87374-5','http://loinc.org','Escherichia coli K99 DNA [Presence] in Isolate by NAA with probe detection','873745','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1880_87375-2','87375-2','http://loinc.org','Escherichia coli paa gene [Presence] in Isolate by NAA with probe detection','873752','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1880_87402-4','87402-4','http://loinc.org','Escherichia coli aidA-I gene [Presence] in Isolate by NAA with probe detection','874024','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1880_87376-0','87376-0','http://loinc.org','Escherichia coli Stx1 toxin stx1 gene [Presence] in Isolate by NAA with probe detection','873760','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1880_87377-8','87377-8','http://loinc.org','Escherichia coli Stx2 toxin stx2 gene [Presence] in Isolate by NAA with probe detection','873778','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1880_87380-2','87380-2','http://loinc.org','Escherichia coli Stx2e toxin stx2e gene [Presence] in Isolate by NAA with probe detection','873802','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_101558-5','101558-5','http://loinc.org','Escherichia coli enteroinvasive DNA [Presence] in Stool by NAA with probe detection','1015585','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_103162-4','103162-4','http://loinc.org','Escherichia coli enteropathogenic DNA [Presence] in Wound by NAA with probe detection','1031624','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_103169-9','103169-9','http://loinc.org','Citrobacter freundii DNA [Presence] in Wound by NAA with probe detection','1031699','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_103174-9','103174-9','http://loinc.org','Enterobacter spp DNA [Presence] in Wound by NAA with probe detection','1031749','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_103176-4','103176-4','http://loinc.org','Escherichia coli enteroinvasive DNA [Presence] in Wound by NAA with probe detection','1031764','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_103177-2','103177-2','http://loinc.org','Escherichia coli enterotoxigenic DNA [Presence] in Wound by NAA with probe detection','1031772','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_103186-3','103186-3','http://loinc.org','Klebsiella pneumoniae oxytoca DNA [Presence] in Wound by NAA with probe detection','1031863','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_103187-1','103187-1','http://loinc.org','Klebsiella pneumoniae DNA [Presence] in Respiratory system specimen by NAA with probe detection','1031871','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_103194-7','103194-7','http://loinc.org','Proteus mirabilis DNA [Presence] in Urine by NAA with probe detection','1031947','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_103195-4','103195-4','http://loinc.org','Proteus vulgaris DNA [Presence] in Specimen by NAA with probe detection','1031954','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_103196-2','103196-2','http://loinc.org','Proteus vulgaris DNA [Presence] in Urine by NAA with probe detection','1031962','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_61400-8','61400-8','http://loinc.org','Proteus mirabilis DNA [Presence] in Specimen by NAA with probe detection','614008','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_61402-4','61402-4','http://loinc.org','Serratia marcescens DNA [Presence] in Specimen by NAA with probe detection','614024','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_70296-9','70296-9','http://loinc.org','Plesiomonas shigelloides DNA [Presence] in Stool by NAA with probe detection','702969','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_76576-8','76576-8','http://loinc.org','Serratia marcescens gyrB gene [Presence] in Swab specimen by NAA with probe detection','765768','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_76591-7','76591-7','http://loinc.org','Serratia marcescens gyrB gene [#/mass] in XXX.tissue by NAA with probe detection','765917','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_76604-8','76604-8','http://loinc.org','Serratia marcescens gyrB gene [#/volume] in XXX.body fluid by NAA with probe detection','766048','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_82198-3','82198-3','http://loinc.org','Plesiomonas shigelloides DNA [Presence] in Stool by NAA with non-probe detection','821983','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_92954-7','92954-7','http://loinc.org','Serratia marcescens DNA [NCncRange] in Sputum by NAA with non-probe detection','929547','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_92955-4','92955-4','http://loinc.org','Serratia marcescens DNA [NCncRange] in Bronchoalveolar lavage by NAA with non-probe detection','929554','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_92961-2','92961-2','http://loinc.org','Proteus sp DNA [NCncRange] in Sputum by NAA with non-probe detection','929612','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_92962-0','92962-0','http://loinc.org','Proteus sp DNA [NCncRange] in Bronchoalveolar lavage by NAA with non-probe detection','929620','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_94370-4','94370-4','http://loinc.org','Serratia marcescens DNA [Presence] in Lower respiratory specimen by NAA with probe detection','943704','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_94372-0','94372-0','http://loinc.org','Proteus sp DNA [Presence] in Lower respiratory specimen by NAA with probe detection','943720','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_96327-2','96327-2','http://loinc.org','Proteus sp DNA [NCncRange] in Lower respiratory specimen by NAA with non-probe detection','963272','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_96329-8','96329-8','http://loinc.org','Serratia marcescens DNA [NCncRange] in Lower respiratory specimen by NAA with non-probe detection','963298','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_97613-4','97613-4','http://loinc.org','Citrobacter sp DNA [Presence] in Synovial fluid by NAA with non-probe detection','976134','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_97625-8','97625-8','http://loinc.org','Morganella morganii DNA [Presence] in Synovial fluid by NAA with non-probe detection','976258','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_97630-8','97630-8','http://loinc.org','Proteus sp DNA [Presence] in Synovial fluid by NAA with non-probe detection','976308','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_97633-2','97633-2','http://loinc.org','Serratia marcescens DNA [Presence] in Synovial fluid by NAA with non-probe detection','976332','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_99014-3','99014-3','http://loinc.org','Citrobacter freundii DNA [Presence] in Urine by NAA with probe detection','990143','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_99015-0','99015-0','http://loinc.org','Citrobacter koseri DNA [Presence] in Urine by NAA with probe detection','990150','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_99023-4','99023-4','http://loinc.org','Morganella morganii DNA [Presence] in Urine by NAA with probe detection','990234','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_99024-2','99024-2','http://loinc.org','Proteus sp DNA [Presence] in Urine by NAA with probe detection','990242','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_99028-3','99028-3','http://loinc.org','Serratia marcescens DNA [Presence] in Urine by NAA with probe detection','990283','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_48646-4','48646-4','http://loinc.org','Yersinia sp DNA [Identifier] in Specimen by NAA with probe detection','486464','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_70021-1','70021-1','http://loinc.org','Salmonella typhi DNA [Presence] in Blood by NAA with probe detection','700211','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_79385-1','79385-1','http://loinc.org','Yersinia enterocolitica recN gene [Presence] in Stool by NAA with probe detection','793851','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_82202-3','82202-3','http://loinc.org','Yersinia enterocolitica DNA [Presence] in Stool by NAA with non-probe detection','822023','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_92723-6','92723-6','http://loinc.org','Yersinia enterocolitica DNA [Presence] in Stool by NAA with probe detection','927236','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_101427-3','101427-3','http://loinc.org','Shigella sp DNA [Presence] in Stool by NAA with probe detection','1014273','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_23431-0','23431-0','http://loinc.org','Salmonella gallinarum DNA [Presence] in Specimen by NAA with probe detection','234310','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_23432-8','23432-8','http://loinc.org','Salmonella gallinarum rRNA [Presence] in Specimen by Probe','234328','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_23435-1','23435-1','http://loinc.org','Salmonella pullorum DNA [Presence] in Specimen by NAA with probe detection','234351','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_23436-9','23436-9','http://loinc.org','Salmonella pullorum rRNA [Presence] in Specimen by Probe','234369','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_33691-7','33691-7','http://loinc.org','Yersinia pestis DNA [Presence] in Specimen by NAA with probe detection','336917','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_46455-2','46455-2','http://loinc.org','Shigella sp DNA [Presence] in Specimen by NAA with probe detection','464552','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_49612-5','49612-5','http://loinc.org','Salmonella sp DNA [Presence] in Specimen by NAA with probe detection','496125','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_61361-2','61361-2','http://loinc.org','Klebsiella aerogenes DNA [Presence] in Specimen by NAA with probe detection','613612','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_61370-3','61370-3','http://loinc.org','Salmonella enterica DNA [Presence] in Specimen by NAA with probe detection','613703','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_61398-4','61398-4','http://loinc.org','Escherichia coli DNA [Presence] in Specimen by NAA with probe detection','613984','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_61399-2','61399-2','http://loinc.org','Klebsiella pneumoniae DNA [Presence] in Specimen by NAA with probe detection','613992','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_63423-8','63423-8','http://loinc.org','Escherichia coli eaeA gene [Presence] in Specimen by NAA with probe detection','634238','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_70019-5','70019-5','http://loinc.org','Klebsiella oxytoca DNA [Presence] in Blood by NAA with probe detection','700195','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_76583-4','76583-4','http://loinc.org','Klebsiella pneumoniae phoE gene [Presence] in Swab specimen by NAA with probe detection','765834','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_76598-2','76598-2','http://loinc.org','Klebsiella pneumoniae phoE gene [#/mass] in XXX.tissue by NAA with probe detection','765982','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_76611-3','76611-3','http://loinc.org','Klebsiella pneumoniae phoE gene [#/volume] in XXX.body fluid by NAA with probe detection','766113','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_79383-6','79383-6','http://loinc.org','Salmonella sp rpoD gene [Presence] in Stool by NAA with probe detection','793836','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_80348-6','80348-6','http://loinc.org','Escherichia coli enteropathogenic eae gene [Presence] in Stool by NAA with non-probe detection','803486','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_80349-4','80349-4','http://loinc.org','Escherichia coli enteroaggregative pAA plasmid aggR+aatA genes [Presence] in Stool by NAA with non-probe detection','803494','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_80351-0','80351-0','http://loinc.org','Escherichia coli enterotoxigenic ltA+st1a+st1b genes [Presence] in Stool by NAA with non-probe detection','803510','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_80677-8','80677-8','http://loinc.org','Escherichia coli enterotoxigenic eltA+estB genes [Presence] in Stool by NAA with probe detection','806778','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_80678-6','80678-6','http://loinc.org','Salmonella sp invA+fliC genes [Presence] in Stool by NAA with probe detection','806786','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_81657-9','81657-9','http://loinc.org','Salmonella sp spaO gene [Presence] in Stool by NAA with probe detection','816579','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_81659-5','81659-5','http://loinc.org','Escherichia coli Stx1 and Stx2 toxin stx1 and stx2 genes panel - Stool by NAA with probe detection','816595','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_82182-7','82182-7','http://loinc.org','Escherichia coli K1 DNA [Presence] in Cerebral spinal fluid by NAA with non-probe detection','821827','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_82199-1','82199-1','http://loinc.org','Salmonella enterica+bongori DNA [Presence] in Stool by NAA with non-probe detection','821991','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_87394-3','87394-3','http://loinc.org','Salmonella sp DNA [Cycle Threshold #] in Specimen by NAA with probe detection','873943','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_87951-0','87951-0','http://loinc.org','Escherichia coli eaeA gene [Presence] in Stool by NAA with probe detection','879510','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_88116-9','88116-9','http://loinc.org','Escherichia coli gene panel - Specimen by NAA with probe detection','881169','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_88125-0','88125-0','http://loinc.org','Escherichia coli enterotoxigenic gene panel - Specimen by NAA with probe detection','881250','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_92970-3','92970-3','http://loinc.org','Klebsiella pneumoniae+Klebsiella variicola+Klebsiella quasipneumoniae DNA [NCncRange] in Sputum Qualitative by NAA with non-probe detection','929703','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_92971-1','92971-1','http://loinc.org','Klebsiella pneumoniae+Klebsiella variicola+Klebsiella quasipneumoniae DNA [NCncRange] in Bronchoalveolar lavage Qualitative by NAA with non-probe detection','929711','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_92972-9','92972-9','http://loinc.org','Klebsiella oxytoca DNA [NCncRange] in Sputum by NAA with non-probe detection','929729','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_92973-7','92973-7','http://loinc.org','Klebsiella oxytoca DNA [NCncRange] in Bronchoalveolar lavage by NAA with non-probe detection','929737','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_92974-5','92974-5','http://loinc.org','Klebsiella aerogenes DNA [NCncRange] in Sputum by NAA with non-probe detection','929745','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_92975-2','92975-2','http://loinc.org','Klebsiella aerogenes DNA [NCncRange] in Bronchoalveolar lavage by NAA with non-probe detection','929752','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_92982-8','92982-8','http://loinc.org','Escherichia coli DNA [NCncRange] in Sputum by NAA with non-probe detection','929828','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_92983-6','92983-6','http://loinc.org','Escherichia coli DNA [NCncRange] in Bronchoalveolar lavage by NAA with non-probe detection','929836','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_92984-4','92984-4','http://loinc.org','Enterobacter cloacae complex DNA [NCncRange] in Sputum by NAA with non-probe detection','929844','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_92985-1','92985-1','http://loinc.org','Enterobacter cloacae complex DNA [NCncRange] in Bronchoalveolar lavage by NAA with non-probe detection','929851','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_94374-6','94374-6','http://loinc.org','Klebsiella pneumoniae DNA [Presence] in Lower respiratory specimen by NAA with probe detection','943746','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_94375-3','94375-3','http://loinc.org','Klebsiella oxytoca DNA [Presence] in Lower respiratory specimen by NAA with probe detection','943753','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_94376-1','94376-1','http://loinc.org','Klebsiella aerogenes DNA [Presence] in Lower respiratory specimen by NAA with probe detection','943761','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_94378-7','94378-7','http://loinc.org','Escherichia coli DNA [Presence] in Lower respiratory specimen by NAA with probe detection','943787','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_94379-5','94379-5','http://loinc.org','Enterobacter cloacae complex DNA [Presence] in Lower respiratory specimen by NAA with probe detection','943795','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_94632-7','94632-7','http://loinc.org','Escherichia coli K99 DNA [Cycle Threshold #] in Specimen by NAA with probe detection','946327','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_96318-1','96318-1','http://loinc.org','Enterobacter cloacae complex DNA [NCncRange] in Lower respiratory specimen by NAA with non-probe detection','963181','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_96319-9','96319-9','http://loinc.org','Escherichia coli DNA [NCncRange] in Lower respiratory specimen by NAA with non-probe detection','963199','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_96322-3','96322-3','http://loinc.org','Klebsiella oxytoca DNA [NCncRange] in Lower respiratory specimen by NAA with non-probe detection','963223','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_96323-1','96323-1','http://loinc.org','Klebsiella aerogenes DNA [NCncRange] in Lower respiratory specimen by NAA with non-probe detection','963231','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_96324-9','96324-9','http://loinc.org','Klebsiella pneumoniae+Klebsiella variicola+Klebsiella quasipneumoniae DNA [NCncRange] in Lower respiratory specimen by NAA with non-probe detection','963249','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_97313-1','97313-1','http://loinc.org','Salmonella sp DNA [Presence] in Stool by NAA with probe detection','973131','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_97317-2','97317-2','http://loinc.org','Escherichia coli enteroaggregative DNA [Presence] in Stool by NAA with probe detection','973172','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_97318-0','97318-0','http://loinc.org','Escherichia coli enteropathogenic DNA [Presence] in Stool by NAA with probe detection','973180','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_97319-8','97319-8','http://loinc.org','Escherichia coli enterotoxigenic DNA [Presence] in Stool by NAA with probe detection','973198','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_97616-7','97616-7','http://loinc.org','Enterobacter cloacae complex DNA [Presence] in Synovial fluid by NAA with non-probe detection','976167','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_97619-1','97619-1','http://loinc.org','Escherichia coli DNA [Presence] in Synovial fluid by NAA with non-probe detection','976191','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_97623-3','97623-3','http://loinc.org','Klebsiella aerogenes DNA [Presence] in Synovial fluid by NAA with non-probe detection','976233','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_97624-1','97624-1','http://loinc.org','Klebsiella pneumoniae+Klebsiella variicola+Klebsiella quasipneumoniae DNA [Presence] in Synovial fluid by NAA with non-probe detection','976241','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_97632-4','97632-4','http://loinc.org','Salmonella sp DNA [Presence] in Synovial fluid by NAA with non-probe detection','976324','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_99016-8','99016-8','http://loinc.org','Enterobacter cloacae complex DNA [Presence] in Urine by NAA with probe detection','990168','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_99019-2','99019-2','http://loinc.org','Escherichia coli DNA [Presence] in Urine by NAA with probe detection','990192','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_99020-0','99020-0','http://loinc.org','Klebsiella aerogenes DNA [Presence] in Urine by NAA with probe detection','990200','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_99021-8','99021-8','http://loinc.org','Klebsiella oxytoca DNA [Presence] in Urine by NAA with probe detection','990218','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_99022-6','99022-6','http://loinc.org','Klebsiella pneumoniae DNA [Presence] in Urine by NAA with probe detection','990226','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_99089-5','99089-5','http://loinc.org','Escherichia coli K1 DNA [Presence] in Cerebral spinal fluid by NAA with probe detection','990895','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_33692-5','33692-5','http://loinc.org','Yersinia pestis DNA [Presence] in Isolate by NAA with probe detection','336925','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_38990-8','38990-8','http://loinc.org','Escherichia coli O157:H7 DNA [Presence] in Specimen by NAA with probe detection','389908','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_44088-3','44088-3','http://loinc.org','Escherichia coli O157:H7 DNA [Identifier] in Specimen by NAA with probe detection','440883','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_53947-8','53947-8','http://loinc.org','Escherichia coli Stx1 and Stx2 toxin stx1 and stx2 and H7 flagellar fliC genes [Identifier] in Specimen by NAA with probe detection','539478','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_63427-9','63427-9','http://loinc.org','Escherichia coli Stx1 toxin stx1 gene [Presence] in Specimen by NAA with probe detection','634279','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_63428-7','63428-7','http://loinc.org','Escherichia coli Stx2 toxin stx2 gene [Presence] in Specimen by NAA with probe detection','634287','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_70242-3','70242-3','http://loinc.org','Shigella species+EIEC invasion plasmid antigen H ipaH gene [Presence] in Stool by NAA with probe detection','702423','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_79386-9','79386-9','http://loinc.org','Escherichia coli Stx1 toxin stx1 gene [Presence] in Stool by NAA with probe detection','793869','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_79387-7','79387-7','http://loinc.org','Escherichia coli Stx2 toxin stx2 gene [Presence] in Stool by NAA with probe detection','793877','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_80350-2','80350-2','http://loinc.org','Shigella species+EIEC invasion plasmid antigen H ipaH gene [Presence] in Stool by NAA with non-probe detection','803502','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_80676-0','80676-0','http://loinc.org','Escherichia coli O157 rfbE gene [Presence] in Stool by NAA with probe detection','806760','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_80679-4','80679-4','http://loinc.org','Escherichia coli Stx1 and Stx2 toxin stx1+stx2 genes [Presence] in Stool by NAA with probe detection','806794','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_81285-9','81285-9','http://loinc.org','Escherichia coli Stx1 and Stx2 toxin stx1 and stx2 genes [Identifier] in Stool by NAA with probe detection','812859','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_82203-1','82203-1','http://loinc.org','Escherichia coli Stx1 and Stx2 toxin stx1+stx2 genes [Presence] in Stool by NAA with non-probe detection','822031','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_82204-9','82204-9','http://loinc.org','Escherichia coli O157 DNA [Presence] in Stool by NAA with non-probe detection','822049','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_97320-6','97320-6','http://loinc.org','Escherichia coli O157 DNA [Presence] in Stool by NAA with probe detection','973206','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_87318-2','87318-2','http://loinc.org','Escherichia coli eaeA gene [Presence] in Isolate by NAA with probe detection','873182','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_87319-0','87319-0','http://loinc.org','Escherichia coli enteroaggregative astA gene [Presence] in Isolate by NAA with probe detection','873190','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_87320-8','87320-8','http://loinc.org','Escherichia coli enterotoxigenic heat-labile toxin DNA [Presence] in Isolate by NAA with probe detection','873208','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_87321-6','87321-6','http://loinc.org','Escherichia coli enterotoxigenic sta gene [Presence] in Isolate by NAA with probe detection','873216','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_87322-4','87322-4','http://loinc.org','Escherichia coli enterotoxigenic stb gene [Presence] in Isolate by NAA with probe detection','873224','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_87370-3','87370-3','http://loinc.org','Escherichia coli fasA gene [Presence] in Isolate by NAA with probe detection','873703','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_87371-1','87371-1','http://loinc.org','Escherichia coli fedF gene [Presence] in Isolate by NAA with probe detection','873711','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_87372-9','87372-9','http://loinc.org','Escherichia coli FimF41a gene [Presence] in Isolate by NAA with probe detection','873729','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_87373-7','87373-7','http://loinc.org','Escherichia coli K88 DNA [Presence] in Isolate by NAA with probe detection','873737','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_87374-5','87374-5','http://loinc.org','Escherichia coli K99 DNA [Presence] in Isolate by NAA with probe detection','873745','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_87375-2','87375-2','http://loinc.org','Escherichia coli paa gene [Presence] in Isolate by NAA with probe detection','873752','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_87402-4','87402-4','http://loinc.org','Escherichia coli aidA-I gene [Presence] in Isolate by NAA with probe detection','874024','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_87376-0','87376-0','http://loinc.org','Escherichia coli Stx1 toxin stx1 gene [Presence] in Isolate by NAA with probe detection','873760','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_87377-8','87377-8','http://loinc.org','Escherichia coli Stx2 toxin stx2 gene [Presence] in Isolate by NAA with probe detection','873778','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1881_87380-2','87380-2','http://loinc.org','Escherichia coli Stx2e toxin stx2e gene [Presence] in Isolate by NAA with probe detection','873802','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1417_97527-6','97527-6','http://loinc.org','Acanthamoeba sp Ag [Presence] in Specimen by Immunofluorescence','975276','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1897_10726-8','10726-8','http://loinc.org','Toxoplasma gondii [Presence] in Tissue by Giemsa stain','107268','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1897_30158-0','30158-0','http://loinc.org','Toxoplasma gondii [Presence] in Stool','301580','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1897_10727-6','10727-6','http://loinc.org','Toxoplasma gondii identified in Tissue','107276','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1897_42343-4','42343-4','http://loinc.org','Toxoplasma gondii identified in Specimen by Other stain','423434','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1898_100689-9','100689-9','http://loinc.org','Toxoplasma gondii DNA [Log #/volume] in Serum or Plasma by NAA with probe detection','1006899','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1898_101744-1','101744-1','http://loinc.org','Toxoplasma gondii DNA [Presence] in Plasma by NAA with probe detection','1017441','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1898_101786-2','101786-2','http://loinc.org','Toxoplasma gondii DNA [Presence] in Serum by RT-PCR','1017862','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1898_16279-2','16279-2','http://loinc.org','Toxoplasma gondii DNA [Presence] in Blood by NAA with probe detection','162792','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1898_27999-2','27999-2','http://loinc.org','Toxoplasma gondii DNA [Presence] in Amniotic fluid by NAA with probe detection','279992','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1898_49443-5','49443-5','http://loinc.org','Toxoplasma gondii DNA [#/volume] in Urine by NAA with probe detection','494435','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1898_49444-3','49444-3','http://loinc.org','Toxoplasma gondii DNA [#/volume] in Amniotic fluid by NAA with probe detection','494443','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1898_49445-0','49445-0','http://loinc.org','Toxoplasma gondii DNA [#/volume] in Bronchoalveolar lavage by NAA with probe detection','494450','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1898_49446-8','49446-8','http://loinc.org','Toxoplasma gondii DNA [#/volume] in Bone marrow by NAA with probe detection','494468','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1898_49447-6','49447-6','http://loinc.org','Toxoplasma gondii DNA [#/volume] in Blood by NAA with probe detection','494476','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1898_49449-2','49449-2','http://loinc.org','Toxoplasma gondii DNA [#/volume] in Serum or Plasma by NAA with probe detection','494492','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1898_87983-3','87983-3','http://loinc.org','Toxoplasma gondii DNA [Presence] in Placenta by NAA with probe detection','879833','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1898_87989-0','87989-0','http://loinc.org','Toxoplasma gondii DNA [Presence] in Bone marrow by NAA with probe detection','879890','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1898_87993-2','87993-2','http://loinc.org','Toxoplasma gondii DNA [Presence] in Cord blood by NAA with probe detection','879932','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1898_88164-9','88164-9','http://loinc.org','Toxoplasma gondii DNA [Presence] in Ocular fluid by NAA with probe detection','881649','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1898_100690-7','100690-7','http://loinc.org','Toxoplasma gondii DNA [Log #/volume] in Cerebral spinal fluid by NAA with probe detection','1006907','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1898_42626-2','42626-2','http://loinc.org','Toxoplasma gondii DNA [Presence] in Cerebral spinal fluid by NAA with probe detection','426262','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1898_62465-0','62465-0','http://loinc.org','Toxoplasma gondii DNA [#/volume] in Cerebral spinal fluid by NAA with probe detection','624650','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1898_10725-0','10725-0','http://loinc.org','Toxoplasma gondii DNA [Units/volume] in Body fluid by Probe with amplification','107250','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1898_29904-0','29904-0','http://loinc.org','Toxoplasma gondii DNA [Presence] in Specimen by NAA with probe detection','299040','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1898_49448-4','49448-4','http://loinc.org','Toxoplasma gondii DNA [#/volume] in Specimen by NAA with probe detection','494484','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1898_57441-8','57441-8','http://loinc.org','Toxoplasma gondii DNA [Presence] in Body fluid by NAA with probe detection','574418','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1898_87984-1','87984-1','http://loinc.org','Toxoplasma gondii DNA [Presence] in Tissue by NAA with probe detection','879841','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1896_14838-7','14838-7','http://loinc.org','Toxoplasma gondii [Presence] in Tissue by Organism specific culture','148387','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1896_87982-5','87982-5','http://loinc.org','Toxoplasma gondii [Presence] in Bone marrow by Organism specific culture','879825','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1896_88161-5','88161-5','http://loinc.org','Toxoplasma gondii [Presence] in Ocular fluid by Organism specific culture','881615','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1896_89599-5','89599-5','http://loinc.org','Toxoplasma gondii [Presence] in Cerebral spinal fluid by Organism specific culture','895995','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1896_89632-4','89632-4','http://loinc.org','Toxoplasma gondii [Presence] in Placenta by Organism specific culture','896324','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1896_90301-3','90301-3','http://loinc.org','Toxoplasma gondii [Presence] in Amniotic fluid by Organism specific culture','903013','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1654_100091-8','100091-8','http://loinc.org','Trypanosoma cruzi Ab [Units/volume] in Serum by Immunoassay','1000918','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1654_22599-5','22599-5','http://loinc.org','Trypanosoma cruzi Ab [Titer] in Serum','225995','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1654_23785-9','23785-9','http://loinc.org','Trypanosoma cruzi Ab [Presence] in Serum','237859','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1654_25813-7','25813-7','http://loinc.org','Trypanosoma cruzi Ab [Titer] in Serum by Immunofluorescence','258137','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1654_5398-3','5398-3','http://loinc.org','Trypanosoma cruzi Ab [Titer] in Serum by Complement fixation','53983','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1654_57320-4','57320-4','http://loinc.org','Trypanosoma cruzi Ab [Presence] in Serum or Plasma by Immunoassay','573204','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1654_77952-0','77952-0','http://loinc.org','Trypanosoma cruzi Ab [Presence] in Serum, Plasma or Blood by Rapid immunoassay','779520','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1654_8045-7','8045-7','http://loinc.org','Trypanosoma cruzi Ab [Units/volume] in Serum','80457','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1654_100093-4','100093-4','http://loinc.org','Trypanosoma cruzi 15-16kD IgG Ab [Presence] in Serum by Immunoblot','1000934','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1654_100094-2','100094-2','http://loinc.org','Trypanosoma cruzi 21-22kD IgG Ab [Presence] in Serum by Immunoblot','1000942','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1654_100095-9','100095-9','http://loinc.org','Trypanosoma cruzi 27-28kD IgG Ab [Presence] in Serum by Immunoblot','1000959','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1654_100096-7','100096-7','http://loinc.org','Trypanosoma cruzi 42kD IgG Ab [Presence] in Serum by Immunoblot','1000967','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1654_100097-5','100097-5','http://loinc.org','Trypanosoma cruzi 45-47kD IgG Ab [Presence] in Serum by Immunoblot','1000975','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1654_100098-3','100098-3','http://loinc.org','Trypanosoma cruzi 120-200kD IgG Ab [Presence] in Serum by Immunoblot','1000983','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1654_100099-1','100099-1','http://loinc.org','Trypanosoma cruzi 160kD IgG Ab [Presence] in Serum by Immunoblot','1000991','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1654_13290-2','13290-2','http://loinc.org','Trypanosoma cruzi IgM Ab [Units/volume] in Serum','132902','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1654_13291-0','13291-0','http://loinc.org','Trypanosoma cruzi IgG Ab [Units/volume] in Serum','132910','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1654_14094-7','14094-7','http://loinc.org','Trypanosoma cruzi IgG Ab [Titer] in Serum','140947','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1654_15397-3','15397-3','http://loinc.org','Trypanosoma cruzi IgM Ab [Titer] in Serum','153973','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1654_26989-4','26989-4','http://loinc.org','Trypanosoma cruzi IgM Ab [Presence] in Serum by Immunofluorescence','269894','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1654_30104-4','30104-4','http://loinc.org','Trypanosoma cruzi IgG Ab [Titer] in Specimen','301044','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1654_30105-1','30105-1','http://loinc.org','Trypanosoma cruzi IgM Ab [Titer] in Specimen','301051','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1654_31691-9','31691-9','http://loinc.org','Trypanosoma cruzi IgG Ab [Units/volume] in Specimen','316919','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1654_32725-4','32725-4','http://loinc.org','Trypanosoma cruzi IgG Ab [Presence] in Serum','327254','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1654_32726-2','32726-2','http://loinc.org','Trypanosoma cruzi IgM Ab [Presence] in Serum','327262','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1654_44816-7','44816-7','http://loinc.org','Trypanosoma cruzi IgG Ab [Presence] in Serum by Immunofluorescence','448167','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1654_51827-4','51827-4','http://loinc.org','Trypanosoma cruzi IgM Ab [Units/volume] in Serum by Immunoassay','518274','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1654_59387-1','59387-1','http://loinc.org','Trypanosoma cruzi IgG Ab [Units/volume] in Serum by Immunoassay','593871','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1654_59393-9','59393-9','http://loinc.org','Trypanosoma cruzi IgG Ab [Titer] in Serum by Immunofluorescence','593939','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1654_87994-0','87994-0','http://loinc.org','Trypanosoma cruzi IgG Ab [Presence] in Serum by Immunoassay','879940','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1654_87997-3','87997-3','http://loinc.org','Trypanosoma cruzi IgM Ab [Presence] in Serum by Immunoassay','879973','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1653_49801-4','49801-4','http://loinc.org','Trypanosoma cruzi DNA [Presence] in Blood by NAA with probe detection','498014','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1653_88232-4','88232-4','http://loinc.org','Trypanosoma cruzi DNA [Presence] in Tissue by NAA with probe detection','882324','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1650_70854-5','70854-5','http://loinc.org','Burkholderia mallei Ag [Presence] in Specimen by Immunofluorescence','708545','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1304_89637-3','89637-3','http://loinc.org','Mycobacterium sp identified in Implanted device by Organism specific culture','896373','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1304_42716-1','42716-1','http://loinc.org','Mycobacterium sp rRNA [Identifier] in Isolate by NAA with probe detection','427161','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1304_44851-4','44851-4','http://loinc.org','Mycobacterium sp # 2 identified in Specimen by Organism specific culture','448514','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1304_44852-2','44852-2','http://loinc.org','Mycobacterium sp # 3 identified in Specimen by Organism specific culture','448522','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1304_44854-8','44854-8','http://loinc.org','Mycobacterium sp # 4 identified in Specimen by Organism specific culture','448548','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1304_44855-5','44855-5','http://loinc.org','Mycobacterium sp # 5 identified in Specimen by Organism specific culture','448555','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1304_50941-4','50941-4','http://loinc.org','Mycobacterium sp [Presence] in Specimen by Organism specific culture','509414','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1304_532-2','532-2','http://loinc.org','Mycobacterium sp identified in Aspirate by Organism specific culture','5322','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1304_533-0','533-0','http://loinc.org','Mycobacterium sp identified in Blood by Organism specific culture','5330','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1304_534-8','534-8','http://loinc.org','Mycobacterium sp identified in Cerebral spinal fluid by Organism specific culture','5348','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1304_535-5','535-5','http://loinc.org','Mycobacterium sp identified in Body fluid by Organism specific culture','5355','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1304_536-3','536-3','http://loinc.org','Mycobacterium sp identified in Bone marrow by Organism specific culture','5363','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1304_537-1','537-1','http://loinc.org','Mycobacterium sp identified in Peritoneal fluid by Organism specific culture','5371','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1304_538-9','538-9','http://loinc.org','Mycobacterium sp identified in Synovial fluid by Organism specific culture','5389','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1304_540-5','540-5','http://loinc.org','Mycobacterium sp identified in Tissue by Organism specific culture','5405','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1304_541-3','541-3','http://loinc.org','Mycobacterium sp identified in Urine by Organism specific culture','5413','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1304_542-1','542-1','http://loinc.org','Mycobacterium sp identified in Wound by Organism specific culture','5421','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1304_543-9','543-9','http://loinc.org','Mycobacterium sp identified in Specimen by Organism specific culture','5439','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1304_64412-0','64412-0','http://loinc.org','Mycobacterium sp [Presence] in Blood by Organism specific culture','644120','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1304_67725-2','67725-2','http://loinc.org','Mycobacterium sp identified in Isolate by HPLC','677252','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1304_88167-2','88167-2','http://loinc.org','Mycobacterium sp identified in Cornea or Conjunctiva by Organism specific culture','881672','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1304_88168-0','88168-0','http://loinc.org','Mycobacterium sp identified in Ocular fluid by Organism specific culture','881680','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1304_88183-9','88183-9','http://loinc.org','Mycobacterium sp identified in Isolate by Sequencing','881839','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1304_88266-2','88266-2','http://loinc.org','Mycobacterium sp rRNA [Identifier] by Probe in Positive blood culture','882662','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1304_90284-1','90284-1','http://loinc.org','Mycobacterium sp identified in Bile fluid by Organism specific culture','902841','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1304_90438-3','90438-3','http://loinc.org','Mycobacterium preliminary growth [Presence] in Tissue by Organism specific culture','904383','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1304_91590-0','91590-0','http://loinc.org','Mycobacterium preliminary growth [Presence] in Body fluid by Organism specific culture','915900','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1304_9824-4','9824-4','http://loinc.org','Mycobacterium sp identified in Gastric fluid by Organism specific culture','98244','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1304_9825-1','9825-1','http://loinc.org','Mycobacterium sp identified in Isolate','98251','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1304_53909-8','53909-8','http://loinc.org','Mycobacterium sp identified in Pleural fluid by Organism specific culture','539098','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1788_21497-3','21497-3','http://loinc.org','Rickettsia typhus group IgM Ab [Titer] in Cerebral spinal fluid by Immunofluorescence','214973','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1788_47067-4','47067-4','http://loinc.org','Rickettsia typhi IgM Ab [Titer] in Cerebral spinal fluid by Immunofluorescence','470674','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1788_48915-3','48915-3','http://loinc.org','Rickettsia typhi IgM Ab [Titer] in Body fluid by Immunofluorescence','489153','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1788_5322-3','5322-3','http://loinc.org','Rickettsia typhus group IgM Ab [Titer] in Serum by Immunofluorescence','53223','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1788_5325-6','5325-6','http://loinc.org','Rickettsia typhi IgM Ab [Titer] in Serum by Immunofluorescence','53256','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1788_70133-4','70133-4','http://loinc.org','Rickettsia typhus group IgM Ab [Titer] in Serum by Immunofluorescence --1st specimen','701334','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1788_70134-2','70134-2','http://loinc.org','Rickettsia typhus group IgM Ab [Titer] in Serum by Immunofluorescence --2nd specimen','701342','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1548_14308-1','14308-1','http://loinc.org','Amphetamines [Presence] in Urine by Screen method >1000 ng/mL','143081','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1548_14310-7','14310-7','http://loinc.org','Phencyclidine [Presence] in Urine by Screen method >25 ng/mL','143107','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1548_14314-9','14314-9','http://loinc.org','Benzoylecgonine [Presence] in Urine by Screen method','143149','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1548_14316-4','14316-4','http://loinc.org','Benzodiazepines [Presence] in Urine by Screen method','143164','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1548_18282-4','18282-4','http://loinc.org','Cannabinoids [Presence] in Urine by Screen method','182824','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1548_19261-7','19261-7','http://loinc.org','Amphetamines [Presence] in Urine by Screen method','192617','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1548_19270-8','19270-8','http://loinc.org','Barbiturates [Presence] in Urine by Screen method','192708','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1548_19312-8','19312-8','http://loinc.org','Tricyclic antidepressants [Presence] in Urine by Screen method','193128','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1548_19339-1','19339-1','http://loinc.org','Amobarbital [Presence] in Urine by Screen method','193391','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1548_19343-3','19343-3','http://loinc.org','Amphetamine [Presence] in Urine by Screen method','193433','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1548_19353-2','19353-2','http://loinc.org','Barbital [Presence] in Urine by Screen method','193532','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1548_19359-9','19359-9','http://loinc.org','Cocaine [Presence] in Urine by Screen method','193599','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1548_19368-0','19368-0','http://loinc.org','Butabarbital [Presence] in Urine by Screen method','193680','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1548_19373-0','19373-0','http://loinc.org','Butalbital [Presence] in Urine by Screen method','193730','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1548_19381-3','19381-3','http://loinc.org','Carboxy tetrahydrocannabinol [Presence] in Urine by Screen method','193813','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1548_19415-9','19415-9','http://loinc.org','Tetrahydrocannabinol [Presence] in Urine by Screen method','194159','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1548_19419-1','19419-1','http://loinc.org','Dextroamphetamine [Presence] in Urine by Screen method','194191','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1548_19423-3','19423-3','http://loinc.org','Dextromethamphetamine [Presence] in Urine by Screen method','194233','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1548_19443-1','19443-1','http://loinc.org','diazePAM [Presence] in Urine by Screen method','194431','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1548_19456-3','19456-3','http://loinc.org','Ethylamphetamine [Presence] in Urine by Screen method','194563','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1548_19497-7','19497-7','http://loinc.org','Hydroxytriazolam [Presence] in Urine by Screen method','194977','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1548_19510-7','19510-7','http://loinc.org','Levomethamphetamine [Presence] in Urine by Screen method','195107','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1548_19520-6','19520-6','http://loinc.org','LORazepam [Presence] in Urine by Screen method','195206','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1548_19528-9','19528-9','http://loinc.org','Lysergate diethylamide [Presence] in Urine by Screen method','195289','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1548_19554-5','19554-5','http://loinc.org','Methamphetamine [Presence] in Urine by Screen method','195545','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1548_19558-6','19558-6','http://loinc.org','Methaqualone [Presence] in Urine by Screen method','195586','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1548_19565-1','19565-1','http://loinc.org','Methylenedioxyamphetamine [Presence] in Urine by Screen method','195651','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1548_19568-5','19568-5','http://loinc.org','Methylenedioxymethamphetamine [Presence] in Urine by Screen method','195685','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1548_19573-5','19573-5','http://loinc.org','MethylePHEDrine [Presence] in Urine by Screen method','195735','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1548_19577-6','19577-6','http://loinc.org','Methylphenidate [Presence] in Urine by Screen method','195776','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1548_19638-6','19638-6','http://loinc.org','Oxazepam [Presence] in Urine by Screen method','196386','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1548_19651-9','19651-9','http://loinc.org','Para hydroxyamphetamine [Presence] in Urine by Screen method','196519','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1548_19655-0','19655-0','http://loinc.org','PENTobarbital [Presence] in Urine by Screen method','196550','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1548_19659-2','19659-2','http://loinc.org','Phencyclidine [Presence] in Urine by Screen method','196592','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1548_19662-6','19662-6','http://loinc.org','Phenmetrazine [Presence] in Urine by Screen method','196626','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1548_19674-1','19674-1','http://loinc.org','Phentermine [Presence] in Urine by Screen method','196741','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1548_19692-3','19692-3','http://loinc.org','Secobarbital [Presence] in Urine by Screen method','196923','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1548_20664-9','20664-9','http://loinc.org','Barbiturates [Mass/volume] in Urine by Screen method','206649','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1548_33280-9','33280-9','http://loinc.org','Amphetamine+Methamphetamine [Mass/volume] in Urine by Screen method','332809','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1548_33350-0','33350-0','http://loinc.org','Lysergate diethylamide [Mass/volume] in Urine by Screen method','333500','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1548_42241-0','42241-0','http://loinc.org','Cocaine+Benzoylecgonine [Presence] in Urine by Screen method','422410','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1548_43983-6','43983-6','http://loinc.org','Amphetamines [Presence] in Urine by Screen method >500 ng/mL','439836','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1548_58370-8','58370-8','http://loinc.org','Carisoprodol+Meprobamate [Presence] in Urine by Screen method','583708','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1548_59384-8','59384-8','http://loinc.org','Acetaminophen [Presence] in Urine by Screen method','593848','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1548_59844-1','59844-1','http://loinc.org','Methylenedioxyethylamphetamine [Presence] in Urine by Screen method','598441','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1548_64137-3','64137-3','http://loinc.org','Pregabalin [Presence] in Urine by Screen method','641373','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1548_70138-3','70138-3','http://loinc.org','Amphetamines [Mass/volume] in Urine by Screen method','701383','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1548_70139-1','70139-1','http://loinc.org','Barbiturates [Presence] in Urine by Screen method >300 ng/mL','701391','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1548_70143-3','70143-3','http://loinc.org','Cannabinoids [Mass/volume] in Urine by Screen method','701433','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1548_70144-1','70144-1','http://loinc.org','Cannabinoids [Presence] in Urine by Screen method >20 ng/mL','701441','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1548_70145-8','70145-8','http://loinc.org','Cannabinoids [Presence] in Urine by Screen method >50 ng/mL','701458','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1548_70155-7','70155-7','http://loinc.org','Barbiturates [Presence] in Urine by Screen method >200 ng/mL','701557','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1548_72825-3','72825-3','http://loinc.org','Phencyclidine [Mass/volume] in Urine by Screen method','728253','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1548_73686-8','73686-8','http://loinc.org','Methylone [Presence] in Urine by Screen method','736868','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1548_73687-6','73687-6','http://loinc.org','Methylenedioxypyrovalerone [Presence] in Urine by Screen method','736876','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1548_74001-9','74001-9','http://loinc.org','NBOMe [Presence] in Urine by Screen method','740019','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1548_76492-8','76492-8','http://loinc.org','Amphetamine+Methamphetamine [Presence] in Urine by Screen method','764928','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1548_79141-8','79141-8','http://loinc.org','Cathinone [Presence] in Urine by Screen method','791418','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1548_79144-2','79144-2','http://loinc.org','Methcathinone [Presence] in Urine by Screen method','791442','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1548_80144-9','80144-9','http://loinc.org','Ecgonine methyl ester [Presence] in Urine by Screen method','801449','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1548_80200-9','80200-9','http://loinc.org','Nonsteroidal antiinflammatory drugs [Presence] in Urine by Screen method','802009','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1548_8152-1','8152-1','http://loinc.org','Amphetamines [Presence] in Urine by SAMHSA screen method','81521','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1548_8175-2','8175-2','http://loinc.org','Tetrahydrocannabinol [Presence] in Urine by SAMHSA screen method','81752','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1548_8193-5','8193-5','http://loinc.org','Benzoylecgonine [Presence] in Urine by SAMHSA screen method','81935','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1548_8238-8','8238-8','http://loinc.org','Phencyclidine [Presence] in Urine by SAMHSA screen method','82388','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1548_91037-2','91037-2','http://loinc.org','Methamphetamine+Methylenedioxymethamphetamine [Presence] in Urine by Screen method','910372','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1548_94104-7','94104-7','http://loinc.org','Zolpidem [Presence] in Urine by Screen method','941047','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1548_94112-0','94112-0','http://loinc.org','7-Aminoclonazepam [Presence] in Urine by Screen method','941120','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1548_96058-3','96058-3','http://loinc.org','Mitragynine [Presence] in Urine by Screen method','960583','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1548_96059-1','96059-1','http://loinc.org','Mitragynine [Mass/volume] in Urine by Screen method','960591','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1305_14972-4','14972-4','http://loinc.org','Mycobacterium sp DNA [Presence] in Cerebral spinal fluid by NAA with probe detection','149724','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1305_23247-0','23247-0','http://loinc.org','Mycobacterium sp DNA [Presence] in Tissue by NAA with probe detection','232470','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1305_30523-5','30523-5','http://loinc.org','Mycobacterium sp DNA [Presence] in Urine by NAA with probe detection','305235','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1547_3376-1','3376-1','http://loinc.org','Barbiturates [Presence] in Serum, Plasma or Blood','33761','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1547_42491-1','42491-1','http://loinc.org','Cannabinoids [Presence] in Blood by Screen method','424911','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1547_42662-7','42662-7','http://loinc.org','Benzodiazepines [Presence] in Blood','426627','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1547_51690-6','51690-6','http://loinc.org','Amphetamines [Presence] in Blood by Screen method','516906','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1547_51692-2','51692-2','http://loinc.org','Phencyclidine [Presence] in Blood by Screen method','516922','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1547_72407-0','72407-0','http://loinc.org','Benzoylecgonine [Presence] in Blood by Screen method','724070','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1547_73823-7','73823-7','http://loinc.org','Cocaine+Benzoylecgonine [Presence] in Serum, Plasma or Blood by Screen method','738237','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1547_74157-9','74157-9','http://loinc.org','Cannabinoids [Presence] in Serum, Plasma or Blood by Screen method','741579','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1547_79140-0','79140-0','http://loinc.org','Carisoprodol+Meprobamate [Presence] in Blood by Screen method','791400','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1547_80196-9','80196-9','http://loinc.org','Ecgonine methyl ester [Presence] in Blood by Screen method','801969','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1547_80198-5','80198-5','http://loinc.org','Nonsteroidal antiinflammatory drugs [Presence] in Blood by Screen method','801985','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1547_88059-1','88059-1','http://loinc.org','Acetaminophen [Presence] in Blood by Screen method','880591','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1547_91034-9','91034-9','http://loinc.org','Methamphetamine+Methylenedioxymethamphetamine [Presence] in Serum, Plasma or Blood by Screen method','910349','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1300_23965-7','23965-7','http://loinc.org','Burkholderia pseudomallei IgG Ab [Titer] in Serum','239657','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1300_23973-1','23973-1','http://loinc.org','Burkholderia pseudomallei IgM Ab [Titer] in Serum','239731','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1300_23988-9','23988-9','http://loinc.org','Burkholderia pseudomallei IgG Ab [Titer] in Serum by Immunofluorescence','239889','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1300_23989-7','23989-7','http://loinc.org','Burkholderia pseudomallei IgM Ab [Titer] in Serum by Immunofluorescence','239897','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1300_30090-5','30090-5','http://loinc.org','Burkholderia pseudomallei IgG Ab [Titer] in Specimen by Immunofluorescence','300905','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1300_30091-3','30091-3','http://loinc.org','Burkholderia pseudomallei IgM Ab [Titer] in Specimen by Immunofluorescence','300913','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1300_43069-4','43069-4','http://loinc.org','Burkholderia pseudomallei IgM Ab [Titer] in Specimen','430694','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1300_43070-2','43070-2','http://loinc.org','Burkholderia pseudomallei IgG Ab [Titer] in Specimen','430702','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1421_97526-8','97526-8','http://loinc.org','Balamuthia mandrillaris Ag [Presence] in Specimen by Immunofluorescence','975268','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1420_73837-7','73837-7','http://loinc.org','Galactose-alpha-1,3-galactose (Alpha-Gal) IgE Ab [Units/volume] in Serum','738377','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1420_82541-4','82541-4','http://loinc.org','Cetuximab IgE Ab [Units/volume] in Serum','825414','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1780_32689-2','32689-2','http://loinc.org','Herpes simplex virus identified in Eye by Organism specific culture','326892','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1780_35417-5','35417-5','http://loinc.org','Herpes simplex virus identified in Anal by Organism specific culture','354175','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1780_35418-3','35418-3','http://loinc.org','Herpes simplex virus identified in Bronchial specimen by Organism specific culture','354183','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1780_35420-9','35420-9','http://loinc.org','Herpes simplex virus identified in Cervix by Organism specific culture','354209','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1780_35421-7','35421-7','http://loinc.org','Herpes simplex virus identified in Ear by Organism specific culture','354217','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1780_35423-3','35423-3','http://loinc.org','Herpes simplex virus identified in Vaginal fluid by Organism specific culture','354233','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1780_35424-1','35424-1','http://loinc.org','Herpes simplex virus identified in Penis by Organism specific culture','354241','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1780_35425-8','35425-8','http://loinc.org','Herpes simplex virus identified in Placenta by Organism specific culture','354258','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1780_35426-6','35426-6','http://loinc.org','Herpes simplex virus identified in Pleural fluid by Organism specific culture','354266','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1780_35427-4','35427-4','http://loinc.org','Herpes simplex virus identified in Peritoneal fluid by Organism specific culture','354274','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1780_35428-2','35428-2','http://loinc.org','Herpes simplex virus identified in Synovial fluid by Organism specific culture','354282','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1780_35429-0','35429-0','http://loinc.org','Herpes simplex virus identified in Stool by Organism specific culture','354290','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1780_35430-8','35430-8','http://loinc.org','Herpes simplex virus identified in Throat by Organism specific culture','354308','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1780_35432-4','35432-4','http://loinc.org','Herpes simplex virus identified in Urine by Organism specific culture','354324','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1780_35433-2','35433-2','http://loinc.org','Herpes simplex virus identified in Urethra by Organism specific culture','354332','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1780_35434-0','35434-0','http://loinc.org','Herpes simplex virus identified in Wound by Organism specific culture','354340','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1780_35451-4','35451-4','http://loinc.org','Herpes simplex virus identified in Nasopharynx by Organism specific culture','354514','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1780_44463-8','44463-8','http://loinc.org','Herpes simplex virus 1 [Presence] in Vaginal fluid by Organism specific culture','444638','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1780_44464-6','44464-6','http://loinc.org','Herpes simplex virus 1 [Presence] in Skin by Organism specific culture','444646','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1780_44465-3','44465-3','http://loinc.org','Herpes simplex virus 1 [Presence] in Genital specimen by Organism specific culture','444653','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1780_44466-1','44466-1','http://loinc.org','Herpes simplex virus 1 [Presence] in Throat by Organism specific culture','444661','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1780_44467-9','44467-9','http://loinc.org','Herpes simplex virus 1 [Presence] in Cervix by Organism specific culture','444679','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1780_44468-7','44468-7','http://loinc.org','Herpes simplex virus 1 [Presence] in Anal by Organism specific culture','444687','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1780_44485-1','44485-1','http://loinc.org','Herpes simplex virus 2 [Presence] in Vaginal fluid by Organism specific culture','444851','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1780_44486-9','44486-9','http://loinc.org','Herpes simplex virus 2 [Presence] in Skin by Organism specific culture','444869','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1780_44487-7','44487-7','http://loinc.org','Herpes simplex virus 2 [Presence] in Genital specimen by Organism specific culture','444877','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1780_44488-5','44488-5','http://loinc.org','Herpes simplex virus 2 [Presence] in Throat by Organism specific culture','444885','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1780_44489-3','44489-3','http://loinc.org','Herpes simplex virus 2 [Presence] in Cervix by Organism specific culture','444893','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1780_44490-1','44490-1','http://loinc.org','Herpes simplex virus 2 [Presence] in Anal by Organism specific culture','444901','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1780_5856-0','5856-0','http://loinc.org','Herpes simplex virus identified in Genital specimen by Organism specific culture','58560','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1780_5858-6','5858-6','http://loinc.org','Herpes simplex virus identified in Skin by Organism specific culture','58586','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1780_88127-6','88127-6','http://loinc.org','Herpes simplex virus identified in Cornea or Conjunctiva by Organism specific culture','881276','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1780_88606-9','88606-9','http://loinc.org','Herpes simplex virus identified in Lower respiratory specimen by Organism specific culture','886069','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1780_14084-8','14084-8','http://loinc.org','Herpes simplex virus 1 [Presence] in Isolate by Immunofluorescence','140848','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1780_14085-5','14085-5','http://loinc.org','Herpes simplex virus 2 [Presence] in Isolate by Immunofluorescence','140855','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1780_16291-7','16291-7','http://loinc.org','Herpes simplex virus 1 [Presence] in Specimen by Organism specific culture','162917','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1780_35422-5','35422-5','http://loinc.org','Herpes simplex virus identified in Body fluid by Organism specific culture','354225','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1780_35431-6','35431-6','http://loinc.org','Herpes simplex virus identified in Tissue by Organism specific culture','354316','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1780_43697-2','43697-2','http://loinc.org','Herpes simplex virus identified in Specimen by Shell vial culture','436972','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1780_44484-4','44484-4','http://loinc.org','Herpes simplex virus 2 [Presence] in Specimen by Organism specific culture','444844','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1780_5857-8','5857-8','http://loinc.org','Herpes simplex virus identified in Isolate by Immunofluorescence','58578','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1780_5859-4','5859-4','http://loinc.org','Herpes simplex virus identified in Specimen by Organism specific culture','58594','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1780_91773-2','91773-2','http://loinc.org','Herpes simplex virus identified in Aspirate by Organism specific culture','917732','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1780_35419-1','35419-1','http://loinc.org','Herpes simplex virus identified in Cerebral spinal fluid by Organism specific culture','354191','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1780_43696-4','43696-4','http://loinc.org','Herpes simplex virus identified in Cerebral spinal fluid by Shell vial culture','436964','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1782_13252-2','13252-2','http://loinc.org','Herpes simplex virus 2 IgM Ab [Units/volume] in Cerebral spinal fluid','132522','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1782_13323-1','13323-1','http://loinc.org','Herpes simplex virus 2 Ab [Units/volume] in Serum by Immunofluorescence','133231','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1782_14089-7','14089-7','http://loinc.org','Herpes simplex virus 2 IgG Ab [Titer] in Cerebral spinal fluid by Immunofluorescence','140897','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1782_14090-5','14090-5','http://loinc.org','Herpes simplex virus 2 IgM Ab [Titer] in Cerebral spinal fluid by Immunofluorescence','140905','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1782_16954-0','16954-0','http://loinc.org','Herpes simplex virus 2 Ab [Presence] in Serum','169540','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1782_16955-7','16955-7','http://loinc.org','Herpes simplex virus 2 IgG Ab [Presence] in Serum by Immunoblot','169557','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1782_16956-5','16956-5','http://loinc.org','Herpes simplex virus 2 IgG Ab [Units/volume] in Cerebral spinal fluid','169565','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1782_16957-3','16957-3','http://loinc.org','Herpes simplex virus 2 IgG Ab [Units/volume] in Serum --1st specimen','169573','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1782_16958-1','16958-1','http://loinc.org','Herpes simplex virus 2 IgG Ab [Units/volume] in Serum --2nd specimen','169581','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1782_17851-7','17851-7','http://loinc.org','Herpes simplex virus 2 IgG Ab [Presence] in Serum','178517','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1782_21327-2','21327-2','http://loinc.org','Herpes simplex virus 2 IgM Ab [Titer] in Serum','213272','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1782_22337-0','22337-0','http://loinc.org','Herpes simplex virus 2 IgG Ab [Titer] in Cerebral spinal fluid','223370','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1782_22338-8','22338-8','http://loinc.org','Herpes simplex virus 2 IgM Ab [Titer] in Cerebral spinal fluid','223388','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1782_24014-3','24014-3','http://loinc.org','Herpes simplex virus 2 IgG Ab [Titer] in Serum','240143','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1782_25839-2','25839-2','http://loinc.org','Herpes simplex virus 2 Ab [Titer] in Serum by Immunofluorescence','258392','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1782_25840-0','25840-0','http://loinc.org','Herpes simplex virus 2 Ab [Titer] in Cerebral spinal fluid by Immunofluorescence','258400','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1782_26927-4','26927-4','http://loinc.org','Herpes simplex virus 2 IgM Ab [Titer] in Serum by Immunofluorescence','269274','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1782_27087-6','27087-6','http://loinc.org','Herpes simplex virus 2 Ab [Units/volume] in Cerebral spinal fluid','270876','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1782_27315-1','27315-1','http://loinc.org','Herpes simplex virus 2 IgG Ab [Presence] in Cerebral spinal fluid','273151','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1782_29236-7','29236-7','http://loinc.org','Herpes simplex virus 2 Ab [Units/volume] in Body fluid','292367','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1782_31067-2','31067-2','http://loinc.org','Herpes simplex virus 2 IgG Ab [Units/volume] in Body fluid','310672','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1782_31069-8','31069-8','http://loinc.org','Herpes simplex virus 2 IgM Ab [Titer] in Body fluid by Immunofluorescence','310698','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1782_31412-0','31412-0','http://loinc.org','Herpes simplex virus 2 IgM Ab [Units/volume] in Body fluid','314120','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1782_32181-0','32181-0','http://loinc.org','Herpes simplex virus 2 Ab [Units/volume] in Synovial fluid','321810','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1782_32688-4','32688-4','http://loinc.org','Herpes simplex virus 2 IgM Ab [Presence] in Serum','326884','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1782_32790-8','32790-8','http://loinc.org','Herpes simplex virus 2 IgG Ab [Ratio] in Serum by Immunoassay --1st specimen/2nd specimen','327908','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1782_32834-4','32834-4','http://loinc.org','Herpes simplex virus 2 IgG Ab [Ratio] in Serum --1st specimen/2nd specimen','328344','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1782_41034-0','41034-0','http://loinc.org','Herpes simplex virus 2 Ab [Units/volume] in Cerebral spinal fluid by Immunofluorescence','410340','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1782_42338-4','42338-4','http://loinc.org','Herpes simplex virus 2 glycoprotein G IgG Ab [Units/volume] in Serum','423384','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1782_42606-4','42606-4','http://loinc.org','Herpes simplex virus 2 IgM Ab [Presence] in Cerebral spinal fluid by Immunofluorescence','426064','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1782_43026-4','43026-4','http://loinc.org','Herpes simplex virus 2 IgM Ab [Presence] in Cerebral spinal fluid','430264','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1782_43027-2','43027-2','http://loinc.org','Herpes simplex virus 2 IgM Ab [Titer] in Body fluid','430272','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1782_43028-0','43028-0','http://loinc.org','Herpes simplex virus 2 Ab [Titer] in Serum','430280','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1782_43029-8','43029-8','http://loinc.org','Herpes simplex virus 2 Ab [Titer] in Cerebral spinal fluid','430298','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1782_43180-9','43180-9','http://loinc.org','Herpes simplex virus 2 IgG Ab [Presence] in Serum or Plasma by Immunoassay','431809','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1782_44491-9','44491-9','http://loinc.org','Herpes simplex virus 2 Ab [Presence] in Body fluid','444919','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1782_44492-7','44492-7','http://loinc.org','Herpes simplex virus 2 Ab [Presence] in Cerebral spinal fluid by Immunofluorescence','444927','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1782_44493-5','44493-5','http://loinc.org','Herpes simplex virus 2 Ab [Presence] in Cerebral spinal fluid','444935','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1782_44494-3','44494-3','http://loinc.org','Herpes simplex virus 2 IgM Ab [Presence] in Serum by Immunoassay','444943','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1782_45210-2','45210-2','http://loinc.org','Herpes simplex virus 2 IgM Ab [Presence] in Serum by Immunofluorescence','452102','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1782_48401-4','48401-4','http://loinc.org','Herpes simplex virus 2 glycoprotein G IgG Ab [Units/volume] in Cerebral spinal fluid','484014','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1782_48784-3','48784-3','http://loinc.org','Herpes simplex virus 2 Ab [Presence] in Serum by Immunoassay','487843','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1782_5208-4','5208-4','http://loinc.org','Herpes simplex virus 2 Ab [Units/volume] in Serum by Immunoassay','52084','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1782_5209-2','5209-2','http://loinc.org','Herpes simplex virus 2 IgG Ab [Units/volume] in Serum by Immunoassay','52092','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1782_5210-0','5210-0','http://loinc.org','Herpes simplex virus 2 IgM Ab [Units/volume] in Serum by Immunoassay','52100','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1782_57321-2','57321-2','http://loinc.org','Herpes simplex virus 2 IgG Ab [Units/volume] in Serum by Immunoassay --2nd specimen','573212','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1782_58783-2','58783-2','http://loinc.org','Herpes simplex virus 2 IgM Ab [Units/volume] in Cerebral spinal fluid by Immunoassay','587832','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1782_58785-7','58785-7','http://loinc.org','Herpes simplex virus 2 IgG Ab [Units/volume] in Cerebral spinal fluid by Immunoassay','587857','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1782_7911-1','7911-1','http://loinc.org','Herpes simplex virus 2 Ab [Units/volume] in Serum','79111','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1782_7912-9','7912-9','http://loinc.org','Herpes simplex virus 2 IgG Ab [Units/volume] in Serum','79129','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1782_7913-7','7913-7','http://loinc.org','Herpes simplex virus 2 IgM Ab [Units/volume] in Serum','79137','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1781_103180-6','103180-6','http://loinc.org','Herpes simplex virus 1 DNA [Presence] in Urine by NAA with probe detection','1031806','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1781_103181-4','103181-4','http://loinc.org','Herpes simplex virus 2 DNA [Presence] in Urine by NAA with probe detection','1031814','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1781_80355-1','80355-1','http://loinc.org','Herpes simplex virus 2 genome glycoprotein B 3'' end region+thymidine kinase region C [Presence] in Anogenital specimen by NAA with probe detection','803551','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1781_16953-2','16953-2','http://loinc.org','Herpes simplex virus 1 DNA [Presence] in Serum or Plasma by NAA with probe detection','169532','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1781_16959-9','16959-9','http://loinc.org','Herpes simplex virus 2 DNA [Presence] in Serum or Plasma by NAA with probe detection','169599','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1781_34451-5','34451-5','http://loinc.org','Herpes simplex virus DNA [Presence] in Blood by NAA with probe detection','344515','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1781_44478-6','44478-6','http://loinc.org','Herpes simplex virus 1 DNA [Presence] in Amniotic fluid by NAA with probe detection','444786','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1781_44503-1','44503-1','http://loinc.org','Herpes simplex virus 2 DNA [Presence] in Amniotic fluid by NAA with probe detection','445031','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1781_44517-1','44517-1','http://loinc.org','Herpes simplex virus DNA [Presence] in Amniotic fluid by NAA with probe detection','445171','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1781_44518-9','44518-9','http://loinc.org','Herpes simplex virus DNA [Presence] in Serum or Plasma by NAA with probe detection','445189','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1781_44868-8','44868-8','http://loinc.org','Herpes simplex virus 1+2 DNA [Presence] in Vaginal fluid by NAA with probe detection','448688','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1781_47409-8','47409-8','http://loinc.org','Herpes simplex virus 1+2 DNA [#/volume] (viral load) in Serum or Plasma by NAA with probe detection','474098','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1781_49383-3','49383-3','http://loinc.org','Herpes simplex virus 1+2 DNA [#/volume] (viral load) in Urine by NAA with probe detection','493833','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1781_49384-1','49384-1','http://loinc.org','Herpes simplex virus 1+2 DNA [#/volume] (viral load) in Bone marrow by NAA with probe detection','493841','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1781_49385-8','49385-8','http://loinc.org','Herpes simplex virus 1+2 DNA [#/volume] (viral load) in Amniotic fluid by NAA with probe detection','493858','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1781_49386-6','49386-6','http://loinc.org','Herpes simplex virus 1+2 DNA [#/volume] (viral load) in Bronchoalveolar lavage by NAA with probe detection','493866','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1781_49985-5','49985-5','http://loinc.org','Herpes simplex virus 1 DNA [#/volume] (viral load) in Blood by NAA with probe detection','499855','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1781_49988-9','49988-9','http://loinc.org','Herpes simplex virus 2 DNA [#/volume] (viral load) in Blood by NAA with probe detection','499889','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1781_50660-0','50660-0','http://loinc.org','Herpes simplex virus 1 DNA [#/volume] (viral load) in Serum or Plasma by NAA with probe detection','506600','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1781_50661-8','50661-8','http://loinc.org','Herpes simplex virus 1 DNA [#/volume] (viral load) in Urine by NAA with probe detection','506618','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1781_50662-6','50662-6','http://loinc.org','Herpes simplex virus 2 DNA [#/volume] (viral load) in Serum or Plasma by NAA with probe detection','506626','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1781_50663-4','50663-4','http://loinc.org','Herpes simplex virus 2 DNA [#/volume] (viral load) in Urine by NAA with probe detection','506634','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1781_58414-4','58414-4','http://loinc.org','Herpes simplex virus 1+2 DNA [Presence] in Amniotic fluid by NAA with probe detection','584144','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1781_62470-0','62470-0','http://loinc.org','Herpes simplex virus 1 DNA [#/volume] (viral load) in Bone marrow by NAA with probe detection','624700','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1781_62472-6','62472-6','http://loinc.org','Herpes simplex virus 1 DNA [#/volume] (viral load) in Amniotic fluid by NAA with probe detection','624726','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1781_62473-4','62473-4','http://loinc.org','Herpes simplex virus 1 DNA [#/volume] (viral load) in Bronchoalveolar lavage by NAA with probe detection','624734','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1781_62474-2','62474-2','http://loinc.org','Herpes simplex virus 2 DNA [#/volume] (viral load) in Bone marrow by NAA with probe detection','624742','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1781_62476-7','62476-7','http://loinc.org','Herpes simplex virus 2 DNA [#/volume] (viral load) in Amniotic fluid by NAA with probe detection','624767','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1781_62477-5','62477-5','http://loinc.org','Herpes simplex virus 2 DNA [#/volume] (viral load) in Bronchoalveolar lavage by NAA with probe detection','624775','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1781_80353-6','80353-6','http://loinc.org','Herpes simplex virus 1 genome DNA polymerase region B+thymidine kinase region C [Presence] in Anogenital specimen by NAA with probe detection','803536','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1781_88128-4','88128-4','http://loinc.org','Herpes simplex virus 1 DNA [Presence] in Cornea or Conjunctiva by NAA with probe detection','881284','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1781_88133-4','88133-4','http://loinc.org','Herpes simplex virus 2 DNA [Presence] in Cornea or Conjunctiva by NAA with probe detection','881334','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1781_88138-3','88138-3','http://loinc.org','Herpes simplex virus DNA [Presence] in Cornea or Conjunctiva by NAA with probe detection','881383','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1781_89584-7','89584-7','http://loinc.org','Herpes simplex virus DNA [Presence] in Lower respiratory specimen by NAA with probe detection','895847','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1781_89585-4','89585-4','http://loinc.org','Herpes simplex virus 1 DNA [Presence] in Lower respiratory specimen by NAA with probe detection','895854','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1781_89587-0','89587-0','http://loinc.org','Herpes simplex virus 2 DNA [Presence] in Lower respiratory specimen by NAA with probe detection','895870','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1781_90452-4','90452-4','http://loinc.org','Herpes simplex virus 1 DNA [Presence] in Upper respiratory specimen by NAA with probe detection','904524','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1781_90454-0','90454-0','http://loinc.org','Herpes simplex virus 2 DNA [Presence] in Upper respiratory specimen by NAA with probe detection','904540','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1781_91857-3','91857-3','http://loinc.org','Herpes simplex virus DNA [Presence] in Genital specimen by NAA with probe detection','918573','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1781_91858-1','91858-1','http://loinc.org','Herpes simplex virus 2 DNA [Presence] in Genital specimen by NAA with probe detection','918581','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1781_91859-9','91859-9','http://loinc.org','Herpes simplex virus 1 DNA [Presence] in Genital specimen by NAA with probe detection','918599','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1781_92870-5','92870-5','http://loinc.org','Herpes simplex virus 1 DNA [Presence] in Blood by NAA with probe detection','928705','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1781_92871-3','92871-3','http://loinc.org','Herpes simplex virus 1 DNA [Presence] in Skin by NAA with probe detection','928713','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1781_92872-1','92872-1','http://loinc.org','Herpes simplex virus 1 DNA [Presence] in Anogenital by NAA with probe detection','928721','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1781_92873-9','92873-9','http://loinc.org','Herpes simplex virus 2 DNA [Presence] in Blood by NAA with probe detection','928739','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1781_92874-7','92874-7','http://loinc.org','Herpes simplex virus 2 DNA [Presence] in Skin by NAA with probe detection','928747','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1781_92875-4','92875-4','http://loinc.org','Herpes simplex virus 2 DNA [Presence] in Anogenital by NAA with probe detection','928754','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1781_93438-0','93438-0','http://loinc.org','Herpes simplex virus 2 DNA [Presence] in Blood by NAA with non-probe detection','934380','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1781_93439-8','93439-8','http://loinc.org','Herpes simplex virus 1 DNA [Presence] in Blood by NAA with non-probe detection','934398','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1781_94834-9','94834-9','http://loinc.org','Herpes simplex virus 1+2 DNA [Log #/volume] (viral load) in Amniotic fluid by NAA with probe detection','948349','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1781_94835-6','94835-6','http://loinc.org','Herpes simplex virus 1 DNA [Log #/volume] (viral load) in Amniotic fluid by NAA with probe detection','948356','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1781_94836-4','94836-4','http://loinc.org','Herpes simplex virus 2 DNA [Log #/volume] (viral load) in Amniotic fluid by NAA with probe detection','948364','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1781_16130-7','16130-7','http://loinc.org','Herpes simplex virus 1 DNA [Presence] in Specimen by NAA with probe detection','161307','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1781_16131-5','16131-5','http://loinc.org','Herpes simplex virus 2 DNA [Presence] in Specimen by NAA with probe detection','161315','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1781_20444-6','20444-6','http://loinc.org','Herpes simplex virus 1+2 DNA [Presence] in Specimen by NAA with probe detection','204446','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1781_49381-7','49381-7','http://loinc.org','Herpes simplex virus 1+2 DNA [#/volume] (viral load) in Specimen by NAA with probe detection','493817','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1781_49382-5','49382-5','http://loinc.org','Herpes simplex virus 1+2 DNA [#/volume] (viral load) in Tissue by NAA with probe detection','493825','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1781_49986-3','49986-3','http://loinc.org','Herpes simplex virus 1 DNA [#/volume] (viral load) in Body fluid by NAA with probe detection','499863','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1781_49989-7','49989-7','http://loinc.org','Herpes simplex virus 2 DNA [#/volume] (viral load) in Body fluid by NAA with probe detection','499897','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1781_5014-6','5014-6','http://loinc.org','Herpes simplex virus DNA [Presence] in Specimen by NAA with probe detection','50146','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1781_60461-1','60461-1','http://loinc.org','Herpes simplex virus 1 DNA [#/volume] (viral load) in Specimen by NAA with probe detection','604611','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1781_60462-9','60462-9','http://loinc.org','Herpes simplex virus 2 DNA [#/volume] (viral load) in Specimen by NAA with probe detection','604629','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1781_62471-8','62471-8','http://loinc.org','Herpes simplex virus 1 DNA [#/volume] (viral load) in Tissue by NAA with probe detection','624718','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1781_62475-9','62475-9','http://loinc.org','Herpes simplex virus 2 DNA [#/volume] (viral load) in Tissue by NAA with probe detection','624759','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1781_72838-6','72838-6','http://loinc.org','Herpes simplex virus DNA [Identifier] in Specimen by NAA with probe detection','728386','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1781_86539-4','86539-4','http://loinc.org','Herpes simplex virus 1 DNA [Presence] in Tissue by NAA with probe detection','865394','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1781_86541-0','86541-0','http://loinc.org','Herpes simplex virus 2 DNA [Presence] in Tissue by NAA with probe detection','865410','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1781_86542-8','86542-8','http://loinc.org','Herpes simplex virus DNA [Presence] in Tissue by NAA with probe detection','865428','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1781_90450-8','90450-8','http://loinc.org','Herpes simplex virus DNA [Presence] in Aspirate by NAA with probe detection','904508','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1781_90451-6','90451-6','http://loinc.org','Herpes simplex virus 1 DNA [Presence] in Aspirate by NAA with probe detection','904516','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1781_90453-2','90453-2','http://loinc.org','Herpes simplex virus 2 DNA [Presence] in Aspirate by NAA with probe detection','904532','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1781_94581-6','94581-6','http://loinc.org','Herpes simplex virus 1 DNA [Presence] in Specimen by NAA with non-probe detection','945816','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1781_94582-4','94582-4','http://loinc.org','Herpes simplex virus 2 DNA [Presence] in Specimen by NAA with non-probe detection','945824','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1781_16952-4','16952-4','http://loinc.org','Herpes simplex virus 1 DNA [Presence] in Cerebral spinal fluid by NAA with probe detection','169524','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1781_16960-7','16960-7','http://loinc.org','Herpes simplex virus 2 DNA [Presence] in Cerebral spinal fluid by NAA with probe detection','169607','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1781_32141-4','32141-4','http://loinc.org','Herpes simplex virus 1+2 DNA [Presence] in Cerebral spinal fluid by NAA with probe detection','321414','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1781_34655-1','34655-1','http://loinc.org','Herpes simplex virus 1+2 DNA [#/volume] (viral load) in Cerebral spinal fluid by NAA with probe detection','346551','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1781_49987-1','49987-1','http://loinc.org','Herpes simplex virus 1 DNA [#/volume] (viral load) in Cerebral spinal fluid by NAA with probe detection','499871','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1781_49990-5','49990-5','http://loinc.org','Herpes simplex virus 2 DNA [#/volume] (viral load) in Cerebral spinal fluid by NAA with probe detection','499905','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1781_5013-8','5013-8','http://loinc.org','Herpes simplex virus DNA [Presence] in Cerebral spinal fluid by NAA with probe detection','50138','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1781_82190-0','82190-0','http://loinc.org','Herpes simplex virus 1 DNA [Presence] in Cerebral spinal fluid by NAA with non-probe detection','821900','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1781_82191-8','82191-8','http://loinc.org','Herpes simplex virus 2 DNA [Presence] in Cerebral spinal fluid by NAA with non-probe detection','821918','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1678_61401-6','61401-6','http://loinc.org','Pseudomonas aeruginosa DNA [Presence] in Specimen by NAA with probe detection','614016','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1678_76578-4','76578-4','http://loinc.org','Pseudomonas aeruginosa regA gene [Presence] in Swab specimen by NAA with probe detection','765784','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1678_76593-3','76593-3','http://loinc.org','Pseudomonas aeruginosa regA gene [#/mass] in XXX.tissue by NAA with probe detection','765933','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1678_76606-3','76606-3','http://loinc.org','Pseudomonas aeruginosa regA gene [#/volume] in XXX.body fluid by NAA with probe detection','766063','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1678_92959-6','92959-6','http://loinc.org','Pseudomonas aeruginosa DNA [NCncRange] in Sputum by NAA with non-probe detection','929596','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1678_92960-4','92960-4','http://loinc.org','Pseudomonas aeruginosa DNA [NCncRange] in Bronchoalveolar lavage by NAA with non-probe detection','929604','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1678_94371-2','94371-2','http://loinc.org','Pseudomonas aeruginosa DNA [Presence] in Lower respiratory specimen by NAA with probe detection','943712','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1678_96326-4','96326-4','http://loinc.org','Pseudomonas aeruginosa DNA [NCncRange] in Lower respiratory specimen by NAA with non-probe detection','963264','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1678_97631-6','97631-6','http://loinc.org','Pseudomonas aeruginosa DNA [Presence] in Synovial fluid by NAA with non-probe detection','976316','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1678_99027-5','99027-5','http://loinc.org','Pseudomonas aeruginosa DNA [Presence] in Urine by NAA with probe detection','990275','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1677_100908-3','100908-3','http://loinc.org','Pseudomonas aeruginosa [Presence] in Lower respiratory specimen by Organism specific culture','1009083','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1677_63480-8','63480-8','http://loinc.org','Pseudomonas aeruginosa.multidrug resistant isolate [Presence] in Specimen by Organism specific culture','634808','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1677_85780-5','85780-5','http://loinc.org','Pseudomonas aeruginosa DNA [Presence] by NAA with non-probe detection in Positive blood culture','857805','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1677_88268-8','88268-8','http://loinc.org','Pseudomonas aeruginosa sodA gene [Presence] by Probe in Positive blood culture','882688','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1677_93386-1','93386-1','http://loinc.org','Pseudomonas aeruginosa DNA [Presence] by NAA with probe detection in Positive blood culture','933861','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1311_31949-1','31949-1','http://loinc.org','Respiratory syncytial virus Ag [Presence] in Throat','319491','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1311_31950-9','31950-9','http://loinc.org','Respiratory syncytial virus Ag [Presence] in Specimen','319509','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1311_32040-8','32040-8','http://loinc.org','Respiratory syncytial virus Ag [Presence] in Nose by Immunofluorescence','320408','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1311_33045-6','33045-6','http://loinc.org','Respiratory syncytial virus Ag [Presence] in Nose','330456','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1311_50329-2','50329-2','http://loinc.org','Respiratory syncytial virus Ag [Presence] in Tissue by Immune stain','503292','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1311_5874-3','5874-3','http://loinc.org','Respiratory syncytial virus Ag [Presence] in Throat by Immunoassay','58743','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1311_5875-0','5875-0','http://loinc.org','Respiratory syncytial virus Ag [Presence] in Throat by Immunofluorescence','58750','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1311_5876-8','5876-8','http://loinc.org','Respiratory syncytial virus Ag [Presence] in Specimen by Immunoassay','58768','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1311_5877-6','5877-6','http://loinc.org','Respiratory syncytial virus Ag [Presence] in Specimen by Immunofluorescence','58776','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1311_68966-1','68966-1','http://loinc.org','Respiratory syncytial virus Ag [Presence] in Nasopharynx by Immunoassay','689661','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1311_72885-7','72885-7','http://loinc.org','Respiratory syncytial virus Ag [Presence] in Nasopharynx by Rapid immunoassay','728857','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1311_77389-5','77389-5','http://loinc.org','Respiratory syncytial virus Ag [Presence] in Bronchoalveolar lavage by Immunofluorescence','773895','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1311_77390-3','77390-3','http://loinc.org','Respiratory syncytial virus Ag [Presence] in Nasopharynx by Immunofluorescence','773903','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1311_88909-7','88909-7','http://loinc.org','Respiratory syncytial virus Ag [Presence] in Lower respiratory specimen by Immunofluorescence','889097','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1313_14129-1','14129-1','http://loinc.org','Respiratory syncytial virus [Presence] in Nose by Organism specific culture','141291','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1313_17520-8','17520-8','http://loinc.org','Respiratory syncytial virus identified in Specimen by Organism specific culture','175208','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1313_55100-2','55100-2','http://loinc.org','Respiratory syncytial virus [Presence] in Specimen by Organism specific culture','551002','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1313_60271-4','60271-4','http://loinc.org','Respiratory syncytial virus RNA [Presence] in Isolate by NAA with probe detection','602714','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1313_88527-7','88527-7','http://loinc.org','Respiratory syncytial virus [Presence] in Cornea or Conjunctiva by Organism specific culture','885277','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1313_91782-3','91782-3','http://loinc.org','Respiratory syncytial virus [Presence] in Lower respiratory specimen by Organism specific culture','917823','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1313_91785-6','91785-6','http://loinc.org','Respiratory syncytial virus [Presence] in Upper respiratory specimen by Organism specific culture','917856','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1676_61360-4','61360-4','http://loinc.org','Acinetobacter baumannii DNA [Presence] in Specimen by NAA with probe detection','613604','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1676_94380-3','94380-3','http://loinc.org','Acinetobacter baumannii DNA [Presence] in Lower respiratory specimen by NAA with probe detection','943803','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1676_99013-5','99013-5','http://loinc.org','Acinetobacter baumannii DNA [Presence] in Urine by NAA with probe detection','990135','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1312_101298-8','101298-8','http://loinc.org','Respiratory syncytial virus RNA [Presence] in Throat by NAA with non-probe detection','1012988','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1312_101425-7','101425-7','http://loinc.org','Respiratory syncytial virus A RNA [Presence] in Respiratory system specimen by NAA with probe detection','1014257','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1312_101426-5','101426-5','http://loinc.org','Respiratory syncytial virus B RNA [Presence] in Respiratory system specimen by NAA with probe detection','1014265','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1312_30075-6','30075-6','http://loinc.org','Respiratory syncytial virus A RNA [Presence] in Specimen by NAA with probe detection','300756','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1312_30076-4','30076-4','http://loinc.org','Respiratory syncytial virus B RNA [Presence] in Specimen by NAA with probe detection','300764','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1312_40987-0','40987-0','http://loinc.org','Respiratory syncytial virus RNA [Identifier] in Specimen by NAA with probe detection','409870','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1312_40988-8','40988-8','http://loinc.org','Respiratory syncytial virus RNA [Presence] in Specimen by NAA with probe detection','409888','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1312_76088-4','76088-4','http://loinc.org','Respiratory syncytial virus RNA [Presence] in Bronchoalveolar lavage by NAA with probe detection','760884','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1312_76089-2','76089-2','http://loinc.org','Respiratory syncytial virus RNA [Presence] in Nasopharynx by NAA with probe detection','760892','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1312_77022-2','77022-2','http://loinc.org','Respiratory syncytial virus A RNA [Presence] in Nasopharynx by NAA with probe detection','770222','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1312_77023-0','77023-0','http://loinc.org','Respiratory syncytial virus B RNA [Presence] in Nasopharynx by NAA with probe detection','770230','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1312_80597-8','80597-8','http://loinc.org','Respiratory syncytial virus A 5'' UTR RNA [Presence] in Nasopharynx by NAA with probe detection','805978','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1312_80598-6','80598-6','http://loinc.org','Respiratory syncytial virus B F gene [Presence] in Nasopharynx by NAA with probe detection','805986','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1312_82176-9','82176-9','http://loinc.org','Respiratory syncytial virus RNA [Presence] in Nasopharynx by NAA with non-probe detection','821769','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1312_85479-4','85479-4','http://loinc.org','Respiratory syncytial virus RNA [Presence] in Upper respiratory specimen by NAA with probe detection','854794','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1312_88202-7','88202-7','http://loinc.org','Respiratory syncytial virus B RNA [Presence] in Cornea or Conjunctiva by NAA with probe detection','882027','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1312_88204-3','88204-3','http://loinc.org','Respiratory syncytial virus A RNA [Presence] in Cornea or Conjunctiva by NAA with probe detection','882043','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1312_88528-5','88528-5','http://loinc.org','Respiratory syncytial virus RNA [Presence] in Cornea or Conjunctiva by NAA with probe detection','885285','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1312_88595-4','88595-4','http://loinc.org','Respiratory syncytial virus A RNA [Presence] in Lower respiratory specimen by NAA with probe detection','885954','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1312_88597-0','88597-0','http://loinc.org','Respiratory syncytial virus B RNA [Presence] in Lower respiratory specimen by NAA with probe detection','885970','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1312_91133-9','91133-9','http://loinc.org','Respiratory syncytial virus RNA [Presence] in Lower respiratory specimen by NAA with probe detection','911339','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1312_91794-8','91794-8','http://loinc.org','Respiratory syncytial virus B RNA [Presence] in Upper respiratory specimen by NAA with probe detection','917948','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1312_91795-5','91795-5','http://loinc.org','Respiratory syncytial virus A RNA [Presence] in Upper respiratory specimen by NAA with probe detection','917955','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1312_92131-2','92131-2','http://loinc.org','Respiratory syncytial virus RNA [Presence] in Respiratory system specimen by NAA with probe detection','921312','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1312_92957-0','92957-0','http://loinc.org','Respiratory syncytial virus RNA [Presence] in Lower respiratory specimen by NAA with non-probe detection','929570','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1675_85770-6','85770-6','http://loinc.org','Acinetobacter baumannii DNA [Presence] by NAA with non-probe detection in Positive blood culture','857706','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1675_93406-7','93406-7','http://loinc.org','Acinetobacter baumannii DNA [Presence] by NAA with probe detection in Positive blood culture','934067','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1793_32158-8','32158-8','http://loinc.org','Klebsiella granulomatis [Presence] in Genital specimen by Light microscopy','321588','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1568_86581-6','86581-6','http://loinc.org','Neisseria meningitidis [Presence] in Cerebral spinal fluid by Organism specific culture','865816','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1567_49110-0','49110-0','http://loinc.org','Mycoplasma sp identified in Urine by Organism specific culture','491100','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1567_6486-5','6486-5','http://loinc.org','Mycoplasma sp identified in Specimen by Organism specific culture','64865','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1567_16134-9','16134-9','http://loinc.org','Neisseria meningitidis [Presence] in Specimen by Organism specific culture','161349','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1567_49721-4','49721-4','http://loinc.org','Haemophilus influenzae type [Identifier] in Isolate','497214','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1567_52968-5','52968-5','http://loinc.org','Streptococcus agalactiae [Presence] in Anal by Organism specific culture','529685','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1567_581-9','581-9','http://loinc.org','Streptococcus agalactiae [Presence] in Cervix by Organism specific culture','5819','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1567_582-7','582-7','http://loinc.org','Streptococcus agalactiae [Presence] in Genital specimen by Organism specific culture','5827','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1567_583-5','583-5','http://loinc.org','Streptococcus agalactiae [Presence] in Genital lochia by Organism specific culture','5835','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1567_584-3','584-3','http://loinc.org','Streptococcus agalactiae [Presence] in Vaginal fluid by Organism specific culture','5843','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1567_585-0','585-0','http://loinc.org','Streptococcus agalactiae [Presence] in Throat by Organism specific culture','5850','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1567_58739-4','58739-4','http://loinc.org','Haemophilus influenzae serotype [Identifier] in Isolate by Agglutination','587394','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1567_5878-4','5878-4','http://loinc.org','Rickettsia sp identified in Blood by Organism specific culture','58784','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1567_6544-1','6544-1','http://loinc.org','Rickettsia sp identified in Genital specimen by Organism specific culture','65441','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1567_6545-8','6545-8','http://loinc.org','Rickettsia sp identified in Sputum by Organism specific culture','65458','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1567_69410-9','69410-9','http://loinc.org','Haemophilus influenzae [Identifier] in Specimen by Organism specific culture','694109','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1567_70172-2','70172-2','http://loinc.org','Neisseria meningitidis serogroup [Identifier] in Specimen','701722','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1567_72607-5','72607-5','http://loinc.org','Streptococcus agalactiae [Presence] in Vag+Rectum by Organism specific culture','726075','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1567_73674-4','73674-4','http://loinc.org','Streptococcus pneumoniae serotype [Type] in Isolate by Agglutination','736744','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1567_73685-0','73685-0','http://loinc.org','Streptococcus pneumoniae Ag [Presence] in Isolate by Latex agglutination','736850','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1567_85767-2','85767-2','http://loinc.org','Streptococcus agalactiae DNA [Presence] by NAA with non-probe detection in Positive blood culture','857672','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1567_87958-5','87958-5','http://loinc.org','Neisseria meningitidis [Presence] in Throat by Organism specific culture','879585','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1567_88273-8','88273-8','http://loinc.org','Streptococcus agalactiae hsp60 gene [Presence] by Probe in Positive blood culture','882738','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1567_88722-4','88722-4','http://loinc.org','Streptococcus pneumoniae serotype [Type] in Isolate','887224','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1567_91788-0','91788-0','http://loinc.org','Neisseria meningitidis [Presence] in Upper respiratory specimen by Organism specific culture','917880','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1567_92773-1','92773-1','http://loinc.org','Streptococcus agalactiae DNA [Presence] by NAA with probe detection in Positive blood culture','927731','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1567_13318-1','13318-1','http://loinc.org','Escherichia coli enteroinvasive identified in Stool by Organism specific culture','133181','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1567_16832-8','16832-8','http://loinc.org','Escherichia coli enterotoxic identified in Stool by Organism specific culture','168328','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1567_20789-4','20789-4','http://loinc.org','Escherichia coli serotype [Identifier] in Isolate','207894','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1567_38354-7','38354-7','http://loinc.org','Bartonella sp identified in Specimen by Organism specific culture','383547','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1567_42368-1','42368-1','http://loinc.org','Neisseria meningitidis serogroup w135 Ag [Presence] in Isolate by Agglutination','423681','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1567_42369-9','42369-9','http://loinc.org','Neisseria meningitidis serogroup A Ag [Presence] in Isolate by Agglutination','423699','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1567_42370-7','42370-7','http://loinc.org','Neisseria meningitidis serogroup B Ag [Presence] in Isolate by Agglutination','423707','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1567_42371-5','42371-5','http://loinc.org','Neisseria meningitidis serogroup C Ag [Presence] in Isolate by Agglutination','423715','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1567_42372-3','42372-3','http://loinc.org','Neisseria meningitidis serogroup D Ag [Presence] in Isolate by Agglutination','423723','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1567_42373-1','42373-1','http://loinc.org','Neisseria meningitidis serogroup X Ag [Presence] in Isolate by Agglutination','423731','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1567_42374-9','42374-9','http://loinc.org','Neisseria meningitidis serogroup Y Ag [Presence] in Isolate by Agglutination','423749','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1567_42375-6','42375-6','http://loinc.org','Neisseria meningitidis serogroup Z Ag [Presence] in Isolate by Agglutination','423756','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1567_42376-4','42376-4','http://loinc.org','Neisseria meningitidis serogroup Z'' Ag [Presence] in Isolate by Agglutination','423764','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1567_44093-3','44093-3','http://loinc.org','Neisseria meningitidis [Identifier] in Isolate by Organism specific culture','440933','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1567_45183-1','45183-1','http://loinc.org','Neisseria meningitidis [Identifier] in Isolate by Agglutination','451831','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1567_48873-4','48873-4','http://loinc.org','Ehrlichia sp identified in Specimen by Organism specific culture','488734','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1567_53944-5','53944-5','http://loinc.org','Escherichia coli enteroinvasive [Presence] in Isolate','539445','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1567_53945-2','53945-2','http://loinc.org','Escherichia coli adherence pattern [Identifier] in Isolate by Hep2 substrate','539452','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1567_586-8','586-8','http://loinc.org','Streptococcus agalactiae [Presence] in Specimen by Organism specific culture','5868','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1567_6546-6','6546-6','http://loinc.org','Rickettsia sp identified in Specimen by Organism specific culture','65466','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1567_73702-3','73702-3','http://loinc.org','Neisseria meningitidis serosubtype [Type] in Isolate by Immunoassay','737023','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1567_73961-5','73961-5','http://loinc.org','Escherichia coli and Klebsiella pneumoniae and Pseudomonas aeruginosa rRNA [Identifier] by FISH in Positive blood culture','739615','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1567_85768-0','85768-0','http://loinc.org','Streptococcus pneumoniae DNA [Presence] by NAA with non-probe detection in Positive blood culture','857680','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1567_85778-9','85778-9','http://loinc.org','Haemophilus influenzae DNA [Presence] by NAA with non-probe detection in Positive blood culture','857789','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1567_85779-7','85779-7','http://loinc.org','Neisseria meningitidis DNA [Presence] by NAA with non-probe detection in Positive blood culture','857797','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1567_88258-9','88258-9','http://loinc.org','Escherichia coli oppA gene [Presence] by Probe in Positive blood culture','882589','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1567_88275-3','88275-3','http://loinc.org','Streptococcus pneumoniae gryB gene [Presence] by Probe in Positive blood culture','882753','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1567_10851-4','10851-4','http://loinc.org','Escherichia coli O157:H7 [Presence] in Stool by Organism specific culture','108514','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1567_16835-1','16835-1','http://loinc.org','Escherichia coli shiga-like toxin identified in Stool by Organism specific culture','168351','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1567_16836-9','16836-9','http://loinc.org','Escherichia coli verotoxic identified in Stool by Organism specific culture','168369','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1567_44089-1','44089-1','http://loinc.org','Escherichia coli O157:H7 [Identifier] in Specimen by Organism specific culture','440891','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1567_44090-9','44090-9','http://loinc.org','Escherichia coli O157:H7 [Presence] in Isolate by Organism specific culture','440909','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1567_45162-5','45162-5','http://loinc.org','Escherichia coli O157 Ag [Presence] in Isolate by Latex agglutination','451625','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1567_53955-1','53955-1','http://loinc.org','Escherichia coli O157 identified in Isolate by Organism specific culture','539551','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1567_82303-9','82303-9','http://loinc.org','Escherichia coli O157 [Presence] in Stool by Culture','823039','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1567_86581-6','86581-6','http://loinc.org','Neisseria meningitidis [Presence] in Cerebral spinal fluid by Organism specific culture','865816','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1567_92771-5','92771-5','http://loinc.org','Streptococcus pneumoniae DNA [Presence] by NAA with probe detection in Positive blood culture','927715','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1567_85763-1','85763-1','http://loinc.org','Listeria monocytogenes DNA [Presence] by NAA with non-probe detection in Positive blood culture','857631','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1567_92780-6','92780-6','http://loinc.org','Listeria monocytogenes DNA [Presence] by NAA with probe detection in Positive blood culture','927806','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1567_87376-0','87376-0','http://loinc.org','Escherichia coli Stx1 toxin stx1 gene [Presence] in Isolate by NAA with probe detection','873760','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1567_87377-8','87377-8','http://loinc.org','Escherichia coli Stx2 toxin stx2 gene [Presence] in Isolate by NAA with probe detection','873778','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1567_87380-2','87380-2','http://loinc.org','Escherichia coli Stx2e toxin stx2e gene [Presence] in Isolate by NAA with probe detection','873802','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1566_101818-3','101818-3','http://loinc.org','Herpes virus 6 DNA [Units/volume] in Cerebral spinal fluid by NAA with probe detection','1018183','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1566_33942-4','33942-4','http://loinc.org','Herpes virus 6 DNA [Presence] in Cerebral spinal fluid by NAA with probe detection','339424','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1566_49388-2','49388-2','http://loinc.org','Herpes virus 6 DNA [#/volume] (viral load) in Cerebral spinal fluid by NAA with probe detection','493882','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1566_49400-5','49400-5','http://loinc.org','Herpes virus 7 DNA [#/volume] (viral load) in Cerebral spinal fluid by NAA with probe detection','494005','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1566_49407-0','49407-0','http://loinc.org','Herpes virus 8 DNA [#/volume] (viral load) in Cerebral spinal fluid by NAA with probe detection','494070','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1566_62481-7','62481-7','http://loinc.org','Herpes virus 6A DNA [Presence] in Cerebral spinal fluid by NAA with probe detection','624817','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1566_62482-5','62482-5','http://loinc.org','Herpes virus 6B DNA [Presence] in Cerebral spinal fluid by NAA with probe detection','624825','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1566_77959-5','77959-5','http://loinc.org','Yellow fever virus ns5 gene [Presence] in Cerebral spinal fluid by NAA with non-probe detection','779595','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1566_82192-6','82192-6','http://loinc.org','Herpes virus 6 DNA [Presence] in Cerebral spinal fluid by NAA with non-probe detection','821926','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1566_97752-0','97752-0','http://loinc.org','Herpes virus 6 DNA [Log #/volume] (viral load) in Cerebral spinal fluid by NAA with probe detection','977520','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1566_26690-8','26690-8','http://loinc.org','Western equine encephalitis virus RNA [Presence] in Cerebral spinal fluid by Probe','266908','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1566_26825-0','26825-0','http://loinc.org','Eastern equine encephalitis virus RNA [Presence] in Cerebral spinal fluid by Probe','268250','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1566_34450-7','34450-7','http://loinc.org','Eastern equine encephalitis virus RNA [Presence] in Cerebral spinal fluid by NAA with probe detection','344507','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1566_34457-2','34457-2','http://loinc.org','Powassan virus RNA [Presence] in Cerebral spinal fluid by NAA with probe detection','344572','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1566_34461-4','34461-4','http://loinc.org','West Nile virus RNA [Presence] in Cerebral spinal fluid by NAA with probe detection','344614','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1566_77958-7','77958-7','http://loinc.org','Dengue virus 1 and 2 and 3 and 4 RNA [Identifier] in Cerebral spinal fluid by NAA with probe detection','779587','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1566_80826-1','80826-1','http://loinc.org','Zika virus envelope E gene [Presence] in Cerebral spinal fluid by NAA with probe detection','808261','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1566_81151-3','81151-3','http://loinc.org','Dengue virus 1+2+3+4 5'' UTR RNA [Presence] in Cerebral spinal fluid by NAA with probe detection','811513','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1566_86594-9','86594-9','http://loinc.org','Zika virus RNA [Presence] in Cerebral spinal fluid by NAA with probe detection','865949','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1566_88598-8','88598-8','http://loinc.org','Toscana virus RNA [Presence] in Cerebral spinal fluid by NAA with probe detection','885988','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1566_27950-5','27950-5','http://loinc.org','Saint Louis encephalitis virus RNA [Presence] in Cerebral spinal fluid by Probe','279505','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1566_34459-8','34459-8','http://loinc.org','Saint Louis encephalitis virus RNA [Presence] in Cerebral spinal fluid by NAA with probe detection','344598','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1566_7968-1','7968-1','http://loinc.org','Mumps virus RNA [Presence] in Cerebral spinal fluid by NAA with probe detection','79681','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1566_81153-9','81153-9','http://loinc.org','Chikungunya virus non-structural protein 1 (nsP1) RNA [Presence] in Cerebral spinal fluid by NAA with probe detection','811539','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1566_86571-7','86571-7','http://loinc.org','Influenza virus B RNA [Presence] in Cerebral spinal fluid by NAA with probe detection','865717','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1566_86575-8','86575-8','http://loinc.org','Measles virus RNA [Presence] in Cerebral spinal fluid by NAA with probe detection','865758','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1566_27952-1','27952-1','http://loinc.org','Enterovirus RNA [Presence] in Cerebral spinal fluid by Probe','279521','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1566_29558-4','29558-4','http://loinc.org','Enterovirus RNA [Presence] in Cerebral spinal fluid by NAA with probe detection','295584','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1566_34453-1','34453-1','http://loinc.org','Jamestown canyon virus RNA [Presence] in Cerebral spinal fluid by NAA with probe detection','344531','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1566_34455-6','34455-6','http://loinc.org','La Crosse virus RNA [Presence] in Cerebral spinal fluid by NAA with probe detection','344556','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1566_34462-2','34462-2','http://loinc.org','California serogroup RNA [Presence] in Cerebral spinal fluid by NAA with probe detection','344622','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1566_62463-5','62463-5','http://loinc.org','Enterovirus RNA [#/volume] (viral load) in Cerebral spinal fluid by NAA with probe detection','624635','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1566_82194-2','82194-2','http://loinc.org','Enterovirus RNA [Presence] in Cerebral spinal fluid by NAA with non-probe detection','821942','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1566_16952-4','16952-4','http://loinc.org','Herpes simplex virus 1 DNA [Presence] in Cerebral spinal fluid by NAA with probe detection','169524','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1566_16960-7','16960-7','http://loinc.org','Herpes simplex virus 2 DNA [Presence] in Cerebral spinal fluid by NAA with probe detection','169607','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1566_32141-4','32141-4','http://loinc.org','Herpes simplex virus 1+2 DNA [Presence] in Cerebral spinal fluid by NAA with probe detection','321414','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1566_34655-1','34655-1','http://loinc.org','Herpes simplex virus 1+2 DNA [#/volume] (viral load) in Cerebral spinal fluid by NAA with probe detection','346551','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1566_49987-1','49987-1','http://loinc.org','Herpes simplex virus 1 DNA [#/volume] (viral load) in Cerebral spinal fluid by NAA with probe detection','499871','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1566_49990-5','49990-5','http://loinc.org','Herpes simplex virus 2 DNA [#/volume] (viral load) in Cerebral spinal fluid by NAA with probe detection','499905','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1566_5013-8','5013-8','http://loinc.org','Herpes simplex virus DNA [Presence] in Cerebral spinal fluid by NAA with probe detection','50138','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1566_82190-0','82190-0','http://loinc.org','Herpes simplex virus 1 DNA [Presence] in Cerebral spinal fluid by NAA with non-probe detection','821900','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1566_82191-8','82191-8','http://loinc.org','Herpes simplex virus 2 DNA [Presence] in Cerebral spinal fluid by NAA with non-probe detection','821918','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1566_86568-3','86568-3','http://loinc.org','Influenza virus A RNA [Presence] in Cerebral spinal fluid by NAA with probe detection','865683','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1566_88207-6','88207-6','http://loinc.org','Lymphocytic choriomeningitis virus RNA [Presence] in Cerebral spinal fluid by NAA with probe detection','882076','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_100679-0','100679-0','http://loinc.org','Herpes virus 6 DNA [Log #/volume] (viral load) in Serum or Plasma by NAA with probe detection','1006790','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_100680-8','100680-8','http://loinc.org','Herpes virus 6 DNA [Log #/volume] (viral load) in Blood by NAA with probe detection','1006808','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_100681-6','100681-6','http://loinc.org','Herpes virus 7 DNA [Log #/volume] (viral load) in Serum or Plasma by NAA with probe detection','1006816','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_100682-4','100682-4','http://loinc.org','Herpes virus 7 DNA [Log #/volume] (viral load) in Blood by NAA with probe detection','1006824','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_100683-2','100683-2','http://loinc.org','Herpes virus 8 DNA [Log #/volume] (viral load) in Serum or Plasma by NAA with probe detection','1006832','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_100684-0','100684-0','http://loinc.org','Herpes virus 8 DNA [Log #/volume] (viral load) in Blood by NAA with probe detection','1006840','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_101254-1','101254-1','http://loinc.org','Herpes virus 6 DNA [Units/volume] (viral load) in Serum or Plasma by NAA with probe detection','1012541','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_101255-8','101255-8','http://loinc.org','Herpes virus 6 DNA [Units/volume] (viral load) in Blood by NAA with probe detection','1012558','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_32364-2','32364-2','http://loinc.org','Herpes virus 8 DNA [Presence] in Serum or Plasma by NAA with probe detection','323642','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_33941-6','33941-6','http://loinc.org','Herpes virus 6 DNA [Presence] in Blood by NAA with probe detection','339416','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_43244-3','43244-3','http://loinc.org','Herpes virus 6 DNA [Presence] in Serum by NAA with probe detection','432443','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_47410-6','47410-6','http://loinc.org','Herpes virus 6 DNA [Identifier] in Serum or Plasma by NAA with probe detection','474106','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_49102-7','49102-7','http://loinc.org','Herpes virus 8 DNA [Units/volume] (viral load) in Serum or Plasma by NAA with probe detection','491027','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_49387-4','49387-4','http://loinc.org','Herpes virus 6 DNA [#/volume] (viral load) in Bronchoalveolar lavage by NAA with probe detection','493874','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_49389-0','49389-0','http://loinc.org','Herpes virus 6 DNA [#/volume] (viral load) in Bone marrow by NAA with probe detection','493890','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_49391-6','49391-6','http://loinc.org','Herpes virus 6 DNA [#/volume] (viral load) in Blood by NAA with probe detection','493916','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_49392-4','49392-4','http://loinc.org','Herpes virus 6 DNA [#/volume] (viral load) in Serum or Plasma by NAA with probe detection','493924','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_49393-2','49393-2','http://loinc.org','Herpes virus 6 DNA [#/volume] (viral load) in Urine by NAA with probe detection','493932','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_49394-0','49394-0','http://loinc.org','Herpes virus 7 DNA [#/volume] (viral load) in Urine by NAA with probe detection','493940','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_49395-7','49395-7','http://loinc.org','Herpes virus 7 DNA [#/volume] (viral load) in Bronchoalveolar lavage by NAA with probe detection','493957','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_49396-5','49396-5','http://loinc.org','Herpes virus 7 DNA [#/volume] (viral load) in Bone marrow by NAA with probe detection','493965','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_49397-3','49397-3','http://loinc.org','Herpes virus 7 DNA [#/volume] (viral load) in Serum or Plasma by NAA with probe detection','493973','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_49398-1','49398-1','http://loinc.org','Herpes virus 7 DNA [#/volume] (viral load) in Blood by NAA with probe detection','493981','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_49401-3','49401-3','http://loinc.org','Herpes virus 7 DNA [#/volume] (viral load) in Tissue by NAA with probe detection','494013','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_49402-1','49402-1','http://loinc.org','Herpes virus 8 DNA [#/volume] (viral load) in Tissue by NAA with probe detection','494021','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_49404-7','49404-7','http://loinc.org','Herpes virus 8 DNA [#/volume] (viral load) in Serum or Plasma by NAA with probe detection','494047','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_49405-4','49405-4','http://loinc.org','Herpes virus 8 DNA [#/volume] (viral load) in Urine by NAA with probe detection','494054','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_49406-2','49406-2','http://loinc.org','Herpes virus 8 DNA [#/volume] (viral load) in Blood by NAA with probe detection','494062','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_49408-8','49408-8','http://loinc.org','Herpes virus 8 DNA [#/volume] (viral load) in Bone marrow by NAA with probe detection','494088','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_49409-6','49409-6','http://loinc.org','Herpes virus 8 DNA [#/volume] (viral load) in Bronchoalveolar lavage by NAA with probe detection','494096','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_60267-2','60267-2','http://loinc.org','Influenza virus C RNA [Presence] in Isolate by NAA with probe detection','602672','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_62483-3','62483-3','http://loinc.org','Herpes virus 6A DNA [Presence] in Serum or Plasma by NAA with probe detection','624833','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_62484-1','62484-1','http://loinc.org','Herpes virus 6B DNA [Presence] in Serum or Plasma by NAA with probe detection','624841','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_81154-7','81154-7','http://loinc.org','Dengue and Chikungunya and Zika virus panel by NAA with probe detection','811547','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_82519-0','82519-0','http://loinc.org','Dengue virus 1+3 and 2+4 panel - Serum by NAA with probe detection','825190','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_85806-8','85806-8','http://loinc.org','Measles virus RNA and N gene panel - Specimen by NAA with probe detection','858068','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_85808-4','85808-4','http://loinc.org','Mumps virus RNA and SH gene panel - Specimen by NAA with probe detection','858084','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_86543-6','86543-6','http://loinc.org','Herpes virus 6 DNA [Presence] in Bone marrow by NAA with probe detection','865436','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_86544-4','86544-4','http://loinc.org','Herpes virus 7 DNA [Presence] in Blood by NAA with probe detection','865444','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_86545-1','86545-1','http://loinc.org','Herpes virus 8 DNA [Presence] in Blood by NAA with probe detection','865451','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_86546-9','86546-9','http://loinc.org','Herpes virus 8 DNA [Presence] in Tissue by NAA with probe detection','865469','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_95423-0','95423-0','http://loinc.org','Influenza virus A and B and SARS-CoV-2 (COVID-19) identified in Respiratory system specimen by NAA with probe detection','954230','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_100343-3','100343-3','http://loinc.org','Influenza virus B RNA [Presence] in Saliva (oral fluid) by NAA with probe detection','1003433','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_16953-2','16953-2','http://loinc.org','Herpes simplex virus 1 DNA [Presence] in Serum or Plasma by NAA with probe detection','169532','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_16959-9','16959-9','http://loinc.org','Herpes simplex virus 2 DNA [Presence] in Serum or Plasma by NAA with probe detection','169599','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_23051-6','23051-6','http://loinc.org','Eastern equine encephalitis virus RNA [Presence] in Tissue by NAA with probe detection','230516','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_23052-4','23052-4','http://loinc.org','Eastern equine encephalitis virus RNA [Presence] in Tissue by Probe','230524','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_29495-9','29495-9','http://loinc.org','Herpes virus 6 DNA [Presence] in Specimen by NAA with probe detection','294959','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_32361-8','32361-8','http://loinc.org','West Nile virus RNA [Presence] in Serum by NAA with probe detection','323618','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_32370-9','32370-9','http://loinc.org','West Nile virus RNA [Presence] in Tissue by NAA with probe detection','323709','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_33940-8','33940-8','http://loinc.org','Herpes virus 6 DNA [Presence] in Tissue by NAA with probe detection','339408','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_34449-9','34449-9','http://loinc.org','Eastern equine encephalitis virus RNA [Presence] in Blood by NAA with probe detection','344499','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_34451-5','34451-5','http://loinc.org','Herpes simplex virus DNA [Presence] in Blood by NAA with probe detection','344515','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_34456-4','34456-4','http://loinc.org','Powassan virus RNA [Presence] in Blood by NAA with probe detection','344564','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_34458-0','34458-0','http://loinc.org','Saint Louis encephalitis virus RNA [Presence] in Blood by NAA with probe detection','344580','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_34460-6','34460-6','http://loinc.org','West Nile virus RNA [Presence] in Blood by NAA with probe detection','344606','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_38348-9','38348-9','http://loinc.org','Herpes virus 6 DNA [Identifier] in Specimen by NAA with probe detection','383489','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_38349-7','38349-7','http://loinc.org','Herpes virus 6 DNA [#/volume] (viral load) in Specimen by NAA with probe detection','383497','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_38350-5','38350-5','http://loinc.org','Herpes virus 6 DNA [Log #/volume] (viral load) in Specimen by NAA with probe detection','383505','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_44423-2','44423-2','http://loinc.org','Herpes virus 7 DNA [Presence] in Specimen by NAA with probe detection','444232','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_44478-6','44478-6','http://loinc.org','Herpes simplex virus 1 DNA [Presence] in Amniotic fluid by NAA with probe detection','444786','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_44503-1','44503-1','http://loinc.org','Herpes simplex virus 2 DNA [Presence] in Amniotic fluid by NAA with probe detection','445031','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_44517-1','44517-1','http://loinc.org','Herpes simplex virus DNA [Presence] in Amniotic fluid by NAA with probe detection','445171','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_44518-9','44518-9','http://loinc.org','Herpes simplex virus DNA [Presence] in Serum or Plasma by NAA with probe detection','445189','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_44868-8','44868-8','http://loinc.org','Herpes simplex virus 1+2 DNA [Presence] in Vaginal fluid by NAA with probe detection','448688','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_47409-8','47409-8','http://loinc.org','Herpes simplex virus 1+2 DNA [#/volume] (viral load) in Serum or Plasma by NAA with probe detection','474098','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_49114-2','49114-2','http://loinc.org','Flavivirus rRNA [Units/volume] (viral load) in Blood by NAA with probe detection','491142','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_49383-3','49383-3','http://loinc.org','Herpes simplex virus 1+2 DNA [#/volume] (viral load) in Urine by NAA with probe detection','493833','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_49384-1','49384-1','http://loinc.org','Herpes simplex virus 1+2 DNA [#/volume] (viral load) in Bone marrow by NAA with probe detection','493841','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_49385-8','49385-8','http://loinc.org','Herpes simplex virus 1+2 DNA [#/volume] (viral load) in Amniotic fluid by NAA with probe detection','493858','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_49386-6','49386-6','http://loinc.org','Herpes simplex virus 1+2 DNA [#/volume] (viral load) in Bronchoalveolar lavage by NAA with probe detection','493866','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_49390-8','49390-8','http://loinc.org','Herpes virus 6 DNA [#/volume] (viral load) in Tissue by NAA with probe detection','493908','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_49399-9','49399-9','http://loinc.org','Herpes virus 7 DNA [#/volume] (viral load) in Specimen by NAA with probe detection','493999','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_49403-9','49403-9','http://loinc.org','Herpes virus 8 DNA [#/volume] (viral load) in Specimen by NAA with probe detection','494039','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_49535-8','49535-8','http://loinc.org','Influenza virus B RNA [Presence] in Isolate by NAA with probe detection','495358','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_49537-4','49537-4','http://loinc.org','Influenza virus A and B RNA [Identifier] in Isolate by NAA with probe detection','495374','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_49847-7','49847-7','http://loinc.org','Enterovirus RNA [Presence] in Serum by NAA with probe detection','498477','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_49985-5','49985-5','http://loinc.org','Herpes simplex virus 1 DNA [#/volume] (viral load) in Blood by NAA with probe detection','499855','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_49988-9','49988-9','http://loinc.org','Herpes simplex virus 2 DNA [#/volume] (viral load) in Blood by NAA with probe detection','499889','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_50660-0','50660-0','http://loinc.org','Herpes simplex virus 1 DNA [#/volume] (viral load) in Serum or Plasma by NAA with probe detection','506600','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_50661-8','50661-8','http://loinc.org','Herpes simplex virus 1 DNA [#/volume] (viral load) in Urine by NAA with probe detection','506618','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_50662-6','50662-6','http://loinc.org','Herpes simplex virus 2 DNA [#/volume] (viral load) in Serum or Plasma by NAA with probe detection','506626','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_50663-4','50663-4','http://loinc.org','Herpes simplex virus 2 DNA [#/volume] (viral load) in Urine by NAA with probe detection','506634','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_51665-8','51665-8','http://loinc.org','Flavivirus RNA [Presence] in Specimen by NAA with probe detection','516658','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_53603-7','53603-7','http://loinc.org','Mumps virus RNA [Presence] in Serum by NAA with probe detection','536037','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_58414-4','58414-4','http://loinc.org','Herpes simplex virus 1+2 DNA [Presence] in Amniotic fluid by NAA with probe detection','584144','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_60260-7','60260-7','http://loinc.org','Chikungunya virus RNA [Presence] in Serum or Plasma by NAA with probe detection','602607','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_60262-3','60262-3','http://loinc.org','Dengue virus 1 RNA [Presence] in Serum by NAA with probe detection','602623','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_60418-1','60418-1','http://loinc.org','Dengue virus 4 RNA [Presence] in Serum by NAA with probe detection','604181','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_60419-9','60419-9','http://loinc.org','Dengue virus 3 RNA [Presence] in Serum by NAA with probe detection','604199','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_60420-7','60420-7','http://loinc.org','Dengue virus 2 RNA [Presence] in Serum by NAA with probe detection','604207','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_62464-3','62464-3','http://loinc.org','Enterovirus RNA [#/volume] (viral load) in Serum or Plasma by NAA with probe detection','624643','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_62470-0','62470-0','http://loinc.org','Herpes simplex virus 1 DNA [#/volume] (viral load) in Bone marrow by NAA with probe detection','624700','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_62472-6','62472-6','http://loinc.org','Herpes simplex virus 1 DNA [#/volume] (viral load) in Amniotic fluid by NAA with probe detection','624726','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_62473-4','62473-4','http://loinc.org','Herpes simplex virus 1 DNA [#/volume] (viral load) in Bronchoalveolar lavage by NAA with probe detection','624734','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_62474-2','62474-2','http://loinc.org','Herpes simplex virus 2 DNA [#/volume] (viral load) in Bone marrow by NAA with probe detection','624742','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_62476-7','62476-7','http://loinc.org','Herpes simplex virus 2 DNA [#/volume] (viral load) in Amniotic fluid by NAA with probe detection','624767','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_62477-5','62477-5','http://loinc.org','Herpes simplex virus 2 DNA [#/volume] (viral load) in Bronchoalveolar lavage by NAA with probe detection','624775','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_62485-8','62485-8','http://loinc.org','Herpes virus 6A DNA [Presence] in Specimen by NAA with probe detection','624858','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_62486-6','62486-6','http://loinc.org','Herpes virus 6B DNA [Presence] in Specimen by NAA with probe detection','624866','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_62860-2','62860-2','http://loinc.org','Influenza virus C RNA [Presence] in Specimen by NAA with probe detection','628602','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_6386-7','6386-7','http://loinc.org','Dengue virus DNA [Presence] in Serum by Probe','63867','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_68457-1','68457-1','http://loinc.org','Enterovirus and Parechovirus A RNA [Identifier] in Specimen by NAA with probe detection','684571','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_74424-3','74424-3','http://loinc.org','Enterovirus RNA [Cycle Threshold #] in Stool by NAA with probe detection','744243','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_76074-4','76074-4','http://loinc.org','Enterovirus RNA [Presence] in Nasopharynx by NAA with probe detection','760744','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_76079-3','76079-3','http://loinc.org','Influenza virus B RNA [Presence] in Bronchoalveolar lavage by NAA with probe detection','760793','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_76080-1','76080-1','http://loinc.org','Influenza virus B RNA [Presence] in Nasopharynx by NAA with probe detection','760801','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_7855-0','7855-0','http://loinc.org','Dengue virus 1+2+3+4 RNA [Presence] in Serum by NAA with probe detection','78550','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_7881-6','7881-6','http://loinc.org','Enterovirus RNA [Presence] in Nose by NAA with probe detection','78816','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_7936-8','7936-8','http://loinc.org','Japanese encephalitis virus RNA [Presence] in Serum by NAA with probe detection','79368','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_7964-0','7964-0','http://loinc.org','Measles virus RNA [Presence] in Nose by NAA with probe detection','79640','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_8025-9','8025-9','http://loinc.org','Saint Louis encephalitis virus RNA [Presence] in Serum by NAA with probe detection','80259','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_80353-6','80353-6','http://loinc.org','Herpes simplex virus 1 genome DNA polymerase region B+thymidine kinase region C [Presence] in Anogenital specimen by NAA with probe detection','803536','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_8057-2','8057-2','http://loinc.org','Yellow fever virus RNA [Presence] in Serum by NAA with probe detection','80572','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_80591-1','80591-1','http://loinc.org','Influenza virus B NS gene [Presence] in Nasopharynx by NAA with probe detection','805911','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_80825-3','80825-3','http://loinc.org','Zika virus envelope E gene [Presence] in Serum by NAA with probe detection','808253','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_81148-9','81148-9','http://loinc.org','Zika virus envelope E gene [Presence] in Urine by NAA with probe detection','811489','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_81149-7','81149-7','http://loinc.org','Zika virus envelope E gene [Presence] in Amniotic fluid by NAA with probe detection','811497','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_81150-5','81150-5','http://loinc.org','Dengue virus 1+2+3+4 5'' UTR RNA [Presence] in Serum by NAA with probe detection','811505','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_81152-1','81152-1','http://loinc.org','Chikungunya virus non-structural protein 1 (nsP1) RNA [Presence] in Serum by NAA with probe detection','811521','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_81309-7','81309-7','http://loinc.org','Influenza virus B RNA [Cycle Threshold #] in Respiratory system specimen by NAA with probe detection','813097','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_81325-3','81325-3','http://loinc.org','Influenza virus B Yamagata lineage RNA [Cycle Threshold #] in Respiratory system specimen by NAA with probe detection','813253','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_81327-9','81327-9','http://loinc.org','Influenza virus B Victoria lineage RNA [Cycle Threshold #] in Respiratory system specimen by NAA with probe detection','813279','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_82170-2','82170-2','http://loinc.org','Influenza virus B RNA [Presence] in Nasopharynx by NAA with non-probe detection','821702','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_82383-1','82383-1','http://loinc.org','Dengue virus 2+4 RNA [Presence] in Serum by NAA with probe detection','823831','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_82384-9','82384-9','http://loinc.org','Dengue virus 1+3 RNA [Presence] in Serum by NAA with probe detection','823849','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_82461-5','82461-5','http://loinc.org','Influenza virus A and B and H1 2009 pandemic RNA [Identifier] in Upper respiratory specimen by NAA with probe detection','824615','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_85478-6','85478-6','http://loinc.org','Influenza virus B RNA [Presence] in Upper respiratory specimen by NAA with probe detection','854786','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_85526-2','85526-2','http://loinc.org','Influenza virus D PB2 gene [Cycle Threshold #] in Specimen by NAA with probe detection','855262','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_85621-1','85621-1','http://loinc.org','Zika virus RNA [Presence] in Amniotic fluid by NAA with probe detection','856211','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_85622-9','85622-9','http://loinc.org','Zika virus RNA [Presence] in Serum or Plasma by NAA with probe detection','856229','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_85623-7','85623-7','http://loinc.org','Zika virus RNA [Presence] in Urine by NAA with probe detection','856237','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_86514-7','86514-7','http://loinc.org','Chikungunya virus RNA [Presence] in Amniotic fluid by NAA with probe detection','865147','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_86515-4','86515-4','http://loinc.org','Chikungunya virus RNA [Presence] in Urine by NAA with probe detection','865154','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_86572-5','86572-5','http://loinc.org','Influenza virus B RNA [Presence] in Tissue by NAA with probe detection','865725','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_86576-6','86576-6','http://loinc.org','Measles virus RNA [Presence] in Serum by NAA with probe detection','865766','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_86577-4','86577-4','http://loinc.org','Measles virus RNA [Presence] in Urine by NAA with probe detection','865774','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_86580-8','86580-8','http://loinc.org','Mumps virus RNA [Presence] in Urine by NAA with probe detection','865808','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_88128-4','88128-4','http://loinc.org','Herpes simplex virus 1 DNA [Presence] in Cornea or Conjunctiva by NAA with probe detection','881284','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_88133-4','88133-4','http://loinc.org','Herpes simplex virus 2 DNA [Presence] in Cornea or Conjunctiva by NAA with probe detection','881334','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_88138-3','88138-3','http://loinc.org','Herpes simplex virus DNA [Presence] in Cornea or Conjunctiva by NAA with probe detection','881383','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_88188-8','88188-8','http://loinc.org','Dengue virus 1+2+3+4 RNA [Presence] in Urine by NAA with probe detection','881888','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_88189-6','88189-6','http://loinc.org','Dengue virus 1+2+3+4 RNA [Presence] in Blood by NAA with probe detection','881896','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_88195-3','88195-3','http://loinc.org','Influenza virus B RNA [Presence] in Cornea or Conjunctiva by NAA with probe detection','881953','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_88203-5','88203-5','http://loinc.org','Dengue virus 1 and 2 and 3 and 4 RNA [Identifier] in Serum or Blood by NAA with probe detection','882035','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_88538-4','88538-4','http://loinc.org','Enterovirus RNA [Presence] in Pericardial fluid by NAA with probe detection','885384','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_88592-1','88592-1','http://loinc.org','Influenza virus B RNA [Presence] in Lower respiratory specimen by NAA with probe detection','885921','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_88596-2','88596-2','http://loinc.org','Influenza virus B RNA [Presence] in Pericardial fluid by NAA with probe detection','885962','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_88875-0','88875-0','http://loinc.org','Measles virus genotype A vaccine strain N gene [Presence] in Specimen by NAA with probe detection','888750','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_88876-8','88876-8','http://loinc.org','Measles virus genotype A vaccine strain N gene [Cycle Threshold #] in Specimen by NAA with probe detection','888768','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_89584-7','89584-7','http://loinc.org','Herpes simplex virus DNA [Presence] in Lower respiratory specimen by NAA with probe detection','895847','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_89585-4','89585-4','http://loinc.org','Herpes simplex virus 1 DNA [Presence] in Lower respiratory specimen by NAA with probe detection','895854','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_89587-0','89587-0','http://loinc.org','Herpes simplex virus 2 DNA [Presence] in Lower respiratory specimen by NAA with probe detection','895870','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_90452-4','90452-4','http://loinc.org','Herpes simplex virus 1 DNA [Presence] in Upper respiratory specimen by NAA with probe detection','904524','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_90454-0','90454-0','http://loinc.org','Herpes simplex virus 2 DNA [Presence] in Upper respiratory specimen by NAA with probe detection','904540','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_90459-9','90459-9','http://loinc.org','Yellow fever virus RNA [Presence] in Blood by NAA with probe detection','904599','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_90462-3','90462-3','http://loinc.org','Zika virus RNA [Presence] in Cord blood by NAA with probe detection','904623','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_90885-5','90885-5','http://loinc.org','Influenza virus D RNA [Cycle Threshold #] in Specimen by NAA with probe detection','908855','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_91066-1','91066-1','http://loinc.org','Enterovirus RNA [Presence] in Lower respiratory specimen by NAA with probe detection','910661','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_91067-9','91067-9','http://loinc.org','Enterovirus RNA [Presence] in Cornea or Conjunctiva by NAA with probe detection','910679','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_91068-7','91068-7','http://loinc.org','Enterovirus RNA [Presence] in Stool by NAA with probe detection','910687','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_91069-5','91069-5','http://loinc.org','Enterovirus RNA [Presence] in Urine by NAA with probe detection','910695','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_91077-8','91077-8','http://loinc.org','Measles virus RNA [Presence] in Upper respiratory specimen by NAA with probe detection','910778','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_91078-6','91078-6','http://loinc.org','Zika virus RNA [Presence] in Blood by NAA with probe detection','910786','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_91079-4','91079-4','http://loinc.org','Zika virus RNA [Presence] in Placenta by NAA with probe detection','910794','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_91132-1','91132-1','http://loinc.org','Measles virus RNA [Presence] in Lower respiratory specimen by NAA with probe detection','911321','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_91769-0','91769-0','http://loinc.org','Enterovirus RNA [Presence] in Upper respiratory specimen by NAA with probe detection','917690','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_91806-0','91806-0','http://loinc.org','Mumps virus RNA [Presence] in Upper respiratory specimen by NAA with probe detection','918060','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_91857-3','91857-3','http://loinc.org','Herpes simplex virus DNA [Presence] in Genital specimen by NAA with probe detection','918573','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_91858-1','91858-1','http://loinc.org','Herpes simplex virus 2 DNA [Presence] in Genital specimen by NAA with probe detection','918581','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_91859-9','91859-9','http://loinc.org','Herpes simplex virus 1 DNA [Presence] in Genital specimen by NAA with probe detection','918599','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_92132-0','92132-0','http://loinc.org','Enterovirus A+B+C RNA [Presence] in Respiratory system specimen by NAA with probe detection','921320','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_92141-1','92141-1','http://loinc.org','Influenza virus B RNA [Presence] in Respiratory system specimen by NAA with probe detection','921411','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_92870-5','92870-5','http://loinc.org','Herpes simplex virus 1 DNA [Presence] in Blood by NAA with probe detection','928705','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_92871-3','92871-3','http://loinc.org','Herpes simplex virus 1 DNA [Presence] in Skin by NAA with probe detection','928713','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_92872-1','92872-1','http://loinc.org','Herpes simplex virus 1 DNA [Presence] in Anogenital by NAA with probe detection','928721','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_92873-9','92873-9','http://loinc.org','Herpes simplex virus 2 DNA [Presence] in Blood by NAA with probe detection','928739','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_92874-7','92874-7','http://loinc.org','Herpes simplex virus 2 DNA [Presence] in Skin by NAA with probe detection','928747','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_92875-4','92875-4','http://loinc.org','Herpes simplex virus 2 DNA [Presence] in Anogenital by NAA with probe detection','928754','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_92976-0','92976-0','http://loinc.org','Influenza virus B RNA [Presence] in Lower respiratory specimen by NAA with non-probe detection','929760','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_93438-0','93438-0','http://loinc.org','Herpes simplex virus 2 DNA [Presence] in Blood by NAA with non-probe detection','934380','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_93439-8','93439-8','http://loinc.org','Herpes simplex virus 1 DNA [Presence] in Blood by NAA with non-probe detection','934398','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_94183-1','94183-1','http://loinc.org','Heartland banyangvirus RNA [Presence] in Specimen by NAA with probe detection','941831','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_94184-9','94184-9','http://loinc.org','Yellow fever virus RNA [Presence] in Specimen by NAA with probe detection','941849','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_94834-9','94834-9','http://loinc.org','Herpes simplex virus 1+2 DNA [Log #/volume] (viral load) in Amniotic fluid by NAA with probe detection','948349','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_94835-6','94835-6','http://loinc.org','Herpes simplex virus 1 DNA [Log #/volume] (viral load) in Amniotic fluid by NAA with probe detection','948356','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_94836-4','94836-4','http://loinc.org','Herpes simplex virus 2 DNA [Log #/volume] (viral load) in Amniotic fluid by NAA with probe detection','948364','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_94838-0','94838-0','http://loinc.org','Enterovirus RNA [Presence] in Amniotic fluid by NAA with probe detection','948380','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_97151-5','97151-5','http://loinc.org','Enterovirus RNA [Presence] in Serum or Plasma by NAA with non-probe detection','971515','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_97185-3','97185-3','http://loinc.org','West Nile virus RNA [Presence] in Urine by NAA with probe detection','971853','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_97918-7','97918-7','http://loinc.org','Rift valley fever virus RNA [Presence] in Specimen by NAA with probe detection','979187','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_97928-6','97928-6','http://loinc.org','Highlands J virus RNA [Presence] in Specimen by NAA with probe detection','979286','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_97929-4','97929-4','http://loinc.org','Ross River virus RNA [Presence] in Specimen by NAA with probe detection','979294','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_97934-4','97934-4','http://loinc.org','Toscana virus RNA [Presence] in Specimen by NAA with probe detection','979344','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_97935-1','97935-1','http://loinc.org','Bourbon virus RNA [Presence] in Specimen by NAA with probe detection','979351','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_100344-1','100344-1','http://loinc.org','Influenza virus A RNA [Presence] in Saliva (oral fluid) by NAA with probe detection','1003441','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_101818-3','101818-3','http://loinc.org','Herpes virus 6 DNA [Units/volume] in Cerebral spinal fluid by NAA with probe detection','1018183','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_16130-7','16130-7','http://loinc.org','Herpes simplex virus 1 DNA [Presence] in Specimen by NAA with probe detection','161307','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_16131-5','16131-5','http://loinc.org','Herpes simplex virus 2 DNA [Presence] in Specimen by NAA with probe detection','161315','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_20444-6','20444-6','http://loinc.org','Herpes simplex virus 1+2 DNA [Presence] in Specimen by NAA with probe detection','204446','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_23553-1','23553-1','http://loinc.org','Venezuelan equine encephalitis virus subtype [Identifier] in Specimen by NAA with probe detection','235531','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_29591-5','29591-5','http://loinc.org','Enterovirus RNA [Presence] in Specimen by NAA with probe detection','295915','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_33942-4','33942-4','http://loinc.org','Herpes virus 6 DNA [Presence] in Cerebral spinal fluid by NAA with probe detection','339424','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_34452-3','34452-3','http://loinc.org','Jamestown canyon virus RNA [Presence] in Blood by NAA with probe detection','344523','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_34454-9','34454-9','http://loinc.org','La Crosse virus RNA [Presence] in Blood by NAA with probe detection','344549','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_34463-0','34463-0','http://loinc.org','California serogroup RNA [Presence] in Blood by NAA with probe detection','344630','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_34892-0','34892-0','http://loinc.org','West Nile virus RNA [Presence] in Specimen by NAA with probe detection','348920','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_35396-1','35396-1','http://loinc.org','Enterovirus RNA [Presence] in Tissue by NAA with probe detection','353961','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_37983-4','37983-4','http://loinc.org','Eastern equine encephalitis virus RNA [Presence] in Specimen by Probe','379834','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_37984-2','37984-2','http://loinc.org','Saint Louis encephalitis virus RNA [Presence] in Specimen by Probe','379842','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_37985-9','37985-9','http://loinc.org','West Nile virus RNA [Presence] in Specimen by Probe','379859','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_40982-1','40982-1','http://loinc.org','Influenza virus B RNA [Presence] in Specimen by NAA with probe detection','409821','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_42515-7','42515-7','http://loinc.org','Jamestown canyon virus RNA [Presence] in Urine by NAA with probe detection','425157','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_47532-7','47532-7','http://loinc.org','Mumps virus RNA [Presence] in Specimen by NAA with probe detection','475327','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_48508-6','48508-6','http://loinc.org','Measles virus RNA [Presence] in Specimen by NAA with probe detection','485086','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_48509-4','48509-4','http://loinc.org','Influenza virus A and B RNA [Identifier] in Specimen by NAA with probe detection','485094','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_49381-7','49381-7','http://loinc.org','Herpes simplex virus 1+2 DNA [#/volume] (viral load) in Specimen by NAA with probe detection','493817','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_49382-5','49382-5','http://loinc.org','Herpes simplex virus 1+2 DNA [#/volume] (viral load) in Tissue by NAA with probe detection','493825','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_49388-2','49388-2','http://loinc.org','Herpes virus 6 DNA [#/volume] (viral load) in Cerebral spinal fluid by NAA with probe detection','493882','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_49400-5','49400-5','http://loinc.org','Herpes virus 7 DNA [#/volume] (viral load) in Cerebral spinal fluid by NAA with probe detection','494005','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_49407-0','49407-0','http://loinc.org','Herpes virus 8 DNA [#/volume] (viral load) in Cerebral spinal fluid by NAA with probe detection','494070','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_49986-3','49986-3','http://loinc.org','Herpes simplex virus 1 DNA [#/volume] (viral load) in Body fluid by NAA with probe detection','499863','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_49989-7','49989-7','http://loinc.org','Herpes simplex virus 2 DNA [#/volume] (viral load) in Body fluid by NAA with probe detection','499897','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_5014-6','5014-6','http://loinc.org','Herpes simplex virus DNA [Presence] in Specimen by NAA with probe detection','50146','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_50547-9','50547-9','http://loinc.org','Eastern equine encephalitis virus RNA [Presence] in Specimen by NAA with probe detection','505479','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_51664-1','51664-1','http://loinc.org','Chikungunya virus RNA [Presence] in Specimen by NAA with probe detection','516641','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_51666-6','51666-6','http://loinc.org','Japanese encephalitis virus RNA [Presence] in Specimen by NAA with probe detection','516666','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_51667-4','51667-4','http://loinc.org','Lymphocytic choriomeningitis virus RNA [Presence] in Specimen by NAA with probe detection','516674','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_53251-5','53251-5','http://loinc.org','Influenza virus B RNA [#/volume] (viral load) in Specimen by NAA with probe detection','532515','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_53256-4','53256-4','http://loinc.org','Enterovirus RNA [#/volume] (viral load) in Specimen by NAA with probe detection','532564','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_54036-9','54036-9','http://loinc.org','Western equine encephalitis virus RNA [Presence] in Specimen by NAA with probe detection','540369','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_54243-1','54243-1','http://loinc.org','Influenza virus RNA [Identifier] in Specimen by Probe','542431','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_55144-0','55144-0','http://loinc.org','Powassan virus RNA [Presence] in Specimen by NAA with probe detection','551440','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_55145-7','55145-7','http://loinc.org','Saint Louis encephalitis virus RNA [Presence] in Specimen by NAA with probe detection','551457','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_60422-3','60422-3','http://loinc.org','Measles virus genotype [Identifier] in Specimen by NAA with probe detection','604223','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_60461-1','60461-1','http://loinc.org','Herpes simplex virus 1 DNA [#/volume] (viral load) in Specimen by NAA with probe detection','604611','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_60462-9','60462-9','http://loinc.org','Herpes simplex virus 2 DNA [#/volume] (viral load) in Specimen by NAA with probe detection','604629','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_60528-7','60528-7','http://loinc.org','Enterovirus subtype in Specimen by NAA with probe detection','605287','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_60538-6','60538-6','http://loinc.org','Influenza virus A H1+H3+B RNA [Presence] in Specimen by NAA with probe detection','605386','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_62471-8','62471-8','http://loinc.org','Herpes simplex virus 1 DNA [#/volume] (viral load) in Tissue by NAA with probe detection','624718','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_62475-9','62475-9','http://loinc.org','Herpes simplex virus 2 DNA [#/volume] (viral load) in Tissue by NAA with probe detection','624759','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_62481-7','62481-7','http://loinc.org','Herpes virus 6A DNA [Presence] in Cerebral spinal fluid by NAA with probe detection','624817','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_62482-5','62482-5','http://loinc.org','Herpes virus 6B DNA [Presence] in Cerebral spinal fluid by NAA with probe detection','624825','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_62861-0','62861-0','http://loinc.org','Enterovirus 71 RNA [Presence] in Specimen by NAA with probe detection','628610','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_6387-5','6387-5','http://loinc.org','Dengue virus DNA [Presence] in Specimen by Probe','63875','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_72838-6','72838-6','http://loinc.org','Herpes simplex virus DNA [Identifier] in Specimen by NAA with probe detection','728386','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_74423-5','74423-5','http://loinc.org','Enterovirus RNA [Cycle Threshold #] in Specimen by NAA with probe detection','744235','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_74784-0','74784-0','http://loinc.org','Influenza virus B lineage RNA [Identifier] in Specimen by NAA with probe detection','747840','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_74785-7','74785-7','http://loinc.org','Influenza virus B Victoria lineage RNA [Presence] in Specimen by NAA with probe detection','747857','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_74786-5','74786-5','http://loinc.org','Influenza virus B Yamagata lineage RNA [Presence] in Specimen by NAA with probe detection','747865','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_76072-8','76072-8','http://loinc.org','Enterovirus D68 RNA [Presence] in Specimen by NAA with probe detection','760728','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_76077-7','76077-7','http://loinc.org','Influenza virus A RNA [Presence] in Bronchoalveolar lavage by NAA with probe detection','760777','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_76078-5','76078-5','http://loinc.org','Influenza virus A RNA [Presence] in Nasopharynx by NAA with probe detection','760785','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_77026-3','77026-3','http://loinc.org','Influenza virus A H1 RNA [Presence] in Nasopharynx by NAA with probe detection','770263','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_77027-1','77027-1','http://loinc.org','Influenza virus A H3 RNA [Presence] in Nasopharynx by NAA with probe detection','770271','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_77028-9','77028-9','http://loinc.org','Influenza virus A H1 2009 pandemic RNA [Presence] in Nasopharynx by NAA with probe detection','770289','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_77959-5','77959-5','http://loinc.org','Yellow fever virus ns5 gene [Presence] in Cerebral spinal fluid by NAA with non-probe detection','779595','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_79190-5','79190-5','http://loinc.org','Zika virus RNA [Presence] in Specimen by NAA with probe detection','791905','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_80588-7','80588-7','http://loinc.org','Influenza virus A M gene [Presence] in Nasopharynx by NAA with probe detection','805887','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_80589-5','80589-5','http://loinc.org','Influenza virus A H1 HA gene [Presence] in Nasopharynx by NAA with probe detection','805895','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_80590-3','80590-3','http://loinc.org','Influenza virus A H3 HA gene [Presence] in Nasopharynx by NAA with probe detection','805903','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_81117-4','81117-4','http://loinc.org','Ross River virus RNA [Presence] in Serum by NAA with probe detection','811174','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_81305-5','81305-5','http://loinc.org','Influenza virus A H1 2009 pandemic RNA [Cycle Threshold #] in Respiratory system specimen by NAA with probe detection','813055','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_81308-9','81308-9','http://loinc.org','Influenza virus A RNA [Cycle Threshold #] in Respiratory system specimen by NAA with probe detection','813089','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_81650-4','81650-4','http://loinc.org','West Nile virus Kunjin strain RNA [Presence] in Specimen by NAA with probe detection','816504','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_82166-0','82166-0','http://loinc.org','Influenza virus A RNA [Presence] in Nasopharynx by NAA with non-probe detection','821660','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_82167-8','82167-8','http://loinc.org','Influenza virus A H1 RNA [Presence] in Nasopharynx by NAA with non-probe detection','821678','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_82168-6','82168-6','http://loinc.org','Influenza virus A H1 2009 pandemic RNA [Presence] in Nasopharynx by NAA with non-probe detection','821686','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_82169-4','82169-4','http://loinc.org','Influenza virus A H3 RNA [Presence] in Nasopharynx by NAA with non-probe detection','821694','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_82192-6','82192-6','http://loinc.org','Herpes virus 6 DNA [Presence] in Cerebral spinal fluid by NAA with non-probe detection','821926','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_85477-8','85477-8','http://loinc.org','Influenza virus A RNA [Presence] in Upper respiratory specimen by NAA with probe detection','854778','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_85798-7','85798-7','http://loinc.org','Measles virus N gene [Cycle Threshold #] in Specimen by NAA with probe detection','857987','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_85800-1','85800-1','http://loinc.org','Mumps virus SH gene [Cycle Threshold #] in Specimen by NAA with probe detection','858001','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_85807-6','85807-6','http://loinc.org','Mumps virus genotype in Specimen','858076','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_86539-4','86539-4','http://loinc.org','Herpes simplex virus 1 DNA [Presence] in Tissue by NAA with probe detection','865394','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_86541-0','86541-0','http://loinc.org','Herpes simplex virus 2 DNA [Presence] in Tissue by NAA with probe detection','865410','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_86542-8','86542-8','http://loinc.org','Herpes simplex virus DNA [Presence] in Tissue by NAA with probe detection','865428','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_86591-5','86591-5','http://loinc.org','Toscana virus RNA [Presence] in Serum by NAA with probe detection','865915','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_87316-6','87316-6','http://loinc.org','Enterovirus G RNA [Presence] in Specimen by NAA with probe detection','873166','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_87395-0','87395-0','http://loinc.org','West Nile virus RNA [Cycle Threshold #] in Specimen by NAA with probe detection','873950','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_87960-1','87960-1','http://loinc.org','Enterovirus RNA [Presence] in Body fluid by NAA with probe detection','879601','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_88187-0','88187-0','http://loinc.org','Influenza virus A subtype [Identifier] in Cornea or Conjunctiva by NAA with probe detection','881870','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_88193-8','88193-8','http://loinc.org','Influenza virus A RNA [Presence] in Cornea or Conjunctiva by NAA with probe detection','881938','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_88540-0','88540-0','http://loinc.org','Enterovirus RNA [Presence] in Aspirate by NAA with probe detection','885400','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_88599-6','88599-6','http://loinc.org','Influenza virus A RNA [Presence] in Lower respiratory specimen by NAA with probe detection','885996','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_88600-2','88600-2','http://loinc.org','Influenza virus A RNA [Presence] in Pericardial fluid by NAA with probe detection','886002','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_90450-8','90450-8','http://loinc.org','Herpes simplex virus DNA [Presence] in Aspirate by NAA with probe detection','904508','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_90451-6','90451-6','http://loinc.org','Herpes simplex virus 1 DNA [Presence] in Aspirate by NAA with probe detection','904516','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_90453-2','90453-2','http://loinc.org','Herpes simplex virus 2 DNA [Presence] in Aspirate by NAA with probe detection','904532','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_90886-3','90886-3','http://loinc.org','Influenza virus B RNA [Cycle Threshold #] in Specimen by NAA with probe detection','908863','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_91072-9','91072-9','http://loinc.org','Influenza virus A subtype [Identifier] in Lower respiratory specimen by NAA with probe detection','910729','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_91771-6','91771-6','http://loinc.org','Influenza virus A subtype [Identifier] in Upper respiratory specimen by NAA with probe detection','917716','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_92142-9','92142-9','http://loinc.org','Influenza virus A RNA [Presence] in Respiratory system specimen by NAA with probe detection','921429','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_92808-5','92808-5','http://loinc.org','Influenza virus A H3 RNA [Presence] in Upper respiratory specimen by NAA with probe detection','928085','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_92809-3','92809-3','http://loinc.org','Influenza virus A H1 RNA [Presence] in Upper respiratory specimen by NAA with probe detection','928093','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_92977-8','92977-8','http://loinc.org','Influenza virus A RNA [Presence] in Lower respiratory specimen by NAA with non-probe detection','929778','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_93749-0','93749-0','http://loinc.org','Mumps virus N gene [Cycle Threshold #] in Specimen by NAA with probe detection','937490','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_93856-3','93856-3','http://loinc.org','Enterovirus RNA [Presence] in Specimen by NAA with non-probe detection','938563','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_94394-4','94394-4','http://loinc.org','Influenza virus A H3 RNA [Presence] in Lower respiratory specimen by NAA with probe detection','943944','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_94395-1','94395-1','http://loinc.org','Influenza virus A H1 2009 pandemic RNA [Presence] in Lower respiratory specimen by NAA with probe detection','943951','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_94396-9','94396-9','http://loinc.org','Influenza virus A H1 RNA [Presence] in Lower respiratory specimen by NAA with probe detection','943969','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_94581-6','94581-6','http://loinc.org','Herpes simplex virus 1 DNA [Presence] in Specimen by NAA with non-probe detection','945816','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_94582-4','94582-4','http://loinc.org','Herpes simplex virus 2 DNA [Presence] in Specimen by NAA with non-probe detection','945824','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_97752-0','97752-0','http://loinc.org','Herpes virus 6 DNA [Log #/volume] (viral load) in Cerebral spinal fluid by NAA with probe detection','977520','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_97926-0','97926-0','http://loinc.org','Snowshoe hare virus RNA [Presence] in Specimen by NAA with probe detection','979260','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_97932-8','97932-8','http://loinc.org','Colorado tick fever virus RNA [Presence] in Specimen by NAA with probe detection','979328','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_97951-8','97951-8','http://loinc.org','Venezuelan equine encephalitis virus RNA [Presence] in Specimen by NAA with probe detection','979518','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_22827-0','22827-0','http://loinc.org','Influenza virus A subtype [Identifier] in Specimen by NAA with probe detection','228270','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_26690-8','26690-8','http://loinc.org','Western equine encephalitis virus RNA [Presence] in Cerebral spinal fluid by Probe','266908','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_26825-0','26825-0','http://loinc.org','Eastern equine encephalitis virus RNA [Presence] in Cerebral spinal fluid by Probe','268250','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_27950-5','27950-5','http://loinc.org','Saint Louis encephalitis virus RNA [Presence] in Cerebral spinal fluid by Probe','279505','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_34450-7','34450-7','http://loinc.org','Eastern equine encephalitis virus RNA [Presence] in Cerebral spinal fluid by NAA with probe detection','344507','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_34457-2','34457-2','http://loinc.org','Powassan virus RNA [Presence] in Cerebral spinal fluid by NAA with probe detection','344572','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_34459-8','34459-8','http://loinc.org','Saint Louis encephalitis virus RNA [Presence] in Cerebral spinal fluid by NAA with probe detection','344598','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_34461-4','34461-4','http://loinc.org','West Nile virus RNA [Presence] in Cerebral spinal fluid by NAA with probe detection','344614','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_34487-9','34487-9','http://loinc.org','Influenza virus A RNA [Presence] in Specimen by NAA with probe detection','344879','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_37986-7','37986-7','http://loinc.org','California serogroup RNA [Presence] in Specimen by Probe','379867','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_38381-0','38381-0','http://loinc.org','Influenza virus A cDNA [Presence] in Specimen by NAA with probe detection','383810','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_39025-2','39025-2','http://loinc.org','Influenza virus A hemagglutinin cDNA [Identifier] in Specimen by Sequencing','390252','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_39102-9','39102-9','http://loinc.org','Influenza virus A hemagglutinin cDNA [Identifier] in Specimen by NAA with probe detection','391029','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_39103-7','39103-7','http://loinc.org','Influenza virus A neuraminidase cDNA [Identifier] in Specimen by NAA with probe detection','391037','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_44263-2','44263-2','http://loinc.org','Influenza virus A RNA [Units/volume] (viral load) in Specimen by NAA with probe detection','442632','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_49521-8','49521-8','http://loinc.org','Influenza virus A H1 RNA [Presence] in Specimen by NAA with probe detection','495218','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_49524-2','49524-2','http://loinc.org','Influenza virus A H3 RNA [Presence] in Specimen by NAA with probe detection','495242','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_53250-7','53250-7','http://loinc.org','Influenza virus A RNA [#/volume] (viral load) in Specimen by NAA with probe detection','532507','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_53874-4','53874-4','http://loinc.org','Jamestown canyon virus RNA [Units/volume] (viral load) in Specimen by NAA with probe detection','538744','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_55143-2','55143-2','http://loinc.org','California serogroup RNA [Presence] in Specimen by NAA with probe detection','551432','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_55463-4','55463-4','http://loinc.org','Influenza virus A swine origin RNA [Identifier] in Specimen by NAA with probe detection','554634','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_55464-2','55464-2','http://loinc.org','Influenza virus A swine origin RNA [Presence] in Specimen by NAA with probe detection','554642','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_55465-9','55465-9','http://loinc.org','Influenza virus A H1 2009 pandemic RNA [Presence] in Specimen by NAA with probe detection','554659','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_56024-3','56024-3','http://loinc.org','Influenza virus A N1 RNA [Units/volume] (viral load) in Specimen by NAA with probe detection','560243','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_59423-4','59423-4','http://loinc.org','Influenza virus A hemagglutinin type RNA [Identifier] in Specimen by NAA with probe detection','594234','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_60494-2','60494-2','http://loinc.org','Influenza virus A H1 2009 pandemic and Influenza virus A swine origin RNA [Interpretation] in Specimen Qualitative by NAA with probe detection','604942','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_61101-2','61101-2','http://loinc.org','Influenza virus A neuraminidase RNA [Type] in Specimen by Sequencing','611012','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_62462-7','62462-7','http://loinc.org','Influenza virus A+B RNA [Presence] in Specimen by NAA with probe detection','624627','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_69767-2','69767-2','http://loinc.org','La Crosse virus RNA [Presence] in Specimen by NAA with probe detection','697672','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_74038-1','74038-1','http://loinc.org','Influenza virus A H1 RNA [Cycle Threshold #] in Specimen by NAA with probe detection','740381','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_74039-9','74039-9','http://loinc.org','Influenza virus A H3 RNA [Cycle Threshold #] in Specimen by NAA with probe detection','740399','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_74040-7','74040-7','http://loinc.org','Influenza virus A N2 RNA [Cycle Threshold #] in Specimen by NAA with probe detection','740407','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_77958-7','77958-7','http://loinc.org','Dengue virus 1 and 2 and 3 and 4 RNA [Identifier] in Cerebral spinal fluid by NAA with probe detection','779587','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_7968-1','7968-1','http://loinc.org','Mumps virus RNA [Presence] in Cerebral spinal fluid by NAA with probe detection','79681','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_80826-1','80826-1','http://loinc.org','Zika virus envelope E gene [Presence] in Cerebral spinal fluid by NAA with probe detection','808261','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_81151-3','81151-3','http://loinc.org','Dengue virus 1+2+3+4 5'' UTR RNA [Presence] in Cerebral spinal fluid by NAA with probe detection','811513','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_81153-9','81153-9','http://loinc.org','Chikungunya virus non-structural protein 1 (nsP1) RNA [Presence] in Cerebral spinal fluid by NAA with probe detection','811539','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_81307-1','81307-1','http://loinc.org','Influenza virus A H7 Eurasia RNA [Cycle Threshold #] in Respiratory system specimen by NAA with probe detection','813071','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_81320-4','81320-4','http://loinc.org','Influenza virus A H5 Asian RNA [Cycle Threshold #] in Respiratory system specimen by Nucleic acid amplification using primer-probe set H5a','813204','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_81321-2','81321-2','http://loinc.org','Influenza virus A H5 Asian RNA [Cycle Threshold #] in Respiratory system specimen by Nucleic acid amplification using primer-probe set H5b','813212','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_81428-5','81428-5','http://loinc.org','Influenza virus A H7 Eurasia RNA [Presence] in Respiratory system specimen by NAA with probe detection','814285','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_86317-5','86317-5','http://loinc.org','Influenza virus A H1 2009 pandemic RNA [Cycle Threshold #] in Specimen by NAA with probe detection','863175','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_86569-1','86569-1','http://loinc.org','Influenza virus A RNA [Presence] in Tissue by NAA with probe detection','865691','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_86571-7','86571-7','http://loinc.org','Influenza virus B RNA [Presence] in Cerebral spinal fluid by NAA with probe detection','865717','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_86575-8','86575-8','http://loinc.org','Measles virus RNA [Presence] in Cerebral spinal fluid by NAA with probe detection','865758','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_86594-9','86594-9','http://loinc.org','Zika virus RNA [Presence] in Cerebral spinal fluid by NAA with probe detection','865949','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_88598-8','88598-8','http://loinc.org','Toscana virus RNA [Presence] in Cerebral spinal fluid by NAA with probe detection','885988','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_88835-4','88835-4','http://loinc.org','Influenza virus A swine origin RNA [Cycle Threshold #] in Specimen by NAA with probe detection','888354','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_97922-9','97922-9','http://loinc.org','California encephalitis virus RNA [Presence] in Specimen by NAA with probe detection','979229','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_97924-5','97924-5','http://loinc.org','Jamestown canyon virus RNA [Presence] in Specimen by NAA with probe detection','979245','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_99623-1','99623-1','http://loinc.org','Influenza virus A N1 RNA [Presence] in Specimen by NAA with probe detection','996231','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_16952-4','16952-4','http://loinc.org','Herpes simplex virus 1 DNA [Presence] in Cerebral spinal fluid by NAA with probe detection','169524','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_16960-7','16960-7','http://loinc.org','Herpes simplex virus 2 DNA [Presence] in Cerebral spinal fluid by NAA with probe detection','169607','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_27952-1','27952-1','http://loinc.org','Enterovirus RNA [Presence] in Cerebral spinal fluid by Probe','279521','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_29558-4','29558-4','http://loinc.org','Enterovirus RNA [Presence] in Cerebral spinal fluid by NAA with probe detection','295584','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_32141-4','32141-4','http://loinc.org','Herpes simplex virus 1+2 DNA [Presence] in Cerebral spinal fluid by NAA with probe detection','321414','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_34453-1','34453-1','http://loinc.org','Jamestown canyon virus RNA [Presence] in Cerebral spinal fluid by NAA with probe detection','344531','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_34455-6','34455-6','http://loinc.org','La Crosse virus RNA [Presence] in Cerebral spinal fluid by NAA with probe detection','344556','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_34462-2','34462-2','http://loinc.org','California serogroup RNA [Presence] in Cerebral spinal fluid by NAA with probe detection','344622','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_34655-1','34655-1','http://loinc.org','Herpes simplex virus 1+2 DNA [#/volume] (viral load) in Cerebral spinal fluid by NAA with probe detection','346551','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_38270-5','38270-5','http://loinc.org','Influenza virus A H7 RNA [Presence] in Specimen by NAA with probe detection','382705','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_38271-3','38271-3','http://loinc.org','Influenza virus A H6 RNA [Presence] in Specimen by NAA with probe detection','382713','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_38272-1','38272-1','http://loinc.org','Influenza virus A H5 RNA [Presence] in Specimen by NAA with probe detection','382721','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_44264-0','44264-0','http://loinc.org','Influenza virus A H5 RNA [Units/volume] (viral load) in Specimen by NAA with probe detection','442640','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_44265-7','44265-7','http://loinc.org','Influenza virus A H6 RNA [Units/volume] (viral load) in Specimen by NAA with probe detection','442657','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_44266-5','44266-5','http://loinc.org','Influenza virus A H7 RNA [Units/volume] (viral load) in Specimen by NAA with probe detection','442665','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_44795-3','44795-3','http://loinc.org','Influenza virus A H5 Asian RNA [Presence] in Specimen by NAA with probe detection','447953','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_49528-3','49528-3','http://loinc.org','Influenza virus A H9 RNA [Presence] in Specimen by NAA with probe detection','495283','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_49987-1','49987-1','http://loinc.org','Herpes simplex virus 1 DNA [#/volume] (viral load) in Cerebral spinal fluid by NAA with probe detection','499871','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_49990-5','49990-5','http://loinc.org','Herpes simplex virus 2 DNA [#/volume] (viral load) in Cerebral spinal fluid by NAA with probe detection','499905','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_5013-8','5013-8','http://loinc.org','Herpes simplex virus DNA [Presence] in Cerebral spinal fluid by NAA with probe detection','50138','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_57985-4','57985-4','http://loinc.org','Influenza virus A H2 RNA [Presence] in Specimen by NAA with probe detection','579854','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_60263-1','60263-1','http://loinc.org','Enterovirus RNA [Presence] in Isolate by NAA with probe detection','602631','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_60429-8','60429-8','http://loinc.org','Enterovirus 71 RNA [Presence] in Isolate by NAA with probe detection','604298','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_62463-5','62463-5','http://loinc.org','Enterovirus RNA [#/volume] (viral load) in Cerebral spinal fluid by NAA with probe detection','624635','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_68986-9','68986-9','http://loinc.org','Influenza virus A H5a RNA [Presence] in Specimen by NAA with probe detection','689869','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_68987-7','68987-7','http://loinc.org','Influenza virus A H5b RNA [Presence] in Specimen by NAA with probe detection','689877','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_77605-4','77605-4','http://loinc.org','Influenza virus A H5 RNA [Cycle Threshold #] in Specimen by NAA with probe detection','776054','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_82190-0','82190-0','http://loinc.org','Herpes simplex virus 1 DNA [Presence] in Cerebral spinal fluid by NAA with non-probe detection','821900','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_82191-8','82191-8','http://loinc.org','Herpes simplex virus 2 DNA [Presence] in Cerebral spinal fluid by NAA with non-probe detection','821918','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_82194-2','82194-2','http://loinc.org','Enterovirus RNA [Presence] in Cerebral spinal fluid by NAA with non-probe detection','821942','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_86568-3','86568-3','http://loinc.org','Influenza virus A RNA [Presence] in Cerebral spinal fluid by NAA with probe detection','865683','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_88207-6','88207-6','http://loinc.org','Lymphocytic choriomeningitis virus RNA [Presence] in Cerebral spinal fluid by NAA with probe detection','882076','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_95658-1','95658-1','http://loinc.org','Influenza virus A H7 Eurasia RNA [Presence] in Specimen by NAA with probe detection','956581','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_49520-0','49520-0','http://loinc.org','Influenza virus A H1 RNA [Presence] in Isolate by NAA with probe detection','495200','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_49523-4','49523-4','http://loinc.org','Influenza virus A H3 RNA [Presence] in Isolate by NAA with probe detection','495234','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_49531-7','49531-7','http://loinc.org','Influenza virus A RNA [Presence] in Isolate by NAA with probe detection','495317','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_55133-3','55133-3','http://loinc.org','Influenza virus A hemagglutinin cDNA [Identifier] in Isolate by NAA with probe detection','551333','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_55134-1','55134-1','http://loinc.org','Influenza virus A neuraminidase RNA [Identifier] in Isolate by NAA with probe detection','551341','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_59424-2','59424-2','http://loinc.org','Influenza virus A hemagglutinin type RNA [Identifier] in Isolate by NAA with probe detection','594242','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_49526-7','49526-7','http://loinc.org','Influenza virus A H5 RNA [Presence] in Isolate by NAA with probe detection','495267','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_49527-5','49527-5','http://loinc.org','Influenza virus A H7 RNA [Presence] in Isolate by NAA with probe detection','495275','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_50700-4','50700-4','http://loinc.org','Influenza virus A.adamantane resistant RNA [Presence] by NAA with probe detection','507004','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1565_60530-3','60530-3','http://loinc.org','Influenza virus A H9 RNA [Presence] in Isolate by NAA with probe detection','605303','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1686_16937-5','16937-5','http://loinc.org','Hepatitis G virus RNA [Presence] in Serum by NAA with probe detection','169375','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1219_20811-6','20811-6','http://loinc.org','Escherichia coli [Presence] in Specimen by Culture FDA method','208116','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1219_20813-2','20813-2','http://loinc.org','Escherichia coli F41 [Presence] in Isolate by Agglutination','208132','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1219_20816-5','20816-5','http://loinc.org','Escherichia coli K88 [Presence] in Isolate by Agglutination','208165','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1219_20819-9','20819-9','http://loinc.org','Escherichia coli K99 [Presence] in Isolate by Agglutination','208199','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1219_6595-3','6595-3','http://loinc.org','Klebsiella granulomatis [Presence] in Isolate by Organism specific culture','65953','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1219_85761-5','85761-5','http://loinc.org','Klebsiella pneumoniae DNA [Presence] by NAA with non-probe detection in Positive blood culture','857615','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1219_85772-2','85772-2','http://loinc.org','Enterobacter cloacae complex DNA [Presence] by NAA with non-probe detection in Positive blood culture','857722','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1219_85773-0','85773-0','http://loinc.org','Escherichia coli DNA [Presence] by NAA with non-probe detection in Positive blood culture','857730','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1219_85774-8','85774-8','http://loinc.org','Klebsiella oxytoca DNA [Presence] by NAA with non-probe detection in Positive blood culture','857748','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1219_88255-5','88255-5','http://loinc.org','Enterobacter sp gyrB+metB genes [Presence] by Probe in Positive blood culture','882555','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1219_88263-9','88263-9','http://loinc.org','Klebsiella oxytoca ompA gene [Presence] by Probe in Positive blood culture','882639','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1219_88264-7','88264-7','http://loinc.org','Klebsiella pneumoniae yggE gene [Presence] by Probe in Positive blood culture','882647','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1219_93395-2','93395-2','http://loinc.org','Klebsiella pneumoniae DNA [Presence] by NAA with probe detection in Positive blood culture','933952','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1219_93398-6','93398-6','http://loinc.org','Klebsiella oxytoca DNA [Presence] by NAA with probe detection in Positive blood culture','933986','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1219_93400-0','93400-0','http://loinc.org','Enterobacter aerogenes+Enterobacter amnigenus+Enterobacter gergoviae DNA [Presence] by NAA with probe detection in Positive blood culture','934000','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1219_93401-8','93401-8','http://loinc.org','Escherichia coli DNA [Presence] by NAA with probe detection in Positive blood culture','934018','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1219_93404-2','93404-2','http://loinc.org','Enterobacter cloacae complex DNA [Presence] by NAA with probe detection in Positive blood culture','934042','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1219_96307-4','96307-4','http://loinc.org','Klebsiella pneumoniae+Klebsiella variicola+Klebsiella quasipneumoniae DNA [Presence] by NAA with non-probe detection in Positive blood culture','963074','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1219_96308-2','96308-2','http://loinc.org','Klebsiella aerogenes DNA [Presence] by NAA with non-probe detection in Positive blood culture','963082','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1219_48806-4','48806-4','http://loinc.org','Salmonella sp+Shigella sp+Escherichia coli enterotoxic identified in Stool by Organism specific culture','488064','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1219_13318-1','13318-1','http://loinc.org','Escherichia coli enteroinvasive identified in Stool by Organism specific culture','133181','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1219_16832-8','16832-8','http://loinc.org','Escherichia coli enterotoxic identified in Stool by Organism specific culture','168328','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1219_20789-4','20789-4','http://loinc.org','Escherichia coli serotype [Identifier] in Isolate','207894','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1219_53944-5','53944-5','http://loinc.org','Escherichia coli enteroinvasive [Presence] in Isolate','539445','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1219_53945-2','53945-2','http://loinc.org','Escherichia coli adherence pattern [Identifier] in Isolate by Hep2 substrate','539452','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1219_73961-5','73961-5','http://loinc.org','Escherichia coli and Klebsiella pneumoniae and Pseudomonas aeruginosa rRNA [Identifier] by FISH in Positive blood culture','739615','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1219_88258-9','88258-9','http://loinc.org','Escherichia coli oppA gene [Presence] by Probe in Positive blood culture','882589','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1219_10851-4','10851-4','http://loinc.org','Escherichia coli O157:H7 [Presence] in Stool by Organism specific culture','108514','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1219_16835-1','16835-1','http://loinc.org','Escherichia coli shiga-like toxin identified in Stool by Organism specific culture','168351','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1219_16836-9','16836-9','http://loinc.org','Escherichia coli verotoxic identified in Stool by Organism specific culture','168369','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1219_44089-1','44089-1','http://loinc.org','Escherichia coli O157:H7 [Identifier] in Specimen by Organism specific culture','440891','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1219_44090-9','44090-9','http://loinc.org','Escherichia coli O157:H7 [Presence] in Isolate by Organism specific culture','440909','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1219_45162-5','45162-5','http://loinc.org','Escherichia coli O157 Ag [Presence] in Isolate by Latex agglutination','451625','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1219_53955-1','53955-1','http://loinc.org','Escherichia coli O157 identified in Isolate by Organism specific culture','539551','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1219_82303-9','82303-9','http://loinc.org','Escherichia coli O157 [Presence] in Stool by Culture','823039','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1219_87318-2','87318-2','http://loinc.org','Escherichia coli eaeA gene [Presence] in Isolate by NAA with probe detection','873182','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1219_87319-0','87319-0','http://loinc.org','Escherichia coli enteroaggregative astA gene [Presence] in Isolate by NAA with probe detection','873190','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1219_87320-8','87320-8','http://loinc.org','Escherichia coli enterotoxigenic heat-labile toxin DNA [Presence] in Isolate by NAA with probe detection','873208','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1219_87321-6','87321-6','http://loinc.org','Escherichia coli enterotoxigenic sta gene [Presence] in Isolate by NAA with probe detection','873216','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1219_87322-4','87322-4','http://loinc.org','Escherichia coli enterotoxigenic stb gene [Presence] in Isolate by NAA with probe detection','873224','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1219_87370-3','87370-3','http://loinc.org','Escherichia coli fasA gene [Presence] in Isolate by NAA with probe detection','873703','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1219_87371-1','87371-1','http://loinc.org','Escherichia coli fedF gene [Presence] in Isolate by NAA with probe detection','873711','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1219_87372-9','87372-9','http://loinc.org','Escherichia coli FimF41a gene [Presence] in Isolate by NAA with probe detection','873729','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1219_87373-7','87373-7','http://loinc.org','Escherichia coli K88 DNA [Presence] in Isolate by NAA with probe detection','873737','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1219_87374-5','87374-5','http://loinc.org','Escherichia coli K99 DNA [Presence] in Isolate by NAA with probe detection','873745','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1219_87375-2','87375-2','http://loinc.org','Escherichia coli paa gene [Presence] in Isolate by NAA with probe detection','873752','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1219_87402-4','87402-4','http://loinc.org','Escherichia coli aidA-I gene [Presence] in Isolate by NAA with probe detection','874024','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1219_87376-0','87376-0','http://loinc.org','Escherichia coli Stx1 toxin stx1 gene [Presence] in Isolate by NAA with probe detection','873760','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1219_87377-8','87377-8','http://loinc.org','Escherichia coli Stx2 toxin stx2 gene [Presence] in Isolate by NAA with probe detection','873778','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1219_87380-2','87380-2','http://loinc.org','Escherichia coli Stx2e toxin stx2e gene [Presence] in Isolate by NAA with probe detection','873802','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1216_101123-8','101123-8','http://loinc.org','Bacterial carbapenem resistance blaIMI gene [Presence] by Molecular method','1011238','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1216_101124-6','101124-6','http://loinc.org','Bacterial carbapenem resistance blaIMI+blaNMC genes [Presence] by Molecular method','1011246','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1216_101125-3','101125-3','http://loinc.org','Bacterial carbapenem resistance blaOXA-235-like gene [Presence] by Molecular method','1011253','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1216_101126-1','101126-1','http://loinc.org','Bacterial carbapenem resistance blaOXA-24+blaOXA-40 genes [Presence] by Molecular method','1011261','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1216_101127-9','101127-9','http://loinc.org','Bacterial carbapenem resistance blaSIM gene [Presence] by Molecular method','1011279','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1216_101673-2','101673-2','http://loinc.org','KPC carbapenemase [Presence] in Isolate by Rapid immunoassay','1016732','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1216_101674-0','101674-0','http://loinc.org','OXA-48-like carbapenemase [Presence] in Isolate by Rapid immunoassay','1016740','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1216_101675-7','101675-7','http://loinc.org','IMP Carbapenemase [Presence] in Isolate by Rapid immunoassay','1016757','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1216_101676-5','101676-5','http://loinc.org','VIM Carbapenemase [Presence] in Isolate by Rapid immunoassay','1016765','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1216_101677-3','101677-3','http://loinc.org','NDM Carbapenemase [Presence] in Isolate by Rapid immunoassay','1016773','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1216_49617-4','49617-4','http://loinc.org','Carbapenem resistance blaKPC gene [Presence] by Molecular method','496174','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1216_63368-5','63368-5','http://loinc.org','Carbapenem resistance genes [Identifier] by NAA with probe detection','633685','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1216_73834-4','73834-4','http://loinc.org','Bacteria.carbapenem resistant identified in Anal by Organism specific culture','738344','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1216_73982-1','73982-1','http://loinc.org','Carbapenem resistance blaNDM gene [Presence] by Molecular method','739821','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1216_85498-4','85498-4','http://loinc.org','Carbapenem resistance blaIMP gene [Presence] by Molecular method','854984','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1216_85499-2','85499-2','http://loinc.org','Carbapenem resistance blaKPC gene [Presence] by NAA with probe detection','854992','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1216_85500-7','85500-7','http://loinc.org','Carbapenem resistance blaNDM gene [Presence] by NAA with probe detection','855007','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1216_85501-5','85501-5','http://loinc.org','Carbapenem resistance blaVIM gene [Presence] by Molecular method','855015','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1216_85503-1','85503-1','http://loinc.org','Carbapenem resistance blaOXA-48 gene [Presence] by Molecular method','855031','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1216_85788-8','85788-8','http://loinc.org','Carbapenem resistance blaKPC gene [Presence] by NAA with non-probe detection in Positive blood culture','857888','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1216_85823-3','85823-3','http://loinc.org','Carbapenem resistance blaGES gene [Presence] by Molecular method','858233','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1216_85824-1','85824-1','http://loinc.org','Carbapenem resistance blaIMP gene [Presence] by NAA with probe detection','858241','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1216_85825-8','85825-8','http://loinc.org','Carbapenem resistance blaOXA-23-like gene [Presence] by Molecular method','858258','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1216_85826-6','85826-6','http://loinc.org','Carbapenem resistance blaOXA-24-like gene [Presence] by Molecular method','858266','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1216_85827-4','85827-4','http://loinc.org','Carbapenem resistance bla OXA-48-like gene [Presence] by Molecular method','858274','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1216_85828-2','85828-2','http://loinc.org','Carbapenem resistance blaOXA-58-like gene [Presence] by Molecular method','858282','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1216_85829-0','85829-0','http://loinc.org','Carbapenem resistance blaSPM gene [Presence] by Molecular method','858290','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1216_85830-8','85830-8','http://loinc.org','Carbapenem resistance blaVIM gene [Presence] by NAA with probe detection','858308','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1216_85833-2','85833-2','http://loinc.org','Carbapenem resistance blaGIM gene [Presence] by Molecular method','858332','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1216_86220-1','86220-1','http://loinc.org','Carbapenem resistance blaOXA-48 gene [Presence] in Specimen by NAA with probe detection','862201','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1216_86712-7','86712-7','http://loinc.org','Carbapenem resistance blaOXA gene [Presence] by Molecular method','867127','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1216_86713-5','86713-5','http://loinc.org','Carbapenem resistance blaOXA-134-like gene [Presence] by Molecular method','867135','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1216_86714-3','86714-3','http://loinc.org','Carbapenem resistance blaOXA-51-like gene [Presence] by Molecular method','867143','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1216_88245-6','88245-6','http://loinc.org','Carbapenem resistance blaIMP gene [Presence] by Probe in Positive blood culture','882456','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1216_88246-4','88246-4','http://loinc.org','Carbapenem resistance blaKPC gene [Presence] by Probe in Positive blood culture','882464','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1216_88247-2','88247-2','http://loinc.org','Carbapenem resistance blaNDM gene [Presence] by Probe in Positive blood culture','882472','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1216_88248-0','88248-0','http://loinc.org','Carbapenem resistance blaOXA gene [Presence] by Probe in Positive blood culture','882480','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1216_88249-8','88249-8','http://loinc.org','Carbapenem resistance blaVIM gene [Presence] by Probe in Positive blood culture','882498','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1216_93390-3','93390-3','http://loinc.org','Carbapenem resistance blaOXA-23-like+blaOXA-48-like genes [Presence] in Isolate or Specimen by Molecular method','933903','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1216_94151-8','94151-8','http://loinc.org','Bacteria.carbapenem resistant identified in Specimen by Organism specific culture','941518','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1216_95540-1','95540-1','http://loinc.org','Carbapenem resistance blaIMP+blaVIM genes [Presence] by Molecular method','955401','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1216_95809-0','95809-0','http://loinc.org','Carbapenem resistance genes [Presence] by Molecular method','958090','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1216_98065-6','98065-6','http://loinc.org','Carbapenem resistance blaOXA-143 gene [Presence] by Molecular method','980656','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1216_100899-4','100899-4','http://loinc.org','Enterobacteriaceae.extended spectrum beta lactamase resistance phenotype [Identifier] in Specimen by Organism specific culture','1008994','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1216_100901-8','100901-8','http://loinc.org','Enterobacteriaceae.carbapenemase resistance phenotype [Identifier] in Anal by Organism specific culture','1009018','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1216_100902-6','100902-6','http://loinc.org','Enterobacteriaceae.carbapenemase resistance phenotype.OXA-48 [Identifier] in Anal by Organism specific culture','1009026','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1216_77924-9','77924-9','http://loinc.org','Enterobacteriaceae.carbapenem resistant [Presence] in Anorectal or stool specimen by Organism specific culture','779249','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1215_74676-8','74676-8','http://loinc.org','Carbapenemase [Type] in Isolate by Carba NP','746768','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1215_85047-9','85047-9','http://loinc.org','MBL by meropenem to meropenem-EDTA IC ratio [Presence] by ARD gradient strip','850479','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1215_85053-7','85053-7','http://loinc.org','MBL by imipenem to imipenem-EDTA IC ratio [Presence] by ARD gradient strip','850537','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1215_86930-5','86930-5','http://loinc.org','Carbapenemase [Presence] in Isolate','869305','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1578_52968-5','52968-5','http://loinc.org','Streptococcus agalactiae [Presence] in Anal by Organism specific culture','529685','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1578_581-9','581-9','http://loinc.org','Streptococcus agalactiae [Presence] in Cervix by Organism specific culture','5819','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1578_582-7','582-7','http://loinc.org','Streptococcus agalactiae [Presence] in Genital specimen by Organism specific culture','5827','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1578_583-5','583-5','http://loinc.org','Streptococcus agalactiae [Presence] in Genital lochia by Organism specific culture','5835','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1578_584-3','584-3','http://loinc.org','Streptococcus agalactiae [Presence] in Vaginal fluid by Organism specific culture','5843','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1578_585-0','585-0','http://loinc.org','Streptococcus agalactiae [Presence] in Throat by Organism specific culture','5850','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1578_72607-5','72607-5','http://loinc.org','Streptococcus agalactiae [Presence] in Vag+Rectum by Organism specific culture','726075','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1578_85767-2','85767-2','http://loinc.org','Streptococcus agalactiae DNA [Presence] by NAA with non-probe detection in Positive blood culture','857672','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1578_88273-8','88273-8','http://loinc.org','Streptococcus agalactiae hsp60 gene [Presence] by Probe in Positive blood culture','882738','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1578_92773-1','92773-1','http://loinc.org','Streptococcus agalactiae DNA [Presence] by NAA with probe detection in Positive blood culture','927731','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1578_586-8','586-8','http://loinc.org','Streptococcus agalactiae [Presence] in Specimen by Organism specific culture','5868','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1454_103198-8','103198-8','http://loinc.org','Staphylococcus aureus DNA [Presence] in Respiratory system specimen by NAA with probe detection','1031988','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1454_35492-8','35492-8','http://loinc.org','Methicillin resistant Staphylococcus aureus (MRSA) DNA [Presence] in Specimen by NAA with probe detection','354928','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1454_44878-7','44878-7','http://loinc.org','Staphylococcus aureus enterotoxin A sea gene [Presence] in Specimen by NAA with probe detection','448787','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1454_44879-5','44879-5','http://loinc.org','Staphylococcus aureus enterotoxin E see gene [Presence] in Specimen by NAA with probe detection','448795','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1454_44881-1','44881-1','http://loinc.org','Staphylococcus aureus toxic shock syndrome toxin gene [Presence] in Specimen by NAA with probe detection','448811','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1454_48816-3','48816-3','http://loinc.org','Staphylococcus aureus Panton-Valentine leukocidin gene [Presence] in Isolate or Specimen by Molecular genetics method','488163','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1454_5033-6','5033-6','http://loinc.org','Staphylococcus aureus rRNA [Presence] in Specimen by Probe','50336','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1454_61404-0','61404-0','http://loinc.org','Staphylococcus aureus DNA [Presence] in Specimen by NAA with probe detection','614040','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1454_71786-8','71786-8','http://loinc.org','Staphylococcus aureus exfoliative toxin A eta gene [Presence] in Specimen by NAA with probe detection','717868','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1454_72822-0','72822-0','http://loinc.org','Staphylococcus aureus enterotoxin D sed gene [Presence] in Specimen by NAA with probe detection','728220','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1454_72823-8','72823-8','http://loinc.org','Staphylococcus aureus enterotoxin C sec gene [Presence] in Specimen by NAA with probe detection','728238','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1454_75755-9','75755-9','http://loinc.org','Methicillin susceptible Staphylococcus aureus DNA [Presence] in Specimen by NAA with probe detection','757559','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1454_76577-6','76577-6','http://loinc.org','Staphylococcus aureus sau3AI gene [Presence] in Swab specimen by NAA with probe detection','765776','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1454_76605-5','76605-5','http://loinc.org','Staphylococcus aureus sau3AI gene [#/volume] in XXX.body fluid by NAA with probe detection','766055','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1454_79447-9','79447-9','http://loinc.org','Staphylococcus aureus capsular polysaccharide enzyme cpe gene [Presence] in Nose by NAA with probe detection','794479','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1454_90001-9','90001-9','http://loinc.org','Methicillin resistant Staphylococcus aureus (MRSA) DNA [Presence] in Nose by NAA with probe detection','900019','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1454_92701-2','92701-2','http://loinc.org','Staphylococcus aureus DNA [Presence] in Nose by NAA with probe detection','927012','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1454_92952-1','92952-1','http://loinc.org','Staphylococcus aureus DNA [NCncRange] in Sputum by NAA with non-probe detection','929521','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1454_92953-9','92953-9','http://loinc.org','Staphylococcus aureus DNA [NCncRange] in Bronchoalveolar lavage by NAA with non-probe detection','929539','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1454_94369-6','94369-6','http://loinc.org','Staphylococcus aureus DNA [Presence] in Lower respiratory specimen by NAA with probe detection','943696','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1454_96328-0','96328-0','http://loinc.org','Staphylococcus aureus DNA [NCncRange] in Lower respiratory specimen by NAA with non-probe detection','963280','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1454_99029-1','99029-1','http://loinc.org','Staphylococcus aureus DNA [Presence] in Urine by NAA with probe detection','990291','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1454_103163-2','103163-2','http://loinc.org','Staphylococcus aureus enterotoxin A + Staphylococcus aureus enterotoxin B DNA [Presence] in Wound by NAA with probe detection','1031632','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1454_44880-3','44880-3','http://loinc.org','Staphylococcus aureus enterotoxin B seb gene [Presence] in Specimen by NAA with probe detection','448803','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1454_71787-6','71787-6','http://loinc.org','Staphylococcus aureus exfoliative toxin B etb gene [Presence] in Specimen by NAA with probe detection','717876','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1454_97325-5','97325-5','http://loinc.org','Staphylococcus aureus VNTR pattern [Type] in Isolate or Specimen by Molecular genetics method','973255','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1454_94512-1','94512-1','http://loinc.org','Staphylococcus aureus and Methicillin Resistant Staphylococcus aureus identified in Isolate or Specimen by Molecular genetics method','945121','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2302_22858-5','22858-5','http://loinc.org','Babesia sp identified in Tissue by Giemsa stain','228585','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2302_24408-7','24408-7','http://loinc.org','Babesia canis [Presence] in Blood by Giemsa stain','244087','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1453_48813-0','48813-0','http://loinc.org','Methicillin resistance mecA gene [Presence] by Molecular method','488130','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1453_72887-3','72887-3','http://loinc.org','Staphylococcus aureus methicillin resistance SCCmec [Presence] in Nose by NAA with probe detection','728873','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1453_77666-6','77666-6','http://loinc.org','Methicillin resistance mecA mRNA [Presence] by FISH in Positive blood culture','776666','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1453_77682-3','77682-3','http://loinc.org','Staphylococcus aureus methicillin resistance SCCmec+orfX junction [Presence] in Nose by NAA with probe detection','776823','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1453_85786-2','85786-2','http://loinc.org','Methicillin resistance mecA gene [Presence] by NAA with non-probe detection in Positive blood culture','857862','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1453_86620-2','86620-2','http://loinc.org','Methicillin resistance mecA+mecC genes [Presence] in Nose by NAA with probe detection','866202','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1453_86621-0','86621-0','http://loinc.org','Methicillin resistance mecC gene [Presence] by Molecular method','866210','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1453_88251-4','88251-4','http://loinc.org','Methicillin resistance mecA gene [Presence] by Probe in Positive blood culture','882514','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1453_92968-7','92968-7','http://loinc.org','Methicillin resistance mecA+mecC genes [Presence] in Isolate or Specimen by Molecular genetics method','929687','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1453_94424-9','94424-9','http://loinc.org','Staphylococcus aureus methicillin resistance SCCmec+orfX junction [Presence] by Molecular method','944249','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1453_96309-0','96309-0','http://loinc.org','Methicillin resistance mecA+mecC genes+SCCmec+OrfX junction [Presence] by Molecular method','963090','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1577_11268-0','11268-0','http://loinc.org','Streptococcus pyogenes [Presence] in Throat by Organism specific culture','112680','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1577_67569-4','67569-4','http://loinc.org','Streptococcus pyogenes M protein emm gene [Type] in Isolate by Sequencing','675694','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1577_17656-0','17656-0','http://loinc.org','Streptococcus pyogenes [Presence] in Specimen by Organism specific culture','176560','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1577_85769-8','85769-8','http://loinc.org','Streptococcus pyogenes DNA [Presence] by NAA with non-probe detection in Positive blood culture','857698','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1577_88276-1','88276-1','http://loinc.org','Streptococcus pyogenes hsp60 gene [Presence] by Probe in Positive blood culture','882761','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1577_92770-7','92770-7','http://loinc.org','Streptococcus pyogenes DNA [Presence] by NAA with probe detection in Positive blood culture','927707','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2300_10347-3','10347-3','http://loinc.org','Babesia microti identified in Blood by Light microscopy','103473','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2300_10647-6','10647-6','http://loinc.org','Babesia sp identified in Blood by Thick film','106476','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2300_10648-4','10648-4','http://loinc.org','Babesia sp identified in Blood by Thin film','106484','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2300_22858-5','22858-5','http://loinc.org','Babesia sp identified in Tissue by Giemsa stain','228585','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2300_67867-2','67867-2','http://loinc.org','Babesia sp identified in Specimen','678672','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2300_24408-7','24408-7','http://loinc.org','Babesia canis [Presence] in Blood by Giemsa stain','244087','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1455_76592-5','76592-5','http://loinc.org','Staphylococcus aureus sau3AI gene [#/mass] in XXX.tissue by NAA with probe detection','765925','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1455_97634-0','97634-0','http://loinc.org','Staphylococcus aureus DNA [Presence] in Synovial fluid by NAA with non-probe detection','976340','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2301_24408-7','24408-7','http://loinc.org','Babesia canis [Presence] in Blood by Giemsa stain','244087','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1452_92049-6','92049-6','http://loinc.org','Staphylococcus species methicillin resistant identified in Isolate or Specimen by Molecular genetics method','920496','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1452_13317-3','13317-3','http://loinc.org','Methicillin resistant Staphylococcus aureus [Presence] in Specimen by Organism specific culture','133173','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1452_52969-3','52969-3','http://loinc.org','Methicillin resistant Staphylococcus aureus [Presence] in Nose by Organism specific culture','529693','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1452_53572-4','53572-4','http://loinc.org','Methicillin resistant Staphylococcus aureus [Presence] in Genital specimen by Organism specific culture','535724','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1452_76081-9','76081-9','http://loinc.org','Methicillin resistant Staphylococcus aureus [Presence] in Pharynx by Organism specific culture','760819','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1452_94512-1','94512-1','http://loinc.org','Staphylococcus aureus and Methicillin Resistant Staphylococcus aureus identified in Isolate or Specimen by Molecular genetics method','945121','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.407_11076-7','11076-7','http://loinc.org','Hepatitis C virus 5-1-1 Ab [Presence] in Serum by Immunoblot','110767','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.407_11077-5','11077-5','http://loinc.org','Hepatitis C virus superoxide dismutase Ab [Presence] in Serum by Immunoblot','110775','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.407_13955-0','13955-0','http://loinc.org','Hepatitis C virus Ab [Presence] in Serum or Plasma by Immunoassay','139550','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.407_16128-1','16128-1','http://loinc.org','Hepatitis C virus Ab [Presence] in Serum','161281','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.407_16129-9','16129-9','http://loinc.org','Hepatitis C virus IgG Ab [Presence] in Serum','161299','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.407_16936-7','16936-7','http://loinc.org','Hepatitis C virus IgG Ab [Units/volume] in Serum','169367','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.407_22324-8','22324-8','http://loinc.org','Hepatitis C virus 100-3 Ab [Presence] in Serum','223248','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.407_22325-5','22325-5','http://loinc.org','Hepatitis C virus 22-3 Ab [Presence] in Serum','223255','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.407_22326-3','22326-3','http://loinc.org','Hepatitis C virus 5-1-1 Ab [Presence] in Serum','223263','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.407_22327-1','22327-1','http://loinc.org','Hepatitis C virus Ab [Units/volume] in Serum','223271','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.407_22328-9','22328-9','http://loinc.org','Hepatitis C virus superoxide dismutase Ab [Presence] in Serum','223289','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.407_22329-7','22329-7','http://loinc.org','Hepatitis C virus c33c Ab [Presence] in Serum','223297','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.407_23870-9','23870-9','http://loinc.org','Hepatitis C virus 100+5-1-1 Ab [Presence] in Serum by Immunoblot','238709','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.407_23871-7','23871-7','http://loinc.org','Hepatitis C virus NS5 Ab [Presence] in Serum by Immunoblot','238717','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.407_24011-9','24011-9','http://loinc.org','Hepatitis C virus Ab band pattern [Interpretation] in Serum by Immunoblot','240119','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.407_33462-3','33462-3','http://loinc.org','Hepatitis C virus IgG Ab [Presence] in Serum by Immunoblot','334623','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.407_34162-8','34162-8','http://loinc.org','Hepatitis C virus IgG band pattern [Interpretation] in Serum by Immunoblot','341628','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.407_39008-8','39008-8','http://loinc.org','Hepatitis C virus Ab [Presence] in Body fluid by Immunoblot','390088','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.407_40726-2','40726-2','http://loinc.org','Hepatitis C virus IgG Ab [Presence] in Serum or Plasma by Immunoassay','407262','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.407_42506-6','42506-6','http://loinc.org','Hepatitis C virus Ab [Presence] in Cerebral spinal fluid','425066','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.407_44813-4','44813-4','http://loinc.org','Hepatitis C virus c22p Ab [Presence] in Serum by Immunoblot','448134','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.407_44831-6','44831-6','http://loinc.org','Hepatitis C virus c100p+5-1-1 Ab [Presence] in Serum','448316','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.407_48159-8','48159-8','http://loinc.org','Hepatitis C virus Ab Signal/Cutoff in Serum or Plasma by Immunoassay','481598','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.407_51649-2','51649-2','http://loinc.org','Hepatitis C virus c100p+5-1-1 Ab [Presence] in Serum by Immunoblot','516492','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.407_51656-7','51656-7','http://loinc.org','Hepatitis C virus Ab Signal/Cutoff in Body fluid','516567','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.407_51657-5','51657-5','http://loinc.org','Hepatitis C virus Ab [Presence] in Body fluid','516575','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.407_51824-1','51824-1','http://loinc.org','Hepatitis C virus IgM Ab [Units/volume] in Serum by Immunoassay','518241','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.407_5198-7','5198-7','http://loinc.org','Hepatitis C virus Ab [Units/volume] in Serum by Immunoassay','51987','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.407_5199-5','5199-5','http://loinc.org','Hepatitis C virus Ab [Presence] in Serum by Immunoblot','51995','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.407_53376-0','53376-0','http://loinc.org','Hepatitis C virus IgM Ab [Units/volume] in Serum','533760','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.407_56926-9','56926-9','http://loinc.org','Hepatitis C virus c1 Ab [Presence] in Serum by Immunoblot','569269','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.407_56927-7','56927-7','http://loinc.org','Hepatitis C virus c2 Ab [Presence] in Serum by Immunoblot','569277','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.407_56928-5','56928-5','http://loinc.org','Hepatitis C virus E2 Ab [Presence] in Serum by Immunoblot','569285','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.407_56929-3','56929-3','http://loinc.org','Hepatitis C virus NS3 Ab [Presence] in Serum by Immunoblot','569293','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.407_56930-1','56930-1','http://loinc.org','Hepatitis C virus NS4 Ab [Presence] in Serum by Immunoblot','569301','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.407_57006-9','57006-9','http://loinc.org','Hepatitis C virus IgG Ab [Units/volume] in Serum by Immunoassay','570069','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.407_72376-7','72376-7','http://loinc.org','Hepatitis C virus Ab [Presence] in Serum, Plasma or Blood by Rapid immunoassay','723767','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.407_89359-4','89359-4','http://loinc.org','Hepatitis C virus IgG Ab [Presence] in Serum, Plasma or Blood by Rapid immunoassay','893594','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.407_95237-4','95237-4','http://loinc.org','Hepatitis C virus Ab [Interpretation] in Serum or Plasma','952374','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.407_9608-1','9608-1','http://loinc.org','Hepatitis C virus 100-3 Ab [Presence] in Serum by Immunoblot','96081','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.407_9609-9','9609-9','http://loinc.org','Hepatitis C virus 22-3 Ab [Presence] in Serum by Immunoblot','96099','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.407_9610-7','9610-7','http://loinc.org','Hepatitis C virus c33c Ab [Presence] in Serum by Immunoblot','96107','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.407_81116-6','81116-6','http://loinc.org','Hepatitis C virus core Ab+Ag [Presence] in Serum','811166','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.529_11550-1','11550-1','http://loinc.org','Borrelia burgdorferi [Presence] in Specimen by Organism specific culture','115501','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1901_100114-8','100114-8','http://loinc.org','Toxoplasma gondii 30kD Ab [Presence] in Serum by Immunoblot','1001148','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1901_100115-5','100115-5','http://loinc.org','Toxoplasma gondii 31kD Ab [Presence] in Serum by Immunoblot','1001155','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1901_100116-3','100116-3','http://loinc.org','Toxoplasma gondii 33kD Ab [Presence] in Serum by Immunoblot','1001163','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1901_100117-1','100117-1','http://loinc.org','Toxoplasma gondii 40kD Ab [Presence] in Serum by Immunoblot','1001171','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1901_100118-9','100118-9','http://loinc.org','Toxoplasma gondii 41kD Ab [Presence] in Serum by Immunoblot','1001189','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1901_100119-7','100119-7','http://loinc.org','Toxoplasma gondii 45kD Ab [Presence] in Serum by Immunoblot','1001197','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1901_11598-0','11598-0','http://loinc.org','Toxoplasma gondii Ab [Units/volume] in Serum','115980','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1901_13287-8','13287-8','http://loinc.org','Toxoplasma gondii Ab [Units/volume] in Cerebral spinal fluid','132878','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1901_14923-7','14923-7','http://loinc.org','Toxoplasma gondii Ab [Units/volume] in Specimen','149237','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1901_22577-1','22577-1','http://loinc.org','Toxoplasma gondii Ab [Presence] in Serum','225771','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1901_23485-6','23485-6','http://loinc.org','Toxoplasma gondii Ab [Presence] in Serum by Agglutination','234856','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1901_23486-4','23486-4','http://loinc.org','Toxoplasma gondii Ab [Presence] in Serum by Latex agglutination','234864','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1901_23784-2','23784-2','http://loinc.org','Toxoplasma gondii Ab [Titer] in Serum by Hemagglutination','237842','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1901_33265-0','33265-0','http://loinc.org','Toxoplasma gondii IgA Ab [Units/volume] in Cerebral spinal fluid','332650','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1901_35287-2','35287-2','http://loinc.org','Toxoplasma gondii HS Ab [Units/volume] in Serum by Agglutination','352872','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1901_35305-2','35305-2','http://loinc.org','Toxoplasma gondii AC Ab [Units/volume] in Serum by Agglutination','353052','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1901_41123-1','41123-1','http://loinc.org','Toxoplasma gondii HS Ab [Units/volume] in Serum','411231','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1901_41124-9','41124-9','http://loinc.org','Toxoplasma gondii AC Ab [Units/volume] in Serum','411249','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1901_42949-8','42949-8','http://loinc.org','Toxoplasma gondii Ab [Titer] in Serum','429498','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1901_49109-2','49109-2','http://loinc.org','Toxoplasma gondii Ab [Units/volume] in Cerebral spinal fluid by Immunoassay','491092','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1901_5387-6','5387-6','http://loinc.org','Toxoplasma gondii Ab [Presence] in Serum by Sabin dye test','53876','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1901_93859-7','93859-7','http://loinc.org','Toxoplasma gondii IgG Ab [Presence] in Serum from Donor by Immunoassay','938597','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1901_93860-5','93860-5','http://loinc.org','Toxoplasma gondii IgG Ab [Units/volume] in Serum from Donor by Immunoassay','938605','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1901_10723-5','10723-5','http://loinc.org','Toxoplasma gondii IgA Ab [Units/volume] in Serum by Immunoassay','107235','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1901_10724-3','10724-3','http://loinc.org','Toxoplasma gondii IgE Ab [Units/volume] in Serum by Immunoassay','107243','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1901_14922-9','14922-9','http://loinc.org','Toxoplasma gondii IgA+IgE Ab [Units/volume] in Serum by Immunoassay','149229','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1901_17716-2','17716-2','http://loinc.org','Toxoplasma gondii IgE Ab [Units/volume] in Serum','177162','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1901_22578-9','22578-9','http://loinc.org','Toxoplasma gondii IgA Ab [Units/volume] in Serum','225789','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1901_22579-7','22579-7','http://loinc.org','Toxoplasma gondii IgA+IgE Ab [Units/volume] in Serum','225797','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1901_27354-0','27354-0','http://loinc.org','Toxoplasma gondii IgE Ab [Presence] in Serum','273540','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1901_33320-3','33320-3','http://loinc.org','Toxoplasma gondii IgG Ab [Units/volume] in Body fluid','333203','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1901_33321-1','33321-1','http://loinc.org','Toxoplasma gondii IgM Ab [Units/volume] in Body fluid','333211','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1901_33459-9','33459-9','http://loinc.org','Toxoplasma gondii IgA Ab [Presence] in Serum','334599','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1901_40697-5','40697-5','http://loinc.org','Toxoplasma gondii IgM Ab index [Units/volume] in Serum and CSF','406975','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1901_60428-0','60428-0','http://loinc.org','Toxoplasma gondii IgA Ab [Titer] in Serum','604280','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1901_74830-1','74830-1','http://loinc.org','Toxoplasma gondii IgA Ab [Presence] in Serum by Immunoassay','748301','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1901_74847-5','74847-5','http://loinc.org','Toxoplasma gondii IgE Ab [Presence] in Serum by Immunoassay','748475','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1901_86738-2','86738-2','http://loinc.org','Toxoplasma gondii IgG Ab [Presence] in Specimen by Immunoassay','867382','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1901_104452-8','104452-8','http://loinc.org','Toxoplasma gondii IgG Ab [Presence] in Serum by Immunoblot','1044528','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1901_12261-4','12261-4','http://loinc.org','Toxoplasma gondii IgG Ab [Titer] in Serum by Immunoassay','122614','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1901_12262-2','12262-2','http://loinc.org','Toxoplasma gondii IgM Ab [Titer] in Serum by Immunoassay','122622','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1901_13286-0','13286-0','http://loinc.org','Toxoplasma gondii IgG Ab [Units/volume] in Serum --2nd specimen','132860','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1901_17717-0','17717-0','http://loinc.org','Toxoplasma gondii IgG+IgM Ab [Presence] in Serum','177170','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1901_18348-3','18348-3','http://loinc.org','Toxoplasma gondii IgM Ab [Units/volume] in Cerebral spinal fluid','183483','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1901_21569-9','21569-9','http://loinc.org','Toxoplasma gondii IgG Ab [Titer] in Cerebral spinal fluid by Immunofluorescence','215699','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1901_21570-7','21570-7','http://loinc.org','Toxoplasma gondii IgG Ab [Presence] in Serum by Sabin dye test','215707','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1901_21571-5','21571-5','http://loinc.org','Toxoplasma gondii IgM Ab [Titer] in Cerebral spinal fluid by Immunofluorescence','215715','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1901_22580-5','22580-5','http://loinc.org','Toxoplasma gondii IgG Ab [Presence] in Serum','225805','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1901_22581-3','22581-3','http://loinc.org','Toxoplasma gondii IgG Ab [Titer] in Cerebral spinal fluid','225813','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1901_22582-1','22582-1','http://loinc.org','Toxoplasma gondii IgG Ab [Titer] in Serum','225821','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1901_22583-9','22583-9','http://loinc.org','Toxoplasma gondii IgM Ab [Titer] in Cerebral spinal fluid','225839','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1901_22584-7','22584-7','http://loinc.org','Toxoplasma gondii IgM Ab [Titer] in Serum','225847','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1901_24242-0','24242-0','http://loinc.org','Toxoplasma gondii IgG Ab [Units/volume] in Serum --1st specimen','242420','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1901_25300-5','25300-5','http://loinc.org','Toxoplasma gondii IgG Ab [Ratio] in Serum --1st specimen/2nd specimen','253005','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1901_25542-2','25542-2','http://loinc.org','Toxoplasma gondii IgM Ab [Presence] in Serum','255422','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1901_30038-4','30038-4','http://loinc.org','Toxoplasma gondii IgG Ab [Units/volume] in Cerebral spinal fluid by Immunoassay','300384','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1901_30568-0','30568-0','http://loinc.org','Toxoplasma gondii IgG Ab [Presence] in Cerebral spinal fluid by Immunoassay','305680','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1901_30569-8','30569-8','http://loinc.org','Toxoplasma gondii IgM Ab [Presence] in Cerebral spinal fluid by Immunoassay','305698','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1901_31178-7','31178-7','http://loinc.org','Toxoplasma gondii IgM Ab [Units/volume] in Cerebral spinal fluid by Immunoassay','311787','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1901_31181-1','31181-1','http://loinc.org','Toxoplasma gondii IgM Ab [Presence] in Cerebral spinal fluid','311811','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1901_31685-1','31685-1','http://loinc.org','Toxoplasma gondii IgG Ab [Presence] in Cerebral spinal fluid','316851','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1901_33336-9','33336-9','http://loinc.org','Toxoplasma gondii IgM Ab [Presence] in Serum by Agglutination','333369','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1901_34422-6','34422-6','http://loinc.org','Toxoplasma gondii IgG Ab avidity [Ratio] in Serum','344226','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1901_35281-5','35281-5','http://loinc.org','Toxoplasma gondii IgG Ab [Presence] in Serum by Immunofluorescence','352815','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1901_35282-3','35282-3','http://loinc.org','Toxoplasma gondii IgM Ab [Presence] in Serum or Plasma by Immunofluorescence','352823','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1901_40677-7','40677-7','http://loinc.org','Toxoplasma gondii IgG Ab [Presence] in Serum by Immunoassay','406777','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1901_40678-5','40678-5','http://loinc.org','Toxoplasma gondii IgM Ab [Presence] in Serum or Plasma by Immunoassay','406785','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1901_40785-8','40785-8','http://loinc.org','Toxoplasma gondii IgM Ab [Titer] in Serum --1st specimen','407858','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1901_40786-6','40786-6','http://loinc.org','Toxoplasma gondii IgG Ab [Titer] in Serum --2nd specimen','407866','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1901_47389-2','47389-2','http://loinc.org','Toxoplasma gondii IgG Ab avidity [Presence] in Serum','473892','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1901_47390-0','47390-0','http://loinc.org','Toxoplasma gondii IgG Ab [Units/volume] in Serum by Sabin dye test','473900','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1901_5388-4','5388-4','http://loinc.org','Toxoplasma gondii IgG Ab [Units/volume] in Serum or Plasma by Immunoassay','53884','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1901_5389-2','5389-2','http://loinc.org','Toxoplasma gondii IgG Ab [Titer] in Serum by Immunofluorescence','53892','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1901_5390-0','5390-0','http://loinc.org','Toxoplasma gondii IgM Ab [Units/volume] in Serum by Immunoassay','53900','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1901_5391-8','5391-8','http://loinc.org','Toxoplasma gondii IgM Ab [Titer] in Serum or Plasma by Immunofluorescence','53918','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1901_54087-2','54087-2','http://loinc.org','Toxoplasma gondii IgG Ab [Presence] in DBS','540872','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1901_54088-0','54088-0','http://loinc.org','Toxoplasma gondii IgM Ab [Presence] in DBS','540880','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1901_56990-5','56990-5','http://loinc.org','Toxoplasma gondii IgG Ab avidity [Ratio] in Serum by Immunoassay','569905','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1901_56991-3','56991-3','http://loinc.org','Toxoplasma gondii IgG Ab avidity [Presence] in Serum or Plasma by Immunoassay','569913','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1901_8039-0','8039-0','http://loinc.org','Toxoplasma gondii IgG Ab [Units/volume] in Serum','80390','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1901_8040-8','8040-8','http://loinc.org','Toxoplasma gondii IgM Ab [Units/volume] in Serum','80408','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1901_83123-0','83123-0','http://loinc.org','Toxoplasma gondii IgG+IgM Ab [Presence] in Serum or Plasma by Immunoassay','831230','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1901_9741-0','9741-0','http://loinc.org','Toxoplasma gondii IgG Ab [Units/volume] in Cerebral spinal fluid','97410','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1907_10700-3','10700-3','http://loinc.org','Orthopoxvirus [Identifier] in Skin by Electron microscopy','107003','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.400_22319-8','22319-8','http://loinc.org','Hepatitis B virus core IgM Ab [Units/volume] in Serum','223198','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.400_24113-3','24113-3','http://loinc.org','Hepatitis B virus core IgM Ab [Presence] in Serum or Plasma by Immunoassay','241133','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.400_31204-1','31204-1','http://loinc.org','Hepatitis B virus core IgM Ab [Presence] in Serum','312041','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.400_51658-3','51658-3','http://loinc.org','Hepatitis B virus core IgM Ab [Presence] in Body fluid','516583','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.400_5185-4','5185-4','http://loinc.org','Hepatitis B virus core IgM Ab [Units/volume] in Serum or Plasma by Immunoassay','51854','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.400_5186-2','5186-2','http://loinc.org','Hepatitis B virus core IgM Ab [Units/volume] in Serum by Radioimmunoassay (RIA)','51862','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.400_51914-0','51914-0','http://loinc.org','Hepatitis B virus core IgG+IgM Ab [Presence] in Serum','519140','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.400_83100-8','83100-8','http://loinc.org','Hepatitis B virus core IgG+IgM Ab [Presence] in Serum or Plasma by Immunoassay','831008','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.401_10674-0','10674-0','http://loinc.org','Hepatitis B virus surface Ag [Presence] in Tissue by Immune stain','106740','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.401_10675-7','10675-7','http://loinc.org','Hepatitis B virus surface Ag [Presence] in Tissue by Orcein stain','106757','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.401_42505-8','42505-8','http://loinc.org','Hepatitis B virus surface Ag [Presence] in Cerebral spinal fluid','425058','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.401_51659-1','51659-1','http://loinc.org','Hepatitis B virus surface Ag [Presence] in Body fluid','516591','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.401_5195-3','5195-3','http://loinc.org','Hepatitis B virus surface Ag [Presence] in Serum','51953','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.401_5196-1','5196-1','http://loinc.org','Hepatitis B virus surface Ag [Presence] in Serum or Plasma by Immunoassay','51961','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.401_5197-9','5197-9','http://loinc.org','Hepatitis B virus surface Ag [Presence] in Serum by Radioimmunoassay (RIA)','51979','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.401_58452-4','58452-4','http://loinc.org','Hepatitis B virus surface Ag [Units/volume] in Serum','584524','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.401_63557-3','63557-3','http://loinc.org','Hepatitis B virus surface Ag [Units/volume] in Serum or Plasma by Immunoassay','635573','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.401_65633-0','65633-0','http://loinc.org','Hepatitis B virus surface Ag [Presence] in Serum or Plasma by Confirmatory method','656330','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.401_70154-0','70154-0','http://loinc.org','Hepatitis B virus surface Ag in Serum or Plasma by Confirmatory method','701540','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.401_75410-1','75410-1','http://loinc.org','Hepatitis B virus surface Ag [Presence] in Serum, Plasma or Blood by Rapid immunoassay','754101','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.401_7905-3','7905-3','http://loinc.org','Hepatitis B virus surface Ag [Presence] in Serum or Plasma by Neutralization test','79053','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.401_95234-1','95234-1','http://loinc.org','Hepatitis B virus surface Ag [Interpretation] in Serum or Plasma','952341','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.401_99385-7','99385-7','http://loinc.org','Hepatitis B virus surface Ag [log units/volume] in Serum or Plasma by Immunoassay','993857','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.402_13954-3','13954-3','http://loinc.org','Hepatitis B virus e Ag [Presence] in Serum or Plasma by Immunoassay','139543','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.402_31844-4','31844-4','http://loinc.org','Hepatitis B virus e Ag [Presence] in Serum','318444','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.402_31845-1','31845-1','http://loinc.org','Hepatitis B virus e Ag [Units/volume] in Serum','318451','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.402_32178-6','32178-6','http://loinc.org','Hepatitis B virus e Ag [Titer] in Serum','321786','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.402_39007-0','39007-0','http://loinc.org','Hepatitis B virus e Ag [Presence] in Specimen','390070','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.402_5191-2','5191-2','http://loinc.org','Hepatitis B virus e Ag [Units/volume] in Serum by Immunoassay','51912','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.402_5192-0','5192-0','http://loinc.org','Hepatitis B virus e Ag [Presence] in Serum by Radioimmunoassay (RIA)','51920','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.402_75408-5','75408-5','http://loinc.org','Hepatitis B virus e Ag [Presence] in Serum, Plasma or Blood by Rapid immunoassay','754085','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.403_103618-5','103618-5','http://loinc.org','Hepatitis B virus RNA [#/volume] (viral load) in Serum or Plasma by NAA with probe detection','1036185','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.403_11258-1','11258-1','http://loinc.org','Hepatitis B virus DNA [Units/volume] in Serum','112581','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.403_16934-2','16934-2','http://loinc.org','Hepatitis B virus polymerase DNA [Presence] in Blood by NAA with probe detection','169342','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.403_20442-0','20442-0','http://loinc.org','Hepatitis B virus DNA [#/volume] (viral load) in Serum by Probe with signal amplification','204420','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.403_23869-1','23869-1','http://loinc.org','Hepatitis B virus DNA [Mass/volume] (viral load) in Serum by Probe','238691','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.403_29610-3','29610-3','http://loinc.org','Hepatitis B virus DNA [Presence] in Serum or Plasma by NAA with probe detection','296103','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.403_29615-2','29615-2','http://loinc.org','Hepatitis B virus DNA [#/volume] (viral load) in Serum or Plasma by NAA with probe detection','296152','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.403_29900-8','29900-8','http://loinc.org','Hepatitis B virus DNA [Mass/volume] (viral load) in Serum by Probe with signal amplification','299008','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.403_32366-7','32366-7','http://loinc.org','Hepatitis B virus genotype [Identifier] in Serum or Plasma by NAA with probe detection','323667','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.403_32686-8','32686-8','http://loinc.org','Hepatitis B virus DNA [Mass/volume] in Serum','326868','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.403_33629-7','33629-7','http://loinc.org','Hepatitis B virus sequencing [Identifier] in Serum by NAA with probe detection','336297','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.403_33633-9','33633-9','http://loinc.org','Hepatitis B virus precore TAG [Presence] in Serum by NAA with probe detection','336339','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.403_40459-0','40459-0','http://loinc.org','Hepatitis B virus DNA [Log #/volume] (viral load) in Serum by Probe with signal amplification','404590','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.403_42322-8','42322-8','http://loinc.org','Hepatitis B virus S+pol gene [Identifier] in Serum or Plasma by NAA with probe detection','423228','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.403_42595-9','42595-9','http://loinc.org','Hepatitis B virus DNA [Units/volume] (viral load) in Serum or Plasma by NAA with probe detection','425959','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.403_43279-9','43279-9','http://loinc.org','Hepatitis B Virus YMDD [Presence] in Serum or Plasma by NAA with probe detection','432799','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.403_45161-7','45161-7','http://loinc.org','Hepatitis B virus DNA [Log #/volume] (viral load) in Serum or Plasma by NAA with probe detection','451617','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.403_47216-7','47216-7','http://loinc.org','Hepatitis B virus DNA [#/volume] (viral load) in Serum or Plasma by Probe and target amplification method detection limit = 200 copies/ml','472167','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.403_48398-2','48398-2','http://loinc.org','Hepatitis B virus DNA [log units/volume] (viral load) in Serum or Plasma by NAA with probe detection','483982','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.403_48650-6','48650-6','http://loinc.org','Hepatitis B virus DNA [#/volume] (viral load) in Serum or Plasma by Probe and target amplification method detection limit = 500 copies/mL','486506','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.403_49357-7','49357-7','http://loinc.org','Hepatitis B virus DNA [Units/volume] (viral load) in Cerebral spinal fluid by NAA with probe detection','493577','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.403_49358-5','49358-5','http://loinc.org','Hepatitis B virus DNA [Units/volume] (viral load) in Bone marrow by NAA with probe detection','493585','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.403_49359-3','49359-3','http://loinc.org','Hepatitis B virus DNA [Log #/volume] (viral load) in Bone marrow by NAA with probe detection','493593','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.403_49360-1','49360-1','http://loinc.org','Hepatitis B virus DNA [Units/volume] (viral load) in Specimen by NAA with probe detection','493601','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.403_49361-9','49361-9','http://loinc.org','Hepatitis B virus DNA [Log #/volume] (viral load) in Tissue by NAA with probe detection','493619','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.403_49362-7','49362-7','http://loinc.org','Hepatitis B virus DNA [#/volume] (viral load) in Specimen by NAA with probe detection','493627','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.403_49363-5','49363-5','http://loinc.org','Hepatitis B virus DNA [#/volume] (viral load) in Cerebral spinal fluid by NAA with probe detection','493635','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.403_49364-3','49364-3','http://loinc.org','Hepatitis B virus DNA [#/volume] (viral load) in Bone marrow by NAA with probe detection','493643','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.403_49365-0','49365-0','http://loinc.org','Hepatitis B virus DNA [#/volume] (viral load) in Tissue by NAA with probe detection','493650','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.403_49366-8','49366-8','http://loinc.org','Hepatitis B virus DNA [Log #/volume] (viral load) in Specimen by NAA with probe detection','493668','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.403_49367-6','49367-6','http://loinc.org','Hepatitis B virus DNA [Log #/volume] (viral load) in Cerebral spinal fluid by NAA with probe detection','493676','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.403_49368-4','49368-4','http://loinc.org','Hepatitis B virus DNA [Units/volume] (viral load) in Tissue by NAA with probe detection','493684','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.403_49600-0','49600-0','http://loinc.org','Hepatitis B virus DNA [log units/volume] (viral load) in Specimen by NAA with probe detection','496000','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.403_49601-8','49601-8','http://loinc.org','Hepatitis B virus DNA [log units/volume] (viral load) in Cerebral spinal fluid by NAA with probe detection','496018','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.403_49602-6','49602-6','http://loinc.org','Hepatitis B virus DNA [log units/volume] (viral load) in Bone marrow by NAA with probe detection','496026','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.403_49606-7','49606-7','http://loinc.org','Hepatitis B virus DNA [log units/volume] (viral load) in Tissue by NAA with probe detection','496067','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.403_49877-4','49877-4','http://loinc.org','Hepatitis B virus codon 173 [Identifier] by Genotype method','498774','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.403_49878-2','49878-2','http://loinc.org','Hepatitis B virus codon 180 [Identifier] by Genotype method','498782','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.403_49879-0','49879-0','http://loinc.org','Hepatitis B virus codon 181 [Identifier] by Genotype method','498790','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.403_49880-8','49880-8','http://loinc.org','Hepatitis B virus codon 204 [Identifier] by Genotype method','498808','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.403_49881-6','49881-6','http://loinc.org','Hepatitis B virus codon 236 [Identifier] by Genotype method','498816','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.403_49882-4','49882-4','http://loinc.org','Hepatitis B virus codon 80 [Identifier] by Genotype method','498824','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.403_5007-0','5007-0','http://loinc.org','Hepatitis B virus DNA [Presence] in Blood by NAA with probe detection','50070','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.403_5008-8','5008-8','http://loinc.org','Hepatitis B virus DNA [Presence] in Tissue by NAA with probe detection','50088','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.403_5009-6','5009-6','http://loinc.org','Hepatitis B virus DNA [Presence] in Specimen by NAA with probe detection','50096','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.403_54210-0','54210-0','http://loinc.org','Hepatitis B virus basal core promoter mutation [Identifier] in Serum by NAA with probe detection','542100','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.403_61154-1','61154-1','http://loinc.org','Hepatitis B virus codon L180M [Presence] by Genotype method','611541','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.403_61155-8','61155-8','http://loinc.org','Hepatitis B virus codon L80V [Presence] by Genotype method','611558','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.403_61156-6','61156-6','http://loinc.org','Hepatitis B virus codon V173L [Presence] by Genotype method','611566','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.403_61157-4','61157-4','http://loinc.org','Hepatitis B virus codon M204V [Presence] by Genotype method','611574','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.403_61158-2','61158-2','http://loinc.org','Hepatitis B virus codon M204I [Presence] by Genotype method','611582','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.403_61159-0','61159-0','http://loinc.org','Hepatitis B virus codon M204S [Presence] by Genotype method','611590','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.403_61160-8','61160-8','http://loinc.org','Hepatitis B virus codon A181V [Presence] by Genotype method','611608','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.403_61161-6','61161-6','http://loinc.org','Hepatitis B virus codon A181T [Presence] by Genotype method','611616','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.403_61162-4','61162-4','http://loinc.org','Hepatitis B virus codon N236T [Presence] by Genotype method','611624','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.403_61163-2','61163-2','http://loinc.org','Hepatitis B virus codon A194T [Presence] by Genotype method','611632','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.403_61164-0','61164-0','http://loinc.org','Hepatitis B virus codon T184S [Presence] by Genotype method','611640','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.403_61165-7','61165-7','http://loinc.org','Hepatitis B virus codon T184I [Presence] by Genotype method','611657','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.403_61166-5','61166-5','http://loinc.org','Hepatitis B virus codon S202G [Presence] by Genotype method','611665','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.403_61167-3','61167-3','http://loinc.org','Hepatitis B virus codon S202C [Presence] by Genotype method','611673','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.403_61168-1','61168-1','http://loinc.org','Hepatitis B virus codon S202I [Presence] by Genotype method','611681','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.403_61169-9','61169-9','http://loinc.org','Hepatitis B virus codon I233V [Presence] by Genotype method','611699','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.403_61170-7','61170-7','http://loinc.org','Hepatitis B virus codon M250V [Presence] by Genotype method','611707','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.403_61171-5','61171-5','http://loinc.org','Hepatitis B virus codon M250I [Presence] by Genotype method','611715','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.403_61172-3','61172-3','http://loinc.org','Hepatitis B virus codon M250L [Presence] by Genotype method','611723','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.403_61173-1','61173-1','http://loinc.org','Hepatitis B virus codon L80I [Presence] by Genotype method','611731','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.403_6421-2','6421-2','http://loinc.org','Hepatitis B virus rRNA [Presence] in Specimen by Probe','64212','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.403_72840-2','72840-2','http://loinc.org','Hepatitis B virus codon 250 [Identifier] by Genotype method','728402','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.403_72841-0','72841-0','http://loinc.org','Hepatitis B virus codon 237 [Identifier] by Genotype method','728410','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.403_72842-8','72842-8','http://loinc.org','Hepatitis B virus codon 233 [Identifier] by Genotype method','728428','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.403_72843-6','72843-6','http://loinc.org','Hepatitis B virus codon 215 [Identifier] by Genotype method','728436','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.403_72844-4','72844-4','http://loinc.org','Hepatitis B virus codon 214 [Identifier] by Genotype method','728444','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.403_72845-1','72845-1','http://loinc.org','Hepatitis B virus codon 202 [Identifier] by Genotype method','728451','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.403_72846-9','72846-9','http://loinc.org','Hepatitis B virus codon 194 [Identifier] by Genotype method','728469','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.403_72847-7','72847-7','http://loinc.org','Hepatitis B virus codon 191 [Identifier] by Genotype method','728477','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.403_72848-5','72848-5','http://loinc.org','Hepatitis B virus codon 184 [Identifier] by Genotype method','728485','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.403_72849-3','72849-3','http://loinc.org','Hepatitis B virus codon 169 [Identifier] by Genotype method','728493','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.403_72850-1','72850-1','http://loinc.org','Hepatitis B virus codon 85 [Identifier] by Genotype method','728501','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.403_72851-9','72851-9','http://loinc.org','Hepatitis B virus codon 84 [Identifier] by Genotype method','728519','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.403_95236-6','95236-6','http://loinc.org','Hepatitis B virus DNA [Interpretation] in Serum or Plasma','952366','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.887_41459-9','41459-9','http://loinc.org','SARS coronavirus [Presence] in Specimen','414599','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.526_6309-9','6309-9','http://loinc.org','Arbovirus identified in Blood by Organism specific culture','63099','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.526_6310-7','6310-7','http://loinc.org','Arbovirus identified in Specimen by Organism specific culture','63107','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.526_6406-3','6406-3','http://loinc.org','Flavivirus identified in Specimen by Organism specific culture','64063','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.769_11086-6','11086-6','http://loinc.org','Streptococcus pneumoniae Ag [Presence] in Serum','110866','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.769_14322-2','14322-2','http://loinc.org','Streptococcus pneumoniae Ag [Presence] in Cerebral spinal fluid by Latex agglutination','143222','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.769_20489-1','20489-1','http://loinc.org','Streptococcus pneumoniae Ag [Presence] in Cerebral spinal fluid','204891','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.769_6553-2','6553-2','http://loinc.org','Streptococcus pneumoniae Ag [Presence] in Cerebral spinal fluid by Immunofluorescence','65532','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.769_86590-7','86590-7','http://loinc.org','Streptococcus pneumoniae Ag [Presence] in Cerebral spinal fluid by Rapid immunoassay','865907','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1918_39023-7','39023-7','http://loinc.org','Vesicular stomatitis Indiana virus RNA [Presence] in Specimen by NAA with probe detection','390237','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1918_39024-5','39024-5','http://loinc.org','Vesicular stomatitis New Jersey virus RNA [Presence] in Specimen by NAA with probe detection','390245','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1918_78530-3','78530-3','http://loinc.org','Vesicular stomatitis New Jersey virus RNA [Cycle Threshold #] in Specimen by NAA with probe detection','785303','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1918_78531-1','78531-1','http://loinc.org','Vesicular stomatitis Indiana virus RNA [Cycle Threshold #] in Specimen by NAA with probe detection','785311','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1919_553-8','553-8','http://loinc.org','Candida sp identified in Saliva (oral fluid) by Organism specific culture','5538','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1919_73962-3','73962-3','http://loinc.org','Candida sp rRNA [Identifier] by FISH in Positive blood culture','739623','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1919_92791-3','92791-3','http://loinc.org','Candida auris DNA [Presence] by NAA with probe detection in Positive blood culture','927913','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1919_16472-3','16472-3','http://loinc.org','Blastomyces dermatitidis rRNA [Presence] in Serum by Probe','164723','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1919_554-6','554-6','http://loinc.org','Candida sp identified in Stool by Organism specific culture','5546','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1919_555-3','555-3','http://loinc.org','Candida sp identified in Specimen by Organism specific culture','5553','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1919_88717-4','88717-4','http://loinc.org','Candida sp identified in Isolate','887174','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1919_96303-3','96303-3','http://loinc.org','Cryptococcus gattii+neoformans DNA [Presence] by NAA with non-probe detection in Positive blood culture','963033','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1919_98394-0','98394-0','http://loinc.org','Candida sp [Identifier] in Isolate by MS.MALDI-TOF','983940','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1919_96302-5','96302-5','http://loinc.org','Candida auris DNA [Presence] by NAA with non-probe detection in Positive blood culture','963025','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1919_14206-7','14206-7','http://loinc.org','Coccidioides immitis exoantigen [Identifier] in Isolate','142067','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1919_20767-0','20767-0','http://loinc.org','Coccidioides immitis [Presence] in Isolate','207670','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1919_90002-7','90002-7','http://loinc.org','Candida auris [Presence] in Specimen by Organism specific culture','900027','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1919_94419-9','94419-9','http://loinc.org','Candida auris [Presence] in Isolate by MS.MALDI-TOF','944199','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1919_14197-8','14197-8','http://loinc.org','Blastomyces dermatitidis exoantigen [Identifier] in Isolate','141978','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1919_14214-1','14214-1','http://loinc.org','Histoplasma capsulatum exoantigen [Identifier] in Isolate','142141','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1919_38376-0','38376-0','http://loinc.org','Cryptococcus sp identified in Specimen by Organism specific culture','383760','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1919_4990-8','4990-8','http://loinc.org','Blastomyces dermatitidis rRNA [Presence] in Specimen by Probe','49908','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1919_81653-8','81653-8','http://loinc.org','Blastomyces dermatitidis drk1 and Histoplasma capsulatum gapdh genes [Identifier] in Specimen by NAA with probe detection','816538','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1919_92801-0','92801-0','http://loinc.org','Cryptococcus gattii DNA [Presence] by NAA with probe detection in Positive blood culture','928010','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1919_92802-8','92802-8','http://loinc.org','Cryptococcus neoformans DNA [Presence] by NAA with probe detection in Positive blood culture','928028','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1919_97940-1','97940-1','http://loinc.org','Cryptococcus sp [Presence] in Isolate by Organism specific culture','979401','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1919_98393-2','98393-2','http://loinc.org','Candida sp [Identifier] in Isolate by Sequencing','983932','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1919_14205-9','14205-9','http://loinc.org','Coccidioides immitis Ag [Presence] in Isolate by Immune diffusion (ID)','142059','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1919_31782-6','31782-6','http://loinc.org','Coccidioides immitis Ag [Presence] in Isolate','317826','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1919_48589-6','48589-6','http://loinc.org','Coccidioides sp rRNA [Presence] in Isolate by NAA with probe detection','485896','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1919_38377-8','38377-8','http://loinc.org','Cryptococcus neoformans [Presence] in Specimen by Organism specific culture','383778','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1919_98410-4','98410-4','http://loinc.org','Cryptococcus molecular type in Isolate by Sequencing','984104','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1916_23557-2','23557-2','http://loinc.org','Vesicular stomatitis virus Ag [Presence] in Skin by Immunoassay','235572','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1916_23558-0','23558-0','http://loinc.org','Vesicular stomatitis virus Ag [Presence] in Throat by Immunoassay','235580','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1916_23559-8','23559-8','http://loinc.org','Vesicular stomatitis virus Ag [Presence] in Skin by Complement fixation','235598','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1916_23560-6','23560-6','http://loinc.org','Vesicular stomatitis virus Ag [Presence] in Throat by Complement fixation','235606','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1916_31985-5','31985-5','http://loinc.org','Vesicular stomatitis virus Ag [Presence] in Skin','319855','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1916_31986-3','31986-3','http://loinc.org','Vesicular stomatitis virus Ag [Presence] in Throat','319863','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1916_45118-7','45118-7','http://loinc.org','Vesicular stomatitis Indiana virus Ag [Presence] in Specimen by Complement fixation','451187','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1916_45120-3','45120-3','http://loinc.org','Vesicular stomatitis Indiana virus Ag [Presence] in Specimen by Immunoassay','451203','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1916_45125-2','45125-2','http://loinc.org','Vesicular stomatitis Alagoas virus Ag [Presence] in Specimen by Complement fixation','451252','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1916_45126-0','45126-0','http://loinc.org','Vesicular stomatitis Alagoas virus Ag [Presence] in Specimen by Immunoassay','451260','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1916_45127-8','45127-8','http://loinc.org','Vesicular stomatitis New Jersey virus Ag [Presence] in Specimen by Immunoassay','451278','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1916_45128-6','45128-6','http://loinc.org','Vesicular stomatitis New Jersey virus Ag [Presence] in Specimen by Complement fixation','451286','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1917_23555-6','23555-6','http://loinc.org','Vesicular stomatitis virus Ab [Presence] in Serum','235556','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1917_23561-4','23561-4','http://loinc.org','Vesicular stomatitis Indiana virus Ab [Presence] in Serum','235614','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1917_23562-2','23562-2','http://loinc.org','Vesicular stomatitis Indiana virus neutralizing antibody [Presence] in Serum by Neutralization test','235622','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1917_23563-0','23563-0','http://loinc.org','Vesicular stomatitis Indiana virus Ab [Presence] in Serum by Immunoassay','235630','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1917_23564-8','23564-8','http://loinc.org','Vesicular stomatitis Indiana virus Ab [Presence] in Serum by Complement fixation','235648','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1917_23565-5','23565-5','http://loinc.org','Vesicular stomatitis New Jersey virus Ab [Presence] in Serum','235655','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1917_23566-3','23566-3','http://loinc.org','Vesicular stomatitis New Jersey virus Ab [Presence] in Serum by Immunoassay','235663','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1917_23567-1','23567-1','http://loinc.org','Vesicular stomatitis New Jersey virus neutralizing antibody [Presence] in Serum by Neutralization test','235671','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1917_23568-9','23568-9','http://loinc.org','Vesicular stomatitis New Jersey virus Ab [Presence] in Serum by Complement fixation','235689','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1917_23788-3','23788-3','http://loinc.org','Vesicular stomatitis Indiana virus Ab [Titer] in Serum by Complement fixation','237883','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1917_23789-1','23789-1','http://loinc.org','Vesicular stomatitis Indiana virus neutralizing antibody [Titer] in Serum by Neutralization test','237891','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1917_23790-9','23790-9','http://loinc.org','Vesicular stomatitis New Jersey virus Ab [Titer] in Serum by Complement fixation','237909','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1917_23791-7','23791-7','http://loinc.org','Vesicular stomatitis New Jersey virus neutralizing antibody [Titer] in Serum by Neutralization test','237917','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1917_31696-8','31696-8','http://loinc.org','Vesicular stomatitis Indiana virus Ab [Units/volume] in Serum','316968','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1917_31697-6','31697-6','http://loinc.org','Vesicular stomatitis New Jersey virus Ab [Units/volume] in Serum','316976','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1917_42944-9','42944-9','http://loinc.org','Vesicular stomatitis New Jersey virus Ab [Titer] in Serum','429449','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1917_42945-6','42945-6','http://loinc.org','Vesicular stomatitis Indiana virus Ab [Titer] in Serum','429456','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1917_45124-5','45124-5','http://loinc.org','Vesicular stomatitis Alagoas virus neutralizing antibody [Titer] in Serum by Neutralization test','451245','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1917_47517-8','47517-8','http://loinc.org','Vesicular stomatitis Alagoas virus Ab [Titer] in Serum','475178','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.873_21121-9','21121-9','http://loinc.org','Borrelia hermsii IgG Ab [Titer] in Serum by Immunofluorescence','211219','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.873_21122-7','21122-7','http://loinc.org','Borrelia hermsii IgM Ab [Titer] in Serum by Immunofluorescence','211227','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.873_93873-8','93873-8','http://loinc.org','Borrelia miyamotoi IgG Ab [Units/volume] in Serum or Plasma by Immunoassay','938738','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.873_93874-6','93874-6','http://loinc.org','Borrelia miyamotoi IgM Ab [Units/volume] in Serum or Plasma by Immunoassay','938746','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.998_70242-3','70242-3','http://loinc.org','Shigella species+EIEC invasion plasmid antigen H ipaH gene [Presence] in Stool by NAA with probe detection','702423','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.998_80350-2','80350-2','http://loinc.org','Shigella species+EIEC invasion plasmid antigen H ipaH gene [Presence] in Stool by NAA with non-probe detection','803502','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.878_74472-2','74472-2','http://loinc.org','Middle East respiratory syndrome coronavirus (MERS-CoV) N3 gene RNA [Presence] in Specimen by NAA with probe detection','744722','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.878_74473-0','74473-0','http://loinc.org','Middle East respiratory syndrome coronavirus (MERS-CoV) N2 gene RNA [Presence] in Specimen by NAA with probe detection','744730','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.878_74474-8','74474-8','http://loinc.org','Middle East respiratory syndrome coronavirus (MERS-CoV) upE gene RNA [Presence] in Specimen by NAA with probe detection','744748','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.878_74475-5','74475-5','http://loinc.org','Middle East respiratory syndrome coronavirus (MERS-CoV) RNA [Interpretation] in Specimen Qualitative by NAA with probe detection','744755','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.878_86578-2','86578-2','http://loinc.org','Middle East respiratory syndrome coronavirus (MERS-CoV) RNA [Presence] in Blood by NAA with probe detection','865782','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.878_86579-0','86579-0','http://loinc.org','Middle East respiratory syndrome coronavirus (MERS-CoV) RNA [Presence] in Urine by NAA with probe detection','865790','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.878_88196-1','88196-1','http://loinc.org','Middle East respiratory syndrome coronavirus (MERS-CoV) RNA [Presence] in Stool by NAA with probe detection','881961','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.878_88197-9','88197-9','http://loinc.org','Middle East respiratory syndrome coronavirus (MERS-CoV) RNA [Presence] in Nasopharynx by NAA with probe detection','881979','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.878_88198-7','88198-7','http://loinc.org','Middle East respiratory syndrome coronavirus (MERS-CoV) RNA [Presence] in Cornea or Conjunctiva by NAA with probe detection','881987','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.878_88199-5','88199-5','http://loinc.org','Middle East respiratory syndrome coronavirus (MERS-CoV) RNA [Presence] in Aspirate by NAA with probe detection','881995','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.878_88889-1','88889-1','http://loinc.org','Middle East respiratory syndrome coronavirus (MERS-CoV) RNA [Presence] in Nasopharynx by NAA with non-probe detection','888891','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.878_91807-8','91807-8','http://loinc.org','Middle East respiratory syndrome coronavirus (MERS-CoV) RNA [Presence] in Upper respiratory specimen by NAA with probe detection','918078','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.878_91830-0','91830-0','http://loinc.org','Middle East respiratory syndrome coronavirus (MERS-CoV) RNA [Presence] in Lower respiratory specimen by NAA with probe detection','918300','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.878_92967-9','92967-9','http://loinc.org','Middle East respiratory syndrome coronavirus (MERS-CoV) RNA [Presence] in Lower respiratory specimen by NAA with non-probe detection','929679','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.878_94501-4','94501-4','http://loinc.org','Middle East respiratory syndrome coronavirus (MERS-CoV) RNA [Presence] in Respiratory system specimen by NAA with probe detection','945014','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1802_539-7','539-7','http://loinc.org','Mycobacterium sp identified in Sputum by Organism specific culture','5397','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1802_90433-4','90433-4','http://loinc.org','Mycobacterium preliminary growth [Presence] in Sputum by Organism specific culture','904334','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1801_97758-7','97758-7','http://loinc.org','Fungus and Mycobacterium sp identified in Blood by Organism specific culture','977587','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1801_89637-3','89637-3','http://loinc.org','Mycobacterium sp identified in Implanted device by Organism specific culture','896373','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1801_90306-2','90306-2','http://loinc.org','Mycobacterium sp identified in Specimen by Sequencing','903062','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1801_20892-6','20892-6','http://loinc.org','Mycobacterium avium ss paratuberculosis [Presence] in Tissue by Organism specific culture','208926','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1801_20893-4','20893-4','http://loinc.org','Mycobacterium avium ss paratuberculosis [Presence] in Stool by Organism specific culture','208934','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1801_24427-7','24427-7','http://loinc.org','Mycobacterium avium ss paratuberculosis [Presence] in Specimen by Organism specific culture','244277','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1801_30045-9','30045-9','http://loinc.org','Mycobacterium sp identified in Dialysis fluid by Organism specific culture','300459','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1801_614-8','614-8','http://loinc.org','Mycobacterial strain [Type] in Isolate by Mycobacterial subtyping','6148','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1801_42716-1','42716-1','http://loinc.org','Mycobacterium sp rRNA [Identifier] in Isolate by NAA with probe detection','427161','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1801_44851-4','44851-4','http://loinc.org','Mycobacterium sp # 2 identified in Specimen by Organism specific culture','448514','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1801_44852-2','44852-2','http://loinc.org','Mycobacterium sp # 3 identified in Specimen by Organism specific culture','448522','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1801_44854-8','44854-8','http://loinc.org','Mycobacterium sp # 4 identified in Specimen by Organism specific culture','448548','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1801_44855-5','44855-5','http://loinc.org','Mycobacterium sp # 5 identified in Specimen by Organism specific culture','448555','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1801_50941-4','50941-4','http://loinc.org','Mycobacterium sp [Presence] in Specimen by Organism specific culture','509414','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1801_532-2','532-2','http://loinc.org','Mycobacterium sp identified in Aspirate by Organism specific culture','5322','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1801_533-0','533-0','http://loinc.org','Mycobacterium sp identified in Blood by Organism specific culture','5330','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1801_534-8','534-8','http://loinc.org','Mycobacterium sp identified in Cerebral spinal fluid by Organism specific culture','5348','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1801_535-5','535-5','http://loinc.org','Mycobacterium sp identified in Body fluid by Organism specific culture','5355','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1801_536-3','536-3','http://loinc.org','Mycobacterium sp identified in Bone marrow by Organism specific culture','5363','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1801_537-1','537-1','http://loinc.org','Mycobacterium sp identified in Peritoneal fluid by Organism specific culture','5371','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1801_538-9','538-9','http://loinc.org','Mycobacterium sp identified in Synovial fluid by Organism specific culture','5389','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1801_539-7','539-7','http://loinc.org','Mycobacterium sp identified in Sputum by Organism specific culture','5397','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1801_540-5','540-5','http://loinc.org','Mycobacterium sp identified in Tissue by Organism specific culture','5405','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1801_541-3','541-3','http://loinc.org','Mycobacterium sp identified in Urine by Organism specific culture','5413','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1801_542-1','542-1','http://loinc.org','Mycobacterium sp identified in Wound by Organism specific culture','5421','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1801_543-9','543-9','http://loinc.org','Mycobacterium sp identified in Specimen by Organism specific culture','5439','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1801_64412-0','64412-0','http://loinc.org','Mycobacterium sp [Presence] in Blood by Organism specific culture','644120','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1801_67725-2','67725-2','http://loinc.org','Mycobacterium sp identified in Isolate by HPLC','677252','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1801_76687-3','76687-3','http://loinc.org','Mycobacterium sp identified in Bronchoalveolar lavage by Organism specific culture','766873','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1801_88167-2','88167-2','http://loinc.org','Mycobacterium sp identified in Cornea or Conjunctiva by Organism specific culture','881672','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1801_88168-0','88168-0','http://loinc.org','Mycobacterium sp identified in Ocular fluid by Organism specific culture','881680','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1801_88183-9','88183-9','http://loinc.org','Mycobacterium sp identified in Isolate by Sequencing','881839','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1801_88266-2','88266-2','http://loinc.org','Mycobacterium sp rRNA [Identifier] by Probe in Positive blood culture','882662','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1801_89636-5','89636-5','http://loinc.org','Mycobacterium sp identified in Lower respiratory specimen by Organism specific culture','896365','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1801_90284-1','90284-1','http://loinc.org','Mycobacterium sp identified in Bile fluid by Organism specific culture','902841','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1801_90433-4','90433-4','http://loinc.org','Mycobacterium preliminary growth [Presence] in Sputum by Organism specific culture','904334','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1801_90438-3','90438-3','http://loinc.org','Mycobacterium preliminary growth [Presence] in Tissue by Organism specific culture','904383','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1801_91590-0','91590-0','http://loinc.org','Mycobacterium preliminary growth [Presence] in Body fluid by Organism specific culture','915900','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1801_9823-6','9823-6','http://loinc.org','Mycobacterium sp identified in Bronchial specimen by Organism specific culture','98236','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1801_9824-4','9824-4','http://loinc.org','Mycobacterium sp identified in Gastric fluid by Organism specific culture','98244','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1801_9825-1','9825-1','http://loinc.org','Mycobacterium sp identified in Isolate','98251','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1801_53909-8','53909-8','http://loinc.org','Mycobacterium sp identified in Pleural fluid by Organism specific culture','539098','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1922_100892-9','100892-9','http://loinc.org','Orthopoxvirus IgM Ab [Presence] in Serum or Plasma by Immunoassay','1008929','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.742_85763-1','85763-1','http://loinc.org','Listeria monocytogenes DNA [Presence] by NAA with non-probe detection in Positive blood culture','857631','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.742_92780-6','92780-6','http://loinc.org','Listeria monocytogenes DNA [Presence] by NAA with probe detection in Positive blood culture','927806','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.743_85763-1','85763-1','http://loinc.org','Listeria monocytogenes DNA [Presence] by NAA with non-probe detection in Positive blood culture','857631','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.743_92780-6','92780-6','http://loinc.org','Listeria monocytogenes DNA [Presence] by NAA with probe detection in Positive blood culture','927806','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.744_13947-7','13947-7','http://loinc.org','Coccidioides immitis IgG Ab [Presence] in Serum by Immunoassay','139477','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.744_16638-9','16638-9','http://loinc.org','Coccidioides immitis IgG Ab [Units/volume] in Cerebral spinal fluid','166389','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.744_22209-1','22209-1','http://loinc.org','Coccidioides immitis IgG Ab [Presence] in Serum','222091','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.744_27009-0','27009-0','http://loinc.org','Coccidioides sp IgG Ab [Units/volume] in Serum','270090','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.744_30207-5','30207-5','http://loinc.org','Coccidioides immitis IgG Ab [Presence] in Cerebral spinal fluid','302075','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.744_31154-8','31154-8','http://loinc.org','Coccidioides sp IgG Ab [Presence] in Specimen by Immunoassay','311548','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.744_41156-1','41156-1','http://loinc.org','Coccidioides sp IgG Ab [Presence] in Specimen','411561','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.744_43380-5','43380-5','http://loinc.org','Coccidioides immitis IgG Ab [Units/volume] in Specimen','433805','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.744_43849-9','43849-9','http://loinc.org','Coccidioides sp IgG Ab [Presence] in Serum by Immunoassay','438499','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.744_46182-2','46182-2','http://loinc.org','Coccidioides sp IgG Ab [Presence] in Serum','461822','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.744_57946-6','57946-6','http://loinc.org','Coccidioides immitis IgG Ab [Presence] in Cerebral spinal fluid by Complement fixation','579466','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.744_62459-3','62459-3','http://loinc.org','Coccidioides immitis IgG Ab [Presence] in Serum by Immune diffusion (ID)','624593','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.744_7826-1','7826-1','http://loinc.org','Coccidioides immitis IgG Ab [Units/volume] in Serum','78261','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.744_93836-5','93836-5','http://loinc.org','Coccidioides sp IgG Ab [Units/volume] in Serum or Plasma by Immunoassay','938365','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.744_93837-3','93837-3','http://loinc.org','Coccidioides sp IgG Ab [Units/volume] in Cerebral spinal fluid by Immunoassay','938373','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.744_94662-4','94662-4','http://loinc.org','Coccidioides immitis IgG Ab [Presence] in Cerebral spinal fluid by Immune diffusion (ID)','946624','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.744_98957-4','98957-4','http://loinc.org','Coccidioides immitis IgG Ab [Units/volume] in Specimen by Immunoassay','989574','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.745_14206-7','14206-7','http://loinc.org','Coccidioides immitis exoantigen [Identifier] in Isolate','142067','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.745_20767-0','20767-0','http://loinc.org','Coccidioides immitis [Presence] in Isolate','207670','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.745_14205-9','14205-9','http://loinc.org','Coccidioides immitis Ag [Presence] in Isolate by Immune diffusion (ID)','142059','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.745_31782-6','31782-6','http://loinc.org','Coccidioides immitis Ag [Presence] in Isolate','317826','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.745_48589-6','48589-6','http://loinc.org','Coccidioides sp rRNA [Presence] in Isolate by NAA with probe detection','485896','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.746_29310-0','29310-0','http://loinc.org','Treponema pallidum [Presence] in Specimen by Immunofluorescence','293100','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.989_97758-7','97758-7','http://loinc.org','Fungus and Mycobacterium sp identified in Blood by Organism specific culture','977587','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.989_89637-3','89637-3','http://loinc.org','Mycobacterium sp identified in Implanted device by Organism specific culture','896373','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.989_90306-2','90306-2','http://loinc.org','Mycobacterium sp identified in Specimen by Sequencing','903062','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.989_20892-6','20892-6','http://loinc.org','Mycobacterium avium ss paratuberculosis [Presence] in Tissue by Organism specific culture','208926','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.989_20893-4','20893-4','http://loinc.org','Mycobacterium avium ss paratuberculosis [Presence] in Stool by Organism specific culture','208934','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.989_24427-7','24427-7','http://loinc.org','Mycobacterium avium ss paratuberculosis [Presence] in Specimen by Organism specific culture','244277','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.989_30045-9','30045-9','http://loinc.org','Mycobacterium sp identified in Dialysis fluid by Organism specific culture','300459','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.989_614-8','614-8','http://loinc.org','Mycobacterial strain [Type] in Isolate by Mycobacterial subtyping','6148','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.989_42716-1','42716-1','http://loinc.org','Mycobacterium sp rRNA [Identifier] in Isolate by NAA with probe detection','427161','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.989_44851-4','44851-4','http://loinc.org','Mycobacterium sp # 2 identified in Specimen by Organism specific culture','448514','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.989_44852-2','44852-2','http://loinc.org','Mycobacterium sp # 3 identified in Specimen by Organism specific culture','448522','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.989_44854-8','44854-8','http://loinc.org','Mycobacterium sp # 4 identified in Specimen by Organism specific culture','448548','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.989_44855-5','44855-5','http://loinc.org','Mycobacterium sp # 5 identified in Specimen by Organism specific culture','448555','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.989_50941-4','50941-4','http://loinc.org','Mycobacterium sp [Presence] in Specimen by Organism specific culture','509414','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.989_532-2','532-2','http://loinc.org','Mycobacterium sp identified in Aspirate by Organism specific culture','5322','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.989_533-0','533-0','http://loinc.org','Mycobacterium sp identified in Blood by Organism specific culture','5330','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.989_534-8','534-8','http://loinc.org','Mycobacterium sp identified in Cerebral spinal fluid by Organism specific culture','5348','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.989_535-5','535-5','http://loinc.org','Mycobacterium sp identified in Body fluid by Organism specific culture','5355','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.989_536-3','536-3','http://loinc.org','Mycobacterium sp identified in Bone marrow by Organism specific culture','5363','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.989_537-1','537-1','http://loinc.org','Mycobacterium sp identified in Peritoneal fluid by Organism specific culture','5371','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.989_538-9','538-9','http://loinc.org','Mycobacterium sp identified in Synovial fluid by Organism specific culture','5389','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.989_540-5','540-5','http://loinc.org','Mycobacterium sp identified in Tissue by Organism specific culture','5405','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.989_541-3','541-3','http://loinc.org','Mycobacterium sp identified in Urine by Organism specific culture','5413','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.989_542-1','542-1','http://loinc.org','Mycobacterium sp identified in Wound by Organism specific culture','5421','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.989_543-9','543-9','http://loinc.org','Mycobacterium sp identified in Specimen by Organism specific culture','5439','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.989_64412-0','64412-0','http://loinc.org','Mycobacterium sp [Presence] in Blood by Organism specific culture','644120','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.989_67725-2','67725-2','http://loinc.org','Mycobacterium sp identified in Isolate by HPLC','677252','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.989_88167-2','88167-2','http://loinc.org','Mycobacterium sp identified in Cornea or Conjunctiva by Organism specific culture','881672','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.989_88168-0','88168-0','http://loinc.org','Mycobacterium sp identified in Ocular fluid by Organism specific culture','881680','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.989_88183-9','88183-9','http://loinc.org','Mycobacterium sp identified in Isolate by Sequencing','881839','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.989_88266-2','88266-2','http://loinc.org','Mycobacterium sp rRNA [Identifier] by Probe in Positive blood culture','882662','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.989_90284-1','90284-1','http://loinc.org','Mycobacterium sp identified in Bile fluid by Organism specific culture','902841','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.989_90438-3','90438-3','http://loinc.org','Mycobacterium preliminary growth [Presence] in Tissue by Organism specific culture','904383','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.989_91590-0','91590-0','http://loinc.org','Mycobacterium preliminary growth [Presence] in Body fluid by Organism specific culture','915900','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.989_9824-4','9824-4','http://loinc.org','Mycobacterium sp identified in Gastric fluid by Organism specific culture','98244','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.989_9825-1','9825-1','http://loinc.org','Mycobacterium sp identified in Isolate','98251','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.989_539-7','539-7','http://loinc.org','Mycobacterium sp identified in Sputum by Organism specific culture','5397','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.989_76687-3','76687-3','http://loinc.org','Mycobacterium sp identified in Bronchoalveolar lavage by Organism specific culture','766873','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.989_89636-5','89636-5','http://loinc.org','Mycobacterium sp identified in Lower respiratory specimen by Organism specific culture','896365','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.989_90433-4','90433-4','http://loinc.org','Mycobacterium preliminary growth [Presence] in Sputum by Organism specific culture','904334','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.989_9823-6','9823-6','http://loinc.org','Mycobacterium sp identified in Bronchial specimen by Organism specific culture','98236','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.989_53909-8','53909-8','http://loinc.org','Mycobacterium sp identified in Pleural fluid by Organism specific culture','539098','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1815_9787-3','9787-3','http://loinc.org','Sarcoptes scabiei identified in Skin by Light microscopy','97873','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.858_86904-0','86904-0','http://loinc.org','Carboxyhemoglobin/Hemoglobin.total in Arterial blood by Pulse oximetry','869040','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1937_88913-9','88913-9','http://loinc.org','Strongyloides stercoralis DNA [Presence] in Stool by NAA with probe detection','889139','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1811_97932-8','97932-8','http://loinc.org','Colorado tick fever virus RNA [Presence] in Specimen by NAA with probe detection','979328','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1819_104347-0','104347-0','http://loinc.org','Borrelia recurrentis [Presence] in Cerebral spinal fluid by Organism specific culture','1043470','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1819_104350-4','104350-4','http://loinc.org','Borrelia recurrentis [Presence] in Specimen by Microscopy','1043504','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1819_104351-2','104351-2','http://loinc.org','Borrelia recurrentis [Presence] in Specimen by Organism specific culture','1043512','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1819_104354-6','104354-6','http://loinc.org','Borrelia recurrentis DNA [Presence] in Cerebral spinal fluid by NAA with probe detection','1043546','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1819_104355-3','104355-3','http://loinc.org','Borrelia recurrentis DNA [Presence] in Cerebral spinal fluid by Sequencing','1043553','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1819_104356-1','104356-1','http://loinc.org','Borrelia recurrentis DNA [Presence] in Specimen by NAA with probe detection','1043561','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1819_104357-9','104357-9','http://loinc.org','Borrelia recurrentis DNA [Presence] in Specimen by Sequencing','1043579','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1819_11007-2','11007-2','http://loinc.org','Borrelia burgdorferi Ag [Units/volume] in Urine','110072','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1819_13503-8','13503-8','http://loinc.org','Borrelia burgdorferi IgM band pattern [Interpretation] in Serum by Immunoblot','135038','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1819_23983-0','23983-0','http://loinc.org','Borrelia burgdorferi IgM band pattern [Interpretation] in Body fluid by Immunoblot','239830','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1819_23985-5','23985-5','http://loinc.org','Borrelia burgdorferi IgM band pattern [Interpretation] in Cerebral spinal fluid by Immunoblot','239855','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1819_24036-6','24036-6','http://loinc.org','Borrelia sp Ag [Presence] in Specimen by Immunofluorescence','240366','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1819_29952-9','29952-9','http://loinc.org','Borrelia burgdorferi Ag [Mass/volume] in Urine by Immunoassay','299529','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1819_31739-6','31739-6','http://loinc.org','Borrelia sp Ag [Presence] in Specimen','317396','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1819_42236-0','42236-0','http://loinc.org','Borrelia burgdorferi DNA [Presence] in Tick by NAA with probe detection','422360','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1819_6322-2','6322-2','http://loinc.org','Borrelia burgdorferi Ag [Units/volume] in Serum','63222','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1819_67825-0','67825-0','http://loinc.org','Borrelia burgdorferi IgM bands [#] in Cerebral spinal fluid by Immunoblot','678250','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1819_87278-8','87278-8','http://loinc.org','Borrelia afzelii+burgdorferi+garinii IgM band pattern [Interpretation] in Serum by Line blot','872788','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1819_90042-3','90042-3','http://loinc.org','Borrelia sp DNA [Presence] in Tick by NAA with probe detection','900423','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1819_23977-2','23977-2','http://loinc.org','Borrelia burgdorferi Ag [Presence] in Specimen by Immunofluorescence','239772','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1819_31738-8','31738-8','http://loinc.org','Borrelia burgdorferi Ag [Presence] in Specimen','317388','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1819_104348-8','104348-8','http://loinc.org','Borrelia recurrentis [Presence] in Blood by Microscopy','1043488','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1819_104349-6','104349-6','http://loinc.org','Borrelia recurrentis [Presence] in Blood by Organism specific culture','1043496','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1819_104352-0','104352-0','http://loinc.org','Borrelia recurrentis DNA [Presence] in Blood by NAA with probe detection','1043520','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1819_104353-8','104353-8','http://loinc.org','Borrelia recurrentis DNA [Presence] in Blood by Sequencing','1043538','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1819_10847-2','10847-2','http://loinc.org','Borrelia burgdorferi DNA [Presence] in Body fluid by Probe with amplification','108472','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1819_16483-0','16483-0','http://loinc.org','Borrelia hermsii [Presence] in Specimen by Organism specific culture','164830','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1819_19052-0','19052-0','http://loinc.org','Borrelia burgdorferi DNA [Presence] in Urine by Probe with amplification','190520','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1819_21120-1','21120-1','http://loinc.org','Borrelia burgdorferi DNA [Presence] in Urine by NAA with probe detection','211201','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1819_32669-4','32669-4','http://loinc.org','Borrelia burgdorferi DNA [Presence] in Synovial fluid by NAA with probe detection','326694','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1819_33931-7','33931-7','http://loinc.org','Lymphocyte proliferation stimulated by Borrelia burgdorferi [Ratio] in Blood','339317','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1819_35638-6','35638-6','http://loinc.org','Borrelia burgdorferi DNA [Presence] in Tissue by NAA with probe detection','356386','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1819_42589-2','42589-2','http://loinc.org','Borrelia burgdorferi DNA [Presence] in Body fluid by NAA with probe detection','425892','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1819_49615-8','49615-8','http://loinc.org','Borrelia sp DNA [Identifier] in Specimen by NAA with probe detection','496158','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1819_6323-0','6323-0','http://loinc.org','Borrelia sp identified in Specimen by Organism specific culture','63230','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1819_82472-2','82472-2','http://loinc.org','Borrelia garinii+afzelii oppA1 gene [Presence] in Specimen by NAA with non-probe detection','824722','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1819_82474-8','82474-8','http://loinc.org','Borrelia mayonii oppA1 gene [Presence] in Specimen by NAA with non-probe detection','824748','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1819_87945-2','87945-2','http://loinc.org','Borrelia sp identified in Cerebral spinal fluid by Organism specific culture','879452','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1819_87946-0','87946-0','http://loinc.org','Borrelia sp identified in Tissue by Organism specific culture','879460','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1819_87947-8','87947-8','http://loinc.org','Borrelia sp DNA identified in Tissue by NAA with probe detection','879478','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1819_88581-4','88581-4','http://loinc.org','Borrelia sp DNA [Identifier] in Cerebral spinal fluid by NAA with probe detection','885814','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1819_94251-6','94251-6','http://loinc.org','Borrelia mayonii oppA2 gene [Presence] in Specimen by NAA with non-probe detection','942516','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1819_94252-4','94252-4','http://loinc.org','Borrelia garinii+afzelii oppA2 gene [Presence] in Specimen by NAA with non-probe detection','942524','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1819_11550-1','11550-1','http://loinc.org','Borrelia burgdorferi [Presence] in Specimen by Organism specific culture','115501','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1819_11551-9','11551-9','http://loinc.org','Borrelia burgdorferi DNA [Presence] in Cerebral spinal fluid by Probe with amplification','115519','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1819_32668-6','32668-6','http://loinc.org','Borrelia burgdorferi DNA [Presence] in Cerebral spinal fluid by NAA with probe detection','326686','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1819_10846-4','10846-4','http://loinc.org','Borrelia burgdorferi DNA [Presence] in Blood by Probe with amplification','108464','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1819_32667-8','32667-8','http://loinc.org','Borrelia burgdorferi DNA [Presence] in Blood by NAA with probe detection','326678','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1819_4991-6','4991-6','http://loinc.org','Borrelia burgdorferi DNA [Presence] in Specimen by NAA with probe detection','49916','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1819_82471-4','82471-4','http://loinc.org','Borrelia garinii+afzelii oppA1 gene [Presence] in Blood by NAA with non-probe detection','824714','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1819_82473-0','82473-0','http://loinc.org','Borrelia mayonii oppA1 gene [Presence] in Blood by NAA with non-probe detection','824730','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1819_82476-3','82476-3','http://loinc.org','Borrelia miyamotoi glpQ gene [Presence] in Cerebral spinal fluid by NAA with non-probe detection','824763','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1819_90893-9','90893-9','http://loinc.org','Borrelia burgdorferi bba64 gene [Presence] in Blood by NAA with non-probe detection','908939','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1819_94185-6','94185-6','http://loinc.org','Borrelia miyamotoi glpQ gene [Presence] in Specimen by NAA with probe detection','941856','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1819_94247-4','94247-4','http://loinc.org','Borrelia burgdorferi oppA2 gene [Presence] in Blood by NAA with non-probe detection','942474','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1819_94248-2','94248-2','http://loinc.org','Borrelia mayonii oppA2 gene [Presence] in Blood by NAA with non-probe detection','942482','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1819_94249-0','94249-0','http://loinc.org','Borrelia garinii+afzelii oppA2 gene [Presence] in Blood by NAA with non-probe detection','942490','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1819_94250-8','94250-8','http://loinc.org','Borrelia burgdorferi oppA2 gene [Presence] in Specimen by NAA with non-probe detection','942508','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1819_96056-7','96056-7','http://loinc.org','Borrelia sp DNA [Presence] in Blood by NAA with probe detection','960567','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1819_101749-0','101749-0','http://loinc.org','Borrelia miyamotoi DNA [Presence] in Blood by NAA with probe detection','1017490','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1819_82475-5','82475-5','http://loinc.org','Borrelia miyamotoi glpQ gene [Presence] in Blood by NAA with non-probe detection','824755','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1938_6632-4','6632-4','http://loinc.org','Strongyloides stercoralis IgG Ab [Presence] in Serum by Immunoassay','66324','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1938_8035-8','8035-8','http://loinc.org','Strongyloides stercoralis IgG Ab [Presence] in Serum','80358','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1939_6632-4','6632-4','http://loinc.org','Strongyloides stercoralis IgG Ab [Presence] in Serum by Immunoassay','66324','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1939_8035-8','8035-8','http://loinc.org','Strongyloides stercoralis IgG Ab [Presence] in Serum','80358','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_10901-7','10901-7','http://loinc.org','HIV 2 gp125 Ab [Presence] in Serum by Immunoblot','109017','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_10902-5','10902-5','http://loinc.org','HIV 2 gp36 Ab [Presence] in Serum by Immunoblot','109025','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_11078-3','11078-3','http://loinc.org','HIV 2 gp80 Ab [Presence] in Serum by Immunoblot','110783','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_11079-1','11079-1','http://loinc.org','HIV 2 p26 Ab [Presence] in Serum by Immunoblot','110791','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_11080-9','11080-9','http://loinc.org','HIV 2 p53 Ab [Presence] in Serum by Immunoblot','110809','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_11081-7','11081-7','http://loinc.org','HIV 2 p56 Ab [Presence] in Serum by Immunoblot','110817','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_11082-5','11082-5','http://loinc.org','HIV 2 p68 Ab [Presence] in Serum by Immunoblot','110825','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_12855-3','12855-3','http://loinc.org','HIV 1 p23 Ab [Presence] in Serum by Immunoblot','128553','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_12856-1','12856-1','http://loinc.org','HIV 1 p65 Ab [Presence] in Serum by Immunoblot','128561','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_12857-9','12857-9','http://loinc.org','HIV 1 p28 Ab [Presence] in Serum by Immunoblot','128579','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_12858-7','12858-7','http://loinc.org','HIV 1 p32 Ab [Presence] in Serum by Immunoblot','128587','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_12859-5','12859-5','http://loinc.org','HIV 1 p18 Ab [Presence] in Serum by Immunoblot','128595','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_12870-2','12870-2','http://loinc.org','HIV 1 gp34 Ab [Presence] in Serum by Immunoblot','128702','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_12871-0','12871-0','http://loinc.org','HIV 1 p26 Ab [Presence] in Serum by Immunoblot','128710','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_12872-8','12872-8','http://loinc.org','HIV 1 p15 Ab [Presence] in Serum by Immunoblot','128728','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_12875-1','12875-1','http://loinc.org','HIV 1 p64 Ab [Presence] in Serum by Immunoblot','128751','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_12876-9','12876-9','http://loinc.org','HIV 1 p53 Ab [Presence] in Serum by Immunoblot','128769','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_12893-4','12893-4','http://loinc.org','HIV 1 gp105 Ab [Presence] in Serum by Immunoblot','128934','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_12894-2','12894-2','http://loinc.org','HIV 1 p68 Ab [Presence] in Serum by Immunoblot','128942','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_12895-9','12895-9','http://loinc.org','HIV 1 p58 Ab [Presence] in Serum by Immunoblot','128959','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_13499-9','13499-9','http://loinc.org','HIV 1 Ab band pattern [Interpretation] in Serum by Immunoblot','134999','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_13920-4','13920-4','http://loinc.org','HIV 2 p41 Ab [Presence] in Serum by Immunoblot','139204','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_14092-1','14092-1','http://loinc.org','HIV 1 Ab [Presence] in Serum by Immunofluorescence','140921','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_14126-7','14126-7','http://loinc.org','HIV 1 gp120+gp160 Ab [Presence] in Serum by Immunoblot','141267','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_16132-3','16132-3','http://loinc.org','HIV 1 p15+p18 Ab [Presence] in Serum by Immunoblot','161323','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_16974-8','16974-8','http://loinc.org','HIV 1 Ab [Presence] in Cerebral spinal fluid','169748','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_16975-5','16975-5','http://loinc.org','HIV 1 IgG Ab [Presence] in Serum','169755','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_16978-9','16978-9','http://loinc.org','HIV 1 p24 Ab [Units/volume] in Serum','169789','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_19110-6','19110-6','http://loinc.org','HIV 1 gp41+gp43 Ab [Presence] in Serum by Immunoblot','191106','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_21331-4','21331-4','http://loinc.org','HIV 1 p24 Ab [Titer] in Serum by Immunoblot','213314','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_21332-2','21332-2','http://loinc.org','HIV 1 p41 Ab [Titer] in Serum by Immunoblot','213322','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_21334-8','21334-8','http://loinc.org','HIV 2 gp105 Ab [Presence] in Serum by Immunoblot','213348','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_21335-5','21335-5','http://loinc.org','HIV 2 gp120 Ab [Presence] in Serum by Immunoblot','213355','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_21336-3','21336-3','http://loinc.org','HIV 2 gp15 Ab [Presence] in Serum by Immunoblot','213363','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_21337-1','21337-1','http://loinc.org','HIV 2 gp34 Ab [Presence] in Serum by Immunoblot','213371','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_21338-9','21338-9','http://loinc.org','HIV 2 p31 Ab [Presence] in Serum by Immunoblot','213389','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_21339-7','21339-7','http://loinc.org','HIV 2 p55 Ab [Presence] in Serum by Immunoblot','213397','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_21340-5','21340-5','http://loinc.org','HIV 2 p58 Ab [Presence] in Serum by Immunoblot','213405','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_22356-0','22356-0','http://loinc.org','HIV 1 Ab [Units/volume] in Serum','223560','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_22357-8','22357-8','http://loinc.org','HIV 1+2 Ab [Units/volume] in Serum','223578','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_22358-6','22358-6','http://loinc.org','HIV 2 Ab [Units/volume] in Serum','223586','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_28004-0','28004-0','http://loinc.org','HIV 1 IgG Ab [Presence] in Cerebral spinal fluid by Immunoblot','280040','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_28052-9','28052-9','http://loinc.org','HIV 1 IgG band pattern [Interpretation] in Cerebral spinal fluid by Immunoblot','280529','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_29327-4','29327-4','http://loinc.org','HIV 1 Ab [Presence] in Body fluid','293274','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_29893-5','29893-5','http://loinc.org','HIV 1 Ab [Presence] in Serum or Plasma by Immunoassay','298935','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_30361-0','30361-0','http://loinc.org','HIV 2 Ab [Presence] in Serum or Plasma by Immunoassay','303610','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_31072-2','31072-2','http://loinc.org','HIV 1 p41 Ab [Presence] in Serum by Immunoblot','310722','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_31073-0','31073-0','http://loinc.org','HIV 2 Ab band pattern [Interpretation] in Serum by Immunoblot','310730','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_31201-7','31201-7','http://loinc.org','HIV 1+2 Ab [Presence] in Serum or Plasma by Immunoassay','312017','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_31430-2','31430-2','http://loinc.org','HIV 1 IgG Ab [Presence] in Cerebral spinal fluid','314302','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_32571-2','32571-2','http://loinc.org','HIV 1 Ab [Presence] in Urine by Immunoblot','325712','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_32602-5','32602-5','http://loinc.org','HIV 1+2 Ab [Presence] in Cerebral spinal fluid','326025','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_32827-8','32827-8','http://loinc.org','HIV 1 p17+p18 Ab [Presence] in Serum by Immunoblot','328278','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_32842-7','32842-7','http://loinc.org','HIV 1 p17+p18 Ab [Presence] in Serum','328427','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_33508-3','33508-3','http://loinc.org','HIV 1 p65+p66 Ab [Presence] in Serum by Immunoblot','335083','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_33806-1','33806-1','http://loinc.org','HIV 2 IgG Ab [Presence] in Serum by Immunoblot','338061','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_33807-9','33807-9','http://loinc.org','HIV 2 IgG Ab [Presence] in Serum','338079','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_33866-5','33866-5','http://loinc.org','HIV 1 Ab [Presence] in Capillary blood by Immunoassay','338665','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_34591-8','34591-8','http://loinc.org','HIV 1 Ab [Presence] in Body fluid by Immunoassay','345918','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_34592-6','34592-6','http://loinc.org','HIV 1 Ab [Presence] in Body fluid by Immunoblot','345926','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_35437-3','35437-3','http://loinc.org','HIV 1 Ab [Presence] in Saliva (oral fluid) by Immunoassay','354373','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_35438-1','35438-1','http://loinc.org','HIV 1 Ab [Units/volume] in Saliva (oral fluid) by Immunoassay','354381','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_35439-9','35439-9','http://loinc.org','HIV 1 Ab [Presence] in Saliva (oral fluid) by Immunoblot','354399','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_35440-7','35440-7','http://loinc.org','HIV 1 gp160 Ab [Presence] in Saliva (oral fluid) by Immunoblot','354407','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_35441-5','35441-5','http://loinc.org','HIV 1 gp120 Ab [Presence] in Saliva (oral fluid) by Immunoblot','354415','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_35442-3','35442-3','http://loinc.org','HIV 1 p66 Ab [Presence] in Saliva (oral fluid) by Immunoblot','354423','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_35443-1','35443-1','http://loinc.org','HIV 1 p65 Ab [Presence] in Saliva (oral fluid) by Immunoblot','354431','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_35444-9','35444-9','http://loinc.org','HIV 1 p55 Ab [Presence] in Saliva (oral fluid) by Immunoblot','354449','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_35445-6','35445-6','http://loinc.org','HIV 1 p51 Ab [Presence] in Saliva (oral fluid) by Immunoblot','354456','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_35446-4','35446-4','http://loinc.org','HIV 1 gp41 Ab [Presence] in Saliva (oral fluid) by Immunoblot','354464','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_35447-2','35447-2','http://loinc.org','HIV 1 p31 Ab [Presence] in Saliva (oral fluid) by Immunoblot','354472','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_35448-0','35448-0','http://loinc.org','HIV 1 p24 Ab [Presence] in Saliva (oral fluid) by Immunoblot','354480','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_35449-8','35449-8','http://loinc.org','HIV 1 p17 Ab [Presence] in Saliva (oral fluid) by Immunoblot','354498','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_35450-6','35450-6','http://loinc.org','HIV 1 p18 Ab [Presence] in Saliva (oral fluid) by Immunoblot','354506','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_35452-2','35452-2','http://loinc.org','HIV 1 gp40 Ab [Presence] in Serum by Immunoblot','354522','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_35564-4','35564-4','http://loinc.org','HIV 1 p31+p32 Ab [Presence] in Serum by Immunoblot','355644','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_35565-1','35565-1','http://loinc.org','HIV 1 p40 Ab [Presence] in Serum by Immunoblot','355651','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_40437-6','40437-6','http://loinc.org','HIV 1 p24 Ab [Presence] in Serum or Plasma by Immunoassay','404376','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_40438-4','40438-4','http://loinc.org','HIV 1 gp41 Ab [Presence] in Serum or Plasma by Immunoassay','404384','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_40439-2','40439-2','http://loinc.org','HIV 1 gp120+gp160 Ab [Presence] in Serum or Plasma by Immunoassay','404392','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_40732-0','40732-0','http://loinc.org','HIV 1 IgG Ab [Presence] in Serum by Immunoblot','407320','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_40733-8','40733-8','http://loinc.org','HIV 1+2 IgG Ab [Presence] in Serum or Plasma by Immunoassay','407338','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_41143-9','41143-9','http://loinc.org','HIV 1 Ab [Units/volume] in Saliva (oral fluid)','411439','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_41144-7','41144-7','http://loinc.org','HIV 1 Ab [Presence] in Saliva (oral fluid)','411447','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_41145-4','41145-4','http://loinc.org','HIV 1 Ab [Presence] in Capillary blood','411454','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_41290-8','41290-8','http://loinc.org','HIV 1+2 IgM Ab [Units/volume] in Serum or Plasma by Immunoassay','412908','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_42600-7','42600-7','http://loinc.org','HIV 1+2 Ab [Presence] in Specimen by Immunoassay','426007','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_42627-0','42627-0','http://loinc.org','HIV 1 Ab [Presence] in Cerebral spinal fluid by Immunofluorescence','426270','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_43008-2','43008-2','http://loinc.org','HIV 1+2 IgM Ab [Units/volume] in Serum','430082','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_43009-0','43009-0','http://loinc.org','HIV 1+2 IgG Ab [Presence] in Serum','430090','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_43010-8','43010-8','http://loinc.org','HIV 1+2 Ab [Presence] in Specimen','430108','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_43011-6','43011-6','http://loinc.org','HIV 1 p24 Ab [Presence] in Serum','430116','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_43012-4','43012-4','http://loinc.org','HIV 1 gp41 Ab [Presence] in Serum','430124','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_43013-2','43013-2','http://loinc.org','HIV 1 gp120+gp160 Ab [Presence] in Serum','430132','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_43185-8','43185-8','http://loinc.org','HIV 1 and 2 Ab band pattern [Interpretation] in Serum by Immunoblot','431858','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_43599-0','43599-0','http://loinc.org','HIV 1 Ab [Units/volume] in Serum by Immunofluorescence','435990','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_44532-0','44532-0','http://loinc.org','HIV 1 gp120 Ab [Presence] in Serum','445320','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_44607-0','44607-0','http://loinc.org','HIV 1 [Interpretation] in Serum or Plasma by Immunoassay','446070','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_44873-8','44873-8','http://loinc.org','HIV 1+2 Ab [Presence] in Serum by Immunoblot','448738','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_45212-8','45212-8','http://loinc.org','HIV 2 p31+p34 Ab [Presence] in Serum by Immunoblot','452128','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_47029-4','47029-4','http://loinc.org','HIV 2 Ab [Presence] in Cerebral spinal fluid by Immunoblot','470294','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_48345-3','48345-3','http://loinc.org','HIV 1+O+2 Ab [Presence] in Serum or Plasma','483453','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_48346-1','48346-1','http://loinc.org','HIV 1+O+2 Ab [Units/volume] in Serum or Plasma','483461','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_49580-4','49580-4','http://loinc.org','HIV 1+2 Ab [Presence] in Specimen by Rapid immunoassay','495804','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_49905-3','49905-3','http://loinc.org','HIV 1 Ab [Presence] in Specimen by Rapid immunoassay','499053','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_51786-2','51786-2','http://loinc.org','HIV 2 Ab Signal/Cutoff in Serum or Plasma by Immunoassay','517862','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_5220-9','5220-9','http://loinc.org','HIV 1 Ab [Units/volume] in Serum or Plasma by Immunoassay','52209','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_5221-7','5221-7','http://loinc.org','HIV 1 Ab [Presence] in Serum or Plasma by Immunoblot','52217','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_5223-3','5223-3','http://loinc.org','HIV 1+2 Ab [Units/volume] in Serum or Plasma by Immunoassay','52233','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_5224-1','5224-1','http://loinc.org','HIV 2 Ab [Units/volume] in Serum or Plasma by Immunoassay','52241','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_5225-8','5225-8','http://loinc.org','HIV 2 Ab [Presence] in Serum by Immunoblot','52258','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_53379-4','53379-4','http://loinc.org','HIV 1 Ab [Presence] in Specimen','533794','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_54086-4','54086-4','http://loinc.org','HIV 1+2 IgG Ab [Presence] in DBS','540864','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_57974-8','57974-8','http://loinc.org','HIV 1 Ab [Presence] in Cerebral spinal fluid by Immunoblot','579748','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_57975-5','57975-5','http://loinc.org','HIV 1+O+2 Ab [Presence] in Body fluid','579755','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_57976-3','57976-3','http://loinc.org','HIV 2 gp140 Ab [Presence] in Serum by Immunoblot','579763','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_57977-1','57977-1','http://loinc.org','HIV 2 p16 Ab [Presence] in Serum by Immunoblot','579771','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_57978-9','57978-9','http://loinc.org','HIV 2 p34 Ab [Presence] in Serum by Immunoblot','579789','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_62456-9','62456-9','http://loinc.org','HIV 2 p15 Ab [Presence] in Serum by Immunoblot','624569','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_68961-2','68961-2','http://loinc.org','HIV 1 Ab [Presence] in Serum, Plasma or Blood by Rapid immunoassay','689612','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_69668-2','69668-2','http://loinc.org','HIV 1 and 2 Ab [Identifier] in Serum or Plasma by Rapid immunoassay','696682','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_73905-2','73905-2','http://loinc.org','HIV 1+2 IgG Ab [Presence] in Serum or Plasma by Rapid immunoassay','739052','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_73906-0','73906-0','http://loinc.org','HIV 1+2 IgG Ab [Presence] in Blood by Rapid immunoassay','739060','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_77685-6','77685-6','http://loinc.org','HIV 1 and 2 IgG Ab [Identifier] in Serum or Plasma by Immunoblot','776856','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_7917-8','7917-8','http://loinc.org','HIV 1 Ab [Presence] in Serum','79178','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_7918-6','7918-6','http://loinc.org','HIV 1+2 Ab [Presence] in Serum','79186','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_7919-4','7919-4','http://loinc.org','HIV 2 Ab [Presence] in Serum','79194','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_80203-3','80203-3','http://loinc.org','HIV 1 and 2 Ab [Identifier] in Serum, Plasma or Blood by Rapid immunoassay','802033','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_80387-4','80387-4','http://loinc.org','HIV 1+2 Ab [Presence] in Serum, Plasma or Blood by Rapid immunoassay','803874','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_81641-3','81641-3','http://loinc.org','HIV 2 Ab [Presence] in Serum, Plasma or Blood by Rapid immunoassay','816413','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_85686-4','85686-4','http://loinc.org','HIV 1 Ab [Presence] in Serum, Plasma or Blood by Immunofluorescence','856864','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_86233-4','86233-4','http://loinc.org','HIV 1 Ab [Presence] in Serum, Plasma or Blood by Immunoblot','862334','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_89374-3','89374-3','http://loinc.org','HIV 1 Ab [Presence] in Specimen by Immunoassay','893743','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_95524-5','95524-5','http://loinc.org','HIV 1 and 2 Ab [Identifier] in Serum or Plasma by Immunoassay','955245','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_9660-2','9660-2','http://loinc.org','HIV 1 gp160 Ab [Presence] in Serum by Immunoblot','96602','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_9661-0','9661-0','http://loinc.org','HIV 1 gp120 Ab [Presence] in Serum by Immunoblot','96610','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_9662-8','9662-8','http://loinc.org','HIV 1 gp41 Ab [Presence] in Serum by Immunoblot','96628','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_9663-6','9663-6','http://loinc.org','HIV 1 p17 Ab [Presence] in Serum by Immunoblot','96636','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_9664-4','9664-4','http://loinc.org','HIV 1 p24 Ab [Presence] in Serum by Immunoblot','96644','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_9666-9','9666-9','http://loinc.org','HIV 1 p31 Ab [Presence] in Serum by Immunoblot','96669','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_9667-7','9667-7','http://loinc.org','HIV 1 p51 Ab [Presence] in Serum by Immunoblot','96677','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_9668-5','9668-5','http://loinc.org','HIV 1 p55 Ab [Presence] in Serum by Immunoblot','96685','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_9669-3','9669-3','http://loinc.org','HIV 1 p66 Ab [Presence] in Serum by Immunoblot','96693','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.730_75666-8','75666-8','http://loinc.org','HIV 1+2 Ab and HIV1 p24 Ag [Identifier] in Serum, Plasma or Blood by Rapid immunoassay','756668','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.731_56888-1','56888-1','http://loinc.org','HIV 1+2 Ab+HIV1 p24 Ag [Presence] in Serum or Plasma by Immunoassay','568881','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.731_58900-2','58900-2','http://loinc.org','HIV 1+2 Ab+HIV1 p24 Ag [Units/volume] in Serum or Plasma by Immunoassay','589002','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.731_75666-8','75666-8','http://loinc.org','HIV 1+2 Ab and HIV1 p24 Ag [Identifier] in Serum, Plasma or Blood by Rapid immunoassay','756668','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.854_10847-2','10847-2','http://loinc.org','Borrelia burgdorferi DNA [Presence] in Body fluid by Probe with amplification','108472','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.854_19052-0','19052-0','http://loinc.org','Borrelia burgdorferi DNA [Presence] in Urine by Probe with amplification','190520','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.854_21120-1','21120-1','http://loinc.org','Borrelia burgdorferi DNA [Presence] in Urine by NAA with probe detection','211201','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.854_32669-4','32669-4','http://loinc.org','Borrelia burgdorferi DNA [Presence] in Synovial fluid by NAA with probe detection','326694','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.854_35638-6','35638-6','http://loinc.org','Borrelia burgdorferi DNA [Presence] in Tissue by NAA with probe detection','356386','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.854_42589-2','42589-2','http://loinc.org','Borrelia burgdorferi DNA [Presence] in Body fluid by NAA with probe detection','425892','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.854_82474-8','82474-8','http://loinc.org','Borrelia mayonii oppA1 gene [Presence] in Specimen by NAA with non-probe detection','824748','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.854_94251-6','94251-6','http://loinc.org','Borrelia mayonii oppA2 gene [Presence] in Specimen by NAA with non-probe detection','942516','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.854_10846-4','10846-4','http://loinc.org','Borrelia burgdorferi DNA [Presence] in Blood by Probe with amplification','108464','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.854_11551-9','11551-9','http://loinc.org','Borrelia burgdorferi DNA [Presence] in Cerebral spinal fluid by Probe with amplification','115519','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.854_32667-8','32667-8','http://loinc.org','Borrelia burgdorferi DNA [Presence] in Blood by NAA with probe detection','326678','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.854_32668-6','32668-6','http://loinc.org','Borrelia burgdorferi DNA [Presence] in Cerebral spinal fluid by NAA with probe detection','326686','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.854_82473-0','82473-0','http://loinc.org','Borrelia mayonii oppA1 gene [Presence] in Blood by NAA with non-probe detection','824730','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.854_90893-9','90893-9','http://loinc.org','Borrelia burgdorferi bba64 gene [Presence] in Blood by NAA with non-probe detection','908939','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.854_94247-4','94247-4','http://loinc.org','Borrelia burgdorferi oppA2 gene [Presence] in Blood by NAA with non-probe detection','942474','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.854_94248-2','94248-2','http://loinc.org','Borrelia mayonii oppA2 gene [Presence] in Blood by NAA with non-probe detection','942482','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.854_4991-6','4991-6','http://loinc.org','Borrelia burgdorferi DNA [Presence] in Specimen by NAA with probe detection','49916','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.854_94250-8','94250-8','http://loinc.org','Borrelia burgdorferi oppA2 gene [Presence] in Specimen by NAA with non-probe detection','942508','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.855_82472-2','82472-2','http://loinc.org','Borrelia garinii+afzelii oppA1 gene [Presence] in Specimen by NAA with non-probe detection','824722','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.855_94252-4','94252-4','http://loinc.org','Borrelia garinii+afzelii oppA2 gene [Presence] in Specimen by NAA with non-probe detection','942524','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.855_82471-4','82471-4','http://loinc.org','Borrelia garinii+afzelii oppA1 gene [Presence] in Blood by NAA with non-probe detection','824714','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.855_94249-0','94249-0','http://loinc.org','Borrelia garinii+afzelii oppA2 gene [Presence] in Blood by NAA with non-probe detection','942490','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.856_87275-4','87275-4','http://loinc.org','Borrelia afzelii+burgdorferi+garinii IgG Ab [Presence] in Serum by Line blot','872754','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.856_87277-0','87277-0','http://loinc.org','Borrelia afzelii+burgdorferi+garinii IgM Ab [Presence] in Serum by Line blot','872770','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.857_34251-9','34251-9','http://loinc.org','Borrelia garinii IgG Ab [Presence] in Serum by Immunoblot','342519','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.857_34252-7','34252-7','http://loinc.org','Borrelia garinii IgM Ab [Presence] in Serum by Immunoblot','342527','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.857_48360-2','48360-2','http://loinc.org','Borrelia afzelii IgG Ab [Presence] in Serum by Immunoblot','483602','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.726_45182-3','45182-3','http://loinc.org','HIV phenotype [Susceptibility]','451823','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.726_48558-1','48558-1','http://loinc.org','HIV genotype [Susceptibility]','485581','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.726_49573-9','49573-9','http://loinc.org','HIV genotype [Susceptibility] in Isolate by Genotype method Narrative','495739','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.726_6429-5','6429-5','http://loinc.org','HIV identified in Blood by Organism specific culture','64295','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.726_6430-3','6430-3','http://loinc.org','HIV identified in Semen by Organism specific culture','64303','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.726_34700-5','34700-5','http://loinc.org','HIV reverse transcriptase+protease gene mutations tested for','347005','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.726_50790-5','50790-5','http://loinc.org','HIV 1 RNA tropism [Identifier]','507905','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.726_53798-5','53798-5','http://loinc.org','HIV reverse transcriptase+protease gene mutations detected [Identifier]','537985','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.726_61199-6','61199-6','http://loinc.org','HIV 1 integrase gene mutations detected [Identifier]','611996','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.726_6431-1','6431-1','http://loinc.org','HIV identified in Specimen by Organism specific culture','64311','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.726_30554-0','30554-0','http://loinc.org','HIV reverse transcriptase gene mutations detected [Identifier]','305540','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.726_33630-5','33630-5','http://loinc.org','HIV protease gene mutations detected [Identifier]','336305','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.726_45175-7','45175-7','http://loinc.org','HIV nucleoside reverse transcriptase gene mutations detected [Identifier]','451757','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.726_45176-5','45176-5','http://loinc.org','HIV nonnucleoside reverse transcriptase gene mutations detected [Identifier]','451765','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.848_33968-9','33968-9','http://loinc.org','SARS coronavirus Urbani Ab [Presence] in Serum by Immunoassay','339689','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.848_33969-7','33969-7','http://loinc.org','SARS coronavirus Urbani Ab [Units/volume] in Serum by Immunoassay','339697','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.848_33970-5','33970-5','http://loinc.org','SARS coronavirus Urbani Ab [Presence] in Serum by Immunofluorescence','339705','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.848_33971-3','33971-3','http://loinc.org','SARS coronavirus Urbani Ab [Titer] in Serum by Immunofluorescence','339713','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.848_33972-1','33972-1','http://loinc.org','SARS coronavirus Urbani Ab [Presence] in Serum','339721','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.848_33973-9','33973-9','http://loinc.org','SARS coronavirus Urbani Ab [Units/volume] in Serum','339739','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.848_33974-7','33974-7','http://loinc.org','SARS coronavirus Urbani Ab [Titer] in Serum','339747','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.848_41460-7','41460-7','http://loinc.org','SARS coronavirus IgG Ab [Presence] in Serum by Immunoassay','414607','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.848_41991-1','41991-1','http://loinc.org','SARS coronavirus IgM Ab [Presence] in Serum by Immunoassay','419911','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.848_42956-3','42956-3','http://loinc.org','SARS coronavirus IgM Ab [Presence] in Serum','429563','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.848_42957-1','42957-1','http://loinc.org','SARS coronavirus IgG Ab [Presence] in Serum','429571','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.848_60426-4','60426-4','http://loinc.org','SARS coronavirus Ab [Titer] in Serum','604264','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1945_29786-1','29786-1','http://loinc.org','Jamestown canyon virus IgM Ab [Units/volume] in Specimen by Immunofluorescence','297861','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1945_29787-9','29787-9','http://loinc.org','Jamestown canyon virus IgM Ab [Presence] in Specimen by Immunofluorescence','297879','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1945_29799-4','29799-4','http://loinc.org','Jamestown canyon virus IgM Ab [Units/volume] in Cerebral spinal fluid by Immunofluorescence','297994','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1945_29800-0','29800-0','http://loinc.org','Jamestown canyon virus IgM Ab [Presence] in Cerebral spinal fluid by Immunofluorescence','298000','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1945_29812-5','29812-5','http://loinc.org','Jamestown canyon virus IgM Ab [Units/volume] in Serum by Immunofluorescence','298125','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1945_29813-3','29813-3','http://loinc.org','Jamestown canyon virus IgM Ab [Presence] in Serum by Immunofluorescence','298133','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1945_29825-7','29825-7','http://loinc.org','Jamestown canyon virus IgM Ab [Units/volume] in Specimen','298257','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1945_29826-5','29826-5','http://loinc.org','Jamestown canyon virus IgM Ab [Presence] in Specimen','298265','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1945_29837-2','29837-2','http://loinc.org','Jamestown canyon virus IgM Ab [Units/volume] in Cerebral spinal fluid','298372','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1945_29838-0','29838-0','http://loinc.org','Jamestown canyon virus IgM Ab [Presence] in Cerebral spinal fluid','298380','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1945_29849-7','29849-7','http://loinc.org','Jamestown canyon virus IgM Ab [Units/volume] in Serum','298497','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1945_29850-5','29850-5','http://loinc.org','Jamestown canyon virus IgM Ab [Presence] in Serum','298505','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1945_40508-4','40508-4','http://loinc.org','Jamestown canyon virus IgM Ab [Titer] in Serum by Neutralization test','405084','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1945_43003-3','43003-3','http://loinc.org','Jamestown canyon virus IgM Ab [Titer] in Serum','430033','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1945_62946-9','62946-9','http://loinc.org','Jamestown canyon virus IgM Ab [Titer] in Body fluid by Immunofluorescence','629469','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.728_100984-4','100984-4','http://loinc.org','HIV 1 group M RNA genotype [Identifier] by Genotype method','1009844','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.728_24013-5','24013-5','http://loinc.org','HIV 1 RNA [Interpretation] in Serum','240135','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.728_25835-0','25835-0','http://loinc.org','HIV 1 RNA [Presence] in Serum or Plasma by NAA with probe detection','258350','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.728_25841-8','25841-8','http://loinc.org','HIV 2 proviral DNA [Presence] in Blood by NAA with probe detection','258418','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.728_34699-9','34699-9','http://loinc.org','HIV 2 proviral DNA [Presence] in Serum or Plasma by NAA with probe detection','346999','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.728_44871-2','44871-2','http://loinc.org','HIV 1 proviral DNA [Presence] in Blood by NAA with probe detection','448712','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.728_48023-6','48023-6','http://loinc.org','HIV 1 proviral DNA [Presence] in Serum or Plasma by NAA with probe detection','480236','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.728_5017-9','5017-9','http://loinc.org','HIV 1 RNA [Presence] in Blood by NAA with probe detection','50179','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.728_69353-1','69353-1','http://loinc.org','HIV 2 RNA [Presence] in Serum or Plasma by NAA with probe detection','693531','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.728_77368-9','77368-9','http://loinc.org','HIV 1 proviral DNA [Presence] in Semen by NAA with probe detection','773689','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.728_77369-7','77369-7','http://loinc.org','HIV 1 RNA [Presence] in Semen by NAA with probe detection','773697','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.728_79379-4','79379-4','http://loinc.org','HIV 1 RNA+proviral DNA [Presence] in Plasma by NAA with probe detection','793794','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.728_79380-2','79380-2','http://loinc.org','HIV 1 RNA+proviral DNA [Presence] in Blood by NAA with probe detection','793802','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.728_80688-5','80688-5','http://loinc.org','HIV 1 RNA tropism [Identifier] in Plasma','806885','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.728_80689-3','80689-3','http://loinc.org','HIV 1 RNA reverse transcriptase and protease and integrase gene mutations detected [Identifier] in Plasma by Sequencing','806893','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.728_80690-1','80690-1','http://loinc.org','HIV 1 proviral DNA tropism [Identifier] in Blood mononuclear cells','806901','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.728_80691-9','80691-9','http://loinc.org','HIV 1 proviral DNA integrase gene mutations detected [Identifier] in Blood mononuclear cells by Sequencing','806919','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.728_80692-7','80692-7','http://loinc.org','HIV 1 proviral DNA reverse transcriptase and protease gene mutations detected [Identifier] in Blood mononuclear cells by Sequencing','806927','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.728_80693-5','80693-5','http://loinc.org','HIV 1 proviral DNA reverse transcriptase and protease and integrase gene mutations detected [Identifier] in Blood mononuclear cells by Sequencing','806935','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.728_80695-0','80695-0','http://loinc.org','HIV 1 proviral DNA genotype in Mononuclear cells from whole blood','806950','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.728_81122-4','81122-4','http://loinc.org','HIV 1 RNA reverse transcriptase and protease gene [Nucleotide sequence] in Serum, Plasma or Blood by Sequencing','811224','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.728_85361-4','85361-4','http://loinc.org','HIV 1+2 RNA [Presence] in Blood by NAA with probe detection','853614','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.728_85368-9','85368-9','http://loinc.org','HIV 1+2 RNA [Presence] in Serum or Plasma by NAA with probe detection','853689','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.728_90898-8','90898-8','http://loinc.org','HIV 1 proviral DNA reverse transcriptase and protease and integrase gene [Nucleotide sequence] in Blood mononuclear cells by Sequencing','908988','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.728_90899-6','90899-6','http://loinc.org','HIV 1 proviral DNA reverse transcriptase and protease gene [Nucleotide sequence] in Blood mononuclear cells by Sequencing','908996','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.728_90900-2','90900-2','http://loinc.org','HIV 1 proviral DNA integrase gene [Nucleotide sequence] in Blood mononuclear cells by Sequencing','909002','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.728_90901-0','90901-0','http://loinc.org','HIV 1 RNA reverse transcriptase and protease and integrase gene [Nucleotide sequence] in Serum, Plasma or Blood by Sequencing','909010','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.728_90902-8','90902-8','http://loinc.org','HIV 1 RNA reverse transcriptase gene [Nucleotide sequence] in Serum, Plasma or Blood by Sequencing','909028','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.728_90903-6','90903-6','http://loinc.org','HIV 1 RNA integrase gene [Nucleotide sequence] in Serum, Plasma or Blood by Sequencing','909036','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.728_90904-4','90904-4','http://loinc.org','HIV 1 RNA protease gene [Nucleotide sequence] in Serum, Plasma or Blood by Sequencing','909044','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.728_96556-6','96556-6','http://loinc.org','HIV 1 and 2 RNA [Identifier] in Serum or Plasma by NAA with probe detection','965566','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.728_9836-8','9836-8','http://loinc.org','HIV proviral DNA [Presence] in Blood by Probe with amplification','98368','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.728_9837-6','9837-6','http://loinc.org','HIV 1 proviral DNA [Presence] in Blood by Probe with amplification','98376','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.728_25842-6','25842-6','http://loinc.org','HIV 2 proviral DNA [Presence] in Specimen by NAA with probe detection','258426','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.728_42917-5','42917-5','http://loinc.org','HIV 1 RNA [Presence] in Cerebral spinal fluid by NAA with probe detection','429175','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.728_49656-2','49656-2','http://loinc.org','HIV protease gene mutations by Genotype method','496562','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.728_49661-2','49661-2','http://loinc.org','HIV protease gene mutations by Phenotype method','496612','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.728_5018-7','5018-7','http://loinc.org','HIV 1 RNA [Presence] in Specimen by NAA with probe detection','50187','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.728_53825-6','53825-6','http://loinc.org','HIV 1+Hepatitis C virus RNA [Presence] in Serum or Plasma by NAA with probe detection','538256','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.728_59052-1','59052-1','http://loinc.org','HIV 1+Hepatitis C virus RNA+Hepatitis B virus DNA [Presence] in Serum or Plasma by NAA with probe detection','590521','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.728_73658-7','73658-7','http://loinc.org','HIV 1 subtype in Specimen by NAA with probe detection','736587','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.728_73659-5','73659-5','http://loinc.org','HIV 2 subtype in Specimen by NAA with probe detection','736595','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.728_74853-3','74853-3','http://loinc.org','HIV 1 proviral DNA [Presence] in Specimen by NAA with probe detection','748533','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.728_87962-7','87962-7','http://loinc.org','HIV 1 subtype identified in Cerebral spinal fluid by NAA with probe detection','879627','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.728_87963-5','87963-5','http://loinc.org','HIV 1 RNA tropism [Identifier] in Cerebral spinal fluid','879635','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.728_88212-6','88212-6','http://loinc.org','HIV 1 proviral DNA [Presence] in Cerebral spinal fluid by NAA with probe detection','882126','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.728_88542-6','88542-6','http://loinc.org','HIV 1 RNA integrase gene mutations detected [Identifier] in Cerebral spinal fluid by Sequencing','885426','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.728_88543-4','88543-4','http://loinc.org','HIV 1 RNA protease gene mutations detected [Identifier] in Cerebral spinal fluid by Sequencing','885434','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.728_88544-2','88544-2','http://loinc.org','HIV 1 RNA reverse transcriptase gene mutations detected [Identifier] in Cerebral spinal fluid by Sequencing','885442','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.728_30554-0','30554-0','http://loinc.org','HIV reverse transcriptase gene mutations detected [Identifier]','305540','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.728_33630-5','33630-5','http://loinc.org','HIV protease gene mutations detected [Identifier]','336305','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.728_45175-7','45175-7','http://loinc.org','HIV nucleoside reverse transcriptase gene mutations detected [Identifier]','451757','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.728_45176-5','45176-5','http://loinc.org','HIV nonnucleoside reverse transcriptase gene mutations detected [Identifier]','451765','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.728_83325-1','83325-1','http://loinc.org','HIV 1 RNA genotype in Isolate','833251','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.728_83326-9','83326-9','http://loinc.org','HIV 1 RNA genotype and phenotype in Isolate','833269','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.728_83327-7','83327-7','http://loinc.org','HIV 1 RNA phenotype in Isolate','833277','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1946_29561-8','29561-8','http://loinc.org','Jamestown canyon virus IgG Ab [Titer] in Serum by Immunofluorescence','295618','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1946_29562-6','29562-6','http://loinc.org','Jamestown canyon virus neutralizing antibody [Titer] in Serum by Neutralization test','295626','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1946_29788-7','29788-7','http://loinc.org','Jamestown canyon virus IgG Ab [Units/volume] in Specimen by Immunofluorescence','297887','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1946_29801-8','29801-8','http://loinc.org','Jamestown canyon virus IgG Ab [Units/volume] in Cerebral spinal fluid by Immunofluorescence','298018','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1946_29814-1','29814-1','http://loinc.org','Jamestown canyon virus IgG Ab [Units/volume] in Serum by Immunofluorescence','298141','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1946_29827-3','29827-3','http://loinc.org','Jamestown canyon virus IgG Ab [Units/volume] in Specimen','298273','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1946_29839-8','29839-8','http://loinc.org','Jamestown canyon virus IgG Ab [Units/volume] in Cerebral spinal fluid','298398','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1946_29851-3','29851-3','http://loinc.org','Jamestown canyon virus IgG Ab [Units/volume] in Serum','298513','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1946_30174-7','30174-7','http://loinc.org','Jamestown canyon virus IgG Ab [Titer] in Specimen by Immunofluorescence','301747','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1946_31446-8','31446-8','http://loinc.org','Jamestown canyon virus Ab [Units/volume] in Serum','314468','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1946_40506-8','40506-8','http://loinc.org','Jamestown canyon virus Ab [Titer] in Serum by Immunofluorescence','405068','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1946_40507-6','40507-6','http://loinc.org','Jamestown canyon virus Ab [Titer] in Serum by Hemagglutination inhibition','405076','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1946_43004-1','43004-1','http://loinc.org','Jamestown canyon virus IgG Ab [Titer] in Specimen','430041','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1946_43005-8','43005-8','http://loinc.org','Jamestown canyon virus IgG Ab [Titer] in Serum','430058','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1946_43006-6','43006-6','http://loinc.org','Jamestown canyon virus Ab [Titer] in Serum','430066','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1946_95637-5','95637-5','http://loinc.org','Jamestown canyon virus neutralizing antibody [Titer] in Specimen by Neutralization test','956375','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1946_26642-9','26642-9','http://loinc.org','Jamestown canyon virus Ab [Presence] in Serum','266429','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1946_30175-4','30175-4','http://loinc.org','Jamestown canyon virus neutralizing antibody [Presence] in Specimen by Neutralization test','301754','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1946_41133-0','41133-0','http://loinc.org','Jamestown canyon virus Ab [Presence] in Specimen','411330','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1946_74823-6','74823-6','http://loinc.org','Jamestown canyon virus Ab [Presence] in Serum by Immunoassay','748236','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1946_95664-9','95664-9','http://loinc.org','Jamestown canyon virus IgG Ab [Presence] in Specimen by Immunoassay','956649','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1946_29786-1','29786-1','http://loinc.org','Jamestown canyon virus IgM Ab [Units/volume] in Specimen by Immunofluorescence','297861','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1946_29799-4','29799-4','http://loinc.org','Jamestown canyon virus IgM Ab [Units/volume] in Cerebral spinal fluid by Immunofluorescence','297994','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1946_29812-5','29812-5','http://loinc.org','Jamestown canyon virus IgM Ab [Units/volume] in Serum by Immunofluorescence','298125','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1946_29825-7','29825-7','http://loinc.org','Jamestown canyon virus IgM Ab [Units/volume] in Specimen','298257','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1946_29837-2','29837-2','http://loinc.org','Jamestown canyon virus IgM Ab [Units/volume] in Cerebral spinal fluid','298372','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1946_29849-7','29849-7','http://loinc.org','Jamestown canyon virus IgM Ab [Units/volume] in Serum','298497','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1946_40508-4','40508-4','http://loinc.org','Jamestown canyon virus IgM Ab [Titer] in Serum by Neutralization test','405084','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1946_43003-3','43003-3','http://loinc.org','Jamestown canyon virus IgM Ab [Titer] in Serum','430033','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1946_62946-9','62946-9','http://loinc.org','Jamestown canyon virus IgM Ab [Titer] in Body fluid by Immunofluorescence','629469','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1946_29787-9','29787-9','http://loinc.org','Jamestown canyon virus IgM Ab [Presence] in Specimen by Immunofluorescence','297879','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1946_29800-0','29800-0','http://loinc.org','Jamestown canyon virus IgM Ab [Presence] in Cerebral spinal fluid by Immunofluorescence','298000','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1946_29813-3','29813-3','http://loinc.org','Jamestown canyon virus IgM Ab [Presence] in Serum by Immunofluorescence','298133','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1946_29826-5','29826-5','http://loinc.org','Jamestown canyon virus IgM Ab [Presence] in Specimen','298265','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1946_29838-0','29838-0','http://loinc.org','Jamestown canyon virus IgM Ab [Presence] in Cerebral spinal fluid','298380','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1946_29850-5','29850-5','http://loinc.org','Jamestown canyon virus IgM Ab [Presence] in Serum','298505','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.729_10351-5','10351-5','http://loinc.org','HIV 1 RNA [Units/volume] (viral load) in Serum or Plasma by Probe with amplification','103515','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.729_20447-9','20447-9','http://loinc.org','HIV 1 RNA [#/volume] (viral load) in Serum or Plasma by NAA with probe detection','204479','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.729_21008-8','21008-8','http://loinc.org','HIV 1 RNA [#/volume] (viral load) in Serum or Plasma by Probe','210088','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.729_21333-0','21333-0','http://loinc.org','HIV 1 RNA [#/volume] in Serum','213330','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.729_23876-6','23876-6','http://loinc.org','HIV 1 RNA [Units/volume] (viral load) in Plasma by Probe with signal amplification','238766','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.729_29539-4','29539-4','http://loinc.org','HIV 1 RNA [Log #/volume] (viral load) in Plasma by Probe with signal amplification','295394','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.729_29541-0','29541-0','http://loinc.org','HIV 1 RNA [Log #/volume] (viral load) in Serum or Plasma by NAA with probe detection','295410','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.729_41513-3','41513-3','http://loinc.org','HIV 1 RNA [#/volume] (viral load) in Serum or Plasma by Probe with amplification detection limit = 400 copies/mL','415133','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.729_41514-1','41514-1','http://loinc.org','HIV 1 RNA [Log #/volume] (viral load) in Serum or Plasma by Probe with amplification detection limit = 2.6 log copies/mL','415141','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.729_41515-8','41515-8','http://loinc.org','HIV 1 RNA [#/volume] (viral load) in Serum or Plasma by Probe with amplification detection limit = 75 copies/mL','415158','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.729_41516-6','41516-6','http://loinc.org','HIV 1 RNA [Log #/volume] (viral load) in Serum or Plasma by Probe with amplification detection limit = 1.9 log copies/mL','415166','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.729_48511-0','48511-0','http://loinc.org','HIV 1 RNA [#/volume] (viral load) in Serum or Plasma by Probe and target amplification method detection limit = 50 copies/mL','485110','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.729_48551-6','48551-6','http://loinc.org','HIV 1 RNA [#/volume] (viral load) in Serum or Plasma by Probe and target amplification method detection limit = 400 copies/mL','485516','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.729_48552-4','48552-4','http://loinc.org','HIV 1 RNA [Log #/volume] (viral load) in Serum or Plasma by Probe and target amplification method detection limit = 2.6 log copies/mL','485524','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.729_51780-5','51780-5','http://loinc.org','HIV 1 RNA [Log #/volume] (viral load) in Serum or Plasma by Probe and target amplification method detection limit = 0.5 log copies/mL','517805','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.729_59419-2','59419-2','http://loinc.org','HIV 1 RNA [#/volume] (viral load) in Plasma by Probe with signal amplification','594192','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.729_62469-2','62469-2','http://loinc.org','HIV 1 RNA [Units/volume] (viral load) in Serum or Plasma by NAA with probe detection','624692','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.729_69354-9','69354-9','http://loinc.org','HIV 2 RNA [Units/volume] (viral load) in Serum or Plasma by NAA with probe detection','693549','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.729_70241-5','70241-5','http://loinc.org','HIV 1 RNA [#/volume] (viral load) in Plasma by Probe and target amplification method detection limit = 20 copies/mL','702415','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.729_74854-1','74854-1','http://loinc.org','HIV 1 proviral DNA [#/volume] (viral load) in Blood by NAA with probe detection','748541','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.729_78007-2','78007-2','http://loinc.org','HIV 1 proviral DNA [Logarithmic entitic number] (viral load) in Blood mononuclear cells by NAA with probe detection','780072','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.729_78009-8','78009-8','http://loinc.org','HIV 1 proviral DNA [Entitic number] (viral load) in Blood mononuclear cells by NAA with probe detection','780098','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.729_81652-0','81652-0','http://loinc.org','HIV 2 RNA [Log #/volume] (viral load) in Serum or Plasma by NAA with probe detection','816520','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.729_86548-5','86548-5','http://loinc.org','HIV 2 RNA [#/volume] (viral load) in Plasma by NAA with probe detection','865485','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.729_25836-8','25836-8','http://loinc.org','HIV 1 RNA [#/volume] (viral load) in Specimen by NAA with probe detection','258368','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.729_41497-9','41497-9','http://loinc.org','HIV 1 RNA [Log #/volume] (viral load) in Cerebral spinal fluid by NAA with probe detection','414979','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.729_41498-7','41498-7','http://loinc.org','HIV 1 RNA [#/volume] (viral load) in Cerebral spinal fluid by NAA with probe detection','414987','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.729_48510-2','48510-2','http://loinc.org','HIV 1 RNA [Log #/volume] (viral load) in Serum or Plasma by Probe and target amplification method detection limit = 1.7 log copies/mL','485102','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.729_49890-7','49890-7','http://loinc.org','HIV 1 RNA [Log #/volume] (viral load) in Specimen by NAA with probe detection','498907','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.729_74855-8','74855-8','http://loinc.org','HIV 1 proviral DNA [Log #/volume] (viral load) in Specimen by NAA with probe detection','748558','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.729_78008-0','78008-0','http://loinc.org','HIV 1 proviral DNA [Entitic number] (viral load) in Mononuclear cells from unspecified specimen by NAA with probe detection','780080','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.729_78010-6','78010-6','http://loinc.org','HIV 1 proviral DNA [Logarithmic entitic number] (viral load) in Mononuclear cells from unspecified specimen by NAA with probe detection','780106','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.729_86547-7','86547-7','http://loinc.org','HIV 2 RNA [#/volume] (viral load) in Cerebral spinal fluid by NAA with probe detection','865477','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.729_86549-3','86549-3','http://loinc.org','HIV 2 RNA [Log #/volume] (viral load) in Cerebral spinal fluid by NAA with probe detection','865493','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1944_34452-3','34452-3','http://loinc.org','Jamestown canyon virus RNA [Presence] in Blood by NAA with probe detection','344523','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1944_42515-7','42515-7','http://loinc.org','Jamestown canyon virus RNA [Presence] in Urine by NAA with probe detection','425157','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1944_53874-4','53874-4','http://loinc.org','Jamestown canyon virus RNA [Units/volume] (viral load) in Specimen by NAA with probe detection','538744','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1944_97924-5','97924-5','http://loinc.org','Jamestown canyon virus RNA [Presence] in Specimen by NAA with probe detection','979245','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1944_34453-1','34453-1','http://loinc.org','Jamestown canyon virus RNA [Presence] in Cerebral spinal fluid by NAA with probe detection','344531','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1820_90892-1','90892-1','http://loinc.org','Borrelia sp panel - Blood by NAA with non-probe detection','908921','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1820_94476-9','94476-9','http://loinc.org','Borrelia burgdorferi G39/40 IgG bands [#] in Blood by Immunoblot','944769','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1820_94477-7','94477-7','http://loinc.org','Borrelia burgdorferi 49736 IgG bands [#] in Blood by Immunoblot','944777','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1820_104348-8','104348-8','http://loinc.org','Borrelia recurrentis [Presence] in Blood by Microscopy','1043488','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1820_104349-6','104349-6','http://loinc.org','Borrelia recurrentis [Presence] in Blood by Organism specific culture','1043496','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1820_104352-0','104352-0','http://loinc.org','Borrelia recurrentis DNA [Presence] in Blood by NAA with probe detection','1043520','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1820_104353-8','104353-8','http://loinc.org','Borrelia recurrentis DNA [Presence] in Blood by Sequencing','1043538','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1820_33931-7','33931-7','http://loinc.org','Lymphocyte proliferation stimulated by Borrelia burgdorferi [Ratio] in Blood','339317','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1820_96056-7','96056-7','http://loinc.org','Borrelia sp DNA [Presence] in Blood by NAA with probe detection','960567','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1820_10846-4','10846-4','http://loinc.org','Borrelia burgdorferi DNA [Presence] in Blood by Probe with amplification','108464','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1820_32667-8','32667-8','http://loinc.org','Borrelia burgdorferi DNA [Presence] in Blood by NAA with probe detection','326678','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1820_82471-4','82471-4','http://loinc.org','Borrelia garinii+afzelii oppA1 gene [Presence] in Blood by NAA with non-probe detection','824714','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1820_82473-0','82473-0','http://loinc.org','Borrelia mayonii oppA1 gene [Presence] in Blood by NAA with non-probe detection','824730','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1820_90893-9','90893-9','http://loinc.org','Borrelia burgdorferi bba64 gene [Presence] in Blood by NAA with non-probe detection','908939','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1820_94247-4','94247-4','http://loinc.org','Borrelia burgdorferi oppA2 gene [Presence] in Blood by NAA with non-probe detection','942474','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1820_94248-2','94248-2','http://loinc.org','Borrelia mayonii oppA2 gene [Presence] in Blood by NAA with non-probe detection','942482','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1820_94249-0','94249-0','http://loinc.org','Borrelia garinii+afzelii oppA2 gene [Presence] in Blood by NAA with non-probe detection','942490','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1820_101749-0','101749-0','http://loinc.org','Borrelia miyamotoi DNA [Presence] in Blood by NAA with probe detection','1017490','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1820_82475-5','82475-5','http://loinc.org','Borrelia miyamotoi glpQ gene [Presence] in Blood by NAA with non-probe detection','824755','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.841_39017-9','39017-9','http://loinc.org','Mycobacterium tuberculosis tuberculin stimulated gamma interferon/Mitogen stimulated gamma interferon in Blood','390179','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.841_45323-3','45323-3','http://loinc.org','Mycobacterium tuberculosis tuberculin stimulated gamma interferon [Presence] in Blood','453233','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.841_46217-6','46217-6','http://loinc.org','Mycobacterium tuberculosis stimulated gamma interferon release by CD4+ T-cells [Units/volume] in Blood','462176','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.841_64084-7','64084-7','http://loinc.org','Mycobacterium tuberculosis stimulated gamma interferon release by CD4+ T-cells [Units/volume] corrected for background in Blood','640847','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.841_71773-6','71773-6','http://loinc.org','Mycobacterium tuberculosis stimulated gamma interferon [Interpretation] in Blood Qualitative','717736','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.841_74277-5','74277-5','http://loinc.org','Mycobacterium tuberculosis stimulated gamma interferon CFP10 Ag spot count [#] in Blood','742775','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.841_74278-3','74278-3','http://loinc.org','Mycobacterium tuberculosis stimulated gamma interferon ESAT-6 Ag spot count [#] in Blood','742783','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.841_88517-8','88517-8','http://loinc.org','Mycobacterium tuberculosis stimulated gamma interferon release by CD4+ and CD8+ T-cells [Units/volume] corrected for background in Blood','885178','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.841_88518-6','88518-6','http://loinc.org','Mycobacterium tuberculosis stimulated gamma interferon release by CD4+ and CD8+ T-cells [Units/volume] in Blood','885186','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.841_96754-7','96754-7','http://loinc.org','Mycobacterium tuberculosis stimulated gamma interferon release by T-cells [Units/volume] corrected for background in Blood','967547','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.602_1647-7','1647-7','http://loinc.org','Tuberculosis reaction wheal [Diameter] --3 days post 25 TU intradermal','16477','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.602_1648-5','1648-5','http://loinc.org','Tuberculosis reaction wheal [Diameter] --3 days post 5 TU intradermal','16485','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.602_23537-4','23537-4','http://loinc.org','Tuberculosis reaction wheal [Diameter] --2 days post dose mammalian tuberculin intradermal','235374','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.602_23539-0','23539-0','http://loinc.org','Tuberculosis reaction wheal [Diameter] --3 days post dose mammalian tuberculin intradermal','235390','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.602_32561-3','32561-3','http://loinc.org','Tuberculosis reaction wheal [Diameter] --1 day post dose mammalian tuberculin intradermal','325613','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.602_43419-1','43419-1','http://loinc.org','Tuberculosis reaction wheal [Diameter] --3 days post 1 TU intradermal','434191','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1958_29782-0','29782-0','http://loinc.org','Trivittatus virus neutralizing antibody [Titer] in Specimen by Neutralization test','297820','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1958_29795-2','29795-2','http://loinc.org','Trivittatus virus neutralizing antibody [Titer] in Cerebral spinal fluid by Neutralization test','297952','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1958_29808-3','29808-3','http://loinc.org','Trivittatus virus neutralizing antibody [Titer] in Serum by Neutralization test','298083','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1958_29821-6','29821-6','http://loinc.org','Trivittatus virus Ab [Titer] in Specimen','298216','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1958_29834-9','29834-9','http://loinc.org','Trivittatus virus Ab [Titer] in Cerebral spinal fluid','298349','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1958_29846-3','29846-3','http://loinc.org','Trivittatus virus Ab [Titer] in Serum','298463','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1958_31688-5','31688-5','http://loinc.org','Trivittatus virus Ab [Units/volume] in Cerebral spinal fluid','316885','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1958_31689-3','31689-3','http://loinc.org','Trivittatus virus Ab [Units/volume] in Serum','316893','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1958_31690-1','31690-1','http://loinc.org','Trivittatus virus Ab [Units/volume] in Specimen','316901','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1956_10904-1','10904-1','http://loinc.org','La Crosse virus IgG Ab [Titer] in Serum by Immunofluorescence','109041','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1956_17036-5','17036-5','http://loinc.org','La Crosse virus Ab [Titer] in Serum','170365','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1956_17037-3','17037-3','http://loinc.org','La Crosse virus Ab [Titer] in Cerebral spinal fluid','170373','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1956_17038-1','17038-1','http://loinc.org','La Crosse virus IgG Ab [Titer] in Serum','170381','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1956_22373-5','22373-5','http://loinc.org','La Crosse virus IgG Ab [Titer] in Cerebral spinal fluid','223735','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1956_24209-9','24209-9','http://loinc.org','La Crosse virus Ab [Titer] in Serum by Immunofluorescence --1st specimen','242099','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1956_24210-7','24210-7','http://loinc.org','La Crosse virus Ab [Titer] in Serum by Immunofluorescence --2nd specimen','242107','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1956_24283-4','24283-4','http://loinc.org','La Crosse virus Ab [Titer] in Serum --1st specimen','242834','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1956_24284-2','24284-2','http://loinc.org','La Crosse virus Ab [Titer] in Serum --2nd specimen','242842','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1956_29563-4','29563-4','http://loinc.org','La Crosse virus neutralizing antibody [Titer] in Serum by Neutralization test','295634','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1956_31448-4','31448-4','http://loinc.org','La Crosse virus Ab [Units/volume] in Cerebral spinal fluid','314484','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1956_31450-0','31450-0','http://loinc.org','La Crosse virus IgG Ab [Units/volume] in Cerebral spinal fluid','314500','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1956_35697-2','35697-2','http://loinc.org','La Crosse virus Ab [Titer] in Serum by Complement fixation','356972','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1956_35709-5','35709-5','http://loinc.org','La Crosse virus Ab [Titer] in Body fluid','357095','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1956_44746-6','44746-6','http://loinc.org','La Crosse virus Ab [Units/volume] in Serum by Immunofluorescence','447466','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1956_44748-2','44748-2','http://loinc.org','La Crosse virus Ab [Units/volume] in Serum by Immunoassay','447482','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1956_48716-5','48716-5','http://loinc.org','La Crosse virus IgG Ab [Units/volume] in Serum by Immunoassay','487165','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1956_5073-2','5073-2','http://loinc.org','La Crosse virus Ab [Units/volume] in Serum','50732','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1956_7940-0','7940-0','http://loinc.org','La Crosse virus IgG Ab [Units/volume] in Serum','79400','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1956_9538-0','9538-0','http://loinc.org','La Crosse virus Ab [Titer] in Cerebral spinal fluid by Immunofluorescence','95380','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1956_9539-8','9539-8','http://loinc.org','La Crosse virus IgG Ab [Titer] in Cerebral spinal fluid by Immunofluorescence','95398','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1956_95653-2','95653-2','http://loinc.org','La Crosse virus neutralizing antibody [Titer] in Specimen by Neutralization test','956532','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1956_24016-8','24016-8','http://loinc.org','La Crosse virus Ab [Interpretation] in Serum','240168','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1956_29789-5','29789-5','http://loinc.org','La Crosse virus IgG Ab [Presence] in Specimen by Immunofluorescence','297895','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1956_29802-6','29802-6','http://loinc.org','La Crosse virus IgG Ab [Presence] in Cerebral spinal fluid by Immunofluorescence','298026','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1956_29815-8','29815-8','http://loinc.org','La Crosse virus IgG Ab [Presence] in Serum by Immunofluorescence','298158','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1956_29828-1','29828-1','http://loinc.org','La Crosse virus IgG Ab [Presence] in Specimen','298281','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1956_29840-6','29840-6','http://loinc.org','La Crosse virus IgG Ab [Presence] in Cerebral spinal fluid','298406','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1956_29852-1','29852-1','http://loinc.org','La Crosse virus IgG Ab [Presence] in Serum','298521','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1956_30176-2','30176-2','http://loinc.org','La Crosse virus neutralizing antibody [Presence] in Specimen by Neutralization test','301762','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1956_31449-2','31449-2','http://loinc.org','La Crosse virus Ab [Presence] in Specimen','314492','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1956_40736-1','40736-1','http://loinc.org','La Crosse virus Ab [Presence] in Serum by Hemagglutination inhibition','407361','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1956_44744-1','44744-1','http://loinc.org','La Crosse virus Ab [Presence] in Serum by Immunofluorescence','447441','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1956_44745-8','44745-8','http://loinc.org','La Crosse virus Ab [Presence] in Serum by Immunoassay','447458','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1956_44747-4','44747-4','http://loinc.org','La Crosse virus Ab [Presence] in Serum','447474','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1956_49067-2','49067-2','http://loinc.org','La Crosse virus IgG and IgM [Interpretation] in Cerebral spinal fluid','490672','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1956_49142-3','49142-3','http://loinc.org','La Crosse virus IgG and IgM [Interpretation] in Serum','491423','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1956_52823-2','52823-2','http://loinc.org','La Crosse virus IgG Ab [Presence] in Serum by Immunoassay','528232','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1956_62433-8','62433-8','http://loinc.org','La Crosse virus IgG Ab [Presence] in Body fluid by Immunoassay','624338','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1956_95710-0','95710-0','http://loinc.org','La Crosse virus IgA Ab [Presence] in Specimen by Immunoassay','957100','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1956_10905-8','10905-8','http://loinc.org','La Crosse virus IgM Ab [Titer] in Serum by Immunofluorescence','109058','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1956_17039-9','17039-9','http://loinc.org','La Crosse virus IgM Ab [Titer] in Serum','170399','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1956_22375-0','22375-0','http://loinc.org','La Crosse virus IgM Ab [Titer] in Cerebral spinal fluid','223750','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1956_31451-8','31451-8','http://loinc.org','La Crosse virus IgM Ab [Units/volume] in Cerebral spinal fluid','314518','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1956_44822-5','44822-5','http://loinc.org','La Crosse virus IgM Ab [Titer] in Serum by Immunoassay','448225','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1956_7941-8','7941-8','http://loinc.org','La Crosse virus IgM Ab [Units/volume] in Serum','79418','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1956_9540-6','9540-6','http://loinc.org','La Crosse virus IgM Ab [Titer] in Cerebral spinal fluid by Immunofluorescence','95406','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1956_29790-3','29790-3','http://loinc.org','La Crosse virus IgM Ab [Presence] in Specimen by Immunofluorescence','297903','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1956_29803-4','29803-4','http://loinc.org','La Crosse virus IgM Ab [Presence] in Cerebral spinal fluid by Immunofluorescence','298034','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1956_29816-6','29816-6','http://loinc.org','La Crosse virus IgM Ab [Presence] in Serum by Immunofluorescence','298166','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1956_29829-9','29829-9','http://loinc.org','La Crosse virus IgM Ab [Presence] in Specimen','298299','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1956_29841-4','29841-4','http://loinc.org','La Crosse virus IgM Ab [Presence] in Cerebral spinal fluid','298414','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1956_29853-9','29853-9','http://loinc.org','La Crosse virus IgM Ab [Presence] in Serum','298539','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1956_52824-0','52824-0','http://loinc.org','La Crosse virus IgM Ab [Presence] in Serum by Immunoassay','528240','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1956_52825-7','52825-7','http://loinc.org','La Crosse virus IgM Ab [Presence] in Cerebral spinal fluid by Immunoassay','528257','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1956_62432-0','62432-0','http://loinc.org','La Crosse virus IgM Ab [Presence] in Body fluid by Immunoassay','624320','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1957_40510-0','40510-0','http://loinc.org','Snowshoe hare virus Ab [Titer] in Serum by Immunofluorescence','405100','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1957_40511-8','40511-8','http://loinc.org','Snowshoe hare virus Ab [Titer] in Serum by Hemagglutination inhibition','405118','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1957_42952-2','42952-2','http://loinc.org','Snowshoe hare virus Ab [Titer] in Serum','429522','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1957_95642-5','95642-5','http://loinc.org','Snowshoe hare virus neutralizing antibody [Titer] in Specimen by Neutralization test','956425','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1957_26649-4','26649-4','http://loinc.org','Snowshoe hare virus Ab [Presence] in Serum','266494','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1957_50038-9','50038-9','http://loinc.org','Snowshoe hare virus neutralizing antibody [Presence] in Specimen by Neutralization test','500389','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1957_53385-1','53385-1','http://loinc.org','Snowshoe hare virus Ab [Presence] in Specimen','533851','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1957_57853-4','57853-4','http://loinc.org','Snowshoe hare virus IgG Ab [Presence] in Serum by Immunoassay','578534','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1957_74827-7','74827-7','http://loinc.org','Snowshoe hare virus Ab [Presence] in Serum by Hemagglutination inhibition','748277','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1957_74828-5','74828-5','http://loinc.org','Snowshoe hare virus neutralizing antibody [Presence] in Serum by Neutralization test','748285','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1957_74829-3','74829-3','http://loinc.org','Snowshoe hare virus IgG Ab [Presence] in Serum by Immunofluorescence','748293','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1957_95665-6','95665-6','http://loinc.org','Snowshoe hare virus IgG Ab [Presence] in Specimen by Immunoassay','956656','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1957_95697-9','95697-9','http://loinc.org','Snowshoe hare virus IgA Ab [Presence] in Specimen by Immunoassay','956979','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1957_40509-2','40509-2','http://loinc.org','Snowshoe hare virus IgM Ab [Titer] in Serum by Neutralization test','405092','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1957_42953-0','42953-0','http://loinc.org','Snowshoe hare virus IgM Ab [Titer] in Serum','429530','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1957_55379-2','55379-2','http://loinc.org','Snowshoe hare virus IgM Ab [Presence] in Serum by Immunoassay','553792','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1957_74846-7','74846-7','http://loinc.org','Snowshoe hare virus IgM Ab [Presence] in Serum by Immunofluorescence','748467','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1957_95680-5','95680-5','http://loinc.org','Snowshoe hare virus IgM Ab [Presence] in Specimen by Immunoassay','956805','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1954_10905-8','10905-8','http://loinc.org','La Crosse virus IgM Ab [Titer] in Serum by Immunofluorescence','109058','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1954_17039-9','17039-9','http://loinc.org','La Crosse virus IgM Ab [Titer] in Serum','170399','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1954_22375-0','22375-0','http://loinc.org','La Crosse virus IgM Ab [Titer] in Cerebral spinal fluid','223750','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1954_31451-8','31451-8','http://loinc.org','La Crosse virus IgM Ab [Units/volume] in Cerebral spinal fluid','314518','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1954_44822-5','44822-5','http://loinc.org','La Crosse virus IgM Ab [Titer] in Serum by Immunoassay','448225','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1954_7941-8','7941-8','http://loinc.org','La Crosse virus IgM Ab [Units/volume] in Serum','79418','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1954_9540-6','9540-6','http://loinc.org','La Crosse virus IgM Ab [Titer] in Cerebral spinal fluid by Immunofluorescence','95406','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1954_29790-3','29790-3','http://loinc.org','La Crosse virus IgM Ab [Presence] in Specimen by Immunofluorescence','297903','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1954_29803-4','29803-4','http://loinc.org','La Crosse virus IgM Ab [Presence] in Cerebral spinal fluid by Immunofluorescence','298034','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1954_29816-6','29816-6','http://loinc.org','La Crosse virus IgM Ab [Presence] in Serum by Immunofluorescence','298166','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1954_29829-9','29829-9','http://loinc.org','La Crosse virus IgM Ab [Presence] in Specimen','298299','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1954_29841-4','29841-4','http://loinc.org','La Crosse virus IgM Ab [Presence] in Cerebral spinal fluid','298414','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1954_29853-9','29853-9','http://loinc.org','La Crosse virus IgM Ab [Presence] in Serum','298539','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1954_52824-0','52824-0','http://loinc.org','La Crosse virus IgM Ab [Presence] in Serum by Immunoassay','528240','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1954_52825-7','52825-7','http://loinc.org','La Crosse virus IgM Ab [Presence] in Cerebral spinal fluid by Immunoassay','528257','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1954_62432-0','62432-0','http://loinc.org','La Crosse virus IgM Ab [Presence] in Body fluid by Immunoassay','624320','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1955_40509-2','40509-2','http://loinc.org','Snowshoe hare virus IgM Ab [Titer] in Serum by Neutralization test','405092','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1955_42953-0','42953-0','http://loinc.org','Snowshoe hare virus IgM Ab [Titer] in Serum','429530','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1955_55379-2','55379-2','http://loinc.org','Snowshoe hare virus IgM Ab [Presence] in Serum by Immunoassay','553792','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1955_74846-7','74846-7','http://loinc.org','Snowshoe hare virus IgM Ab [Presence] in Serum by Immunofluorescence','748467','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1955_95680-5','95680-5','http://loinc.org','Snowshoe hare virus IgM Ab [Presence] in Specimen by Immunoassay','956805','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1952_34454-9','34454-9','http://loinc.org','La Crosse virus RNA [Presence] in Blood by NAA with probe detection','344549','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1952_69767-2','69767-2','http://loinc.org','La Crosse virus RNA [Presence] in Specimen by NAA with probe detection','697672','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1952_34455-6','34455-6','http://loinc.org','La Crosse virus RNA [Presence] in Cerebral spinal fluid by NAA with probe detection','344556','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1953_97926-0','97926-0','http://loinc.org','Snowshoe hare virus RNA [Presence] in Specimen by NAA with probe detection','979260','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1726_27922-4','27922-4','http://loinc.org','Echovirus 4 RNA [Presence] in Cerebral spinal fluid','279224','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1726_27928-1','27928-1','http://loinc.org','Echovirus 30 RNA [Presence] in Cerebral spinal fluid by Probe','279281','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1726_27934-9','27934-9','http://loinc.org','Echovirus 11 RNA [Presence] in Cerebral spinal fluid by Probe','279349','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1726_27947-1','27947-1','http://loinc.org','Coxsackievirus A7 RNA [Units/volume] (viral load) in Cerebral spinal fluid by Probe','279471','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1726_27954-7','27954-7','http://loinc.org','Coxsackievirus B6 RNA [Units/volume] (viral load) in Cerebral spinal fluid by Probe','279547','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1726_27960-4','27960-4','http://loinc.org','Coxsackievirus B5 RNA [Units/volume] (viral load) in Cerebral spinal fluid by Probe','279604','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1726_27969-5','27969-5','http://loinc.org','Coxsackievirus A9 RNA [Units/volume] (viral load) in Cerebral spinal fluid by Probe','279695','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1726_27952-1','27952-1','http://loinc.org','Enterovirus RNA [Presence] in Cerebral spinal fluid by Probe','279521','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1726_29558-4','29558-4','http://loinc.org','Enterovirus RNA [Presence] in Cerebral spinal fluid by NAA with probe detection','295584','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1726_62463-5','62463-5','http://loinc.org','Enterovirus RNA [#/volume] (viral load) in Cerebral spinal fluid by NAA with probe detection','624635','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1726_82194-2','82194-2','http://loinc.org','Enterovirus RNA [Presence] in Cerebral spinal fluid by NAA with non-probe detection','821942','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1848_10686-4','10686-4','http://loinc.org','Leishmania sp identified in Tissue by Giemsa stain','106864','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1848_23150-6','23150-6','http://loinc.org','Leishmania donovani Ag [Presence] in Tissue by Immune stain','231506','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1848_53625-0','53625-0','http://loinc.org','Leishmania sp identified in Tissue','536250','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1725_101291-3','101291-3','http://loinc.org','Rhinovirus+Enterovirus RNA [Presence] in Throat by NAA with non-probe detection','1012913','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1725_103178-0','103178-0','http://loinc.org','Enterovirus D68 RNA [Presence] in Respiratory system specimen by NAA with probe detection','1031780','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1725_103184-8','103184-8','http://loinc.org','Human Rhinovirus 1 and 2 RNA [Presence] in Respiratory system specimen by NAA with probe detection','1031848','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1725_103185-5','103185-5','http://loinc.org','Human Rhinovirus 2 RNA [Presence] in Respiratory system specimen by NAA with probe detection','1031855','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1725_103225-9','103225-9','http://loinc.org','Enterovirus RNA [Log #/volume] (viral load) in Serum by NAA with probe detection','1032259','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1725_103559-1','103559-1','http://loinc.org','Rhinovirus RNA [Presence] in Nasopharynx by NAA with non-probe detection','1035591','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1725_40990-4','40990-4','http://loinc.org','Rhinovirus RNA [Identifier] in Specimen by NAA with probe detection','409904','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1725_40991-2','40991-2','http://loinc.org','Rhinovirus+Enterovirus RNA [Presence] in Specimen by NAA with probe detection','409912','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1725_77025-5','77025-5','http://loinc.org','Rhinovirus RNA [Presence] in Nasopharynx by NAA with probe detection','770255','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1725_7993-9','7993-9','http://loinc.org','Rhinovirus RNA [Presence] in Specimen by NAA with probe detection','79939','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1725_80596-0','80596-0','http://loinc.org','Rhinovirus 5'' UTR RNA [Presence] in Nasopharynx by NAA with probe detection','805960','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1725_82175-1','82175-1','http://loinc.org','Rhinovirus+Enterovirus RNA [Presence] in Nasopharynx by NAA with non-probe detection','821751','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1725_88213-4','88213-4','http://loinc.org','Rhinovirus RNA [Presence] in Cornea or Conjunctiva by NAA with probe detection','882134','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1725_88721-6','88721-6','http://loinc.org','Rhinovirus+Enterovirus RNA [Presence] in Nasopharynx by NAA with probe detection','887216','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1725_91131-3','91131-3','http://loinc.org','Rhinovirus RNA [Presence] in Lower respiratory specimen by NAA with probe detection','911313','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1725_91793-0','91793-0','http://loinc.org','Rhinovirus RNA [Presence] in Upper respiratory specimen by NAA with probe detection','917930','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1725_92130-4','92130-4','http://loinc.org','Rhinovirus RNA [Presence] in Respiratory system specimen by NAA with probe detection','921304','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1725_92807-7','92807-7','http://loinc.org','Rhinovirus+Enterovirus RNA [Presence] in Upper respiratory specimen by NAA with probe detection','928077','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1725_92885-3','92885-3','http://loinc.org','Rhinovirus+Enterovirus RNA [Presence] in Lower respiratory specimen by NAA with probe detection','928853','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1725_92956-2','92956-2','http://loinc.org','Rhinovirus+Enterovirus RNA [Presence] in Lower respiratory specimen by NAA with non-probe detection','929562','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1725_97954-2','97954-2','http://loinc.org','Rhinovirus+Enterovirus A+B+C RNA [Presence] in Respiratory system specimen by NAA with probe detection','979542','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1725_27922-4','27922-4','http://loinc.org','Echovirus 4 RNA [Presence] in Cerebral spinal fluid','279224','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1725_27928-1','27928-1','http://loinc.org','Echovirus 30 RNA [Presence] in Cerebral spinal fluid by Probe','279281','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1725_27934-9','27934-9','http://loinc.org','Echovirus 11 RNA [Presence] in Cerebral spinal fluid by Probe','279349','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1725_49847-7','49847-7','http://loinc.org','Enterovirus RNA [Presence] in Serum by NAA with probe detection','498477','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1725_61364-6','61364-6','http://loinc.org','Echovirus+Coxsackievirus RNA [Presence] in Specimen by NAA with probe detection','613646','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1725_62464-3','62464-3','http://loinc.org','Enterovirus RNA [#/volume] (viral load) in Serum or Plasma by NAA with probe detection','624643','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1725_74424-3','74424-3','http://loinc.org','Enterovirus RNA [Cycle Threshold #] in Stool by NAA with probe detection','744243','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1725_76074-4','76074-4','http://loinc.org','Enterovirus RNA [Presence] in Nasopharynx by NAA with probe detection','760744','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1725_7881-6','7881-6','http://loinc.org','Enterovirus RNA [Presence] in Nose by NAA with probe detection','78816','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1725_88538-4','88538-4','http://loinc.org','Enterovirus RNA [Presence] in Pericardial fluid by NAA with probe detection','885384','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1725_91066-1','91066-1','http://loinc.org','Enterovirus RNA [Presence] in Lower respiratory specimen by NAA with probe detection','910661','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1725_91067-9','91067-9','http://loinc.org','Enterovirus RNA [Presence] in Cornea or Conjunctiva by NAA with probe detection','910679','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1725_91068-7','91068-7','http://loinc.org','Enterovirus RNA [Presence] in Stool by NAA with probe detection','910687','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1725_91069-5','91069-5','http://loinc.org','Enterovirus RNA [Presence] in Urine by NAA with probe detection','910695','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1725_91769-0','91769-0','http://loinc.org','Enterovirus RNA [Presence] in Upper respiratory specimen by NAA with probe detection','917690','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1725_92132-0','92132-0','http://loinc.org','Enterovirus A+B+C RNA [Presence] in Respiratory system specimen by NAA with probe detection','921320','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1725_94838-0','94838-0','http://loinc.org','Enterovirus RNA [Presence] in Amniotic fluid by NAA with probe detection','948380','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1725_97151-5','97151-5','http://loinc.org','Enterovirus RNA [Presence] in Serum or Plasma by NAA with non-probe detection','971515','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1725_27947-1','27947-1','http://loinc.org','Coxsackievirus A7 RNA [Units/volume] (viral load) in Cerebral spinal fluid by Probe','279471','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1725_27954-7','27954-7','http://loinc.org','Coxsackievirus B6 RNA [Units/volume] (viral load) in Cerebral spinal fluid by Probe','279547','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1725_27960-4','27960-4','http://loinc.org','Coxsackievirus B5 RNA [Units/volume] (viral load) in Cerebral spinal fluid by Probe','279604','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1725_27969-5','27969-5','http://loinc.org','Coxsackievirus A9 RNA [Units/volume] (viral load) in Cerebral spinal fluid by Probe','279695','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1725_29591-5','29591-5','http://loinc.org','Enterovirus RNA [Presence] in Specimen by NAA with probe detection','295915','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1725_35396-1','35396-1','http://loinc.org','Enterovirus RNA [Presence] in Tissue by NAA with probe detection','353961','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1725_53256-4','53256-4','http://loinc.org','Enterovirus RNA [#/volume] (viral load) in Specimen by NAA with probe detection','532564','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1725_60528-7','60528-7','http://loinc.org','Enterovirus subtype in Specimen by NAA with probe detection','605287','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1725_62861-0','62861-0','http://loinc.org','Enterovirus 71 RNA [Presence] in Specimen by NAA with probe detection','628610','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1725_74423-5','74423-5','http://loinc.org','Enterovirus RNA [Cycle Threshold #] in Specimen by NAA with probe detection','744235','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1725_76072-8','76072-8','http://loinc.org','Enterovirus D68 RNA [Presence] in Specimen by NAA with probe detection','760728','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1725_87316-6','87316-6','http://loinc.org','Enterovirus G RNA [Presence] in Specimen by NAA with probe detection','873166','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1725_87960-1','87960-1','http://loinc.org','Enterovirus RNA [Presence] in Body fluid by NAA with probe detection','879601','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1725_88540-0','88540-0','http://loinc.org','Enterovirus RNA [Presence] in Aspirate by NAA with probe detection','885400','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1725_93856-3','93856-3','http://loinc.org','Enterovirus RNA [Presence] in Specimen by NAA with non-probe detection','938563','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1725_97732-2','97732-2','http://loinc.org','Enterovirus VP1 gene [Nucleotide sequence] in Isolate by Sequencing','977322','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1725_27952-1','27952-1','http://loinc.org','Enterovirus RNA [Presence] in Cerebral spinal fluid by Probe','279521','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1725_29558-4','29558-4','http://loinc.org','Enterovirus RNA [Presence] in Cerebral spinal fluid by NAA with probe detection','295584','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1725_60263-1','60263-1','http://loinc.org','Enterovirus RNA [Presence] in Isolate by NAA with probe detection','602631','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1725_60429-8','60429-8','http://loinc.org','Enterovirus 71 RNA [Presence] in Isolate by NAA with probe detection','604298','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1725_62463-5','62463-5','http://loinc.org','Enterovirus RNA [#/volume] (viral load) in Cerebral spinal fluid by NAA with probe detection','624635','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1725_82194-2','82194-2','http://loinc.org','Enterovirus RNA [Presence] in Cerebral spinal fluid by NAA with non-probe detection','821942','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.705_11084-1','11084-1','http://loinc.org','Reagin Ab [Titer] in Serum','110841','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.705_11597-2','11597-2','http://loinc.org','Treponema pallidum Ab [Units/volume] in Serum','115972','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.705_13288-6','13288-6','http://loinc.org','Treponema pallidum Ab [Units/volume] in Blood by Immunofluorescence','132886','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.705_14904-7','14904-7','http://loinc.org','Reagin Ab [Presence] in Specimen by VDRL','149047','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.705_17723-8','17723-8','http://loinc.org','Treponema pallidum Ab [Presence] in Serum by Immobilization','177238','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.705_17724-6','17724-6','http://loinc.org','Treponema pallidum Ab [Units/volume] in Serum by Immunofluorescence','177246','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.705_17725-3','17725-3','http://loinc.org','Treponema pallidum Ab [Units/volume] in Serum by Latex agglutination','177253','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.705_17726-1','17726-1','http://loinc.org','Treponema pallidum IgG Ab [Presence] in Serum by Immunofluorescence','177261','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.705_17727-9','17727-9','http://loinc.org','Treponema pallidum IgG Ab [Units/volume] in Serum by Immunofluorescence','177279','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.705_17728-7','17728-7','http://loinc.org','Treponema pallidum IgM Ab [Units/volume] in Serum by Immunofluorescence','177287','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.705_17729-5','17729-5','http://loinc.org','Treponema pallidum IgM Ab [Presence] in Serum by Immunofluorescence','177295','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.705_20507-0','20507-0','http://loinc.org','Reagin Ab [Presence] in Serum by RPR','205070','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.705_20508-8','20508-8','http://loinc.org','Reagin Ab [Units/volume] in Serum or Plasma by RPR','205088','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.705_22459-2','22459-2','http://loinc.org','Reagin Ab [Presence] in Cerebral spinal fluid','224592','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.705_22460-0','22460-0','http://loinc.org','Reagin Ab [Units/volume] in Cerebral spinal fluid','224600','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.705_22461-8','22461-8','http://loinc.org','Reagin Ab [Presence] in Serum','224618','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.705_22462-6','22462-6','http://loinc.org','Reagin Ab [Units/volume] in Serum','224626','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.705_22464-2','22464-2','http://loinc.org','Reagin Ab [Presence] in Specimen','224642','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.705_22585-4','22585-4','http://loinc.org','Treponema pallidum Ab [Units/volume] in Blood','225854','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.705_22586-2','22586-2','http://loinc.org','Treponema pallidum Ab [Presence] in Cerebral spinal fluid','225862','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.705_22587-0','22587-0','http://loinc.org','Treponema pallidum Ab [Presence] in Serum','225870','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.705_22590-4','22590-4','http://loinc.org','Treponema pallidum Ab [Titer] in Serum','225904','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.705_22592-0','22592-0','http://loinc.org','Treponema pallidum IgG Ab [Units/volume] in Serum','225920','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.705_22594-6','22594-6','http://loinc.org','Treponema pallidum IgM Ab [Units/volume] in Serum','225946','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.705_24110-9','24110-9','http://loinc.org','Treponema pallidum Ab [Presence] in Serum by Immunoassay','241109','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.705_24312-1','24312-1','http://loinc.org','Treponema pallidum Ab [Presence] in Serum by Agglutination','243121','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.705_26009-1','26009-1','http://loinc.org','Treponema pallidum Ab [Titer] in Serum by Hemagglutination','260091','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.705_26658-5','26658-5','http://loinc.org','Treponema sp Ab [Presence] in Serum','266585','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.705_31146-4','31146-4','http://loinc.org','Reagin Ab [Titer] in Cerebral spinal fluid by VDRL','311464','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.705_31147-2','31147-2','http://loinc.org','Reagin Ab [Titer] in Serum by RPR','311472','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.705_34147-9','34147-9','http://loinc.org','Treponema pallidum IgG+IgM Ab [Presence] in Serum','341479','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.705_34382-2','34382-2','http://loinc.org','Treponema pallidum Ab [Titer] in Serum by Immunofluorescence','343822','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.705_39015-3','39015-3','http://loinc.org','Treponema pallidum Ab [Units/volume] in Body fluid by Hemagglutination','390153','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.705_40679-3','40679-3','http://loinc.org','Treponema pallidum IgG Ab [Presence] in Serum by Immunoblot','406793','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.705_40680-1','40680-1','http://loinc.org','Treponema pallidum IgM Ab [Presence] in Serum by Immunoblot','406801','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.705_41122-3','41122-3','http://loinc.org','Treponema pallidum Ab [Units/volume] in Specimen','411223','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.705_43813-5','43813-5','http://loinc.org','Reagin Ab [Presence] in Cord blood','438135','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.705_46203-6','46203-6','http://loinc.org','Reagin Ab [Titer] in Cerebral spinal fluid','462036','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.705_47051-8','47051-8','http://loinc.org','Treponema pallidum IgG Ab [Units/volume] in Cerebral spinal fluid by Immunofluorescence','470518','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.705_47063-3','47063-3','http://loinc.org','Treponema pallidum IgM Ab [Units/volume] in Cerebral spinal fluid by Immunofluorescence','470633','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.705_47235-7','47235-7','http://loinc.org','Reagin Ab [Titer] in Specimen by VDRL','472357','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.705_47236-5','47236-5','http://loinc.org','Treponema pallidum IgG+IgM Ab [Presence] in Serum by Immunoassay','472365','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.705_47237-3','47237-3','http://loinc.org','Treponema pallidum IgM Ab [Presence] in Serum by Immunoassay','472373','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.705_47238-1','47238-1','http://loinc.org','Treponema pallidum IgG Ab [Presence] in Serum by Immunoassay','472381','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.705_47476-7','47476-7','http://loinc.org','Reagin Ab [Titer] in Specimen','474767','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.705_47511-1','47511-1','http://loinc.org','Treponema pallidum Ab [Units/volume] in Body fluid','475111','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.705_47512-9','47512-9','http://loinc.org','Treponema pallidum IgG Ab [Units/volume] in Cerebral spinal fluid','475129','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.705_47514-5','47514-5','http://loinc.org','Treponema pallidum IgM Ab [Units/volume] in Cerebral spinal fluid','475145','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.705_49800-6','49800-6','http://loinc.org','Treponema pallidum Ab [Units/volume] in Cerebral spinal fluid by Hemagglutination','498006','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.705_50689-9','50689-9','http://loinc.org','Treponema pallidum Ab [Presence] in Cerebral spinal fluid by Hemagglutination','506899','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.705_50690-7','50690-7','http://loinc.org','Reagin Ab [Titer] in Serum by VDRL','506907','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.705_50695-6','50695-6','http://loinc.org','Treponema pallidum Ab [Titer] in Cerebral spinal fluid by Hemagglutination','506956','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.705_51474-5','51474-5','http://loinc.org','Treponema pallidum Ab [Units/volume] in Cerebral spinal fluid','514745','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.705_51475-2','51475-2','http://loinc.org','Treponema pallidum Ab [Titer] in Cerebral spinal fluid','514752','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.705_51783-9','51783-9','http://loinc.org','Reagin Ab [Presence] in Cord blood by VDRL','517839','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.705_51838-1','51838-1','http://loinc.org','Treponema pallidum IgG Ab [Units/volume] in Serum by Immunoassay','518381','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.705_51839-9','51839-9','http://loinc.org','Treponema pallidum IgM Ab [Units/volume] in Serum by Immunoassay','518399','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.705_5289-4','5289-4','http://loinc.org','Reagin Ab [Units/volume] in Cerebral spinal fluid by VDRL','52894','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.705_5290-2','5290-2','http://loinc.org','Reagin Ab [Presence] in Cerebral spinal fluid by VDRL','52902','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.705_5291-0','5291-0','http://loinc.org','Reagin Ab [Units/volume] in Serum by VDRL','52910','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.705_5292-8','5292-8','http://loinc.org','Reagin Ab [Presence] in Serum by VDRL','52928','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.705_5392-6','5392-6','http://loinc.org','Treponema pallidum Ab [Units/volume] in Serum by Immobilization','53926','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.705_5393-4','5393-4','http://loinc.org','Treponema pallidum Ab [Presence] in Serum by Immunofluorescence','53934','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.705_5394-2','5394-2','http://loinc.org','Treponema pallidum Ab [Titer] in Serum by Latex agglutination','53942','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.705_57032-5','57032-5','http://loinc.org','Treponema pallidum Ab [Presence] in Serum by Immunoblot','570325','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.705_58031-6','58031-6','http://loinc.org','Treponema pallidum IgG Ab [Presence] in Cerebral spinal fluid','580316','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.705_58751-9','58751-9','http://loinc.org','Treponema pallidum IgG Ab [Presence] in Cerebral spinal fluid by Immunofluorescence','587519','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.705_63464-2','63464-2','http://loinc.org','Treponema pallidum Ab [Units/volume] in Serum by Immunoassay','634642','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.705_6561-5','6561-5','http://loinc.org','Treponema pallidum IgG Ab [Presence] in Serum','65615','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.705_6562-3','6562-3','http://loinc.org','Treponema pallidum IgM Ab [Presence] in Serum','65623','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.705_69946-2','69946-2','http://loinc.org','Treponema pallidum IgM Ab [Presence] in Cerebral spinal fluid by Immunoblot','699462','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.705_71793-4','71793-4','http://loinc.org','Treponema pallidum Ab [Titer] in Serum or Plasma by Agglutination','717934','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.705_8041-6','8041-6','http://loinc.org','Treponema pallidum Ab [Presence] in Serum by Hemagglutination','80416','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.705_87925-4','87925-4','http://loinc.org','Reagin Ab [Titer] in Cerebral spinal fluid by RPR','879254','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.705_98215-7','98215-7','http://loinc.org','Treponema pallidum Ab [Presence] in Cerebral spinal fluid by Immunoassay','982157','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.705_98216-5','98216-5','http://loinc.org','Treponema pallidum Ab [Units/volume] in Cerebral spinal fluid by Immunoassay','982165','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.705_98217-3','98217-3','http://loinc.org','Treponema pallidum IgG Ab [Titer] in Cerebral spinal fluid by Immunofluorescence','982173','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.705_98218-1','98218-1','http://loinc.org','Treponema pallidum IgM Ab [Titer] in Cerebral spinal fluid by Immunofluorescence','982181','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.705_98220-7','98220-7','http://loinc.org','Treponema pallidum IgG Ab [Presence] in Cerebral spinal fluid by Immunoblot','982207','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.705_98221-5','98221-5','http://loinc.org','Treponema pallidum IgG bands [Identifier] in Serum by Immunoblot','982215','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.705_98222-3','98222-3','http://loinc.org','Treponema pallidum IgG bands [Identifier] in Cerebral spinal fluid by Immunoblot','982223','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.705_98223-1','98223-1','http://loinc.org','Treponema pallidum IgM bands [Identifier] in Serum by Immunoblot','982231','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.705_98224-9','98224-9','http://loinc.org','Treponema pallidum IgM bands [Identifier] in Cerebral spinal fluid by Immunoblot','982249','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.705_9826-9','9826-9','http://loinc.org','Treponema pallidum Ab [Presence] in Cerebral spinal fluid by Immunofluorescence','98269','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1846_103723-3','103723-3','http://loinc.org','Leishmania spp DNA [Presence] in Blood by NAA with non-probe detection','1037233','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1846_23158-9','23158-9','http://loinc.org','Leishmania sp rRNA [Identifier] in Specimen by Probe','231589','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1846_23159-7','23159-7','http://loinc.org','Leishmania sp DNA [Identifier] in Specimen by NAA with probe detection','231597','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1846_49780-0','49780-0','http://loinc.org','Leishmania sp DNA [Presence] in Blood by NAA with probe detection','497800','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1846_88916-2','88916-2','http://loinc.org','Leishmania sp DNA [Identifier] in Tissue by NAA with probe detection','889162','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1846_88917-0','88917-0','http://loinc.org','Leishmania sp DNA [Identifier] in Bone marrow by NAA with probe detection','889170','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.706_32774-2','32774-2','http://loinc.org','Chlamydia sp DNA [Presence] in Genital specimen by NAA with probe detection','327742','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.706_34708-8','34708-8','http://loinc.org','Chlamydia sp DNA [Presence] in Urine by NAA with probe detection','347088','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.706_35412-6','35412-6','http://loinc.org','Chlamydia sp DNA [Presence] in Nose by NAA with probe detection','354126','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.706_35710-3','35710-3','http://loinc.org','Chlamydia sp DNA [Presence] in Conjunctival specimen by NAA with probe detection','357103','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.706_35711-1','35711-1','http://loinc.org','Chlamydia sp DNA [Presence] in Anal by NAA with probe detection','357111','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.706_35712-9','35712-9','http://loinc.org','Chlamydia sp rRNA [Presence] in Conjunctival specimen by Probe','357129','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.706_35713-7','35713-7','http://loinc.org','Chlamydia sp DNA [Presence] in Cervix by NAA with probe detection','357137','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.706_35714-5','35714-5','http://loinc.org','Chlamydia sp rRNA [Presence] in Cervix by Probe','357145','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.706_35715-2','35715-2','http://loinc.org','Chlamydia sp rRNA [Presence] in Genital specimen by Probe','357152','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.706_35716-0','35716-0','http://loinc.org','Chlamydia sp DNA [Presence] in Vaginal fluid by NAA with probe detection','357160','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.706_35717-8','35717-8','http://loinc.org','Chlamydia sp rRNA [Presence] in Vaginal fluid by Probe','357178','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.706_35718-6','35718-6','http://loinc.org','Chlamydia sp rRNA [Presence] in Nose by Probe','357186','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.706_35721-0','35721-0','http://loinc.org','Chlamydia sp rRNA [Presence] in Anal by Probe','357210','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.706_35722-8','35722-8','http://loinc.org','Chlamydia sp DNA [Presence] in Serum by NAA with probe detection','357228','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.706_35723-6','35723-6','http://loinc.org','Chlamydia sp rRNA [Presence] in Serum by Probe','357236','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.706_35724-4','35724-4','http://loinc.org','Chlamydia sp DNA [Presence] in Throat by NAA with probe detection','357244','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.706_35725-1','35725-1','http://loinc.org','Chlamydia sp rRNA [Presence] in Throat by Probe','357251','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.706_35726-9','35726-9','http://loinc.org','Chlamydia sp rRNA [Presence] in Urine by Probe','357269','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.706_35727-7','35727-7','http://loinc.org','Chlamydia sp DNA [Presence] in Urethra by NAA with probe detection','357277','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.706_35728-5','35728-5','http://loinc.org','Chlamydia sp rRNA [Presence] in Urethra by Probe','357285','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.706_35729-3','35729-3','http://loinc.org','Chlamydia sp DNA [Presence] in Specimen by NAA with probe detection','357293','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.706_35730-1','35730-1','http://loinc.org','Chlamydia sp rRNA [Presence] in Specimen by Probe','357301','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.706_35736-8','35736-8','http://loinc.org','Chlamydia sp rRNA [Presence] in Nasopharynx by Probe','357368','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.948_14128-3','14128-3','http://loinc.org','Rabies virus Ab [Titer] in Serum','141283','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.948_30553-2','30553-2','http://loinc.org','Rabies virus Ab [Presence] in Serum','305532','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.948_40742-9','40742-9','http://loinc.org','Rabies virus IgG Ab [Presence] in Serum by Immunofluorescence','407429','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.948_41128-0','41128-0','http://loinc.org','Rabies virus IgG Ab [Presence] in Serum','411280','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.948_41507-5','41507-5','http://loinc.org','Rabies virus Ab [Presence] in Serum by Immunoassay','415075','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.948_43590-9','43590-9','http://loinc.org','Rabies virus Ab [Units/volume] in Serum by Immunoassay','435909','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.948_43980-2','43980-2','http://loinc.org','Rabies virus neutralizing antibody [Titer] in Serum by Neutralization test','439802','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.948_5288-6','5288-6','http://loinc.org','Rabies virus Ab [Units/volume] in Serum','52886','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.948_58023-3','58023-3','http://loinc.org','Rabies virus IgG Ab [Units/volume] in Serum','580233','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.948_6524-3','6524-3','http://loinc.org','Rabies virus neutralizing antibody [Units/volume] in Serum by Neutralization test','65243','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.948_70858-6','70858-6','http://loinc.org','Rabies virus neutralizing antibody [Presence] in Serum by Neutralization test','708586','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.948_70863-6','70863-6','http://loinc.org','Rabies virus IgM Ab [Presence] in Serum by Immunofluorescence','708636','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.948_70864-4','70864-4','http://loinc.org','Rabies virus IgM Ab [Titer] in Serum by Immunofluorescence','708644','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.948_86587-3','86587-3','http://loinc.org','Rabies virus IgG Ab [Presence] in Serum by Immunoassay','865873','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1847_100107-2','100107-2','http://loinc.org','Leishmania sp IgG Ab [Presence] in Serum by Immunoassay','1001072','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1847_100108-0','100108-0','http://loinc.org','Leishmania sp IgG Ab [Units/volume] in Serum by Immunoassay','1001080','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1847_100110-6','100110-6','http://loinc.org','Leishmania sp 14kD IgG Ab [Presence] in Serum by Immunoblot','1001106','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1847_100111-4','100111-4','http://loinc.org','Leishmania sp 16kD IgG Ab [Presence] in Serum by Immunoblot','1001114','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1847_13256-3','13256-3','http://loinc.org','Leishmania donovani IgG Ab [Units/volume] in Serum','132563','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1847_13257-1','13257-1','http://loinc.org','Leishmania donovani IgM Ab [Units/volume] in Serum','132571','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1847_13258-9','13258-9','http://loinc.org','Leishmania brasilensis IgG Ab [Units/volume] in Serum','132589','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1847_13259-7','13259-7','http://loinc.org','Leishmania brasilensis IgM Ab [Units/volume] in Serum','132597','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1847_13260-5','13260-5','http://loinc.org','Leishmania mexicana IgG Ab [Units/volume] in Serum','132605','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1847_13261-3','13261-3','http://loinc.org','Leishmania mexicana IgM Ab [Units/volume] in Serum','132613','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1847_13262-1','13262-1','http://loinc.org','Leishmania tropica IgG Ab [Units/volume] in Serum','132621','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1847_13263-9','13263-9','http://loinc.org','Leishmania tropica IgM Ab [Units/volume] in Serum','132639','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1847_15380-9','15380-9','http://loinc.org','Leishmania brasilensis IgG Ab [Titer] in Serum','153809','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1847_15381-7','15381-7','http://loinc.org','Leishmania brasilensis IgM Ab [Titer] in Serum','153817','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1847_15382-5','15382-5','http://loinc.org','Leishmania donovani IgG Ab [Titer] in Serum','153825','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1847_15383-3','15383-3','http://loinc.org','Leishmania donovani IgM Ab [Titer] in Serum','153833','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1847_15384-1','15384-1','http://loinc.org','Leishmania mexicana IgG Ab [Titer] in Serum','153841','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1847_15385-8','15385-8','http://loinc.org','Leishmania mexicana IgM Ab [Titer] in Serum','153858','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1847_15386-6','15386-6','http://loinc.org','Leishmania tropica IgG Ab [Titer] in Serum','153866','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1847_15387-4','15387-4','http://loinc.org','Leishmania tropica IgM Ab [Titer] in Serum','153874','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1847_23152-2','23152-2','http://loinc.org','Leishmania sp Ab [Titer] in Serum','231522','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1847_23153-0','23153-0','http://loinc.org','Leishmania sp Ab [Presence] in Serum by Immunoassay','231530','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1847_23154-8','23154-8','http://loinc.org','Leishmania sp Ab [Titer] in Serum by Hemagglutination','231548','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1847_23155-5','23155-5','http://loinc.org','Leishmania sp Ab [Presence] in Serum by Immunoelectrophoresis','231555','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1847_23156-3','23156-3','http://loinc.org','Leishmania sp Ab [Titer] in Serum by Immunofluorescence','231563','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1847_23157-1','23157-1','http://loinc.org','Leishmania sp Ab [Presence] in Serum by Agglutination','231571','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1847_25633-9','25633-9','http://loinc.org','Leishmania donovani Ab [Titer] in Serum','256339','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1847_25708-9','25708-9','http://loinc.org','Leishmania donovani Ab [Titer] in Serum by Immunofluorescence','257089','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1847_26637-9','26637-9','http://loinc.org','Leishmania brasilensis Ab [Presence] in Serum','266379','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1847_26638-7','26638-7','http://loinc.org','Leishmania donovani Ab [Presence] in Serum','266387','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1847_26639-5','26639-5','http://loinc.org','Leishmania tropica Ab [Presence] in Serum','266395','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1847_31475-7','31475-7','http://loinc.org','Leishmania donovani Ab [Units/volume] in Serum','314757','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1847_34608-0','34608-0','http://loinc.org','Leishmania sp IgG Ab [Titer] in Serum','346080','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1847_35402-7','35402-7','http://loinc.org','Leishmania donovani IgG Ab [Presence] in Serum','354027','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1847_35403-5','35403-5','http://loinc.org','Leishmania donovani IgM Ab [Presence] in Serum','354035','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1847_35404-3','35404-3','http://loinc.org','Leishmania brasilensis IgG Ab [Presence] in Serum','354043','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1847_35405-0','35405-0','http://loinc.org','Leishmania brasilensis IgM Ab [Presence] in Serum','354050','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1847_35406-8','35406-8','http://loinc.org','Leishmania mexicana IgG Ab [Presence] in Serum','354068','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1847_35407-6','35407-6','http://loinc.org','Leishmania mexicana IgM Ab [Presence] in Serum','354076','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1847_35408-4','35408-4','http://loinc.org','Leishmania tropica IgG Ab [Presence] in Serum','354084','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1847_35409-2','35409-2','http://loinc.org','Leishmania tropica IgM Ab [Presence] in Serum','354092','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1847_39577-2','39577-2','http://loinc.org','Leishmania sp IgM Ab [Titer] in Serum','395772','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1847_40852-6','40852-6','http://loinc.org','Leishmania sp IgG Ab [Units/volume] in Serum','408526','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1847_40853-4','40853-4','http://loinc.org','Leishmania sp IgG Ab [Units/volume] in Cerebral spinal fluid','408534','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1847_41419-3','41419-3','http://loinc.org','Leishmania brasilensis Ab [Titer] in Serum by Immunofluorescence','414193','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1847_41420-1','41420-1','http://loinc.org','Leishmania tropica Ab [Titer] in Serum by Immunofluorescence','414201','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1847_42517-3','42517-3','http://loinc.org','Leishmania sp Ab [Presence] in Cerebral spinal fluid by Immunofluorescence','425173','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1847_42998-5','42998-5','http://loinc.org','Leishmania tropica Ab [Titer] in Serum','429985','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1847_42999-3','42999-3','http://loinc.org','Leishmania sp Ab [Presence] in Cerebral spinal fluid','429993','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1847_43000-9','43000-9','http://loinc.org','Leishmania brasilensis Ab [Titer] in Serum','430009','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1847_43109-8','43109-8','http://loinc.org','Leishmania sp IgG and IgM panel - Serum','431098','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1847_43266-6','43266-6','http://loinc.org','Leishmania chagasi K39 Ab [Presence] in Serum','432666','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1847_44819-1','44819-1','http://loinc.org','Leishmania donovani IgM Ab [Titer] in Serum by Immunofluorescence','448191','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1847_44820-9','44820-9','http://loinc.org','Leishmania brasilensis IgM Ab [Titer] in Serum by Immunofluorescence','448209','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1847_44821-7','44821-7','http://loinc.org','Leishmania brasilensis IgG Ab [Titer] in Serum by Immunofluorescence','448217','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1847_44824-1','44824-1','http://loinc.org','Leishmania donovani IgG Ab [Titer] in Serum by Immunofluorescence','448241','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1847_48314-9','48314-9','http://loinc.org','Leishmania mexicana IgG Ab [Titer] in Serum by Immunofluorescence','483149','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1847_48315-6','48315-6','http://loinc.org','Leishmania mexicana IgM Ab [Titer] in Serum by Immunofluorescence','483156','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1847_48316-4','48316-4','http://loinc.org','Leishmania tropica IgG Ab [Titer] in Serum by Immunofluorescence','483164','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1847_48317-2','48317-2','http://loinc.org','Leishmania tropica IgM Ab [Titer] in Serum by Immunofluorescence','483172','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1847_48714-0','48714-0','http://loinc.org','Leishmania tropica IgM Ab [Units/volume] in Serum by Immunofluorescence','487140','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1847_48715-7','48715-7','http://loinc.org','Leishmania tropica IgG Ab [Units/volume] in Serum by Immunofluorescence','487157','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1847_48717-3','48717-3','http://loinc.org','Leishmania mexicana IgM Ab [Units/volume] in Serum by Immunofluorescence','487173','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1847_48718-1','48718-1','http://loinc.org','Leishmania mexicana IgG Ab [Units/volume] in Serum by Immunofluorescence','487181','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1847_50999-2','50999-2','http://loinc.org','Leishmania donovani IgG and IgM [Interpretation] in Serum','509992','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1847_51711-0','51711-0','http://loinc.org','Leishmania sp Ab [Presence] in Body fluid','517110','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1847_5238-1','5238-1','http://loinc.org','Leishmania sp Ab [Units/volume] in Serum','52381','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1847_52985-9','52985-9','http://loinc.org','Leishmania sp IgG Ab [Titer] in Serum by Immunofluorescence','529859','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1847_56951-7','56951-7','http://loinc.org','Leishmania sp IgG Ab [Presence] in Serum by Immunofluorescence','569517','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1847_6621-7','6621-7','http://loinc.org','Leishmania sp Ab [Presence] in Serum by Immunofluorescence','66217','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1847_6622-5','6622-5','http://loinc.org','Leishmania sp Ab [Presence] in Serum by Hemagglutination','66225','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1847_6623-3','6623-3','http://loinc.org','Leishmania sp Ab [Presence] in Serum by Complement fixation','66233','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1847_7958-2','7958-2','http://loinc.org','Leishmania sp Ab [Presence] in Serum','79582','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1847_80207-4','80207-4','http://loinc.org','Leishmania infantum+donovani IgM Ab [Titer] in Serum or Plasma by Immunofluorescence','802074','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1847_80208-2','80208-2','http://loinc.org','Leishmania infantum+donovani IgG Ab [Titer] in Serum or Plasma by Immunofluorescence','802082','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1847_88682-0','88682-0','http://loinc.org','Leishmania sp IgM Ab [Titer] in Serum by Immunofluorescence','886820','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.707_24005-1','24005-1','http://loinc.org','Chlamydia sp identified in Bronchial specimen by Organism specific culture','240051','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.707_45097-3','45097-3','http://loinc.org','Chlamydia sp identified in Anal by Organism specific culture','450973','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.707_45098-1','45098-1','http://loinc.org','Chlamydia sp identified in Cervix by Organism specific culture','450981','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.707_45099-9','45099-9','http://loinc.org','Chlamydia sp identified in Body fluid by Organism specific culture','450999','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.707_45100-5','45100-5','http://loinc.org','Chlamydia sp identified in Vaginal fluid by Organism specific culture','451005','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.707_45101-3','45101-3','http://loinc.org','Chlamydia sp identified in Nasopharynx by Organism specific culture','451013','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.707_556-1','556-1','http://loinc.org','Chlamydia sp identified in Conjunctival specimen by Organism specific culture','5561','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.707_557-9','557-9','http://loinc.org','Chlamydia sp identified in Genital specimen by Organism specific culture','5579','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.707_558-7','558-7','http://loinc.org','Chlamydia sp identified in Throat by Organism specific culture','5587','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.707_559-5','559-5','http://loinc.org','Chlamydia sp identified in Urethra by Organism specific culture','5595','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.707_560-3','560-3','http://loinc.org','Chlamydia sp identified in Specimen by Organism specific culture','5603','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.707_6348-7','6348-7','http://loinc.org','Chlamydia sp identified in Sputum by Organism specific culture','63487','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.949_6522-7','6522-7','http://loinc.org','Rabies virus Ab [Units/volume] in Cerebral spinal fluid','65227','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.949_6523-5','6523-5','http://loinc.org','Rabies virus neutralizing antibody [Units/volume] in Cerebral spinal fluid by Neutralization test','65235','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.949_70856-0','70856-0','http://loinc.org','Rabies virus Ab [Units/volume] in Cerebral spinal fluid by Immunoassay','708560','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.949_70857-8','70857-8','http://loinc.org','Rabies virus Ab [Presence] in Cerebral spinal fluid by Immunoassay','708578','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.949_70859-4','70859-4','http://loinc.org','Rabies virus neutralizing antibody [Presence] in Cerebral spinal fluid by Neutralization test','708594','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.949_70860-2','70860-2','http://loinc.org','Rabies virus IgG Ab [Units/volume] in Cerebral spinal fluid by Immunofluorescence','708602','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.949_70861-0','70861-0','http://loinc.org','Rabies virus IgG Ab [Presence] in Cerebral spinal fluid by Immunofluorescence','708610','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.949_70862-8','70862-8','http://loinc.org','Rabies virus IgM Ab [Presence] in Cerebral spinal fluid by Immunofluorescence','708628','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.949_70865-1','70865-1','http://loinc.org','Rabies virus IgM Ab [Titer] in Cerebral spinal fluid by Immunofluorescence','708651','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.708_16593-6','16593-6','http://loinc.org','Chlamydia sp Ag [Presence] in Urine','165936','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.708_20755-5','20755-5','http://loinc.org','Chlamydia sp Ag [Presence] in Body fluid by Immunoassay','207555','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.708_20756-3','20756-3','http://loinc.org','Chlamydia sp Ag [Presence] in Stool by Immunoassay','207563','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.708_20757-1','20757-1','http://loinc.org','Chlamydia sp Ag [Presence] in Tissue by Immunofluorescence','207571','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.708_31763-6','31763-6','http://loinc.org','Chlamydia sp Ag [Presence] in Conjunctival specimen','317636','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.708_31764-4','31764-4','http://loinc.org','Chlamydia sp Ag [Presence] in Body fluid','317644','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.708_31765-1','31765-1','http://loinc.org','Chlamydia sp Ag [Presence] in Genital specimen','317651','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.708_31766-9','31766-9','http://loinc.org','Chlamydia sp Ag [Presence] in Stool','317669','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.708_31767-7','31767-7','http://loinc.org','Chlamydia sp Ag [Presence] in Specimen','317677','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.708_32001-0','32001-0','http://loinc.org','Chlamydia sp Ag [Presence] in Vaginal fluid by Immunoassay','320010','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.708_32003-6','32003-6','http://loinc.org','Chlamydia sp Ag [Presence] in Peritoneal fluid by Immunoassay','320036','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.708_32004-4','32004-4','http://loinc.org','Chlamydia sp Ag [Presence] in Urine by Immunoassay','320044','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.708_32671-0','32671-0','http://loinc.org','Chlamydia sp Ag [Presence] in Vaginal fluid','326710','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.708_45103-9','45103-9','http://loinc.org','Chlamydia sp Ag [Presence] in Anal by Immunofluorescence','451039','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.708_45104-7','45104-7','http://loinc.org','Chlamydia sp Ag [Presence] in Anal by Immunoassay','451047','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.708_45105-4','45105-4','http://loinc.org','Chlamydia sp Ag [Presence] in Anal','451054','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.708_45106-2','45106-2','http://loinc.org','Chlamydia sp Ag [Presence] in Cervix by Immunoassay','451062','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.708_45107-0','45107-0','http://loinc.org','Chlamydia sp Ag [Presence] in Cervix','451070','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.708_45108-8','45108-8','http://loinc.org','Chlamydia sp Ag [Presence] in Cervix by Immunofluorescence','451088','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.708_45109-6','45109-6','http://loinc.org','Chlamydia sp Ag [Presence] in Body fluid by Immunofluorescence','451096','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.708_45112-0','45112-0','http://loinc.org','Chlamydia sp Ag [Presence] in Urine by Immunofluorescence','451120','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.708_45113-8','45113-8','http://loinc.org','Chlamydia sp Ag [Presence] in Urethra by Immunoassay','451138','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.708_45114-6','45114-6','http://loinc.org','Chlamydia sp Ag [Presence] in Urethra','451146','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.708_45115-3','45115-3','http://loinc.org','Chlamydia sp Ag [Presence] in Urethra by Immunofluorescence','451153','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.708_45131-0','45131-0','http://loinc.org','Chlamydia sp Ag [Presence] in Nasopharynx by Immunofluorescence','451310','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.708_45132-8','45132-8','http://loinc.org','Chlamydia sp Ag [Presence] in Nasopharynx by Immunoassay','451328','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.708_45133-6','45133-6','http://loinc.org','Chlamydia sp Ag [Presence] in Nasopharynx','451336','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.708_561-1','561-1','http://loinc.org','Chlamydia sp Ag [Presence] in Specimen by Immunofluorescence','5611','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.708_6343-8','6343-8','http://loinc.org','Chlamydia sp Ag [Presence] in Conjunctival specimen by Immunoassay','63438','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.708_6344-6','6344-6','http://loinc.org','Chlamydia sp Ag [Presence] in Conjunctival specimen by Immunofluorescence','63446','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.708_6345-3','6345-3','http://loinc.org','Chlamydia sp Ag [Presence] in Genital specimen by Immunoassay','63453','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.708_6346-1','6346-1','http://loinc.org','Chlamydia sp Ag [Presence] in Genital specimen by Immunofluorescence','63461','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.708_6347-9','6347-9','http://loinc.org','Chlamydia sp Ag [Presence] in Specimen by Immunoassay','63479','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1724_43699-8','43699-8','http://loinc.org','Enterovirus identified in Cerebral spinal fluid by Shell vial culture','436998','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1724_5839-6','5839-6','http://loinc.org','Enterovirus identified in Cerebral spinal fluid by Organism specific culture','58396','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1723_5842-0','5842-0','http://loinc.org','Enterovirus identified in Stool by Organism specific culture','58420','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1723_88537-6','88537-6','http://loinc.org','Enterovirus identified in Pericardial fluid by Organism specific culture','885376','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1723_91770-8','91770-8','http://loinc.org','Enterovirus identified in Upper respiratory specimen by Organism specific culture','917708','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1723_43698-0','43698-0','http://loinc.org','Enterovirus identified in Specimen by Shell vial culture','436980','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1723_5840-4','5840-4','http://loinc.org','Enterovirus identified in Isolate by Immunofluorescence','58404','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1723_5841-2','5841-2','http://loinc.org','Enterovirus identified in Isolate by Neutralization test','58412','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1723_5843-8','5843-8','http://loinc.org','Enterovirus identified in Specimen by Organism specific culture','58438','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1723_76632-9','76632-9','http://loinc.org','Enterovirus sp [Presence] in Isolate by Immunofluorescence','766329','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1723_86322-5','86322-5','http://loinc.org','Enterovirus [Presence] in Specimen by Organism specific culture','863225','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1723_43699-8','43699-8','http://loinc.org','Enterovirus identified in Cerebral spinal fluid by Shell vial culture','436998','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1723_5839-6','5839-6','http://loinc.org','Enterovirus identified in Cerebral spinal fluid by Organism specific culture','58396','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1723_97732-2','97732-2','http://loinc.org','Enterovirus VP1 gene [Nucleotide sequence] in Isolate by Sequencing','977322','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1723_60263-1','60263-1','http://loinc.org','Enterovirus RNA [Presence] in Isolate by NAA with probe detection','602631','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1723_60429-8','60429-8','http://loinc.org','Enterovirus 71 RNA [Presence] in Isolate by NAA with probe detection','604298','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1859_25555-4','25555-4','http://loinc.org','Wuchereria bancrofti Ag [Presence] in Serum','255554','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1859_41463-1','41463-1','http://loinc.org','Wuchereria bancrofti+Brugia malayi Ag [Presence] in Serum by Immunoassay','414631','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1859_59850-8','59850-8','http://loinc.org','Wuchereria bancrofti Ag [Units/volume] in Serum by Immunoassay','598508','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1736_20798-5','20798-5','http://loinc.org','Clostridium perfringens enterotoxin [Presence] in Tissue','207985','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1736_20799-3','20799-3','http://loinc.org','Clostridium perfringens enterotoxin [Presence] in Body fluid','207993','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1736_20800-9','20800-9','http://loinc.org','Clostridium perfringens enterotoxin [Presence] in Small intestine Fixed','208009','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1736_32369-1','32369-1','http://loinc.org','Clostridium perfringens enterotoxin [Identifier] in Specimen','323691','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1736_46706-8','46706-8','http://loinc.org','Clostridium perfringens toxin gene [Identifier] in Specimen by NAA with probe detection','467068','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1736_87304-2','87304-2','http://loinc.org','Clostridium perfringens cpa gene [Presence] in Isolate by NAA with probe detection','873042','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1736_87305-9','87305-9','http://loinc.org','Clostridium perfringens cpb2 gene [Presence] in Isolate by NAA with probe detection','873059','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1736_87306-7','87306-7','http://loinc.org','Clostridium perfringens cpe gene [Presence] in Isolate by NAA with probe detection','873067','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1736_87307-5','87307-5','http://loinc.org','Clostridium perfringens etx gene [Presence] in Isolate by NAA with probe detection','873075','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1736_87313-3','87313-3','http://loinc.org','Clostridium perfringens iota toxin DNA [Presence] in Isolate by NAA with probe detection','873133','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1736_87397-6','87397-6','http://loinc.org','Clostridium perfringens cpb gene [Presence] in Isolate by NAA with probe detection','873976','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1857_88179-7','88179-7','http://loinc.org','Wuchereria bancrofti+Brugia malayi IgG4 Ab [Presence] in Serum by Immunoassay','881797','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.816_25298-1','25298-1','http://loinc.org','Rubella virus IgG Ab [Ratio] in Serum --1st specimen/2nd specimen','252981','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.816_34421-8','34421-8','http://loinc.org','Rubella virus IgG Ab avidity [Ratio] in Serum','344218','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.816_52986-7','52986-7','http://loinc.org','Rubella virus IgG Ab avidity [Ratio] in Serum by Immunoassay','529867','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1617_35390-4','35390-4','http://loinc.org','Vaccinia virus DNA [Presence] in Specimen by NAA with probe detection','353904','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1858_11582-4','11582-4','http://loinc.org','Wuchereria bancrofti Ab [Units/volume] in Serum','115824','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1858_22617-5','22617-5','http://loinc.org','Wuchereria bancrofti Ab [Presence] in Serum','226175','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1858_6606-8','6606-8','http://loinc.org','Brugia malayi Ab [Presence] in Serum by Immunoassay','66068','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1858_6633-2','6633-2','http://loinc.org','Wuchereria bancrofti Ab [Presence] in Serum by Immunoassay','66332','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1858_7819-6','7819-6','http://loinc.org','Brugia malayi Ab [Presence] in Serum','78196','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1858_88180-5','88180-5','http://loinc.org','Wuchereria bancrofti+Brugia malayi IgG3 Ab [Presence] in Serum by Immunoassay','881805','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1858_88181-3','88181-3','http://loinc.org','Wuchereria bancrofti+Brugia malayi IgG2 Ab [Presence] in Serum by Immunoassay','881813','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1858_88182-1','88182-1','http://loinc.org','Wuchereria bancrofti+Brugia malayi IgG1 Ab [Presence] in Serum by Immunoassay','881821','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1858_88179-7','88179-7','http://loinc.org','Wuchereria bancrofti+Brugia malayi IgG4 Ab [Presence] in Serum by Immunoassay','881797','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1976_74843-4','74843-4','http://loinc.org','Baylisascaris sp IgG Ab [Presence] in Cerebral spinal fluid by Immunoassay','748434','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1976_74844-2','74844-2','http://loinc.org','Baylisascaris sp IgG Ab [Presence] in Serum by Immunoassay','748442','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.818_25299-9','25299-9','http://loinc.org','Measles virus IgG Ab [Ratio] in Serum --1st specimen/2nd specimen','252999','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.818_104428-8','104428-8','http://loinc.org','Measles virus IgG Ab avidity [Ratio] in Serum by Immunoassay','1044288','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1735_20764-7','20764-7','http://loinc.org','Clostridium perfringens genotype [Identifier] in Isolate','207647','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1735_77496-8','77496-8','http://loinc.org','Clostridium perfringens [Presence] in Specimen by Organism specific culture','774968','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1851_23160-5','23160-5','http://loinc.org','Leishmania sp identified in Tissue by Immunofluorescence','231605','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1851_51709-4','51709-4','http://loinc.org','Leishmania sp identified in Specimen by Giemsa stain','517094','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1851_10686-4','10686-4','http://loinc.org','Leishmania sp identified in Tissue by Giemsa stain','106864','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1851_23150-6','23150-6','http://loinc.org','Leishmania donovani Ag [Presence] in Tissue by Immune stain','231506','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1851_53625-0','53625-0','http://loinc.org','Leishmania sp identified in Tissue','536250','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1972_72606-7','72606-7','http://loinc.org','Hepatitis D virus genotype [Identifier] in Specimen by NAA with probe detection','726067','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1972_7906-1','7906-1','http://loinc.org','Hepatitis D virus RNA [Presence] in Serum by NAA with probe detection','79061','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1972_80426-0','80426-0','http://loinc.org','Hepatitis D virus RNA [#/volume] (viral load) in Serum or Plasma by NAA with probe detection','804260','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1972_85512-2','85512-2','http://loinc.org','Hepatitis D virus RNA [Units/volume] (viral load) in Serum by NAA with probe detection','855122','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1972_85513-0','85513-0','http://loinc.org','Hepatitis D virus RNA [log units/volume] (viral load) in Serum by NAA with probe detection','855130','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1970_13248-0','13248-0','http://loinc.org','Hepatitis D virus Ab [Presence] in Serum','132480','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1970_22330-5','22330-5','http://loinc.org','Hepatitis D virus Ab [Units/volume] in Serum','223305','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1970_35273-2','35273-2','http://loinc.org','Hepatitis D virus IgG Ab [Presence] in Serum by Immunoassay','352732','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1970_35283-1','35283-1','http://loinc.org','Hepatitis D virus IgG Ab [Presence] in Serum','352831','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1970_40727-0','40727-0','http://loinc.org','Hepatitis D virus Ab [Presence] in Serum by Immunoassay','407270','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1970_49775-0','49775-0','http://loinc.org','Hepatitis D virus IgG Ab [Units/volume] in Serum by Immunoassay','497750','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1970_51458-8','51458-8','http://loinc.org','Hepatitis D virus IgG Ab [Units/volume] in Serum','514588','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1970_51654-2','51654-2','http://loinc.org','Hepatitis D virus Ab [Presence] in Body fluid','516542','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1970_5200-1','5200-1','http://loinc.org','Hepatitis D virus Ab [Units/volume] in Serum by Immunoassay','52001','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1970_5201-9','5201-9','http://loinc.org','Hepatitis D virus Ab [Units/volume] in Serum by Radioimmunoassay (RIA)','52019','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1970_95238-2','95238-2','http://loinc.org','Hepatitis D virus Ab [Interpretation] in Serum or Plasma','952382','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1971_34597-5','34597-5','http://loinc.org','Hepatitis D virus IgM Ab [Presence] in Serum','345975','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1971_44826-6','44826-6','http://loinc.org','Hepatitis D virus IgM Ab [Units/volume] in Serum by Immunoassay','448266','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1971_44938-9','44938-9','http://loinc.org','Hepatitis D virus IgM Ab [Presence] in Serum by Immunoassay','449389','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1971_9525-7','9525-7','http://loinc.org','Hepatitis D virus IgM Ab [Units/volume] in Serum','95257','2.77');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1601_1551993','1551993','http://www.nlm.nih.gov/research/umls/rxnorm','cobicistat 150 MG Oral Tablet','1551993','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1601_1551999','1551999','http://www.nlm.nih.gov/research/umls/rxnorm','cobicistat 150 MG Oral Tablet [Tybost]','1551999','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1601_152970','152970','http://www.nlm.nih.gov/research/umls/rxnorm','ritonavir 100 MG Oral Capsule [Norvir]','152970','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1601_152971','152971','http://www.nlm.nih.gov/research/umls/rxnorm','ritonavir 80 MG/ML Oral Solution [Norvir]','152971','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1601_1926066','1926066','http://www.nlm.nih.gov/research/umls/rxnorm','ritonavir 100 MG Oral Powder','1926066','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1601_1926069','1926069','http://www.nlm.nih.gov/research/umls/rxnorm','ritonavir 100 MG Oral Powder [Norvir]','1926069','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1601_199249','199249','http://www.nlm.nih.gov/research/umls/rxnorm','ritonavir 80 MG/ML Oral Solution','199249','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1601_317150','317150','http://www.nlm.nih.gov/research/umls/rxnorm','ritonavir 100 MG Oral Capsule','317150','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1601_900575','900575','http://www.nlm.nih.gov/research/umls/rxnorm','ritonavir 100 MG Oral Tablet','900575','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1601_900577','900577','http://www.nlm.nih.gov/research/umls/rxnorm','ritonavir 100 MG Oral Tablet [Norvir]','900577','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1600_1235588','1235588','http://www.nlm.nih.gov/research/umls/rxnorm','raltegravir 100 MG Chewable Tablet','1235588','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1600_1235591','1235591','http://www.nlm.nih.gov/research/umls/rxnorm','raltegravir 100 MG Chewable Tablet [Isentress]','1235591','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1600_1235593','1235593','http://www.nlm.nih.gov/research/umls/rxnorm','raltegravir 25 MG Chewable Tablet','1235593','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1600_1235595','1235595','http://www.nlm.nih.gov/research/umls/rxnorm','raltegravir 25 MG Chewable Tablet [Isentress]','1235595','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1600_1433873','1433873','http://www.nlm.nih.gov/research/umls/rxnorm','dolutegravir 50 MG Oral Tablet','1433873','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1600_1433879','1433879','http://www.nlm.nih.gov/research/umls/rxnorm','dolutegravir 50 MG Oral Tablet [Tivicay]','1433879','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1600_1486838','1486838','http://www.nlm.nih.gov/research/umls/rxnorm','raltegravir 100 MG Granules for Oral Suspension','1486838','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1600_1486841','1486841','http://www.nlm.nih.gov/research/umls/rxnorm','raltegravir 100 MG Granules for Oral Suspension [Isentress]','1486841','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1600_1796077','1796077','http://www.nlm.nih.gov/research/umls/rxnorm','dolutegravir 10 MG Oral Tablet','1796077','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1600_1796079','1796079','http://www.nlm.nih.gov/research/umls/rxnorm','dolutegravir 10 MG Oral Tablet [Tivicay]','1796079','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1600_1796081','1796081','http://www.nlm.nih.gov/research/umls/rxnorm','dolutegravir 25 MG Oral Tablet','1796081','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1600_1796083','1796083','http://www.nlm.nih.gov/research/umls/rxnorm','dolutegravir 25 MG Oral Tablet [Tivicay]','1796083','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1600_1924313','1924313','http://www.nlm.nih.gov/research/umls/rxnorm','raltegravir 600 MG Oral Tablet','1924313','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1600_1924315','1924315','http://www.nlm.nih.gov/research/umls/rxnorm','raltegravir 600 MG Oral Tablet [Isentress]','1924315','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1600_2374562','2374562','http://www.nlm.nih.gov/research/umls/rxnorm','dolutegravir 5 MG Tablet for Oral Suspension','2374562','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1600_2374566','2374566','http://www.nlm.nih.gov/research/umls/rxnorm','dolutegravir 5 MG Tablet for Oral Suspension [Tivicay]','2374566','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1600_2475199','2475199','http://www.nlm.nih.gov/research/umls/rxnorm','cabotegravir 30 MG Oral Tablet','2475199','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1600_2475205','2475205','http://www.nlm.nih.gov/research/umls/rxnorm','cabotegravir 30 MG Oral Tablet [Vocabria]','2475205','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1600_2475410','2475410','http://www.nlm.nih.gov/research/umls/rxnorm','','2475410','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1600_2588077','2588077','http://www.nlm.nih.gov/research/umls/rxnorm','3 ML cabotegravir 200 MG/ML Injection','2588077','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1600_2588080','2588080','http://www.nlm.nih.gov/research/umls/rxnorm','3 ML cabotegravir 200 MG/ML Injection [Apretude]','2588080','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1600_2594978','2594978','http://www.nlm.nih.gov/research/umls/rxnorm','2 ML cabotegravir 200 MG/ML Injection','2594978','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1600_744842','744842','http://www.nlm.nih.gov/research/umls/rxnorm','raltegravir 400 MG Oral Tablet','744842','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1600_744846','744846','http://www.nlm.nih.gov/research/umls/rxnorm','raltegravir 400 MG Oral Tablet [Isentress]','744846','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1603_2380549','2380549','http://www.nlm.nih.gov/research/umls/rxnorm','12 HR fostemsavir 600 MG Extended Release Oral Tablet','2380549','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1603_2380551','2380551','http://www.nlm.nih.gov/research/umls/rxnorm','12 HR fostemsavir 600 MG Extended Release Oral Tablet [Rukobia]','2380551','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1602_2043317','2043317','http://www.nlm.nih.gov/research/umls/rxnorm','1.33 ML ibalizumab-uiyk 150 MG/ML Injection','2043317','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1602_2043322','2043322','http://www.nlm.nih.gov/research/umls/rxnorm','1.33 ML ibalizumab-uiyk 150 MG/ML Injection [Trogarzo]','2043322','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1082_832679','832679','http://www.nlm.nih.gov/research/umls/rxnorm','Bacillus anthracis strain V770-NP1-R antigens 0.1 MG/ML Injectable Suspension','832679','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1082_832682','832682','http://www.nlm.nih.gov/research/umls/rxnorm','Bacillus anthracis strain V770-NP1-R antigens 0.1 MG/ML Injectable Suspension [Biothrax]','832682','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1081_34','34','http://hl7.org/fhir/sid/cvx','rabies immune globulin','34','2024-05-15');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.321_103899','103899','http://www.nlm.nih.gov/research/umls/rxnorm','rifabutin 150 MG Oral Capsule [Mycobutin]','103899','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.321_105292','105292','http://www.nlm.nih.gov/research/umls/rxnorm','isoniazid 10 MG/ML Oral Solution','105292','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.321_105293','105293','http://www.nlm.nih.gov/research/umls/rxnorm','isoniazid 25 MG/ML Injectable Solution','105293','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.321_197832','197832','http://www.nlm.nih.gov/research/umls/rxnorm','isoniazid 300 MG Oral Tablet','197832','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.321_198181','198181','http://www.nlm.nih.gov/research/umls/rxnorm','pyrazinamide 500 MG Oral Tablet','198181','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.321_198200','198200','http://www.nlm.nih.gov/research/umls/rxnorm','rifabutin 150 MG Oral Capsule','198200','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.321_204430','204430','http://www.nlm.nih.gov/research/umls/rxnorm','isoniazid 100 MG/ML Injectable Solution','204430','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.321_242671','242671','http://www.nlm.nih.gov/research/umls/rxnorm','rifapentine 150 MG Oral Tablet','242671','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.321_261101','261101','http://www.nlm.nih.gov/research/umls/rxnorm','rifapentine 150 MG Oral Tablet [Priftin]','261101','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.321_311166','311166','http://www.nlm.nih.gov/research/umls/rxnorm','isoniazid 100 MG Oral Tablet','311166','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.321_311171','311171','http://www.nlm.nih.gov/research/umls/rxnorm','isoniazid 50 MG Oral Tablet','311171','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.321_995599','995599','http://www.nlm.nih.gov/research/umls/rxnorm','ethambutol hydrochloride 100 MG Oral Tablet','995599','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.321_995605','995605','http://www.nlm.nih.gov/research/umls/rxnorm','ethambutol hydrochloride 100 MG Oral Tablet [Myambutol]','995605','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.321_995607','995607','http://www.nlm.nih.gov/research/umls/rxnorm','ethambutol hydrochloride 400 MG Oral Tablet','995607','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.321_995609','995609','http://www.nlm.nih.gov/research/umls/rxnorm','ethambutol hydrochloride 400 MG Oral Tablet [Myambutol]','995609','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.321_198201','198201','http://www.nlm.nih.gov/research/umls/rxnorm','rifampin 150 MG Oral Capsule','198201','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.321_198202','198202','http://www.nlm.nih.gov/research/umls/rxnorm','rifampin 300 MG Oral Capsule','198202','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.321_199620','199620','http://www.nlm.nih.gov/research/umls/rxnorm','rifampin 600 MG Oral Tablet','199620','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.321_201867','201867','http://www.nlm.nih.gov/research/umls/rxnorm','rifampin 150 MG Oral Capsule [Rifadin]','201867','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.321_201868','201868','http://www.nlm.nih.gov/research/umls/rxnorm','rifampin 300 MG Oral Capsule [Rifadin]','201868','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.321_207436','207436','http://www.nlm.nih.gov/research/umls/rxnorm','rifampin 600 MG Injection [Rifadin]','207436','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.321_246297','246297','http://www.nlm.nih.gov/research/umls/rxnorm','rifampin 20 MG/ML Oral Suspension','246297','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.321_312821','312821','http://www.nlm.nih.gov/research/umls/rxnorm','rifampin 600 MG Injection','312821','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.321_419925','419925','http://www.nlm.nih.gov/research/umls/rxnorm','rifampin 20 MG/ML Oral Solution','419925','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.741_1658125','1658125','http://www.nlm.nih.gov/research/umls/rxnorm','5 ML hepatitis B immune globulin 312 UNT/ML Injection','1658125','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.741_1658127','1658127','http://www.nlm.nih.gov/research/umls/rxnorm','5 ML hepatitis B immune globulin 312 UNT/ML Injection [Nabi-HB]','1658127','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.741_1658147','1658147','http://www.nlm.nih.gov/research/umls/rxnorm','1 ML hepatitis B immune globulin 312 UNT/ML Injection','1658147','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.741_1658148','1658148','http://www.nlm.nih.gov/research/umls/rxnorm','1 ML hepatitis B immune globulin 312 UNT/ML Injection [Nabi-HB]','1658148','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.741_1658159','1658159','http://www.nlm.nih.gov/research/umls/rxnorm','1 ML hepatitis B immune globulin 312 UNT/ML Injection [HepaGam B]','1658159','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.741_1658163','1658163','http://www.nlm.nih.gov/research/umls/rxnorm','1 ML hepatitis B immune globulin 220 UNT/ML Injection','1658163','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.741_1658165','1658165','http://www.nlm.nih.gov/research/umls/rxnorm','1 ML hepatitis B immune globulin 220 UNT/ML Injection [Hyperhep B]','1658165','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.741_1658174','1658174','http://www.nlm.nih.gov/research/umls/rxnorm','5 ML hepatitis B immune globulin 220 UNT/ML Injection','1658174','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.741_1658175','1658175','http://www.nlm.nih.gov/research/umls/rxnorm','5 ML hepatitis B immune globulin 220 UNT/ML Injection [Hyperhep B]','1658175','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.741_1658423','1658423','http://www.nlm.nih.gov/research/umls/rxnorm','5 ML hepatitis B immune globulin 312 UNT/ML Injection [HepaGam B]','1658423','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.741_412675','412675','http://www.nlm.nih.gov/research/umls/rxnorm','hepatitis B immune globulin 50 UNT/ML Injectable Solution','412675','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.741_415110','415110','http://www.nlm.nih.gov/research/umls/rxnorm','hepatitis B immune globulin 217 UNT/ML Injectable Solution','415110','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.741_825157','825157','http://www.nlm.nih.gov/research/umls/rxnorm','0.5 ML hepatitis B immune globulin 220 UNT/ML Prefilled Syringe','825157','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.741_825159','825159','http://www.nlm.nih.gov/research/umls/rxnorm','0.5 ML hepatitis B immune globulin 220 UNT/ML Prefilled Syringe [Hyperhep B]','825159','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.741_825160','825160','http://www.nlm.nih.gov/research/umls/rxnorm','1 ML hepatitis B immune globulin 220 UNT/ML Prefilled Syringe','825160','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.741_825161','825161','http://www.nlm.nih.gov/research/umls/rxnorm','1 ML hepatitis B immune globulin 220 UNT/ML Prefilled Syringe [Hyperhep B]','825161','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.961_1652827','1652827','http://www.nlm.nih.gov/research/umls/rxnorm','2 ML rabies immune globulin, human 150 UNT/ML Injection','1652827','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.961_1652830','1652830','http://www.nlm.nih.gov/research/umls/rxnorm','2 ML rabies immune globulin, human 150 UNT/ML Injection [HyperRAB]','1652830','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.961_1652833','1652833','http://www.nlm.nih.gov/research/umls/rxnorm','10 ML rabies immune globulin, human 150 UNT/ML Injection','1652833','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.961_1652834','1652834','http://www.nlm.nih.gov/research/umls/rxnorm','10 ML rabies immune globulin, human 150 UNT/ML Injection [HyperRAB]','1652834','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.961_1992536','1992536','http://www.nlm.nih.gov/research/umls/rxnorm','2 ML rabies immune globulin, human 150 UNT/ML Injection [Kedrab]','1992536','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.961_1992538','1992538','http://www.nlm.nih.gov/research/umls/rxnorm','10 ML rabies immune globulin, human 150 UNT/ML Injection [Kedrab]','1992538','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.961_2043306','2043306','http://www.nlm.nih.gov/research/umls/rxnorm','1 ML rabies immune globulin, human 300 UNT/ML Injection','2043306','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.961_2043308','2043308','http://www.nlm.nih.gov/research/umls/rxnorm','1 ML rabies immune globulin, human 300 UNT/ML Injection [HyperRAB]','2043308','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.961_2043311','2043311','http://www.nlm.nih.gov/research/umls/rxnorm','5 ML rabies immune globulin, human 300 UNT/ML Injection','2043311','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.961_2043312','2043312','http://www.nlm.nih.gov/research/umls/rxnorm','5 ML rabies immune globulin, human 300 UNT/ML Injection [HyperRAB]','2043312','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.961_2267417','2267417','http://www.nlm.nih.gov/research/umls/rxnorm','3 ML rabies immune globulin, human 300 UNT/ML Injection','2267417','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.961_2267418','2267418','http://www.nlm.nih.gov/research/umls/rxnorm','3 ML rabies immune globulin, human 300 UNT/ML Injection [HyperRAB]','2267418','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.961_830477','830477','http://www.nlm.nih.gov/research/umls/rxnorm','2 ML rabies immune globulin, human 150 UNT/ML Injection [Imogam]','830477','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.983_544491','544491','http://www.nlm.nih.gov/research/umls/rxnorm','botulism immune globulin IV human 100 MG Injection','544491','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.983_544495','544495','http://www.nlm.nih.gov/research/umls/rxnorm','botulism immune globulin IV human 100 MG Injection [BabyBIG]','544495','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.843_198203','198203','http://www.nlm.nih.gov/research/umls/rxnorm','isoniazid 150 MG / rifampin 300 MG Oral Capsule','198203','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.843_198384','198384','http://www.nlm.nih.gov/research/umls/rxnorm','isoniazid 50 MG / pyrazinamide 300 MG / rifampin 120 MG Oral Tablet','198384','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.843_199755','199755','http://www.nlm.nih.gov/research/umls/rxnorm','isoniazid 100 MG / rifampin 150 MG Oral Tablet','199755','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.843_199756','199756','http://www.nlm.nih.gov/research/umls/rxnorm','isoniazid 150 MG / rifampin 300 MG Oral Tablet','199756','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.843_206698','206698','http://www.nlm.nih.gov/research/umls/rxnorm','isoniazid 50 MG / pyrazinamide 300 MG / rifampin 120 MG Oral Tablet [Rifater]','206698','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.843_206702','206702','http://www.nlm.nih.gov/research/umls/rxnorm','isoniazid 150 MG / rifampin 300 MG Oral Capsule [Rifamate]','206702','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.843_631357','631357','http://www.nlm.nih.gov/research/umls/rxnorm','isoniazid 150 MG / rifampin 300 MG Oral Capsule [IsonaRif]','631357','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.943_24','24','http://hl7.org/fhir/sid/cvx','Anthrax vaccine, adsorbed, pre-exposure and post-exposure prophylaxis','24','2024-05-15');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.747_731564','731564','http://www.nlm.nih.gov/research/umls/rxnorm','1 ML penicillin G benzathine 600000 UNT/ML Prefilled Syringe','731564','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.747_731566','731566','http://www.nlm.nih.gov/research/umls/rxnorm','1 ML penicillin G benzathine 600000 UNT/ML Prefilled Syringe [Bicillin L-A]','731566','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.747_731567','731567','http://www.nlm.nih.gov/research/umls/rxnorm','2 ML penicillin G benzathine 600000 UNT/ML Prefilled Syringe','731567','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.747_731568','731568','http://www.nlm.nih.gov/research/umls/rxnorm','2 ML penicillin G benzathine 600000 UNT/ML Prefilled Syringe [Bicillin L-A]','731568','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.747_731570','731570','http://www.nlm.nih.gov/research/umls/rxnorm','4 ML penicillin G benzathine 600000 UNT/ML Prefilled Syringe','731570','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.747_731571','731571','http://www.nlm.nih.gov/research/umls/rxnorm','4 ML penicillin G benzathine 600000 UNT/ML Prefilled Syringe [Bicillin L-A]','731571','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.747_731572','731572','http://www.nlm.nih.gov/research/umls/rxnorm','penicillin G benzathine 600000 UNT/ML Injectable Suspension','731572','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.747_731575','731575','http://www.nlm.nih.gov/research/umls/rxnorm','penicillin G benzathine 300000 UNT/ML Injectable Suspension','731575','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1618_1158766','1158766','http://www.nlm.nih.gov/research/umls/rxnorm','smallpox vaccine live, New York City Board of Health vaccinia strain Injectable Product','1158766','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1618_2170517','2170517','http://www.nlm.nih.gov/research/umls/rxnorm','smallpox vaccine live, New York City Board of Health vaccinia strain 500000000 UNT/ML [ACAM2000]','2170517','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1618_2170518','2170518','http://www.nlm.nih.gov/research/umls/rxnorm','smallpox vaccine live, New York City Board of Health vaccinia strain Injectable Solution [ACAM2000]','2170518','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1618_2464827','2464827','http://www.nlm.nih.gov/research/umls/rxnorm','0.5 ML modified Vaccinia Ankara-Bavarian Nordic 198000000 UNT/ML Injection','2464827','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1618_2464832','2464832','http://www.nlm.nih.gov/research/umls/rxnorm','0.5 ML modified Vaccinia Ankara-Bavarian Nordic 198000000 UNT/ML Injection [Jynneos]','2464832','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1618_798467','798467','http://www.nlm.nih.gov/research/umls/rxnorm','smallpox vaccine live, New York City Board of Health vaccinia strain','798467','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1618_833082','833082','http://www.nlm.nih.gov/research/umls/rxnorm','smallpox vaccine live, New York City Board of Health vaccinia strain 500000000 UNT/ML Injectable Solution','833082','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1618_833086','833086','http://www.nlm.nih.gov/research/umls/rxnorm','smallpox vaccine live, New York City Board of Health vaccinia strain 500000000 UNT/ML Injectable Solution [ACAM2000]','833086','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1912_204466','204466','http://www.nlm.nih.gov/research/umls/rxnorm','50 ML penicillin G potassium 40000 UNT/ML Injection','204466','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1912_207390','207390','http://www.nlm.nih.gov/research/umls/rxnorm','50 ML penicillin G potassium 20000 UNT/ML Injection','207390','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1912_207391','207391','http://www.nlm.nih.gov/research/umls/rxnorm','50 ML penicillin G potassium 60000 UNT/ML Injection','207391','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1912_745302','745302','http://www.nlm.nih.gov/research/umls/rxnorm','penicillin G sodium 100000 UNT/ML Injectable Solution','745302','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1912_863538','863538','http://www.nlm.nih.gov/research/umls/rxnorm','penicillin G potassium 1000000 UNT/ML Injectable Solution','863538','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1912_995906','995906','http://www.nlm.nih.gov/research/umls/rxnorm','penicillin G potassium 1000000 UNT/ML Injectable Solution [Pfizerpen]','995906','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1913_1050111','1050111','http://www.nlm.nih.gov/research/umls/rxnorm','penicillin G procaine 300000 UNT/ML Injectable Suspension [Bactracillin G]','1050111','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1913_1050115','1050115','http://www.nlm.nih.gov/research/umls/rxnorm','penicillin G procaine 300000 UNT/ML Injectable Suspension [Norocillin]','1050115','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1913_1094911','1094911','http://www.nlm.nih.gov/research/umls/rxnorm','penicillin G procaine 300000 UNT/ML Injectable Suspension [Pen-Aqueous]','1094911','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1913_1233540','1233540','http://www.nlm.nih.gov/research/umls/rxnorm','penicillin G procaine 300000 UNT/ML Injectable Suspension [Pro-Pen-G]','1233540','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1913_1438127','1438127','http://www.nlm.nih.gov/research/umls/rxnorm','10 ML penicillin G procaine 10000 UNT/ML Prefilled Syringe','1438127','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1913_1438129','1438129','http://www.nlm.nih.gov/research/umls/rxnorm','10 ML penicillin G procaine 10000 UNT/ML Prefilled Syringe [Go-dry]','1438129','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1913_1438136','1438136','http://www.nlm.nih.gov/research/umls/rxnorm','10 ML penicillin G procaine 10000 UNT/ML Prefilled Syringe [Masti-clear]','1438136','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1913_1731729','1731729','http://www.nlm.nih.gov/research/umls/rxnorm','penicillin G procaine 300000 UNT/ML Injectable Suspension [Vetripen]','1731729','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1913_745303','745303','http://www.nlm.nih.gov/research/umls/rxnorm','penicillin G procaine 300000 UNT/ML Injectable Suspension','745303','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1913_745462','745462','http://www.nlm.nih.gov/research/umls/rxnorm','2 ML penicillin G procaine 600000 UNT/ML Prefilled Syringe','745462','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1913_745560','745560','http://www.nlm.nih.gov/research/umls/rxnorm','1 ML penicillin G procaine 600000 UNT/ML Prefilled Syringe','745560','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1913_745561','745561','http://www.nlm.nih.gov/research/umls/rxnorm','penicillin G procaine 600000 UNT/ML Injectable Suspension','745561','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1634_1799212','1799212','http://www.nlm.nih.gov/research/umls/rxnorm','sofosbuvir 400 MG / velpatasvir 100 MG Oral Tablet','1799212','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1634_1799218','1799218','http://www.nlm.nih.gov/research/umls/rxnorm','sofosbuvir 400 MG / velpatasvir 100 MG Oral Tablet [Epclusa]','1799218','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1634_2288814','2288814','http://www.nlm.nih.gov/research/umls/rxnorm','sofosbuvir 200 MG / velpatasvir 50 MG Oral Tablet','2288814','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1634_2288816','2288816','http://www.nlm.nih.gov/research/umls/rxnorm','sofosbuvir 200 MG / velpatasvir 50 MG Oral Tablet [Epclusa]','2288816','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1634_2559845','2559845','http://www.nlm.nih.gov/research/umls/rxnorm','sofosbuvir 150 MG / velpatasvir 37.5 MG Oral Tablet','2559845','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1634_2559847','2559847','http://www.nlm.nih.gov/research/umls/rxnorm','sofosbuvir 150 MG / velpatasvir 37.5 MG Oral Tablet [Epclusa]','2559847','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1634_2584196','2584196','http://www.nlm.nih.gov/research/umls/rxnorm','sofosbuvir 150 MG / velpatasvir 37.5 MG Oral Pellet','2584196','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1634_2584199','2584199','http://www.nlm.nih.gov/research/umls/rxnorm','sofosbuvir 150 MG / velpatasvir 37.5 MG Oral Pellet [Epclusa]','2584199','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1634_2584200','2584200','http://www.nlm.nih.gov/research/umls/rxnorm','sofosbuvir 200 MG / velpatasvir 50 MG Oral Pellet','2584200','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1634_2584201','2584201','http://www.nlm.nih.gov/research/umls/rxnorm','sofosbuvir 200 MG / velpatasvir 50 MG Oral Pellet [Epclusa]','2584201','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1633_1591943','1591943','http://www.nlm.nih.gov/research/umls/rxnorm','ledipasvir 90 MG / sofosbuvir 400 MG Oral Tablet','1591943','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1633_1591949','1591949','http://www.nlm.nih.gov/research/umls/rxnorm','ledipasvir 90 MG / sofosbuvir 400 MG Oral Tablet [Harvoni]','1591949','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1633_2203895','2203895','http://www.nlm.nih.gov/research/umls/rxnorm','ledipasvir 45 MG / sofosbuvir 200 MG Oral Tablet','2203895','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1633_2203897','2203897','http://www.nlm.nih.gov/research/umls/rxnorm','ledipasvir 45 MG / sofosbuvir 200 MG Oral Tablet [Harvoni]','2203897','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1633_2204100','2204100','http://www.nlm.nih.gov/research/umls/rxnorm','ledipasvir 33.75 MG / sofosbuvir 150 MG Oral Pellet','2204100','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1633_2204102','2204102','http://www.nlm.nih.gov/research/umls/rxnorm','ledipasvir 33.75 MG / sofosbuvir 150 MG Oral Pellet [Harvoni]','2204102','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1633_2204103','2204103','http://www.nlm.nih.gov/research/umls/rxnorm','ledipasvir 45 MG / sofosbuvir 200 MG Oral Pellet','2204103','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1633_2204104','2204104','http://www.nlm.nih.gov/research/umls/rxnorm','ledipasvir 45 MG / sofosbuvir 200 MG Oral Pellet [Harvoni]','2204104','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1636_1484916','1484916','http://www.nlm.nih.gov/research/umls/rxnorm','sofosbuvir 400 MG Oral Tablet','1484916','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1636_1484922','1484922','http://www.nlm.nih.gov/research/umls/rxnorm','sofosbuvir 400 MG Oral Tablet [Sovaldi]','1484922','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1636_2203891','2203891','http://www.nlm.nih.gov/research/umls/rxnorm','sofosbuvir 200 MG Oral Tablet','2203891','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1636_2203893','2203893','http://www.nlm.nih.gov/research/umls/rxnorm','sofosbuvir 200 MG Oral Tablet [Sovaldi]','2203893','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1636_2203993','2203993','http://www.nlm.nih.gov/research/umls/rxnorm','sofosbuvir 150 MG Oral Pellet','2203993','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1636_2203999','2203999','http://www.nlm.nih.gov/research/umls/rxnorm','sofosbuvir 150 MG Oral Pellet [Sovaldi]','2203999','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1636_2204090','2204090','http://www.nlm.nih.gov/research/umls/rxnorm','sofosbuvir 200 MG Oral Pellet','2204090','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1636_2204092','2204092','http://www.nlm.nih.gov/research/umls/rxnorm','sofosbuvir 200 MG Oral Pellet [Sovaldi]','2204092','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1635_1939329','1939329','http://www.nlm.nih.gov/research/umls/rxnorm','sofosbuvir 400 MG / velpatasvir 100 MG / voxilaprevir 100 MG Oral Tablet','1939329','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1635_1939335','1939335','http://www.nlm.nih.gov/research/umls/rxnorm','sofosbuvir 400 MG / velpatasvir 100 MG / voxilaprevir 100 MG Oral Tablet [Vosevi]','1939335','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1619_105','105','http://hl7.org/fhir/sid/cvx','vaccinia (smallpox) vaccine, diluted','105','2024-05-15');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1619_206','206','http://hl7.org/fhir/sid/cvx','Vaccinia, smallpox monkeypox vaccine, live attenuated, preservative free, subcutaneous or intradermal injection','206','2024-05-15');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1619_75','75','http://hl7.org/fhir/sid/cvx','vaccinia (smallpox) vaccine','75','2024-05-15');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1052_197872','197872','http://www.nlm.nih.gov/research/umls/rxnorm','levodopa 500 MG Oral Tablet','197872','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1052_2107616','2107616','http://www.nlm.nih.gov/research/umls/rxnorm','levodopa 42 MG Inhalation Powder','2107616','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1052_2107621','2107621','http://www.nlm.nih.gov/research/umls/rxnorm','levodopa 42 MG Inhalation Powder [Inbrija]','2107621','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.990_105297','105297','http://www.nlm.nih.gov/research/umls/rxnorm','dapsone 50 MG Oral Tablet','105297','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.990_105337','105337','http://www.nlm.nih.gov/research/umls/rxnorm','dapsone 100 MG / pyrimethamine 12.5 MG Oral Tablet','105337','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.990_1741905','1741905','http://www.nlm.nih.gov/research/umls/rxnorm','dapsone 0.075 MG/MG Topical Gel','1741905','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.990_1741907','1741907','http://www.nlm.nih.gov/research/umls/rxnorm','dapsone 0.075 MG/MG Topical Gel [Aczone]','1741907','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.990_197557','197557','http://www.nlm.nih.gov/research/umls/rxnorm','dapsone 100 MG Oral Tablet','197557','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.990_197558','197558','http://www.nlm.nih.gov/research/umls/rxnorm','dapsone 25 MG Oral Tablet','197558','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.990_607295','607295','http://www.nlm.nih.gov/research/umls/rxnorm','dapsone 0.05 MG/MG Topical Gel','607295','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.990_701858','701858','http://www.nlm.nih.gov/research/umls/rxnorm','dapsone 0.05 MG/MG Topical Gel [Aczone]','701858','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.992_197521','197521','http://www.nlm.nih.gov/research/umls/rxnorm','clofazimine 50 MG Oral Capsule','197521','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.992_313893','313893','http://www.nlm.nih.gov/research/umls/rxnorm','clofazimine 100 MG Oral Capsule','313893','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1597_1147334','1147334','http://www.nlm.nih.gov/research/umls/rxnorm','emtricitabine 200 MG / rilpivirine 25 MG / tenofovir disoproxil fumarate 300 MG Oral Tablet','1147334','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1597_1147337','1147337','http://www.nlm.nih.gov/research/umls/rxnorm','emtricitabine 200 MG / rilpivirine 25 MG / tenofovir disoproxil fumarate 300 MG Oral Tablet [Complera]','1147337','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1597_1306292','1306292','http://www.nlm.nih.gov/research/umls/rxnorm','cobicistat 150 MG / elvitegravir 150 MG / emtricitabine 200 MG / tenofovir disoproxil fumarate 300 MG Oral Tablet','1306292','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1597_1306298','1306298','http://www.nlm.nih.gov/research/umls/rxnorm','cobicistat 150 MG / elvitegravir 150 MG / emtricitabine 200 MG / tenofovir disoproxil fumarate 300 MG Oral Tablet [Stribild]','1306298','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1597_1546888','1546888','http://www.nlm.nih.gov/research/umls/rxnorm','abacavir 600 MG / dolutegravir 50 MG / lamivudine 300 MG Oral Tablet','1546888','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1597_1546894','1546894','http://www.nlm.nih.gov/research/umls/rxnorm','abacavir 600 MG / dolutegravir 50 MG / lamivudine 300 MG Oral Tablet [Triumeq]','1546894','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1597_1600704','1600704','http://www.nlm.nih.gov/research/umls/rxnorm','cobicistat 150 MG / darunavir 800 MG Oral Tablet','1600704','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1597_1600710','1600710','http://www.nlm.nih.gov/research/umls/rxnorm','cobicistat 150 MG / darunavir 800 MG Oral Tablet [Prezcobix]','1600710','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1597_1601654','1601654','http://www.nlm.nih.gov/research/umls/rxnorm','atazanavir 300 MG / cobicistat 150 MG Oral Tablet','1601654','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1597_1601660','1601660','http://www.nlm.nih.gov/research/umls/rxnorm','atazanavir 300 MG / cobicistat 150 MG Oral Tablet [Evotaz]','1601660','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1597_1721613','1721613','http://www.nlm.nih.gov/research/umls/rxnorm','cobicistat 150 MG / elvitegravir 150 MG / emtricitabine 200 MG / tenofovir alafenamide 10 MG Oral Tablet','1721613','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1597_1721619','1721619','http://www.nlm.nih.gov/research/umls/rxnorm','cobicistat 150 MG / elvitegravir 150 MG / emtricitabine 200 MG / tenofovir alafenamide 10 MG Oral Tablet [Genvoya]','1721619','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1597_1741733','1741733','http://www.nlm.nih.gov/research/umls/rxnorm','emtricitabine 200 MG / rilpivirine 25 MG / tenofovir alafenamide 25 MG Oral Tablet','1741733','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1597_1741739','1741739','http://www.nlm.nih.gov/research/umls/rxnorm','emtricitabine 200 MG / rilpivirine 25 MG / tenofovir alafenamide 25 MG Oral Tablet [Odefsey]','1741739','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1597_1744001','1744001','http://www.nlm.nih.gov/research/umls/rxnorm','emtricitabine 100 MG / tenofovir disoproxil fumarate 150 MG Oral Tablet','1744001','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1597_1744003','1744003','http://www.nlm.nih.gov/research/umls/rxnorm','emtricitabine 100 MG / tenofovir disoproxil fumarate 150 MG Oral Tablet [Truvada]','1744003','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1597_1744005','1744005','http://www.nlm.nih.gov/research/umls/rxnorm','emtricitabine 133 MG / tenofovir disoproxil fumarate 200 MG Oral Tablet','1744005','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1597_1744007','1744007','http://www.nlm.nih.gov/research/umls/rxnorm','emtricitabine 133 MG / tenofovir disoproxil fumarate 200 MG Oral Tablet [Truvada]','1744007','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1597_1744009','1744009','http://www.nlm.nih.gov/research/umls/rxnorm','emtricitabine 167 MG / tenofovir disoproxil fumarate 250 MG Oral Tablet','1744009','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1597_1744011','1744011','http://www.nlm.nih.gov/research/umls/rxnorm','emtricitabine 167 MG / tenofovir disoproxil fumarate 250 MG Oral Tablet [Truvada]','1744011','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1597_1747691','1747691','http://www.nlm.nih.gov/research/umls/rxnorm','emtricitabine 200 MG / tenofovir alafenamide 25 MG Oral Tablet','1747691','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1597_1747697','1747697','http://www.nlm.nih.gov/research/umls/rxnorm','emtricitabine 200 MG / tenofovir alafenamide 25 MG Oral Tablet [Descovy]','1747697','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1597_1989500','1989500','http://www.nlm.nih.gov/research/umls/rxnorm','dolutegravir 50 MG / rilpivirine 25 MG Oral Tablet','1989500','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1597_1989506','1989506','http://www.nlm.nih.gov/research/umls/rxnorm','dolutegravir 50 MG / rilpivirine 25 MG Oral Tablet [Juluca]','1989506','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1597_1999667','1999667','http://www.nlm.nih.gov/research/umls/rxnorm','bictegravir 50 MG / emtricitabine 200 MG / tenofovir alafenamide 25 MG Oral Tablet','1999667','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1597_1999673','1999673','http://www.nlm.nih.gov/research/umls/rxnorm','bictegravir 50 MG / emtricitabine 200 MG / tenofovir alafenamide 25 MG Oral Tablet [Biktarvy]','1999673','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1597_2001424','2001424','http://www.nlm.nih.gov/research/umls/rxnorm','efavirenz 400 MG / lamivudine 300 MG / tenofovir disoproxil fumarate 300 MG Oral Tablet','2001424','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1597_2001430','2001430','http://www.nlm.nih.gov/research/umls/rxnorm','efavirenz 400 MG / lamivudine 300 MG / tenofovir disoproxil fumarate 300 MG Oral Tablet [Symfi]','2001430','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1597_2003249','2003249','http://www.nlm.nih.gov/research/umls/rxnorm','lamivudine 300 MG / tenofovir disoproxil fumarate 300 MG Oral Tablet','2003249','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1597_2003255','2003255','http://www.nlm.nih.gov/research/umls/rxnorm','lamivudine 300 MG / tenofovir disoproxil fumarate 300 MG Oral Tablet [Cimduo]','2003255','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1597_2043464','2043464','http://www.nlm.nih.gov/research/umls/rxnorm','efavirenz 600 MG / lamivudine 300 MG / tenofovir disoproxil fumarate 300 MG Oral Tablet [Symfi]','2043464','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1597_2049671','2049671','http://www.nlm.nih.gov/research/umls/rxnorm','cobicistat 150 MG / darunavir 800 MG / emtricitabine 200 MG / tenofovir alafenamide 10 MG Oral Tablet','2049671','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1597_2049677','2049677','http://www.nlm.nih.gov/research/umls/rxnorm','cobicistat 150 MG / darunavir 800 MG / emtricitabine 200 MG / tenofovir alafenamide 10 MG Oral Tablet [Symtuza]','2049677','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1597_2055813','2055813','http://www.nlm.nih.gov/research/umls/rxnorm','doravirine 100 MG / lamivudine 300 MG / tenofovir disoproxil fumarate 300 MG Oral Tablet','2055813','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1597_2055815','2055815','http://www.nlm.nih.gov/research/umls/rxnorm','doravirine 100 MG / lamivudine 300 MG / tenofovir disoproxil fumarate 300 MG Oral Tablet [Delstrigo]','2055815','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1597_2122519','2122519','http://www.nlm.nih.gov/research/umls/rxnorm','dolutegravir 50 MG / lamivudine 300 MG Oral Tablet','2122519','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1597_2122526','2122526','http://www.nlm.nih.gov/research/umls/rxnorm','dolutegravir 50 MG / lamivudine 300 MG Oral Tablet [Dovato]','2122526','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1597_2123034','2123034','http://www.nlm.nih.gov/research/umls/rxnorm','lamivudine 300 MG / tenofovir disoproxil fumarate 300 MG Oral Tablet [Temixys]','2123034','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1597_2584354','2584354','http://www.nlm.nih.gov/research/umls/rxnorm','bictegravir 30 MG / emtricitabine 120 MG / tenofovir alafenamide 15 MG Oral Tablet','2584354','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1597_2584356','2584356','http://www.nlm.nih.gov/research/umls/rxnorm','bictegravir 30 MG / emtricitabine 120 MG / tenofovir alafenamide 15 MG Oral Tablet [Biktarvy]','2584356','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1597_2590641','2590641','http://www.nlm.nih.gov/research/umls/rxnorm','emtricitabine 120 MG / tenofovir alafenamide 15 MG Oral Tablet','2590641','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1597_2590643','2590643','http://www.nlm.nih.gov/research/umls/rxnorm','emtricitabine 120 MG / tenofovir alafenamide 15 MG Oral Tablet [Descovy]','2590643','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1597_2598348','2598348','http://www.nlm.nih.gov/research/umls/rxnorm','abacavir 60 MG / dolutegravir 5 MG / lamivudine 30 MG Tablet for Oral Suspension','2598348','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1597_2598352','2598352','http://www.nlm.nih.gov/research/umls/rxnorm','abacavir 60 MG / dolutegravir 5 MG / lamivudine 30 MG Tablet for Oral Suspension [Triumeq]','2598352','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1597_311368','311368','http://www.nlm.nih.gov/research/umls/rxnorm','lopinavir 133 MG / ritonavir 33.3 MG Oral Capsule','311368','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1597_311369','311369','http://www.nlm.nih.gov/research/umls/rxnorm','lopinavir 80 MG/ML / ritonavir 20 MG/ML Oral Solution','311369','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1597_476556','476556','http://www.nlm.nih.gov/research/umls/rxnorm','emtricitabine 200 MG / tenofovir disoproxil fumarate 300 MG Oral Tablet','476556','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1597_597730','597730','http://www.nlm.nih.gov/research/umls/rxnorm','lopinavir 200 MG / ritonavir 50 MG Oral Tablet','597730','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1597_602393','602393','http://www.nlm.nih.gov/research/umls/rxnorm','abacavir 600 MG / lamivudine 300 MG Oral Tablet','602393','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1597_602395','602395','http://www.nlm.nih.gov/research/umls/rxnorm','abacavir 600 MG / lamivudine 300 MG Oral Tablet [Epzicom]','602395','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1597_639888','639888','http://www.nlm.nih.gov/research/umls/rxnorm','emtricitabine 200 MG / tenofovir disoproxil fumarate 300 MG Oral Tablet [Truvada]','639888','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1597_643066','643066','http://www.nlm.nih.gov/research/umls/rxnorm','efavirenz 600 MG / emtricitabine 200 MG / tenofovir disoproxil fumarate 300 MG Oral Tablet','643066','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1597_643070','643070','http://www.nlm.nih.gov/research/umls/rxnorm','efavirenz 600 MG / emtricitabine 200 MG / tenofovir disoproxil fumarate 300 MG Oral Tablet [Atripla]','643070','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1597_746645','746645','http://www.nlm.nih.gov/research/umls/rxnorm','lopinavir 100 MG / ritonavir 25 MG Oral Tablet','746645','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1597_847741','847741','http://www.nlm.nih.gov/research/umls/rxnorm','lopinavir 200 MG / ritonavir 50 MG Oral Tablet [Kaletra]','847741','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1597_847745','847745','http://www.nlm.nih.gov/research/umls/rxnorm','lopinavir 100 MG / ritonavir 25 MG Oral Tablet [Kaletra]','847745','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1597_847749','847749','http://www.nlm.nih.gov/research/umls/rxnorm','lopinavir 80 MG/ML / ritonavir 20 MG/ML Oral Solution [Kaletra]','847749','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1597_864661','864661','http://www.nlm.nih.gov/research/umls/rxnorm','efavirenz 600 MG / lamivudine 300 MG / tenofovir disoproxil fumarate 300 MG Oral Tablet','864661','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1597_200082','200082','http://www.nlm.nih.gov/research/umls/rxnorm','lamivudine 150 MG / zidovudine 300 MG Oral Tablet','200082','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1597_213088','213088','http://www.nlm.nih.gov/research/umls/rxnorm','lamivudine 150 MG / zidovudine 300 MG Oral Tablet [Combivir]','213088','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1597_2475414','2475414','http://www.nlm.nih.gov/research/umls/rxnorm','','2475414','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1597_285028','285028','http://www.nlm.nih.gov/research/umls/rxnorm','abacavir 300 MG / lamivudine 150 MG / zidovudine 300 MG Oral Tablet [Trizivir]','285028','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1597_307650','307650','http://www.nlm.nih.gov/research/umls/rxnorm','abacavir 300 MG / lamivudine 150 MG / zidovudine 300 MG Oral Tablet','307650','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1596_401981','401981','http://www.nlm.nih.gov/research/umls/rxnorm','enfuvirtide 90 MG Injection','401981','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1596_404460','404460','http://www.nlm.nih.gov/research/umls/rxnorm','enfuvirtide 90 MG Injection [Fuzeon]','404460','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1599_1857911','1857911','http://www.nlm.nih.gov/research/umls/rxnorm','maraviroc 25 MG Oral Tablet','1857911','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1599_1857913','1857913','http://www.nlm.nih.gov/research/umls/rxnorm','maraviroc 25 MG Oral Tablet [Selzentry]','1857913','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1599_1857915','1857915','http://www.nlm.nih.gov/research/umls/rxnorm','maraviroc 75 MG Oral Tablet','1857915','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1599_1857917','1857917','http://www.nlm.nih.gov/research/umls/rxnorm','maraviroc 75 MG Oral Tablet [Selzentry]','1857917','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1599_1857921','1857921','http://www.nlm.nih.gov/research/umls/rxnorm','maraviroc 20 MG/ML Oral Solution','1857921','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1599_1857925','1857925','http://www.nlm.nih.gov/research/umls/rxnorm','maraviroc 20 MG/ML Oral Solution [Selzentry]','1857925','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1599_728223','728223','http://www.nlm.nih.gov/research/umls/rxnorm','maraviroc 150 MG Oral Tablet','728223','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1599_728225','728225','http://www.nlm.nih.gov/research/umls/rxnorm','maraviroc 300 MG Oral Tablet','728225','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1599_729201','729201','http://www.nlm.nih.gov/research/umls/rxnorm','maraviroc 150 MG Oral Tablet [Selzentry]','729201','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1599_729203','729203','http://www.nlm.nih.gov/research/umls/rxnorm','maraviroc 300 MG Oral Tablet [Selzentry]','729203','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1632_1940703','1940703','http://www.nlm.nih.gov/research/umls/rxnorm','glecaprevir 100 MG / pibrentasvir 40 MG Oral Tablet','1940703','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1632_1940709','1940709','http://www.nlm.nih.gov/research/umls/rxnorm','glecaprevir 100 MG / pibrentasvir 40 MG Oral Tablet [Mavyret]','1940709','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1632_2557906','2557906','http://www.nlm.nih.gov/research/umls/rxnorm','glecaprevir 50 MG / pibrentasvir 20 MG Oral Pellet','2557906','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1632_2557910','2557910','http://www.nlm.nih.gov/research/umls/rxnorm','glecaprevir 50 MG / pibrentasvir 20 MG Oral Pellet [Mavyret]','2557910','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2366_198201','198201','http://www.nlm.nih.gov/research/umls/rxnorm','rifampin 150 MG Oral Capsule','198201','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2366_198202','198202','http://www.nlm.nih.gov/research/umls/rxnorm','rifampin 300 MG Oral Capsule','198202','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2366_199620','199620','http://www.nlm.nih.gov/research/umls/rxnorm','rifampin 600 MG Oral Tablet','199620','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2366_201867','201867','http://www.nlm.nih.gov/research/umls/rxnorm','rifampin 150 MG Oral Capsule [Rifadin]','201867','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2366_201868','201868','http://www.nlm.nih.gov/research/umls/rxnorm','rifampin 300 MG Oral Capsule [Rifadin]','201868','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2366_207436','207436','http://www.nlm.nih.gov/research/umls/rxnorm','rifampin 600 MG Injection [Rifadin]','207436','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2366_246297','246297','http://www.nlm.nih.gov/research/umls/rxnorm','rifampin 20 MG/ML Oral Suspension','246297','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2366_312821','312821','http://www.nlm.nih.gov/research/umls/rxnorm','rifampin 600 MG Injection','312821','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2366_419925','419925','http://www.nlm.nih.gov/research/umls/rxnorm','rifampin 20 MG/ML Oral Solution','419925','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1598_1236628','1236628','http://www.nlm.nih.gov/research/umls/rxnorm','darunavir 100 MG/ML Oral Suspension','1236628','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1598_1236632','1236632','http://www.nlm.nih.gov/research/umls/rxnorm','darunavir 100 MG/ML Oral Suspension [Prezista]','1236632','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1598_1359269','1359269','http://www.nlm.nih.gov/research/umls/rxnorm','darunavir 800 MG Oral Tablet','1359269','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1598_1359271','1359271','http://www.nlm.nih.gov/research/umls/rxnorm','darunavir 800 MG Oral Tablet [Prezista]','1359271','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1598_153127','153127','http://www.nlm.nih.gov/research/umls/rxnorm','indinavir 200 MG Oral Capsule [Crixivan]','153127','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1598_153128','153128','http://www.nlm.nih.gov/research/umls/rxnorm','indinavir 400 MG Oral Capsule [Crixivan]','153128','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1598_1598985','1598985','http://www.nlm.nih.gov/research/umls/rxnorm','atazanavir 50 MG Oral Powder','1598985','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1598_1598989','1598989','http://www.nlm.nih.gov/research/umls/rxnorm','atazanavir 50 MG Oral Powder [Reyataz]','1598989','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1598_212118','212118','http://www.nlm.nih.gov/research/umls/rxnorm','nelfinavir 250 MG Oral Tablet [Viracept]','212118','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1598_310986','310986','http://www.nlm.nih.gov/research/umls/rxnorm','indinavir 200 MG Oral Capsule','310986','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1598_310988','310988','http://www.nlm.nih.gov/research/umls/rxnorm','indinavir 400 MG Oral Capsule','310988','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1598_311924','311924','http://www.nlm.nih.gov/research/umls/rxnorm','nelfinavir 250 MG Oral Tablet','311924','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1598_402093','402093','http://www.nlm.nih.gov/research/umls/rxnorm','atazanavir 200 MG Oral Capsule [Reyataz]','402093','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1598_402094','402094','http://www.nlm.nih.gov/research/umls/rxnorm','atazanavir 150 MG Oral Capsule [Reyataz]','402094','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1598_402109','402109','http://www.nlm.nih.gov/research/umls/rxnorm','fosamprenavir 700 MG Oral Tablet','402109','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1598_402110','402110','http://www.nlm.nih.gov/research/umls/rxnorm','fosamprenavir 700 MG Oral Tablet [Lexiva]','402110','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1598_402245','402245','http://www.nlm.nih.gov/research/umls/rxnorm','atazanavir 100 MG Oral Capsule','402245','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1598_402246','402246','http://www.nlm.nih.gov/research/umls/rxnorm','atazanavir 150 MG Oral Capsule','402246','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1598_402247','402247','http://www.nlm.nih.gov/research/umls/rxnorm','atazanavir 200 MG Oral Capsule','402247','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1598_403978','403978','http://www.nlm.nih.gov/research/umls/rxnorm','nelfinavir 625 MG Oral Tablet','403978','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1598_542370','542370','http://www.nlm.nih.gov/research/umls/rxnorm','nelfinavir 625 MG Oral Tablet [Viracept]','542370','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1598_577212','577212','http://www.nlm.nih.gov/research/umls/rxnorm','tipranavir 250 MG Oral Capsule','577212','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1598_597267','597267','http://www.nlm.nih.gov/research/umls/rxnorm','fosamprenavir 50 MG/ML Oral Suspension','597267','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1598_603378','603378','http://www.nlm.nih.gov/research/umls/rxnorm','tipranavir 250 MG Oral Capsule [Aptivus]','603378','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1598_664741','664741','http://www.nlm.nih.gov/research/umls/rxnorm','atazanavir 300 MG Oral Capsule','664741','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1598_664743','664743','http://www.nlm.nih.gov/research/umls/rxnorm','atazanavir 300 MG Oral Capsule [Reyataz]','664743','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1598_670026','670026','http://www.nlm.nih.gov/research/umls/rxnorm','darunavir 600 MG Oral Tablet','670026','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1598_723827','723827','http://www.nlm.nih.gov/research/umls/rxnorm','fosamprenavir 50 MG/ML Oral Suspension [Lexiva]','723827','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1598_794610','794610','http://www.nlm.nih.gov/research/umls/rxnorm','darunavir 600 MG Oral Tablet [Prezista]','794610','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1598_802321','802321','http://www.nlm.nih.gov/research/umls/rxnorm','tipranavir 100 MG/ML Oral Solution','802321','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1598_805515','805515','http://www.nlm.nih.gov/research/umls/rxnorm','tipranavir 100 MG/ML Oral Solution [Aptivus]','805515','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1598_831868','831868','http://www.nlm.nih.gov/research/umls/rxnorm','darunavir 75 MG Oral Tablet','831868','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1598_831870','831870','http://www.nlm.nih.gov/research/umls/rxnorm','darunavir 75 MG Oral Tablet [Prezista]','831870','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1598_850455','850455','http://www.nlm.nih.gov/research/umls/rxnorm','darunavir 150 MG Oral Tablet','850455','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1598_850457','850457','http://www.nlm.nih.gov/research/umls/rxnorm','darunavir 150 MG Oral Tablet [Prezista]','850457','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1598_859863','859863','http://www.nlm.nih.gov/research/umls/rxnorm','saquinavir mesylate 500 MG Oral Tablet','859863','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1598_859865','859865','http://www.nlm.nih.gov/research/umls/rxnorm','saquinavir mesylate 500 MG Oral Tablet [Invirase]','859865','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1598_152970','152970','http://www.nlm.nih.gov/research/umls/rxnorm','ritonavir 100 MG Oral Capsule [Norvir]','152970','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1598_152971','152971','http://www.nlm.nih.gov/research/umls/rxnorm','ritonavir 80 MG/ML Oral Solution [Norvir]','152971','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1598_1926066','1926066','http://www.nlm.nih.gov/research/umls/rxnorm','ritonavir 100 MG Oral Powder','1926066','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1598_1926069','1926069','http://www.nlm.nih.gov/research/umls/rxnorm','ritonavir 100 MG Oral Powder [Norvir]','1926069','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1598_199249','199249','http://www.nlm.nih.gov/research/umls/rxnorm','ritonavir 80 MG/ML Oral Solution','199249','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1598_317150','317150','http://www.nlm.nih.gov/research/umls/rxnorm','ritonavir 100 MG Oral Capsule','317150','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1598_900575','900575','http://www.nlm.nih.gov/research/umls/rxnorm','ritonavir 100 MG Oral Tablet','900575','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1598_900577','900577','http://www.nlm.nih.gov/research/umls/rxnorm','ritonavir 100 MG Oral Tablet [Norvir]','900577','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1631_1734636','1734636','http://www.nlm.nih.gov/research/umls/rxnorm','elbasvir 50 MG / grazoprevir 100 MG Oral Tablet','1734636','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1631_1734642','1734642','http://www.nlm.nih.gov/research/umls/rxnorm','elbasvir 50 MG / grazoprevir 100 MG Oral Tablet [Zepatier]','1734642','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2367_242671','242671','http://www.nlm.nih.gov/research/umls/rxnorm','rifapentine 150 MG Oral Tablet','242671','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2367_261101','261101','http://www.nlm.nih.gov/research/umls/rxnorm','rifapentine 150 MG Oral Tablet [Priftin]','261101','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.732_105331','105331','http://www.nlm.nih.gov/research/umls/rxnorm','zidovudine 250 MG Oral Capsule','105331','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.732_199663','199663','http://www.nlm.nih.gov/research/umls/rxnorm','zidovudine 300 MG Oral Tablet','199663','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.732_687064','687064','http://www.nlm.nih.gov/research/umls/rxnorm','lamivudine 150 MG / nevirapine 200 MG / zidovudine 300 MG Oral Tablet','687064','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.732_900630','900630','http://www.nlm.nih.gov/research/umls/rxnorm','lamivudine 30 MG / zidovudine 60 MG Oral Tablet','900630','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.732_901048','901048','http://www.nlm.nih.gov/research/umls/rxnorm','zidovudine 60 MG Oral Tablet','901048','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.732_108396','108396','http://www.nlm.nih.gov/research/umls/rxnorm','20 ML zidovudine 10 MG/ML Injection [Retrovir]','108396','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.732_198352','198352','http://www.nlm.nih.gov/research/umls/rxnorm','zidovudine 100 MG Oral Capsule','198352','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.732_200082','200082','http://www.nlm.nih.gov/research/umls/rxnorm','lamivudine 150 MG / zidovudine 300 MG Oral Tablet','200082','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.732_201907','201907','http://www.nlm.nih.gov/research/umls/rxnorm','zidovudine 100 MG Oral Capsule [Retrovir]','201907','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.732_204534','204534','http://www.nlm.nih.gov/research/umls/rxnorm','20 ML zidovudine 10 MG/ML Injection','204534','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.732_213088','213088','http://www.nlm.nih.gov/research/umls/rxnorm','lamivudine 150 MG / zidovudine 300 MG Oral Tablet [Combivir]','213088','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.732_285028','285028','http://www.nlm.nih.gov/research/umls/rxnorm','abacavir 300 MG / lamivudine 150 MG / zidovudine 300 MG Oral Tablet [Trizivir]','285028','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.732_307650','307650','http://www.nlm.nih.gov/research/umls/rxnorm','abacavir 300 MG / lamivudine 150 MG / zidovudine 300 MG Oral Tablet','307650','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.732_755298','755298','http://www.nlm.nih.gov/research/umls/rxnorm','zidovudine 10 MG/ML Oral Solution [Retrovir]','755298','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.732_756209','756209','http://www.nlm.nih.gov/research/umls/rxnorm','zidovudine 10 MG/ML Oral Solution','756209','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2144_1364509','1364509','http://www.nlm.nih.gov/research/umls/rxnorm','bedaquiline 100 MG Oral Tablet','1364509','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2144_1364515','1364515','http://www.nlm.nih.gov/research/umls/rxnorm','bedaquiline 100 MG Oral Tablet [Sirturo]','1364515','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2144_2373939','2373939','http://www.nlm.nih.gov/research/umls/rxnorm','bedaquiline 20 MG Oral Tablet','2373939','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2144_2373941','2373941','http://www.nlm.nih.gov/research/umls/rxnorm','bedaquiline 20 MG Oral Tablet [Sirturo]','2373941','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2364_198181','198181','http://www.nlm.nih.gov/research/umls/rxnorm','pyrazinamide 500 MG Oral Tablet','198181','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1053_1599846','1599846','http://www.nlm.nih.gov/research/umls/rxnorm','carbidopa 4.63 MG/ML / levodopa 20 MG/ML Oral Suspension','1599846','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1053_1599852','1599852','http://www.nlm.nih.gov/research/umls/rxnorm','carbidopa 4.63 MG/ML / levodopa 20 MG/ML Oral Suspension [Duopa]','1599852','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1053_1600773','1600773','http://www.nlm.nih.gov/research/umls/rxnorm','8 HR carbidopa 23.75 MG / levodopa 95 MG Extended Release Oral Capsule','1600773','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1053_1600774','1600774','http://www.nlm.nih.gov/research/umls/rxnorm','8 HR carbidopa 23.75 MG / levodopa 95 MG Extended Release Oral Capsule [Rytary]','1600774','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1053_1600775','1600775','http://www.nlm.nih.gov/research/umls/rxnorm','8 HR carbidopa 36.25 MG / levodopa 145 MG Extended Release Oral Capsule','1600775','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1053_1600776','1600776','http://www.nlm.nih.gov/research/umls/rxnorm','8 HR carbidopa 36.25 MG / levodopa 145 MG Extended Release Oral Capsule [Rytary]','1600776','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1053_1600914','1600914','http://www.nlm.nih.gov/research/umls/rxnorm','8 HR carbidopa 48.75 MG / levodopa 195 MG Extended Release Oral Capsule','1600914','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1053_1600915','1600915','http://www.nlm.nih.gov/research/umls/rxnorm','8 HR carbidopa 48.75 MG / levodopa 195 MG Extended Release Oral Capsule [Rytary]','1600915','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1053_1600916','1600916','http://www.nlm.nih.gov/research/umls/rxnorm','8 HR carbidopa 61.25 MG / levodopa 245 MG Extended Release Oral Capsule','1600916','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1053_1600917','1600917','http://www.nlm.nih.gov/research/umls/rxnorm','8 HR carbidopa 61.25 MG / levodopa 245 MG Extended Release Oral Capsule [Rytary]','1600917','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1053_197443','197443','http://www.nlm.nih.gov/research/umls/rxnorm','carbidopa 10 MG / levodopa 100 MG Oral Tablet','197443','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1053_197444','197444','http://www.nlm.nih.gov/research/umls/rxnorm','carbidopa 25 MG / levodopa 100 MG Oral Tablet','197444','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1053_197445','197445','http://www.nlm.nih.gov/research/umls/rxnorm','carbidopa 25 MG / levodopa 250 MG Oral Tablet','197445','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1053_250432','250432','http://www.nlm.nih.gov/research/umls/rxnorm','carbidopa 12.5 MG / levodopa 50 MG Oral Tablet','250432','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1053_308988','308988','http://www.nlm.nih.gov/research/umls/rxnorm','carbidopa 25 MG / levodopa 100 MG Extended Release Oral Tablet','308988','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1053_308989','308989','http://www.nlm.nih.gov/research/umls/rxnorm','carbidopa 50 MG / levodopa 200 MG Extended Release Oral Tablet','308989','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1053_476399','476399','http://www.nlm.nih.gov/research/umls/rxnorm','carbidopa 25 MG / levodopa 100 MG Disintegrating Oral Tablet','476399','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1053_476515','476515','http://www.nlm.nih.gov/research/umls/rxnorm','carbidopa 25 MG / levodopa 250 MG Disintegrating Oral Tablet','476515','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1053_483090','483090','http://www.nlm.nih.gov/research/umls/rxnorm','carbidopa 10 MG / levodopa 100 MG Disintegrating Oral Tablet','483090','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1053_724598','724598','http://www.nlm.nih.gov/research/umls/rxnorm','carbidopa 25 MG / levodopa 100 MG Oral Tablet [Sinemet]','724598','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1053_724602','724602','http://www.nlm.nih.gov/research/umls/rxnorm','carbidopa 25 MG / levodopa 250 MG Oral Tablet [Sinemet]','724602','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1053_724606','724606','http://www.nlm.nih.gov/research/umls/rxnorm','carbidopa 10 MG / levodopa 100 MG Oral Tablet [Sinemet]','724606','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1053_792381','792381','http://www.nlm.nih.gov/research/umls/rxnorm','carbidopa 25 MG / levodopa 100 MG Extended Release Oral Tablet [Sinemet]','792381','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1053_809002','809002','http://www.nlm.nih.gov/research/umls/rxnorm','carbidopa 10 MG / levodopa 100 MG Disintegrating Oral Tablet [Parcopa]','809002','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1053_809006','809006','http://www.nlm.nih.gov/research/umls/rxnorm','carbidopa 25 MG / levodopa 100 MG Disintegrating Oral Tablet [Parcopa]','809006','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1053_809010','809010','http://www.nlm.nih.gov/research/umls/rxnorm','carbidopa 25 MG / levodopa 250 MG Disintegrating Oral Tablet [Parcopa]','809010','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1053_834341','834341','http://www.nlm.nih.gov/research/umls/rxnorm','carbidopa 50 MG / levodopa 200 MG Extended Release Oral Tablet [Sinemet]','834341','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2365_103899','103899','http://www.nlm.nih.gov/research/umls/rxnorm','rifabutin 150 MG Oral Capsule [Mycobutin]','103899','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2365_198200','198200','http://www.nlm.nih.gov/research/umls/rxnorm','rifabutin 150 MG Oral Capsule','198200','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1078_1191212','1191212','http://www.nlm.nih.gov/research/umls/rxnorm','naloxone hydrochloride 0.02 MG/ML Injectable Solution','1191212','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1078_1191222','1191222','http://www.nlm.nih.gov/research/umls/rxnorm','naloxone hydrochloride 0.4 MG/ML Injectable Solution','1191222','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1078_1191228','1191228','http://www.nlm.nih.gov/research/umls/rxnorm','naloxone hydrochloride 1 MG/ML Injectable Solution','1191228','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1078_1191234','1191234','http://www.nlm.nih.gov/research/umls/rxnorm','1 ML naloxone hydrochloride 0.4 MG/ML Cartridge','1191234','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1078_1191245','1191245','http://www.nlm.nih.gov/research/umls/rxnorm','2 ML naloxone hydrochloride 0.4 MG/ML Prefilled Syringe','1191245','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1078_1191250','1191250','http://www.nlm.nih.gov/research/umls/rxnorm','2 ML naloxone hydrochloride 1 MG/ML Prefilled Syringe','1191250','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1078_1495293','1495293','http://www.nlm.nih.gov/research/umls/rxnorm','0.4 ML naloxone hydrochloride 1 MG/ML Auto-Injector','1495293','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1078_1495298','1495298','http://www.nlm.nih.gov/research/umls/rxnorm','0.4 ML naloxone hydrochloride 1 MG/ML Auto-Injector [Evzio]','1495298','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1078_1659929','1659929','http://www.nlm.nih.gov/research/umls/rxnorm','1 ML naloxone hydrochloride 0.4 MG/ML Injection','1659929','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1078_1725059','1725059','http://www.nlm.nih.gov/research/umls/rxnorm','naloxone hydrochloride 40 MG/ML Nasal Spray','1725059','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1078_1725064','1725064','http://www.nlm.nih.gov/research/umls/rxnorm','naloxone hydrochloride 40 MG/ML Nasal Spray [Narcan]','1725064','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1078_1855730','1855730','http://www.nlm.nih.gov/research/umls/rxnorm','0.4 ML naloxone hydrochloride 5 MG/ML Auto-Injector','1855730','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1078_1855732','1855732','http://www.nlm.nih.gov/research/umls/rxnorm','0.4 ML naloxone hydrochloride 5 MG/ML Auto-Injector [Evzio]','1855732','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1078_1870933','1870933','http://www.nlm.nih.gov/research/umls/rxnorm','naloxone hydrochloride 20 MG/ML Nasal Spray','1870933','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1078_1870935','1870935','http://www.nlm.nih.gov/research/umls/rxnorm','naloxone hydrochloride 20 MG/ML Nasal Spray [Narcan]','1870935','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1078_2540703','2540703','http://www.nlm.nih.gov/research/umls/rxnorm','naloxone hydrochloride 80 MG/ML Nasal Spray','2540703','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1078_2540709','2540709','http://www.nlm.nih.gov/research/umls/rxnorm','naloxone hydrochloride 80 MG/ML Nasal Spray [Kloxxado]','2540709','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1078_2589612','2589612','http://www.nlm.nih.gov/research/umls/rxnorm','0.5 ML naloxone hydrochloride 10 MG/ML Prefilled Syringe','2589612','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1078_2589618','2589618','http://www.nlm.nih.gov/research/umls/rxnorm','0.5 ML naloxone hydrochloride 10 MG/ML Prefilled Syringe [Zimhi]','2589618','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1078_2596175','2596175','http://www.nlm.nih.gov/research/umls/rxnorm','0.4 ML naloxone hydrochloride 25 MG/ML Auto-Injector','2596175','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1595_1052658','1052658','http://www.nlm.nih.gov/research/umls/rxnorm','etravirine 200 MG Oral Tablet','1052658','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1595_1052660','1052660','http://www.nlm.nih.gov/research/umls/rxnorm','etravirine 200 MG Oral Tablet [Intelence]','1052660','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1595_1088481','1088481','http://www.nlm.nih.gov/research/umls/rxnorm','efavirenz 200 MG Oral Tablet','1088481','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1595_1095712','1095712','http://www.nlm.nih.gov/research/umls/rxnorm','24 HR nevirapine 400 MG Extended Release Oral Tablet','1095712','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1595_1095715','1095715','http://www.nlm.nih.gov/research/umls/rxnorm','24 HR nevirapine 400 MG Extended Release Oral Tablet [Viramune]','1095715','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1595_1102273','1102273','http://www.nlm.nih.gov/research/umls/rxnorm','rilpivirine 25 MG Oral Tablet','1102273','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1595_1102277','1102277','http://www.nlm.nih.gov/research/umls/rxnorm','rilpivirine 25 MG Oral Tablet [Edurant]','1102277','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1595_1250721','1250721','http://www.nlm.nih.gov/research/umls/rxnorm','etravirine 25 MG Oral Tablet','1250721','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1595_1250723','1250723','http://www.nlm.nih.gov/research/umls/rxnorm','etravirine 25 MG Oral Tablet [Intelence]','1250723','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1595_1373745','1373745','http://www.nlm.nih.gov/research/umls/rxnorm','24 HR nevirapine 100 MG Extended Release Oral Tablet','1373745','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1595_1373747','1373747','http://www.nlm.nih.gov/research/umls/rxnorm','24 HR nevirapine 100 MG Extended Release Oral Tablet [Viramune]','1373747','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1595_199422','199422','http://www.nlm.nih.gov/research/umls/rxnorm','nevirapine 200 MG Oral Tablet','199422','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1595_205290','205290','http://www.nlm.nih.gov/research/umls/rxnorm','efavirenz 200 MG Oral Capsule','205290','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1595_205291','205291','http://www.nlm.nih.gov/research/umls/rxnorm','efavirenz 100 MG Oral Capsule','205291','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1595_205292','205292','http://www.nlm.nih.gov/research/umls/rxnorm','efavirenz 50 MG Oral Capsule','205292','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1595_2055760','2055760','http://www.nlm.nih.gov/research/umls/rxnorm','doravirine 100 MG Oral Tablet','2055760','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1595_2055766','2055766','http://www.nlm.nih.gov/research/umls/rxnorm','doravirine 100 MG Oral Tablet [Pifeltro]','2055766','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1595_211327','211327','http://www.nlm.nih.gov/research/umls/rxnorm','nevirapine 200 MG Oral Tablet [Viramune]','211327','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1595_213390','213390','http://www.nlm.nih.gov/research/umls/rxnorm','efavirenz 200 MG Oral Capsule [Sustiva]','213390','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1595_213392','213392','http://www.nlm.nih.gov/research/umls/rxnorm','efavirenz 50 MG Oral Capsule [Sustiva]','213392','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1595_213405','213405','http://www.nlm.nih.gov/research/umls/rxnorm','nevirapine 10 MG/ML Oral Suspension [Viramune]','213405','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1595_2594980','2594980','http://www.nlm.nih.gov/research/umls/rxnorm','3 ML rilpivirine 300 MG/ML Injection','2594980','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1595_2594982','2594982','http://www.nlm.nih.gov/research/umls/rxnorm','2 ML rilpivirine 300 MG/ML Injection','2594982','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1595_311943','311943','http://www.nlm.nih.gov/research/umls/rxnorm','nevirapine 10 MG/ML Oral Suspension','311943','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1595_349477','349477','http://www.nlm.nih.gov/research/umls/rxnorm','efavirenz 600 MG Oral Tablet','349477','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1595_352143','352143','http://www.nlm.nih.gov/research/umls/rxnorm','efavirenz 600 MG Oral Tablet [Sustiva]','352143','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1595_402008','402008','http://www.nlm.nih.gov/research/umls/rxnorm','efavirenz 30 MG/ML Oral Solution','402008','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1595_754761','754761','http://www.nlm.nih.gov/research/umls/rxnorm','etravirine 100 MG Oral Tablet','754761','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1595_758555','758555','http://www.nlm.nih.gov/research/umls/rxnorm','etravirine 100 MG Oral Tablet [Intelence]','758555','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1595_856560','856560','http://www.nlm.nih.gov/research/umls/rxnorm','delavirdine mesylate 100 MG Oral Tablet','856560','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1595_856562','856562','http://www.nlm.nih.gov/research/umls/rxnorm','delavirdine mesylate 100 MG Oral Tablet [Rescriptor]','856562','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1595_856610','856610','http://www.nlm.nih.gov/research/umls/rxnorm','delavirdine mesylate 200 MG Oral Tablet','856610','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1595_856612','856612','http://www.nlm.nih.gov/research/umls/rxnorm','delavirdine mesylate 200 MG Oral Tablet [Rescriptor]','856612','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1595_2475414','2475414','http://www.nlm.nih.gov/research/umls/rxnorm','','2475414','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2142_1662278','1662278','http://www.nlm.nih.gov/research/umls/rxnorm','100 ML linezolid 2 MG/ML Injection','1662278','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2142_1662280','1662280','http://www.nlm.nih.gov/research/umls/rxnorm','100 ML linezolid 2 MG/ML Injection [Zyvox]','1662280','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2142_1662285','1662285','http://www.nlm.nih.gov/research/umls/rxnorm','300 ML linezolid 2 MG/ML Injection','1662285','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2142_1662286','1662286','http://www.nlm.nih.gov/research/umls/rxnorm','300 ML linezolid 2 MG/ML Injection [Zyvox]','1662286','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2142_262091','262091','http://www.nlm.nih.gov/research/umls/rxnorm','linezolid 600 MG Oral Tablet [Zyvox]','262091','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2142_311345','311345','http://www.nlm.nih.gov/research/umls/rxnorm','linezolid 20 MG/ML Oral Suspension','311345','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2142_311347','311347','http://www.nlm.nih.gov/research/umls/rxnorm','linezolid 600 MG Oral Tablet','311347','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2142_314079','314079','http://www.nlm.nih.gov/research/umls/rxnorm','linezolid 400 MG Oral Tablet','314079','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2142_581614','581614','http://www.nlm.nih.gov/research/umls/rxnorm','linezolid 20 MG/ML Oral Suspension [Zyvox]','581614','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2362_995599','995599','http://www.nlm.nih.gov/research/umls/rxnorm','ethambutol hydrochloride 100 MG Oral Tablet','995599','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2362_995605','995605','http://www.nlm.nih.gov/research/umls/rxnorm','ethambutol hydrochloride 100 MG Oral Tablet [Myambutol]','995605','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2362_995607','995607','http://www.nlm.nih.gov/research/umls/rxnorm','ethambutol hydrochloride 400 MG Oral Tablet','995607','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2362_995609','995609','http://www.nlm.nih.gov/research/umls/rxnorm','ethambutol hydrochloride 400 MG Oral Tablet [Myambutol]','995609','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.339_1087391','1087391','http://www.nlm.nih.gov/research/umls/rxnorm','1 ML tetanus immune globulin, human 250 UNT/ML Prefilled Syringe','1087391','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.339_1087395','1087395','http://www.nlm.nih.gov/research/umls/rxnorm','1 ML tetanus immune globulin, human 250 UNT/ML Prefilled Syringe [Hypertet]','1087395','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1594_1243227','1243227','http://www.nlm.nih.gov/research/umls/rxnorm','tenofovir disoproxil fumarate 250 MG Oral Tablet','1243227','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1594_1243229','1243229','http://www.nlm.nih.gov/research/umls/rxnorm','tenofovir disoproxil fumarate 250 MG Oral Tablet [Viread]','1243229','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1594_1243324','1243324','http://www.nlm.nih.gov/research/umls/rxnorm','tenofovir disoproxil fumarate 150 MG Oral Tablet','1243324','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1594_1243326','1243326','http://www.nlm.nih.gov/research/umls/rxnorm','tenofovir disoproxil fumarate 150 MG Oral Tablet [Viread]','1243326','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1594_1243328','1243328','http://www.nlm.nih.gov/research/umls/rxnorm','tenofovir disoproxil fumarate 200 MG Oral Tablet','1243328','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1594_1243330','1243330','http://www.nlm.nih.gov/research/umls/rxnorm','tenofovir disoproxil fumarate 200 MG Oral Tablet [Viread]','1243330','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1594_1243343','1243343','http://www.nlm.nih.gov/research/umls/rxnorm','tenofovir disoproxil fumarate 0.04 MG/MG Oral Powder','1243343','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1594_1243346','1243346','http://www.nlm.nih.gov/research/umls/rxnorm','tenofovir disoproxil fumarate 0.04 MG/MG Oral Powder [Viread]','1243346','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1594_152931','152931','http://www.nlm.nih.gov/research/umls/rxnorm','lamivudine 150 MG Oral Tablet [Epivir]','152931','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1594_152932','152932','http://www.nlm.nih.gov/research/umls/rxnorm','lamivudine 10 MG/ML Oral Solution [Epivir]','152932','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1594_152941','152941','http://www.nlm.nih.gov/research/umls/rxnorm','stavudine 15 MG Oral Capsule [Zerit]','152941','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1594_152942','152942','http://www.nlm.nih.gov/research/umls/rxnorm','stavudine 20 MG Oral Capsule [Zerit]','152942','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1594_152943','152943','http://www.nlm.nih.gov/research/umls/rxnorm','stavudine 30 MG Oral Capsule [Zerit]','152943','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1594_152944','152944','http://www.nlm.nih.gov/research/umls/rxnorm','stavudine 40 MG Oral Capsule [Zerit]','152944','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1594_199147','199147','http://www.nlm.nih.gov/research/umls/rxnorm','lamivudine 150 MG Oral Tablet','199147','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1594_199148','199148','http://www.nlm.nih.gov/research/umls/rxnorm','lamivudine 10 MG/ML Oral Solution','199148','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1594_205328','205328','http://www.nlm.nih.gov/research/umls/rxnorm','lamivudine 100 MG Oral Tablet','205328','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1594_213460','213460','http://www.nlm.nih.gov/research/umls/rxnorm','abacavir 300 MG Oral Tablet [Ziagen]','213460','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1594_213461','213461','http://www.nlm.nih.gov/research/umls/rxnorm','abacavir 20 MG/ML Oral Solution [Ziagen]','213461','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1594_213483','213483','http://www.nlm.nih.gov/research/umls/rxnorm','lamivudine 100 MG Oral Tablet [Epivir HBV]','213483','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1594_213484','213484','http://www.nlm.nih.gov/research/umls/rxnorm','lamivudine 5 MG/ML Oral Solution [Epivir HBV]','213484','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1594_242679','242679','http://www.nlm.nih.gov/research/umls/rxnorm','abacavir 300 MG Oral Tablet','242679','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1594_242680','242680','http://www.nlm.nih.gov/research/umls/rxnorm','abacavir 20 MG/ML Oral Solution','242680','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1594_242692','242692','http://www.nlm.nih.gov/research/umls/rxnorm','lamivudine 5 MG/ML Oral Solution','242692','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1594_252995','252995','http://www.nlm.nih.gov/research/umls/rxnorm','didanosine 10 MG/ML Oral Solution','252995','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1594_284183','284183','http://www.nlm.nih.gov/research/umls/rxnorm','didanosine 125 MG Delayed Release Oral Capsule','284183','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1594_284184','284184','http://www.nlm.nih.gov/research/umls/rxnorm','didanosine 250 MG Delayed Release Oral Capsule','284184','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1594_284185','284185','http://www.nlm.nih.gov/research/umls/rxnorm','didanosine 200 MG Delayed Release Oral Capsule','284185','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1594_284498','284498','http://www.nlm.nih.gov/research/umls/rxnorm','didanosine 125 MG Delayed Release Oral Capsule [Videx]','284498','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1594_284499','284499','http://www.nlm.nih.gov/research/umls/rxnorm','didanosine 200 MG Delayed Release Oral Capsule [Videx EC]','284499','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1594_284500','284500','http://www.nlm.nih.gov/research/umls/rxnorm','didanosine 400 MG Delayed Release Oral Capsule [Videx EC]','284500','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1594_284988','284988','http://www.nlm.nih.gov/research/umls/rxnorm','didanosine 400 MG Delayed Release Oral Capsule','284988','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1594_285027','285027','http://www.nlm.nih.gov/research/umls/rxnorm','didanosine 250 MG Delayed Release Oral Capsule [Videx EC]','285027','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1594_309866','309866','http://www.nlm.nih.gov/research/umls/rxnorm','didanosine 100 MG Chewable Tablet','309866','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1594_309867','309867','http://www.nlm.nih.gov/research/umls/rxnorm','didanosine 1 MG/ML Oral Solution','309867','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1594_309868','309868','http://www.nlm.nih.gov/research/umls/rxnorm','didanosine 150 MG Chewable Tablet','309868','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1594_309869','309869','http://www.nlm.nih.gov/research/umls/rxnorm','didanosine 1.67 MG/ML Oral Solution','309869','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1594_309871','309871','http://www.nlm.nih.gov/research/umls/rxnorm','didanosine 2.5 MG/ML Oral Solution','309871','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1594_309872','309872','http://www.nlm.nih.gov/research/umls/rxnorm','didanosine 25 MG Chewable Tablet','309872','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1594_309873','309873','http://www.nlm.nih.gov/research/umls/rxnorm','didanosine 50 MG Chewable Tablet','309873','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1594_313107','313107','http://www.nlm.nih.gov/research/umls/rxnorm','stavudine 15 MG Oral Capsule','313107','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1594_313108','313108','http://www.nlm.nih.gov/research/umls/rxnorm','stavudine 20 MG Oral Capsule','313108','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1594_313109','313109','http://www.nlm.nih.gov/research/umls/rxnorm','stavudine 30 MG Oral Capsule','313109','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1594_313110','313110','http://www.nlm.nih.gov/research/umls/rxnorm','stavudine 40 MG Oral Capsule','313110','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1594_313961','313961','http://www.nlm.nih.gov/research/umls/rxnorm','didanosine 200 MG Chewable Tablet','313961','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1594_315217','315217','http://www.nlm.nih.gov/research/umls/rxnorm','stavudine 1 MG/ML Oral Solution','315217','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1594_349251','349251','http://www.nlm.nih.gov/research/umls/rxnorm','tenofovir disoproxil fumarate 300 MG Oral Tablet','349251','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1594_349491','349491','http://www.nlm.nih.gov/research/umls/rxnorm','lamivudine 300 MG Oral Tablet','349491','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1594_352050','352050','http://www.nlm.nih.gov/research/umls/rxnorm','tenofovir disoproxil fumarate 300 MG Oral Tablet [Viread]','352050','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1594_352230','352230','http://www.nlm.nih.gov/research/umls/rxnorm','lamivudine 300 MG Oral Tablet [Epivir]','352230','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1594_403875','403875','http://www.nlm.nih.gov/research/umls/rxnorm','emtricitabine 200 MG Oral Capsule','403875','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1594_404587','404587','http://www.nlm.nih.gov/research/umls/rxnorm','emtricitabine 200 MG Oral Capsule [Emtriva]','404587','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1594_542059','542059','http://www.nlm.nih.gov/research/umls/rxnorm','didanosine 10 MG/ML Oral Solution [Videx]','542059','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1594_597291','597291','http://www.nlm.nih.gov/research/umls/rxnorm','emtricitabine 10 MG/ML Oral Solution','597291','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1594_616148','616148','http://www.nlm.nih.gov/research/umls/rxnorm','emtricitabine 10 MG/ML Oral Solution [Emtriva]','616148','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1594_108396','108396','http://www.nlm.nih.gov/research/umls/rxnorm','20 ML zidovudine 10 MG/ML Injection [Retrovir]','108396','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1594_198352','198352','http://www.nlm.nih.gov/research/umls/rxnorm','zidovudine 100 MG Oral Capsule','198352','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1594_201907','201907','http://www.nlm.nih.gov/research/umls/rxnorm','zidovudine 100 MG Oral Capsule [Retrovir]','201907','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1594_204534','204534','http://www.nlm.nih.gov/research/umls/rxnorm','20 ML zidovudine 10 MG/ML Injection','204534','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1594_755298','755298','http://www.nlm.nih.gov/research/umls/rxnorm','zidovudine 10 MG/ML Oral Solution [Retrovir]','755298','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1594_756209','756209','http://www.nlm.nih.gov/research/umls/rxnorm','zidovudine 10 MG/ML Oral Solution','756209','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2143_2198370','2198370','http://www.nlm.nih.gov/research/umls/rxnorm','pretomanid 200 MG Oral Tablet','2198370','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2363_105292','105292','http://www.nlm.nih.gov/research/umls/rxnorm','isoniazid 10 MG/ML Oral Solution','105292','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2363_105293','105293','http://www.nlm.nih.gov/research/umls/rxnorm','isoniazid 25 MG/ML Injectable Solution','105293','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2363_197832','197832','http://www.nlm.nih.gov/research/umls/rxnorm','isoniazid 300 MG Oral Tablet','197832','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2363_204430','204430','http://www.nlm.nih.gov/research/umls/rxnorm','isoniazid 100 MG/ML Injectable Solution','204430','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2363_311166','311166','http://www.nlm.nih.gov/research/umls/rxnorm','isoniazid 100 MG Oral Tablet','311166','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2363_311171','311171','http://www.nlm.nih.gov/research/umls/rxnorm','isoniazid 50 MG Oral Tablet','311171','2024-06');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1439_722545003','722545003','http://snomed.info/sct','Suspected rabies (situation)','722545003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1439_722546002','722546002','http://snomed.info/sct','Probable rabies (situation)','722546002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1777_541121000124100','541121000124100','http://snomed.info/sct','Suspected infection caused by novel Influenza A virus variant (situation)','541121000124100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1436_772152006','772152006','http://snomed.info/sct','Measles suspected (situation)','772152006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1446_707860005','707860005','http://snomed.info/sct','Suspected Ebola virus disease (situation)','707860005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1446_772158005','772158005','http://snomed.info/sct','Viral hemorrhagic fever suspected (situation)','772158005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1435_772150003','772150003','http://snomed.info/sct','Diphtheria suspected (situation)','772150003','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1438_772155008','772155008','http://snomed.info/sct','Acute poliomyelitis suspected (situation)','772155008','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1437_772161006','772161006','http://snomed.info/sct','Plague suspected (situation)','772161006','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2163_418429061000132101','418429061000132101','http://snomed.info/sct','Suspected dengue (situation)','418429061000132101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1432_772147001','772147001','http://snomed.info/sct','Botulism suspected (situation)','772147001','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1443_772162004','772162004','http://snomed.info/sct','Yellow fever suspected (situation)','772162004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1442_772159002','772159002','http://snomed.info/sct','Smallpox suspected (situation)','772159002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2014_1290561000000101','1290561000000101','http://snomed.info/sct','Suspected monkeypox (situation)','1290561000000101','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2146_237149005','237149005','http://snomed.info/sct','Fetus with suspected rubella damage via mother (situation)','237149005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1434_772163009','772163009','http://snomed.info/sct','Brucellosis suspected (situation)','772163009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1445_772165002','772165002','http://snomed.info/sct','Suspected meningococcemia (situation)','772165002','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1433_772151004','772151004','http://snomed.info/sct','Anthrax suspected (situation)','772151004','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1444_772160007','772160007','http://snomed.info/sct','Cholera suspected (situation)','772160007','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2145_772170009','772170009','http://snomed.info/sct','Tuberculosis suspected (situation)','772170009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1441_12591000132100','12591000132100','http://snomed.info/sct','Suspected severe acute respiratory syndrome (situation)','12591000132100','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1441_12601000132105','12601000132105','http://snomed.info/sct','Probable severe acute respiratory syndrome (situation)','12601000132105','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2164_772145009','772145009','http://snomed.info/sct','Mumps suspected (situation)','772145009','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.2165_772146005','772146005','http://snomed.info/sct','Pertussis suspected (situation)','772146005','2024-03');
-INSERT INTO concepts VALUES('2.16.840.1.113762.1.4.1146.1440_772212002','772212002','http://snomed.info/sct','Rubella suspected (situation)','772212002','2024-03');
--- CREATE TABLE condition_to_valueset (
--- id TEXT PRIMARY KEY,
--- condition_id TEXT,
--- valueset_id TEXT,
--- source TEXT,
--- FOREIGN KEY (condition_id) REFERENCES conditions(id),
--- FOREIGN KEY (valueset_id) REFERENCES valuesets(id)
--- );
-INSERT INTO condition_to_valueset VALUES('1','276197005','2.16.840.1.113762.1.4.1146.6_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('2','266123003','2.16.840.1.113762.1.4.1146.2030_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('3','95821001','2.16.840.1.113762.1.4.1146.2151_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('4','266123003','2.16.840.1.113762.1.4.1146.2031_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('5','242253008','2.16.840.1.113762.1.4.1146.1063_20191227','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('6','414488002','2.16.840.1.113762.1.4.1146.360_20220603','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('7','398565003','2.16.840.1.113762.1.4.1146.360_20220603','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('8','95821001','2.16.840.1.113762.1.4.1146.2150_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('9','23511006','2.16.840.1.113762.1.4.1146.120_20210527','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('10','81004002','2.16.840.1.113762.1.4.1146.362_20210527','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('11','23511006','2.16.840.1.113762.1.4.1146.121_20220603','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('12','81004002','2.16.840.1.113762.1.4.1146.363_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('13','398102009','2.16.840.1.113762.1.4.1146.123_20180620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('14','805002','2.16.840.1.113762.1.4.1146.365_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('15','398102009','2.16.840.1.113762.1.4.1146.124_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('16','805002','2.16.840.1.113762.1.4.1146.366_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('17','14189004','2.16.840.1.113762.1.4.1146.126_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('18','14189004','2.16.840.1.113762.1.4.1146.127_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('19','186771002','2.16.840.1.113762.1.4.1146.248_20200515','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('20','266123003','2.16.840.1.113762.1.4.1146.2034_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('21','190268003','2.16.840.1.113762.1.4.1146.2155_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('22','186771002','2.16.840.1.113762.1.4.1146.249_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('23','60498001','2.16.840.1.113762.1.4.1146.129_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('24','66071002','2.16.840.1.113762.1.4.1146.129_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('25','266123003','2.16.840.1.113762.1.4.1146.2032_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('26','190268003','2.16.840.1.113762.1.4.1146.2153_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('27','266123003','2.16.840.1.113762.1.4.1146.2033_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('28','190268003','2.16.840.1.113762.1.4.1146.2154_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('29','3928002','2.16.840.1.113762.1.4.1146.590_20191227','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('30','3928002','2.16.840.1.113762.1.4.1146.592_20190817','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('31','61462000','2.16.840.1.113762.1.4.1146.230_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('32','76902006','2.16.840.1.113762.1.4.1146.112_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('33','76902006','2.16.840.1.113762.1.4.1146.113_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('34','23502006','2.16.840.1.113762.1.4.1146.234_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('35','13906002','2.16.840.1.113762.1.4.1146.235_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('36','36989005','2.16.840.1.113762.1.4.1146.115_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('37','276197005','2.16.840.1.113762.1.4.1146.116_20190609','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('38','36989005','2.16.840.1.113762.1.4.1146.117_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('39','414488002','2.16.840.1.113762.1.4.1146.359_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('40','398565003','2.16.840.1.113762.1.4.1146.359_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('41','414819007','2.16.840.1.113762.1.4.1146.2288_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('42','74942003','2.16.840.1.113762.1.4.1146.2052_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('43','74942003','2.16.840.1.113762.1.4.1146.2053_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('44','86406008','2.16.840.1.113762.1.4.1146.460_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('45','86406008','2.16.840.1.113762.1.4.1146.461_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('46','240626005','2.16.840.1.113762.1.4.1146.221_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('47','240626005','2.16.840.1.113762.1.4.1146.224_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('48','36653000','2.16.840.1.113762.1.4.1146.105_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('49','23502006','2.16.840.1.113762.1.4.1146.226_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('50','36653000','2.16.840.1.113762.1.4.1146.106_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('51','74942003','2.16.840.1.113762.1.4.1146.2056_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('52','23502006','2.16.840.1.113762.1.4.1146.227_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('53','74942003','2.16.840.1.113762.1.4.1146.2057_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('54','35742006','2.16.840.1.113762.1.4.1146.1089_20191227','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('55','74942003','2.16.840.1.113762.1.4.1146.2054_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('56','61462000','2.16.840.1.113762.1.4.1146.229_20220601','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('57','74942003','2.16.840.1.113762.1.4.1146.2055_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('58','266113007','2.16.840.1.113762.1.4.1146.2063_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('59','187151009','2.16.840.1.113762.1.4.1146.2064_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('60','266113007','2.16.840.1.113762.1.4.1146.2061_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('61','35742006','2.16.840.1.113762.1.4.1146.1090_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('62','56717001','2.16.840.1.113762.1.4.1146.451_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('63','240372001','2.16.840.1.113762.1.4.1146.210_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('64','240372001','2.16.840.1.113762.1.4.1146.211_20190605','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('65','198130006','2.16.840.1.113762.1.4.1146.2069_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('66','398447004','2.16.840.1.113762.1.4.1146.458_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('67','4241002','2.16.840.1.113762.1.4.1146.217_20190608','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('68','187151009','2.16.840.1.113762.1.4.1146.2065_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('69','4241002','2.16.840.1.113762.1.4.1146.218_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('70','198130006','2.16.840.1.113762.1.4.1146.2074_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('71','198130006','2.16.840.1.113762.1.4.1146.2072_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('72','198130006','2.16.840.1.113762.1.4.1146.2073_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('73','198130006','2.16.840.1.113762.1.4.1146.2070_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('74','198130006','2.16.840.1.113762.1.4.1146.2071_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('75','709018004','2.16.840.1.113762.1.4.1146.201_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('76','37131007','2.16.840.1.113762.1.4.1146.322_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('77','709018004','2.16.840.1.113762.1.4.1146.202_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('78','58265007','2.16.840.1.113762.1.4.1146.204_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('79','58265007','2.16.840.1.113762.1.4.1146.205_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('80','40610006','2.16.840.1.113762.1.4.1146.326_20220603','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('81','240370009','2.16.840.1.113762.1.4.1146.207_20220601','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('82','240370009','2.16.840.1.113762.1.4.1146.208_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('83','13906002','2.16.840.1.113762.1.4.1146.2198_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('84','541131000124102','2.16.840.1.113762.1.4.1146.792_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('85','541131000124102','2.16.840.1.113762.1.4.1146.793_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('86','1857005','2.16.840.1.113762.1.4.1146.315_20191227','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('87','95821001','2.16.840.1.113762.1.4.1146.679_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('88','84619001','2.16.840.1.113762.1.4.1146.2087_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('89','84619001','2.16.840.1.113762.1.4.1146.2088_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('90','41439009','2.16.840.1.113762.1.4.1146.2096_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('91','1857005','2.16.840.1.113762.1.4.1146.783_20210526','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('92','1857005','2.16.840.1.113762.1.4.1146.784_20220601','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('93','56717001','2.16.840.1.113762.1.4.1146.422_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('94','40956001','2.16.840.1.113762.1.4.1146.666_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('95','37131007','2.16.840.1.113762.1.4.1146.304_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('96','40956001','2.16.840.1.113762.1.4.1146.667_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('97','409498004','2.16.840.1.113762.1.4.1146.410_20180620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('98','409498004','2.16.840.1.113762.1.4.1146.411_20180620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('99','7180009','2.16.840.1.113762.1.4.1146.657_20220115','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('100','204339005','2.16.840.1.113762.1.4.1146.2319_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('101','204339005','2.16.840.1.113762.1.4.1146.2317_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('102','416707008','2.16.840.1.113762.1.4.1146.1347_20210526','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('103','3398004','2.16.840.1.113762.1.4.1146.1589_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('104','204339005','2.16.840.1.113762.1.4.1146.2318_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('105','111407006','2.16.840.1.113762.1.4.1146.86_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('106','204357006','2.16.840.1.113762.1.4.1146.2315_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('107','111407006','2.16.840.1.113762.1.4.1146.87_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('108','204357006','2.16.840.1.113762.1.4.1146.2316_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('109','111407006','2.16.840.1.113762.1.4.1146.88_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('110','86500004','2.16.840.1.113762.1.4.1146.80_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('111','399907009','2.16.840.1.113762.1.4.1146.1580_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('112','399907009','2.16.840.1.113762.1.4.1146.1586_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('113','7305005','2.16.840.1.113762.1.4.1146.2313_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('114','399907009','2.16.840.1.113762.1.4.1146.1585_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('115','7305005','2.16.840.1.113762.1.4.1146.2314_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('116','3398004','2.16.840.1.113762.1.4.1146.1588_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('117','218728005','2.16.840.1.113762.1.4.1146.2311_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('118','399907009','2.16.840.1.113762.1.4.1146.1587_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('119','218728005','2.16.840.1.113762.1.4.1146.2312_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('120','399907009','2.16.840.1.113762.1.4.1146.1582_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('121','399907009','2.16.840.1.113762.1.4.1146.1581_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('122','204296002','2.16.840.1.113762.1.4.1146.2310_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('123','409617000','2.16.840.1.113762.1.4.1146.1342_20210526','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('124','406575008','2.16.840.1.113762.1.4.1146.1463_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('125','399907009','2.16.840.1.113762.1.4.1146.1584_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('126','328291000119103','2.16.840.1.113762.1.4.1146.78_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('127','86500004','2.16.840.1.113762.1.4.1146.79_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('128','86299006','2.16.840.1.113762.1.4.1146.2328_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('129','86299006','2.16.840.1.113762.1.4.1146.2329_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('130','45503006','2.16.840.1.113762.1.4.1146.2326_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('131','45503006','2.16.840.1.113762.1.4.1146.2327_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('132','58750007','2.16.840.1.113762.1.4.1146.193_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('133','75116005','2.16.840.1.113762.1.4.1146.195_20200515','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('134','75116005','2.16.840.1.113762.1.4.1146.196_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('135','14168008','2.16.840.1.113762.1.4.1146.198_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('136','62067003','2.16.840.1.113762.1.4.1146.2324_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('137','62067003','2.16.840.1.113762.1.4.1146.2325_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('138','7111000119109','2.16.840.1.113762.1.4.1146.1357_20210526','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('139','216809001','2.16.840.1.113762.1.4.1146.2201_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('140','7484005','2.16.840.1.113762.1.4.1146.2322_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('141','7111000119109','2.16.840.1.113762.1.4.1146.1356_20220601','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('142','7484005','2.16.840.1.113762.1.4.1146.2323_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('143','204339005','2.16.840.1.113762.1.4.1146.2320_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('144','388759003','2.16.840.1.113762.1.4.1146.1471_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('145','204339005','2.16.840.1.113762.1.4.1146.2321_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('146','388759003','2.16.840.1.113762.1.4.1146.1473_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('147','4374004','2.16.840.1.113762.1.4.1146.2339_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('148','4374004','2.16.840.1.113762.1.4.1146.2337_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('149','242253008','2.16.840.1.113762.1.4.1146.1008_20191227','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('150','4374004','2.16.840.1.113762.1.4.1146.2338_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('151','14168008','2.16.840.1.113762.1.4.1146.190_20200515','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('152','58750007','2.16.840.1.113762.1.4.1146.192_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('153','60826002','2.16.840.1.113762.1.4.1146.182_20200515','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('154','721763002','2.16.840.1.113762.1.4.1146.1481_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('155','75702008','2.16.840.1.113762.1.4.1146.184_20180620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('156','721763002','2.16.840.1.113762.1.4.1146.1480_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('157','75702008','2.16.840.1.113762.1.4.1146.185_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('158','38362002','2.16.840.1.113762.1.4.1146.187_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('159','38362002','2.16.840.1.113762.1.4.1146.188_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('160','840539006','2.16.840.1.113762.1.4.1146.1124_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('161','69996000','2.16.840.1.113762.1.4.1146.1245_20210121','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('162','186431008','2.16.840.1.113762.1.4.1146.1487_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('163','111323005','2.16.840.1.113762.1.4.1146.2335_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('164','840539006','2.16.840.1.113762.1.4.1146.1123_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('165','69996000','2.16.840.1.113762.1.4.1146.1244_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('166','4374004','2.16.840.1.113762.1.4.1146.2336_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('167','1237074000','2.16.840.1.113762.1.4.1146.2333_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('168','186431008','2.16.840.1.113762.1.4.1146.1488_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('169','111323005','2.16.840.1.113762.1.4.1146.2334_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('170','61959006','2.16.840.1.113762.1.4.1146.2331_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('171','1237074000','2.16.840.1.113762.1.4.1146.2332_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('172','83436008','2.16.840.1.113762.1.4.1146.1243_20210120','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('173','83436008','2.16.840.1.113762.1.4.1146.1242_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('174','61959006','2.16.840.1.113762.1.4.1146.2330_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('175','38959009','2.16.840.1.113762.1.4.1146.2108_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('176','49649001','2.16.840.1.113762.1.4.1146.1259_20210121','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('177','38959009','2.16.840.1.113762.1.4.1146.2106_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('178','36188001','2.16.840.1.113762.1.4.1146.98_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('179','38959009','2.16.840.1.113762.1.4.1146.2107_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('180','56717001','2.16.840.1.113762.1.4.1146.2349_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('181','36188001','2.16.840.1.113762.1.4.1146.99_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('182','111407006','2.16.840.1.113762.1.4.1146.92_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('183','40468003','2.16.840.1.113762.1.4.1146.94_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('184','40468003','2.16.840.1.113762.1.4.1146.95_20190605','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('185','60826002','2.16.840.1.113762.1.4.1146.181_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('186','16541001','2.16.840.1.113762.1.4.1146.172_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('187','407152001','2.16.840.1.113762.1.4.1146.293_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('188','52947006','2.16.840.1.113762.1.4.1146.1371_20210526','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('189','16541001','2.16.840.1.113762.1.4.1146.173_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('190','52947006','2.16.840.1.113762.1.4.1146.1370_20210526','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('191','417093003','2.16.840.1.113762.1.4.1146.175_20220601','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('192','417093003','2.16.840.1.113762.1.4.1146.176_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('193','417192005','2.16.840.1.113762.1.4.1146.178_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('194','417192005','2.16.840.1.113762.1.4.1146.179_20200515','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('195','38959009','2.16.840.1.113762.1.4.1146.2105_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('196','85904008','2.16.840.1.113762.1.4.1146.1016_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('197','11999007','2.16.840.1.113762.1.4.1146.1258_20210120','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('198','269275003','2.16.840.1.113762.1.4.1146.1379_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('199','85904008','2.16.840.1.113762.1.4.1146.1015_20190606','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('200','406604002','2.16.840.1.113762.1.4.1146.1136_20200515','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('201','14189004','2.16.840.1.113762.1.4.1146.2342_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('202','4834000','2.16.840.1.113762.1.4.1146.1012_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('203','4374004','2.16.840.1.113762.1.4.1146.2340_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('204','4834000','2.16.840.1.113762.1.4.1146.1011_20190606','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('205','14189004','2.16.840.1.113762.1.4.1146.2341_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('206','302231008','2.16.840.1.113762.1.4.1146.47_20220603','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('207','302231008','2.16.840.1.113762.1.4.1146.48_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('208','66948001','2.16.840.1.113762.1.4.1146.2119_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('209','87979003','2.16.840.1.113762.1.4.1146.2117_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('210','15628003','2.16.840.1.113762.1.4.1146.43_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('211','87979003','2.16.840.1.113762.1.4.1146.2118_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('212','15628003','2.16.840.1.113762.1.4.1146.44_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('213','328291000119103','2.16.840.1.113762.1.4.1146.40_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('214','407152001','2.16.840.1.113762.1.4.1146.291_20220603','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('215','269275003','2.16.840.1.113762.1.4.1146.1380_20210526','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('216','398557001','2.16.840.1.113762.1.4.1146.161_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('217','404681006','2.16.840.1.113762.1.4.1146.1140_20200515','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('218','269275003','2.16.840.1.113762.1.4.1146.1382_20210526','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('219','49649001','2.16.840.1.113762.1.4.1146.1260_20210121','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('220','269275003','2.16.840.1.113762.1.4.1146.1381_20210526','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('221','63650001','2.16.840.1.113762.1.4.1146.163_20220603','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('222','63650001','2.16.840.1.113762.1.4.1146.164_20220603','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('223','45170000','2.16.840.1.113762.1.4.1146.285_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('224','17383000','2.16.840.1.113762.1.4.1146.288_20200515','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('225','57607007','2.16.840.1.113762.1.4.1146.1388_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('226','80281008','2.16.840.1.113762.1.4.1146.2115_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('227','17383000','2.16.840.1.113762.1.4.1146.289_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('228','897031002','2.16.840.1.113762.1.4.1146.1387_20210522','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('229','80281008','2.16.840.1.113762.1.4.1146.2116_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('230','11999007','2.16.840.1.113762.1.4.1146.1269_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('231','89369001','2.16.840.1.113762.1.4.1146.2113_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('232','59527008','2.16.840.1.113762.1.4.1146.2234_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('233','80281008','2.16.840.1.113762.1.4.1146.2114_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('234','414015000','2.16.840.1.113762.1.4.1146.1384_20221022','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('235','359814004','2.16.840.1.113762.1.4.1146.1384_20221022','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('236','89369001','2.16.840.1.113762.1.4.1146.2111_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('237','59527008','2.16.840.1.113762.1.4.1146.2232_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('238','89369001','2.16.840.1.113762.1.4.1146.2112_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('239','59527008','2.16.840.1.113762.1.4.1146.2233_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('240','115635005','2.16.840.1.113762.1.4.1146.1264_20210121','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('241','49649001','2.16.840.1.113762.1.4.1146.1264_20210121','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('242','414015000','2.16.840.1.113762.1.4.1146.1385_20210526','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('243','359814004','2.16.840.1.113762.1.4.1146.1385_20210526','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('244','89369001','2.16.840.1.113762.1.4.1146.2110_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('245','59527008','2.16.840.1.113762.1.4.1146.2231_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('246','27836007','2.16.840.1.113762.1.4.1146.35_20190608','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('247','27836007','2.16.840.1.113762.1.4.1146.36_20190608','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('248','26726000','2.16.840.1.113762.1.4.1146.280_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('249','414015000','2.16.840.1.113762.1.4.1146.150_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('250','67924001','2.16.840.1.113762.1.4.1146.150_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('251','77377001','2.16.840.1.113762.1.4.1146.271_20220119','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('252','266143009','2.16.840.1.113762.1.4.1146.392_20191227','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('253','57607007','2.16.840.1.113762.1.4.1146.1393_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('254','414015000','2.16.840.1.113762.1.4.1146.151_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('255','67924001','2.16.840.1.113762.1.4.1146.151_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('256','266143009','2.16.840.1.113762.1.4.1146.393_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('257','77377001','2.16.840.1.113762.1.4.1146.273_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('258','551611000124101','2.16.840.1.113762.1.4.1146.153_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('259','50711007','2.16.840.1.113762.1.4.1146.153_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('260','76272004','2.16.840.1.113762.1.4.1146.395_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('261','551611000124101','2.16.840.1.113762.1.4.1146.154_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('262','50711007','2.16.840.1.113762.1.4.1146.154_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('263','76272004','2.16.840.1.113762.1.4.1146.396_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('264','398557001','2.16.840.1.113762.1.4.1146.156_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('265','41040004','2.16.840.1.113762.1.4.1146.2126_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('266','60498001','2.16.840.1.113762.1.4.1146.2368_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('267','61750000','2.16.840.1.113762.1.4.1146.2006_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('268','41040004','2.16.840.1.113762.1.4.1146.2127_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('269','26726000','2.16.840.1.113762.1.4.1146.279_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('270','47523006','2.16.840.1.113762.1.4.1146.1159_20200515','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('271','41040004','2.16.840.1.113762.1.4.1146.2124_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('272','41040004','2.16.840.1.113762.1.4.1146.2125_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('273','12962009','2.16.840.1.113762.1.4.1146.1274_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('274','67531005','2.16.840.1.113762.1.4.1146.2122_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('275','57607007','2.16.840.1.113762.1.4.1146.1394_20220603','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('276','67531005','2.16.840.1.113762.1.4.1146.2123_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('277','328291000119103','2.16.840.1.113762.1.4.1146.39_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('278','6452009','2.16.840.1.113762.1.4.1146.1397_20210526','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('279','66948001','2.16.840.1.113762.1.4.1146.2120_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('280','12962009','2.16.840.1.113762.1.4.1146.1275_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('281','6452009','2.16.840.1.113762.1.4.1146.1396_20210526','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('282','721781004','2.16.840.1.113762.1.4.1146.2000_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('283','67531005','2.16.840.1.113762.1.4.1146.2121_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('284','416925005','2.16.840.1.113762.1.4.1146.1160_20200516','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('285','186788009','2.16.840.1.113762.1.4.1146.260_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('286','418182000','2.16.840.1.113762.1.4.1146.1162_20200515','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('287','428175000','2.16.840.1.113762.1.4.1146.1283_20210120','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('288','406583002','2.16.840.1.113762.1.4.1146.140_20191227','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('289','111864006','2.16.840.1.113762.1.4.1146.1161_20200515','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('290','60498001','2.16.840.1.113762.1.4.1146.141_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('291','66071002','2.16.840.1.113762.1.4.1146.141_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('292','240523007','2.16.840.1.113762.1.4.1146.264_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('293','240523007','2.16.840.1.113762.1.4.1146.265_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('294','38907003','2.16.840.1.113762.1.4.1146.145_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('295','49049000','2.16.840.1.113762.1.4.1146.1047_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('296','38907003','2.16.840.1.113762.1.4.1146.146_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('297','359814004','2.16.840.1.113762.1.4.1146.2016_20221022','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('298','20484008','2.16.840.1.113762.1.4.1146.2137_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('299','47523006','2.16.840.1.113762.1.4.1146.1167_20200515','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('300','20484008','2.16.840.1.113762.1.4.1146.2138_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('301','414819007','2.16.840.1.113762.1.4.1146.2259_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('302','49049000','2.16.840.1.113762.1.4.1146.1049_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('303','20484008','2.16.840.1.113762.1.4.1146.2135_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('304','712662001','2.16.840.1.113762.1.4.1146.2256_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('305','49049000','2.16.840.1.113762.1.4.1146.1048_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('306','359814004','2.16.840.1.113762.1.4.1146.2015_20221022','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('307','20484008','2.16.840.1.113762.1.4.1146.2136_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('308','111864006','2.16.840.1.113762.1.4.1146.1164_20200515','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('309','20484008','2.16.840.1.113762.1.4.1146.2133_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('310','418182000','2.16.840.1.113762.1.4.1146.1163_20200515','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('311','428175000','2.16.840.1.113762.1.4.1146.1284_20210120','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('312','20484008','2.16.840.1.113762.1.4.1146.2134_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('313','712662001','2.16.840.1.113762.1.4.1146.2255_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('314','734350003','2.16.840.1.113762.1.4.1146.2255_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('315','416707008','2.16.840.1.113762.1.4.1146.1166_20200515','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('316','428111003','2.16.840.1.113762.1.4.1146.1287_20210120','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('317','72951007','2.16.840.1.113762.1.4.1146.2131_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('318','416925005','2.16.840.1.113762.1.4.1146.1165_20200516','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('319','72951007','2.16.840.1.113762.1.4.1146.2132_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('320','240589008','2.16.840.1.113762.1.4.1146.52_20220602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('321','240589008','2.16.840.1.113762.1.4.1146.53_20220602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('322','14189004','2.16.840.1.113762.1.4.1146.51_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('323','49049000','2.16.840.1.113762.1.4.1146.1050_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('324','190687004','2.16.840.1.113762.1.4.1146.2140_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('325','428111003','2.16.840.1.113762.1.4.1146.1291_20210120','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('326','190687004','2.16.840.1.113762.1.4.1146.2141_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('327','49049000','2.16.840.1.113762.1.4.1146.1051_20190608','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('328','661761000124109','2.16.840.1.113762.1.4.1146.130_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('329','6142004','2.16.840.1.113762.1.4.1146.130_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('330','43692000','2.16.840.1.113762.1.4.1146.130_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('331','414819007','2.16.840.1.113762.1.4.1146.2260_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('332','19265001','2.16.840.1.113762.1.4.1146.251_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('333','60498001','2.16.840.1.113762.1.4.1146.131_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('334','66071002','2.16.840.1.113762.1.4.1146.131_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('335','19265001','2.16.840.1.113762.1.4.1146.252_20220603','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('336','661761000124109','2.16.840.1.113762.1.4.1146.133_20220603','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('337','6142004','2.16.840.1.113762.1.4.1146.133_20220603','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('338','43692000','2.16.840.1.113762.1.4.1146.133_20220603','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('339','60498001','2.16.840.1.113762.1.4.1146.135_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('340','66071002','2.16.840.1.113762.1.4.1146.135_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('341','266123003','2.16.840.1.113762.1.4.1146.2027_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('342','67341007','2.16.840.1.113762.1.4.1146.2148_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('343','21061004','2.16.840.1.113762.1.4.1146.256_20180620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('344','406617004','2.16.840.1.113762.1.4.1146.136_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('345','266123003','2.16.840.1.113762.1.4.1146.2028_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('346','21061004','2.16.840.1.113762.1.4.1146.257_20210526','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('347','406617004','2.16.840.1.113762.1.4.1146.137_20191227','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('348','67341007','2.16.840.1.113762.1.4.1146.2147_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('349','186788009','2.16.840.1.113762.1.4.1146.259_20210527','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('350','49049000','2.16.840.1.113762.1.4.1146.1054_20190608','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('351','406583002','2.16.840.1.113762.1.4.1146.139_20210527','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('352','74225001','2.16.840.1.113762.1.4.1146.2023_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('353','266123003','2.16.840.1.113762.1.4.1146.2024_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('354','49649001','2.16.840.1.113762.1.4.1146.1506_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('355','233733000','2.16.840.1.113762.1.4.1146.1748_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('356','49649001','2.16.840.1.113762.1.4.1146.1505_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('357','767146004','2.16.840.1.113762.1.4.1146.1508_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('358','767146004','2.16.840.1.113762.1.4.1146.1507_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('359','233733000','2.16.840.1.113762.1.4.1146.1749_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('360','18624000','2.16.840.1.113762.1.4.1146.1743_20220602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('361','76172008','2.16.840.1.113762.1.4.1146.1864_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('362','76172008','2.16.840.1.113762.1.4.1146.1865_20220603','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('363','82271004','2.16.840.1.113762.1.4.1146.1740_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('364','700372006','2.16.840.1.113762.1.4.1146.1862_20220603','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('365','700372006','2.16.840.1.113762.1.4.1146.1863_20220603','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('366','82271004','2.16.840.1.113762.1.4.1146.1742_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('367','418182000','2.16.840.1.113762.1.4.1146.1981_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('368','82271004','2.16.840.1.113762.1.4.1146.1741_20220602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('369','418182000','2.16.840.1.113762.1.4.1146.1980_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('370','22607003','2.16.840.1.113762.1.4.1146.1759_20220602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('371','42386007','2.16.840.1.113762.1.4.1146.1516_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('372','240613006','2.16.840.1.113762.1.4.1146.1637_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('373','22607003','2.16.840.1.113762.1.4.1146.1758_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('374','433202001','2.16.840.1.113762.1.4.1146.1879_20220603','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('375','61750000','2.16.840.1.113762.1.4.1146.1998_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('376','433202001','2.16.840.1.113762.1.4.1146.1878_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('377','721781004','2.16.840.1.113762.1.4.1146.1999_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('378','42386007','2.16.840.1.113762.1.4.1146.1515_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('379','767299002','2.16.840.1.113762.1.4.1146.1514_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('380','419488004','2.16.840.1.113762.1.4.1146.1751_20220602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('381','59051007','2.16.840.1.113762.1.4.1146.1873_20220603','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('382','419488004','2.16.840.1.113762.1.4.1146.1750_20220602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('383','59051007','2.16.840.1.113762.1.4.1146.1871_20220603','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('384','59051007','2.16.840.1.113762.1.4.1146.1872_20220603','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('385','59051007','2.16.840.1.113762.1.4.1146.1870_20220603','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('386','363346000','2.16.840.1.113762.1.4.1146.1407_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('387','363346000','2.16.840.1.113762.1.4.1146.1406_20210526','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('388','363346000','2.16.840.1.113762.1.4.1146.1403_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('389','4639008','2.16.840.1.113762.1.4.1146.1645_20220119','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('390','18690003','2.16.840.1.113762.1.4.1146.1766_20220602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('391','363346000','2.16.840.1.113762.1.4.1146.1402_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('392','4639008','2.16.840.1.113762.1.4.1146.1644_20220119','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('393','18690003','2.16.840.1.113762.1.4.1146.1765_20220602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('394','363346000','2.16.840.1.113762.1.4.1146.1405_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('395','363346000','2.16.840.1.113762.1.4.1146.1404_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('396','767299002','2.16.840.1.113762.1.4.1146.1525_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('397','85761009','2.16.840.1.113762.1.4.1146.1762_20220602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('398','91576008','2.16.840.1.113762.1.4.1146.1884_20220603','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('399','240613006','2.16.840.1.113762.1.4.1146.1640_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('400','22607003','2.16.840.1.113762.1.4.1146.1761_20220602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('401','840539006','2.16.840.1.113762.1.4.1146.1764_20220329','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('402','85761009','2.16.840.1.113762.1.4.1146.1763_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('403','91576008','2.16.840.1.113762.1.4.1146.1883_20220603','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('404','22607003','2.16.840.1.113762.1.4.1146.1760_20220602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('405','788781001','2.16.840.1.113762.1.4.1146.1418_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('406','1149222004','2.16.840.1.113762.1.4.1146.1538_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('407','75053002','2.16.840.1.113762.1.4.1146.1659_20220119','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('408','788781001','2.16.840.1.113762.1.4.1146.1419_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('409','1149222004','2.16.840.1.113762.1.4.1146.1535_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('410','406597005','2.16.840.1.113762.1.4.1146.1656_20220119','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('411','1149222004','2.16.840.1.113762.1.4.1146.1534_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('412','34298002','2.16.840.1.113762.1.4.1146.1776_20220602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('413','75053002','2.16.840.1.113762.1.4.1146.1658_20220119','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('414','33839006','2.16.840.1.113762.1.4.1146.1779_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('415','1149222004','2.16.840.1.113762.1.4.1146.1536_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('416','33839006','2.16.840.1.113762.1.4.1146.1778_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('417','95891005','2.16.840.1.113762.1.4.1146.1531_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('418','77506005','2.16.840.1.113762.1.4.1146.1652_20220115','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('419','736152001','2.16.840.1.113762.1.4.1146.1773_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('420','77506005','2.16.840.1.113762.1.4.1146.1651_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('421','1149222004','2.16.840.1.113762.1.4.1146.1533_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('422','34298002','2.16.840.1.113762.1.4.1146.1775_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('423','187192000','2.16.840.1.113762.1.4.1146.1893_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('424','1149222004','2.16.840.1.113762.1.4.1146.1532_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('425','736152001','2.16.840.1.113762.1.4.1146.1774_20220602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('426','187192000','2.16.840.1.113762.1.4.1146.1894_20220603','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('427','187192000','2.16.840.1.113762.1.4.1146.1891_20220603','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('428','187192000','2.16.840.1.113762.1.4.1146.1892_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('429','897031002','2.16.840.1.113762.1.4.1146.1429_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('430','6415009','2.16.840.1.113762.1.4.1146.1309_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('431','55735004','2.16.840.1.113762.1.4.1146.1309_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('432','111811007','2.16.840.1.113762.1.4.1146.1303_20210121','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('433','1149222004','2.16.840.1.113762.1.4.1146.1545_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('434','28867007','2.16.840.1.113762.1.4.1146.1789_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('435','1149222004','2.16.840.1.113762.1.4.1146.1542_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('436','1149222004','2.16.840.1.113762.1.4.1146.1541_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('437','1149222004','2.16.840.1.113762.1.4.1146.1544_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('438','111811007','2.16.840.1.113762.1.4.1146.1301_20210121','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('439','1149222004','2.16.840.1.113762.1.4.1146.1543_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('440','1149222004','2.16.840.1.113762.1.4.1146.1540_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('441','895448002','2.16.840.1.113762.1.4.1146.1318_20210528','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('442','7180009','2.16.840.1.113762.1.4.1146.1557_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('443','1731000119106','2.16.840.1.113762.1.4.1146.1799_20220601','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('444','7180009','2.16.840.1.113762.1.4.1146.1556_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('445','1731000119106','2.16.840.1.113762.1.4.1146.1798_20220601','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('446','7180009','2.16.840.1.113762.1.4.1146.1558_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('447','7180009','2.16.840.1.113762.1.4.1146.1553_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('448','6415009','2.16.840.1.113762.1.4.1146.1310_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('449','55735004','2.16.840.1.113762.1.4.1146.1310_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('450','414488002','2.16.840.1.113762.1.4.1146.1431_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('451','7180009','2.16.840.1.113762.1.4.1146.1552_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('452','7180009','2.16.840.1.113762.1.4.1146.1555_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('453','7180009','2.16.840.1.113762.1.4.1146.1554_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('454','715174007','2.16.840.1.113762.1.4.1146.1670_20220602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('455','28867007','2.16.840.1.113762.1.4.1146.1790_20220602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('456','414488002','2.16.840.1.113762.1.4.1146.1430_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('457','7180009','2.16.840.1.113762.1.4.1146.1551_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('458','712662001','2.16.840.1.113762.1.4.1146.1672_20220602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('459','406602003','2.16.840.1.113762.1.4.1146.1447_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('460','283545005','2.16.840.1.113762.1.4.1146.1688_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('461','712662001','2.16.840.1.113762.1.4.1146.1207_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('462','406602003','2.16.840.1.113762.1.4.1146.1449_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('463','406602003','2.16.840.1.113762.1.4.1146.1448_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('464','74351001','2.16.840.1.113762.1.4.1146.1684_20220602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('465','895448002','2.16.840.1.113762.1.4.1146.1203_20210528','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('466','283545005','2.16.840.1.113762.1.4.1146.1687_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('467','74351001','2.16.840.1.113762.1.4.1146.1683_20220602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('468','397575003','2.16.840.1.113762.1.4.1146.1682_20220602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('469','204296002','2.16.840.1.113762.1.4.1146.2308_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('470','204296002','2.16.840.1.113762.1.4.1146.2309_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('471','792004','2.16.840.1.113762.1.4.1146.1337_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('472','20484008','2.16.840.1.113762.1.4.1146.1337_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('473','865929003','2.16.840.1.113762.1.4.1146.1579_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('474','792004','2.16.840.1.113762.1.4.1146.1336_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('475','20484008','2.16.840.1.113762.1.4.1146.1336_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('476','45170000','2.16.840.1.113762.1.4.1146.1699_20220602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('477','204296002','2.16.840.1.113762.1.4.1146.2307_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('478','792004','2.16.840.1.113762.1.4.1146.1339_20210526','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('479','20484008','2.16.840.1.113762.1.4.1146.1339_20210526','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('480','792004','2.16.840.1.113762.1.4.1146.1338_20220603','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('481','20484008','2.16.840.1.113762.1.4.1146.1338_20220603','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('482','1119306006','2.16.840.1.113762.1.4.1146.1696_20220602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('483','895448002','2.16.840.1.113762.1.4.1146.1696_20220602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('484','406612005','2.16.840.1.113762.1.4.1146.1574_20220119','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('485','1119306006','2.16.840.1.113762.1.4.1146.1695_20220602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('486','895448002','2.16.840.1.113762.1.4.1146.1695_20220602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('487','44301001','2.16.840.1.113762.1.4.1146.1697_20220602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('488','406602003','2.16.840.1.113762.1.4.1146.1450_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('489','406614006','2.16.840.1.113762.1.4.1146.1571_20220119','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('490','840539006','2.16.840.1.113762.1.4.1146.1331_20210528','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('491','406612005','2.16.840.1.113762.1.4.1146.1573_20220119','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('492','406614006','2.16.840.1.113762.1.4.1146.1572_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('493','414015000','2.16.840.1.113762.1.4.1146.1903_20220603','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('494','414015000','2.16.840.1.113762.1.4.1146.1904_20220603','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('495','414015000','2.16.840.1.113762.1.4.1146.1902_20220603','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('496','414015000','2.16.840.1.113762.1.4.1146.1905_20220603','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('497','15628003','2.16.840.1.113762.1.4.1146.640_20220601','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('498','15628003','2.16.840.1.113762.1.4.1146.641_20190605','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('499','15628003','2.16.840.1.113762.1.4.1146.642_20190605','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('500','7180009','2.16.840.1.113762.1.4.1146.765_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('501','45170000','2.16.840.1.113762.1.4.1146.766_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('502','359761005','2.16.840.1.113762.1.4.1146.404_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('503','95821001','2.16.840.1.113762.1.4.1146.767_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('504','359761005','2.16.840.1.113762.1.4.1146.405_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('505','36921006','2.16.840.1.113762.1.4.1146.1914_20220603','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('506','15628003','2.16.840.1.113762.1.4.1146.639_20210527','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('507','240589008','2.16.840.1.113762.1.4.1146.632_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('508','240589008','2.16.840.1.113762.1.4.1146.633_20220602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('509','240589008','2.16.840.1.113762.1.4.1146.634_20190605','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('510','651000146102','2.16.840.1.113762.1.4.1146.876_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('511','240589008','2.16.840.1.113762.1.4.1146.635_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('512','10301003','2.16.840.1.113762.1.4.1146.877_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('513','29422001','2.16.840.1.113762.1.4.1146.1805_20220601','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('514','18504008','2.16.840.1.113762.1.4.1146.507_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('515','29422001','2.16.840.1.113762.1.4.1146.1808_20220601','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('516','29422001','2.16.840.1.113762.1.4.1146.1809_20220601','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('517','29422001','2.16.840.1.113762.1.4.1146.1806_20220601','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('518','29422001','2.16.840.1.113762.1.4.1146.1807_20220601','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('519','27836007','2.16.840.1.113762.1.4.1146.620_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('520','27836007','2.16.840.1.113762.1.4.1146.621_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('521','240451000','2.16.840.1.113762.1.4.1146.984_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('522','18504008','2.16.840.1.113762.1.4.1146.505_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('523','1214006','2.16.840.1.113762.1.4.1146.1936_20230124','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('524','14683004','2.16.840.1.113762.1.4.1146.1816_20220603','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('525','128869009','2.16.840.1.113762.1.4.1146.1813_20220601','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('526','1214006','2.16.840.1.113762.1.4.1146.1935_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('527','128869009','2.16.840.1.113762.1.4.1146.1812_20220601','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('528','29422001','2.16.840.1.113762.1.4.1146.1810_20220601','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('529','14683004','2.16.840.1.113762.1.4.1146.1817_20220603','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('530','240589008','2.16.840.1.113762.1.4.1146.610_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('531','398447004','2.16.840.1.113762.1.4.1146.853_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('532','60498001','2.16.840.1.113762.1.4.1146.733_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('533','60498001','2.16.840.1.113762.1.4.1146.734_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('534','66071002','2.16.840.1.113762.1.4.1146.734_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('535','58718002','2.16.840.1.113762.1.4.1146.1826_20220603','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('536','404237007','2.16.840.1.113762.1.4.1146.1948_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('537','45170000','2.16.840.1.113762.1.4.1146.1706_20220602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('538','45170000','2.16.840.1.113762.1.4.1146.1705_20220602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('539','58718002','2.16.840.1.113762.1.4.1146.1825_20220603','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('540','45170000','2.16.840.1.113762.1.4.1146.1700_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('541','41723001','2.16.840.1.113762.1.4.1146.1943_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('542','240589008','2.16.840.1.113762.1.4.1146.609_20191227','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('543','45170000','2.16.840.1.113762.1.4.1146.1702_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('544','45170000','2.16.840.1.113762.1.4.1146.1701_20220602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('545','45170000','2.16.840.1.113762.1.4.1146.1708_20220602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('546','45170000','2.16.840.1.113762.1.4.1146.1707_20220602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('547','61094002','2.16.840.1.113762.1.4.1146.1949_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('548','40610006','2.16.840.1.113762.1.4.1146.963_20220603','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('549','414488002','2.16.840.1.113762.1.4.1146.725_20180620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('550','407152001','2.16.840.1.113762.1.4.1146.836_20230124','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('551','212962007','2.16.840.1.113762.1.4.1146.1717_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('552','212962007','2.16.840.1.113762.1.4.1146.1716_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('553','407153006','2.16.840.1.113762.1.4.1146.1719_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('554','407153006','2.16.840.1.113762.1.4.1146.1718_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('555','404236003','2.16.840.1.113762.1.4.1146.1950_20230124','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('556','240507007','2.16.840.1.113762.1.4.1146.1951_20230124','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('557','407152001','2.16.840.1.113762.1.4.1146.835_20230124','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('558','293104008','2.16.840.1.113762.1.4.1146.1605_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('559','707341005','2.16.840.1.113762.1.4.1146.1969_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('560','293104008','2.16.840.1.113762.1.4.1146.1604_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('561','409636005','2.16.840.1.113762.1.4.1146.1607_20221022','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('562','414015000','2.16.840.1.113762.1.4.1146.1607_20221022','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('563','65154009','2.16.840.1.113762.1.4.1146.1728_20220602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('564','1149222004','2.16.840.1.113762.1.4.1146.1967_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('565','409636005','2.16.840.1.113762.1.4.1146.1606_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('566','414015000','2.16.840.1.113762.1.4.1146.1606_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('567','707341005','2.16.840.1.113762.1.4.1146.1968_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('568','80612004','2.16.840.1.113762.1.4.1146.1844_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('569','53648006','2.16.840.1.113762.1.4.1146.1721_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('570','80612004','2.16.840.1.113762.1.4.1146.1845_20220603','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('571','1149222004','2.16.840.1.113762.1.4.1146.1966_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('572','71695001','2.16.840.1.113762.1.4.1146.1842_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('573','551611000124101','2.16.840.1.113762.1.4.1146.1963_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('574','71695001','2.16.840.1.113762.1.4.1146.1843_20220603','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('575','65154009','2.16.840.1.113762.1.4.1146.1729_20220602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('576','53648006','2.16.840.1.113762.1.4.1146.1720_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('577','10301003','2.16.840.1.113762.1.4.1146.940_20200515','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('578','60498001','2.16.840.1.113762.1.4.1146.701_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('579','66071002','2.16.840.1.113762.1.4.1146.701_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('580','29422001','2.16.840.1.113762.1.4.1146.822_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('581','805002','2.16.840.1.113762.1.4.1146.822_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('582','29422001','2.16.840.1.113762.1.4.1146.823_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('583','805002','2.16.840.1.113762.1.4.1146.823_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('584','216809001','2.16.840.1.113762.1.4.1146.1737_20220602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('585','82271004','2.16.840.1.113762.1.4.1146.1739_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('586','216809001','2.16.840.1.113762.1.4.1146.1738_20220602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('587','240820001','2.16.840.1.113762.1.4.1146.1855_20220603','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('588','65154009','2.16.840.1.113762.1.4.1146.1732_20220602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('589','240820001','2.16.840.1.113762.1.4.1146.1856_20220603','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('590','17383000','2.16.840.1.113762.1.4.1146.819_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('591','240820001','2.16.840.1.113762.1.4.1146.1853_20220603','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('592','93614002','2.16.840.1.113762.1.4.1146.1974_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('593','240820001','2.16.840.1.113762.1.4.1146.1854_20220603','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('594','240820001','2.16.840.1.113762.1.4.1146.1852_20220603','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('595','65154009','2.16.840.1.113762.1.4.1146.1731_20220602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('596','38362002','2.16.840.1.113762.1.4.1146.528_20200516','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('597','60498001','2.16.840.1.113762.1.4.1146.408_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('598','66071002','2.16.840.1.113762.1.4.1146.408_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('599','551611000124101','2.16.840.1.113762.1.4.1146.409_20210527','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('600','50711007','2.16.840.1.113762.1.4.1146.409_20210527','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('601','406575008','2.16.840.1.113762.1.4.1146.1469_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('602','76172008','2.16.840.1.113762.1.4.1146.1866_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('603','406575008','2.16.840.1.113762.1.4.1146.1468_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('604','18624000','2.16.840.1.113762.1.4.1146.1745_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('605','409498004','2.16.840.1.113762.1.4.1146.482_20200513','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('606','13906002','2.16.840.1.113762.1.4.1146.882_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('607','240626005','2.16.840.1.113762.1.4.1146.882_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('608','266123003','2.16.840.1.113762.1.4.1146.2038_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('609','406575008','2.16.840.1.113762.1.4.1146.1464_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('610','409617000','2.16.840.1.113762.1.4.1146.1346_20210526','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('611','266123003','2.16.840.1.113762.1.4.1146.2036_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('612','240820001','2.16.840.1.113762.1.4.1146.1861_20220603','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('613','418182000','2.16.840.1.113762.1.4.1146.1982_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('614','266123003','2.16.840.1.113762.1.4.1146.2037_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('615','42386007','2.16.840.1.113762.1.4.1146.1517_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('616','240613006','2.16.840.1.113762.1.4.1146.1638_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('617','36921006','2.16.840.1.113762.1.4.1146.1915_20220603','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('618','42386007','2.16.840.1.113762.1.4.1146.1519_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('619','42386007','2.16.840.1.113762.1.4.1146.1518_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('620','414015000','2.16.840.1.113762.1.4.1146.1910_20220603','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('621','359814004','2.16.840.1.113762.1.4.1146.1910_20220603','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('622','7111000119109','2.16.840.1.113762.1.4.1146.1358_20210526','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('623','419488004','2.16.840.1.113762.1.4.1146.1754_20220602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('624','414015000','2.16.840.1.113762.1.4.1146.1911_20220603','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('625','47523006','2.16.840.1.113762.1.4.1146.1193_20200515','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('626','416707008','2.16.840.1.113762.1.4.1146.1192_20200515','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('627','406575008','2.16.840.1.113762.1.4.1146.1470_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('628','3928002','2.16.840.1.113762.1.4.1146.591_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('629','418182000','2.16.840.1.113762.1.4.1146.1194_20200515','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('630','77377001','2.16.840.1.113762.1.4.1146.473_20200515','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('631','416925005','2.16.840.1.113762.1.4.1146.1191_20200516','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('632','111864006','2.16.840.1.113762.1.4.1146.1190_20200515','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('633','59051007','2.16.840.1.113762.1.4.1146.1874_20220603','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('634','86406008','2.16.840.1.113762.1.4.1146.356_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('635','21061004','2.16.840.1.113762.1.4.1146.477_20180620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('636','302231008','2.16.840.1.113762.1.4.1146.631_20210527','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('637','19265001','2.16.840.1.113762.1.4.1146.599_20200515','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('638','398447004','2.16.840.1.113762.1.4.1146.875_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('639','388759003','2.16.840.1.113762.1.4.1146.1472_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('640','240589008','2.16.840.1.113762.1.4.1146.999_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('641','242253008','2.16.840.1.113762.1.4.1146.1077_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('642','75702008','2.16.840.1.113762.1.4.1146.516_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('643','359761005','2.16.840.1.113762.1.4.1146.905_20200515','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('644','1731000119106','2.16.840.1.113762.1.4.1146.1800_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('645','4639008','2.16.840.1.113762.1.4.1146.1646_20220119','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('646','40610006','2.16.840.1.113762.1.4.1146.580_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('647','661761000124109','2.16.840.1.113762.1.4.1146.340_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('648','6142004','2.16.840.1.113762.1.4.1146.340_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('649','719590007','2.16.840.1.113762.1.4.1146.340_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('650','43692000','2.16.840.1.113762.1.4.1146.340_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('651','86500004','2.16.840.1.113762.1.4.1146.341_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('652','27836007','2.16.840.1.113762.1.4.1146.100_20210527','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('653','26726000','2.16.840.1.113762.1.4.1146.463_20220119','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('654','240523007','2.16.840.1.113762.1.4.1146.586_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('655','83436008','2.16.840.1.113762.1.4.1146.1247_20210120','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('656','186431008','2.16.840.1.113762.1.4.1146.1489_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('657','715174007','2.16.840.1.113762.1.4.1146.1882_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('658','712662001','2.16.840.1.113762.1.4.1146.1882_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('659','726492000','2.16.840.1.113762.1.4.1146.1882_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('660','734350003','2.16.840.1.113762.1.4.1146.1882_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('661','444664004','2.16.840.1.113762.1.4.1146.2212_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('662','276197005','2.16.840.1.113762.1.4.1146.346_20210526','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('663','61462000','2.16.840.1.113762.1.4.1146.467_20200515','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('664','69996000','2.16.840.1.113762.1.4.1146.1246_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('665','40468003','2.16.840.1.113762.1.4.1146.348_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('666','186788009','2.16.840.1.113762.1.4.1146.502_20200515','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('667','721763002','2.16.840.1.113762.1.4.1146.1485_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('668','414488002','2.16.840.1.113762.1.4.1146.979_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('669','398565003','2.16.840.1.113762.1.4.1146.979_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('670','128869009','2.16.840.1.113762.1.4.1146.1814_20220601','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('671','302231008','2.16.840.1.113762.1.4.1146.96_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('672','77506005','2.16.840.1.113762.1.4.1146.1655_20220115','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('673','406597005','2.16.840.1.113762.1.4.1146.1657_20220119','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('674','186431008','2.16.840.1.113762.1.4.1146.1490_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('675','14189004','2.16.840.1.113762.1.4.1146.292_20191227','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('676','74942003','2.16.840.1.113762.1.4.1146.2060_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('677','58750007','2.16.840.1.113762.1.4.1146.573_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('678','85904008','2.16.840.1.113762.1.4.1146.1014_20210527','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('679','187192000','2.16.840.1.113762.1.4.1146.1895_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('680','36188001','2.16.840.1.113762.1.4.1146.333_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('681','23502006','2.16.840.1.113762.1.4.1146.850_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('682','4834000','2.16.840.1.113762.1.4.1146.1013_20210527','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('683','36188001','2.16.840.1.113762.1.4.1146.334_20190605','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('684','23502006','2.16.840.1.113762.1.4.1146.851_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('685','406604002','2.16.840.1.113762.1.4.1146.1137_20200515','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('686','10301003','2.16.840.1.113762.1.4.1146.852_20200515','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('687','59527008','2.16.840.1.113762.1.4.1146.2221_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('688','52947006','2.16.840.1.113762.1.4.1146.1372_20210526','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('689','61750000','2.16.840.1.113762.1.4.1146.2068_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('690','187151009','2.16.840.1.113762.1.4.1146.2066_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('691','6415009','2.16.840.1.113762.1.4.1146.1308_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('692','55735004','2.16.840.1.113762.1.4.1146.1308_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('693','41723001','2.16.840.1.113762.1.4.1146.1947_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('694','11999007','2.16.840.1.113762.1.4.1146.606_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('695','56717001','2.16.840.1.113762.1.4.1146.606_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('696','4241002','2.16.840.1.113762.1.4.1146.1029_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('697','1149222004','2.16.840.1.113762.1.4.1146.1546_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('698','14683004','2.16.840.1.113762.1.4.1146.1822_20220603','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('699','14683004','2.16.840.1.113762.1.4.1146.1823_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('700','1214006','2.16.840.1.113762.1.4.1146.1941_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('701','1214006','2.16.840.1.113762.1.4.1146.1942_20230124','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('702','240589008','2.16.840.1.113762.1.4.1146.170_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('703','49649001','2.16.840.1.113762.1.4.1146.1261_20210121','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('704','38907003','2.16.840.1.113762.1.4.1146.287_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('705','33839006','2.16.840.1.113762.1.4.1146.1784_20220602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('706','15628003','2.16.840.1.113762.1.4.1146.169_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('707','91576008','2.16.840.1.113762.1.4.1146.1783_20220603','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('708','33839006','2.16.840.1.113762.1.4.1146.1783_20220603','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('709','75116005','2.16.840.1.113762.1.4.1146.444_20220119','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('710','417093003','2.16.840.1.113762.1.4.1146.565_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('711','111811007','2.16.840.1.113762.1.4.1146.1302_20210121','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('712','266143009','2.16.840.1.113762.1.4.1146.568_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('713','404681006','2.16.840.1.113762.1.4.1146.1141_20200515','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('714','414015000','2.16.840.1.113762.1.4.1146.1386_20221022','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('715','359814004','2.16.840.1.113762.1.4.1146.1386_20221022','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('716','651000146102','2.16.840.1.113762.1.4.1146.845_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('717','840539006','2.16.840.1.113762.1.4.1146.1143_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('718','895448002','2.16.840.1.113762.1.4.1146.1143_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('719','45170000','2.16.840.1.113762.1.4.1146.1715_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('720','45170000','2.16.840.1.113762.1.4.1146.1714_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('721','404237007','2.16.840.1.113762.1.4.1146.1959_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('722','56717001','2.16.840.1.113762.1.4.1146.838_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('723','56717001','2.16.840.1.113762.1.4.1146.839_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('724','726492000','2.16.840.1.113762.1.4.1146.1679_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('725','45170000','2.16.840.1.113762.1.4.1146.1712_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('726','115635005','2.16.840.1.113762.1.4.1146.1272_20210121','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('727','406583002','2.16.840.1.113762.1.4.1146.275_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('728','15628003','2.16.840.1.113762.1.4.1146.1036_20190605','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('729','715174007','2.16.840.1.113762.1.4.1146.1674_20220602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('730','541131000124102','2.16.840.1.113762.1.4.1146.795_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('731','406602003','2.16.840.1.113762.1.4.1146.1156_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('732','406604002','2.16.840.1.113762.1.4.1146.1156_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('733','404681006','2.16.840.1.113762.1.4.1146.1156_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('734','6452009','2.16.840.1.113762.1.4.1146.1398_20210526','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('735','715174007','2.16.840.1.113762.1.4.1146.1673_20220602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('736','28867007','2.16.840.1.113762.1.4.1146.1794_20220602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('737','1857005','2.16.840.1.113762.1.4.1146.312_20191227','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('738','36653000','2.16.840.1.113762.1.4.1146.312_20191227','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('739','35742006','2.16.840.1.113762.1.4.1146.554_20191227','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('740','76272004','2.16.840.1.113762.1.4.1146.554_20191227','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('741','541131000124102','2.16.840.1.113762.1.4.1146.796_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('742','328291000119103','2.16.840.1.113762.1.4.1146.435_20210527','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('743','721781004','2.16.840.1.113762.1.4.1146.2001_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('744','895448002','2.16.840.1.113762.1.4.1146.1155_20210528','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('745','12962009','2.16.840.1.113762.1.4.1146.1276_20210120','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('746','16541001','2.16.840.1.113762.1.4.1146.559_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('747','715174007','2.16.840.1.113762.1.4.1146.1671_20220602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('748','76902006','2.16.840.1.113762.1.4.1146.318_20210527','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('749','60826002','2.16.840.1.113762.1.4.1146.439_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('750','712662001','2.16.840.1.113762.1.4.1146.1209_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('751','712662001','2.16.840.1.113762.1.4.1146.1208_20200515','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('752','80612004','2.16.840.1.113762.1.4.1146.1849_20220603','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('753','398102009','2.16.840.1.113762.1.4.1146.828_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('754','53648006','2.16.840.1.113762.1.4.1146.1722_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('755','409636005','2.16.840.1.113762.1.4.1146.1608_20220115','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('756','414015000','2.16.840.1.113762.1.4.1146.1608_20220115','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('757','4241002','2.16.840.1.113762.1.4.1146.382_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('758','428175000','2.16.840.1.113762.1.4.1146.1282_20210120','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('759','398557001','2.16.840.1.113762.1.4.1146.386_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('760','805002','2.16.840.1.113762.1.4.1146.661_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('761','7180009','2.16.840.1.113762.1.4.1146.1564_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('762','397575003','2.16.840.1.113762.1.4.1146.1685_20220602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('763','404236003','2.16.840.1.113762.1.4.1146.1961_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('764','23511006','2.16.840.1.113762.1.4.1146.300_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('765','186771002','2.16.840.1.113762.1.4.1146.542_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('766','428111003','2.16.840.1.113762.1.4.1146.1288_20210120','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('767','45170000','2.16.840.1.113762.1.4.1146.1563_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('768','7180009','2.16.840.1.113762.1.4.1146.1563_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('769','240507007','2.16.840.1.113762.1.4.1146.1962_20230124','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('770','709018004','2.16.840.1.113762.1.4.1146.389_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('771','36989005','2.16.840.1.113762.1.4.1146.269_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('772','61094002','2.16.840.1.113762.1.4.1146.1960_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('773','865929003','2.16.840.1.113762.1.4.1146.1043_20190609','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('774','726492000','2.16.840.1.113762.1.4.1146.1681_20220602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('775','726492000','2.16.840.1.113762.1.4.1146.1680_20220602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('776','7180009','2.16.840.1.113762.1.4.1146.1562_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('777','406617004','2.16.840.1.113762.1.4.1146.306_20220602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('778','417192005','2.16.840.1.113762.1.4.1146.549_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('779','14168008','2.16.840.1.113762.1.4.1146.945_20200515','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('780','65154009','2.16.840.1.113762.1.4.1146.1733_20220602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('781','266123003','2.16.840.1.113762.1.4.1146.2029_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('782','65154009','2.16.840.1.113762.1.4.1146.1734_20220602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('783','93614002','2.16.840.1.113762.1.4.1146.1975_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('784','23511006','2.16.840.1.113762.1.4.1146.2305_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('785','63650001','2.16.840.1.113762.1.4.1146.370_20210526','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('786','240370009','2.16.840.1.113762.1.4.1146.371_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('787','240626005','2.16.840.1.113762.1.4.1146.494_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('788','13906002','2.16.840.1.113762.1.4.1146.495_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('789','240372001','2.16.840.1.113762.1.4.1146.375_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('790','712662001','2.16.840.1.113762.1.4.1146.1212_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('791','406614006','2.16.840.1.113762.1.4.1146.1575_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('792','712662001','2.16.840.1.113762.1.4.1146.1211_20200515','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('793','707341005','2.16.840.1.113762.1.4.1146.1973_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('794','58265007','2.16.840.1.113762.1.4.1146.378_20190605','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('795','715174007','2.16.840.1.113762.1.4.1146.1214_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('796','712662001','2.16.840.1.113762.1.4.1146.1214_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('797','726492000','2.16.840.1.113762.1.4.1146.1214_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('798','734350003','2.16.840.1.113762.1.4.1146.1214_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('799','712662001','2.16.840.1.113762.1.4.1146.1213_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('800','406612005','2.16.840.1.113762.1.4.1146.1576_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('801','414015000','2.16.840.1.113762.1.4.1146.534_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('802','67924001','2.16.840.1.113762.1.4.1146.534_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('803','712662001','2.16.840.1.113762.1.4.1146.1210_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('804','406602003','2.16.840.1.113762.1.4.1146.1451_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('805','359814004','2.16.840.1.113762.1.4.1146.1906_20221022','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('806','428175000','2.16.840.1.113762.1.4.1146.2152_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('807','409498004','2.16.840.1.113762.1.4.1146.480_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('808','409498004','2.16.840.1.113762.1.4.1146.481_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('809','36989005','2.16.840.1.113762.1.4.1146.761_20220119','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('810','359814004','2.16.840.1.113762.1.4.1146.2159_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('811','36989005','2.16.840.1.113762.1.4.1146.762_20191227','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('812','359761005','2.16.840.1.113762.1.4.1146.883_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('813','63650001','2.16.840.1.113762.1.4.1146.367_20180619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('814','359814004','2.16.840.1.113762.1.4.1146.2157_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('815','38362002','2.16.840.1.113762.1.4.1146.522_20200515','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('816','36989005','2.16.840.1.113762.1.4.1146.764_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('817','359814004','2.16.840.1.113762.1.4.1146.2158_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('818','14189004','2.16.840.1.113762.1.4.1146.369_20191227','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('819','38362002','2.16.840.1.113762.1.4.1146.523_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('820','38362002','2.16.840.1.113762.1.4.1146.524_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('821','27836007','2.16.840.1.113762.1.4.1146.645_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('822','75702008','2.16.840.1.113762.1.4.1146.920_20200515','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('823','38362002','2.16.840.1.113762.1.4.1146.525_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('824','27836007','2.16.840.1.113762.1.4.1146.646_20190608','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('825','541131000124102','2.16.840.1.113762.1.4.1146.801_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('826','359761005','2.16.840.1.113762.1.4.1146.889_20200515','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('827','38362002','2.16.840.1.113762.1.4.1146.527_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('828','541131000124102','2.16.840.1.113762.1.4.1146.802_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('829','14189004','2.16.840.1.113762.1.4.1146.759_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('830','38362002','2.16.840.1.113762.1.4.1146.519_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('831','19265001','2.16.840.1.113762.1.4.1146.1195_20200515','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('832','359814004','2.16.840.1.113762.1.4.1146.2160_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('833','19265001','2.16.840.1.113762.1.4.1146.594_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('834','19265001','2.16.840.1.113762.1.4.1146.595_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('835','19265001','2.16.840.1.113762.1.4.1146.596_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('836','359761005','2.16.840.1.113762.1.4.1146.597_20200515','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('837','398102009','2.16.840.1.113762.1.4.1146.1112_20191227','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('838','19265001','2.16.840.1.113762.1.4.1146.598_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('839','409498004','2.16.840.1.113762.1.4.1146.478_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('840','14168008','2.16.840.1.113762.1.4.1146.874_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('841','409498004','2.16.840.1.113762.1.4.1146.479_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('842','75702008','2.16.840.1.113762.1.4.1146.512_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('843','242253008','2.16.840.1.113762.1.4.1146.1076_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('844','359761005','2.16.840.1.113762.1.4.1146.2166_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('845','75702008','2.16.840.1.113762.1.4.1146.513_20180620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('846','3928002','2.16.840.1.113762.1.4.1146.1111_20191227','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('847','75702008','2.16.840.1.113762.1.4.1146.515_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('848','63650001','2.16.840.1.113762.1.4.1146.25_20180619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('849','359814004','2.16.840.1.113762.1.4.1146.1921_20221022','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('850','37131007','2.16.840.1.113762.1.4.1146.1127_20200515','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('851','240523007','2.16.840.1.113762.1.4.1146.581_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('852','240523007','2.16.840.1.113762.1.4.1146.582_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('853','27836007','2.16.840.1.113762.1.4.1146.220_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('854','240523007','2.16.840.1.113762.1.4.1146.584_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('855','240523007','2.16.840.1.113762.1.4.1146.585_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('856','414488002','2.16.840.1.113762.1.4.1146.981_20200515','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('857','398565003','2.16.840.1.113762.1.4.1146.981_20200515','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('858','414488002','2.16.840.1.113762.1.4.1146.982_20180620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('859','398565003','2.16.840.1.113762.1.4.1146.982_20180620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('860','56717001','2.16.840.1.113762.1.4.1146.1002_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('861','23511006','2.16.840.1.113762.1.4.1146.1365_20210526','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('862','67924001','2.16.840.1.113762.1.4.1146.345_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('863','37131007','2.16.840.1.113762.1.4.1146.1126_20200515','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('864','186788009','2.16.840.1.113762.1.4.1146.500_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('865','3928002','2.16.840.1.113762.1.4.1146.588_20190608','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('866','444664004','2.16.840.1.113762.1.4.1146.2213_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('867','186788009','2.16.840.1.113762.1.4.1146.501_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('868','3928002','2.16.840.1.113762.1.4.1146.589_20220602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('869','23511006','2.16.840.1.113762.1.4.1146.1087_20191227','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('870','27836007','2.16.840.1.113762.1.4.1146.1001_20220601','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('871','23511006','2.16.840.1.113762.1.4.1146.1088_20191227','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('872','428175000','2.16.840.1.113762.1.4.1146.1539_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('873','276197005','2.16.840.1.113762.1.4.1146.10_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('874','36653000','2.16.840.1.113762.1.4.1146.2348_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('875','58750007','2.16.840.1.113762.1.4.1146.570_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('876','14189004','2.16.840.1.113762.1.4.1146.296_20191227','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('877','58750007','2.16.840.1.113762.1.4.1146.571_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('878','14189004','2.16.840.1.113762.1.4.1146.297_20191227','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('879','58750007','2.16.840.1.113762.1.4.1146.572_20200515','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('880','14189004','2.16.840.1.113762.1.4.1146.298_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('881','14189004','2.16.840.1.113762.1.4.1146.299_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('882','242253008','2.16.840.1.113762.1.4.1146.2347_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('883','414488002','2.16.840.1.113762.1.4.1146.697_20180620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('884','398565003','2.16.840.1.113762.1.4.1146.697_20180620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('885','276197005','2.16.840.1.113762.1.4.1146.2344_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('886','27836007','2.16.840.1.113762.1.4.1146.215_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('887','27836007','2.16.840.1.113762.1.4.1146.216_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('888','3928002','2.16.840.1.113762.1.4.1146.613_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('889','27836007','2.16.840.1.113762.1.4.1146.614_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('890','398447004','2.16.840.1.113762.1.4.1146.847_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('891','58750007','2.16.840.1.113762.1.4.1146.960_20200515','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('892','56717001','2.16.840.1.113762.1.4.1146.840_20220602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('893','23511006','2.16.840.1.113762.1.4.1146.324_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('894','56717001','2.16.840.1.113762.1.4.1146.600_20220602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('895','58750007','2.16.840.1.113762.1.4.1146.569_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('896','240523007','2.16.840.1.113762.1.4.1146.966_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('897','398447004','2.16.840.1.113762.1.4.1146.846_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('898','240523007','2.16.840.1.113762.1.4.1146.1151_20200515','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('899','14168008','2.16.840.1.113762.1.4.1146.552_20200515','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('900','56717001','2.16.840.1.113762.1.4.1146.1795_20220602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('901','1857005','2.16.840.1.113762.1.4.1146.313_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('902','36653000','2.16.840.1.113762.1.4.1146.313_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('903','16541001','2.16.840.1.113762.1.4.1146.555_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('904','398102009','2.16.840.1.113762.1.4.1146.830_20191231','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('905','1857005','2.16.840.1.113762.1.4.1146.314_20191227','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('906','36653000','2.16.840.1.113762.1.4.1146.314_20191227','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('907','1857005','2.16.840.1.113762.1.4.1146.316_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('908','36653000','2.16.840.1.113762.1.4.1146.316_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('909','14168008','2.16.840.1.113762.1.4.1146.946_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('910','398102009','2.16.840.1.113762.1.4.1146.829_20180620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('911','36989005','2.16.840.1.113762.1.4.1146.262_20220119','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('912','1857005','2.16.840.1.113762.1.4.1146.782_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('913','36989005','2.16.840.1.113762.1.4.1146.266_20191227','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('914','428111003','2.16.840.1.113762.1.4.1146.1289_20210120','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('915','36989005','2.16.840.1.113762.1.4.1146.268_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('916','242253008','2.16.840.1.113762.1.4.1146.785_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('917','23511006','2.16.840.1.113762.1.4.1146.302_20220603','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('918','23511006','2.16.840.1.113762.1.4.1146.786_20220603','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('919','23511006','2.16.840.1.113762.1.4.1146.303_20191227','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('920','23511006','2.16.840.1.113762.1.4.1146.787_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('921','428175000','2.16.840.1.113762.1.4.1146.1285_20210120','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('922','359814004','2.16.840.1.113762.1.4.1146.2012_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('923','37131007','2.16.840.1.113762.1.4.1146.821_20200515','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('924','359814004','2.16.840.1.113762.1.4.1146.2013_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('925','428175000','2.16.840.1.113762.1.4.1146.1286_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('926','27836007','2.16.840.1.113762.1.4.1146.58_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('927','1857005','2.16.840.1.113762.1.4.1146.817_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('928','36653000','2.16.840.1.113762.1.4.1146.817_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('929','27836007','2.16.840.1.113762.1.4.1146.2306_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('930','428111003','2.16.840.1.113762.1.4.1146.1290_20210120','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('931','186788009','2.16.840.1.113762.1.4.1146.499_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('932','38362002','2.16.840.1.113762.1.4.1146.897_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('933','19265001','2.16.840.1.113762.1.4.1146.899_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('934','37131007','2.16.840.1.113762.1.4.1146.416_20220119','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('935','416707008','2.16.840.1.113762.1.4.1146.1182_20220602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('936','416925005','2.16.840.1.113762.1.4.1146.1181_20210526','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('937','418182000','2.16.840.1.113762.1.4.1146.1184_20210526','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('938','47523006','2.16.840.1.113762.1.4.1146.1183_20210527','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('939','240589008','2.16.840.1.113762.1.4.1146.240_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('940','240626005','2.16.840.1.113762.1.4.1146.483_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('941','13906002','2.16.840.1.113762.1.4.1146.484_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('942','111864006','2.16.840.1.113762.1.4.1146.1180_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('943','13906002','2.16.840.1.113762.1.4.1146.485_20210526','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('944','15628003','2.16.840.1.113762.1.4.1146.244_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('945','240626005','2.16.840.1.113762.1.4.1146.486_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('946','15628003','2.16.840.1.113762.1.4.1146.245_20191227','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('947','240626005','2.16.840.1.113762.1.4.1146.487_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('948','418182000','2.16.840.1.113762.1.4.1146.1189_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('949','266123003','2.16.840.1.113762.1.4.1146.2039_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('950','13906002','2.16.840.1.113762.1.4.1146.488_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('951','86406008','2.16.840.1.113762.1.4.1146.368_20200515','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('952','13906002','2.16.840.1.113762.1.4.1146.489_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('953','416925005','2.16.840.1.113762.1.4.1146.1186_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('954','111864006','2.16.840.1.113762.1.4.1146.1185_20220601','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('955','47523006','2.16.840.1.113762.1.4.1146.1188_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('956','416707008','2.16.840.1.113762.1.4.1146.1187_20210527','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('957','266123003','2.16.840.1.113762.1.4.1146.2041_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('958','266123003','2.16.840.1.113762.1.4.1146.2042_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('959','77377001','2.16.840.1.113762.1.4.1146.470_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('960','266123003','2.16.840.1.113762.1.4.1146.2040_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('961','77377001','2.16.840.1.113762.1.4.1146.471_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('962','77377001','2.16.840.1.113762.1.4.1146.472_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('963','21061004','2.16.840.1.113762.1.4.1146.474_20200513','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('964','21061004','2.16.840.1.113762.1.4.1146.475_20210526','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('965','266123003','2.16.840.1.113762.1.4.1146.2049_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('966','21061004','2.16.840.1.113762.1.4.1146.476_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('967','266123003','2.16.840.1.113762.1.4.1146.2047_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('968','45170000','2.16.840.1.113762.1.4.1146.2168_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('969','266123003','2.16.840.1.113762.1.4.1146.2048_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('970','45170000','2.16.840.1.113762.1.4.1146.2169_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('971','266123003','2.16.840.1.113762.1.4.1146.2045_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('972','240589008','2.16.840.1.113762.1.4.1146.238_20190605','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('973','266123003','2.16.840.1.113762.1.4.1146.2046_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('974','240589008','2.16.840.1.113762.1.4.1146.239_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('975','266123003','2.16.840.1.113762.1.4.1146.2043_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('976','266123003','2.16.840.1.113762.1.4.1146.2044_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('977','45170000','2.16.840.1.113762.1.4.1146.2173_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('978','45170000','2.16.840.1.113762.1.4.1146.2174_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('979','266123003','2.16.840.1.113762.1.4.1146.2050_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('980','45170000','2.16.840.1.113762.1.4.1146.2171_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('981','266123003','2.16.840.1.113762.1.4.1146.2051_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('982','45170000','2.16.840.1.113762.1.4.1146.2172_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('983','45170000','2.16.840.1.113762.1.4.1146.2170_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('984','86500004','2.16.840.1.113762.1.4.1146.342_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('985','86500004','2.16.840.1.113762.1.4.1146.343_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('986','61462000','2.16.840.1.113762.1.4.1146.464_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('987','86500004','2.16.840.1.113762.1.4.1146.344_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('988','61462000','2.16.840.1.113762.1.4.1146.465_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('989','61462000','2.16.840.1.113762.1.4.1146.466_20200515','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('990','74942003','2.16.840.1.113762.1.4.1146.2058_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('991','45170000','2.16.840.1.113762.1.4.1146.2179_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('992','74942003','2.16.840.1.113762.1.4.1146.2059_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('993','40468003','2.16.840.1.113762.1.4.1146.347_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('994','77377001','2.16.840.1.113762.1.4.1146.468_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('995','45170000','2.16.840.1.113762.1.4.1146.2177_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('996','77377001','2.16.840.1.113762.1.4.1146.469_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('997','45170000','2.16.840.1.113762.1.4.1146.2178_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('998','406614006','2.16.840.1.113762.1.4.1146.2299_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('999','40468003','2.16.840.1.113762.1.4.1146.349_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1000','45170000','2.16.840.1.113762.1.4.1146.2175_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1001','45170000','2.16.840.1.113762.1.4.1146.2176_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1002','45170000','2.16.840.1.113762.1.4.1146.2183_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1003','45170000','2.16.840.1.113762.1.4.1146.2180_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1004','406617004','2.16.840.1.113762.1.4.1146.693_20210527','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1005','40610006','2.16.840.1.113762.1.4.1146.575_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1006','40610006','2.16.840.1.113762.1.4.1146.576_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1007','541131000124102','2.16.840.1.113762.1.4.1146.335_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1008','40610006','2.16.840.1.113762.1.4.1146.577_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1009','661761000124109','2.16.840.1.113762.1.4.1146.336_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1010','541131000124102','2.16.840.1.113762.1.4.1146.336_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1011','6142004','2.16.840.1.113762.1.4.1146.336_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1012','719590007','2.16.840.1.113762.1.4.1146.336_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1013','43692000','2.16.840.1.113762.1.4.1146.336_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1014','40610006','2.16.840.1.113762.1.4.1146.578_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1015','1731000119106','2.16.840.1.113762.1.4.1146.2067_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1016','45170000','2.16.840.1.113762.1.4.1146.2188_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1017','661761000124109','2.16.840.1.113762.1.4.1146.337_20191227','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1018','6142004','2.16.840.1.113762.1.4.1146.337_20191227','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1019','719590007','2.16.840.1.113762.1.4.1146.337_20191227','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1020','43692000','2.16.840.1.113762.1.4.1146.337_20191227','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1021','40610006','2.16.840.1.113762.1.4.1146.579_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1022','45170000','2.16.840.1.113762.1.4.1146.2189_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1023','6142004','2.16.840.1.113762.1.4.1146.338_20191227','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1024','45170000','2.16.840.1.113762.1.4.1146.2187_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1025','45170000','2.16.840.1.113762.1.4.1146.2193_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1026','417093003','2.16.840.1.113762.1.4.1146.560_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1027','45170000','2.16.840.1.113762.1.4.1146.2192_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1028','75116005','2.16.840.1.113762.1.4.1146.440_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1029','417093003','2.16.840.1.113762.1.4.1146.561_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1030','75116005','2.16.840.1.113762.1.4.1146.441_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1031','417093003','2.16.840.1.113762.1.4.1146.562_20200515','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1032','45170000','2.16.840.1.113762.1.4.1146.2190_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1033','75116005','2.16.840.1.113762.1.4.1146.442_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1034','417093003','2.16.840.1.113762.1.4.1146.563_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1035','75116005','2.16.840.1.113762.1.4.1146.443_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1036','417093003','2.16.840.1.113762.1.4.1146.564_20210527','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1037','26726000','2.16.840.1.113762.1.4.1146.445_20200515','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1038','240372001','2.16.840.1.113762.1.4.1146.566_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1039','23511006','2.16.840.1.113762.1.4.1146.325_20191227','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1040','26726000','2.16.840.1.113762.1.4.1146.446_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1041','266143009','2.16.840.1.113762.1.4.1146.567_20191227','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1042','26726000','2.16.840.1.113762.1.4.1146.447_20200515','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1043','26726000','2.16.840.1.113762.1.4.1146.449_20220119','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1044','35742006','2.16.840.1.113762.1.4.1146.550_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1045','76272004','2.16.840.1.113762.1.4.1146.550_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1046','13906002','2.16.840.1.113762.1.4.1146.553_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1047','328291000119103','2.16.840.1.113762.1.4.1146.433_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1048','661761000124109','2.16.840.1.113762.1.4.1146.797_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1049','541131000124102','2.16.840.1.113762.1.4.1146.797_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1050','6142004','2.16.840.1.113762.1.4.1146.797_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1051','719590007','2.16.840.1.113762.1.4.1146.797_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1052','43692000','2.16.840.1.113762.1.4.1146.797_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1053','16541001','2.16.840.1.113762.1.4.1146.556_20210527','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1054','541131000124102','2.16.840.1.113762.1.4.1146.798_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1055','60826002','2.16.840.1.113762.1.4.1146.436_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1056','16541001','2.16.840.1.113762.1.4.1146.557_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1057','541131000124102','2.16.840.1.113762.1.4.1146.799_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1058','60826002','2.16.840.1.113762.1.4.1146.437_20220119','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1059','16541001','2.16.840.1.113762.1.4.1146.558_20210527','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1060','36188001','2.16.840.1.113762.1.4.1146.317_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1061','60826002','2.16.840.1.113762.1.4.1146.438_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1062','406617004','2.16.840.1.113762.1.4.1146.308_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1063','406617004','2.16.840.1.113762.1.4.1146.309_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1064','186771002','2.16.840.1.113762.1.4.1146.540_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1065','36188001','2.16.840.1.113762.1.4.1146.301_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1066','417192005','2.16.840.1.113762.1.4.1146.544_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1067','417192005','2.16.840.1.113762.1.4.1146.545_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1068','328291000119103','2.16.840.1.113762.1.4.1146.425_20190606','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1069','417192005','2.16.840.1.113762.1.4.1146.546_20220602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1070','23511006','2.16.840.1.113762.1.4.1146.788_20220603','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1071','328291000119103','2.16.840.1.113762.1.4.1146.426_20191227','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1072','417192005','2.16.840.1.113762.1.4.1146.547_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1073','328291000119103','2.16.840.1.113762.1.4.1146.427_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1074','417192005','2.16.840.1.113762.1.4.1146.548_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1075','77377001','2.16.840.1.113762.1.4.1146.307_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1076','328291000119103','2.16.840.1.113762.1.4.1146.428_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1077','186771002','2.16.840.1.113762.1.4.1146.539_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1078','406617004','2.16.840.1.113762.1.4.1146.770_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1079','406617004','2.16.840.1.113762.1.4.1146.771_20210527','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1080','23502006','2.16.840.1.113762.1.4.1146.530_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1081','10301003','2.16.840.1.113762.1.4.1146.530_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1082','406583002','2.16.840.1.113762.1.4.1146.772_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1083','23502006','2.16.840.1.113762.1.4.1146.531_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1084','406583002','2.16.840.1.113762.1.4.1146.773_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1085','23502006','2.16.840.1.113762.1.4.1146.532_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1086','407152001','2.16.840.1.113762.1.4.1146.413_20200513','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1087','407152001','2.16.840.1.113762.1.4.1146.414_20180620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1088','186771002','2.16.840.1.113762.1.4.1146.535_20200515','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1089','407152001','2.16.840.1.113762.1.4.1146.415_20180620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1090','186771002','2.16.840.1.113762.1.4.1146.536_20200515','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1091','186771002','2.16.840.1.113762.1.4.1146.537_20200515','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1092','17383000','2.16.840.1.113762.1.4.1146.417_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1093','186771002','2.16.840.1.113762.1.4.1146.538_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1094','4241002','2.16.840.1.113762.1.4.1146.1106_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1095','409617000','2.16.840.1.113762.1.4.1146.1344_20210526','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1096','406575008','2.16.840.1.113762.1.4.1146.1465_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1097','409617000','2.16.840.1.113762.1.4.1146.1343_20210526','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1098','406575008','2.16.840.1.113762.1.4.1146.1467_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1099','409617000','2.16.840.1.113762.1.4.1146.1345_20210526','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1100','406575008','2.16.840.1.113762.1.4.1146.1466_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1101','792004','2.16.840.1.113762.1.4.1146.1340_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1102','20484008','2.16.840.1.113762.1.4.1146.1340_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1103','712662001','2.16.840.1.113762.1.4.1146.1220_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1104','792004','2.16.840.1.113762.1.4.1146.1341_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1105','20484008','2.16.840.1.113762.1.4.1146.1341_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1106','406602003','2.16.840.1.113762.1.4.1146.1462_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1107','7111000119109','2.16.840.1.113762.1.4.1146.1359_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1108','302231008','2.16.840.1.113762.1.4.1146.70_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1109','302231008','2.16.840.1.113762.1.4.1146.71_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1110','3398004','2.16.840.1.113762.1.4.1146.1591_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1111','3398004','2.16.840.1.113762.1.4.1146.1590_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1112','388759003','2.16.840.1.113762.1.4.1146.1476_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1113','388759003','2.16.840.1.113762.1.4.1146.1475_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1114','388759003','2.16.840.1.113762.1.4.1146.1478_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1115','388759003','2.16.840.1.113762.1.4.1146.1477_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1116','3398004','2.16.840.1.113762.1.4.1146.1592_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1117','388759003','2.16.840.1.113762.1.4.1146.1474_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1118','23502006','2.16.840.1.113762.1.4.1146.1128_20200515','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1119','10301003','2.16.840.1.113762.1.4.1146.1128_20200515','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1120','69996000','2.16.840.1.113762.1.4.1146.1249_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1121','83436008','2.16.840.1.113762.1.4.1146.1248_20220119','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1122','10301003','2.16.840.1.113762.1.4.1146.1129_20200515','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1123','7111000119109','2.16.840.1.113762.1.4.1146.1360_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1124','407152001','2.16.840.1.113762.1.4.1146.1368_20210526','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1125','721763002','2.16.840.1.113762.1.4.1146.1483_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1126','7111000119109','2.16.840.1.113762.1.4.1146.1361_20210526','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1127','721763002','2.16.840.1.113762.1.4.1146.1482_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1128','240626005','2.16.840.1.113762.1.4.1146.2211_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1129','15628003','2.16.840.1.113762.1.4.1146.1000_20220601','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1130','721763002','2.16.840.1.113762.1.4.1146.1484_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1131','4834000','2.16.840.1.113762.1.4.1146.1018_20190606','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1132','406604002','2.16.840.1.113762.1.4.1146.1139_20200515','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1133','406575008','2.16.840.1.113762.1.4.1146.1139_20200515','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1134','404681006','2.16.840.1.113762.1.4.1146.1139_20200515','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1135','59527008','2.16.840.1.113762.1.4.1146.2229_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1136','4834000','2.16.840.1.113762.1.4.1146.1017_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1137','406602003','2.16.840.1.113762.1.4.1146.1138_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1138','406604002','2.16.840.1.113762.1.4.1146.1138_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1139','404681006','2.16.840.1.113762.1.4.1146.1138_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1140','38959009','2.16.840.1.113762.1.4.1146.2109_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1141','59527008','2.16.840.1.113762.1.4.1146.2227_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1142','4834000','2.16.840.1.113762.1.4.1146.1019_20210527','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1143','59527008','2.16.840.1.113762.1.4.1146.2228_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1144','83436008','2.16.840.1.113762.1.4.1146.1250_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1145','186431008','2.16.840.1.113762.1.4.1146.1492_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1146','186431008','2.16.840.1.113762.1.4.1146.1491_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1147','52947006','2.16.840.1.113762.1.4.1146.1377_20210526','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1148','186431008','2.16.840.1.113762.1.4.1146.1498_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1149','59527008','2.16.840.1.113762.1.4.1146.2225_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1150','407152001','2.16.840.1.113762.1.4.1146.2346_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1151','52947006','2.16.840.1.113762.1.4.1146.1376_20220601','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1152','59527008','2.16.840.1.113762.1.4.1146.2226_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1153','59527008','2.16.840.1.113762.1.4.1146.2223_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1154','1731000119106','2.16.840.1.113762.1.4.1146.1378_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1155','111811007','2.16.840.1.113762.1.4.1146.1378_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1156','186431008','2.16.840.1.113762.1.4.1146.1499_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1157','59527008','2.16.840.1.113762.1.4.1146.2224_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1158','407152001','2.16.840.1.113762.1.4.1146.2345_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1159','23502006','2.16.840.1.113762.1.4.1146.1131_20200515','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1160','69996000','2.16.840.1.113762.1.4.1146.1252_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1161','52947006','2.16.840.1.113762.1.4.1146.1373_20220601','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1162','186431008','2.16.840.1.113762.1.4.1146.1494_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1163','10301003','2.16.840.1.113762.1.4.1146.1130_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1164','69996000','2.16.840.1.113762.1.4.1146.1251_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1165','186431008','2.16.840.1.113762.1.4.1146.1493_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1166','58265007','2.16.840.1.113762.1.4.1146.2343_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1167','52947006','2.16.840.1.113762.1.4.1146.1375_20210526','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1168','186431008','2.16.840.1.113762.1.4.1146.1496_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1169','16541001','2.16.840.1.113762.1.4.1146.1132_20200515','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1170','69996000','2.16.840.1.113762.1.4.1146.1253_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1171','52947006','2.16.840.1.113762.1.4.1146.1374_20210526','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1172','186431008','2.16.840.1.113762.1.4.1146.1495_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1173','4241002','2.16.840.1.113762.1.4.1146.1028_20191227','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1174','187192000','2.16.840.1.113762.1.4.1146.2238_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1175','187192000','2.16.840.1.113762.1.4.1146.2239_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1176','38907003','2.16.840.1.113762.1.4.1146.282_20191227','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1177','38907003','2.16.840.1.113762.1.4.1146.283_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1178','38907003','2.16.840.1.113762.1.4.1146.284_20191227','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1179','38907003','2.16.840.1.113762.1.4.1146.286_20220119','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1180','187192000','2.16.840.1.113762.1.4.1146.2236_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1181','187192000','2.16.840.1.113762.1.4.1146.2237_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1182','187192000','2.16.840.1.113762.1.4.1146.2235_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1183','840539006','2.16.840.1.113762.1.4.1146.1142_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1184','895448002','2.16.840.1.113762.1.4.1146.1142_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1185','49649001','2.16.840.1.113762.1.4.1146.1263_20210121','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1186','81004002','2.16.840.1.113762.1.4.1146.2353_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1187','85904008','2.16.840.1.113762.1.4.1146.1020_20190606','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1188','49649001','2.16.840.1.113762.1.4.1146.1262_20210121','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1189','406583002','2.16.840.1.113762.1.4.1146.1383_20210526','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1190','59527008','2.16.840.1.113762.1.4.1146.2230_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1191','81004002','2.16.840.1.113762.1.4.1146.2352_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1192','61750000','2.16.840.1.113762.1.4.1146.2009_20230126','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1193','41040004','2.16.840.1.113762.1.4.1146.2128_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1194','93614002','2.16.840.1.113762.1.4.1146.2249_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1195','85904008','2.16.840.1.113762.1.4.1146.2360_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1196','709018004','2.16.840.1.113762.1.4.1146.391_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1197','187192000','2.16.840.1.113762.1.4.1146.2240_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1198','85904008','2.16.840.1.113762.1.4.1146.2361_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1199','406583002','2.16.840.1.113762.1.4.1146.276_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1200','406583002','2.16.840.1.113762.1.4.1146.277_20220601','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1201','551611000124101','2.16.840.1.113762.1.4.1146.398_20191227','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1202','50711007','2.16.840.1.113762.1.4.1146.398_20191227','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1203','895448002','2.16.840.1.113762.1.4.1146.1157_20220113','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1204','12962009','2.16.840.1.113762.1.4.1146.1278_20210121','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1205','6452009','2.16.840.1.113762.1.4.1146.1399_20210526','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1206','721781004','2.16.840.1.113762.1.4.1146.2005_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1207','406583002','2.16.840.1.113762.1.4.1146.278_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1208','551611000124101','2.16.840.1.113762.1.4.1146.399_20190608','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1209','50711007','2.16.840.1.113762.1.4.1146.399_20190608','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1210','12962009','2.16.840.1.113762.1.4.1146.1277_20220119','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1211','61462000','2.16.840.1.113762.1.4.1146.2248_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1212','721781004','2.16.840.1.113762.1.4.1146.2003_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1213','840539006','2.16.840.1.113762.1.4.1146.1158_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1214','895448002','2.16.840.1.113762.1.4.1146.1158_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1215','12962009','2.16.840.1.113762.1.4.1146.1279_20220119','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1216','721781004','2.16.840.1.113762.1.4.1146.2004_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1217','3928002','2.16.840.1.113762.1.4.1146.2243_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1218','115635005','2.16.840.1.113762.1.4.1146.1273_20210121','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1219','721781004','2.16.840.1.113762.1.4.1146.2002_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1220','20484008','2.16.840.1.113762.1.4.1146.2139_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1221','709018004','2.16.840.1.113762.1.4.1146.390_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1222','12962009','2.16.840.1.113762.1.4.1146.1281_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1223','58265007','2.16.840.1.113762.1.4.1146.380_20191227','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1224','12962009','2.16.840.1.113762.1.4.1146.1280_20220120','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1225','4241002','2.16.840.1.113762.1.4.1146.384_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1226','4241002','2.16.840.1.113762.1.4.1146.385_20191227','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1227','398557001','2.16.840.1.113762.1.4.1146.387_20180619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1228','416925005','2.16.840.1.113762.1.4.1146.1168_20200516','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1229','36989005','2.16.840.1.113762.1.4.1146.267_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1230','398557001','2.16.840.1.113762.1.4.1146.388_20220119','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1231','111864006','2.16.840.1.113762.1.4.1146.1169_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1232','1731000119106','2.16.840.1.113762.1.4.1146.2254_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1233','865929003','2.16.840.1.113762.1.4.1146.1045_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1234','865929003','2.16.840.1.113762.1.4.1146.1044_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1235','47523006','2.16.840.1.113762.1.4.1146.1171_20200515','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1236','416707008','2.16.840.1.113762.1.4.1146.1170_20200515','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1237','240626005','2.16.840.1.113762.1.4.1146.491_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1238','416925005','2.16.840.1.113762.1.4.1146.1173_20200516','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1239','418182000','2.16.840.1.113762.1.4.1146.1172_20220601','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1240','240370009','2.16.840.1.113762.1.4.1146.372_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1241','240626005','2.16.840.1.113762.1.4.1146.493_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1242','240370009','2.16.840.1.113762.1.4.1146.373_20191227','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1243','240370009','2.16.840.1.113762.1.4.1146.374_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1244','186788009','2.16.840.1.113762.1.4.1146.496_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1245','240372001','2.16.840.1.113762.1.4.1146.376_20220120','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1246','186788009','2.16.840.1.113762.1.4.1146.497_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1247','418182000','2.16.840.1.113762.1.4.1146.1179_20210526','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1248','186788009','2.16.840.1.113762.1.4.1146.498_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1249','47523006','2.16.840.1.113762.1.4.1146.1178_20210527','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1250','58265007','2.16.840.1.113762.1.4.1146.379_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1251','111864006','2.16.840.1.113762.1.4.1146.1175_20220601','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1252','47523006','2.16.840.1.113762.1.4.1146.1174_20200515','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1253','416707008','2.16.840.1.113762.1.4.1146.1177_20200515','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1254','709018004','2.16.840.1.113762.1.4.1146.1055_20190606','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1255','416925005','2.16.840.1.113762.1.4.1146.1176_20210526','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1256','18624000','2.16.840.1.113762.1.4.1146.1747_20220602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1257','76172008','2.16.840.1.113762.1.4.1146.1868_20220603','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1258','76172008','2.16.840.1.113762.1.4.1146.1867_20220603','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1259','18624000','2.16.840.1.113762.1.4.1146.1746_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1260','418182000','2.16.840.1.113762.1.4.1146.1985_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1261','767146004','2.16.840.1.113762.1.4.1146.1509_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1262','418182000','2.16.840.1.113762.1.4.1146.1983_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1263','418182000','2.16.840.1.113762.1.4.1146.1984_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1264','240820001','2.16.840.1.113762.1.4.1146.1860_20220603','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1265','240613006','2.16.840.1.113762.1.4.1146.1639_20220115','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1266','59051007','2.16.840.1.113762.1.4.1146.1877_20220603','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1267','77506005','2.16.840.1.113762.1.4.1146.1757_20220602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1268','59051007','2.16.840.1.113762.1.4.1146.1875_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1269','77506005','2.16.840.1.113762.1.4.1146.1756_20220601','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1270','59051007','2.16.840.1.113762.1.4.1146.1876_20220603','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1271','767146004','2.16.840.1.113762.1.4.1146.1511_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1272','419488004','2.16.840.1.113762.1.4.1146.1753_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1273','767146004','2.16.840.1.113762.1.4.1146.1510_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1274','419488004','2.16.840.1.113762.1.4.1146.1752_20220602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1275','767299002','2.16.840.1.113762.1.4.1146.1528_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1276','4639008','2.16.840.1.113762.1.4.1146.1649_20220119','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1277','767299002','2.16.840.1.113762.1.4.1146.1527_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1278','4639008','2.16.840.1.113762.1.4.1146.1648_20220119','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1279','840539006','2.16.840.1.113762.1.4.1146.1409_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1280','14168008','2.16.840.1.113762.1.4.1146.1408_20220601','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1281','42386007','2.16.840.1.113762.1.4.1146.1524_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1282','42386007','2.16.840.1.113762.1.4.1146.1523_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1283','13906002','2.16.840.1.113762.1.4.1146.1889_20220603','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1284','767299002','2.16.840.1.113762.1.4.1146.1526_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1285','4639008','2.16.840.1.113762.1.4.1146.1647_20220119','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1286','91576008','2.16.840.1.113762.1.4.1146.1887_20220603','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1287','42386007','2.16.840.1.113762.1.4.1146.1520_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1288','240613006','2.16.840.1.113762.1.4.1146.1641_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1289','6452009','2.16.840.1.113762.1.4.1146.1401_20210526','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1290','42386007','2.16.840.1.113762.1.4.1146.1522_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1291','240613006','2.16.840.1.113762.1.4.1146.1643_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1292','6452009','2.16.840.1.113762.1.4.1146.1400_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1293','42386007','2.16.840.1.113762.1.4.1146.1521_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1294','240613006','2.16.840.1.113762.1.4.1146.1642_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1295','712662001','2.16.840.1.113762.1.4.1146.1880_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1296','712662001','2.16.840.1.113762.1.4.1146.1881_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1297','49649001','2.16.840.1.113762.1.4.1146.1417_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1298','187192000','2.16.840.1.113762.1.4.1146.1897_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1299','187192000','2.16.840.1.113762.1.4.1146.1898_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1300','187192000','2.16.840.1.113762.1.4.1146.1896_20220603','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1301','77506005','2.16.840.1.113762.1.4.1146.1654_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1302','77506005','2.16.840.1.113762.1.4.1146.1653_20220115','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1303','4639008','2.16.840.1.113762.1.4.1146.1650_20220119','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1304','111811007','2.16.840.1.113762.1.4.1146.1304_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1305','240613006','2.16.840.1.113762.1.4.1146.1788_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1306','1149222004','2.16.840.1.113762.1.4.1146.1548_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1307','111811007','2.16.840.1.113762.1.4.1146.1305_20210526','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1308','1149222004','2.16.840.1.113762.1.4.1146.1547_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1309','428111003','2.16.840.1.113762.1.4.1146.1300_20210120','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1310','115635005','2.16.840.1.113762.1.4.1146.1421_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1311','788781001','2.16.840.1.113762.1.4.1146.1420_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1312','91576008','2.16.840.1.113762.1.4.1146.1780_20220603','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1313','33839006','2.16.840.1.113762.1.4.1146.1780_20220603','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1314','33839006','2.16.840.1.113762.1.4.1146.1782_20220602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1315','91576008','2.16.840.1.113762.1.4.1146.1781_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1316','33839006','2.16.840.1.113762.1.4.1146.1781_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1317','726492000','2.16.840.1.113762.1.4.1146.1678_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1318','726492000','2.16.840.1.113762.1.4.1146.1677_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1319','6415009','2.16.840.1.113762.1.4.1146.1311_20210120','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1320','55735004','2.16.840.1.113762.1.4.1146.1311_20210120','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1321','6415009','2.16.840.1.113762.1.4.1146.1313_20210120','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1322','55735004','2.16.840.1.113762.1.4.1146.1313_20210120','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1323','715174007','2.16.840.1.113762.1.4.1146.1676_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1324','6415009','2.16.840.1.113762.1.4.1146.1312_20230929','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1325','55735004','2.16.840.1.113762.1.4.1146.1312_20230929','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1326','715174007','2.16.840.1.113762.1.4.1146.1675_20220602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1327','28867007','2.16.840.1.113762.1.4.1146.1793_20220602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1328','7180009','2.16.840.1.113762.1.4.1146.1568_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1329','7180009','2.16.840.1.113762.1.4.1146.1567_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1330','7180009','2.16.840.1.113762.1.4.1146.1566_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1331','7180009','2.16.840.1.113762.1.4.1146.1565_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1332','397575003','2.16.840.1.113762.1.4.1146.1686_20220602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1333','712662001','2.16.840.1.113762.1.4.1146.1219_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1334','712662001','2.16.840.1.113762.1.4.1146.1216_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1335','734350003','2.16.840.1.113762.1.4.1146.1216_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1336','712662001','2.16.840.1.113762.1.4.1146.1215_20200515','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1337','734350003','2.16.840.1.113762.1.4.1146.1215_20200515','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1338','406612005','2.16.840.1.113762.1.4.1146.1578_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1339','406602003','2.16.840.1.113762.1.4.1146.1454_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1340','21061004','2.16.840.1.113762.1.4.1146.2302_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1341','406602003','2.16.840.1.113762.1.4.1146.1453_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1342','406614006','2.16.840.1.113762.1.4.1146.1577_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1343','21061004','2.16.840.1.113762.1.4.1146.2300_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1344','406602003','2.16.840.1.113762.1.4.1146.1455_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1345','21061004','2.16.840.1.113762.1.4.1146.2301_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1346','406602003','2.16.840.1.113762.1.4.1146.1452_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1347','551611000124101','2.16.840.1.113762.1.4.1146.407_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1348','50711007','2.16.840.1.113762.1.4.1146.407_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1349','23502006','2.16.840.1.113762.1.4.1146.529_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1350','187192000','2.16.840.1.113762.1.4.1146.1901_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1351','414015000','2.16.840.1.113762.1.4.1146.1907_20220603','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1352','359814004','2.16.840.1.113762.1.4.1146.1907_20220603','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1353','66071002','2.16.840.1.113762.1.4.1146.400_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1354','60498001','2.16.840.1.113762.1.4.1146.401_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1355','66071002','2.16.840.1.113762.1.4.1146.401_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1356','60498001','2.16.840.1.113762.1.4.1146.402_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1357','66071002','2.16.840.1.113762.1.4.1146.402_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1358','60498001','2.16.840.1.113762.1.4.1146.403_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1359','66071002','2.16.840.1.113762.1.4.1146.403_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1360','398447004','2.16.840.1.113762.1.4.1146.887_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1361','52947006','2.16.840.1.113762.1.4.1146.526_20200513','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1362','406617004','2.16.840.1.113762.1.4.1146.769_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1363','36921006','2.16.840.1.113762.1.4.1146.1918_20220603','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1364','7180009','2.16.840.1.113762.1.4.1146.1919_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1365','36921006','2.16.840.1.113762.1.4.1146.1916_20220603','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1366','36921006','2.16.840.1.113762.1.4.1146.1917_20220603','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1367','10301003','2.16.840.1.113762.1.4.1146.873_20220119','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1368','36188001','2.16.840.1.113762.1.4.1146.998_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1369','651000146102','2.16.840.1.113762.1.4.1146.878_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1370','1731000119106','2.16.840.1.113762.1.4.1146.1802_20220601','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1371','1731000119106','2.16.840.1.113762.1.4.1146.1801_20220601','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1372','414015000','2.16.840.1.113762.1.4.1146.1922_20221022','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1373','359814004','2.16.840.1.113762.1.4.1146.1922_20221022','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1374','4241002','2.16.840.1.113762.1.4.1146.742_20191227','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1375','4241002','2.16.840.1.113762.1.4.1146.743_20191227','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1376','60826002','2.16.840.1.113762.1.4.1146.744_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1377','60826002','2.16.840.1.113762.1.4.1146.745_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1378','35742006','2.16.840.1.113762.1.4.1146.746_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1379','76272004','2.16.840.1.113762.1.4.1146.746_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1380','111811007','2.16.840.1.113762.1.4.1146.989_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1381','128869009','2.16.840.1.113762.1.4.1146.1815_20220601','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1382','17383000','2.16.840.1.113762.1.4.1146.858_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1383','1214006','2.16.840.1.113762.1.4.1146.1937_20230124','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1384','6452009','2.16.840.1.113762.1.4.1146.1811_20220601','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1385','14683004','2.16.840.1.113762.1.4.1146.1819_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1386','1214006','2.16.840.1.113762.1.4.1146.1938_20230124','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1387','1214006','2.16.840.1.113762.1.4.1146.1939_20230124','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1388','86406008','2.16.840.1.113762.1.4.1146.730_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1389','86406008','2.16.840.1.113762.1.4.1146.731_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1390','23502006','2.16.840.1.113762.1.4.1146.854_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1391','23502006','2.16.840.1.113762.1.4.1146.855_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1392','23502006','2.16.840.1.113762.1.4.1146.856_20200515','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1393','23502006','2.16.840.1.113762.1.4.1146.857_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1394','86406008','2.16.840.1.113762.1.4.1146.726_20200515','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1395','398447004','2.16.840.1.113762.1.4.1146.848_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1396','41723001','2.16.840.1.113762.1.4.1146.1945_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1397','86406008','2.16.840.1.113762.1.4.1146.728_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1398','41723001','2.16.840.1.113762.1.4.1146.1946_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1399','86406008','2.16.840.1.113762.1.4.1146.729_20210527','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1400','41723001','2.16.840.1.113762.1.4.1146.1944_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1401','14683004','2.16.840.1.113762.1.4.1146.1820_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1402','11999007','2.16.840.1.113762.1.4.1146.841_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1403','56717001','2.16.840.1.113762.1.4.1146.841_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1404','11999007','2.16.840.1.113762.1.4.1146.602_20200515','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1405','56717001','2.16.840.1.113762.1.4.1146.602_20200515','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1406','240507007','2.16.840.1.113762.1.4.1146.1958_20230124','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1407','61094002','2.16.840.1.113762.1.4.1146.1956_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1408','404236003','2.16.840.1.113762.1.4.1146.1957_20230124','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1409','61094002','2.16.840.1.113762.1.4.1146.1954_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1410','404236003','2.16.840.1.113762.1.4.1146.1955_20230124','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1411','61094002','2.16.840.1.113762.1.4.1146.1952_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1412','404236003','2.16.840.1.113762.1.4.1146.1953_20230124','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1413','53648006','2.16.840.1.113762.1.4.1146.1726_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1414','80612004','2.16.840.1.113762.1.4.1146.1848_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1415','53648006','2.16.840.1.113762.1.4.1146.1725_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1416','35742006','2.16.840.1.113762.1.4.1146.705_20220602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1417','76272004','2.16.840.1.113762.1.4.1146.705_20220602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1418','80612004','2.16.840.1.113762.1.4.1146.1846_20240620','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1419','240589008','2.16.840.1.113762.1.4.1146.706_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1420','14168008','2.16.840.1.113762.1.4.1146.948_20200515','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1421','80612004','2.16.840.1.113762.1.4.1146.1847_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1422','240589008','2.16.840.1.113762.1.4.1146.707_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1423','14168008','2.16.840.1.113762.1.4.1146.949_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1424','240589008','2.16.840.1.113762.1.4.1146.708_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1425','53648006','2.16.840.1.113762.1.4.1146.1724_20220602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1426','53648006','2.16.840.1.113762.1.4.1146.1723_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1427','240820001','2.16.840.1.113762.1.4.1146.1859_20220603','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1428','65154009','2.16.840.1.113762.1.4.1146.1736_20220602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1429','240820001','2.16.840.1.113762.1.4.1146.1857_20220603','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1430','36653000','2.16.840.1.113762.1.4.1146.816_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1431','409636005','2.16.840.1.113762.1.4.1146.1617_20220115','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1432','414015000','2.16.840.1.113762.1.4.1146.1617_20220115','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1433','240820001','2.16.840.1.113762.1.4.1146.1858_20220603','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1434','93614002','2.16.840.1.113762.1.4.1146.1976_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1435','14189004','2.16.840.1.113762.1.4.1146.818_20181031','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1436','65154009','2.16.840.1.113762.1.4.1146.1735_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1437','80612004','2.16.840.1.113762.1.4.1146.1851_20220603','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1438','707341005','2.16.840.1.113762.1.4.1146.1972_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1439','707341005','2.16.840.1.113762.1.4.1146.1970_20240123','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1440','707341005','2.16.840.1.113762.1.4.1146.1971_20230125','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1441','86406008','2.16.840.1.113762.1.4.1146.1601_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1442','86406008','2.16.840.1.113762.1.4.1146.1600_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1443','86406008','2.16.840.1.113762.1.4.1146.1603_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1444','86406008','2.16.840.1.113762.1.4.1146.1602_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1445','409498004','2.16.840.1.113762.1.4.1146.1082_20200513','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1446','14168008','2.16.840.1.113762.1.4.1146.1081_20200515','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1447','56717001','2.16.840.1.113762.1.4.1146.321_20200515','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1448','60498001','2.16.840.1.113762.1.4.1146.741_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1449','14168008','2.16.840.1.113762.1.4.1146.961_20200515','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1450','398565003','2.16.840.1.113762.1.4.1146.983_20200515','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1451','414488002','2.16.840.1.113762.1.4.1146.983_20200515','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1452','56717001','2.16.840.1.113762.1.4.1146.843_20200515','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1453','409498004','2.16.840.1.113762.1.4.1146.943_20200513','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1454','76272004','2.16.840.1.113762.1.4.1146.747_20220603','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1455','35742006','2.16.840.1.113762.1.4.1146.747_20220603','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1456','409636005','2.16.840.1.113762.1.4.1146.1618_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1457','76272004','2.16.840.1.113762.1.4.1146.1912_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1458','35742006','2.16.840.1.113762.1.4.1146.1912_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1459','76272004','2.16.840.1.113762.1.4.1146.1913_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1460','35742006','2.16.840.1.113762.1.4.1146.1913_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1461','50711007','2.16.840.1.113762.1.4.1146.1634_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1462','50711007','2.16.840.1.113762.1.4.1146.1633_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1463','50711007','2.16.840.1.113762.1.4.1146.1636_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1464','50711007','2.16.840.1.113762.1.4.1146.1635_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1465','409636005','2.16.840.1.113762.1.4.1146.1619_20220119','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1466','49049000','2.16.840.1.113762.1.4.1146.1052_20191227','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1467','81004002','2.16.840.1.113762.1.4.1146.990_20200515','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1468','81004002','2.16.840.1.113762.1.4.1146.992_20200515','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1469','86406008','2.16.840.1.113762.1.4.1146.1597_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1470','86406008','2.16.840.1.113762.1.4.1146.1596_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1471','86406008','2.16.840.1.113762.1.4.1146.1599_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1472','50711007','2.16.840.1.113762.1.4.1146.1632_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1473','56717001','2.16.840.1.113762.1.4.1146.2366_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1474','86406008','2.16.840.1.113762.1.4.1146.1598_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1475','50711007','2.16.840.1.113762.1.4.1146.1631_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1476','56717001','2.16.840.1.113762.1.4.1146.2367_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1477','86406008','2.16.840.1.113762.1.4.1146.732_20200515','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1478','56717001','2.16.840.1.113762.1.4.1146.2144_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1479','56717001','2.16.840.1.113762.1.4.1146.2364_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1480','49049000','2.16.840.1.113762.1.4.1146.1053_20190604','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1481','56717001','2.16.840.1.113762.1.4.1146.2365_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1482','242253008','2.16.840.1.113762.1.4.1146.1078_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1483','86406008','2.16.840.1.113762.1.4.1146.1595_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1484','56717001','2.16.840.1.113762.1.4.1146.2142_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1485','56717001','2.16.840.1.113762.1.4.1146.2362_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1486','76902006','2.16.840.1.113762.1.4.1146.339_20191227','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1487','86406008','2.16.840.1.113762.1.4.1146.1594_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1488','56717001','2.16.840.1.113762.1.4.1146.2143_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1489','56717001','2.16.840.1.113762.1.4.1146.2363_20240619','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1490','14168008','2.16.840.1.113762.1.4.1146.1439_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1491','541131000124102','2.16.840.1.113762.1.4.1146.1777_20220602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1492','14189004','2.16.840.1.113762.1.4.1146.1436_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1493','240523007','2.16.840.1.113762.1.4.1146.1446_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1494','276197005','2.16.840.1.113762.1.4.1146.1435_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1495','398102009','2.16.840.1.113762.1.4.1146.1438_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1496','58750007','2.16.840.1.113762.1.4.1146.1437_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1497','38362002','2.16.840.1.113762.1.4.1146.2163_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1498','414488002','2.16.840.1.113762.1.4.1146.1432_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1499','398565003','2.16.840.1.113762.1.4.1146.1432_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1500','16541001','2.16.840.1.113762.1.4.1146.1443_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1501','67924001','2.16.840.1.113762.1.4.1146.1442_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1502','359814004','2.16.840.1.113762.1.4.1146.2014_20221022','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1503','1857005','2.16.840.1.113762.1.4.1146.2146_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1504','75702008','2.16.840.1.113762.1.4.1146.1434_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1505','23511006','2.16.840.1.113762.1.4.1146.1445_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1506','409498004','2.16.840.1.113762.1.4.1146.1433_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1507','63650001','2.16.840.1.113762.1.4.1146.1444_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1508','56717001','2.16.840.1.113762.1.4.1146.2145_20230122','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1509','398447004','2.16.840.1.113762.1.4.1146.1441_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1510','36989005','2.16.840.1.113762.1.4.1146.2164_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1511','27836007','2.16.840.1.113762.1.4.1146.2165_20230602','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1512','1857005','2.16.840.1.113762.1.4.1146.1440_20220118','eRSD_1.2.4.0');
-INSERT INTO condition_to_valueset VALUES('1513','36653000','2.16.840.1.113762.1.4.1146.1440_20220118','eRSD_1.2.4.0');
--- CREATE TABLE valueset_to_concept (
--- id TEXT PRIMARY KEY,
--- valueset_id TEXT,
--- concept_id TEXT,
--- FOREIGN KEY (valueset_id) REFERENCES valuesets(id),
--- FOREIGN KEY (concept_id) REFERENCES concepts(id)
--- );
-INSERT INTO valueset_to_concept VALUES('1','2.16.840.1.113762.1.4.1146.6_20230602','2.16.840.1.113762.1.4.1146.6_1086051000119107');
-INSERT INTO valueset_to_concept VALUES('2','2.16.840.1.113762.1.4.1146.6_20230602','2.16.840.1.113762.1.4.1146.6_1086061000119109');
-INSERT INTO valueset_to_concept VALUES('3','2.16.840.1.113762.1.4.1146.6_20230602','2.16.840.1.113762.1.4.1146.6_1086071000119103');
-INSERT INTO valueset_to_concept VALUES('4','2.16.840.1.113762.1.4.1146.6_20230602','2.16.840.1.113762.1.4.1146.6_1090211000119102');
-INSERT INTO valueset_to_concept VALUES('5','2.16.840.1.113762.1.4.1146.6_20230602','2.16.840.1.113762.1.4.1146.6_1177005009');
-INSERT INTO valueset_to_concept VALUES('6','2.16.840.1.113762.1.4.1146.6_20230602','2.16.840.1.113762.1.4.1146.6_1259059003');
-INSERT INTO valueset_to_concept VALUES('7','2.16.840.1.113762.1.4.1146.6_20230602','2.16.840.1.113762.1.4.1146.6_129667001');
-INSERT INTO valueset_to_concept VALUES('8','2.16.840.1.113762.1.4.1146.6_20230602','2.16.840.1.113762.1.4.1146.6_13596001');
-INSERT INTO valueset_to_concept VALUES('9','2.16.840.1.113762.1.4.1146.6_20230602','2.16.840.1.113762.1.4.1146.6_15682004');
-INSERT INTO valueset_to_concept VALUES('10','2.16.840.1.113762.1.4.1146.6_20230602','2.16.840.1.113762.1.4.1146.6_186347006');
-INSERT INTO valueset_to_concept VALUES('11','2.16.840.1.113762.1.4.1146.6_20230602','2.16.840.1.113762.1.4.1146.6_18901009');
-INSERT INTO valueset_to_concept VALUES('12','2.16.840.1.113762.1.4.1146.6_20230602','2.16.840.1.113762.1.4.1146.6_194945009');
-INSERT INTO valueset_to_concept VALUES('13','2.16.840.1.113762.1.4.1146.6_20230602','2.16.840.1.113762.1.4.1146.6_230596007');
-INSERT INTO valueset_to_concept VALUES('14','2.16.840.1.113762.1.4.1146.6_20230602','2.16.840.1.113762.1.4.1146.6_240422004');
-INSERT INTO valueset_to_concept VALUES('15','2.16.840.1.113762.1.4.1146.6_20230602','2.16.840.1.113762.1.4.1146.6_26117009');
-INSERT INTO valueset_to_concept VALUES('16','2.16.840.1.113762.1.4.1146.6_20230602','2.16.840.1.113762.1.4.1146.6_276197005');
-INSERT INTO valueset_to_concept VALUES('17','2.16.840.1.113762.1.4.1146.6_20230602','2.16.840.1.113762.1.4.1146.6_3419005');
-INSERT INTO valueset_to_concept VALUES('18','2.16.840.1.113762.1.4.1146.6_20230602','2.16.840.1.113762.1.4.1146.6_397428000');
-INSERT INTO valueset_to_concept VALUES('19','2.16.840.1.113762.1.4.1146.6_20230602','2.16.840.1.113762.1.4.1146.6_397430003');
-INSERT INTO valueset_to_concept VALUES('20','2.16.840.1.113762.1.4.1146.6_20230602','2.16.840.1.113762.1.4.1146.6_48278001');
-INSERT INTO valueset_to_concept VALUES('21','2.16.840.1.113762.1.4.1146.6_20230602','2.16.840.1.113762.1.4.1146.6_50215002');
-INSERT INTO valueset_to_concept VALUES('22','2.16.840.1.113762.1.4.1146.6_20230602','2.16.840.1.113762.1.4.1146.6_715659006');
-INSERT INTO valueset_to_concept VALUES('23','2.16.840.1.113762.1.4.1146.6_20230602','2.16.840.1.113762.1.4.1146.6_75589004');
-INSERT INTO valueset_to_concept VALUES('24','2.16.840.1.113762.1.4.1146.6_20230602','2.16.840.1.113762.1.4.1146.6_7773002');
-INSERT INTO valueset_to_concept VALUES('25','2.16.840.1.113762.1.4.1146.6_20230602','2.16.840.1.113762.1.4.1146.6_789005009');
-INSERT INTO valueset_to_concept VALUES('26','2.16.840.1.113762.1.4.1146.2030_20230125','2.16.840.1.113762.1.4.1146.2030_1141789006');
-INSERT INTO valueset_to_concept VALUES('27','2.16.840.1.113762.1.4.1146.2030_20230125','2.16.840.1.113762.1.4.1146.2030_410472006');
-INSERT INTO valueset_to_concept VALUES('28','2.16.840.1.113762.1.4.1146.2030_20230125','2.16.840.1.113762.1.4.1146.2030_79974007');
-INSERT INTO valueset_to_concept VALUES('29','2.16.840.1.113762.1.4.1146.2151_20230122','2.16.840.1.113762.1.4.1146.2151_Q16.0');
-INSERT INTO valueset_to_concept VALUES('30','2.16.840.1.113762.1.4.1146.2151_20230122','2.16.840.1.113762.1.4.1146.2151_Q16.1');
-INSERT INTO valueset_to_concept VALUES('31','2.16.840.1.113762.1.4.1146.2151_20230122','2.16.840.1.113762.1.4.1146.2151_Q16.2');
-INSERT INTO valueset_to_concept VALUES('32','2.16.840.1.113762.1.4.1146.2151_20230122','2.16.840.1.113762.1.4.1146.2151_Q16.3');
-INSERT INTO valueset_to_concept VALUES('33','2.16.840.1.113762.1.4.1146.2151_20230122','2.16.840.1.113762.1.4.1146.2151_Q16.4');
-INSERT INTO valueset_to_concept VALUES('34','2.16.840.1.113762.1.4.1146.2151_20230122','2.16.840.1.113762.1.4.1146.2151_Q16.5');
-INSERT INTO valueset_to_concept VALUES('35','2.16.840.1.113762.1.4.1146.2151_20230122','2.16.840.1.113762.1.4.1146.2151_Q16.9');
-INSERT INTO valueset_to_concept VALUES('36','2.16.840.1.113762.1.4.1146.2031_20230125','2.16.840.1.113762.1.4.1146.2031_1141788003');
-INSERT INTO valueset_to_concept VALUES('37','2.16.840.1.113762.1.4.1146.2031_20230125','2.16.840.1.113762.1.4.1146.2031_82214002');
-INSERT INTO valueset_to_concept VALUES('38','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_12898000');
-INSERT INTO valueset_to_concept VALUES('39','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_13187008');
-INSERT INTO valueset_to_concept VALUES('40','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_18052008');
-INSERT INTO valueset_to_concept VALUES('41','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_216463005');
-INSERT INTO valueset_to_concept VALUES('42','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_216464004');
-INSERT INTO valueset_to_concept VALUES('43','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_216466002');
-INSERT INTO valueset_to_concept VALUES('44','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_216467006');
-INSERT INTO valueset_to_concept VALUES('45','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_216468001');
-INSERT INTO valueset_to_concept VALUES('46','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_216494005');
-INSERT INTO valueset_to_concept VALUES('47','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_241750009');
-INSERT INTO valueset_to_concept VALUES('48','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_242253008');
-INSERT INTO valueset_to_concept VALUES('49','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_242829007');
-INSERT INTO valueset_to_concept VALUES('50','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_242830002');
-INSERT INTO valueset_to_concept VALUES('51','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_242831003');
-INSERT INTO valueset_to_concept VALUES('52','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_290151009');
-INSERT INTO valueset_to_concept VALUES('53','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_290153007');
-INSERT INTO valueset_to_concept VALUES('54','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_290154001');
-INSERT INTO valueset_to_concept VALUES('55','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_290155000');
-INSERT INTO valueset_to_concept VALUES('56','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_290157008');
-INSERT INTO valueset_to_concept VALUES('57','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_290158003');
-INSERT INTO valueset_to_concept VALUES('58','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_290159006');
-INSERT INTO valueset_to_concept VALUES('59','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_290160001');
-INSERT INTO valueset_to_concept VALUES('60','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_290162009');
-INSERT INTO valueset_to_concept VALUES('61','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_290163004');
-INSERT INTO valueset_to_concept VALUES('62','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_290164005');
-INSERT INTO valueset_to_concept VALUES('63','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_290166007');
-INSERT INTO valueset_to_concept VALUES('64','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_290167003');
-INSERT INTO valueset_to_concept VALUES('65','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_290168008');
-INSERT INTO valueset_to_concept VALUES('66','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_290171000');
-INSERT INTO valueset_to_concept VALUES('67','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_290173002');
-INSERT INTO valueset_to_concept VALUES('68','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_290174008');
-INSERT INTO valueset_to_concept VALUES('69','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_290175009');
-INSERT INTO valueset_to_concept VALUES('70','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_290176005');
-INSERT INTO valueset_to_concept VALUES('71','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_290179003');
-INSERT INTO valueset_to_concept VALUES('72','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_290182008');
-INSERT INTO valueset_to_concept VALUES('73','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_290184009');
-INSERT INTO valueset_to_concept VALUES('74','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_290185005');
-INSERT INTO valueset_to_concept VALUES('75','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_290188007');
-INSERT INTO valueset_to_concept VALUES('76','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_290189004');
-INSERT INTO valueset_to_concept VALUES('77','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_290190008');
-INSERT INTO valueset_to_concept VALUES('78','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_290193005');
-INSERT INTO valueset_to_concept VALUES('79','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_290196002');
-INSERT INTO valueset_to_concept VALUES('80','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_290197006');
-INSERT INTO valueset_to_concept VALUES('81','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_290198001');
-INSERT INTO valueset_to_concept VALUES('82','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_290199009');
-INSERT INTO valueset_to_concept VALUES('83','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_290201006');
-INSERT INTO valueset_to_concept VALUES('84','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_290202004');
-INSERT INTO valueset_to_concept VALUES('85','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_290203009');
-INSERT INTO valueset_to_concept VALUES('86','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_290206001');
-INSERT INTO valueset_to_concept VALUES('87','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_290208000');
-INSERT INTO valueset_to_concept VALUES('88','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_290209008');
-INSERT INTO valueset_to_concept VALUES('89','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_290210003');
-INSERT INTO valueset_to_concept VALUES('90','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_290212006');
-INSERT INTO valueset_to_concept VALUES('91','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_290213001');
-INSERT INTO valueset_to_concept VALUES('92','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_290214007');
-INSERT INTO valueset_to_concept VALUES('93','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_290216009');
-INSERT INTO valueset_to_concept VALUES('94','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_290217000');
-INSERT INTO valueset_to_concept VALUES('95','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_290218005');
-INSERT INTO valueset_to_concept VALUES('96','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_295140007');
-INSERT INTO valueset_to_concept VALUES('97','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_295141006');
-INSERT INTO valueset_to_concept VALUES('98','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_295142004');
-INSERT INTO valueset_to_concept VALUES('99','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_295144003');
-INSERT INTO valueset_to_concept VALUES('100','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_295145002');
-INSERT INTO valueset_to_concept VALUES('101','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_295146001');
-INSERT INTO valueset_to_concept VALUES('102','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_295148000');
-INSERT INTO valueset_to_concept VALUES('103','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_295149008');
-INSERT INTO valueset_to_concept VALUES('104','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_295150008');
-INSERT INTO valueset_to_concept VALUES('105','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_295151007');
-INSERT INTO valueset_to_concept VALUES('106','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_295153005');
-INSERT INTO valueset_to_concept VALUES('107','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_295154004');
-INSERT INTO valueset_to_concept VALUES('108','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_295155003');
-INSERT INTO valueset_to_concept VALUES('109','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_295157006');
-INSERT INTO valueset_to_concept VALUES('110','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_295158001');
-INSERT INTO valueset_to_concept VALUES('111','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_295159009');
-INSERT INTO valueset_to_concept VALUES('112','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_295161000');
-INSERT INTO valueset_to_concept VALUES('113','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_295163002');
-INSERT INTO valueset_to_concept VALUES('114','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_295165009');
-INSERT INTO valueset_to_concept VALUES('115','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_295166005');
-INSERT INTO valueset_to_concept VALUES('116','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_295167001');
-INSERT INTO valueset_to_concept VALUES('117','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_295168006');
-INSERT INTO valueset_to_concept VALUES('118','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_295170002');
-INSERT INTO valueset_to_concept VALUES('119','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_295171003');
-INSERT INTO valueset_to_concept VALUES('120','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_295172005');
-INSERT INTO valueset_to_concept VALUES('121','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_295174006');
-INSERT INTO valueset_to_concept VALUES('122','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_295175007');
-INSERT INTO valueset_to_concept VALUES('123','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_295177004');
-INSERT INTO valueset_to_concept VALUES('124','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_295178009');
-INSERT INTO valueset_to_concept VALUES('125','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_295180003');
-INSERT INTO valueset_to_concept VALUES('126','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_295181004');
-INSERT INTO valueset_to_concept VALUES('127','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_295182006');
-INSERT INTO valueset_to_concept VALUES('128','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_295184007');
-INSERT INTO valueset_to_concept VALUES('129','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_295185008');
-INSERT INTO valueset_to_concept VALUES('130','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_295186009');
-INSERT INTO valueset_to_concept VALUES('131','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_295188005');
-INSERT INTO valueset_to_concept VALUES('132','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_295189002');
-INSERT INTO valueset_to_concept VALUES('133','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_295190006');
-INSERT INTO valueset_to_concept VALUES('134','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_295191005');
-INSERT INTO valueset_to_concept VALUES('135','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_295193008');
-INSERT INTO valueset_to_concept VALUES('136','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_295194002');
-INSERT INTO valueset_to_concept VALUES('137','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_295195001');
-INSERT INTO valueset_to_concept VALUES('138','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_295197009');
-INSERT INTO valueset_to_concept VALUES('139','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_295198004');
-INSERT INTO valueset_to_concept VALUES('140','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_295199007');
-INSERT INTO valueset_to_concept VALUES('141','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_295201009');
-INSERT INTO valueset_to_concept VALUES('142','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_295202002');
-INSERT INTO valueset_to_concept VALUES('143','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_295203007');
-INSERT INTO valueset_to_concept VALUES('144','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_295205000');
-INSERT INTO valueset_to_concept VALUES('145','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_295206004');
-INSERT INTO valueset_to_concept VALUES('146','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_295207008');
-INSERT INTO valueset_to_concept VALUES('147','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_295209006');
-INSERT INTO valueset_to_concept VALUES('148','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_295210001');
-INSERT INTO valueset_to_concept VALUES('149','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_295211002');
-INSERT INTO valueset_to_concept VALUES('150','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_296515004');
-INSERT INTO valueset_to_concept VALUES('151','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_297199006');
-INSERT INTO valueset_to_concept VALUES('152','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_432353006');
-INSERT INTO valueset_to_concept VALUES('153','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_461001000124107');
-INSERT INTO valueset_to_concept VALUES('154','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_461011000124105');
-INSERT INTO valueset_to_concept VALUES('155','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_461041000124109');
-INSERT INTO valueset_to_concept VALUES('156','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_47836003');
-INSERT INTO valueset_to_concept VALUES('157','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_60199004');
-INSERT INTO valueset_to_concept VALUES('158','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_68099003');
-INSERT INTO valueset_to_concept VALUES('159','2.16.840.1.113762.1.4.1146.1063_20191227','2.16.840.1.113762.1.4.1146.1063_74264003');
-INSERT INTO valueset_to_concept VALUES('160','2.16.840.1.113762.1.4.1146.360_20220603','2.16.840.1.113762.1.4.1146.360_A05.1');
-INSERT INTO valueset_to_concept VALUES('161','2.16.840.1.113762.1.4.1146.360_20220603','2.16.840.1.113762.1.4.1146.360_A48.52');
-INSERT INTO valueset_to_concept VALUES('162','2.16.840.1.113762.1.4.1146.360_20220603','2.16.840.1.113762.1.4.1146.360_A48.51');
-INSERT INTO valueset_to_concept VALUES('163','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_1010606009');
-INSERT INTO valueset_to_concept VALUES('164','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_1010610007');
-INSERT INTO valueset_to_concept VALUES('165','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_1010636000');
-INSERT INTO valueset_to_concept VALUES('166','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_1010638004');
-INSERT INTO valueset_to_concept VALUES('167','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_10170007');
-INSERT INTO valueset_to_concept VALUES('168','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_111339003');
-INSERT INTO valueset_to_concept VALUES('169','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_1167372000');
-INSERT INTO valueset_to_concept VALUES('170','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_1208614008');
-INSERT INTO valueset_to_concept VALUES('171','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_1228871002');
-INSERT INTO valueset_to_concept VALUES('172','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_1230014007');
-INSERT INTO valueset_to_concept VALUES('173','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_1271009');
-INSERT INTO valueset_to_concept VALUES('174','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_15984431000119109');
-INSERT INTO valueset_to_concept VALUES('175','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_15984471000119107');
-INSERT INTO valueset_to_concept VALUES('176','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_15984511000119103');
-INSERT INTO valueset_to_concept VALUES('177','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_15984551000119102');
-INSERT INTO valueset_to_concept VALUES('178','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_15984591000119107');
-INSERT INTO valueset_to_concept VALUES('179','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_15984631000119107');
-INSERT INTO valueset_to_concept VALUES('180','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_232057003');
-INSERT INTO valueset_to_concept VALUES('181','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_232058008');
-INSERT INTO valueset_to_concept VALUES('182','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_232335002');
-INSERT INTO valueset_to_concept VALUES('183','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_236529001');
-INSERT INTO valueset_to_concept VALUES('184','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_237617006');
-INSERT INTO valueset_to_concept VALUES('185','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_238047006');
-INSERT INTO valueset_to_concept VALUES('186','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_239010003');
-INSERT INTO valueset_to_concept VALUES('187','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_239059004');
-INSERT INTO valueset_to_concept VALUES('188','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_24559001');
-INSERT INTO valueset_to_concept VALUES('189','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_2625009');
-INSERT INTO valueset_to_concept VALUES('190','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_290006');
-INSERT INTO valueset_to_concept VALUES('191','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_373905003');
-INSERT INTO valueset_to_concept VALUES('192','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_403780007');
-INSERT INTO valueset_to_concept VALUES('193','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_403805009');
-INSERT INTO valueset_to_concept VALUES('194','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_47434006');
-INSERT INTO valueset_to_concept VALUES('195','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_54036001');
-INSERT INTO valueset_to_concept VALUES('196','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_57838006');
-INSERT INTO valueset_to_concept VALUES('197','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_67817003');
-INSERT INTO valueset_to_concept VALUES('198','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_698615007');
-INSERT INTO valueset_to_concept VALUES('199','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_699238006');
-INSERT INTO valueset_to_concept VALUES('200','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_699316006');
-INSERT INTO valueset_to_concept VALUES('201','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_700112007');
-INSERT INTO valueset_to_concept VALUES('202','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_702360007');
-INSERT INTO valueset_to_concept VALUES('203','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_702362004');
-INSERT INTO valueset_to_concept VALUES('204','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_70348004');
-INSERT INTO valueset_to_concept VALUES('205','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_711409002');
-INSERT INTO valueset_to_concept VALUES('206','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_715527006');
-INSERT INTO valueset_to_concept VALUES('207','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_715529009');
-INSERT INTO valueset_to_concept VALUES('208','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_715952000');
-INSERT INTO valueset_to_concept VALUES('209','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_716238003');
-INSERT INTO valueset_to_concept VALUES('210','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_716243005');
-INSERT INTO valueset_to_concept VALUES('211','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_716245003');
-INSERT INTO valueset_to_concept VALUES('212','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_717183001');
-INSERT INTO valueset_to_concept VALUES('213','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_717761005');
-INSERT INTO valueset_to_concept VALUES('214','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_717791000');
-INSERT INTO valueset_to_concept VALUES('215','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_717944002');
-INSERT INTO valueset_to_concept VALUES('216','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_718714006');
-INSERT INTO valueset_to_concept VALUES('217','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_719305006');
-INSERT INTO valueset_to_concept VALUES('218','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_719689005');
-INSERT INTO valueset_to_concept VALUES('219','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_719800009');
-INSERT INTO valueset_to_concept VALUES('220','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_720567008');
-INSERT INTO valueset_to_concept VALUES('221','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_720612000');
-INSERT INTO valueset_to_concept VALUES('222','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_720957007');
-INSERT INTO valueset_to_concept VALUES('223','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_721087008');
-INSERT INTO valueset_to_concept VALUES('224','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_721221000');
-INSERT INTO valueset_to_concept VALUES('225','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_721584005');
-INSERT INTO valueset_to_concept VALUES('226','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_722019000');
-INSERT INTO valueset_to_concept VALUES('227','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_722213009');
-INSERT INTO valueset_to_concept VALUES('228','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_722285005');
-INSERT INTO valueset_to_concept VALUES('229','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_722378009');
-INSERT INTO valueset_to_concept VALUES('230','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_722389002');
-INSERT INTO valueset_to_concept VALUES('231','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_722476007');
-INSERT INTO valueset_to_concept VALUES('232','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_725137007');
-INSERT INTO valueset_to_concept VALUES('233','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_726621009');
-INSERT INTO valueset_to_concept VALUES('234','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_73119000');
-INSERT INTO valueset_to_concept VALUES('235','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_732248005');
-INSERT INTO valueset_to_concept VALUES('236','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_733065003');
-INSERT INTO valueset_to_concept VALUES('237','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_733069009');
-INSERT INTO valueset_to_concept VALUES('238','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_733071009');
-INSERT INTO valueset_to_concept VALUES('239','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_733089005');
-INSERT INTO valueset_to_concept VALUES('240','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_733419006');
-INSERT INTO valueset_to_concept VALUES('241','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_734022008');
-INSERT INTO valueset_to_concept VALUES('242','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_763136000');
-INSERT INTO valueset_to_concept VALUES('243','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_763279007');
-INSERT INTO valueset_to_concept VALUES('244','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_763688008');
-INSERT INTO valueset_to_concept VALUES('245','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_763774001');
-INSERT INTO valueset_to_concept VALUES('246','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_764098007');
-INSERT INTO valueset_to_concept VALUES('247','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_764810000');
-INSERT INTO valueset_to_concept VALUES('248','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_765325002');
-INSERT INTO valueset_to_concept VALUES('249','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_766249007');
-INSERT INTO valueset_to_concept VALUES('250','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_766870005');
-INSERT INTO valueset_to_concept VALUES('251','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_770751003');
-INSERT INTO valueset_to_concept VALUES('252','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_770784003');
-INSERT INTO valueset_to_concept VALUES('253','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_770944002');
-INSERT INTO valueset_to_concept VALUES('254','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_773398005');
-INSERT INTO valueset_to_concept VALUES('255','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_773406003');
-INSERT INTO valueset_to_concept VALUES('256','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_773575001');
-INSERT INTO valueset_to_concept VALUES('257','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_773583007');
-INSERT INTO valueset_to_concept VALUES('258','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_773648002');
-INSERT INTO valueset_to_concept VALUES('259','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_773665006');
-INSERT INTO valueset_to_concept VALUES('260','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_773667003');
-INSERT INTO valueset_to_concept VALUES('261','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_773735007');
-INSERT INTO valueset_to_concept VALUES('262','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_782942003');
-INSERT INTO valueset_to_concept VALUES('263','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_783097004');
-INSERT INTO valueset_to_concept VALUES('264','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_783742004');
-INSERT INTO valueset_to_concept VALUES('265','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_79665007');
-INSERT INTO valueset_to_concept VALUES('266','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_93466004');
-INSERT INTO valueset_to_concept VALUES('267','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_95827002');
-INSERT INTO valueset_to_concept VALUES('268','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_95828007');
-INSERT INTO valueset_to_concept VALUES('269','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_1172635005');
-INSERT INTO valueset_to_concept VALUES('270','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_715506001');
-INSERT INTO valueset_to_concept VALUES('271','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_717909004');
-INSERT INTO valueset_to_concept VALUES('272','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_718574003');
-INSERT INTO valueset_to_concept VALUES('273','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_777998000');
-INSERT INTO valueset_to_concept VALUES('274','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_1187039001');
-INSERT INTO valueset_to_concept VALUES('275','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_186570004');
-INSERT INTO valueset_to_concept VALUES('276','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_700453005');
-INSERT INTO valueset_to_concept VALUES('277','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_716007007');
-INSERT INTO valueset_to_concept VALUES('278','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_737344003');
-INSERT INTO valueset_to_concept VALUES('279','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_737377004');
-INSERT INTO valueset_to_concept VALUES('280','2.16.840.1.113762.1.4.1146.2150_20240123','2.16.840.1.113762.1.4.1146.2150_778006008');
-INSERT INTO valueset_to_concept VALUES('281','2.16.840.1.113762.1.4.1146.120_20210527','2.16.840.1.113762.1.4.1146.120_1089801000119108');
-INSERT INTO valueset_to_concept VALUES('282','2.16.840.1.113762.1.4.1146.120_20210527','2.16.840.1.113762.1.4.1146.120_127181000119102');
-INSERT INTO valueset_to_concept VALUES('283','2.16.840.1.113762.1.4.1146.120_20210527','2.16.840.1.113762.1.4.1146.120_127311000119106');
-INSERT INTO valueset_to_concept VALUES('284','2.16.840.1.113762.1.4.1146.120_20210527','2.16.840.1.113762.1.4.1146.120_186365005');
-INSERT INTO valueset_to_concept VALUES('285','2.16.840.1.113762.1.4.1146.120_20210527','2.16.840.1.113762.1.4.1146.120_194906004');
-INSERT INTO valueset_to_concept VALUES('286','2.16.840.1.113762.1.4.1146.120_20210527','2.16.840.1.113762.1.4.1146.120_194950003');
-INSERT INTO valueset_to_concept VALUES('287','2.16.840.1.113762.1.4.1146.120_20210527','2.16.840.1.113762.1.4.1146.120_232402006');
-INSERT INTO valueset_to_concept VALUES('288','2.16.840.1.113762.1.4.1146.120_20210527','2.16.840.1.113762.1.4.1146.120_233608005');
-INSERT INTO valueset_to_concept VALUES('289','2.16.840.1.113762.1.4.1146.120_20210527','2.16.840.1.113762.1.4.1146.120_23511006');
-INSERT INTO valueset_to_concept VALUES('290','2.16.840.1.113762.1.4.1146.120_20210527','2.16.840.1.113762.1.4.1146.120_238425003');
-INSERT INTO valueset_to_concept VALUES('291','2.16.840.1.113762.1.4.1146.120_20210527','2.16.840.1.113762.1.4.1146.120_240427005');
-INSERT INTO valueset_to_concept VALUES('292','2.16.840.1.113762.1.4.1146.120_20210527','2.16.840.1.113762.1.4.1146.120_33618002');
-INSERT INTO valueset_to_concept VALUES('293','2.16.840.1.113762.1.4.1146.120_20210527','2.16.840.1.113762.1.4.1146.120_34845009');
-INSERT INTO valueset_to_concept VALUES('294','2.16.840.1.113762.1.4.1146.120_20210527','2.16.840.1.113762.1.4.1146.120_36102002');
-INSERT INTO valueset_to_concept VALUES('295','2.16.840.1.113762.1.4.1146.120_20210527','2.16.840.1.113762.1.4.1146.120_4089001');
-INSERT INTO valueset_to_concept VALUES('296','2.16.840.1.113762.1.4.1146.120_20210527','2.16.840.1.113762.1.4.1146.120_66704002');
-INSERT INTO valueset_to_concept VALUES('297','2.16.840.1.113762.1.4.1146.120_20210527','2.16.840.1.113762.1.4.1146.120_707225006');
-INSERT INTO valueset_to_concept VALUES('298','2.16.840.1.113762.1.4.1146.120_20210527','2.16.840.1.113762.1.4.1146.120_73431005');
-INSERT INTO valueset_to_concept VALUES('299','2.16.840.1.113762.1.4.1146.120_20210527','2.16.840.1.113762.1.4.1146.120_91468009');
-INSERT INTO valueset_to_concept VALUES('300','2.16.840.1.113762.1.4.1146.120_20210527','2.16.840.1.113762.1.4.1146.120_94151004');
-INSERT INTO valueset_to_concept VALUES('301','2.16.840.1.113762.1.4.1146.120_20210527','2.16.840.1.113762.1.4.1146.120_9467007');
-INSERT INTO valueset_to_concept VALUES('302','2.16.840.1.113762.1.4.1146.120_20210527','2.16.840.1.113762.1.4.1146.120_192644005');
-INSERT INTO valueset_to_concept VALUES('303','2.16.840.1.113762.1.4.1146.120_20210527','2.16.840.1.113762.1.4.1146.120_313437008');
-INSERT INTO valueset_to_concept VALUES('304','2.16.840.1.113762.1.4.1146.120_20210527','2.16.840.1.113762.1.4.1146.120_314130008');
-INSERT INTO valueset_to_concept VALUES('305','2.16.840.1.113762.1.4.1146.120_20210527','2.16.840.1.113762.1.4.1146.120_18071005');
-INSERT INTO valueset_to_concept VALUES('306','2.16.840.1.113762.1.4.1146.120_20210527','2.16.840.1.113762.1.4.1146.120_860805006');
-INSERT INTO valueset_to_concept VALUES('307','2.16.840.1.113762.1.4.1146.362_20210527','2.16.840.1.113762.1.4.1146.362_128215004');
-INSERT INTO valueset_to_concept VALUES('308','2.16.840.1.113762.1.4.1146.362_20210527','2.16.840.1.113762.1.4.1146.362_14386001');
-INSERT INTO valueset_to_concept VALUES('309','2.16.840.1.113762.1.4.1146.362_20210527','2.16.840.1.113762.1.4.1146.362_187259004');
-INSERT INTO valueset_to_concept VALUES('310','2.16.840.1.113762.1.4.1146.362_20210527','2.16.840.1.113762.1.4.1146.362_21560005');
-INSERT INTO valueset_to_concept VALUES('311','2.16.840.1.113762.1.4.1146.362_20210527','2.16.840.1.113762.1.4.1146.362_228007');
-INSERT INTO valueset_to_concept VALUES('312','2.16.840.1.113762.1.4.1146.362_20210527','2.16.840.1.113762.1.4.1146.362_240401005');
-INSERT INTO valueset_to_concept VALUES('313','2.16.840.1.113762.1.4.1146.362_20210527','2.16.840.1.113762.1.4.1146.362_240402003');
-INSERT INTO valueset_to_concept VALUES('314','2.16.840.1.113762.1.4.1146.362_20210527','2.16.840.1.113762.1.4.1146.362_240403008');
-INSERT INTO valueset_to_concept VALUES('315','2.16.840.1.113762.1.4.1146.362_20210527','2.16.840.1.113762.1.4.1146.362_240404002');
-INSERT INTO valueset_to_concept VALUES('316','2.16.840.1.113762.1.4.1146.362_20210527','2.16.840.1.113762.1.4.1146.362_240405001');
-INSERT INTO valueset_to_concept VALUES('317','2.16.840.1.113762.1.4.1146.362_20210527','2.16.840.1.113762.1.4.1146.362_240406000');
-INSERT INTO valueset_to_concept VALUES('318','2.16.840.1.113762.1.4.1146.362_20210527','2.16.840.1.113762.1.4.1146.362_240407009');
-INSERT INTO valueset_to_concept VALUES('319','2.16.840.1.113762.1.4.1146.362_20210527','2.16.840.1.113762.1.4.1146.362_240408004');
-INSERT INTO valueset_to_concept VALUES('320','2.16.840.1.113762.1.4.1146.362_20210527','2.16.840.1.113762.1.4.1146.362_240409007');
-INSERT INTO valueset_to_concept VALUES('321','2.16.840.1.113762.1.4.1146.362_20210527','2.16.840.1.113762.1.4.1146.362_240410002');
-INSERT INTO valueset_to_concept VALUES('322','2.16.840.1.113762.1.4.1146.362_20210527','2.16.840.1.113762.1.4.1146.362_240412005');
-INSERT INTO valueset_to_concept VALUES('323','2.16.840.1.113762.1.4.1146.362_20210527','2.16.840.1.113762.1.4.1146.362_400008009');
-INSERT INTO valueset_to_concept VALUES('324','2.16.840.1.113762.1.4.1146.362_20210527','2.16.840.1.113762.1.4.1146.362_400154003');
-INSERT INTO valueset_to_concept VALUES('325','2.16.840.1.113762.1.4.1146.362_20210527','2.16.840.1.113762.1.4.1146.362_414600000');
-INSERT INTO valueset_to_concept VALUES('326','2.16.840.1.113762.1.4.1146.362_20210527','2.16.840.1.113762.1.4.1146.362_416257001');
-INSERT INTO valueset_to_concept VALUES('327','2.16.840.1.113762.1.4.1146.362_20210527','2.16.840.1.113762.1.4.1146.362_416483009');
-INSERT INTO valueset_to_concept VALUES('328','2.16.840.1.113762.1.4.1146.362_20210527','2.16.840.1.113762.1.4.1146.362_416597004');
-INSERT INTO valueset_to_concept VALUES('329','2.16.840.1.113762.1.4.1146.362_20210527','2.16.840.1.113762.1.4.1146.362_5631000124102');
-INSERT INTO valueset_to_concept VALUES('330','2.16.840.1.113762.1.4.1146.362_20210527','2.16.840.1.113762.1.4.1146.362_711171008');
-INSERT INTO valueset_to_concept VALUES('331','2.16.840.1.113762.1.4.1146.362_20210527','2.16.840.1.113762.1.4.1146.362_838360003');
-INSERT INTO valueset_to_concept VALUES('332','2.16.840.1.113762.1.4.1146.362_20210527','2.16.840.1.113762.1.4.1146.362_870352009');
-INSERT INTO valueset_to_concept VALUES('333','2.16.840.1.113762.1.4.1146.362_20210527','2.16.840.1.113762.1.4.1146.362_70143003');
-INSERT INTO valueset_to_concept VALUES('334','2.16.840.1.113762.1.4.1146.362_20210527','2.16.840.1.113762.1.4.1146.362_81004002');
-INSERT INTO valueset_to_concept VALUES('335','2.16.840.1.113762.1.4.1146.121_20220603','2.16.840.1.113762.1.4.1146.121_A39.1');
-INSERT INTO valueset_to_concept VALUES('336','2.16.840.1.113762.1.4.1146.121_20220603','2.16.840.1.113762.1.4.1146.121_A39.2');
-INSERT INTO valueset_to_concept VALUES('337','2.16.840.1.113762.1.4.1146.121_20220603','2.16.840.1.113762.1.4.1146.121_A39.4');
-INSERT INTO valueset_to_concept VALUES('338','2.16.840.1.113762.1.4.1146.121_20220603','2.16.840.1.113762.1.4.1146.121_A39.50');
-INSERT INTO valueset_to_concept VALUES('339','2.16.840.1.113762.1.4.1146.121_20220603','2.16.840.1.113762.1.4.1146.121_A39.51');
-INSERT INTO valueset_to_concept VALUES('340','2.16.840.1.113762.1.4.1146.121_20220603','2.16.840.1.113762.1.4.1146.121_A39.52');
-INSERT INTO valueset_to_concept VALUES('341','2.16.840.1.113762.1.4.1146.121_20220603','2.16.840.1.113762.1.4.1146.121_A39.53');
-INSERT INTO valueset_to_concept VALUES('342','2.16.840.1.113762.1.4.1146.121_20220603','2.16.840.1.113762.1.4.1146.121_A39.82');
-INSERT INTO valueset_to_concept VALUES('343','2.16.840.1.113762.1.4.1146.121_20220603','2.16.840.1.113762.1.4.1146.121_A39.83');
-INSERT INTO valueset_to_concept VALUES('344','2.16.840.1.113762.1.4.1146.121_20220603','2.16.840.1.113762.1.4.1146.121_A39.89');
-INSERT INTO valueset_to_concept VALUES('345','2.16.840.1.113762.1.4.1146.121_20220603','2.16.840.1.113762.1.4.1146.121_A39.9');
-INSERT INTO valueset_to_concept VALUES('346','2.16.840.1.113762.1.4.1146.121_20220603','2.16.840.1.113762.1.4.1146.121_A39.0');
-INSERT INTO valueset_to_concept VALUES('347','2.16.840.1.113762.1.4.1146.121_20220603','2.16.840.1.113762.1.4.1146.121_A39.81');
-INSERT INTO valueset_to_concept VALUES('348','2.16.840.1.113762.1.4.1146.363_20181031','2.16.840.1.113762.1.4.1146.363_A30');
-INSERT INTO valueset_to_concept VALUES('349','2.16.840.1.113762.1.4.1146.363_20181031','2.16.840.1.113762.1.4.1146.363_A30.0');
-INSERT INTO valueset_to_concept VALUES('350','2.16.840.1.113762.1.4.1146.363_20181031','2.16.840.1.113762.1.4.1146.363_A30.1');
-INSERT INTO valueset_to_concept VALUES('351','2.16.840.1.113762.1.4.1146.363_20181031','2.16.840.1.113762.1.4.1146.363_A30.2');
-INSERT INTO valueset_to_concept VALUES('352','2.16.840.1.113762.1.4.1146.363_20181031','2.16.840.1.113762.1.4.1146.363_A30.3');
-INSERT INTO valueset_to_concept VALUES('353','2.16.840.1.113762.1.4.1146.363_20181031','2.16.840.1.113762.1.4.1146.363_A30.4');
-INSERT INTO valueset_to_concept VALUES('354','2.16.840.1.113762.1.4.1146.363_20181031','2.16.840.1.113762.1.4.1146.363_A30.5');
-INSERT INTO valueset_to_concept VALUES('355','2.16.840.1.113762.1.4.1146.363_20181031','2.16.840.1.113762.1.4.1146.363_A30.8');
-INSERT INTO valueset_to_concept VALUES('356','2.16.840.1.113762.1.4.1146.363_20181031','2.16.840.1.113762.1.4.1146.363_A30.9');
-INSERT INTO valueset_to_concept VALUES('357','2.16.840.1.113762.1.4.1146.363_20181031','2.16.840.1.113762.1.4.1146.363_B92');
-INSERT INTO valueset_to_concept VALUES('358','2.16.840.1.113762.1.4.1146.123_20180620','2.16.840.1.113762.1.4.1146.123_A80');
-INSERT INTO valueset_to_concept VALUES('359','2.16.840.1.113762.1.4.1146.123_20180620','2.16.840.1.113762.1.4.1146.123_A80.1');
-INSERT INTO valueset_to_concept VALUES('360','2.16.840.1.113762.1.4.1146.123_20180620','2.16.840.1.113762.1.4.1146.123_A80.2');
-INSERT INTO valueset_to_concept VALUES('361','2.16.840.1.113762.1.4.1146.123_20180620','2.16.840.1.113762.1.4.1146.123_A80.3');
-INSERT INTO valueset_to_concept VALUES('362','2.16.840.1.113762.1.4.1146.123_20180620','2.16.840.1.113762.1.4.1146.123_A80.30');
-INSERT INTO valueset_to_concept VALUES('363','2.16.840.1.113762.1.4.1146.123_20180620','2.16.840.1.113762.1.4.1146.123_A80.39');
-INSERT INTO valueset_to_concept VALUES('364','2.16.840.1.113762.1.4.1146.123_20180620','2.16.840.1.113762.1.4.1146.123_A80.4');
-INSERT INTO valueset_to_concept VALUES('365','2.16.840.1.113762.1.4.1146.123_20180620','2.16.840.1.113762.1.4.1146.123_A80.9');
-INSERT INTO valueset_to_concept VALUES('366','2.16.840.1.113762.1.4.1146.123_20180620','2.16.840.1.113762.1.4.1146.123_A80.0');
-INSERT INTO valueset_to_concept VALUES('367','2.16.840.1.113762.1.4.1146.365_20181031','2.16.840.1.113762.1.4.1146.365_17919002');
-INSERT INTO valueset_to_concept VALUES('368','2.16.840.1.113762.1.4.1146.365_20181031','2.16.840.1.113762.1.4.1146.365_233760007');
-INSERT INTO valueset_to_concept VALUES('369','2.16.840.1.113762.1.4.1146.365_20181031','2.16.840.1.113762.1.4.1146.365_233761006');
-INSERT INTO valueset_to_concept VALUES('370','2.16.840.1.113762.1.4.1146.365_20181031','2.16.840.1.113762.1.4.1146.365_233762004');
-INSERT INTO valueset_to_concept VALUES('371','2.16.840.1.113762.1.4.1146.365_20181031','2.16.840.1.113762.1.4.1146.365_233763009');
-INSERT INTO valueset_to_concept VALUES('372','2.16.840.1.113762.1.4.1146.365_20181031','2.16.840.1.113762.1.4.1146.365_33548005');
-INSERT INTO valueset_to_concept VALUES('373','2.16.840.1.113762.1.4.1146.365_20181031','2.16.840.1.113762.1.4.1146.365_34004002');
-INSERT INTO valueset_to_concept VALUES('374','2.16.840.1.113762.1.4.1146.365_20181031','2.16.840.1.113762.1.4.1146.365_40640008');
-INSERT INTO valueset_to_concept VALUES('375','2.16.840.1.113762.1.4.1146.365_20181031','2.16.840.1.113762.1.4.1146.365_426853005');
-INSERT INTO valueset_to_concept VALUES('376','2.16.840.1.113762.1.4.1146.365_20181031','2.16.840.1.113762.1.4.1146.365_47515009');
-INSERT INTO valueset_to_concept VALUES('377','2.16.840.1.113762.1.4.1146.365_20181031','2.16.840.1.113762.1.4.1146.365_49840000');
-INSERT INTO valueset_to_concept VALUES('378','2.16.840.1.113762.1.4.1146.365_20181031','2.16.840.1.113762.1.4.1146.365_64631008');
-INSERT INTO valueset_to_concept VALUES('379','2.16.840.1.113762.1.4.1146.365_20181031','2.16.840.1.113762.1.4.1146.365_805002');
-INSERT INTO valueset_to_concept VALUES('380','2.16.840.1.113762.1.4.1146.124_20230122','2.16.840.1.113762.1.4.1146.124_14535005');
-INSERT INTO valueset_to_concept VALUES('381','2.16.840.1.113762.1.4.1146.124_20230122','2.16.840.1.113762.1.4.1146.124_172672006');
-INSERT INTO valueset_to_concept VALUES('382','2.16.840.1.113762.1.4.1146.124_20230122','2.16.840.1.113762.1.4.1146.124_186476008');
-INSERT INTO valueset_to_concept VALUES('383','2.16.840.1.113762.1.4.1146.124_20230122','2.16.840.1.113762.1.4.1146.124_186479001');
-INSERT INTO valueset_to_concept VALUES('384','2.16.840.1.113762.1.4.1146.124_20230122','2.16.840.1.113762.1.4.1146.124_186480003');
-INSERT INTO valueset_to_concept VALUES('385','2.16.840.1.113762.1.4.1146.124_20230122','2.16.840.1.113762.1.4.1146.124_240459003');
-INSERT INTO valueset_to_concept VALUES('386','2.16.840.1.113762.1.4.1146.124_20230122','2.16.840.1.113762.1.4.1146.124_240460008');
-INSERT INTO valueset_to_concept VALUES('387','2.16.840.1.113762.1.4.1146.124_20230122','2.16.840.1.113762.1.4.1146.124_30057005');
-INSERT INTO valueset_to_concept VALUES('388','2.16.840.1.113762.1.4.1146.124_20230122','2.16.840.1.113762.1.4.1146.124_397928009');
-INSERT INTO valueset_to_concept VALUES('389','2.16.840.1.113762.1.4.1146.124_20230122','2.16.840.1.113762.1.4.1146.124_398102009');
-INSERT INTO valueset_to_concept VALUES('390','2.16.840.1.113762.1.4.1146.124_20230122','2.16.840.1.113762.1.4.1146.124_398256009');
-INSERT INTO valueset_to_concept VALUES('391','2.16.840.1.113762.1.4.1146.124_20230122','2.16.840.1.113762.1.4.1146.124_398327006');
-INSERT INTO valueset_to_concept VALUES('392','2.16.840.1.113762.1.4.1146.124_20230122','2.16.840.1.113762.1.4.1146.124_429297003');
-INSERT INTO valueset_to_concept VALUES('393','2.16.840.1.113762.1.4.1146.124_20230122','2.16.840.1.113762.1.4.1146.124_446311006');
-INSERT INTO valueset_to_concept VALUES('394','2.16.840.1.113762.1.4.1146.124_20230122','2.16.840.1.113762.1.4.1146.124_446312004');
-INSERT INTO valueset_to_concept VALUES('395','2.16.840.1.113762.1.4.1146.124_20230122','2.16.840.1.113762.1.4.1146.124_446957000');
-INSERT INTO valueset_to_concept VALUES('396','2.16.840.1.113762.1.4.1146.124_20230122','2.16.840.1.113762.1.4.1146.124_446958005');
-INSERT INTO valueset_to_concept VALUES('397','2.16.840.1.113762.1.4.1146.124_20230122','2.16.840.1.113762.1.4.1146.124_447262002');
-INSERT INTO valueset_to_concept VALUES('398','2.16.840.1.113762.1.4.1146.124_20230122','2.16.840.1.113762.1.4.1146.124_447378002');
-INSERT INTO valueset_to_concept VALUES('399','2.16.840.1.113762.1.4.1146.124_20230122','2.16.840.1.113762.1.4.1146.124_64764001');
-INSERT INTO valueset_to_concept VALUES('400','2.16.840.1.113762.1.4.1146.124_20230122','2.16.840.1.113762.1.4.1146.124_721764008');
-INSERT INTO valueset_to_concept VALUES('401','2.16.840.1.113762.1.4.1146.124_20230122','2.16.840.1.113762.1.4.1146.124_843004');
-INSERT INTO valueset_to_concept VALUES('402','2.16.840.1.113762.1.4.1146.124_20230122','2.16.840.1.113762.1.4.1146.124_866124002');
-INSERT INTO valueset_to_concept VALUES('403','2.16.840.1.113762.1.4.1146.124_20230122','2.16.840.1.113762.1.4.1146.124_192686004');
-INSERT INTO valueset_to_concept VALUES('404','2.16.840.1.113762.1.4.1146.124_20230122','2.16.840.1.113762.1.4.1146.124_721765009');
-INSERT INTO valueset_to_concept VALUES('405','2.16.840.1.113762.1.4.1146.366_20230122','2.16.840.1.113762.1.4.1146.366_J62.8');
-INSERT INTO valueset_to_concept VALUES('406','2.16.840.1.113762.1.4.1146.126_20181031','2.16.840.1.113762.1.4.1146.126_B05');
-INSERT INTO valueset_to_concept VALUES('407','2.16.840.1.113762.1.4.1146.126_20181031','2.16.840.1.113762.1.4.1146.126_B05.2');
-INSERT INTO valueset_to_concept VALUES('408','2.16.840.1.113762.1.4.1146.126_20181031','2.16.840.1.113762.1.4.1146.126_B05.3');
-INSERT INTO valueset_to_concept VALUES('409','2.16.840.1.113762.1.4.1146.126_20181031','2.16.840.1.113762.1.4.1146.126_B05.4');
-INSERT INTO valueset_to_concept VALUES('410','2.16.840.1.113762.1.4.1146.126_20181031','2.16.840.1.113762.1.4.1146.126_B05.8');
-INSERT INTO valueset_to_concept VALUES('411','2.16.840.1.113762.1.4.1146.126_20181031','2.16.840.1.113762.1.4.1146.126_B05.81');
-INSERT INTO valueset_to_concept VALUES('412','2.16.840.1.113762.1.4.1146.126_20181031','2.16.840.1.113762.1.4.1146.126_B05.89');
-INSERT INTO valueset_to_concept VALUES('413','2.16.840.1.113762.1.4.1146.126_20181031','2.16.840.1.113762.1.4.1146.126_B05.9');
-INSERT INTO valueset_to_concept VALUES('414','2.16.840.1.113762.1.4.1146.126_20181031','2.16.840.1.113762.1.4.1146.126_B05.1');
-INSERT INTO valueset_to_concept VALUES('415','2.16.840.1.113762.1.4.1146.126_20181031','2.16.840.1.113762.1.4.1146.126_B05.0');
-INSERT INTO valueset_to_concept VALUES('416','2.16.840.1.113762.1.4.1146.127_20181031','2.16.840.1.113762.1.4.1146.127_111873003');
-INSERT INTO valueset_to_concept VALUES('417','2.16.840.1.113762.1.4.1146.127_20181031','2.16.840.1.113762.1.4.1146.127_13420004');
-INSERT INTO valueset_to_concept VALUES('418','2.16.840.1.113762.1.4.1146.127_20181031','2.16.840.1.113762.1.4.1146.127_14189004');
-INSERT INTO valueset_to_concept VALUES('419','2.16.840.1.113762.1.4.1146.127_20181031','2.16.840.1.113762.1.4.1146.127_186562009');
-INSERT INTO valueset_to_concept VALUES('420','2.16.840.1.113762.1.4.1146.127_20181031','2.16.840.1.113762.1.4.1146.127_191727003');
-INSERT INTO valueset_to_concept VALUES('421','2.16.840.1.113762.1.4.1146.127_20181031','2.16.840.1.113762.1.4.1146.127_195900001');
-INSERT INTO valueset_to_concept VALUES('422','2.16.840.1.113762.1.4.1146.127_20181031','2.16.840.1.113762.1.4.1146.127_240483006');
-INSERT INTO valueset_to_concept VALUES('423','2.16.840.1.113762.1.4.1146.127_20181031','2.16.840.1.113762.1.4.1146.127_240484000');
-INSERT INTO valueset_to_concept VALUES('424','2.16.840.1.113762.1.4.1146.127_20181031','2.16.840.1.113762.1.4.1146.127_28463004');
-INSERT INTO valueset_to_concept VALUES('425','2.16.840.1.113762.1.4.1146.127_20181031','2.16.840.1.113762.1.4.1146.127_38921001');
-INSERT INTO valueset_to_concept VALUES('426','2.16.840.1.113762.1.4.1146.127_20181031','2.16.840.1.113762.1.4.1146.127_406592004');
-INSERT INTO valueset_to_concept VALUES('427','2.16.840.1.113762.1.4.1146.127_20181031','2.16.840.1.113762.1.4.1146.127_417145006');
-INSERT INTO valueset_to_concept VALUES('428','2.16.840.1.113762.1.4.1146.127_20181031','2.16.840.1.113762.1.4.1146.127_424306000');
-INSERT INTO valueset_to_concept VALUES('429','2.16.840.1.113762.1.4.1146.127_20181031','2.16.840.1.113762.1.4.1146.127_60013002');
-INSERT INTO valueset_to_concept VALUES('430','2.16.840.1.113762.1.4.1146.127_20181031','2.16.840.1.113762.1.4.1146.127_74918002');
-INSERT INTO valueset_to_concept VALUES('431','2.16.840.1.113762.1.4.1146.127_20181031','2.16.840.1.113762.1.4.1146.127_186561002');
-INSERT INTO valueset_to_concept VALUES('432','2.16.840.1.113762.1.4.1146.127_20181031','2.16.840.1.113762.1.4.1146.127_230146001');
-INSERT INTO valueset_to_concept VALUES('433','2.16.840.1.113762.1.4.1146.127_20181031','2.16.840.1.113762.1.4.1146.127_416154000');
-INSERT INTO valueset_to_concept VALUES('434','2.16.840.1.113762.1.4.1146.127_20181031','2.16.840.1.113762.1.4.1146.127_111872008');
-INSERT INTO valueset_to_concept VALUES('435','2.16.840.1.113762.1.4.1146.248_20200515','2.16.840.1.113762.1.4.1146.248_186771002');
-INSERT INTO valueset_to_concept VALUES('436','2.16.840.1.113762.1.4.1146.248_20200515','2.16.840.1.113762.1.4.1146.248_186772009');
-INSERT INTO valueset_to_concept VALUES('437','2.16.840.1.113762.1.4.1146.248_20200515','2.16.840.1.113762.1.4.1146.248_186774005');
-INSERT INTO valueset_to_concept VALUES('438','2.16.840.1.113762.1.4.1146.248_20200515','2.16.840.1.113762.1.4.1146.248_186781003');
-INSERT INTO valueset_to_concept VALUES('439','2.16.840.1.113762.1.4.1146.248_20200515','2.16.840.1.113762.1.4.1146.248_233851006');
-INSERT INTO valueset_to_concept VALUES('440','2.16.840.1.113762.1.4.1146.248_20200515','2.16.840.1.113762.1.4.1146.248_240615004');
-INSERT INTO valueset_to_concept VALUES('441','2.16.840.1.113762.1.4.1146.248_20200515','2.16.840.1.113762.1.4.1146.248_240616003');
-INSERT INTO valueset_to_concept VALUES('442','2.16.840.1.113762.1.4.1146.248_20200515','2.16.840.1.113762.1.4.1146.248_240618002');
-INSERT INTO valueset_to_concept VALUES('443','2.16.840.1.113762.1.4.1146.248_20200515','2.16.840.1.113762.1.4.1146.248_37246009');
-INSERT INTO valueset_to_concept VALUES('444','2.16.840.1.113762.1.4.1146.248_20200515','2.16.840.1.113762.1.4.1146.248_406558002');
-INSERT INTO valueset_to_concept VALUES('445','2.16.840.1.113762.1.4.1146.248_20200515','2.16.840.1.113762.1.4.1146.248_409904000');
-INSERT INTO valueset_to_concept VALUES('446','2.16.840.1.113762.1.4.1146.248_20200515','2.16.840.1.113762.1.4.1146.248_415561000');
-INSERT INTO valueset_to_concept VALUES('447','2.16.840.1.113762.1.4.1146.248_20200515','2.16.840.1.113762.1.4.1146.248_416829003');
-INSERT INTO valueset_to_concept VALUES('448','2.16.840.1.113762.1.4.1146.248_20200515','2.16.840.1.113762.1.4.1146.248_460317007');
-INSERT INTO valueset_to_concept VALUES('449','2.16.840.1.113762.1.4.1146.248_20200515','2.16.840.1.113762.1.4.1146.248_472822008');
-INSERT INTO valueset_to_concept VALUES('450','2.16.840.1.113762.1.4.1146.248_20200515','2.16.840.1.113762.1.4.1146.248_68981009');
-INSERT INTO valueset_to_concept VALUES('451','2.16.840.1.113762.1.4.1146.248_20200515','2.16.840.1.113762.1.4.1146.248_75096007');
-INSERT INTO valueset_to_concept VALUES('452','2.16.840.1.113762.1.4.1146.248_20200515','2.16.840.1.113762.1.4.1146.248_764104003');
-INSERT INTO valueset_to_concept VALUES('453','2.16.840.1.113762.1.4.1146.248_20200515','2.16.840.1.113762.1.4.1146.248_233621003');
-INSERT INTO valueset_to_concept VALUES('454','2.16.840.1.113762.1.4.1146.248_20200515','2.16.840.1.113762.1.4.1146.248_419868009');
-INSERT INTO valueset_to_concept VALUES('455','2.16.840.1.113762.1.4.1146.2034_20230125','2.16.840.1.113762.1.4.1146.2034_A79.0');
-INSERT INTO valueset_to_concept VALUES('456','2.16.840.1.113762.1.4.1146.2155_20230122','2.16.840.1.113762.1.4.1146.2155_E03.0');
-INSERT INTO valueset_to_concept VALUES('457','2.16.840.1.113762.1.4.1146.2155_20230122','2.16.840.1.113762.1.4.1146.2155_E03.1');
-INSERT INTO valueset_to_concept VALUES('458','2.16.840.1.113762.1.4.1146.249_20181031','2.16.840.1.113762.1.4.1146.249_A77');
-INSERT INTO valueset_to_concept VALUES('459','2.16.840.1.113762.1.4.1146.249_20181031','2.16.840.1.113762.1.4.1146.249_A77.0');
-INSERT INTO valueset_to_concept VALUES('460','2.16.840.1.113762.1.4.1146.249_20181031','2.16.840.1.113762.1.4.1146.249_A77.1');
-INSERT INTO valueset_to_concept VALUES('461','2.16.840.1.113762.1.4.1146.249_20181031','2.16.840.1.113762.1.4.1146.249_A77.2');
-INSERT INTO valueset_to_concept VALUES('462','2.16.840.1.113762.1.4.1146.249_20181031','2.16.840.1.113762.1.4.1146.249_A77.3');
-INSERT INTO valueset_to_concept VALUES('463','2.16.840.1.113762.1.4.1146.249_20181031','2.16.840.1.113762.1.4.1146.249_A77.8');
-INSERT INTO valueset_to_concept VALUES('464','2.16.840.1.113762.1.4.1146.249_20181031','2.16.840.1.113762.1.4.1146.249_A77.9');
-INSERT INTO valueset_to_concept VALUES('465','2.16.840.1.113762.1.4.1146.249_20181031','2.16.840.1.113762.1.4.1146.249_A79.1');
-INSERT INTO valueset_to_concept VALUES('466','2.16.840.1.113762.1.4.1146.249_20181031','2.16.840.1.113762.1.4.1146.249_A79.81');
-INSERT INTO valueset_to_concept VALUES('467','2.16.840.1.113762.1.4.1146.249_20181031','2.16.840.1.113762.1.4.1146.249_A79.9');
-INSERT INTO valueset_to_concept VALUES('468','2.16.840.1.113762.1.4.1146.129_20181031','2.16.840.1.113762.1.4.1146.129_13265006');
-INSERT INTO valueset_to_concept VALUES('469','2.16.840.1.113762.1.4.1146.129_20181031','2.16.840.1.113762.1.4.1146.129_424099008');
-INSERT INTO valueset_to_concept VALUES('470','2.16.840.1.113762.1.4.1146.129_20181031','2.16.840.1.113762.1.4.1146.129_76795007');
-INSERT INTO valueset_to_concept VALUES('471','2.16.840.1.113762.1.4.1146.129_20181031','2.16.840.1.113762.1.4.1146.129_186624004');
-INSERT INTO valueset_to_concept VALUES('472','2.16.840.1.113762.1.4.1146.129_20181031','2.16.840.1.113762.1.4.1146.129_186626002');
-INSERT INTO valueset_to_concept VALUES('473','2.16.840.1.113762.1.4.1146.129_20181031','2.16.840.1.113762.1.4.1146.129_235864009');
-INSERT INTO valueset_to_concept VALUES('474','2.16.840.1.113762.1.4.1146.2032_20230125','2.16.840.1.113762.1.4.1146.2032_240453002');
-INSERT INTO valueset_to_concept VALUES('475','2.16.840.1.113762.1.4.1146.2032_20230125','2.16.840.1.113762.1.4.1146.2032_240455009');
-INSERT INTO valueset_to_concept VALUES('476','2.16.840.1.113762.1.4.1146.2032_20230125','2.16.840.1.113762.1.4.1146.2032_262461007');
-INSERT INTO valueset_to_concept VALUES('477','2.16.840.1.113762.1.4.1146.2153_20240123','2.16.840.1.113762.1.4.1146.2153_1142106007');
-INSERT INTO valueset_to_concept VALUES('478','2.16.840.1.113762.1.4.1146.2153_20240123','2.16.840.1.113762.1.4.1146.2153_1179394003');
-INSERT INTO valueset_to_concept VALUES('479','2.16.840.1.113762.1.4.1146.2153_20240123','2.16.840.1.113762.1.4.1146.2153_1179396001');
-INSERT INTO valueset_to_concept VALUES('480','2.16.840.1.113762.1.4.1146.2153_20240123','2.16.840.1.113762.1.4.1146.2153_1179397005');
-INSERT INTO valueset_to_concept VALUES('481','2.16.840.1.113762.1.4.1146.2153_20240123','2.16.840.1.113762.1.4.1146.2153_1179399008');
-INSERT INTO valueset_to_concept VALUES('482','2.16.840.1.113762.1.4.1146.2153_20240123','2.16.840.1.113762.1.4.1146.2153_1179400001');
-INSERT INTO valueset_to_concept VALUES('483','2.16.840.1.113762.1.4.1146.2153_20240123','2.16.840.1.113762.1.4.1146.2153_1179401002');
-INSERT INTO valueset_to_concept VALUES('484','2.16.840.1.113762.1.4.1146.2153_20240123','2.16.840.1.113762.1.4.1146.2153_1179404005');
-INSERT INTO valueset_to_concept VALUES('485','2.16.840.1.113762.1.4.1146.2153_20240123','2.16.840.1.113762.1.4.1146.2153_1230272009');
-INSERT INTO valueset_to_concept VALUES('486','2.16.840.1.113762.1.4.1146.2153_20240123','2.16.840.1.113762.1.4.1146.2153_190304001');
-INSERT INTO valueset_to_concept VALUES('487','2.16.840.1.113762.1.4.1146.2153_20240123','2.16.840.1.113762.1.4.1146.2153_215677009');
-INSERT INTO valueset_to_concept VALUES('488','2.16.840.1.113762.1.4.1146.2153_20240123','2.16.840.1.113762.1.4.1146.2153_22558005');
-INSERT INTO valueset_to_concept VALUES('489','2.16.840.1.113762.1.4.1146.2153_20240123','2.16.840.1.113762.1.4.1146.2153_237555006');
-INSERT INTO valueset_to_concept VALUES('490','2.16.840.1.113762.1.4.1146.2153_20240123','2.16.840.1.113762.1.4.1146.2153_52724003');
-INSERT INTO valueset_to_concept VALUES('491','2.16.840.1.113762.1.4.1146.2153_20240123','2.16.840.1.113762.1.4.1146.2153_55838005');
-INSERT INTO valueset_to_concept VALUES('492','2.16.840.1.113762.1.4.1146.2153_20240123','2.16.840.1.113762.1.4.1146.2153_56041007');
-INSERT INTO valueset_to_concept VALUES('493','2.16.840.1.113762.1.4.1146.2153_20240123','2.16.840.1.113762.1.4.1146.2153_717333002');
-INSERT INTO valueset_to_concept VALUES('494','2.16.840.1.113762.1.4.1146.2153_20240123','2.16.840.1.113762.1.4.1146.2153_717334008');
-INSERT INTO valueset_to_concept VALUES('495','2.16.840.1.113762.1.4.1146.2153_20240123','2.16.840.1.113762.1.4.1146.2153_718183003');
-INSERT INTO valueset_to_concept VALUES('496','2.16.840.1.113762.1.4.1146.2153_20240123','2.16.840.1.113762.1.4.1146.2153_718690009');
-INSERT INTO valueset_to_concept VALUES('497','2.16.840.1.113762.1.4.1146.2153_20240123','2.16.840.1.113762.1.4.1146.2153_719098007');
-INSERT INTO valueset_to_concept VALUES('498','2.16.840.1.113762.1.4.1146.2153_20240123','2.16.840.1.113762.1.4.1146.2153_722939004');
-INSERT INTO valueset_to_concept VALUES('499','2.16.840.1.113762.1.4.1146.2153_20240123','2.16.840.1.113762.1.4.1146.2153_724094005');
-INSERT INTO valueset_to_concept VALUES('500','2.16.840.1.113762.1.4.1146.2153_20240123','2.16.840.1.113762.1.4.1146.2153_725462002');
-INSERT INTO valueset_to_concept VALUES('501','2.16.840.1.113762.1.4.1146.2153_20240123','2.16.840.1.113762.1.4.1146.2153_783177006');
-INSERT INTO valueset_to_concept VALUES('502','2.16.840.1.113762.1.4.1146.2153_20240123','2.16.840.1.113762.1.4.1146.2153_722375007');
-INSERT INTO valueset_to_concept VALUES('503','2.16.840.1.113762.1.4.1146.2033_20230125','2.16.840.1.113762.1.4.1146.2033_A28.1');
-INSERT INTO valueset_to_concept VALUES('504','2.16.840.1.113762.1.4.1146.2154_20240123','2.16.840.1.113762.1.4.1146.2154_190268003');
-INSERT INTO valueset_to_concept VALUES('505','2.16.840.1.113762.1.4.1146.2154_20240123','2.16.840.1.113762.1.4.1146.2154_206457007');
-INSERT INTO valueset_to_concept VALUES('506','2.16.840.1.113762.1.4.1146.2154_20240123','2.16.840.1.113762.1.4.1146.2154_237515009');
-INSERT INTO valueset_to_concept VALUES('507','2.16.840.1.113762.1.4.1146.2154_20240123','2.16.840.1.113762.1.4.1146.2154_278503003');
-INSERT INTO valueset_to_concept VALUES('508','2.16.840.1.113762.1.4.1146.2154_20240123','2.16.840.1.113762.1.4.1146.2154_722938007');
-INSERT INTO valueset_to_concept VALUES('509','2.16.840.1.113762.1.4.1146.2154_20240123','2.16.840.1.113762.1.4.1146.2154_770631009');
-INSERT INTO valueset_to_concept VALUES('510','2.16.840.1.113762.1.4.1146.2154_20240123','2.16.840.1.113762.1.4.1146.2154_771510006');
-INSERT INTO valueset_to_concept VALUES('511','2.16.840.1.113762.1.4.1146.2154_20240123','2.16.840.1.113762.1.4.1146.2154_84781002');
-INSERT INTO valueset_to_concept VALUES('512','2.16.840.1.113762.1.4.1146.590_20191227','2.16.840.1.113762.1.4.1146.590_3928002');
-INSERT INTO valueset_to_concept VALUES('513','2.16.840.1.113762.1.4.1146.590_20191227','2.16.840.1.113762.1.4.1146.590_460521000124103');
-INSERT INTO valueset_to_concept VALUES('514','2.16.840.1.113762.1.4.1146.590_20191227','2.16.840.1.113762.1.4.1146.590_762725007');
-INSERT INTO valueset_to_concept VALUES('515','2.16.840.1.113762.1.4.1146.592_20190817','2.16.840.1.113762.1.4.1146.592_A92.5');
-INSERT INTO valueset_to_concept VALUES('516','2.16.840.1.113762.1.4.1146.592_20190817','2.16.840.1.113762.1.4.1146.592_P35.4');
-INSERT INTO valueset_to_concept VALUES('517','2.16.840.1.113762.1.4.1146.230_20181031','2.16.840.1.113762.1.4.1146.230_B50');
-INSERT INTO valueset_to_concept VALUES('518','2.16.840.1.113762.1.4.1146.230_20181031','2.16.840.1.113762.1.4.1146.230_B50.0');
-INSERT INTO valueset_to_concept VALUES('519','2.16.840.1.113762.1.4.1146.230_20181031','2.16.840.1.113762.1.4.1146.230_B50.8');
-INSERT INTO valueset_to_concept VALUES('520','2.16.840.1.113762.1.4.1146.230_20181031','2.16.840.1.113762.1.4.1146.230_B50.9');
-INSERT INTO valueset_to_concept VALUES('521','2.16.840.1.113762.1.4.1146.230_20181031','2.16.840.1.113762.1.4.1146.230_B51');
-INSERT INTO valueset_to_concept VALUES('522','2.16.840.1.113762.1.4.1146.230_20181031','2.16.840.1.113762.1.4.1146.230_B51.0');
-INSERT INTO valueset_to_concept VALUES('523','2.16.840.1.113762.1.4.1146.230_20181031','2.16.840.1.113762.1.4.1146.230_B51.8');
-INSERT INTO valueset_to_concept VALUES('524','2.16.840.1.113762.1.4.1146.230_20181031','2.16.840.1.113762.1.4.1146.230_B51.9');
-INSERT INTO valueset_to_concept VALUES('525','2.16.840.1.113762.1.4.1146.230_20181031','2.16.840.1.113762.1.4.1146.230_B52');
-INSERT INTO valueset_to_concept VALUES('526','2.16.840.1.113762.1.4.1146.230_20181031','2.16.840.1.113762.1.4.1146.230_B52.0');
-INSERT INTO valueset_to_concept VALUES('527','2.16.840.1.113762.1.4.1146.230_20181031','2.16.840.1.113762.1.4.1146.230_B52.8');
-INSERT INTO valueset_to_concept VALUES('528','2.16.840.1.113762.1.4.1146.230_20181031','2.16.840.1.113762.1.4.1146.230_B52.9');
-INSERT INTO valueset_to_concept VALUES('529','2.16.840.1.113762.1.4.1146.230_20181031','2.16.840.1.113762.1.4.1146.230_B53');
-INSERT INTO valueset_to_concept VALUES('530','2.16.840.1.113762.1.4.1146.230_20181031','2.16.840.1.113762.1.4.1146.230_B53.0');
-INSERT INTO valueset_to_concept VALUES('531','2.16.840.1.113762.1.4.1146.230_20181031','2.16.840.1.113762.1.4.1146.230_B53.1');
-INSERT INTO valueset_to_concept VALUES('532','2.16.840.1.113762.1.4.1146.230_20181031','2.16.840.1.113762.1.4.1146.230_B53.8');
-INSERT INTO valueset_to_concept VALUES('533','2.16.840.1.113762.1.4.1146.230_20181031','2.16.840.1.113762.1.4.1146.230_B54');
-INSERT INTO valueset_to_concept VALUES('534','2.16.840.1.113762.1.4.1146.230_20181031','2.16.840.1.113762.1.4.1146.230_P37.3');
-INSERT INTO valueset_to_concept VALUES('535','2.16.840.1.113762.1.4.1146.230_20181031','2.16.840.1.113762.1.4.1146.230_P37.4');
-INSERT INTO valueset_to_concept VALUES('536','2.16.840.1.113762.1.4.1146.112_20240619','2.16.840.1.113762.1.4.1146.112_1264130004');
-INSERT INTO valueset_to_concept VALUES('537','2.16.840.1.113762.1.4.1146.112_20240619','2.16.840.1.113762.1.4.1146.112_1264131000');
-INSERT INTO valueset_to_concept VALUES('538','2.16.840.1.113762.1.4.1146.112_20240619','2.16.840.1.113762.1.4.1146.112_13766008');
-INSERT INTO valueset_to_concept VALUES('539','2.16.840.1.113762.1.4.1146.112_20240619','2.16.840.1.113762.1.4.1146.112_186378005');
-INSERT INTO valueset_to_concept VALUES('540','2.16.840.1.113762.1.4.1146.112_20240619','2.16.840.1.113762.1.4.1146.112_240429008');
-INSERT INTO valueset_to_concept VALUES('541','2.16.840.1.113762.1.4.1146.112_20240619','2.16.840.1.113762.1.4.1146.112_240431004');
-INSERT INTO valueset_to_concept VALUES('542','2.16.840.1.113762.1.4.1146.112_20240619','2.16.840.1.113762.1.4.1146.112_240432006');
-INSERT INTO valueset_to_concept VALUES('543','2.16.840.1.113762.1.4.1146.112_20240619','2.16.840.1.113762.1.4.1146.112_240433001');
-INSERT INTO valueset_to_concept VALUES('544','2.16.840.1.113762.1.4.1146.112_20240619','2.16.840.1.113762.1.4.1146.112_240434007');
-INSERT INTO valueset_to_concept VALUES('545','2.16.840.1.113762.1.4.1146.112_20240619','2.16.840.1.113762.1.4.1146.112_276202003');
-INSERT INTO valueset_to_concept VALUES('546','2.16.840.1.113762.1.4.1146.112_20240619','2.16.840.1.113762.1.4.1146.112_43424001');
-INSERT INTO valueset_to_concept VALUES('547','2.16.840.1.113762.1.4.1146.112_20240619','2.16.840.1.113762.1.4.1146.112_609493004');
-INSERT INTO valueset_to_concept VALUES('548','2.16.840.1.113762.1.4.1146.112_20240619','2.16.840.1.113762.1.4.1146.112_61145000');
-INSERT INTO valueset_to_concept VALUES('549','2.16.840.1.113762.1.4.1146.112_20240619','2.16.840.1.113762.1.4.1146.112_76843005');
-INSERT INTO valueset_to_concept VALUES('550','2.16.840.1.113762.1.4.1146.112_20240619','2.16.840.1.113762.1.4.1146.112_76902006');
-INSERT INTO valueset_to_concept VALUES('551','2.16.840.1.113762.1.4.1146.113_20181031','2.16.840.1.113762.1.4.1146.113_A33');
-INSERT INTO valueset_to_concept VALUES('552','2.16.840.1.113762.1.4.1146.113_20181031','2.16.840.1.113762.1.4.1146.113_A34');
-INSERT INTO valueset_to_concept VALUES('553','2.16.840.1.113762.1.4.1146.113_20181031','2.16.840.1.113762.1.4.1146.113_A35');
-INSERT INTO valueset_to_concept VALUES('554','2.16.840.1.113762.1.4.1146.234_20181031','2.16.840.1.113762.1.4.1146.234_69588003');
-INSERT INTO valueset_to_concept VALUES('555','2.16.840.1.113762.1.4.1146.235_20181031','2.16.840.1.113762.1.4.1146.235_13906002');
-INSERT INTO valueset_to_concept VALUES('556','2.16.840.1.113762.1.4.1146.235_20181031','2.16.840.1.113762.1.4.1146.235_427481004');
-INSERT INTO valueset_to_concept VALUES('557','2.16.840.1.113762.1.4.1146.235_20181031','2.16.840.1.113762.1.4.1146.235_85708001');
-INSERT INTO valueset_to_concept VALUES('558','2.16.840.1.113762.1.4.1146.115_20230122','2.16.840.1.113762.1.4.1146.115_10665004');
-INSERT INTO valueset_to_concept VALUES('559','2.16.840.1.113762.1.4.1146.115_20230122','2.16.840.1.113762.1.4.1146.115_111870000');
-INSERT INTO valueset_to_concept VALUES('560','2.16.840.1.113762.1.4.1146.115_20230122','2.16.840.1.113762.1.4.1146.115_1163539003');
-INSERT INTO valueset_to_concept VALUES('561','2.16.840.1.113762.1.4.1146.115_20230122','2.16.840.1.113762.1.4.1146.115_17121006');
-INSERT INTO valueset_to_concept VALUES('562','2.16.840.1.113762.1.4.1146.115_20230122','2.16.840.1.113762.1.4.1146.115_235123001');
-INSERT INTO valueset_to_concept VALUES('563','2.16.840.1.113762.1.4.1146.115_20230122','2.16.840.1.113762.1.4.1146.115_236771002');
-INSERT INTO valueset_to_concept VALUES('564','2.16.840.1.113762.1.4.1146.115_20230122','2.16.840.1.113762.1.4.1146.115_237443002');
-INSERT INTO valueset_to_concept VALUES('565','2.16.840.1.113762.1.4.1146.115_20230122','2.16.840.1.113762.1.4.1146.115_240526004');
-INSERT INTO valueset_to_concept VALUES('566','2.16.840.1.113762.1.4.1146.115_20230122','2.16.840.1.113762.1.4.1146.115_240527008');
-INSERT INTO valueset_to_concept VALUES('567','2.16.840.1.113762.1.4.1146.115_20230122','2.16.840.1.113762.1.4.1146.115_240529006');
-INSERT INTO valueset_to_concept VALUES('568','2.16.840.1.113762.1.4.1146.115_20230122','2.16.840.1.113762.1.4.1146.115_31524007');
-INSERT INTO valueset_to_concept VALUES('569','2.16.840.1.113762.1.4.1146.115_20230122','2.16.840.1.113762.1.4.1146.115_36989005');
-INSERT INTO valueset_to_concept VALUES('570','2.16.840.1.113762.1.4.1146.115_20230122','2.16.840.1.113762.1.4.1146.115_63462008');
-INSERT INTO valueset_to_concept VALUES('571','2.16.840.1.113762.1.4.1146.115_20230122','2.16.840.1.113762.1.4.1146.115_72071001');
-INSERT INTO valueset_to_concept VALUES('572','2.16.840.1.113762.1.4.1146.115_20230122','2.16.840.1.113762.1.4.1146.115_74717002');
-INSERT INTO valueset_to_concept VALUES('573','2.16.840.1.113762.1.4.1146.115_20230122','2.16.840.1.113762.1.4.1146.115_78580004');
-INSERT INTO valueset_to_concept VALUES('574','2.16.840.1.113762.1.4.1146.115_20230122','2.16.840.1.113762.1.4.1146.115_89231008');
-INSERT INTO valueset_to_concept VALUES('575','2.16.840.1.113762.1.4.1146.115_20230122','2.16.840.1.113762.1.4.1146.115_89764009');
-INSERT INTO valueset_to_concept VALUES('576','2.16.840.1.113762.1.4.1146.115_20230122','2.16.840.1.113762.1.4.1146.115_44201003');
-INSERT INTO valueset_to_concept VALUES('577','2.16.840.1.113762.1.4.1146.115_20230122','2.16.840.1.113762.1.4.1146.115_31646008');
-INSERT INTO valueset_to_concept VALUES('578','2.16.840.1.113762.1.4.1146.115_20230122','2.16.840.1.113762.1.4.1146.115_40099009');
-INSERT INTO valueset_to_concept VALUES('579','2.16.840.1.113762.1.4.1146.115_20230122','2.16.840.1.113762.1.4.1146.115_75548002');
-INSERT INTO valueset_to_concept VALUES('580','2.16.840.1.113762.1.4.1146.116_20190609','2.16.840.1.113762.1.4.1146.116_A36');
-INSERT INTO valueset_to_concept VALUES('581','2.16.840.1.113762.1.4.1146.116_20190609','2.16.840.1.113762.1.4.1146.116_A36.0');
-INSERT INTO valueset_to_concept VALUES('582','2.16.840.1.113762.1.4.1146.116_20190609','2.16.840.1.113762.1.4.1146.116_A36.1');
-INSERT INTO valueset_to_concept VALUES('583','2.16.840.1.113762.1.4.1146.116_20190609','2.16.840.1.113762.1.4.1146.116_A36.2');
-INSERT INTO valueset_to_concept VALUES('584','2.16.840.1.113762.1.4.1146.116_20190609','2.16.840.1.113762.1.4.1146.116_A36.3');
-INSERT INTO valueset_to_concept VALUES('585','2.16.840.1.113762.1.4.1146.116_20190609','2.16.840.1.113762.1.4.1146.116_A36.8');
-INSERT INTO valueset_to_concept VALUES('586','2.16.840.1.113762.1.4.1146.116_20190609','2.16.840.1.113762.1.4.1146.116_A36.81');
-INSERT INTO valueset_to_concept VALUES('587','2.16.840.1.113762.1.4.1146.116_20190609','2.16.840.1.113762.1.4.1146.116_A36.82');
-INSERT INTO valueset_to_concept VALUES('588','2.16.840.1.113762.1.4.1146.116_20190609','2.16.840.1.113762.1.4.1146.116_A36.83');
-INSERT INTO valueset_to_concept VALUES('589','2.16.840.1.113762.1.4.1146.116_20190609','2.16.840.1.113762.1.4.1146.116_A36.84');
-INSERT INTO valueset_to_concept VALUES('590','2.16.840.1.113762.1.4.1146.116_20190609','2.16.840.1.113762.1.4.1146.116_A36.85');
-INSERT INTO valueset_to_concept VALUES('591','2.16.840.1.113762.1.4.1146.116_20190609','2.16.840.1.113762.1.4.1146.116_A36.86');
-INSERT INTO valueset_to_concept VALUES('592','2.16.840.1.113762.1.4.1146.116_20190609','2.16.840.1.113762.1.4.1146.116_A36.89');
-INSERT INTO valueset_to_concept VALUES('593','2.16.840.1.113762.1.4.1146.116_20190609','2.16.840.1.113762.1.4.1146.116_A36.9');
-INSERT INTO valueset_to_concept VALUES('594','2.16.840.1.113762.1.4.1146.117_20240123','2.16.840.1.113762.1.4.1146.117_B26.0');
-INSERT INTO valueset_to_concept VALUES('595','2.16.840.1.113762.1.4.1146.117_20240123','2.16.840.1.113762.1.4.1146.117_B26.3');
-INSERT INTO valueset_to_concept VALUES('596','2.16.840.1.113762.1.4.1146.117_20240123','2.16.840.1.113762.1.4.1146.117_B26.81');
-INSERT INTO valueset_to_concept VALUES('597','2.16.840.1.113762.1.4.1146.117_20240123','2.16.840.1.113762.1.4.1146.117_B26.82');
-INSERT INTO valueset_to_concept VALUES('598','2.16.840.1.113762.1.4.1146.117_20240123','2.16.840.1.113762.1.4.1146.117_B26.83');
-INSERT INTO valueset_to_concept VALUES('599','2.16.840.1.113762.1.4.1146.117_20240123','2.16.840.1.113762.1.4.1146.117_B26.84');
-INSERT INTO valueset_to_concept VALUES('600','2.16.840.1.113762.1.4.1146.117_20240123','2.16.840.1.113762.1.4.1146.117_B26.85');
-INSERT INTO valueset_to_concept VALUES('601','2.16.840.1.113762.1.4.1146.117_20240123','2.16.840.1.113762.1.4.1146.117_B26.89');
-INSERT INTO valueset_to_concept VALUES('602','2.16.840.1.113762.1.4.1146.117_20240123','2.16.840.1.113762.1.4.1146.117_B26.9');
-INSERT INTO valueset_to_concept VALUES('603','2.16.840.1.113762.1.4.1146.117_20240123','2.16.840.1.113762.1.4.1146.117_B26.1');
-INSERT INTO valueset_to_concept VALUES('604','2.16.840.1.113762.1.4.1146.117_20240123','2.16.840.1.113762.1.4.1146.117_B26.2');
-INSERT INTO valueset_to_concept VALUES('605','2.16.840.1.113762.1.4.1146.359_20240620','2.16.840.1.113762.1.4.1146.359_1149327007');
-INSERT INTO valueset_to_concept VALUES('606','2.16.840.1.113762.1.4.1146.359_20240620','2.16.840.1.113762.1.4.1146.359_1156793005');
-INSERT INTO valueset_to_concept VALUES('607','2.16.840.1.113762.1.4.1146.359_20240620','2.16.840.1.113762.1.4.1146.359_1156829005');
-INSERT INTO valueset_to_concept VALUES('608','2.16.840.1.113762.1.4.1146.359_20240620','2.16.840.1.113762.1.4.1146.359_1259069009');
-INSERT INTO valueset_to_concept VALUES('609','2.16.840.1.113762.1.4.1146.359_20240620','2.16.840.1.113762.1.4.1146.359_1285577000');
-INSERT INTO valueset_to_concept VALUES('610','2.16.840.1.113762.1.4.1146.359_20240620','2.16.840.1.113762.1.4.1146.359_1285578005');
-INSERT INTO valueset_to_concept VALUES('611','2.16.840.1.113762.1.4.1146.359_20240620','2.16.840.1.113762.1.4.1146.359_1285590007');
-INSERT INTO valueset_to_concept VALUES('612','2.16.840.1.113762.1.4.1146.359_20240620','2.16.840.1.113762.1.4.1146.359_38719000');
-INSERT INTO valueset_to_concept VALUES('613','2.16.840.1.113762.1.4.1146.359_20240620','2.16.840.1.113762.1.4.1146.359_398523009');
-INSERT INTO valueset_to_concept VALUES('614','2.16.840.1.113762.1.4.1146.359_20240620','2.16.840.1.113762.1.4.1146.359_398530003');
-INSERT INTO valueset_to_concept VALUES('615','2.16.840.1.113762.1.4.1146.359_20240620','2.16.840.1.113762.1.4.1146.359_398565003');
-INSERT INTO valueset_to_concept VALUES('616','2.16.840.1.113762.1.4.1146.359_20240620','2.16.840.1.113762.1.4.1146.359_409562009');
-INSERT INTO valueset_to_concept VALUES('617','2.16.840.1.113762.1.4.1146.359_20240620','2.16.840.1.113762.1.4.1146.359_409563004');
-INSERT INTO valueset_to_concept VALUES('618','2.16.840.1.113762.1.4.1146.359_20240620','2.16.840.1.113762.1.4.1146.359_409564005');
-INSERT INTO valueset_to_concept VALUES('619','2.16.840.1.113762.1.4.1146.359_20240620','2.16.840.1.113762.1.4.1146.359_409565006');
-INSERT INTO valueset_to_concept VALUES('620','2.16.840.1.113762.1.4.1146.359_20240620','2.16.840.1.113762.1.4.1146.359_409566007');
-INSERT INTO valueset_to_concept VALUES('621','2.16.840.1.113762.1.4.1146.359_20240620','2.16.840.1.113762.1.4.1146.359_409567003');
-INSERT INTO valueset_to_concept VALUES('622','2.16.840.1.113762.1.4.1146.359_20240620','2.16.840.1.113762.1.4.1146.359_414531002');
-INSERT INTO valueset_to_concept VALUES('623','2.16.840.1.113762.1.4.1146.359_20240620','2.16.840.1.113762.1.4.1146.359_840421000');
-INSERT INTO valueset_to_concept VALUES('624','2.16.840.1.113762.1.4.1146.359_20240620','2.16.840.1.113762.1.4.1146.359_414488002');
-INSERT INTO valueset_to_concept VALUES('625','2.16.840.1.113762.1.4.1146.359_20240620','2.16.840.1.113762.1.4.1146.359_414820001');
-INSERT INTO valueset_to_concept VALUES('626','2.16.840.1.113762.1.4.1146.2288_20240123','2.16.840.1.113762.1.4.1146.2288_P04.14');
-INSERT INTO valueset_to_concept VALUES('627','2.16.840.1.113762.1.4.1146.2288_20240123','2.16.840.1.113762.1.4.1146.2288_P04.17');
-INSERT INTO valueset_to_concept VALUES('628','2.16.840.1.113762.1.4.1146.2288_20240123','2.16.840.1.113762.1.4.1146.2288_P04.1A');
-INSERT INTO valueset_to_concept VALUES('629','2.16.840.1.113762.1.4.1146.2052_20240123','2.16.840.1.113762.1.4.1146.2052_1176983008');
-INSERT INTO valueset_to_concept VALUES('630','2.16.840.1.113762.1.4.1146.2052_20240123','2.16.840.1.113762.1.4.1146.2052_1176986000');
-INSERT INTO valueset_to_concept VALUES('631','2.16.840.1.113762.1.4.1146.2052_20240123','2.16.840.1.113762.1.4.1146.2052_187144000');
-INSERT INTO valueset_to_concept VALUES('632','2.16.840.1.113762.1.4.1146.2052_20240123','2.16.840.1.113762.1.4.1146.2052_187145004');
-INSERT INTO valueset_to_concept VALUES('633','2.16.840.1.113762.1.4.1146.2052_20240123','2.16.840.1.113762.1.4.1146.2052_234503004');
-INSERT INTO valueset_to_concept VALUES('634','2.16.840.1.113762.1.4.1146.2052_20240123','2.16.840.1.113762.1.4.1146.2052_240819007');
-INSERT INTO valueset_to_concept VALUES('635','2.16.840.1.113762.1.4.1146.2052_20240123','2.16.840.1.113762.1.4.1146.2052_26103000');
-INSERT INTO valueset_to_concept VALUES('636','2.16.840.1.113762.1.4.1146.2052_20240123','2.16.840.1.113762.1.4.1146.2052_403131008');
-INSERT INTO valueset_to_concept VALUES('637','2.16.840.1.113762.1.4.1146.2052_20240123','2.16.840.1.113762.1.4.1146.2052_45115003');
-INSERT INTO valueset_to_concept VALUES('638','2.16.840.1.113762.1.4.1146.2052_20240123','2.16.840.1.113762.1.4.1146.2052_47087004');
-INSERT INTO valueset_to_concept VALUES('639','2.16.840.1.113762.1.4.1146.2052_20240123','2.16.840.1.113762.1.4.1146.2052_54026009');
-INSERT INTO valueset_to_concept VALUES('640','2.16.840.1.113762.1.4.1146.2052_20240123','2.16.840.1.113762.1.4.1146.2052_721264007');
-INSERT INTO valueset_to_concept VALUES('641','2.16.840.1.113762.1.4.1146.2052_20240123','2.16.840.1.113762.1.4.1146.2052_735532001');
-INSERT INTO valueset_to_concept VALUES('642','2.16.840.1.113762.1.4.1146.2052_20240123','2.16.840.1.113762.1.4.1146.2052_735533006');
-INSERT INTO valueset_to_concept VALUES('643','2.16.840.1.113762.1.4.1146.2052_20240123','2.16.840.1.113762.1.4.1146.2052_735534000');
-INSERT INTO valueset_to_concept VALUES('644','2.16.840.1.113762.1.4.1146.2052_20240123','2.16.840.1.113762.1.4.1146.2052_74942003');
-INSERT INTO valueset_to_concept VALUES('645','2.16.840.1.113762.1.4.1146.2052_20240123','2.16.840.1.113762.1.4.1146.2052_1086721000119102');
-INSERT INTO valueset_to_concept VALUES('646','2.16.840.1.113762.1.4.1146.2052_20240123','2.16.840.1.113762.1.4.1146.2052_1086731000119104');
-INSERT INTO valueset_to_concept VALUES('647','2.16.840.1.113762.1.4.1146.2052_20240123','2.16.840.1.113762.1.4.1146.2052_187137009');
-INSERT INTO valueset_to_concept VALUES('648','2.16.840.1.113762.1.4.1146.2052_20240123','2.16.840.1.113762.1.4.1146.2052_20790006');
-INSERT INTO valueset_to_concept VALUES('649','2.16.840.1.113762.1.4.1146.2052_20240123','2.16.840.1.113762.1.4.1146.2052_21009004');
-INSERT INTO valueset_to_concept VALUES('650','2.16.840.1.113762.1.4.1146.2052_20240123','2.16.840.1.113762.1.4.1146.2052_27235001');
-INSERT INTO valueset_to_concept VALUES('651','2.16.840.1.113762.1.4.1146.2052_20240123','2.16.840.1.113762.1.4.1146.2052_65963007');
-INSERT INTO valueset_to_concept VALUES('652','2.16.840.1.113762.1.4.1146.2052_20240123','2.16.840.1.113762.1.4.1146.2052_721822004');
-INSERT INTO valueset_to_concept VALUES('653','2.16.840.1.113762.1.4.1146.2052_20240123','2.16.840.1.113762.1.4.1146.2052_75006000');
-INSERT INTO valueset_to_concept VALUES('654','2.16.840.1.113762.1.4.1146.2052_20240123','2.16.840.1.113762.1.4.1146.2052_75388006');
-INSERT INTO valueset_to_concept VALUES('655','2.16.840.1.113762.1.4.1146.2052_20240123','2.16.840.1.113762.1.4.1146.2052_840499006');
-INSERT INTO valueset_to_concept VALUES('656','2.16.840.1.113762.1.4.1146.2052_20240123','2.16.840.1.113762.1.4.1146.2052_721823009');
-INSERT INTO valueset_to_concept VALUES('657','2.16.840.1.113762.1.4.1146.2053_20230125','2.16.840.1.113762.1.4.1146.2053_B67.8');
-INSERT INTO valueset_to_concept VALUES('658','2.16.840.1.113762.1.4.1146.2053_20230125','2.16.840.1.113762.1.4.1146.2053_B67.90');
-INSERT INTO valueset_to_concept VALUES('659','2.16.840.1.113762.1.4.1146.2053_20230125','2.16.840.1.113762.1.4.1146.2053_B67.99');
-INSERT INTO valueset_to_concept VALUES('660','2.16.840.1.113762.1.4.1146.2053_20230125','2.16.840.1.113762.1.4.1146.2053_B67.0');
-INSERT INTO valueset_to_concept VALUES('661','2.16.840.1.113762.1.4.1146.2053_20230125','2.16.840.1.113762.1.4.1146.2053_B67.1');
-INSERT INTO valueset_to_concept VALUES('662','2.16.840.1.113762.1.4.1146.2053_20230125','2.16.840.1.113762.1.4.1146.2053_B67.2');
-INSERT INTO valueset_to_concept VALUES('663','2.16.840.1.113762.1.4.1146.2053_20230125','2.16.840.1.113762.1.4.1146.2053_B67.31');
-INSERT INTO valueset_to_concept VALUES('664','2.16.840.1.113762.1.4.1146.2053_20230125','2.16.840.1.113762.1.4.1146.2053_B67.32');
-INSERT INTO valueset_to_concept VALUES('665','2.16.840.1.113762.1.4.1146.2053_20230125','2.16.840.1.113762.1.4.1146.2053_B67.39');
-INSERT INTO valueset_to_concept VALUES('666','2.16.840.1.113762.1.4.1146.2053_20230125','2.16.840.1.113762.1.4.1146.2053_B67.4');
-INSERT INTO valueset_to_concept VALUES('667','2.16.840.1.113762.1.4.1146.2053_20230125','2.16.840.1.113762.1.4.1146.2053_B67.5');
-INSERT INTO valueset_to_concept VALUES('668','2.16.840.1.113762.1.4.1146.2053_20230125','2.16.840.1.113762.1.4.1146.2053_B67.61');
-INSERT INTO valueset_to_concept VALUES('669','2.16.840.1.113762.1.4.1146.2053_20230125','2.16.840.1.113762.1.4.1146.2053_B67.69');
-INSERT INTO valueset_to_concept VALUES('670','2.16.840.1.113762.1.4.1146.2053_20230125','2.16.840.1.113762.1.4.1146.2053_B67.7');
-INSERT INTO valueset_to_concept VALUES('671','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_1003679009');
-INSERT INTO valueset_to_concept VALUES('672','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_1003682004');
-INSERT INTO valueset_to_concept VALUES('673','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_1003683009');
-INSERT INTO valueset_to_concept VALUES('674','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_1003684003');
-INSERT INTO valueset_to_concept VALUES('675','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_1052325005');
-INSERT INTO valueset_to_concept VALUES('676','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_10746341000119109');
-INSERT INTO valueset_to_concept VALUES('677','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_10755671000119100');
-INSERT INTO valueset_to_concept VALUES('678','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_111880001');
-INSERT INTO valueset_to_concept VALUES('679','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_1142045004');
-INSERT INTO valueset_to_concept VALUES('680','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_1142046003');
-INSERT INTO valueset_to_concept VALUES('681','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_1142049005');
-INSERT INTO valueset_to_concept VALUES('682','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_1142055000');
-INSERT INTO valueset_to_concept VALUES('683','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_1148863007');
-INSERT INTO valueset_to_concept VALUES('684','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_1153348007');
-INSERT INTO valueset_to_concept VALUES('685','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_1187000005');
-INSERT INTO valueset_to_concept VALUES('686','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_1187001009');
-INSERT INTO valueset_to_concept VALUES('687','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_1187156006');
-INSERT INTO valueset_to_concept VALUES('688','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_1193751008');
-INSERT INTO valueset_to_concept VALUES('689','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_1193752001');
-INSERT INTO valueset_to_concept VALUES('690','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_1259057001');
-INSERT INTO valueset_to_concept VALUES('691','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_1260096003');
-INSERT INTO valueset_to_concept VALUES('692','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_1263535005');
-INSERT INTO valueset_to_concept VALUES('693','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_15928141000119107');
-INSERT INTO valueset_to_concept VALUES('694','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_186706006');
-INSERT INTO valueset_to_concept VALUES('695','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_186707002');
-INSERT INTO valueset_to_concept VALUES('696','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_186708007');
-INSERT INTO valueset_to_concept VALUES('697','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_230180003');
-INSERT INTO valueset_to_concept VALUES('698','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_230598008');
-INSERT INTO valueset_to_concept VALUES('699','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_235009000');
-INSERT INTO valueset_to_concept VALUES('700','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_235726002');
-INSERT INTO valueset_to_concept VALUES('701','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_236406007');
-INSERT INTO valueset_to_concept VALUES('702','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_240103002');
-INSERT INTO valueset_to_concept VALUES('703','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_276665006');
-INSERT INTO valueset_to_concept VALUES('704','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_276666007');
-INSERT INTO valueset_to_concept VALUES('705','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_281388009');
-INSERT INTO valueset_to_concept VALUES('706','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_397763006');
-INSERT INTO valueset_to_concept VALUES('707','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_402901009');
-INSERT INTO valueset_to_concept VALUES('708','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_405631006');
-INSERT INTO valueset_to_concept VALUES('709','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_40780007');
-INSERT INTO valueset_to_concept VALUES('710','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_414376003');
-INSERT INTO valueset_to_concept VALUES('711','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_414604009');
-INSERT INTO valueset_to_concept VALUES('712','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_416729007');
-INSERT INTO valueset_to_concept VALUES('713','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_420281004');
-INSERT INTO valueset_to_concept VALUES('714','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_420308006');
-INSERT INTO valueset_to_concept VALUES('715','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_420321004');
-INSERT INTO valueset_to_concept VALUES('716','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_420384005');
-INSERT INTO valueset_to_concept VALUES('717','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_420395004');
-INSERT INTO valueset_to_concept VALUES('718','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_420403001');
-INSERT INTO valueset_to_concept VALUES('719','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_420452002');
-INSERT INTO valueset_to_concept VALUES('720','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_420543008');
-INSERT INTO valueset_to_concept VALUES('721','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_420544002');
-INSERT INTO valueset_to_concept VALUES('722','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_420549007');
-INSERT INTO valueset_to_concept VALUES('723','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_420554003');
-INSERT INTO valueset_to_concept VALUES('724','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_420614009');
-INSERT INTO valueset_to_concept VALUES('725','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_420658009');
-INSERT INTO valueset_to_concept VALUES('726','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_420687005');
-INSERT INTO valueset_to_concept VALUES('727','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_420691000');
-INSERT INTO valueset_to_concept VALUES('728','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_420718004');
-INSERT INTO valueset_to_concept VALUES('729','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_420721002');
-INSERT INTO valueset_to_concept VALUES('730','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_420774007');
-INSERT INTO valueset_to_concept VALUES('731','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_420787001');
-INSERT INTO valueset_to_concept VALUES('732','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_420801006');
-INSERT INTO valueset_to_concept VALUES('733','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_420818005');
-INSERT INTO valueset_to_concept VALUES('734','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_420877009');
-INSERT INTO valueset_to_concept VALUES('735','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_420900006');
-INSERT INTO valueset_to_concept VALUES('736','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_420938005');
-INSERT INTO valueset_to_concept VALUES('737','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_420945005');
-INSERT INTO valueset_to_concept VALUES('738','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_421020000');
-INSERT INTO valueset_to_concept VALUES('739','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_421023003');
-INSERT INTO valueset_to_concept VALUES('740','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_421047005');
-INSERT INTO valueset_to_concept VALUES('741','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_421077004');
-INSERT INTO valueset_to_concept VALUES('742','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_421102007');
-INSERT INTO valueset_to_concept VALUES('743','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_421230000');
-INSERT INTO valueset_to_concept VALUES('744','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_421272004');
-INSERT INTO valueset_to_concept VALUES('745','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_421312009');
-INSERT INTO valueset_to_concept VALUES('746','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_421315006');
-INSERT INTO valueset_to_concept VALUES('747','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_421394009');
-INSERT INTO valueset_to_concept VALUES('748','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_421431004');
-INSERT INTO valueset_to_concept VALUES('749','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_421454008');
-INSERT INTO valueset_to_concept VALUES('750','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_421460008');
-INSERT INTO valueset_to_concept VALUES('751','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_421508002');
-INSERT INTO valueset_to_concept VALUES('752','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_421510000');
-INSERT INTO valueset_to_concept VALUES('753','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_421529006');
-INSERT INTO valueset_to_concept VALUES('754','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_421597001');
-INSERT INTO valueset_to_concept VALUES('755','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_421660003');
-INSERT INTO valueset_to_concept VALUES('756','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_421666009');
-INSERT INTO valueset_to_concept VALUES('757','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_421671002');
-INSERT INTO valueset_to_concept VALUES('758','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_421695000');
-INSERT INTO valueset_to_concept VALUES('759','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_421706001');
-INSERT INTO valueset_to_concept VALUES('760','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_421708000');
-INSERT INTO valueset_to_concept VALUES('761','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_421710003');
-INSERT INTO valueset_to_concept VALUES('762','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_421766003');
-INSERT INTO valueset_to_concept VALUES('763','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_421827003');
-INSERT INTO valueset_to_concept VALUES('764','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_421851008');
-INSERT INTO valueset_to_concept VALUES('765','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_421874007');
-INSERT INTO valueset_to_concept VALUES('766','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_421929001');
-INSERT INTO valueset_to_concept VALUES('767','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_421983003');
-INSERT INTO valueset_to_concept VALUES('768','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_421998001');
-INSERT INTO valueset_to_concept VALUES('769','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_422003001');
-INSERT INTO valueset_to_concept VALUES('770','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_422012004');
-INSERT INTO valueset_to_concept VALUES('771','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_422074008');
-INSERT INTO valueset_to_concept VALUES('772','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_422127002');
-INSERT INTO valueset_to_concept VALUES('773','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_422136003');
-INSERT INTO valueset_to_concept VALUES('774','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_422177004');
-INSERT INTO valueset_to_concept VALUES('775','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_422189002');
-INSERT INTO valueset_to_concept VALUES('776','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_422194002');
-INSERT INTO valueset_to_concept VALUES('777','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_445945000');
-INSERT INTO valueset_to_concept VALUES('778','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_48794007');
-INSERT INTO valueset_to_concept VALUES('779','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_52079000');
-INSERT INTO valueset_to_concept VALUES('780','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_62479008');
-INSERT INTO valueset_to_concept VALUES('781','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_697904001');
-INSERT INTO valueset_to_concept VALUES('782','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_697965002');
-INSERT INTO valueset_to_concept VALUES('783','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_700053002');
-INSERT INTO valueset_to_concept VALUES('784','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_713275003');
-INSERT INTO valueset_to_concept VALUES('785','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_713278001');
-INSERT INTO valueset_to_concept VALUES('786','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_713297001');
-INSERT INTO valueset_to_concept VALUES('787','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_713298006');
-INSERT INTO valueset_to_concept VALUES('788','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_713299003');
-INSERT INTO valueset_to_concept VALUES('789','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_713300006');
-INSERT INTO valueset_to_concept VALUES('790','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_713316008');
-INSERT INTO valueset_to_concept VALUES('791','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_713318009');
-INSERT INTO valueset_to_concept VALUES('792','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_713320007');
-INSERT INTO valueset_to_concept VALUES('793','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_713340000');
-INSERT INTO valueset_to_concept VALUES('794','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_713341001');
-INSERT INTO valueset_to_concept VALUES('795','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_713349004');
-INSERT INTO valueset_to_concept VALUES('796','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_713444005');
-INSERT INTO valueset_to_concept VALUES('797','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_713446007');
-INSERT INTO valueset_to_concept VALUES('798','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_713483007');
-INSERT INTO valueset_to_concept VALUES('799','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_713484001');
-INSERT INTO valueset_to_concept VALUES('800','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_713487008');
-INSERT INTO valueset_to_concept VALUES('801','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_713488003');
-INSERT INTO valueset_to_concept VALUES('802','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_713489006');
-INSERT INTO valueset_to_concept VALUES('803','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_713490002');
-INSERT INTO valueset_to_concept VALUES('804','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_713491003');
-INSERT INTO valueset_to_concept VALUES('805','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_713497004');
-INSERT INTO valueset_to_concept VALUES('806','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_713503007');
-INSERT INTO valueset_to_concept VALUES('807','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_713504001');
-INSERT INTO valueset_to_concept VALUES('808','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_713505000');
-INSERT INTO valueset_to_concept VALUES('809','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_713506004');
-INSERT INTO valueset_to_concept VALUES('810','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_713507008');
-INSERT INTO valueset_to_concept VALUES('811','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_713508003');
-INSERT INTO valueset_to_concept VALUES('812','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_713510001');
-INSERT INTO valueset_to_concept VALUES('813','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_713511002');
-INSERT INTO valueset_to_concept VALUES('814','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_713523008');
-INSERT INTO valueset_to_concept VALUES('815','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_713526000');
-INSERT INTO valueset_to_concept VALUES('816','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_713527009');
-INSERT INTO valueset_to_concept VALUES('817','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_713530002');
-INSERT INTO valueset_to_concept VALUES('818','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_713531003');
-INSERT INTO valueset_to_concept VALUES('819','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_713532005');
-INSERT INTO valueset_to_concept VALUES('820','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_713533000');
-INSERT INTO valueset_to_concept VALUES('821','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_713543002');
-INSERT INTO valueset_to_concept VALUES('822','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_713544008');
-INSERT INTO valueset_to_concept VALUES('823','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_713545009');
-INSERT INTO valueset_to_concept VALUES('824','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_713546005');
-INSERT INTO valueset_to_concept VALUES('825','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_713570009');
-INSERT INTO valueset_to_concept VALUES('826','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_713571008');
-INSERT INTO valueset_to_concept VALUES('827','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_713695001');
-INSERT INTO valueset_to_concept VALUES('828','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_713696000');
-INSERT INTO valueset_to_concept VALUES('829','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_713729005');
-INSERT INTO valueset_to_concept VALUES('830','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_713730000');
-INSERT INTO valueset_to_concept VALUES('831','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_713731001');
-INSERT INTO valueset_to_concept VALUES('832','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_713732008');
-INSERT INTO valueset_to_concept VALUES('833','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_713733003');
-INSERT INTO valueset_to_concept VALUES('834','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_713734009');
-INSERT INTO valueset_to_concept VALUES('835','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_713844000');
-INSERT INTO valueset_to_concept VALUES('836','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_713880000');
-INSERT INTO valueset_to_concept VALUES('837','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_713881001');
-INSERT INTO valueset_to_concept VALUES('838','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_713887002');
-INSERT INTO valueset_to_concept VALUES('839','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_713964006');
-INSERT INTO valueset_to_concept VALUES('840','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_713967004');
-INSERT INTO valueset_to_concept VALUES('841','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_714464009');
-INSERT INTO valueset_to_concept VALUES('842','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_719522009');
-INSERT INTO valueset_to_concept VALUES('843','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_721166000');
-INSERT INTO valueset_to_concept VALUES('844','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_722554000');
-INSERT INTO valueset_to_concept VALUES('845','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_72621000119104');
-INSERT INTO valueset_to_concept VALUES('846','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_72631000119101');
-INSERT INTO valueset_to_concept VALUES('847','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_737378009');
-INSERT INTO valueset_to_concept VALUES('848','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_737379001');
-INSERT INTO valueset_to_concept VALUES('849','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_737380003');
-INSERT INTO valueset_to_concept VALUES('850','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_737381004');
-INSERT INTO valueset_to_concept VALUES('851','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_765434008');
-INSERT INTO valueset_to_concept VALUES('852','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_76981000119106');
-INSERT INTO valueset_to_concept VALUES('853','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_76991000119109');
-INSERT INTO valueset_to_concept VALUES('854','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_771119002');
-INSERT INTO valueset_to_concept VALUES('855','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_771127006');
-INSERT INTO valueset_to_concept VALUES('856','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_79019005');
-INSERT INTO valueset_to_concept VALUES('857','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_80191000119101');
-INSERT INTO valueset_to_concept VALUES('858','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_81000119104');
-INSERT INTO valueset_to_concept VALUES('859','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_838338001');
-INSERT INTO valueset_to_concept VALUES('860','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_860871003');
-INSERT INTO valueset_to_concept VALUES('861','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_860872005');
-INSERT INTO valueset_to_concept VALUES('862','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_860874006');
-INSERT INTO valueset_to_concept VALUES('863','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_86406008');
-INSERT INTO valueset_to_concept VALUES('864','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_866044006');
-INSERT INTO valueset_to_concept VALUES('865','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_870271009');
-INSERT INTO valueset_to_concept VALUES('866','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_870328002');
-INSERT INTO valueset_to_concept VALUES('867','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_870344006');
-INSERT INTO valueset_to_concept VALUES('868','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_87117006');
-INSERT INTO valueset_to_concept VALUES('869','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_90681000119107');
-INSERT INTO valueset_to_concept VALUES('870','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_90691000119105');
-INSERT INTO valueset_to_concept VALUES('871','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_91947003');
-INSERT INTO valueset_to_concept VALUES('872','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_91948008');
-INSERT INTO valueset_to_concept VALUES('873','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_315019000');
-INSERT INTO valueset_to_concept VALUES('874','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_420244003');
-INSERT INTO valueset_to_concept VALUES('875','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_421403008');
-INSERT INTO valueset_to_concept VALUES('876','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_421883002');
-INSERT INTO valueset_to_concept VALUES('877','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_422089004');
-INSERT INTO valueset_to_concept VALUES('878','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_422337001');
-INSERT INTO valueset_to_concept VALUES('879','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_442134007');
-INSERT INTO valueset_to_concept VALUES('880','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_713339002');
-INSERT INTO valueset_to_concept VALUES('881','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_713445006');
-INSERT INTO valueset_to_concept VALUES('882','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_713722001');
-INSERT INTO valueset_to_concept VALUES('883','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_713845004');
-INSERT INTO valueset_to_concept VALUES('884','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_722557007');
-INSERT INTO valueset_to_concept VALUES('885','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_838377003');
-INSERT INTO valueset_to_concept VALUES('886','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_420302007');
-INSERT INTO valueset_to_concept VALUES('887','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_420524008');
-INSERT INTO valueset_to_concept VALUES('888','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_420764009');
-INSERT INTO valueset_to_concept VALUES('889','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_421283008');
-INSERT INTO valueset_to_concept VALUES('890','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_422282000');
-INSERT INTO valueset_to_concept VALUES('891','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_442537007');
-INSERT INTO valueset_to_concept VALUES('892','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_713325002');
-INSERT INTO valueset_to_concept VALUES('893','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_713342008');
-INSERT INTO valueset_to_concept VALUES('894','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_713572001');
-INSERT INTO valueset_to_concept VALUES('895','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_713718006');
-INSERT INTO valueset_to_concept VALUES('896','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_713897006');
-INSERT INTO valueset_to_concept VALUES('897','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_714083007');
-INSERT INTO valueset_to_concept VALUES('898','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_733834006');
-INSERT INTO valueset_to_concept VALUES('899','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_733835007');
-INSERT INTO valueset_to_concept VALUES('900','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_735521001');
-INSERT INTO valueset_to_concept VALUES('901','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_735522008');
-INSERT INTO valueset_to_concept VALUES('902','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_735523003');
-INSERT INTO valueset_to_concept VALUES('903','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_735524009');
-INSERT INTO valueset_to_concept VALUES('904','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_735525005');
-INSERT INTO valueset_to_concept VALUES('905','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_735526006');
-INSERT INTO valueset_to_concept VALUES('906','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_735527002');
-INSERT INTO valueset_to_concept VALUES('907','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_735528007');
-INSERT INTO valueset_to_concept VALUES('908','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_771126002');
-INSERT INTO valueset_to_concept VALUES('909','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_398329009');
-INSERT INTO valueset_to_concept VALUES('910','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_421415007');
-INSERT INTO valueset_to_concept VALUES('911','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_713260006');
-INSERT INTO valueset_to_concept VALUES('912','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_840442003');
-INSERT INTO valueset_to_concept VALUES('913','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_840498003');
-INSERT INTO valueset_to_concept VALUES('914','2.16.840.1.113762.1.4.1146.460_20240620','2.16.840.1.113762.1.4.1146.460_421571007');
-INSERT INTO valueset_to_concept VALUES('915','2.16.840.1.113762.1.4.1146.461_20181031','2.16.840.1.113762.1.4.1146.461_B20');
-INSERT INTO valueset_to_concept VALUES('916','2.16.840.1.113762.1.4.1146.461_20181031','2.16.840.1.113762.1.4.1146.461_B97.35');
-INSERT INTO valueset_to_concept VALUES('917','2.16.840.1.113762.1.4.1146.461_20181031','2.16.840.1.113762.1.4.1146.461_O98.7');
-INSERT INTO valueset_to_concept VALUES('918','2.16.840.1.113762.1.4.1146.461_20181031','2.16.840.1.113762.1.4.1146.461_O98.71');
-INSERT INTO valueset_to_concept VALUES('919','2.16.840.1.113762.1.4.1146.461_20181031','2.16.840.1.113762.1.4.1146.461_O98.711');
-INSERT INTO valueset_to_concept VALUES('920','2.16.840.1.113762.1.4.1146.461_20181031','2.16.840.1.113762.1.4.1146.461_O98.712');
-INSERT INTO valueset_to_concept VALUES('921','2.16.840.1.113762.1.4.1146.461_20181031','2.16.840.1.113762.1.4.1146.461_O98.713');
-INSERT INTO valueset_to_concept VALUES('922','2.16.840.1.113762.1.4.1146.461_20181031','2.16.840.1.113762.1.4.1146.461_O98.719');
-INSERT INTO valueset_to_concept VALUES('923','2.16.840.1.113762.1.4.1146.461_20181031','2.16.840.1.113762.1.4.1146.461_O98.72');
-INSERT INTO valueset_to_concept VALUES('924','2.16.840.1.113762.1.4.1146.461_20181031','2.16.840.1.113762.1.4.1146.461_O98.73');
-INSERT INTO valueset_to_concept VALUES('925','2.16.840.1.113762.1.4.1146.461_20181031','2.16.840.1.113762.1.4.1146.461_Z21');
-INSERT INTO valueset_to_concept VALUES('926','2.16.840.1.113762.1.4.1146.221_20181031','2.16.840.1.113762.1.4.1146.221_A77.4');
-INSERT INTO valueset_to_concept VALUES('927','2.16.840.1.113762.1.4.1146.221_20181031','2.16.840.1.113762.1.4.1146.221_A77.40');
-INSERT INTO valueset_to_concept VALUES('928','2.16.840.1.113762.1.4.1146.221_20181031','2.16.840.1.113762.1.4.1146.221_A77.41');
-INSERT INTO valueset_to_concept VALUES('929','2.16.840.1.113762.1.4.1146.221_20181031','2.16.840.1.113762.1.4.1146.221_A77.49');
-INSERT INTO valueset_to_concept VALUES('930','2.16.840.1.113762.1.4.1146.224_20181031','2.16.840.1.113762.1.4.1146.224_240626005');
-INSERT INTO valueset_to_concept VALUES('931','2.16.840.1.113762.1.4.1146.224_20181031','2.16.840.1.113762.1.4.1146.224_359747000');
-INSERT INTO valueset_to_concept VALUES('932','2.16.840.1.113762.1.4.1146.224_20181031','2.16.840.1.113762.1.4.1146.224_406572006');
-INSERT INTO valueset_to_concept VALUES('933','2.16.840.1.113762.1.4.1146.224_20181031','2.16.840.1.113762.1.4.1146.224_441554001');
-INSERT INTO valueset_to_concept VALUES('934','2.16.840.1.113762.1.4.1146.224_20181031','2.16.840.1.113762.1.4.1146.224_77361002');
-INSERT INTO valueset_to_concept VALUES('935','2.16.840.1.113762.1.4.1146.105_20181031','2.16.840.1.113762.1.4.1146.105_B06');
-INSERT INTO valueset_to_concept VALUES('936','2.16.840.1.113762.1.4.1146.105_20181031','2.16.840.1.113762.1.4.1146.105_B06.0');
-INSERT INTO valueset_to_concept VALUES('937','2.16.840.1.113762.1.4.1146.105_20181031','2.16.840.1.113762.1.4.1146.105_B06.00');
-INSERT INTO valueset_to_concept VALUES('938','2.16.840.1.113762.1.4.1146.105_20181031','2.16.840.1.113762.1.4.1146.105_B06.09');
-INSERT INTO valueset_to_concept VALUES('939','2.16.840.1.113762.1.4.1146.105_20181031','2.16.840.1.113762.1.4.1146.105_B06.8');
-INSERT INTO valueset_to_concept VALUES('940','2.16.840.1.113762.1.4.1146.105_20181031','2.16.840.1.113762.1.4.1146.105_B06.81');
-INSERT INTO valueset_to_concept VALUES('941','2.16.840.1.113762.1.4.1146.105_20181031','2.16.840.1.113762.1.4.1146.105_B06.82');
-INSERT INTO valueset_to_concept VALUES('942','2.16.840.1.113762.1.4.1146.105_20181031','2.16.840.1.113762.1.4.1146.105_B06.89');
-INSERT INTO valueset_to_concept VALUES('943','2.16.840.1.113762.1.4.1146.105_20181031','2.16.840.1.113762.1.4.1146.105_B06.9');
-INSERT INTO valueset_to_concept VALUES('944','2.16.840.1.113762.1.4.1146.105_20181031','2.16.840.1.113762.1.4.1146.105_B06.02');
-INSERT INTO valueset_to_concept VALUES('945','2.16.840.1.113762.1.4.1146.105_20181031','2.16.840.1.113762.1.4.1146.105_P35.0');
-INSERT INTO valueset_to_concept VALUES('946','2.16.840.1.113762.1.4.1146.105_20181031','2.16.840.1.113762.1.4.1146.105_B06.01');
-INSERT INTO valueset_to_concept VALUES('947','2.16.840.1.113762.1.4.1146.226_20240123','2.16.840.1.113762.1.4.1146.226_1142227009');
-INSERT INTO valueset_to_concept VALUES('948','2.16.840.1.113762.1.4.1146.226_20240123','2.16.840.1.113762.1.4.1146.226_1163084005');
-INSERT INTO valueset_to_concept VALUES('949','2.16.840.1.113762.1.4.1146.226_20240123','2.16.840.1.113762.1.4.1146.226_1163460006');
-INSERT INTO valueset_to_concept VALUES('950','2.16.840.1.113762.1.4.1146.226_20240123','2.16.840.1.113762.1.4.1146.226_1259042008');
-INSERT INTO valueset_to_concept VALUES('951','2.16.840.1.113762.1.4.1146.226_20240123','2.16.840.1.113762.1.4.1146.226_230605007');
-INSERT INTO valueset_to_concept VALUES('952','2.16.840.1.113762.1.4.1146.226_20240123','2.16.840.1.113762.1.4.1146.226_232314004');
-INSERT INTO valueset_to_concept VALUES('953','2.16.840.1.113762.1.4.1146.226_20240123','2.16.840.1.113762.1.4.1146.226_23502006');
-INSERT INTO valueset_to_concept VALUES('954','2.16.840.1.113762.1.4.1146.226_20240123','2.16.840.1.113762.1.4.1146.226_240669002');
-INSERT INTO valueset_to_concept VALUES('955','2.16.840.1.113762.1.4.1146.226_20240123','2.16.840.1.113762.1.4.1146.226_240670001');
-INSERT INTO valueset_to_concept VALUES('956','2.16.840.1.113762.1.4.1146.226_20240123','2.16.840.1.113762.1.4.1146.226_240671002');
-INSERT INTO valueset_to_concept VALUES('957','2.16.840.1.113762.1.4.1146.226_20240123','2.16.840.1.113762.1.4.1146.226_33937009');
-INSERT INTO valueset_to_concept VALUES('958','2.16.840.1.113762.1.4.1146.226_20240123','2.16.840.1.113762.1.4.1146.226_410473001');
-INSERT INTO valueset_to_concept VALUES('959','2.16.840.1.113762.1.4.1146.226_20240123','2.16.840.1.113762.1.4.1146.226_410474007');
-INSERT INTO valueset_to_concept VALUES('960','2.16.840.1.113762.1.4.1146.226_20240123','2.16.840.1.113762.1.4.1146.226_410475008');
-INSERT INTO valueset_to_concept VALUES('961','2.16.840.1.113762.1.4.1146.226_20240123','2.16.840.1.113762.1.4.1146.226_426637005');
-INSERT INTO valueset_to_concept VALUES('962','2.16.840.1.113762.1.4.1146.226_20240123','2.16.840.1.113762.1.4.1146.226_4340003');
-INSERT INTO valueset_to_concept VALUES('963','2.16.840.1.113762.1.4.1146.226_20240123','2.16.840.1.113762.1.4.1146.226_48982009');
-INSERT INTO valueset_to_concept VALUES('964','2.16.840.1.113762.1.4.1146.226_20240123','2.16.840.1.113762.1.4.1146.226_715507005');
-INSERT INTO valueset_to_concept VALUES('965','2.16.840.1.113762.1.4.1146.226_20240123','2.16.840.1.113762.1.4.1146.226_733166004');
-INSERT INTO valueset_to_concept VALUES('966','2.16.840.1.113762.1.4.1146.226_20240123','2.16.840.1.113762.1.4.1146.226_735520000');
-INSERT INTO valueset_to_concept VALUES('967','2.16.840.1.113762.1.4.1146.226_20240123','2.16.840.1.113762.1.4.1146.226_77863005');
-INSERT INTO valueset_to_concept VALUES('968','2.16.840.1.113762.1.4.1146.226_20240123','2.16.840.1.113762.1.4.1146.226_866066004');
-INSERT INTO valueset_to_concept VALUES('969','2.16.840.1.113762.1.4.1146.226_20240123','2.16.840.1.113762.1.4.1146.226_870335005');
-INSERT INTO valueset_to_concept VALUES('970','2.16.840.1.113762.1.4.1146.226_20240123','2.16.840.1.113762.1.4.1146.226_230150008');
-INSERT INTO valueset_to_concept VALUES('971','2.16.840.1.113762.1.4.1146.106_20181031','2.16.840.1.113762.1.4.1146.106_10759761000119100');
-INSERT INTO valueset_to_concept VALUES('972','2.16.840.1.113762.1.4.1146.106_20181031','2.16.840.1.113762.1.4.1146.106_1092361000119109');
-INSERT INTO valueset_to_concept VALUES('973','2.16.840.1.113762.1.4.1146.106_20181031','2.16.840.1.113762.1.4.1146.106_111868009');
-INSERT INTO valueset_to_concept VALUES('974','2.16.840.1.113762.1.4.1146.106_20181031','2.16.840.1.113762.1.4.1146.106_186567003');
-INSERT INTO valueset_to_concept VALUES('975','2.16.840.1.113762.1.4.1146.106_20181031','2.16.840.1.113762.1.4.1146.106_19431000');
-INSERT INTO valueset_to_concept VALUES('976','2.16.840.1.113762.1.4.1146.106_20181031','2.16.840.1.113762.1.4.1146.106_232312000');
-INSERT INTO valueset_to_concept VALUES('977','2.16.840.1.113762.1.4.1146.106_20181031','2.16.840.1.113762.1.4.1146.106_240485004');
-INSERT INTO valueset_to_concept VALUES('978','2.16.840.1.113762.1.4.1146.106_20181031','2.16.840.1.113762.1.4.1146.106_277138006');
-INSERT INTO valueset_to_concept VALUES('979','2.16.840.1.113762.1.4.1146.106_20181031','2.16.840.1.113762.1.4.1146.106_36653000');
-INSERT INTO valueset_to_concept VALUES('980','2.16.840.1.113762.1.4.1146.106_20181031','2.16.840.1.113762.1.4.1146.106_41679006');
-INSERT INTO valueset_to_concept VALUES('981','2.16.840.1.113762.1.4.1146.106_20181031','2.16.840.1.113762.1.4.1146.106_721773000');
-INSERT INTO valueset_to_concept VALUES('982','2.16.840.1.113762.1.4.1146.106_20181031','2.16.840.1.113762.1.4.1146.106_1092351000119107');
-INSERT INTO valueset_to_concept VALUES('983','2.16.840.1.113762.1.4.1146.106_20181031','2.16.840.1.113762.1.4.1146.106_186570004');
-INSERT INTO valueset_to_concept VALUES('984','2.16.840.1.113762.1.4.1146.106_20181031','2.16.840.1.113762.1.4.1146.106_199192005');
-INSERT INTO valueset_to_concept VALUES('985','2.16.840.1.113762.1.4.1146.106_20181031','2.16.840.1.113762.1.4.1146.106_199193000');
-INSERT INTO valueset_to_concept VALUES('986','2.16.840.1.113762.1.4.1146.106_20181031','2.16.840.1.113762.1.4.1146.106_199194006');
-INSERT INTO valueset_to_concept VALUES('987','2.16.840.1.113762.1.4.1146.106_20181031','2.16.840.1.113762.1.4.1146.106_199195007');
-INSERT INTO valueset_to_concept VALUES('988','2.16.840.1.113762.1.4.1146.106_20181031','2.16.840.1.113762.1.4.1146.106_274119009');
-INSERT INTO valueset_to_concept VALUES('989','2.16.840.1.113762.1.4.1146.106_20181031','2.16.840.1.113762.1.4.1146.106_84939004');
-INSERT INTO valueset_to_concept VALUES('990','2.16.840.1.113762.1.4.1146.106_20181031','2.16.840.1.113762.1.4.1146.106_1857005');
-INSERT INTO valueset_to_concept VALUES('991','2.16.840.1.113762.1.4.1146.106_20181031','2.16.840.1.113762.1.4.1146.106_231985001');
-INSERT INTO valueset_to_concept VALUES('992','2.16.840.1.113762.1.4.1146.106_20181031','2.16.840.1.113762.1.4.1146.106_253227001');
-INSERT INTO valueset_to_concept VALUES('993','2.16.840.1.113762.1.4.1146.106_20181031','2.16.840.1.113762.1.4.1146.106_47082005');
-INSERT INTO valueset_to_concept VALUES('994','2.16.840.1.113762.1.4.1146.106_20181031','2.16.840.1.113762.1.4.1146.106_64190005');
-INSERT INTO valueset_to_concept VALUES('995','2.16.840.1.113762.1.4.1146.106_20181031','2.16.840.1.113762.1.4.1146.106_79303006');
-INSERT INTO valueset_to_concept VALUES('996','2.16.840.1.113762.1.4.1146.106_20181031','2.16.840.1.113762.1.4.1146.106_10082001');
-INSERT INTO valueset_to_concept VALUES('997','2.16.840.1.113762.1.4.1146.106_20181031','2.16.840.1.113762.1.4.1146.106_128191000');
-INSERT INTO valueset_to_concept VALUES('998','2.16.840.1.113762.1.4.1146.106_20181031','2.16.840.1.113762.1.4.1146.106_192689006');
-INSERT INTO valueset_to_concept VALUES('999','2.16.840.1.113762.1.4.1146.106_20181031','2.16.840.1.113762.1.4.1146.106_609434007');
-INSERT INTO valueset_to_concept VALUES('1000','2.16.840.1.113762.1.4.1146.106_20181031','2.16.840.1.113762.1.4.1146.106_13225007');
-INSERT INTO valueset_to_concept VALUES('1001','2.16.840.1.113762.1.4.1146.106_20181031','2.16.840.1.113762.1.4.1146.106_302811004');
-INSERT INTO valueset_to_concept VALUES('1002','2.16.840.1.113762.1.4.1146.2056_20230125','2.16.840.1.113762.1.4.1146.2056_1086731000119104');
-INSERT INTO valueset_to_concept VALUES('1003','2.16.840.1.113762.1.4.1146.2056_20230125','2.16.840.1.113762.1.4.1146.2056_21009004');
-INSERT INTO valueset_to_concept VALUES('1004','2.16.840.1.113762.1.4.1146.2056_20230125','2.16.840.1.113762.1.4.1146.2056_27235001');
-INSERT INTO valueset_to_concept VALUES('1005','2.16.840.1.113762.1.4.1146.227_20230122','2.16.840.1.113762.1.4.1146.227_A69.20');
-INSERT INTO valueset_to_concept VALUES('1006','2.16.840.1.113762.1.4.1146.227_20230122','2.16.840.1.113762.1.4.1146.227_A69.22');
-INSERT INTO valueset_to_concept VALUES('1007','2.16.840.1.113762.1.4.1146.227_20230122','2.16.840.1.113762.1.4.1146.227_A69.23');
-INSERT INTO valueset_to_concept VALUES('1008','2.16.840.1.113762.1.4.1146.227_20230122','2.16.840.1.113762.1.4.1146.227_A69.29');
-INSERT INTO valueset_to_concept VALUES('1009','2.16.840.1.113762.1.4.1146.227_20230122','2.16.840.1.113762.1.4.1146.227_L90.4');
-INSERT INTO valueset_to_concept VALUES('1010','2.16.840.1.113762.1.4.1146.227_20230122','2.16.840.1.113762.1.4.1146.227_A69.21');
-INSERT INTO valueset_to_concept VALUES('1011','2.16.840.1.113762.1.4.1146.2057_20230125','2.16.840.1.113762.1.4.1146.2057_B67.5');
-INSERT INTO valueset_to_concept VALUES('1012','2.16.840.1.113762.1.4.1146.2057_20230125','2.16.840.1.113762.1.4.1146.2057_B67.61');
-INSERT INTO valueset_to_concept VALUES('1013','2.16.840.1.113762.1.4.1146.2057_20230125','2.16.840.1.113762.1.4.1146.2057_B67.69');
-INSERT INTO valueset_to_concept VALUES('1014','2.16.840.1.113762.1.4.1146.2057_20230125','2.16.840.1.113762.1.4.1146.2057_B67.7');
-INSERT INTO valueset_to_concept VALUES('1015','2.16.840.1.113762.1.4.1146.1089_20191227','2.16.840.1.113762.1.4.1146.1089_A50');
-INSERT INTO valueset_to_concept VALUES('1016','2.16.840.1.113762.1.4.1146.1089_20191227','2.16.840.1.113762.1.4.1146.1089_A50.0');
-INSERT INTO valueset_to_concept VALUES('1017','2.16.840.1.113762.1.4.1146.1089_20191227','2.16.840.1.113762.1.4.1146.1089_A50.3');
-INSERT INTO valueset_to_concept VALUES('1018','2.16.840.1.113762.1.4.1146.1089_20191227','2.16.840.1.113762.1.4.1146.1089_A50.4');
-INSERT INTO valueset_to_concept VALUES('1019','2.16.840.1.113762.1.4.1146.1089_20191227','2.16.840.1.113762.1.4.1146.1089_A50.5');
-INSERT INTO valueset_to_concept VALUES('1020','2.16.840.1.113762.1.4.1146.1089_20191227','2.16.840.1.113762.1.4.1146.1089_A50.01');
-INSERT INTO valueset_to_concept VALUES('1021','2.16.840.1.113762.1.4.1146.1089_20191227','2.16.840.1.113762.1.4.1146.1089_A50.02');
-INSERT INTO valueset_to_concept VALUES('1022','2.16.840.1.113762.1.4.1146.1089_20191227','2.16.840.1.113762.1.4.1146.1089_A50.03');
-INSERT INTO valueset_to_concept VALUES('1023','2.16.840.1.113762.1.4.1146.1089_20191227','2.16.840.1.113762.1.4.1146.1089_A50.04');
-INSERT INTO valueset_to_concept VALUES('1024','2.16.840.1.113762.1.4.1146.1089_20191227','2.16.840.1.113762.1.4.1146.1089_A50.05');
-INSERT INTO valueset_to_concept VALUES('1025','2.16.840.1.113762.1.4.1146.1089_20191227','2.16.840.1.113762.1.4.1146.1089_A50.06');
-INSERT INTO valueset_to_concept VALUES('1026','2.16.840.1.113762.1.4.1146.1089_20191227','2.16.840.1.113762.1.4.1146.1089_A50.07');
-INSERT INTO valueset_to_concept VALUES('1027','2.16.840.1.113762.1.4.1146.1089_20191227','2.16.840.1.113762.1.4.1146.1089_A50.08');
-INSERT INTO valueset_to_concept VALUES('1028','2.16.840.1.113762.1.4.1146.1089_20191227','2.16.840.1.113762.1.4.1146.1089_A50.09');
-INSERT INTO valueset_to_concept VALUES('1029','2.16.840.1.113762.1.4.1146.1089_20191227','2.16.840.1.113762.1.4.1146.1089_A50.1');
-INSERT INTO valueset_to_concept VALUES('1030','2.16.840.1.113762.1.4.1146.1089_20191227','2.16.840.1.113762.1.4.1146.1089_A50.2');
-INSERT INTO valueset_to_concept VALUES('1031','2.16.840.1.113762.1.4.1146.1089_20191227','2.16.840.1.113762.1.4.1146.1089_A50.30');
-INSERT INTO valueset_to_concept VALUES('1032','2.16.840.1.113762.1.4.1146.1089_20191227','2.16.840.1.113762.1.4.1146.1089_A50.31');
-INSERT INTO valueset_to_concept VALUES('1033','2.16.840.1.113762.1.4.1146.1089_20191227','2.16.840.1.113762.1.4.1146.1089_A50.32');
-INSERT INTO valueset_to_concept VALUES('1034','2.16.840.1.113762.1.4.1146.1089_20191227','2.16.840.1.113762.1.4.1146.1089_A50.39');
-INSERT INTO valueset_to_concept VALUES('1035','2.16.840.1.113762.1.4.1146.1089_20191227','2.16.840.1.113762.1.4.1146.1089_A50.40');
-INSERT INTO valueset_to_concept VALUES('1036','2.16.840.1.113762.1.4.1146.1089_20191227','2.16.840.1.113762.1.4.1146.1089_A50.41');
-INSERT INTO valueset_to_concept VALUES('1037','2.16.840.1.113762.1.4.1146.1089_20191227','2.16.840.1.113762.1.4.1146.1089_A50.43');
-INSERT INTO valueset_to_concept VALUES('1038','2.16.840.1.113762.1.4.1146.1089_20191227','2.16.840.1.113762.1.4.1146.1089_A50.44');
-INSERT INTO valueset_to_concept VALUES('1039','2.16.840.1.113762.1.4.1146.1089_20191227','2.16.840.1.113762.1.4.1146.1089_A50.45');
-INSERT INTO valueset_to_concept VALUES('1040','2.16.840.1.113762.1.4.1146.1089_20191227','2.16.840.1.113762.1.4.1146.1089_A50.49');
-INSERT INTO valueset_to_concept VALUES('1041','2.16.840.1.113762.1.4.1146.1089_20191227','2.16.840.1.113762.1.4.1146.1089_A50.51');
-INSERT INTO valueset_to_concept VALUES('1042','2.16.840.1.113762.1.4.1146.1089_20191227','2.16.840.1.113762.1.4.1146.1089_A50.52');
-INSERT INTO valueset_to_concept VALUES('1043','2.16.840.1.113762.1.4.1146.1089_20191227','2.16.840.1.113762.1.4.1146.1089_A50.53');
-INSERT INTO valueset_to_concept VALUES('1044','2.16.840.1.113762.1.4.1146.1089_20191227','2.16.840.1.113762.1.4.1146.1089_A50.54');
-INSERT INTO valueset_to_concept VALUES('1045','2.16.840.1.113762.1.4.1146.1089_20191227','2.16.840.1.113762.1.4.1146.1089_A50.55');
-INSERT INTO valueset_to_concept VALUES('1046','2.16.840.1.113762.1.4.1146.1089_20191227','2.16.840.1.113762.1.4.1146.1089_A50.56');
-INSERT INTO valueset_to_concept VALUES('1047','2.16.840.1.113762.1.4.1146.1089_20191227','2.16.840.1.113762.1.4.1146.1089_A50.57');
-INSERT INTO valueset_to_concept VALUES('1048','2.16.840.1.113762.1.4.1146.1089_20191227','2.16.840.1.113762.1.4.1146.1089_A50.59');
-INSERT INTO valueset_to_concept VALUES('1049','2.16.840.1.113762.1.4.1146.1089_20191227','2.16.840.1.113762.1.4.1146.1089_A50.6');
-INSERT INTO valueset_to_concept VALUES('1050','2.16.840.1.113762.1.4.1146.1089_20191227','2.16.840.1.113762.1.4.1146.1089_A50.7');
-INSERT INTO valueset_to_concept VALUES('1051','2.16.840.1.113762.1.4.1146.1089_20191227','2.16.840.1.113762.1.4.1146.1089_A50.9');
-INSERT INTO valueset_to_concept VALUES('1052','2.16.840.1.113762.1.4.1146.1089_20191227','2.16.840.1.113762.1.4.1146.1089_A50.42');
-INSERT INTO valueset_to_concept VALUES('1053','2.16.840.1.113762.1.4.1146.2054_20230125','2.16.840.1.113762.1.4.1146.2054_1086721000119102');
-INSERT INTO valueset_to_concept VALUES('1054','2.16.840.1.113762.1.4.1146.2054_20230125','2.16.840.1.113762.1.4.1146.2054_187137009');
-INSERT INTO valueset_to_concept VALUES('1055','2.16.840.1.113762.1.4.1146.2054_20230125','2.16.840.1.113762.1.4.1146.2054_20790006');
-INSERT INTO valueset_to_concept VALUES('1056','2.16.840.1.113762.1.4.1146.2054_20230125','2.16.840.1.113762.1.4.1146.2054_65963007');
-INSERT INTO valueset_to_concept VALUES('1057','2.16.840.1.113762.1.4.1146.2054_20230125','2.16.840.1.113762.1.4.1146.2054_721822004');
-INSERT INTO valueset_to_concept VALUES('1058','2.16.840.1.113762.1.4.1146.2054_20230125','2.16.840.1.113762.1.4.1146.2054_75006000');
-INSERT INTO valueset_to_concept VALUES('1059','2.16.840.1.113762.1.4.1146.2054_20230125','2.16.840.1.113762.1.4.1146.2054_75388006');
-INSERT INTO valueset_to_concept VALUES('1060','2.16.840.1.113762.1.4.1146.2054_20230125','2.16.840.1.113762.1.4.1146.2054_840499006');
-INSERT INTO valueset_to_concept VALUES('1061','2.16.840.1.113762.1.4.1146.2054_20230125','2.16.840.1.113762.1.4.1146.2054_721823009');
-INSERT INTO valueset_to_concept VALUES('1062','2.16.840.1.113762.1.4.1146.229_20220601','2.16.840.1.113762.1.4.1146.229_10809061000119106');
-INSERT INTO valueset_to_concept VALUES('1063','2.16.840.1.113762.1.4.1146.229_20220601','2.16.840.1.113762.1.4.1146.229_1141602008');
-INSERT INTO valueset_to_concept VALUES('1064','2.16.840.1.113762.1.4.1146.229_20220601','2.16.840.1.113762.1.4.1146.229_18342001');
-INSERT INTO valueset_to_concept VALUES('1065','2.16.840.1.113762.1.4.1146.229_20220601','2.16.840.1.113762.1.4.1146.229_186792002');
-INSERT INTO valueset_to_concept VALUES('1066','2.16.840.1.113762.1.4.1146.229_20220601','2.16.840.1.113762.1.4.1146.229_186795000');
-INSERT INTO valueset_to_concept VALUES('1067','2.16.840.1.113762.1.4.1146.229_20220601','2.16.840.1.113762.1.4.1146.229_186796004');
-INSERT INTO valueset_to_concept VALUES('1068','2.16.840.1.113762.1.4.1146.229_20220601','2.16.840.1.113762.1.4.1146.229_19341001');
-INSERT INTO valueset_to_concept VALUES('1069','2.16.840.1.113762.1.4.1146.229_20220601','2.16.840.1.113762.1.4.1146.229_197606008');
-INSERT INTO valueset_to_concept VALUES('1070','2.16.840.1.113762.1.4.1146.229_20220601','2.16.840.1.113762.1.4.1146.229_199183007');
-INSERT INTO valueset_to_concept VALUES('1071','2.16.840.1.113762.1.4.1146.229_20220601','2.16.840.1.113762.1.4.1146.229_199185000');
-INSERT INTO valueset_to_concept VALUES('1072','2.16.840.1.113762.1.4.1146.229_20220601','2.16.840.1.113762.1.4.1146.229_199186004');
-INSERT INTO valueset_to_concept VALUES('1073','2.16.840.1.113762.1.4.1146.229_20220601','2.16.840.1.113762.1.4.1146.229_199187008');
-INSERT INTO valueset_to_concept VALUES('1074','2.16.840.1.113762.1.4.1146.229_20220601','2.16.840.1.113762.1.4.1146.229_199188003');
-INSERT INTO valueset_to_concept VALUES('1075','2.16.840.1.113762.1.4.1146.229_20220601','2.16.840.1.113762.1.4.1146.229_206445003');
-INSERT INTO valueset_to_concept VALUES('1076','2.16.840.1.113762.1.4.1146.229_20220601','2.16.840.1.113762.1.4.1146.229_21070001');
-INSERT INTO valueset_to_concept VALUES('1077','2.16.840.1.113762.1.4.1146.229_20220601','2.16.840.1.113762.1.4.1146.229_240631007');
-INSERT INTO valueset_to_concept VALUES('1078','2.16.840.1.113762.1.4.1146.229_20220601','2.16.840.1.113762.1.4.1146.229_248437004');
-INSERT INTO valueset_to_concept VALUES('1079','2.16.840.1.113762.1.4.1146.229_20220601','2.16.840.1.113762.1.4.1146.229_27052006');
-INSERT INTO valueset_to_concept VALUES('1080','2.16.840.1.113762.1.4.1146.229_20220601','2.16.840.1.113762.1.4.1146.229_27618009');
-INSERT INTO valueset_to_concept VALUES('1081','2.16.840.1.113762.1.4.1146.229_20220601','2.16.840.1.113762.1.4.1146.229_276671000');
-INSERT INTO valueset_to_concept VALUES('1082','2.16.840.1.113762.1.4.1146.229_20220601','2.16.840.1.113762.1.4.1146.229_3095005');
-INSERT INTO valueset_to_concept VALUES('1083','2.16.840.1.113762.1.4.1146.229_20220601','2.16.840.1.113762.1.4.1146.229_397071003');
-INSERT INTO valueset_to_concept VALUES('1084','2.16.840.1.113762.1.4.1146.229_20220601','2.16.840.1.113762.1.4.1146.229_4911000124103');
-INSERT INTO valueset_to_concept VALUES('1085','2.16.840.1.113762.1.4.1146.229_20220601','2.16.840.1.113762.1.4.1146.229_51634001');
-INSERT INTO valueset_to_concept VALUES('1086','2.16.840.1.113762.1.4.1146.229_20220601','2.16.840.1.113762.1.4.1146.229_56625005');
-INSERT INTO valueset_to_concept VALUES('1087','2.16.840.1.113762.1.4.1146.229_20220601','2.16.840.1.113762.1.4.1146.229_61462000');
-INSERT INTO valueset_to_concept VALUES('1088','2.16.840.1.113762.1.4.1146.229_20220601','2.16.840.1.113762.1.4.1146.229_62676009');
-INSERT INTO valueset_to_concept VALUES('1089','2.16.840.1.113762.1.4.1146.229_20220601','2.16.840.1.113762.1.4.1146.229_69668008');
-INSERT INTO valueset_to_concept VALUES('1090','2.16.840.1.113762.1.4.1146.229_20220601','2.16.840.1.113762.1.4.1146.229_722888000');
-INSERT INTO valueset_to_concept VALUES('1091','2.16.840.1.113762.1.4.1146.229_20220601','2.16.840.1.113762.1.4.1146.229_735531008');
-INSERT INTO valueset_to_concept VALUES('1092','2.16.840.1.113762.1.4.1146.229_20220601','2.16.840.1.113762.1.4.1146.229_77663007');
-INSERT INTO valueset_to_concept VALUES('1093','2.16.840.1.113762.1.4.1146.229_20220601','2.16.840.1.113762.1.4.1146.229_83072009');
-INSERT INTO valueset_to_concept VALUES('1094','2.16.840.1.113762.1.4.1146.229_20220601','2.16.840.1.113762.1.4.1146.229_866127009');
-INSERT INTO valueset_to_concept VALUES('1095','2.16.840.1.113762.1.4.1146.229_20220601','2.16.840.1.113762.1.4.1146.229_240629003');
-INSERT INTO valueset_to_concept VALUES('1096','2.16.840.1.113762.1.4.1146.229_20220601','2.16.840.1.113762.1.4.1146.229_735522008');
-INSERT INTO valueset_to_concept VALUES('1097','2.16.840.1.113762.1.4.1146.229_20220601','2.16.840.1.113762.1.4.1146.229_735524009');
-INSERT INTO valueset_to_concept VALUES('1098','2.16.840.1.113762.1.4.1146.229_20220601','2.16.840.1.113762.1.4.1146.229_735526006');
-INSERT INTO valueset_to_concept VALUES('1099','2.16.840.1.113762.1.4.1146.229_20220601','2.16.840.1.113762.1.4.1146.229_735528007');
-INSERT INTO valueset_to_concept VALUES('1100','2.16.840.1.113762.1.4.1146.229_20220601','2.16.840.1.113762.1.4.1146.229_186791009');
-INSERT INTO valueset_to_concept VALUES('1101','2.16.840.1.113762.1.4.1146.229_20220601','2.16.840.1.113762.1.4.1146.229_53622003');
-INSERT INTO valueset_to_concept VALUES('1102','2.16.840.1.113762.1.4.1146.2055_20230125','2.16.840.1.113762.1.4.1146.2055_B67.3');
-INSERT INTO valueset_to_concept VALUES('1103','2.16.840.1.113762.1.4.1146.2055_20230125','2.16.840.1.113762.1.4.1146.2055_B67.0');
-INSERT INTO valueset_to_concept VALUES('1104','2.16.840.1.113762.1.4.1146.2055_20230125','2.16.840.1.113762.1.4.1146.2055_B67.1');
-INSERT INTO valueset_to_concept VALUES('1105','2.16.840.1.113762.1.4.1146.2055_20230125','2.16.840.1.113762.1.4.1146.2055_B67.2');
-INSERT INTO valueset_to_concept VALUES('1106','2.16.840.1.113762.1.4.1146.2055_20230125','2.16.840.1.113762.1.4.1146.2055_B67.31');
-INSERT INTO valueset_to_concept VALUES('1107','2.16.840.1.113762.1.4.1146.2055_20230125','2.16.840.1.113762.1.4.1146.2055_B67.32');
-INSERT INTO valueset_to_concept VALUES('1108','2.16.840.1.113762.1.4.1146.2055_20230125','2.16.840.1.113762.1.4.1146.2055_B67.39');
-INSERT INTO valueset_to_concept VALUES('1109','2.16.840.1.113762.1.4.1146.2055_20230125','2.16.840.1.113762.1.4.1146.2055_B67.4');
-INSERT INTO valueset_to_concept VALUES('1110','2.16.840.1.113762.1.4.1146.2063_20230125','2.16.840.1.113762.1.4.1146.2063_A63.0');
-INSERT INTO valueset_to_concept VALUES('1111','2.16.840.1.113762.1.4.1146.2064_20230125','2.16.840.1.113762.1.4.1146.2064_187151009');
-INSERT INTO valueset_to_concept VALUES('1112','2.16.840.1.113762.1.4.1146.2064_20230125','2.16.840.1.113762.1.4.1146.2064_34240005');
-INSERT INTO valueset_to_concept VALUES('1113','2.16.840.1.113762.1.4.1146.2064_20230125','2.16.840.1.113762.1.4.1146.2064_359799003');
-INSERT INTO valueset_to_concept VALUES('1114','2.16.840.1.113762.1.4.1146.2064_20230125','2.16.840.1.113762.1.4.1146.2064_7877005');
-INSERT INTO valueset_to_concept VALUES('1115','2.16.840.1.113762.1.4.1146.2061_20230125','2.16.840.1.113762.1.4.1146.2061_237109002');
-INSERT INTO valueset_to_concept VALUES('1116','2.16.840.1.113762.1.4.1146.2061_20230125','2.16.840.1.113762.1.4.1146.2061_237110007');
-INSERT INTO valueset_to_concept VALUES('1117','2.16.840.1.113762.1.4.1146.2061_20230125','2.16.840.1.113762.1.4.1146.2061_240542006');
-INSERT INTO valueset_to_concept VALUES('1118','2.16.840.1.113762.1.4.1146.2061_20230125','2.16.840.1.113762.1.4.1146.2061_240597001');
-INSERT INTO valueset_to_concept VALUES('1119','2.16.840.1.113762.1.4.1146.2061_20230125','2.16.840.1.113762.1.4.1146.2061_240598006');
-INSERT INTO valueset_to_concept VALUES('1120','2.16.840.1.113762.1.4.1146.2061_20230125','2.16.840.1.113762.1.4.1146.2061_266113007');
-INSERT INTO valueset_to_concept VALUES('1121','2.16.840.1.113762.1.4.1146.2061_20230125','2.16.840.1.113762.1.4.1146.2061_266114001');
-INSERT INTO valueset_to_concept VALUES('1122','2.16.840.1.113762.1.4.1146.2061_20230125','2.16.840.1.113762.1.4.1146.2061_298128008');
-INSERT INTO valueset_to_concept VALUES('1123','2.16.840.1.113762.1.4.1146.2061_20230125','2.16.840.1.113762.1.4.1146.2061_298129000');
-INSERT INTO valueset_to_concept VALUES('1124','2.16.840.1.113762.1.4.1146.2061_20230125','2.16.840.1.113762.1.4.1146.2061_399599006');
-INSERT INTO valueset_to_concept VALUES('1125','2.16.840.1.113762.1.4.1146.2061_20230125','2.16.840.1.113762.1.4.1146.2061_419266001');
-INSERT INTO valueset_to_concept VALUES('1126','2.16.840.1.113762.1.4.1146.2061_20230125','2.16.840.1.113762.1.4.1146.2061_428017002');
-INSERT INTO valueset_to_concept VALUES('1127','2.16.840.1.113762.1.4.1146.2061_20230125','2.16.840.1.113762.1.4.1146.2061_871634008');
-INSERT INTO valueset_to_concept VALUES('1128','2.16.840.1.113762.1.4.1146.1090_20230602','2.16.840.1.113762.1.4.1146.1090_109436001');
-INSERT INTO valueset_to_concept VALUES('1129','2.16.840.1.113762.1.4.1146.1090_20230602','2.16.840.1.113762.1.4.1146.1090_1142031005');
-INSERT INTO valueset_to_concept VALUES('1130','2.16.840.1.113762.1.4.1146.1090_20230602','2.16.840.1.113762.1.4.1146.1090_1142092000');
-INSERT INTO valueset_to_concept VALUES('1131','2.16.840.1.113762.1.4.1146.1090_20230602','2.16.840.1.113762.1.4.1146.1090_1142095003');
-INSERT INTO valueset_to_concept VALUES('1132','2.16.840.1.113762.1.4.1146.1090_20230602','2.16.840.1.113762.1.4.1146.1090_1142112002');
-INSERT INTO valueset_to_concept VALUES('1133','2.16.840.1.113762.1.4.1146.1090_20230602','2.16.840.1.113762.1.4.1146.1090_1177081002');
-INSERT INTO valueset_to_concept VALUES('1134','2.16.840.1.113762.1.4.1146.1090_20230602','2.16.840.1.113762.1.4.1146.1090_186833000');
-INSERT INTO valueset_to_concept VALUES('1135','2.16.840.1.113762.1.4.1146.1090_20230602','2.16.840.1.113762.1.4.1146.1090_186842007');
-INSERT INTO valueset_to_concept VALUES('1136','2.16.840.1.113762.1.4.1146.1090_20230602','2.16.840.1.113762.1.4.1146.1090_192008');
-INSERT INTO valueset_to_concept VALUES('1137','2.16.840.1.113762.1.4.1146.1090_20230602','2.16.840.1.113762.1.4.1146.1090_19290004');
-INSERT INTO valueset_to_concept VALUES('1138','2.16.840.1.113762.1.4.1146.1090_20230602','2.16.840.1.113762.1.4.1146.1090_230152000');
-INSERT INTO valueset_to_concept VALUES('1139','2.16.840.1.113762.1.4.1146.1090_20230602','2.16.840.1.113762.1.4.1146.1090_230563005');
-INSERT INTO valueset_to_concept VALUES('1140','2.16.840.1.113762.1.4.1146.1090_20230602','2.16.840.1.113762.1.4.1146.1090_235898000');
-INSERT INTO valueset_to_concept VALUES('1141','2.16.840.1.113762.1.4.1146.1090_20230602','2.16.840.1.113762.1.4.1146.1090_240554006');
-INSERT INTO valueset_to_concept VALUES('1142','2.16.840.1.113762.1.4.1146.1090_20230602','2.16.840.1.113762.1.4.1146.1090_266125005');
-INSERT INTO valueset_to_concept VALUES('1143','2.16.840.1.113762.1.4.1146.1090_20230602','2.16.840.1.113762.1.4.1146.1090_266126006');
-INSERT INTO valueset_to_concept VALUES('1144','2.16.840.1.113762.1.4.1146.1090_20230602','2.16.840.1.113762.1.4.1146.1090_275376007');
-INSERT INTO valueset_to_concept VALUES('1145','2.16.840.1.113762.1.4.1146.1090_20230602','2.16.840.1.113762.1.4.1146.1090_27648007');
-INSERT INTO valueset_to_concept VALUES('1146','2.16.840.1.113762.1.4.1146.1090_20230602','2.16.840.1.113762.1.4.1146.1090_276700005');
-INSERT INTO valueset_to_concept VALUES('1147','2.16.840.1.113762.1.4.1146.1090_20230602','2.16.840.1.113762.1.4.1146.1090_35742006');
-INSERT INTO valueset_to_concept VALUES('1148','2.16.840.1.113762.1.4.1146.1090_20230602','2.16.840.1.113762.1.4.1146.1090_4359001');
-INSERT INTO valueset_to_concept VALUES('1149','2.16.840.1.113762.1.4.1146.1090_20230602','2.16.840.1.113762.1.4.1146.1090_46235002');
-INSERT INTO valueset_to_concept VALUES('1150','2.16.840.1.113762.1.4.1146.1090_20230602','2.16.840.1.113762.1.4.1146.1090_54069001');
-INSERT INTO valueset_to_concept VALUES('1151','2.16.840.1.113762.1.4.1146.1090_20230602','2.16.840.1.113762.1.4.1146.1090_56118002');
-INSERT INTO valueset_to_concept VALUES('1152','2.16.840.1.113762.1.4.1146.1090_20230602','2.16.840.1.113762.1.4.1146.1090_58392004');
-INSERT INTO valueset_to_concept VALUES('1153','2.16.840.1.113762.1.4.1146.1090_20230602','2.16.840.1.113762.1.4.1146.1090_59721007');
-INSERT INTO valueset_to_concept VALUES('1154','2.16.840.1.113762.1.4.1146.1090_20230602','2.16.840.1.113762.1.4.1146.1090_6267005');
-INSERT INTO valueset_to_concept VALUES('1155','2.16.840.1.113762.1.4.1146.1090_20230602','2.16.840.1.113762.1.4.1146.1090_68764005');
-INSERT INTO valueset_to_concept VALUES('1156','2.16.840.1.113762.1.4.1146.1090_20230602','2.16.840.1.113762.1.4.1146.1090_703134008');
-INSERT INTO valueset_to_concept VALUES('1157','2.16.840.1.113762.1.4.1146.1090_20230602','2.16.840.1.113762.1.4.1146.1090_721583004');
-INSERT INTO valueset_to_concept VALUES('1158','2.16.840.1.113762.1.4.1146.1090_20230602','2.16.840.1.113762.1.4.1146.1090_735515000');
-INSERT INTO valueset_to_concept VALUES('1159','2.16.840.1.113762.1.4.1146.1090_20230602','2.16.840.1.113762.1.4.1146.1090_82323002');
-INSERT INTO valueset_to_concept VALUES('1160','2.16.840.1.113762.1.4.1146.1090_20230602','2.16.840.1.113762.1.4.1146.1090_827006');
-INSERT INTO valueset_to_concept VALUES('1161','2.16.840.1.113762.1.4.1146.1090_20230602','2.16.840.1.113762.1.4.1146.1090_82959004');
-INSERT INTO valueset_to_concept VALUES('1162','2.16.840.1.113762.1.4.1146.1090_20230602','2.16.840.1.113762.1.4.1146.1090_86443005');
-INSERT INTO valueset_to_concept VALUES('1163','2.16.840.1.113762.1.4.1146.1090_20230602','2.16.840.1.113762.1.4.1146.1090_866106004');
-INSERT INTO valueset_to_concept VALUES('1164','2.16.840.1.113762.1.4.1146.1090_20230602','2.16.840.1.113762.1.4.1146.1090_87318008');
-INSERT INTO valueset_to_concept VALUES('1165','2.16.840.1.113762.1.4.1146.1090_20230602','2.16.840.1.113762.1.4.1146.1090_9941009');
-INSERT INTO valueset_to_concept VALUES('1166','2.16.840.1.113762.1.4.1146.1090_20230602','2.16.840.1.113762.1.4.1146.1090_32735002');
-INSERT INTO valueset_to_concept VALUES('1167','2.16.840.1.113762.1.4.1146.451_20230122','2.16.840.1.113762.1.4.1146.451_A15.0');
-INSERT INTO valueset_to_concept VALUES('1168','2.16.840.1.113762.1.4.1146.451_20230122','2.16.840.1.113762.1.4.1146.451_A15.4');
-INSERT INTO valueset_to_concept VALUES('1169','2.16.840.1.113762.1.4.1146.451_20230122','2.16.840.1.113762.1.4.1146.451_A15.5');
-INSERT INTO valueset_to_concept VALUES('1170','2.16.840.1.113762.1.4.1146.451_20230122','2.16.840.1.113762.1.4.1146.451_A15.6');
-INSERT INTO valueset_to_concept VALUES('1171','2.16.840.1.113762.1.4.1146.451_20230122','2.16.840.1.113762.1.4.1146.451_A15.7');
-INSERT INTO valueset_to_concept VALUES('1172','2.16.840.1.113762.1.4.1146.451_20230122','2.16.840.1.113762.1.4.1146.451_A15.8');
-INSERT INTO valueset_to_concept VALUES('1173','2.16.840.1.113762.1.4.1146.451_20230122','2.16.840.1.113762.1.4.1146.451_A15.9');
-INSERT INTO valueset_to_concept VALUES('1174','2.16.840.1.113762.1.4.1146.451_20230122','2.16.840.1.113762.1.4.1146.451_A17.1');
-INSERT INTO valueset_to_concept VALUES('1175','2.16.840.1.113762.1.4.1146.451_20230122','2.16.840.1.113762.1.4.1146.451_A17.81');
-INSERT INTO valueset_to_concept VALUES('1176','2.16.840.1.113762.1.4.1146.451_20230122','2.16.840.1.113762.1.4.1146.451_A17.83');
-INSERT INTO valueset_to_concept VALUES('1177','2.16.840.1.113762.1.4.1146.451_20230122','2.16.840.1.113762.1.4.1146.451_A17.89');
-INSERT INTO valueset_to_concept VALUES('1178','2.16.840.1.113762.1.4.1146.451_20230122','2.16.840.1.113762.1.4.1146.451_A17.9');
-INSERT INTO valueset_to_concept VALUES('1179','2.16.840.1.113762.1.4.1146.451_20230122','2.16.840.1.113762.1.4.1146.451_A18.01');
-INSERT INTO valueset_to_concept VALUES('1180','2.16.840.1.113762.1.4.1146.451_20230122','2.16.840.1.113762.1.4.1146.451_A18.02');
-INSERT INTO valueset_to_concept VALUES('1181','2.16.840.1.113762.1.4.1146.451_20230122','2.16.840.1.113762.1.4.1146.451_A18.03');
-INSERT INTO valueset_to_concept VALUES('1182','2.16.840.1.113762.1.4.1146.451_20230122','2.16.840.1.113762.1.4.1146.451_A18.09');
-INSERT INTO valueset_to_concept VALUES('1183','2.16.840.1.113762.1.4.1146.451_20230122','2.16.840.1.113762.1.4.1146.451_A18.10');
-INSERT INTO valueset_to_concept VALUES('1184','2.16.840.1.113762.1.4.1146.451_20230122','2.16.840.1.113762.1.4.1146.451_A18.11');
-INSERT INTO valueset_to_concept VALUES('1185','2.16.840.1.113762.1.4.1146.451_20230122','2.16.840.1.113762.1.4.1146.451_A18.12');
-INSERT INTO valueset_to_concept VALUES('1186','2.16.840.1.113762.1.4.1146.451_20230122','2.16.840.1.113762.1.4.1146.451_A18.13');
-INSERT INTO valueset_to_concept VALUES('1187','2.16.840.1.113762.1.4.1146.451_20230122','2.16.840.1.113762.1.4.1146.451_A18.14');
-INSERT INTO valueset_to_concept VALUES('1188','2.16.840.1.113762.1.4.1146.451_20230122','2.16.840.1.113762.1.4.1146.451_A18.15');
-INSERT INTO valueset_to_concept VALUES('1189','2.16.840.1.113762.1.4.1146.451_20230122','2.16.840.1.113762.1.4.1146.451_A18.16');
-INSERT INTO valueset_to_concept VALUES('1190','2.16.840.1.113762.1.4.1146.451_20230122','2.16.840.1.113762.1.4.1146.451_A18.18');
-INSERT INTO valueset_to_concept VALUES('1191','2.16.840.1.113762.1.4.1146.451_20230122','2.16.840.1.113762.1.4.1146.451_A18.2');
-INSERT INTO valueset_to_concept VALUES('1192','2.16.840.1.113762.1.4.1146.451_20230122','2.16.840.1.113762.1.4.1146.451_A18.31');
-INSERT INTO valueset_to_concept VALUES('1193','2.16.840.1.113762.1.4.1146.451_20230122','2.16.840.1.113762.1.4.1146.451_A18.32');
-INSERT INTO valueset_to_concept VALUES('1194','2.16.840.1.113762.1.4.1146.451_20230122','2.16.840.1.113762.1.4.1146.451_A18.39');
-INSERT INTO valueset_to_concept VALUES('1195','2.16.840.1.113762.1.4.1146.451_20230122','2.16.840.1.113762.1.4.1146.451_A18.4');
-INSERT INTO valueset_to_concept VALUES('1196','2.16.840.1.113762.1.4.1146.451_20230122','2.16.840.1.113762.1.4.1146.451_A18.50');
-INSERT INTO valueset_to_concept VALUES('1197','2.16.840.1.113762.1.4.1146.451_20230122','2.16.840.1.113762.1.4.1146.451_A18.51');
-INSERT INTO valueset_to_concept VALUES('1198','2.16.840.1.113762.1.4.1146.451_20230122','2.16.840.1.113762.1.4.1146.451_A18.52');
-INSERT INTO valueset_to_concept VALUES('1199','2.16.840.1.113762.1.4.1146.451_20230122','2.16.840.1.113762.1.4.1146.451_A18.53');
-INSERT INTO valueset_to_concept VALUES('1200','2.16.840.1.113762.1.4.1146.451_20230122','2.16.840.1.113762.1.4.1146.451_A18.54');
-INSERT INTO valueset_to_concept VALUES('1201','2.16.840.1.113762.1.4.1146.451_20230122','2.16.840.1.113762.1.4.1146.451_A18.59');
-INSERT INTO valueset_to_concept VALUES('1202','2.16.840.1.113762.1.4.1146.451_20230122','2.16.840.1.113762.1.4.1146.451_A18.6');
-INSERT INTO valueset_to_concept VALUES('1203','2.16.840.1.113762.1.4.1146.451_20230122','2.16.840.1.113762.1.4.1146.451_A18.7');
-INSERT INTO valueset_to_concept VALUES('1204','2.16.840.1.113762.1.4.1146.451_20230122','2.16.840.1.113762.1.4.1146.451_A18.81');
-INSERT INTO valueset_to_concept VALUES('1205','2.16.840.1.113762.1.4.1146.451_20230122','2.16.840.1.113762.1.4.1146.451_A18.82');
-INSERT INTO valueset_to_concept VALUES('1206','2.16.840.1.113762.1.4.1146.451_20230122','2.16.840.1.113762.1.4.1146.451_A18.83');
-INSERT INTO valueset_to_concept VALUES('1207','2.16.840.1.113762.1.4.1146.451_20230122','2.16.840.1.113762.1.4.1146.451_A18.84');
-INSERT INTO valueset_to_concept VALUES('1208','2.16.840.1.113762.1.4.1146.451_20230122','2.16.840.1.113762.1.4.1146.451_A18.85');
-INSERT INTO valueset_to_concept VALUES('1209','2.16.840.1.113762.1.4.1146.451_20230122','2.16.840.1.113762.1.4.1146.451_A18.89');
-INSERT INTO valueset_to_concept VALUES('1210','2.16.840.1.113762.1.4.1146.451_20230122','2.16.840.1.113762.1.4.1146.451_A19.0');
-INSERT INTO valueset_to_concept VALUES('1211','2.16.840.1.113762.1.4.1146.451_20230122','2.16.840.1.113762.1.4.1146.451_A19.1');
-INSERT INTO valueset_to_concept VALUES('1212','2.16.840.1.113762.1.4.1146.451_20230122','2.16.840.1.113762.1.4.1146.451_A19.2');
-INSERT INTO valueset_to_concept VALUES('1213','2.16.840.1.113762.1.4.1146.451_20230122','2.16.840.1.113762.1.4.1146.451_A19.8');
-INSERT INTO valueset_to_concept VALUES('1214','2.16.840.1.113762.1.4.1146.451_20230122','2.16.840.1.113762.1.4.1146.451_A19.9');
-INSERT INTO valueset_to_concept VALUES('1215','2.16.840.1.113762.1.4.1146.451_20230122','2.16.840.1.113762.1.4.1146.451_B90.0');
-INSERT INTO valueset_to_concept VALUES('1216','2.16.840.1.113762.1.4.1146.451_20230122','2.16.840.1.113762.1.4.1146.451_B90.1');
-INSERT INTO valueset_to_concept VALUES('1217','2.16.840.1.113762.1.4.1146.451_20230122','2.16.840.1.113762.1.4.1146.451_B90.2');
-INSERT INTO valueset_to_concept VALUES('1218','2.16.840.1.113762.1.4.1146.451_20230122','2.16.840.1.113762.1.4.1146.451_B90.8');
-INSERT INTO valueset_to_concept VALUES('1219','2.16.840.1.113762.1.4.1146.451_20230122','2.16.840.1.113762.1.4.1146.451_B90.9');
-INSERT INTO valueset_to_concept VALUES('1220','2.16.840.1.113762.1.4.1146.451_20230122','2.16.840.1.113762.1.4.1146.451_O98.011');
-INSERT INTO valueset_to_concept VALUES('1221','2.16.840.1.113762.1.4.1146.451_20230122','2.16.840.1.113762.1.4.1146.451_O98.012');
-INSERT INTO valueset_to_concept VALUES('1222','2.16.840.1.113762.1.4.1146.451_20230122','2.16.840.1.113762.1.4.1146.451_O98.013');
-INSERT INTO valueset_to_concept VALUES('1223','2.16.840.1.113762.1.4.1146.451_20230122','2.16.840.1.113762.1.4.1146.451_O98.019');
-INSERT INTO valueset_to_concept VALUES('1224','2.16.840.1.113762.1.4.1146.451_20230122','2.16.840.1.113762.1.4.1146.451_O98.02');
-INSERT INTO valueset_to_concept VALUES('1225','2.16.840.1.113762.1.4.1146.451_20230122','2.16.840.1.113762.1.4.1146.451_O98.03');
-INSERT INTO valueset_to_concept VALUES('1226','2.16.840.1.113762.1.4.1146.451_20230122','2.16.840.1.113762.1.4.1146.451_P37.0');
-INSERT INTO valueset_to_concept VALUES('1227','2.16.840.1.113762.1.4.1146.451_20230122','2.16.840.1.113762.1.4.1146.451_J65');
-INSERT INTO valueset_to_concept VALUES('1228','2.16.840.1.113762.1.4.1146.451_20230122','2.16.840.1.113762.1.4.1146.451_A17.0');
-INSERT INTO valueset_to_concept VALUES('1229','2.16.840.1.113762.1.4.1146.451_20230122','2.16.840.1.113762.1.4.1146.451_A17.82');
-INSERT INTO valueset_to_concept VALUES('1230','2.16.840.1.113762.1.4.1146.451_20230122','2.16.840.1.113762.1.4.1146.451_A18.17');
-INSERT INTO valueset_to_concept VALUES('1231','2.16.840.1.113762.1.4.1146.210_20181031','2.16.840.1.113762.1.4.1146.210_A07.4');
-INSERT INTO valueset_to_concept VALUES('1232','2.16.840.1.113762.1.4.1146.211_20190605','2.16.840.1.113762.1.4.1146.211_240372001');
-INSERT INTO valueset_to_concept VALUES('1233','2.16.840.1.113762.1.4.1146.211_20190605','2.16.840.1.113762.1.4.1146.211_716860005');
-INSERT INTO valueset_to_concept VALUES('1234','2.16.840.1.113762.1.4.1146.211_20190605','2.16.840.1.113762.1.4.1146.211_721810002');
-INSERT INTO valueset_to_concept VALUES('1235','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_11906007');
-INSERT INTO valueset_to_concept VALUES('1236','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_188463006');
-INSERT INTO valueset_to_concept VALUES('1237','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_198242009');
-INSERT INTO valueset_to_concept VALUES('1238','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_237038001');
-INSERT INTO valueset_to_concept VALUES('1239','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_237039009');
-INSERT INTO valueset_to_concept VALUES('1240','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_237069002');
-INSERT INTO valueset_to_concept VALUES('1241','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_237070001');
-INSERT INTO valueset_to_concept VALUES('1242','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_270550006');
-INSERT INTO valueset_to_concept VALUES('1243','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_271488001');
-INSERT INTO valueset_to_concept VALUES('1244','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_31999004');
-INSERT INTO valueset_to_concept VALUES('1245','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_45377007');
-INSERT INTO valueset_to_concept VALUES('1246','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_53529004');
-INSERT INTO valueset_to_concept VALUES('1247','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_65295003');
-INSERT INTO valueset_to_concept VALUES('1248','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_722522009');
-INSERT INTO valueset_to_concept VALUES('1249','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_76802005');
-INSERT INTO valueset_to_concept VALUES('1250','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_81598001');
-INSERT INTO valueset_to_concept VALUES('1251','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_10751311000119100');
-INSERT INTO valueset_to_concept VALUES('1252','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_10759231000119102');
-INSERT INTO valueset_to_concept VALUES('1253','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_111418006');
-INSERT INTO valueset_to_concept VALUES('1254','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_1263771009');
-INSERT INTO valueset_to_concept VALUES('1255','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_1264132007');
-INSERT INTO valueset_to_concept VALUES('1256','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_1264133002');
-INSERT INTO valueset_to_concept VALUES('1257','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_1264134008');
-INSERT INTO valueset_to_concept VALUES('1258','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_1264135009');
-INSERT INTO valueset_to_concept VALUES('1259','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_1264136005');
-INSERT INTO valueset_to_concept VALUES('1260','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_1264137001');
-INSERT INTO valueset_to_concept VALUES('1261','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_1264160009');
-INSERT INTO valueset_to_concept VALUES('1262','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_1264161008');
-INSERT INTO valueset_to_concept VALUES('1263','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_13125003');
-INSERT INTO valueset_to_concept VALUES('1264','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_14053009');
-INSERT INTO valueset_to_concept VALUES('1265','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_16486000');
-INSERT INTO valueset_to_concept VALUES('1266','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_172001');
-INSERT INTO valueset_to_concept VALUES('1267','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_17716001');
-INSERT INTO valueset_to_concept VALUES('1268','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_198130006');
-INSERT INTO valueset_to_concept VALUES('1269','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_198133008');
-INSERT INTO valueset_to_concept VALUES('1270','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_198135001');
-INSERT INTO valueset_to_concept VALUES('1271','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_198136000');
-INSERT INTO valueset_to_concept VALUES('1272','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_198137009');
-INSERT INTO valueset_to_concept VALUES('1273','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_198138004');
-INSERT INTO valueset_to_concept VALUES('1274','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_198141008');
-INSERT INTO valueset_to_concept VALUES('1275','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_198142001');
-INSERT INTO valueset_to_concept VALUES('1276','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_198143006');
-INSERT INTO valueset_to_concept VALUES('1277','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_198156004');
-INSERT INTO valueset_to_concept VALUES('1278','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_198159006');
-INSERT INTO valueset_to_concept VALUES('1279','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_198175009');
-INSERT INTO valueset_to_concept VALUES('1280','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_198179003');
-INSERT INTO valueset_to_concept VALUES('1281','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_198180000');
-INSERT INTO valueset_to_concept VALUES('1282','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_198182008');
-INSERT INTO valueset_to_concept VALUES('1283','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_198183003');
-INSERT INTO valueset_to_concept VALUES('1284','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_198184009');
-INSERT INTO valueset_to_concept VALUES('1285','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_198185005');
-INSERT INTO valueset_to_concept VALUES('1286','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_198186006');
-INSERT INTO valueset_to_concept VALUES('1287','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_198188007');
-INSERT INTO valueset_to_concept VALUES('1288','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_198189004');
-INSERT INTO valueset_to_concept VALUES('1289','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_198198001');
-INSERT INTO valueset_to_concept VALUES('1290','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_198199009');
-INSERT INTO valueset_to_concept VALUES('1291','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_198203009');
-INSERT INTO valueset_to_concept VALUES('1292','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_198206001');
-INSERT INTO valueset_to_concept VALUES('1293','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_198824009');
-INSERT INTO valueset_to_concept VALUES('1294','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_200181000');
-INSERT INTO valueset_to_concept VALUES('1295','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_200182007');
-INSERT INTO valueset_to_concept VALUES('1296','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_200185009');
-INSERT INTO valueset_to_concept VALUES('1297','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_200187001');
-INSERT INTO valueset_to_concept VALUES('1298','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_20932005');
-INSERT INTO valueset_to_concept VALUES('1299','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_21711003');
-INSERT INTO valueset_to_concept VALUES('1300','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_22399000');
-INSERT INTO valueset_to_concept VALUES('1301','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_237037006');
-INSERT INTO valueset_to_concept VALUES('1302','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_237044002');
-INSERT INTO valueset_to_concept VALUES('1303','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_237045001');
-INSERT INTO valueset_to_concept VALUES('1304','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_237124006');
-INSERT INTO valueset_to_concept VALUES('1305','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_266581008');
-INSERT INTO valueset_to_concept VALUES('1306','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_280483007');
-INSERT INTO valueset_to_concept VALUES('1307','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_286985001');
-INSERT INTO valueset_to_concept VALUES('1308','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_28783002');
-INSERT INTO valueset_to_concept VALUES('1309','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_30806007');
-INSERT INTO valueset_to_concept VALUES('1310','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_31354001');
-INSERT INTO valueset_to_concept VALUES('1311','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_32582007');
-INSERT INTO valueset_to_concept VALUES('1312','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_34543006');
-INSERT INTO valueset_to_concept VALUES('1313','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_36742000');
-INSERT INTO valueset_to_concept VALUES('1314','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_37830006');
-INSERT INTO valueset_to_concept VALUES('1315','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_38099005');
-INSERT INTO valueset_to_concept VALUES('1316','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_39120007');
-INSERT INTO valueset_to_concept VALUES('1317','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_397810006');
-INSERT INTO valueset_to_concept VALUES('1318','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_4316006');
-INSERT INTO valueset_to_concept VALUES('1319','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_442506007');
-INSERT INTO valueset_to_concept VALUES('1320','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_46536000');
-INSERT INTO valueset_to_concept VALUES('1321','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_473079009');
-INSERT INTO valueset_to_concept VALUES('1322','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_473082004');
-INSERT INTO valueset_to_concept VALUES('1323','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_48153009');
-INSERT INTO valueset_to_concept VALUES('1324','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_49249007');
-INSERT INTO valueset_to_concept VALUES('1325','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_49258000');
-INSERT INTO valueset_to_concept VALUES('1326','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_55551005');
-INSERT INTO valueset_to_concept VALUES('1327','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_56321006');
-INSERT INTO valueset_to_concept VALUES('1328','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_56728002');
-INSERT INTO valueset_to_concept VALUES('1329','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_57468008');
-INSERT INTO valueset_to_concept VALUES('1330','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_609464004');
-INSERT INTO valueset_to_concept VALUES('1331','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_609483006');
-INSERT INTO valueset_to_concept VALUES('1332','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_609484000');
-INSERT INTO valueset_to_concept VALUES('1333','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_61568004');
-INSERT INTO valueset_to_concept VALUES('1334','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_63922003');
-INSERT INTO valueset_to_concept VALUES('1335','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_64150007');
-INSERT INTO valueset_to_concept VALUES('1336','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_65984002');
-INSERT INTO valueset_to_concept VALUES('1337','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_67667007');
-INSERT INTO valueset_to_concept VALUES('1338','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_698628000');
-INSERT INTO valueset_to_concept VALUES('1339','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_70120007');
-INSERT INTO valueset_to_concept VALUES('1340','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_702716009');
-INSERT INTO valueset_to_concept VALUES('1341','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_702717000');
-INSERT INTO valueset_to_concept VALUES('1342','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_713454009');
-INSERT INTO valueset_to_concept VALUES('1343','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_722830001');
-INSERT INTO valueset_to_concept VALUES('1344','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_723736005');
-INSERT INTO valueset_to_concept VALUES('1345','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_735619000');
-INSERT INTO valueset_to_concept VALUES('1346','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_735620006');
-INSERT INTO valueset_to_concept VALUES('1347','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_73806001');
-INSERT INTO valueset_to_concept VALUES('1348','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_75548002');
-INSERT INTO valueset_to_concept VALUES('1349','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_75585005');
-INSERT INTO valueset_to_concept VALUES('1350','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_76047005');
-INSERT INTO valueset_to_concept VALUES('1351','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_76151005');
-INSERT INTO valueset_to_concept VALUES('1352','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_78623009');
-INSERT INTO valueset_to_concept VALUES('1353','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_7910003');
-INSERT INTO valueset_to_concept VALUES('1354','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_81521003');
-INSERT INTO valueset_to_concept VALUES('1355','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_8258000');
-INSERT INTO valueset_to_concept VALUES('1356','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_83774001');
-INSERT INTO valueset_to_concept VALUES('1357','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_86070006');
-INSERT INTO valueset_to_concept VALUES('1358','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_88027004');
-INSERT INTO valueset_to_concept VALUES('1359','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_88157006');
-INSERT INTO valueset_to_concept VALUES('1360','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_88981003');
-INSERT INTO valueset_to_concept VALUES('1361','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_8912009');
-INSERT INTO valueset_to_concept VALUES('1362','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_9516007');
-INSERT INTO valueset_to_concept VALUES('1363','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_198241002');
-INSERT INTO valueset_to_concept VALUES('1364','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_35585004');
-INSERT INTO valueset_to_concept VALUES('1365','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_49558004');
-INSERT INTO valueset_to_concept VALUES('1366','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_62819009');
-INSERT INTO valueset_to_concept VALUES('1367','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_74181004');
-INSERT INTO valueset_to_concept VALUES('1368','2.16.840.1.113762.1.4.1146.2069_20240123','2.16.840.1.113762.1.4.1146.2069_84194006');
-INSERT INTO valueset_to_concept VALUES('1369','2.16.840.1.113762.1.4.1146.458_20181031','2.16.840.1.113762.1.4.1146.458_B97.21');
-INSERT INTO valueset_to_concept VALUES('1370','2.16.840.1.113762.1.4.1146.458_20181031','2.16.840.1.113762.1.4.1146.458_J12.81');
-INSERT INTO valueset_to_concept VALUES('1371','2.16.840.1.113762.1.4.1146.217_20190608','2.16.840.1.113762.1.4.1146.217_186317009');
-INSERT INTO valueset_to_concept VALUES('1372','2.16.840.1.113762.1.4.1146.217_20190608','2.16.840.1.113762.1.4.1146.217_186318004');
-INSERT INTO valueset_to_concept VALUES('1373','2.16.840.1.113762.1.4.1146.217_20190608','2.16.840.1.113762.1.4.1146.217_186319007');
-INSERT INTO valueset_to_concept VALUES('1374','2.16.840.1.113762.1.4.1146.217_20190608','2.16.840.1.113762.1.4.1146.217_200426004');
-INSERT INTO valueset_to_concept VALUES('1375','2.16.840.1.113762.1.4.1146.217_20190608','2.16.840.1.113762.1.4.1146.217_29786001');
-INSERT INTO valueset_to_concept VALUES('1376','2.16.840.1.113762.1.4.1146.217_20190608','2.16.840.1.113762.1.4.1146.217_359646002');
-INSERT INTO valueset_to_concept VALUES('1377','2.16.840.1.113762.1.4.1146.217_20190608','2.16.840.1.113762.1.4.1146.217_402128003');
-INSERT INTO valueset_to_concept VALUES('1378','2.16.840.1.113762.1.4.1146.217_20190608','2.16.840.1.113762.1.4.1146.217_406590007');
-INSERT INTO valueset_to_concept VALUES('1379','2.16.840.1.113762.1.4.1146.217_20190608','2.16.840.1.113762.1.4.1146.217_4241002');
-INSERT INTO valueset_to_concept VALUES('1380','2.16.840.1.113762.1.4.1146.217_20190608','2.16.840.1.113762.1.4.1146.217_449335002');
-INSERT INTO valueset_to_concept VALUES('1381','2.16.840.1.113762.1.4.1146.217_20190608','2.16.840.1.113762.1.4.1146.217_57420002');
-INSERT INTO valueset_to_concept VALUES('1382','2.16.840.1.113762.1.4.1146.217_20190608','2.16.840.1.113762.1.4.1146.217_609435008');
-INSERT INTO valueset_to_concept VALUES('1383','2.16.840.1.113762.1.4.1146.217_20190608','2.16.840.1.113762.1.4.1146.217_707211005');
-INSERT INTO valueset_to_concept VALUES('1384','2.16.840.1.113762.1.4.1146.217_20190608','2.16.840.1.113762.1.4.1146.217_721657003');
-INSERT INTO valueset_to_concept VALUES('1385','2.16.840.1.113762.1.4.1146.217_20190608','2.16.840.1.113762.1.4.1146.217_721739005');
-INSERT INTO valueset_to_concept VALUES('1386','2.16.840.1.113762.1.4.1146.217_20190608','2.16.840.1.113762.1.4.1146.217_7964000');
-INSERT INTO valueset_to_concept VALUES('1387','2.16.840.1.113762.1.4.1146.217_20190608','2.16.840.1.113762.1.4.1146.217_31568009');
-INSERT INTO valueset_to_concept VALUES('1388','2.16.840.1.113762.1.4.1146.217_20190608','2.16.840.1.113762.1.4.1146.217_240393003');
-INSERT INTO valueset_to_concept VALUES('1389','2.16.840.1.113762.1.4.1146.217_20190608','2.16.840.1.113762.1.4.1146.217_24630008');
-INSERT INTO valueset_to_concept VALUES('1390','2.16.840.1.113762.1.4.1146.2065_20230125','2.16.840.1.113762.1.4.1146.2065_B70.0');
-INSERT INTO valueset_to_concept VALUES('1391','2.16.840.1.113762.1.4.1146.218_20240123','2.16.840.1.113762.1.4.1146.218_A32.0');
-INSERT INTO valueset_to_concept VALUES('1392','2.16.840.1.113762.1.4.1146.218_20240123','2.16.840.1.113762.1.4.1146.218_A32.7');
-INSERT INTO valueset_to_concept VALUES('1393','2.16.840.1.113762.1.4.1146.218_20240123','2.16.840.1.113762.1.4.1146.218_A32.81');
-INSERT INTO valueset_to_concept VALUES('1394','2.16.840.1.113762.1.4.1146.218_20240123','2.16.840.1.113762.1.4.1146.218_A32.82');
-INSERT INTO valueset_to_concept VALUES('1395','2.16.840.1.113762.1.4.1146.218_20240123','2.16.840.1.113762.1.4.1146.218_A32.89');
-INSERT INTO valueset_to_concept VALUES('1396','2.16.840.1.113762.1.4.1146.218_20240123','2.16.840.1.113762.1.4.1146.218_A32.9');
-INSERT INTO valueset_to_concept VALUES('1397','2.16.840.1.113762.1.4.1146.218_20240123','2.16.840.1.113762.1.4.1146.218_P37.2');
-INSERT INTO valueset_to_concept VALUES('1398','2.16.840.1.113762.1.4.1146.218_20240123','2.16.840.1.113762.1.4.1146.218_A32.11');
-INSERT INTO valueset_to_concept VALUES('1399','2.16.840.1.113762.1.4.1146.218_20240123','2.16.840.1.113762.1.4.1146.218_A32.12');
-INSERT INTO valueset_to_concept VALUES('1400','2.16.840.1.113762.1.4.1146.2074_20240123','2.16.840.1.113762.1.4.1146.2074_N70.01');
-INSERT INTO valueset_to_concept VALUES('1401','2.16.840.1.113762.1.4.1146.2074_20240123','2.16.840.1.113762.1.4.1146.2074_N70.02');
-INSERT INTO valueset_to_concept VALUES('1402','2.16.840.1.113762.1.4.1146.2074_20240123','2.16.840.1.113762.1.4.1146.2074_N70.03');
-INSERT INTO valueset_to_concept VALUES('1403','2.16.840.1.113762.1.4.1146.2074_20240123','2.16.840.1.113762.1.4.1146.2074_N70.11');
-INSERT INTO valueset_to_concept VALUES('1404','2.16.840.1.113762.1.4.1146.2074_20240123','2.16.840.1.113762.1.4.1146.2074_N70.12');
-INSERT INTO valueset_to_concept VALUES('1405','2.16.840.1.113762.1.4.1146.2074_20240123','2.16.840.1.113762.1.4.1146.2074_N70.13');
-INSERT INTO valueset_to_concept VALUES('1406','2.16.840.1.113762.1.4.1146.2074_20240123','2.16.840.1.113762.1.4.1146.2074_N70.91');
-INSERT INTO valueset_to_concept VALUES('1407','2.16.840.1.113762.1.4.1146.2074_20240123','2.16.840.1.113762.1.4.1146.2074_N70.92');
-INSERT INTO valueset_to_concept VALUES('1408','2.16.840.1.113762.1.4.1146.2074_20240123','2.16.840.1.113762.1.4.1146.2074_N70.93');
-INSERT INTO valueset_to_concept VALUES('1409','2.16.840.1.113762.1.4.1146.2074_20240123','2.16.840.1.113762.1.4.1146.2074_N71.0');
-INSERT INTO valueset_to_concept VALUES('1410','2.16.840.1.113762.1.4.1146.2074_20240123','2.16.840.1.113762.1.4.1146.2074_N71.1');
-INSERT INTO valueset_to_concept VALUES('1411','2.16.840.1.113762.1.4.1146.2074_20240123','2.16.840.1.113762.1.4.1146.2074_N71.9');
-INSERT INTO valueset_to_concept VALUES('1412','2.16.840.1.113762.1.4.1146.2074_20240123','2.16.840.1.113762.1.4.1146.2074_N73.0');
-INSERT INTO valueset_to_concept VALUES('1413','2.16.840.1.113762.1.4.1146.2074_20240123','2.16.840.1.113762.1.4.1146.2074_N73.1');
-INSERT INTO valueset_to_concept VALUES('1414','2.16.840.1.113762.1.4.1146.2074_20240123','2.16.840.1.113762.1.4.1146.2074_N73.2');
-INSERT INTO valueset_to_concept VALUES('1415','2.16.840.1.113762.1.4.1146.2074_20240123','2.16.840.1.113762.1.4.1146.2074_N73.3');
-INSERT INTO valueset_to_concept VALUES('1416','2.16.840.1.113762.1.4.1146.2074_20240123','2.16.840.1.113762.1.4.1146.2074_N73.4');
-INSERT INTO valueset_to_concept VALUES('1417','2.16.840.1.113762.1.4.1146.2074_20240123','2.16.840.1.113762.1.4.1146.2074_N73.5');
-INSERT INTO valueset_to_concept VALUES('1418','2.16.840.1.113762.1.4.1146.2074_20240123','2.16.840.1.113762.1.4.1146.2074_N73.6');
-INSERT INTO valueset_to_concept VALUES('1419','2.16.840.1.113762.1.4.1146.2074_20240123','2.16.840.1.113762.1.4.1146.2074_N73.8');
-INSERT INTO valueset_to_concept VALUES('1420','2.16.840.1.113762.1.4.1146.2074_20240123','2.16.840.1.113762.1.4.1146.2074_N73.9');
-INSERT INTO valueset_to_concept VALUES('1421','2.16.840.1.113762.1.4.1146.2074_20240123','2.16.840.1.113762.1.4.1146.2074_N74');
-INSERT INTO valueset_to_concept VALUES('1422','2.16.840.1.113762.1.4.1146.2074_20240123','2.16.840.1.113762.1.4.1146.2074_O86.12');
-INSERT INTO valueset_to_concept VALUES('1423','2.16.840.1.113762.1.4.1146.2072_20240123','2.16.840.1.113762.1.4.1146.2072_A56.11');
-INSERT INTO valueset_to_concept VALUES('1424','2.16.840.1.113762.1.4.1146.2072_20240123','2.16.840.1.113762.1.4.1146.2072_A54.24');
-INSERT INTO valueset_to_concept VALUES('1425','2.16.840.1.113762.1.4.1146.2072_20240123','2.16.840.1.113762.1.4.1146.2072_A18.17');
-INSERT INTO valueset_to_concept VALUES('1426','2.16.840.1.113762.1.4.1146.2072_20240123','2.16.840.1.113762.1.4.1146.2072_A52.76');
-INSERT INTO valueset_to_concept VALUES('1427','2.16.840.1.113762.1.4.1146.2072_20240123','2.16.840.1.113762.1.4.1146.2072_N70.01');
-INSERT INTO valueset_to_concept VALUES('1428','2.16.840.1.113762.1.4.1146.2072_20240123','2.16.840.1.113762.1.4.1146.2072_N70.02');
-INSERT INTO valueset_to_concept VALUES('1429','2.16.840.1.113762.1.4.1146.2072_20240123','2.16.840.1.113762.1.4.1146.2072_N70.03');
-INSERT INTO valueset_to_concept VALUES('1430','2.16.840.1.113762.1.4.1146.2072_20240123','2.16.840.1.113762.1.4.1146.2072_N70.11');
-INSERT INTO valueset_to_concept VALUES('1431','2.16.840.1.113762.1.4.1146.2072_20240123','2.16.840.1.113762.1.4.1146.2072_N70.12');
-INSERT INTO valueset_to_concept VALUES('1432','2.16.840.1.113762.1.4.1146.2072_20240123','2.16.840.1.113762.1.4.1146.2072_N70.13');
-INSERT INTO valueset_to_concept VALUES('1433','2.16.840.1.113762.1.4.1146.2072_20240123','2.16.840.1.113762.1.4.1146.2072_N70.91');
-INSERT INTO valueset_to_concept VALUES('1434','2.16.840.1.113762.1.4.1146.2072_20240123','2.16.840.1.113762.1.4.1146.2072_N70.92');
-INSERT INTO valueset_to_concept VALUES('1435','2.16.840.1.113762.1.4.1146.2072_20240123','2.16.840.1.113762.1.4.1146.2072_N70.93');
-INSERT INTO valueset_to_concept VALUES('1436','2.16.840.1.113762.1.4.1146.2072_20240123','2.16.840.1.113762.1.4.1146.2072_N71.0');
-INSERT INTO valueset_to_concept VALUES('1437','2.16.840.1.113762.1.4.1146.2072_20240123','2.16.840.1.113762.1.4.1146.2072_N71.1');
-INSERT INTO valueset_to_concept VALUES('1438','2.16.840.1.113762.1.4.1146.2072_20240123','2.16.840.1.113762.1.4.1146.2072_N71.9');
-INSERT INTO valueset_to_concept VALUES('1439','2.16.840.1.113762.1.4.1146.2072_20240123','2.16.840.1.113762.1.4.1146.2072_N73.0');
-INSERT INTO valueset_to_concept VALUES('1440','2.16.840.1.113762.1.4.1146.2072_20240123','2.16.840.1.113762.1.4.1146.2072_N73.1');
-INSERT INTO valueset_to_concept VALUES('1441','2.16.840.1.113762.1.4.1146.2072_20240123','2.16.840.1.113762.1.4.1146.2072_N73.2');
-INSERT INTO valueset_to_concept VALUES('1442','2.16.840.1.113762.1.4.1146.2072_20240123','2.16.840.1.113762.1.4.1146.2072_N73.3');
-INSERT INTO valueset_to_concept VALUES('1443','2.16.840.1.113762.1.4.1146.2072_20240123','2.16.840.1.113762.1.4.1146.2072_N73.4');
-INSERT INTO valueset_to_concept VALUES('1444','2.16.840.1.113762.1.4.1146.2072_20240123','2.16.840.1.113762.1.4.1146.2072_N73.5');
-INSERT INTO valueset_to_concept VALUES('1445','2.16.840.1.113762.1.4.1146.2072_20240123','2.16.840.1.113762.1.4.1146.2072_N73.6');
-INSERT INTO valueset_to_concept VALUES('1446','2.16.840.1.113762.1.4.1146.2072_20240123','2.16.840.1.113762.1.4.1146.2072_N73.8');
-INSERT INTO valueset_to_concept VALUES('1447','2.16.840.1.113762.1.4.1146.2072_20240123','2.16.840.1.113762.1.4.1146.2072_N73.9');
-INSERT INTO valueset_to_concept VALUES('1448','2.16.840.1.113762.1.4.1146.2072_20240123','2.16.840.1.113762.1.4.1146.2072_N74');
-INSERT INTO valueset_to_concept VALUES('1449','2.16.840.1.113762.1.4.1146.2072_20240123','2.16.840.1.113762.1.4.1146.2072_O86.12');
-INSERT INTO valueset_to_concept VALUES('1450','2.16.840.1.113762.1.4.1146.2073_20240123','2.16.840.1.113762.1.4.1146.2073_A18.17');
-INSERT INTO valueset_to_concept VALUES('1451','2.16.840.1.113762.1.4.1146.2073_20240123','2.16.840.1.113762.1.4.1146.2073_A52.76');
-INSERT INTO valueset_to_concept VALUES('1452','2.16.840.1.113762.1.4.1146.2073_20240123','2.16.840.1.113762.1.4.1146.2073_N70.01');
-INSERT INTO valueset_to_concept VALUES('1453','2.16.840.1.113762.1.4.1146.2073_20240123','2.16.840.1.113762.1.4.1146.2073_N70.02');
-INSERT INTO valueset_to_concept VALUES('1454','2.16.840.1.113762.1.4.1146.2073_20240123','2.16.840.1.113762.1.4.1146.2073_N70.03');
-INSERT INTO valueset_to_concept VALUES('1455','2.16.840.1.113762.1.4.1146.2073_20240123','2.16.840.1.113762.1.4.1146.2073_N70.11');
-INSERT INTO valueset_to_concept VALUES('1456','2.16.840.1.113762.1.4.1146.2073_20240123','2.16.840.1.113762.1.4.1146.2073_N70.12');
-INSERT INTO valueset_to_concept VALUES('1457','2.16.840.1.113762.1.4.1146.2073_20240123','2.16.840.1.113762.1.4.1146.2073_N70.13');
-INSERT INTO valueset_to_concept VALUES('1458','2.16.840.1.113762.1.4.1146.2073_20240123','2.16.840.1.113762.1.4.1146.2073_N70.91');
-INSERT INTO valueset_to_concept VALUES('1459','2.16.840.1.113762.1.4.1146.2073_20240123','2.16.840.1.113762.1.4.1146.2073_N70.92');
-INSERT INTO valueset_to_concept VALUES('1460','2.16.840.1.113762.1.4.1146.2073_20240123','2.16.840.1.113762.1.4.1146.2073_N70.93');
-INSERT INTO valueset_to_concept VALUES('1461','2.16.840.1.113762.1.4.1146.2073_20240123','2.16.840.1.113762.1.4.1146.2073_N71.0');
-INSERT INTO valueset_to_concept VALUES('1462','2.16.840.1.113762.1.4.1146.2073_20240123','2.16.840.1.113762.1.4.1146.2073_N71.1');
-INSERT INTO valueset_to_concept VALUES('1463','2.16.840.1.113762.1.4.1146.2073_20240123','2.16.840.1.113762.1.4.1146.2073_N71.9');
-INSERT INTO valueset_to_concept VALUES('1464','2.16.840.1.113762.1.4.1146.2073_20240123','2.16.840.1.113762.1.4.1146.2073_N73.0');
-INSERT INTO valueset_to_concept VALUES('1465','2.16.840.1.113762.1.4.1146.2073_20240123','2.16.840.1.113762.1.4.1146.2073_N73.1');
-INSERT INTO valueset_to_concept VALUES('1466','2.16.840.1.113762.1.4.1146.2073_20240123','2.16.840.1.113762.1.4.1146.2073_N73.2');
-INSERT INTO valueset_to_concept VALUES('1467','2.16.840.1.113762.1.4.1146.2073_20240123','2.16.840.1.113762.1.4.1146.2073_N73.3');
-INSERT INTO valueset_to_concept VALUES('1468','2.16.840.1.113762.1.4.1146.2073_20240123','2.16.840.1.113762.1.4.1146.2073_N73.4');
-INSERT INTO valueset_to_concept VALUES('1469','2.16.840.1.113762.1.4.1146.2073_20240123','2.16.840.1.113762.1.4.1146.2073_N73.5');
-INSERT INTO valueset_to_concept VALUES('1470','2.16.840.1.113762.1.4.1146.2073_20240123','2.16.840.1.113762.1.4.1146.2073_N73.6');
-INSERT INTO valueset_to_concept VALUES('1471','2.16.840.1.113762.1.4.1146.2073_20240123','2.16.840.1.113762.1.4.1146.2073_N73.8');
-INSERT INTO valueset_to_concept VALUES('1472','2.16.840.1.113762.1.4.1146.2073_20240123','2.16.840.1.113762.1.4.1146.2073_N73.9');
-INSERT INTO valueset_to_concept VALUES('1473','2.16.840.1.113762.1.4.1146.2073_20240123','2.16.840.1.113762.1.4.1146.2073_N74');
-INSERT INTO valueset_to_concept VALUES('1474','2.16.840.1.113762.1.4.1146.2073_20240123','2.16.840.1.113762.1.4.1146.2073_O86.12');
-INSERT INTO valueset_to_concept VALUES('1475','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_237070001');
-INSERT INTO valueset_to_concept VALUES('1476','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_270550006');
-INSERT INTO valueset_to_concept VALUES('1477','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_271488001');
-INSERT INTO valueset_to_concept VALUES('1478','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_722522009');
-INSERT INTO valueset_to_concept VALUES('1479','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_81598001');
-INSERT INTO valueset_to_concept VALUES('1480','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_10751311000119100');
-INSERT INTO valueset_to_concept VALUES('1481','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_10759231000119102');
-INSERT INTO valueset_to_concept VALUES('1482','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_111418006');
-INSERT INTO valueset_to_concept VALUES('1483','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_1263771009');
-INSERT INTO valueset_to_concept VALUES('1484','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_1264132007');
-INSERT INTO valueset_to_concept VALUES('1485','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_1264133002');
-INSERT INTO valueset_to_concept VALUES('1486','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_1264134008');
-INSERT INTO valueset_to_concept VALUES('1487','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_1264135009');
-INSERT INTO valueset_to_concept VALUES('1488','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_1264136005');
-INSERT INTO valueset_to_concept VALUES('1489','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_1264137001');
-INSERT INTO valueset_to_concept VALUES('1490','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_1264160009');
-INSERT INTO valueset_to_concept VALUES('1491','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_1264161008');
-INSERT INTO valueset_to_concept VALUES('1492','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_13125003');
-INSERT INTO valueset_to_concept VALUES('1493','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_14053009');
-INSERT INTO valueset_to_concept VALUES('1494','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_16486000');
-INSERT INTO valueset_to_concept VALUES('1495','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_172001');
-INSERT INTO valueset_to_concept VALUES('1496','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_17716001');
-INSERT INTO valueset_to_concept VALUES('1497','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_198130006');
-INSERT INTO valueset_to_concept VALUES('1498','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_198133008');
-INSERT INTO valueset_to_concept VALUES('1499','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_198135001');
-INSERT INTO valueset_to_concept VALUES('1500','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_198136000');
-INSERT INTO valueset_to_concept VALUES('1501','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_198137009');
-INSERT INTO valueset_to_concept VALUES('1502','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_198138004');
-INSERT INTO valueset_to_concept VALUES('1503','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_198141008');
-INSERT INTO valueset_to_concept VALUES('1504','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_198142001');
-INSERT INTO valueset_to_concept VALUES('1505','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_198143006');
-INSERT INTO valueset_to_concept VALUES('1506','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_198156004');
-INSERT INTO valueset_to_concept VALUES('1507','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_198159006');
-INSERT INTO valueset_to_concept VALUES('1508','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_198175009');
-INSERT INTO valueset_to_concept VALUES('1509','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_198179003');
-INSERT INTO valueset_to_concept VALUES('1510','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_198180000');
-INSERT INTO valueset_to_concept VALUES('1511','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_198182008');
-INSERT INTO valueset_to_concept VALUES('1512','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_198183003');
-INSERT INTO valueset_to_concept VALUES('1513','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_198184009');
-INSERT INTO valueset_to_concept VALUES('1514','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_198185005');
-INSERT INTO valueset_to_concept VALUES('1515','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_198186006');
-INSERT INTO valueset_to_concept VALUES('1516','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_198188007');
-INSERT INTO valueset_to_concept VALUES('1517','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_198189004');
-INSERT INTO valueset_to_concept VALUES('1518','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_198198001');
-INSERT INTO valueset_to_concept VALUES('1519','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_198199009');
-INSERT INTO valueset_to_concept VALUES('1520','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_198203009');
-INSERT INTO valueset_to_concept VALUES('1521','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_198206001');
-INSERT INTO valueset_to_concept VALUES('1522','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_198241002');
-INSERT INTO valueset_to_concept VALUES('1523','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_198824009');
-INSERT INTO valueset_to_concept VALUES('1524','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_200181000');
-INSERT INTO valueset_to_concept VALUES('1525','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_200182007');
-INSERT INTO valueset_to_concept VALUES('1526','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_200185009');
-INSERT INTO valueset_to_concept VALUES('1527','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_200187001');
-INSERT INTO valueset_to_concept VALUES('1528','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_20932005');
-INSERT INTO valueset_to_concept VALUES('1529','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_21711003');
-INSERT INTO valueset_to_concept VALUES('1530','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_22399000');
-INSERT INTO valueset_to_concept VALUES('1531','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_237037006');
-INSERT INTO valueset_to_concept VALUES('1532','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_237044002');
-INSERT INTO valueset_to_concept VALUES('1533','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_237045001');
-INSERT INTO valueset_to_concept VALUES('1534','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_237124006');
-INSERT INTO valueset_to_concept VALUES('1535','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_266581008');
-INSERT INTO valueset_to_concept VALUES('1536','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_280483007');
-INSERT INTO valueset_to_concept VALUES('1537','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_286985001');
-INSERT INTO valueset_to_concept VALUES('1538','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_28783002');
-INSERT INTO valueset_to_concept VALUES('1539','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_30806007');
-INSERT INTO valueset_to_concept VALUES('1540','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_31354001');
-INSERT INTO valueset_to_concept VALUES('1541','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_32582007');
-INSERT INTO valueset_to_concept VALUES('1542','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_34543006');
-INSERT INTO valueset_to_concept VALUES('1543','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_35585004');
-INSERT INTO valueset_to_concept VALUES('1544','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_36742000');
-INSERT INTO valueset_to_concept VALUES('1545','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_37830006');
-INSERT INTO valueset_to_concept VALUES('1546','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_38099005');
-INSERT INTO valueset_to_concept VALUES('1547','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_39120007');
-INSERT INTO valueset_to_concept VALUES('1548','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_397810006');
-INSERT INTO valueset_to_concept VALUES('1549','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_4316006');
-INSERT INTO valueset_to_concept VALUES('1550','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_442506007');
-INSERT INTO valueset_to_concept VALUES('1551','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_46536000');
-INSERT INTO valueset_to_concept VALUES('1552','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_473079009');
-INSERT INTO valueset_to_concept VALUES('1553','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_473082004');
-INSERT INTO valueset_to_concept VALUES('1554','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_48153009');
-INSERT INTO valueset_to_concept VALUES('1555','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_49249007');
-INSERT INTO valueset_to_concept VALUES('1556','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_49258000');
-INSERT INTO valueset_to_concept VALUES('1557','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_49558004');
-INSERT INTO valueset_to_concept VALUES('1558','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_55551005');
-INSERT INTO valueset_to_concept VALUES('1559','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_56321006');
-INSERT INTO valueset_to_concept VALUES('1560','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_56728002');
-INSERT INTO valueset_to_concept VALUES('1561','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_57468008');
-INSERT INTO valueset_to_concept VALUES('1562','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_609464004');
-INSERT INTO valueset_to_concept VALUES('1563','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_609483006');
-INSERT INTO valueset_to_concept VALUES('1564','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_609484000');
-INSERT INTO valueset_to_concept VALUES('1565','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_61568004');
-INSERT INTO valueset_to_concept VALUES('1566','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_62819009');
-INSERT INTO valueset_to_concept VALUES('1567','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_63922003');
-INSERT INTO valueset_to_concept VALUES('1568','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_64150007');
-INSERT INTO valueset_to_concept VALUES('1569','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_65984002');
-INSERT INTO valueset_to_concept VALUES('1570','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_67667007');
-INSERT INTO valueset_to_concept VALUES('1571','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_698628000');
-INSERT INTO valueset_to_concept VALUES('1572','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_70120007');
-INSERT INTO valueset_to_concept VALUES('1573','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_702716009');
-INSERT INTO valueset_to_concept VALUES('1574','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_702717000');
-INSERT INTO valueset_to_concept VALUES('1575','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_713454009');
-INSERT INTO valueset_to_concept VALUES('1576','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_722830001');
-INSERT INTO valueset_to_concept VALUES('1577','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_723736005');
-INSERT INTO valueset_to_concept VALUES('1578','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_735619000');
-INSERT INTO valueset_to_concept VALUES('1579','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_735620006');
-INSERT INTO valueset_to_concept VALUES('1580','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_73806001');
-INSERT INTO valueset_to_concept VALUES('1581','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_74181004');
-INSERT INTO valueset_to_concept VALUES('1582','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_75548002');
-INSERT INTO valueset_to_concept VALUES('1583','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_75585005');
-INSERT INTO valueset_to_concept VALUES('1584','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_76047005');
-INSERT INTO valueset_to_concept VALUES('1585','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_76151005');
-INSERT INTO valueset_to_concept VALUES('1586','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_78623009');
-INSERT INTO valueset_to_concept VALUES('1587','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_7910003');
-INSERT INTO valueset_to_concept VALUES('1588','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_81521003');
-INSERT INTO valueset_to_concept VALUES('1589','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_8258000');
-INSERT INTO valueset_to_concept VALUES('1590','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_83774001');
-INSERT INTO valueset_to_concept VALUES('1591','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_84194006');
-INSERT INTO valueset_to_concept VALUES('1592','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_86070006');
-INSERT INTO valueset_to_concept VALUES('1593','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_88027004');
-INSERT INTO valueset_to_concept VALUES('1594','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_88157006');
-INSERT INTO valueset_to_concept VALUES('1595','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_88981003');
-INSERT INTO valueset_to_concept VALUES('1596','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_8912009');
-INSERT INTO valueset_to_concept VALUES('1597','2.16.840.1.113762.1.4.1146.2070_20240123','2.16.840.1.113762.1.4.1146.2070_9516007');
-INSERT INTO valueset_to_concept VALUES('1598','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_10751311000119100');
-INSERT INTO valueset_to_concept VALUES('1599','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_10759231000119102');
-INSERT INTO valueset_to_concept VALUES('1600','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_111418006');
-INSERT INTO valueset_to_concept VALUES('1601','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_1263771009');
-INSERT INTO valueset_to_concept VALUES('1602','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_1264132007');
-INSERT INTO valueset_to_concept VALUES('1603','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_1264133002');
-INSERT INTO valueset_to_concept VALUES('1604','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_1264134008');
-INSERT INTO valueset_to_concept VALUES('1605','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_1264135009');
-INSERT INTO valueset_to_concept VALUES('1606','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_1264136005');
-INSERT INTO valueset_to_concept VALUES('1607','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_1264137001');
-INSERT INTO valueset_to_concept VALUES('1608','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_1264160009');
-INSERT INTO valueset_to_concept VALUES('1609','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_1264161008');
-INSERT INTO valueset_to_concept VALUES('1610','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_13125003');
-INSERT INTO valueset_to_concept VALUES('1611','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_14053009');
-INSERT INTO valueset_to_concept VALUES('1612','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_16486000');
-INSERT INTO valueset_to_concept VALUES('1613','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_172001');
-INSERT INTO valueset_to_concept VALUES('1614','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_17716001');
-INSERT INTO valueset_to_concept VALUES('1615','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_198130006');
-INSERT INTO valueset_to_concept VALUES('1616','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_198133008');
-INSERT INTO valueset_to_concept VALUES('1617','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_198135001');
-INSERT INTO valueset_to_concept VALUES('1618','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_198136000');
-INSERT INTO valueset_to_concept VALUES('1619','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_198137009');
-INSERT INTO valueset_to_concept VALUES('1620','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_198138004');
-INSERT INTO valueset_to_concept VALUES('1621','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_198141008');
-INSERT INTO valueset_to_concept VALUES('1622','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_198142001');
-INSERT INTO valueset_to_concept VALUES('1623','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_198143006');
-INSERT INTO valueset_to_concept VALUES('1624','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_198156004');
-INSERT INTO valueset_to_concept VALUES('1625','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_198159006');
-INSERT INTO valueset_to_concept VALUES('1626','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_198179003');
-INSERT INTO valueset_to_concept VALUES('1627','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_198180000');
-INSERT INTO valueset_to_concept VALUES('1628','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_198182008');
-INSERT INTO valueset_to_concept VALUES('1629','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_198183003');
-INSERT INTO valueset_to_concept VALUES('1630','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_198184009');
-INSERT INTO valueset_to_concept VALUES('1631','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_198185005');
-INSERT INTO valueset_to_concept VALUES('1632','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_198186006');
-INSERT INTO valueset_to_concept VALUES('1633','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_198188007');
-INSERT INTO valueset_to_concept VALUES('1634','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_198189004');
-INSERT INTO valueset_to_concept VALUES('1635','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_198198001');
-INSERT INTO valueset_to_concept VALUES('1636','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_198199009');
-INSERT INTO valueset_to_concept VALUES('1637','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_198203009');
-INSERT INTO valueset_to_concept VALUES('1638','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_198206001');
-INSERT INTO valueset_to_concept VALUES('1639','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_198824009');
-INSERT INTO valueset_to_concept VALUES('1640','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_200181000');
-INSERT INTO valueset_to_concept VALUES('1641','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_200182007');
-INSERT INTO valueset_to_concept VALUES('1642','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_200185009');
-INSERT INTO valueset_to_concept VALUES('1643','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_200187001');
-INSERT INTO valueset_to_concept VALUES('1644','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_20932005');
-INSERT INTO valueset_to_concept VALUES('1645','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_21711003');
-INSERT INTO valueset_to_concept VALUES('1646','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_22399000');
-INSERT INTO valueset_to_concept VALUES('1647','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_237037006');
-INSERT INTO valueset_to_concept VALUES('1648','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_237044002');
-INSERT INTO valueset_to_concept VALUES('1649','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_237045001');
-INSERT INTO valueset_to_concept VALUES('1650','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_237124006');
-INSERT INTO valueset_to_concept VALUES('1651','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_266581008');
-INSERT INTO valueset_to_concept VALUES('1652','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_280483007');
-INSERT INTO valueset_to_concept VALUES('1653','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_286985001');
-INSERT INTO valueset_to_concept VALUES('1654','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_28783002');
-INSERT INTO valueset_to_concept VALUES('1655','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_30806007');
-INSERT INTO valueset_to_concept VALUES('1656','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_31354001');
-INSERT INTO valueset_to_concept VALUES('1657','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_32582007');
-INSERT INTO valueset_to_concept VALUES('1658','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_34543006');
-INSERT INTO valueset_to_concept VALUES('1659','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_36742000');
-INSERT INTO valueset_to_concept VALUES('1660','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_37830006');
-INSERT INTO valueset_to_concept VALUES('1661','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_38099005');
-INSERT INTO valueset_to_concept VALUES('1662','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_39120007');
-INSERT INTO valueset_to_concept VALUES('1663','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_397810006');
-INSERT INTO valueset_to_concept VALUES('1664','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_4316006');
-INSERT INTO valueset_to_concept VALUES('1665','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_442506007');
-INSERT INTO valueset_to_concept VALUES('1666','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_46536000');
-INSERT INTO valueset_to_concept VALUES('1667','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_473079009');
-INSERT INTO valueset_to_concept VALUES('1668','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_473082004');
-INSERT INTO valueset_to_concept VALUES('1669','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_48153009');
-INSERT INTO valueset_to_concept VALUES('1670','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_49249007');
-INSERT INTO valueset_to_concept VALUES('1671','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_49258000');
-INSERT INTO valueset_to_concept VALUES('1672','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_55551005');
-INSERT INTO valueset_to_concept VALUES('1673','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_56321006');
-INSERT INTO valueset_to_concept VALUES('1674','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_56728002');
-INSERT INTO valueset_to_concept VALUES('1675','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_57468008');
-INSERT INTO valueset_to_concept VALUES('1676','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_609464004');
-INSERT INTO valueset_to_concept VALUES('1677','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_609483006');
-INSERT INTO valueset_to_concept VALUES('1678','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_609484000');
-INSERT INTO valueset_to_concept VALUES('1679','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_61568004');
-INSERT INTO valueset_to_concept VALUES('1680','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_63922003');
-INSERT INTO valueset_to_concept VALUES('1681','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_64150007');
-INSERT INTO valueset_to_concept VALUES('1682','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_65984002');
-INSERT INTO valueset_to_concept VALUES('1683','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_67667007');
-INSERT INTO valueset_to_concept VALUES('1684','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_698628000');
-INSERT INTO valueset_to_concept VALUES('1685','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_70120007');
-INSERT INTO valueset_to_concept VALUES('1686','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_702716009');
-INSERT INTO valueset_to_concept VALUES('1687','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_702717000');
-INSERT INTO valueset_to_concept VALUES('1688','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_713454009');
-INSERT INTO valueset_to_concept VALUES('1689','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_722830001');
-INSERT INTO valueset_to_concept VALUES('1690','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_723736005');
-INSERT INTO valueset_to_concept VALUES('1691','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_735619000');
-INSERT INTO valueset_to_concept VALUES('1692','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_735620006');
-INSERT INTO valueset_to_concept VALUES('1693','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_73806001');
-INSERT INTO valueset_to_concept VALUES('1694','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_75585005');
-INSERT INTO valueset_to_concept VALUES('1695','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_76047005');
-INSERT INTO valueset_to_concept VALUES('1696','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_76151005');
-INSERT INTO valueset_to_concept VALUES('1697','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_78623009');
-INSERT INTO valueset_to_concept VALUES('1698','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_7910003');
-INSERT INTO valueset_to_concept VALUES('1699','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_81521003');
-INSERT INTO valueset_to_concept VALUES('1700','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_8258000');
-INSERT INTO valueset_to_concept VALUES('1701','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_83774001');
-INSERT INTO valueset_to_concept VALUES('1702','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_86070006');
-INSERT INTO valueset_to_concept VALUES('1703','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_88027004');
-INSERT INTO valueset_to_concept VALUES('1704','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_88157006');
-INSERT INTO valueset_to_concept VALUES('1705','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_88981003');
-INSERT INTO valueset_to_concept VALUES('1706','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_8912009');
-INSERT INTO valueset_to_concept VALUES('1707','2.16.840.1.113762.1.4.1146.2071_20240123','2.16.840.1.113762.1.4.1146.2071_9516007');
-INSERT INTO valueset_to_concept VALUES('1708','2.16.840.1.113762.1.4.1146.201_20181031','2.16.840.1.113762.1.4.1146.201_B75');
-INSERT INTO valueset_to_concept VALUES('1709','2.16.840.1.113762.1.4.1146.322_20230122','2.16.840.1.113762.1.4.1146.322_T60.0X1A');
-INSERT INTO valueset_to_concept VALUES('1710','2.16.840.1.113762.1.4.1146.322_20230122','2.16.840.1.113762.1.4.1146.322_T60.0X2A');
-INSERT INTO valueset_to_concept VALUES('1711','2.16.840.1.113762.1.4.1146.322_20230122','2.16.840.1.113762.1.4.1146.322_T60.0X3A');
-INSERT INTO valueset_to_concept VALUES('1712','2.16.840.1.113762.1.4.1146.322_20230122','2.16.840.1.113762.1.4.1146.322_T60.0X4A');
-INSERT INTO valueset_to_concept VALUES('1713','2.16.840.1.113762.1.4.1146.322_20230122','2.16.840.1.113762.1.4.1146.322_T60.1X1A');
-INSERT INTO valueset_to_concept VALUES('1714','2.16.840.1.113762.1.4.1146.322_20230122','2.16.840.1.113762.1.4.1146.322_T60.1X2A');
-INSERT INTO valueset_to_concept VALUES('1715','2.16.840.1.113762.1.4.1146.322_20230122','2.16.840.1.113762.1.4.1146.322_T60.1X3A');
-INSERT INTO valueset_to_concept VALUES('1716','2.16.840.1.113762.1.4.1146.322_20230122','2.16.840.1.113762.1.4.1146.322_T60.1X4A');
-INSERT INTO valueset_to_concept VALUES('1717','2.16.840.1.113762.1.4.1146.322_20230122','2.16.840.1.113762.1.4.1146.322_T60.2X1A');
-INSERT INTO valueset_to_concept VALUES('1718','2.16.840.1.113762.1.4.1146.322_20230122','2.16.840.1.113762.1.4.1146.322_T60.2X2A');
-INSERT INTO valueset_to_concept VALUES('1719','2.16.840.1.113762.1.4.1146.322_20230122','2.16.840.1.113762.1.4.1146.322_T60.2X3A');
-INSERT INTO valueset_to_concept VALUES('1720','2.16.840.1.113762.1.4.1146.322_20230122','2.16.840.1.113762.1.4.1146.322_T60.2X4A');
-INSERT INTO valueset_to_concept VALUES('1721','2.16.840.1.113762.1.4.1146.322_20230122','2.16.840.1.113762.1.4.1146.322_T60.3X2A');
-INSERT INTO valueset_to_concept VALUES('1722','2.16.840.1.113762.1.4.1146.322_20230122','2.16.840.1.113762.1.4.1146.322_T60.3X3A');
-INSERT INTO valueset_to_concept VALUES('1723','2.16.840.1.113762.1.4.1146.322_20230122','2.16.840.1.113762.1.4.1146.322_T60.3X4A');
-INSERT INTO valueset_to_concept VALUES('1724','2.16.840.1.113762.1.4.1146.322_20230122','2.16.840.1.113762.1.4.1146.322_T60.4X1A');
-INSERT INTO valueset_to_concept VALUES('1725','2.16.840.1.113762.1.4.1146.322_20230122','2.16.840.1.113762.1.4.1146.322_T60.4X2A');
-INSERT INTO valueset_to_concept VALUES('1726','2.16.840.1.113762.1.4.1146.322_20230122','2.16.840.1.113762.1.4.1146.322_T60.4X3A');
-INSERT INTO valueset_to_concept VALUES('1727','2.16.840.1.113762.1.4.1146.322_20230122','2.16.840.1.113762.1.4.1146.322_T60.4X4A');
-INSERT INTO valueset_to_concept VALUES('1728','2.16.840.1.113762.1.4.1146.322_20230122','2.16.840.1.113762.1.4.1146.322_T60.8X1A');
-INSERT INTO valueset_to_concept VALUES('1729','2.16.840.1.113762.1.4.1146.322_20230122','2.16.840.1.113762.1.4.1146.322_T60.8X2A');
-INSERT INTO valueset_to_concept VALUES('1730','2.16.840.1.113762.1.4.1146.322_20230122','2.16.840.1.113762.1.4.1146.322_T60.8X3A');
-INSERT INTO valueset_to_concept VALUES('1731','2.16.840.1.113762.1.4.1146.322_20230122','2.16.840.1.113762.1.4.1146.322_T60.8X4A');
-INSERT INTO valueset_to_concept VALUES('1732','2.16.840.1.113762.1.4.1146.322_20230122','2.16.840.1.113762.1.4.1146.322_T60.91XA');
-INSERT INTO valueset_to_concept VALUES('1733','2.16.840.1.113762.1.4.1146.322_20230122','2.16.840.1.113762.1.4.1146.322_T60.92XA');
-INSERT INTO valueset_to_concept VALUES('1734','2.16.840.1.113762.1.4.1146.322_20230122','2.16.840.1.113762.1.4.1146.322_T60.93XA');
-INSERT INTO valueset_to_concept VALUES('1735','2.16.840.1.113762.1.4.1146.322_20230122','2.16.840.1.113762.1.4.1146.322_T60.94XA');
-INSERT INTO valueset_to_concept VALUES('1736','2.16.840.1.113762.1.4.1146.322_20230122','2.16.840.1.113762.1.4.1146.322_T60.3X1A');
-INSERT INTO valueset_to_concept VALUES('1737','2.16.840.1.113762.1.4.1146.202_20230122','2.16.840.1.113762.1.4.1146.202_1177046004');
-INSERT INTO valueset_to_concept VALUES('1738','2.16.840.1.113762.1.4.1146.202_20230122','2.16.840.1.113762.1.4.1146.202_1177048003');
-INSERT INTO valueset_to_concept VALUES('1739','2.16.840.1.113762.1.4.1146.202_20230122','2.16.840.1.113762.1.4.1146.202_1177049006');
-INSERT INTO valueset_to_concept VALUES('1740','2.16.840.1.113762.1.4.1146.202_20230122','2.16.840.1.113762.1.4.1146.202_1177050006');
-INSERT INTO valueset_to_concept VALUES('1741','2.16.840.1.113762.1.4.1146.202_20230122','2.16.840.1.113762.1.4.1146.202_1177051005');
-INSERT INTO valueset_to_concept VALUES('1742','2.16.840.1.113762.1.4.1146.202_20230122','2.16.840.1.113762.1.4.1146.202_1177052003');
-INSERT INTO valueset_to_concept VALUES('1743','2.16.840.1.113762.1.4.1146.202_20230122','2.16.840.1.113762.1.4.1146.202_233747001');
-INSERT INTO valueset_to_concept VALUES('1744','2.16.840.1.113762.1.4.1146.202_20230122','2.16.840.1.113762.1.4.1146.202_240117006');
-INSERT INTO valueset_to_concept VALUES('1745','2.16.840.1.113762.1.4.1146.202_20230122','2.16.840.1.113762.1.4.1146.202_240867002');
-INSERT INTO valueset_to_concept VALUES('1746','2.16.840.1.113762.1.4.1146.202_20230122','2.16.840.1.113762.1.4.1146.202_240868007');
-INSERT INTO valueset_to_concept VALUES('1747','2.16.840.1.113762.1.4.1146.202_20230122','2.16.840.1.113762.1.4.1146.202_709018004');
-INSERT INTO valueset_to_concept VALUES('1748','2.16.840.1.113762.1.4.1146.202_20230122','2.16.840.1.113762.1.4.1146.202_721830003');
-INSERT INTO valueset_to_concept VALUES('1749','2.16.840.1.113762.1.4.1146.202_20230122','2.16.840.1.113762.1.4.1146.202_88264003');
-INSERT INTO valueset_to_concept VALUES('1750','2.16.840.1.113762.1.4.1146.204_20230125','2.16.840.1.113762.1.4.1146.204_10679007');
-INSERT INTO valueset_to_concept VALUES('1751','2.16.840.1.113762.1.4.1146.204_20230125','2.16.840.1.113762.1.4.1146.204_1163081002');
-INSERT INTO valueset_to_concept VALUES('1752','2.16.840.1.113762.1.4.1146.204_20230125','2.16.840.1.113762.1.4.1146.204_1163109001');
-INSERT INTO valueset_to_concept VALUES('1753','2.16.840.1.113762.1.4.1146.204_20230125','2.16.840.1.113762.1.4.1146.204_1193804003');
-INSERT INTO valueset_to_concept VALUES('1754','2.16.840.1.113762.1.4.1146.204_20230125','2.16.840.1.113762.1.4.1146.204_1193805002');
-INSERT INTO valueset_to_concept VALUES('1755','2.16.840.1.113762.1.4.1146.204_20230125','2.16.840.1.113762.1.4.1146.204_58265007');
-INSERT INTO valueset_to_concept VALUES('1756','2.16.840.1.113762.1.4.1146.205_20181031','2.16.840.1.113762.1.4.1146.205_A07.1');
-INSERT INTO valueset_to_concept VALUES('1757','2.16.840.1.113762.1.4.1146.326_20220603','2.16.840.1.113762.1.4.1146.326_A83.6');
-INSERT INTO valueset_to_concept VALUES('1758','2.16.840.1.113762.1.4.1146.326_20220603','2.16.840.1.113762.1.4.1146.326_A92.1');
-INSERT INTO valueset_to_concept VALUES('1759','2.16.840.1.113762.1.4.1146.326_20220603','2.16.840.1.113762.1.4.1146.326_A92.2');
-INSERT INTO valueset_to_concept VALUES('1760','2.16.840.1.113762.1.4.1146.326_20220603','2.16.840.1.113762.1.4.1146.326_A92.4');
-INSERT INTO valueset_to_concept VALUES('1761','2.16.840.1.113762.1.4.1146.326_20220603','2.16.840.1.113762.1.4.1146.326_A92.8');
-INSERT INTO valueset_to_concept VALUES('1762','2.16.840.1.113762.1.4.1146.326_20220603','2.16.840.1.113762.1.4.1146.326_A92.9');
-INSERT INTO valueset_to_concept VALUES('1763','2.16.840.1.113762.1.4.1146.326_20220603','2.16.840.1.113762.1.4.1146.326_A93.0');
-INSERT INTO valueset_to_concept VALUES('1764','2.16.840.1.113762.1.4.1146.326_20220603','2.16.840.1.113762.1.4.1146.326_A93.8');
-INSERT INTO valueset_to_concept VALUES('1765','2.16.840.1.113762.1.4.1146.326_20220603','2.16.840.1.113762.1.4.1146.326_A94');
-INSERT INTO valueset_to_concept VALUES('1766','2.16.840.1.113762.1.4.1146.326_20220603','2.16.840.1.113762.1.4.1146.326_A98.2');
-INSERT INTO valueset_to_concept VALUES('1767','2.16.840.1.113762.1.4.1146.326_20220603','2.16.840.1.113762.1.4.1146.326_B33.1');
-INSERT INTO valueset_to_concept VALUES('1768','2.16.840.1.113762.1.4.1146.326_20220603','2.16.840.1.113762.1.4.1146.326_A83.8');
-INSERT INTO valueset_to_concept VALUES('1769','2.16.840.1.113762.1.4.1146.326_20220603','2.16.840.1.113762.1.4.1146.326_A83.9');
-INSERT INTO valueset_to_concept VALUES('1770','2.16.840.1.113762.1.4.1146.326_20220603','2.16.840.1.113762.1.4.1146.326_A84.0');
-INSERT INTO valueset_to_concept VALUES('1771','2.16.840.1.113762.1.4.1146.326_20220603','2.16.840.1.113762.1.4.1146.326_A84.1');
-INSERT INTO valueset_to_concept VALUES('1772','2.16.840.1.113762.1.4.1146.326_20220603','2.16.840.1.113762.1.4.1146.326_A84.89');
-INSERT INTO valueset_to_concept VALUES('1773','2.16.840.1.113762.1.4.1146.326_20220603','2.16.840.1.113762.1.4.1146.326_A84.9');
-INSERT INTO valueset_to_concept VALUES('1774','2.16.840.1.113762.1.4.1146.326_20220603','2.16.840.1.113762.1.4.1146.326_A85.2');
-INSERT INTO valueset_to_concept VALUES('1775','2.16.840.1.113762.1.4.1146.207_20220601','2.16.840.1.113762.1.4.1146.207_1193800007');
-INSERT INTO valueset_to_concept VALUES('1776','2.16.840.1.113762.1.4.1146.207_20220601','2.16.840.1.113762.1.4.1146.207_1193801006');
-INSERT INTO valueset_to_concept VALUES('1777','2.16.840.1.113762.1.4.1146.207_20220601','2.16.840.1.113762.1.4.1146.207_15907009');
-INSERT INTO valueset_to_concept VALUES('1778','2.16.840.1.113762.1.4.1146.207_20220601','2.16.840.1.113762.1.4.1146.207_240370009');
-INSERT INTO valueset_to_concept VALUES('1779','2.16.840.1.113762.1.4.1146.207_20220601','2.16.840.1.113762.1.4.1146.207_240371008');
-INSERT INTO valueset_to_concept VALUES('1780','2.16.840.1.113762.1.4.1146.207_20220601','2.16.840.1.113762.1.4.1146.207_26081002');
-INSERT INTO valueset_to_concept VALUES('1781','2.16.840.1.113762.1.4.1146.207_20220601','2.16.840.1.113762.1.4.1146.207_58777003');
-INSERT INTO valueset_to_concept VALUES('1782','2.16.840.1.113762.1.4.1146.207_20220601','2.16.840.1.113762.1.4.1146.207_66160001');
-INSERT INTO valueset_to_concept VALUES('1783','2.16.840.1.113762.1.4.1146.207_20220601','2.16.840.1.113762.1.4.1146.207_70683005');
-INSERT INTO valueset_to_concept VALUES('1784','2.16.840.1.113762.1.4.1146.207_20220601','2.16.840.1.113762.1.4.1146.207_75333007');
-INSERT INTO valueset_to_concept VALUES('1785','2.16.840.1.113762.1.4.1146.207_20220601','2.16.840.1.113762.1.4.1146.207_7977009');
-INSERT INTO valueset_to_concept VALUES('1786','2.16.840.1.113762.1.4.1146.207_20220601','2.16.840.1.113762.1.4.1146.207_840460003');
-INSERT INTO valueset_to_concept VALUES('1787','2.16.840.1.113762.1.4.1146.207_20220601','2.16.840.1.113762.1.4.1146.207_860885008');
-INSERT INTO valueset_to_concept VALUES('1788','2.16.840.1.113762.1.4.1146.207_20220601','2.16.840.1.113762.1.4.1146.207_860889002');
-INSERT INTO valueset_to_concept VALUES('1789','2.16.840.1.113762.1.4.1146.207_20220601','2.16.840.1.113762.1.4.1146.207_713845004');
-INSERT INTO valueset_to_concept VALUES('1790','2.16.840.1.113762.1.4.1146.208_20181031','2.16.840.1.113762.1.4.1146.208_A07.2');
-INSERT INTO valueset_to_concept VALUES('1791','2.16.840.1.113762.1.4.1146.2198_20230602','2.16.840.1.113762.1.4.1146.2198_A79.82');
-INSERT INTO valueset_to_concept VALUES('1792','2.16.840.1.113762.1.4.1146.792_20230125','2.16.840.1.113762.1.4.1146.792_J09.X1');
-INSERT INTO valueset_to_concept VALUES('1793','2.16.840.1.113762.1.4.1146.792_20230125','2.16.840.1.113762.1.4.1146.792_J09.X2');
-INSERT INTO valueset_to_concept VALUES('1794','2.16.840.1.113762.1.4.1146.792_20230125','2.16.840.1.113762.1.4.1146.792_J09.X3');
-INSERT INTO valueset_to_concept VALUES('1795','2.16.840.1.113762.1.4.1146.792_20230125','2.16.840.1.113762.1.4.1146.792_J09.X9');
-INSERT INTO valueset_to_concept VALUES('1796','2.16.840.1.113762.1.4.1146.793_20240123','2.16.840.1.113762.1.4.1146.793_1011000124101');
-INSERT INTO valueset_to_concept VALUES('1797','2.16.840.1.113762.1.4.1146.793_20240123','2.16.840.1.113762.1.4.1146.793_440927002');
-INSERT INTO valueset_to_concept VALUES('1798','2.16.840.1.113762.1.4.1146.793_20240123','2.16.840.1.113762.1.4.1146.793_441343005');
-INSERT INTO valueset_to_concept VALUES('1799','2.16.840.1.113762.1.4.1146.793_20240123','2.16.840.1.113762.1.4.1146.793_708119004');
-INSERT INTO valueset_to_concept VALUES('1800','2.16.840.1.113762.1.4.1146.793_20240123','2.16.840.1.113762.1.4.1146.793_708120005');
-INSERT INTO valueset_to_concept VALUES('1801','2.16.840.1.113762.1.4.1146.793_20240123','2.16.840.1.113762.1.4.1146.793_1149091008');
-INSERT INTO valueset_to_concept VALUES('1802','2.16.840.1.113762.1.4.1146.793_20240123','2.16.840.1.113762.1.4.1146.793_427873006');
-INSERT INTO valueset_to_concept VALUES('1803','2.16.840.1.113762.1.4.1146.793_20240123','2.16.840.1.113762.1.4.1146.793_450715004');
-INSERT INTO valueset_to_concept VALUES('1804','2.16.840.1.113762.1.4.1146.793_20240123','2.16.840.1.113762.1.4.1146.793_450716003');
-INSERT INTO valueset_to_concept VALUES('1805','2.16.840.1.113762.1.4.1146.793_20240123','2.16.840.1.113762.1.4.1146.793_541131000124102');
-INSERT INTO valueset_to_concept VALUES('1806','2.16.840.1.113762.1.4.1146.793_20240123','2.16.840.1.113762.1.4.1146.793_707448003');
-INSERT INTO valueset_to_concept VALUES('1807','2.16.840.1.113762.1.4.1146.793_20240123','2.16.840.1.113762.1.4.1146.793_713083002');
-INSERT INTO valueset_to_concept VALUES('1808','2.16.840.1.113762.1.4.1146.793_20240123','2.16.840.1.113762.1.4.1146.793_772828001');
-INSERT INTO valueset_to_concept VALUES('1809','2.16.840.1.113762.1.4.1146.315_20191227','2.16.840.1.113762.1.4.1146.315_P35.0');
-INSERT INTO valueset_to_concept VALUES('1810','2.16.840.1.113762.1.4.1146.315_20191227','2.16.840.1.113762.1.4.1146.315_B06.01');
-INSERT INTO valueset_to_concept VALUES('1811','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_1010229008');
-INSERT INTO valueset_to_concept VALUES('1812','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_1010230003');
-INSERT INTO valueset_to_concept VALUES('1813','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_1010236009');
-INSERT INTO valueset_to_concept VALUES('1814','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_1010238005');
-INSERT INTO valueset_to_concept VALUES('1815','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_1010439000');
-INSERT INTO valueset_to_concept VALUES('1816','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_1010440003');
-INSERT INTO valueset_to_concept VALUES('1817','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_1010441004');
-INSERT INTO valueset_to_concept VALUES('1818','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_1010442006');
-INSERT INTO valueset_to_concept VALUES('1819','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_103276001');
-INSERT INTO valueset_to_concept VALUES('1820','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_1052205008');
-INSERT INTO valueset_to_concept VALUES('1821','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_1052206009');
-INSERT INTO valueset_to_concept VALUES('1822','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_1083811000119108');
-INSERT INTO valueset_to_concept VALUES('1823','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_1084051000119104');
-INSERT INTO valueset_to_concept VALUES('1824','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_1088891000119106');
-INSERT INTO valueset_to_concept VALUES('1825','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_1088931000119103');
-INSERT INTO valueset_to_concept VALUES('1826','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_1091501000119106');
-INSERT INTO valueset_to_concept VALUES('1827','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_1091541000119108');
-INSERT INTO valueset_to_concept VALUES('1828','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_1119386008');
-INSERT INTO valueset_to_concept VALUES('1829','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_1119387004');
-INSERT INTO valueset_to_concept VALUES('1830','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_1179361001');
-INSERT INTO valueset_to_concept VALUES('1831','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_1179362008');
-INSERT INTO valueset_to_concept VALUES('1832','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_1179555000');
-INSERT INTO valueset_to_concept VALUES('1833','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_1230412003');
-INSERT INTO valueset_to_concept VALUES('1834','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_14230001000004101');
-INSERT INTO valueset_to_concept VALUES('1835','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_15188001');
-INSERT INTO valueset_to_concept VALUES('1836','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_15190000');
-INSERT INTO valueset_to_concept VALUES('1837','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_162340000');
-INSERT INTO valueset_to_concept VALUES('1838','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_18701000119107');
-INSERT INTO valueset_to_concept VALUES('1839','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_18711000119105');
-INSERT INTO valueset_to_concept VALUES('1840','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_194413008');
-INSERT INTO valueset_to_concept VALUES('1841','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_194414002');
-INSERT INTO valueset_to_concept VALUES('1842','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_194415001');
-INSERT INTO valueset_to_concept VALUES('1843','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_194416000');
-INSERT INTO valueset_to_concept VALUES('1844','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_194417009');
-INSERT INTO valueset_to_concept VALUES('1845','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_194418004');
-INSERT INTO valueset_to_concept VALUES('1846','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_194419007');
-INSERT INTO valueset_to_concept VALUES('1847','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_194424005');
-INSERT INTO valueset_to_concept VALUES('1848','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_194425006');
-INSERT INTO valueset_to_concept VALUES('1849','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_194426007');
-INSERT INTO valueset_to_concept VALUES('1850','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_194428008');
-INSERT INTO valueset_to_concept VALUES('1851','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_194429000');
-INSERT INTO valueset_to_concept VALUES('1852','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_2061000');
-INSERT INTO valueset_to_concept VALUES('1853','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_21451000119101');
-INSERT INTO valueset_to_concept VALUES('1854','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_232328005');
-INSERT INTO valueset_to_concept VALUES('1855','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_232330007');
-INSERT INTO valueset_to_concept VALUES('1856','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_232331006');
-INSERT INTO valueset_to_concept VALUES('1857','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_232332004');
-INSERT INTO valueset_to_concept VALUES('1858','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_232333009');
-INSERT INTO valueset_to_concept VALUES('1859','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_23631000119109');
-INSERT INTO valueset_to_concept VALUES('1860','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_23641000119100');
-INSERT INTO valueset_to_concept VALUES('1861','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_280122007');
-INSERT INTO valueset_to_concept VALUES('1862','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_314914004');
-INSERT INTO valueset_to_concept VALUES('1863','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_3541000119107');
-INSERT INTO valueset_to_concept VALUES('1864','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_3551000119109');
-INSERT INTO valueset_to_concept VALUES('1865','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_3561000119106');
-INSERT INTO valueset_to_concept VALUES('1866','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_3820005');
-INSERT INTO valueset_to_concept VALUES('1867','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_425601005');
-INSERT INTO valueset_to_concept VALUES('1868','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_425980006');
-INSERT INTO valueset_to_concept VALUES('1869','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_427644005');
-INSERT INTO valueset_to_concept VALUES('1870','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_427772009');
-INSERT INTO valueset_to_concept VALUES('1871','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_428470000');
-INSERT INTO valueset_to_concept VALUES('1872','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_42853003');
-INSERT INTO valueset_to_concept VALUES('1873','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_428887009');
-INSERT INTO valueset_to_concept VALUES('1874','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_430977001');
-INSERT INTO valueset_to_concept VALUES('1875','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_430985005');
-INSERT INTO valueset_to_concept VALUES('1876','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_44057004');
-INSERT INTO valueset_to_concept VALUES('1877','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_442535004');
-INSERT INTO valueset_to_concept VALUES('1878','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_47111006');
-INSERT INTO valueset_to_concept VALUES('1879','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_473423001');
-INSERT INTO valueset_to_concept VALUES('1880','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_473424007');
-INSERT INTO valueset_to_concept VALUES('1881','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_60700002');
-INSERT INTO valueset_to_concept VALUES('1882','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_609125008');
-INSERT INTO valueset_to_concept VALUES('1883','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_61743004');
-INSERT INTO valueset_to_concept VALUES('1884','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_65680009');
-INSERT INTO valueset_to_concept VALUES('1885','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_68467004');
-INSERT INTO valueset_to_concept VALUES('1886','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_700454004');
-INSERT INTO valueset_to_concept VALUES('1887','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_715239002');
-INSERT INTO valueset_to_concept VALUES('1888','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_715483009');
-INSERT INTO valueset_to_concept VALUES('1889','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_721294001');
-INSERT INTO valueset_to_concept VALUES('1890','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_724636005');
-INSERT INTO valueset_to_concept VALUES('1891','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_73371001');
-INSERT INTO valueset_to_concept VALUES('1892','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_737047001');
-INSERT INTO valueset_to_concept VALUES('1893','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_737048006');
-INSERT INTO valueset_to_concept VALUES('1894','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_737049003');
-INSERT INTO valueset_to_concept VALUES('1895','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_737050003');
-INSERT INTO valueset_to_concept VALUES('1896','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_77507001');
-INSERT INTO valueset_to_concept VALUES('1897','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_788953003');
-INSERT INTO valueset_to_concept VALUES('1898','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_79471008');
-INSERT INTO valueset_to_concept VALUES('1899','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_85571008');
-INSERT INTO valueset_to_concept VALUES('1900','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_95820000');
-INSERT INTO valueset_to_concept VALUES('1901','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_95821001');
-INSERT INTO valueset_to_concept VALUES('1902','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_700453005');
-INSERT INTO valueset_to_concept VALUES('1903','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_737344003');
-INSERT INTO valueset_to_concept VALUES('1904','2.16.840.1.113762.1.4.1146.679_20230122','2.16.840.1.113762.1.4.1146.679_737377004');
-INSERT INTO valueset_to_concept VALUES('1905','2.16.840.1.113762.1.4.1146.2087_20230125','2.16.840.1.113762.1.4.1146.2087_110041000119104');
-INSERT INTO valueset_to_concept VALUES('1906','2.16.840.1.113762.1.4.1146.2087_20230125','2.16.840.1.113762.1.4.1146.2087_197903003');
-INSERT INTO valueset_to_concept VALUES('1907','2.16.840.1.113762.1.4.1146.2087_20230125','2.16.840.1.113762.1.4.1146.2087_236685000');
-INSERT INTO valueset_to_concept VALUES('1908','2.16.840.1.113762.1.4.1146.2087_20230125','2.16.840.1.113762.1.4.1146.2087_236690002');
-INSERT INTO valueset_to_concept VALUES('1909','2.16.840.1.113762.1.4.1146.2087_20230125','2.16.840.1.113762.1.4.1146.2087_30116001');
-INSERT INTO valueset_to_concept VALUES('1910','2.16.840.1.113762.1.4.1146.2087_20230125','2.16.840.1.113762.1.4.1146.2087_51105006');
-INSERT INTO valueset_to_concept VALUES('1911','2.16.840.1.113762.1.4.1146.2087_20230125','2.16.840.1.113762.1.4.1146.2087_707131004');
-INSERT INTO valueset_to_concept VALUES('1912','2.16.840.1.113762.1.4.1146.2087_20230125','2.16.840.1.113762.1.4.1146.2087_84619001');
-INSERT INTO valueset_to_concept VALUES('1913','2.16.840.1.113762.1.4.1146.2087_20230125','2.16.840.1.113762.1.4.1146.2087_179101003');
-INSERT INTO valueset_to_concept VALUES('1914','2.16.840.1.113762.1.4.1146.2087_20230125','2.16.840.1.113762.1.4.1146.2087_236684001');
-INSERT INTO valueset_to_concept VALUES('1915','2.16.840.1.113762.1.4.1146.2087_20230125','2.16.840.1.113762.1.4.1146.2087_236683007');
-INSERT INTO valueset_to_concept VALUES('1916','2.16.840.1.113762.1.4.1146.2088_20230125','2.16.840.1.113762.1.4.1146.2088_A59.03');
-INSERT INTO valueset_to_concept VALUES('1917','2.16.840.1.113762.1.4.1146.2088_20230125','2.16.840.1.113762.1.4.1146.2088_B37.41');
-INSERT INTO valueset_to_concept VALUES('1918','2.16.840.1.113762.1.4.1146.2088_20230125','2.16.840.1.113762.1.4.1146.2088_A56.01');
-INSERT INTO valueset_to_concept VALUES('1919','2.16.840.1.113762.1.4.1146.2096_20240123','2.16.840.1.113762.1.4.1146.2096_11086007');
-INSERT INTO valueset_to_concept VALUES('1920','2.16.840.1.113762.1.4.1146.2096_20240123','2.16.840.1.113762.1.4.1146.2096_41439009');
-INSERT INTO valueset_to_concept VALUES('1921','2.16.840.1.113762.1.4.1146.2096_20240123','2.16.840.1.113762.1.4.1146.2096_81034007');
-INSERT INTO valueset_to_concept VALUES('1922','2.16.840.1.113762.1.4.1146.783_20210526','2.16.840.1.113762.1.4.1146.783_1857005');
-INSERT INTO valueset_to_concept VALUES('1923','2.16.840.1.113762.1.4.1146.783_20210526','2.16.840.1.113762.1.4.1146.783_231985001');
-INSERT INTO valueset_to_concept VALUES('1924','2.16.840.1.113762.1.4.1146.783_20210526','2.16.840.1.113762.1.4.1146.783_253227001');
-INSERT INTO valueset_to_concept VALUES('1925','2.16.840.1.113762.1.4.1146.783_20210526','2.16.840.1.113762.1.4.1146.783_47082005');
-INSERT INTO valueset_to_concept VALUES('1926','2.16.840.1.113762.1.4.1146.783_20210526','2.16.840.1.113762.1.4.1146.783_64190005');
-INSERT INTO valueset_to_concept VALUES('1927','2.16.840.1.113762.1.4.1146.783_20210526','2.16.840.1.113762.1.4.1146.783_79303006');
-INSERT INTO valueset_to_concept VALUES('1928','2.16.840.1.113762.1.4.1146.783_20210526','2.16.840.1.113762.1.4.1146.783_609434007');
-INSERT INTO valueset_to_concept VALUES('1929','2.16.840.1.113762.1.4.1146.783_20210526','2.16.840.1.113762.1.4.1146.783_13225007');
-INSERT INTO valueset_to_concept VALUES('1930','2.16.840.1.113762.1.4.1146.783_20210526','2.16.840.1.113762.1.4.1146.783_302811004');
-INSERT INTO valueset_to_concept VALUES('1931','2.16.840.1.113762.1.4.1146.784_20220601','2.16.840.1.113762.1.4.1146.784_10759761000119100');
-INSERT INTO valueset_to_concept VALUES('1932','2.16.840.1.113762.1.4.1146.784_20220601','2.16.840.1.113762.1.4.1146.784_199192005');
-INSERT INTO valueset_to_concept VALUES('1933','2.16.840.1.113762.1.4.1146.784_20220601','2.16.840.1.113762.1.4.1146.784_199193000');
-INSERT INTO valueset_to_concept VALUES('1934','2.16.840.1.113762.1.4.1146.784_20220601','2.16.840.1.113762.1.4.1146.784_199194006');
-INSERT INTO valueset_to_concept VALUES('1935','2.16.840.1.113762.1.4.1146.784_20220601','2.16.840.1.113762.1.4.1146.784_199195007');
-INSERT INTO valueset_to_concept VALUES('1936','2.16.840.1.113762.1.4.1146.784_20220601','2.16.840.1.113762.1.4.1146.784_274119009');
-INSERT INTO valueset_to_concept VALUES('1937','2.16.840.1.113762.1.4.1146.784_20220601','2.16.840.1.113762.1.4.1146.784_84939004');
-INSERT INTO valueset_to_concept VALUES('1938','2.16.840.1.113762.1.4.1146.784_20220601','2.16.840.1.113762.1.4.1146.784_609434007');
-INSERT INTO valueset_to_concept VALUES('1939','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_10706006');
-INSERT INTO valueset_to_concept VALUES('1940','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_10893003');
-INSERT INTO valueset_to_concept VALUES('1941','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_1092761000119105');
-INSERT INTO valueset_to_concept VALUES('1942','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_1092771000119104');
-INSERT INTO valueset_to_concept VALUES('1943','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_111825008');
-INSERT INTO valueset_to_concept VALUES('1944','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_111830007');
-INSERT INTO valueset_to_concept VALUES('1945','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_111832004');
-INSERT INTO valueset_to_concept VALUES('1946','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_11354005');
-INSERT INTO valueset_to_concept VALUES('1947','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_1144499001');
-INSERT INTO valueset_to_concept VALUES('1948','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_1162297009');
-INSERT INTO valueset_to_concept VALUES('1949','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_1162356000');
-INSERT INTO valueset_to_concept VALUES('1950','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_1162401004');
-INSERT INTO valueset_to_concept VALUES('1951','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_1162404007');
-INSERT INTO valueset_to_concept VALUES('1952','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_1162879007');
-INSERT INTO valueset_to_concept VALUES('1953','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_11676005');
-INSERT INTO valueset_to_concept VALUES('1954','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_1176981005');
-INSERT INTO valueset_to_concept VALUES('1955','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_1177009003');
-INSERT INTO valueset_to_concept VALUES('1956','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_1177013005');
-INSERT INTO valueset_to_concept VALUES('1957','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_1177015003');
-INSERT INTO valueset_to_concept VALUES('1958','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_1177018001');
-INSERT INTO valueset_to_concept VALUES('1959','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_1177021004');
-INSERT INTO valueset_to_concept VALUES('1960','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_1177026009');
-INSERT INTO valueset_to_concept VALUES('1961','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_1177031006');
-INSERT INTO valueset_to_concept VALUES('1962','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_1177041009');
-INSERT INTO valueset_to_concept VALUES('1963','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_1177067004');
-INSERT INTO valueset_to_concept VALUES('1964','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_1197013001');
-INSERT INTO valueset_to_concept VALUES('1965','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_12137005');
-INSERT INTO valueset_to_concept VALUES('1966','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_1231669001');
-INSERT INTO valueset_to_concept VALUES('1967','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_123583002');
-INSERT INTO valueset_to_concept VALUES('1968','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_12677003');
-INSERT INTO valueset_to_concept VALUES('1969','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_129211000119108');
-INSERT INTO valueset_to_concept VALUES('1970','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_12985005');
-INSERT INTO valueset_to_concept VALUES('1971','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_13570003');
-INSERT INTO valueset_to_concept VALUES('1972','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_14188007');
-INSERT INTO valueset_to_concept VALUES('1973','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_14527007');
-INSERT INTO valueset_to_concept VALUES('1974','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_15202009');
-INSERT INTO valueset_to_concept VALUES('1975','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_15284007');
-INSERT INTO valueset_to_concept VALUES('1976','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_154283005');
-INSERT INTO valueset_to_concept VALUES('1977','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_15984271000119108');
-INSERT INTO valueset_to_concept VALUES('1978','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_15991471000119106');
-INSERT INTO valueset_to_concept VALUES('1979','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_15991511000119102');
-INSERT INTO valueset_to_concept VALUES('1980','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_16016231000119109');
-INSERT INTO valueset_to_concept VALUES('1981','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_16016311000119107');
-INSERT INTO valueset_to_concept VALUES('1982','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_16409009');
-INSERT INTO valueset_to_concept VALUES('1983','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_17136009');
-INSERT INTO valueset_to_concept VALUES('1984','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_17653001');
-INSERT INTO valueset_to_concept VALUES('1985','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_185113005');
-INSERT INTO valueset_to_concept VALUES('1986','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_186172004');
-INSERT INTO valueset_to_concept VALUES('1987','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_186175002');
-INSERT INTO valueset_to_concept VALUES('1988','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_186177005');
-INSERT INTO valueset_to_concept VALUES('1989','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_186178000');
-INSERT INTO valueset_to_concept VALUES('1990','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_186182003');
-INSERT INTO valueset_to_concept VALUES('1991','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_186192006');
-INSERT INTO valueset_to_concept VALUES('1992','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_186193001');
-INSERT INTO valueset_to_concept VALUES('1993','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_186194007');
-INSERT INTO valueset_to_concept VALUES('1994','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_186195008');
-INSERT INTO valueset_to_concept VALUES('1995','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_186199002');
-INSERT INTO valueset_to_concept VALUES('1996','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_186200004');
-INSERT INTO valueset_to_concept VALUES('1997','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_186201000');
-INSERT INTO valueset_to_concept VALUES('1998','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_186202007');
-INSERT INTO valueset_to_concept VALUES('1999','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_186203002');
-INSERT INTO valueset_to_concept VALUES('2000','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_186204008');
-INSERT INTO valueset_to_concept VALUES('2001','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_186225008');
-INSERT INTO valueset_to_concept VALUES('2002','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_186231006');
-INSERT INTO valueset_to_concept VALUES('2003','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_186259007');
-INSERT INTO valueset_to_concept VALUES('2004','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_186263000');
-INSERT INTO valueset_to_concept VALUES('2005','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_186266008');
-INSERT INTO valueset_to_concept VALUES('2006','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_186267004');
-INSERT INTO valueset_to_concept VALUES('2007','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_186269001');
-INSERT INTO valueset_to_concept VALUES('2008','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_186270000');
-INSERT INTO valueset_to_concept VALUES('2009','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_186272008');
-INSERT INTO valueset_to_concept VALUES('2010','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_186273003');
-INSERT INTO valueset_to_concept VALUES('2011','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_186276006');
-INSERT INTO valueset_to_concept VALUES('2012','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_186278007');
-INSERT INTO valueset_to_concept VALUES('2013','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_187251001');
-INSERT INTO valueset_to_concept VALUES('2014','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_187252008');
-INSERT INTO valueset_to_concept VALUES('2015','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_187253003');
-INSERT INTO valueset_to_concept VALUES('2016','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_187254009');
-INSERT INTO valueset_to_concept VALUES('2017','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_187255005');
-INSERT INTO valueset_to_concept VALUES('2018','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_190710003');
-INSERT INTO valueset_to_concept VALUES('2019','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_192745001');
-INSERT INTO valueset_to_concept VALUES('2020','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_194908003');
-INSERT INTO valueset_to_concept VALUES('2021','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_194949003');
-INSERT INTO valueset_to_concept VALUES('2022','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_196017002');
-INSERT INTO valueset_to_concept VALUES('2023','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_199175001');
-INSERT INTO valueset_to_concept VALUES('2024','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_199178004');
-INSERT INTO valueset_to_concept VALUES('2025','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_199179007');
-INSERT INTO valueset_to_concept VALUES('2026','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_199180005');
-INSERT INTO valueset_to_concept VALUES('2027','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_199181009');
-INSERT INTO valueset_to_concept VALUES('2028','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_203263006');
-INSERT INTO valueset_to_concept VALUES('2029','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_203264000');
-INSERT INTO valueset_to_concept VALUES('2030','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_203265004');
-INSERT INTO valueset_to_concept VALUES('2031','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_203266003');
-INSERT INTO valueset_to_concept VALUES('2032','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_203267007');
-INSERT INTO valueset_to_concept VALUES('2033','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_203269005');
-INSERT INTO valueset_to_concept VALUES('2034','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_203270006');
-INSERT INTO valueset_to_concept VALUES('2035','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_203271005');
-INSERT INTO valueset_to_concept VALUES('2036','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_203272003');
-INSERT INTO valueset_to_concept VALUES('2037','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_203274002');
-INSERT INTO valueset_to_concept VALUES('2038','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_203278004');
-INSERT INTO valueset_to_concept VALUES('2039','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_203279007');
-INSERT INTO valueset_to_concept VALUES('2040','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_203280005');
-INSERT INTO valueset_to_concept VALUES('2041','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_203282002');
-INSERT INTO valueset_to_concept VALUES('2042','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_20372007');
-INSERT INTO valueset_to_concept VALUES('2043','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_20533009');
-INSERT INTO valueset_to_concept VALUES('2044','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_22990009');
-INSERT INTO valueset_to_concept VALUES('2045','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_23022004');
-INSERT INTO valueset_to_concept VALUES('2046','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_233649005');
-INSERT INTO valueset_to_concept VALUES('2047','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_233794009');
-INSERT INTO valueset_to_concept VALUES('2048','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_234090004');
-INSERT INTO valueset_to_concept VALUES('2049','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_234953003');
-INSERT INTO valueset_to_concept VALUES('2050','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_235067001');
-INSERT INTO valueset_to_concept VALUES('2051','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_235694001');
-INSERT INTO valueset_to_concept VALUES('2052','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_236602004');
-INSERT INTO valueset_to_concept VALUES('2053','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_236770001');
-INSERT INTO valueset_to_concept VALUES('2054','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_237445009');
-INSERT INTO valueset_to_concept VALUES('2055','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_238428001');
-INSERT INTO valueset_to_concept VALUES('2056','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_238429009');
-INSERT INTO valueset_to_concept VALUES('2057','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_240376003');
-INSERT INTO valueset_to_concept VALUES('2058','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_240379005');
-INSERT INTO valueset_to_concept VALUES('2059','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_240380008');
-INSERT INTO valueset_to_concept VALUES('2060','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_240381007');
-INSERT INTO valueset_to_concept VALUES('2061','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_240382000');
-INSERT INTO valueset_to_concept VALUES('2062','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_24235005');
-INSERT INTO valueset_to_concept VALUES('2063','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_24810006');
-INSERT INTO valueset_to_concept VALUES('2064','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_25629007');
-INSERT INTO valueset_to_concept VALUES('2065','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_25738004');
-INSERT INTO valueset_to_concept VALUES('2066','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_25831001');
-INSERT INTO valueset_to_concept VALUES('2067','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_267317007');
-INSERT INTO valueset_to_concept VALUES('2068','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_26935004');
-INSERT INTO valueset_to_concept VALUES('2069','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_271423008');
-INSERT INTO valueset_to_concept VALUES('2070','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_281623008');
-INSERT INTO valueset_to_concept VALUES('2071','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_28399005');
-INSERT INTO valueset_to_concept VALUES('2072','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_29731002');
-INSERT INTO valueset_to_concept VALUES('2073','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_301836007');
-INSERT INTO valueset_to_concept VALUES('2074','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_302131003');
-INSERT INTO valueset_to_concept VALUES('2075','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_314029000');
-INSERT INTO valueset_to_concept VALUES('2076','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_32268008');
-INSERT INTO valueset_to_concept VALUES('2077','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_33893009');
-INSERT INTO valueset_to_concept VALUES('2078','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_34320001');
-INSERT INTO valueset_to_concept VALUES('2079','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_35117008');
-INSERT INTO valueset_to_concept VALUES('2080','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_35984006');
-INSERT INTO valueset_to_concept VALUES('2081','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_363310009');
-INSERT INTO valueset_to_concept VALUES('2082','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_37133005');
-INSERT INTO valueset_to_concept VALUES('2083','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_37260006');
-INSERT INTO valueset_to_concept VALUES('2084','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_373043002');
-INSERT INTO valueset_to_concept VALUES('2085','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_373085003');
-INSERT INTO valueset_to_concept VALUES('2086','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_373086002');
-INSERT INTO valueset_to_concept VALUES('2087','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_373437006');
-INSERT INTO valueset_to_concept VALUES('2088','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_373576009');
-INSERT INTO valueset_to_concept VALUES('2089','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_38115001');
-INSERT INTO valueset_to_concept VALUES('2090','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_38279006');
-INSERT INTO valueset_to_concept VALUES('2091','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_38420005');
-INSERT INTO valueset_to_concept VALUES('2092','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_39306006');
-INSERT INTO valueset_to_concept VALUES('2093','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_40258005');
-INSERT INTO valueset_to_concept VALUES('2094','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_41156006');
-INSERT INTO valueset_to_concept VALUES('2095','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_413556004');
-INSERT INTO valueset_to_concept VALUES('2096','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_413852006');
-INSERT INTO valueset_to_concept VALUES('2097','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_414146004');
-INSERT INTO valueset_to_concept VALUES('2098','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_414149006');
-INSERT INTO valueset_to_concept VALUES('2099','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_414546009');
-INSERT INTO valueset_to_concept VALUES('2100','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_415222009');
-INSERT INTO valueset_to_concept VALUES('2101','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_415345001');
-INSERT INTO valueset_to_concept VALUES('2102','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_415622003');
-INSERT INTO valueset_to_concept VALUES('2103','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_422481005');
-INSERT INTO valueset_to_concept VALUES('2104','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_4225003');
-INSERT INTO valueset_to_concept VALUES('2105','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_423092005');
-INSERT INTO valueset_to_concept VALUES('2106','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_423709000');
-INSERT INTO valueset_to_concept VALUES('2107','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_423997002');
-INSERT INTO valueset_to_concept VALUES('2108','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_427099000');
-INSERT INTO valueset_to_concept VALUES('2109','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_441770001');
-INSERT INTO valueset_to_concept VALUES('2110','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_44182001');
-INSERT INTO valueset_to_concept VALUES('2111','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_44323002');
-INSERT INTO valueset_to_concept VALUES('2112','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_4445009');
-INSERT INTO valueset_to_concept VALUES('2113','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_44572005');
-INSERT INTO valueset_to_concept VALUES('2114','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_446123007');
-INSERT INTO valueset_to_concept VALUES('2115','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_446753005');
-INSERT INTO valueset_to_concept VALUES('2116','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_446926000');
-INSERT INTO valueset_to_concept VALUES('2117','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_446946005');
-INSERT INTO valueset_to_concept VALUES('2118','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_446986002');
-INSERT INTO valueset_to_concept VALUES('2119','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_447006007');
-INSERT INTO valueset_to_concept VALUES('2120','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_447012002');
-INSERT INTO valueset_to_concept VALUES('2121','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_447253004');
-INSERT INTO valueset_to_concept VALUES('2122','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_447330002');
-INSERT INTO valueset_to_concept VALUES('2123','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_447371008');
-INSERT INTO valueset_to_concept VALUES('2124','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_447399004');
-INSERT INTO valueset_to_concept VALUES('2125','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_449925002');
-INSERT INTO valueset_to_concept VALUES('2126','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_4501007');
-INSERT INTO valueset_to_concept VALUES('2127','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_460440005');
-INSERT INTO valueset_to_concept VALUES('2128','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_460464006');
-INSERT INTO valueset_to_concept VALUES('2129','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_47292005');
-INSERT INTO valueset_to_concept VALUES('2130','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_473426009');
-INSERT INTO valueset_to_concept VALUES('2131','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_473427000');
-INSERT INTO valueset_to_concept VALUES('2132','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_473428005');
-INSERT INTO valueset_to_concept VALUES('2133','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_473429002');
-INSERT INTO valueset_to_concept VALUES('2134','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_473430007');
-INSERT INTO valueset_to_concept VALUES('2135','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_473431006');
-INSERT INTO valueset_to_concept VALUES('2136','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_47604008');
-INSERT INTO valueset_to_concept VALUES('2137','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_48225000');
-INSERT INTO valueset_to_concept VALUES('2138','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_49107007');
-INSERT INTO valueset_to_concept VALUES('2139','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_49807009');
-INSERT INTO valueset_to_concept VALUES('2140','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_51014003');
-INSERT INTO valueset_to_concept VALUES('2141','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_52721006');
-INSERT INTO valueset_to_concept VALUES('2142','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_52987001');
-INSERT INTO valueset_to_concept VALUES('2143','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_54084005');
-INSERT INTO valueset_to_concept VALUES('2144','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_55419007');
-INSERT INTO valueset_to_concept VALUES('2145','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_56498009');
-INSERT INTO valueset_to_concept VALUES('2146','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_58374007');
-INSERT INTO valueset_to_concept VALUES('2147','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_58437007');
-INSERT INTO valueset_to_concept VALUES('2148','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_58764007');
-INSERT INTO valueset_to_concept VALUES('2149','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_60136008');
-INSERT INTO valueset_to_concept VALUES('2150','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_62494007');
-INSERT INTO valueset_to_concept VALUES('2151','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_63309002');
-INSERT INTO valueset_to_concept VALUES('2152','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_66291003');
-INSERT INTO valueset_to_concept VALUES('2153','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_67256000');
-INSERT INTO valueset_to_concept VALUES('2154','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_698729002');
-INSERT INTO valueset_to_concept VALUES('2155','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_698733009');
-INSERT INTO valueset_to_concept VALUES('2156','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_700272008');
-INSERT INTO valueset_to_concept VALUES('2157','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_700273003');
-INSERT INTO valueset_to_concept VALUES('2158','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_70341005');
-INSERT INTO valueset_to_concept VALUES('2159','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_710106005');
-INSERT INTO valueset_to_concept VALUES('2160','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_71375000');
-INSERT INTO valueset_to_concept VALUES('2161','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_717697005');
-INSERT INTO valueset_to_concept VALUES('2162','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_71943007');
-INSERT INTO valueset_to_concept VALUES('2163','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_721732001');
-INSERT INTO valueset_to_concept VALUES('2164','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_724541008');
-INSERT INTO valueset_to_concept VALUES('2165','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_72807002');
-INSERT INTO valueset_to_concept VALUES('2166','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_735517008');
-INSERT INTO valueset_to_concept VALUES('2167','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_735518003');
-INSERT INTO valueset_to_concept VALUES('2168','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_735519006');
-INSERT INTO valueset_to_concept VALUES('2169','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_74387008');
-INSERT INTO valueset_to_concept VALUES('2170','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_7444001');
-INSERT INTO valueset_to_concept VALUES('2171','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_74610006');
-INSERT INTO valueset_to_concept VALUES('2172','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_77038006');
-INSERT INTO valueset_to_concept VALUES('2173','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_77668003');
-INSERT INTO valueset_to_concept VALUES('2174','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_78436002');
-INSERT INTO valueset_to_concept VALUES('2175','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_788960009');
-INSERT INTO valueset_to_concept VALUES('2176','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_789056000');
-INSERT INTO valueset_to_concept VALUES('2177','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_789057009');
-INSERT INTO valueset_to_concept VALUES('2178','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_79158003');
-INSERT INTO valueset_to_concept VALUES('2179','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_80010008');
-INSERT INTO valueset_to_concept VALUES('2180','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_80602006');
-INSERT INTO valueset_to_concept VALUES('2181','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_81133003');
-INSERT INTO valueset_to_concept VALUES('2182','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_81359005');
-INSERT INTO valueset_to_concept VALUES('2183','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_81554001');
-INSERT INTO valueset_to_concept VALUES('2184','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_82495004');
-INSERT INTO valueset_to_concept VALUES('2185','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_8250007');
-INSERT INTO valueset_to_concept VALUES('2186','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_82796002');
-INSERT INTO valueset_to_concept VALUES('2187','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_83652003');
-INSERT INTO valueset_to_concept VALUES('2188','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_83784000');
-INSERT INTO valueset_to_concept VALUES('2189','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_840446000');
-INSERT INTO valueset_to_concept VALUES('2190','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_84288007');
-INSERT INTO valueset_to_concept VALUES('2191','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_85692003');
-INSERT INTO valueset_to_concept VALUES('2192','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_85940005');
-INSERT INTO valueset_to_concept VALUES('2193','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_860803004');
-INSERT INTO valueset_to_concept VALUES('2194','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_866083008');
-INSERT INTO valueset_to_concept VALUES('2195','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_870333003');
-INSERT INTO valueset_to_concept VALUES('2196','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_8832006');
-INSERT INTO valueset_to_concept VALUES('2197','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_88356006');
-INSERT INTO valueset_to_concept VALUES('2198','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_90302003');
-INSERT INTO valueset_to_concept VALUES('2199','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_9768003');
-INSERT INTO valueset_to_concept VALUES('2200','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_182159002');
-INSERT INTO valueset_to_concept VALUES('2201','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_186217006');
-INSERT INTO valueset_to_concept VALUES('2202','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_193787009');
-INSERT INTO valueset_to_concept VALUES('2203','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_202994006');
-INSERT INTO valueset_to_concept VALUES('2204','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_236684001');
-INSERT INTO valueset_to_concept VALUES('2205','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_35786001');
-INSERT INTO valueset_to_concept VALUES('2206','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_416265003');
-INSERT INTO valueset_to_concept VALUES('2207','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_416903004');
-INSERT INTO valueset_to_concept VALUES('2208','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_417484006');
-INSERT INTO valueset_to_concept VALUES('2209','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_446543007');
-INSERT INTO valueset_to_concept VALUES('2210','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_447332005');
-INSERT INTO valueset_to_concept VALUES('2211','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_56717001');
-INSERT INTO valueset_to_concept VALUES('2212','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_63808004');
-INSERT INTO valueset_to_concept VALUES('2213','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_66986005');
-INSERT INTO valueset_to_concept VALUES('2214','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_733835007');
-INSERT INTO valueset_to_concept VALUES('2215','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_735521001');
-INSERT INTO valueset_to_concept VALUES('2216','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_735523003');
-INSERT INTO valueset_to_concept VALUES('2217','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_735525005');
-INSERT INTO valueset_to_concept VALUES('2218','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_735527002');
-INSERT INTO valueset_to_concept VALUES('2219','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_80003002');
-INSERT INTO valueset_to_concept VALUES('2220','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_88415009');
-INSERT INTO valueset_to_concept VALUES('2221','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_90117007');
-INSERT INTO valueset_to_concept VALUES('2222','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_198241002');
-INSERT INTO valueset_to_concept VALUES('2223','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_35585004');
-INSERT INTO valueset_to_concept VALUES('2224','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_421571007');
-INSERT INTO valueset_to_concept VALUES('2225','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_49558004');
-INSERT INTO valueset_to_concept VALUES('2226','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_62819009');
-INSERT INTO valueset_to_concept VALUES('2227','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_74181004');
-INSERT INTO valueset_to_concept VALUES('2228','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_84194006');
-INSERT INTO valueset_to_concept VALUES('2229','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_91483004');
-INSERT INTO valueset_to_concept VALUES('2230','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_31112008');
-INSERT INTO valueset_to_concept VALUES('2231','2.16.840.1.113762.1.4.1146.422_20230602','2.16.840.1.113762.1.4.1146.422_10759881000119100');
-INSERT INTO valueset_to_concept VALUES('2232','2.16.840.1.113762.1.4.1146.666_20240620','2.16.840.1.113762.1.4.1146.666_1172701002');
-INSERT INTO valueset_to_concept VALUES('2233','2.16.840.1.113762.1.4.1146.666_20240620','2.16.840.1.113762.1.4.1146.666_1231204003');
-INSERT INTO valueset_to_concept VALUES('2234','2.16.840.1.113762.1.4.1146.666_20240620','2.16.840.1.113762.1.4.1146.666_1259074001');
-INSERT INTO valueset_to_concept VALUES('2235','2.16.840.1.113762.1.4.1146.666_20240620','2.16.840.1.113762.1.4.1146.666_16064651000119108');
-INSERT INTO valueset_to_concept VALUES('2236','2.16.840.1.113762.1.4.1146.666_20240620','2.16.840.1.113762.1.4.1146.666_1767005');
-INSERT INTO valueset_to_concept VALUES('2237','2.16.840.1.113762.1.4.1146.666_20240620','2.16.840.1.113762.1.4.1146.666_40956001');
-INSERT INTO valueset_to_concept VALUES('2238','2.16.840.1.113762.1.4.1146.666_20240620','2.16.840.1.113762.1.4.1146.666_715770009');
-INSERT INTO valueset_to_concept VALUES('2239','2.16.840.1.113762.1.4.1146.666_20240620','2.16.840.1.113762.1.4.1146.666_716722005');
-INSERT INTO valueset_to_concept VALUES('2240','2.16.840.1.113762.1.4.1146.666_20240620','2.16.840.1.113762.1.4.1146.666_716723000');
-INSERT INTO valueset_to_concept VALUES('2241','2.16.840.1.113762.1.4.1146.666_20240620','2.16.840.1.113762.1.4.1146.666_766049000');
-INSERT INTO valueset_to_concept VALUES('2242','2.16.840.1.113762.1.4.1146.666_20240620','2.16.840.1.113762.1.4.1146.666_766722008');
-INSERT INTO valueset_to_concept VALUES('2243','2.16.840.1.113762.1.4.1146.666_20240620','2.16.840.1.113762.1.4.1146.666_783010003');
-INSERT INTO valueset_to_concept VALUES('2244','2.16.840.1.113762.1.4.1146.666_20240620','2.16.840.1.113762.1.4.1146.666_783244002');
-INSERT INTO valueset_to_concept VALUES('2245','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_111780007');
-INSERT INTO valueset_to_concept VALUES('2246','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_111782004');
-INSERT INTO valueset_to_concept VALUES('2247','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_1144839007');
-INSERT INTO valueset_to_concept VALUES('2248','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_1148830000');
-INSERT INTO valueset_to_concept VALUES('2249','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_1156308007');
-INSERT INTO valueset_to_concept VALUES('2250','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_1254980009');
-INSERT INTO valueset_to_concept VALUES('2251','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_13754002');
-INSERT INTO valueset_to_concept VALUES('2252','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_15670008');
-INSERT INTO valueset_to_concept VALUES('2253','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_1657008');
-INSERT INTO valueset_to_concept VALUES('2254','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_16959008');
-INSERT INTO valueset_to_concept VALUES('2255','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_17345001');
-INSERT INTO valueset_to_concept VALUES('2256','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_18051001');
-INSERT INTO valueset_to_concept VALUES('2257','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_20202008');
-INSERT INTO valueset_to_concept VALUES('2258','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_20215004');
-INSERT INTO valueset_to_concept VALUES('2259','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_20310007');
-INSERT INTO valueset_to_concept VALUES('2260','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_20745002');
-INSERT INTO valueset_to_concept VALUES('2261','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_21002008');
-INSERT INTO valueset_to_concept VALUES('2262','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_212847009');
-INSERT INTO valueset_to_concept VALUES('2263','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_21511000');
-INSERT INTO valueset_to_concept VALUES('2264','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_216691009');
-INSERT INTO valueset_to_concept VALUES('2265','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_216692002');
-INSERT INTO valueset_to_concept VALUES('2266','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_216694001');
-INSERT INTO valueset_to_concept VALUES('2267','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_216695000');
-INSERT INTO valueset_to_concept VALUES('2268','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_216696004');
-INSERT INTO valueset_to_concept VALUES('2269','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_216698003');
-INSERT INTO valueset_to_concept VALUES('2270','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_216700007');
-INSERT INTO valueset_to_concept VALUES('2271','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_216701006');
-INSERT INTO valueset_to_concept VALUES('2272','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_216702004');
-INSERT INTO valueset_to_concept VALUES('2273','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_216703009');
-INSERT INTO valueset_to_concept VALUES('2274','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_216704003');
-INSERT INTO valueset_to_concept VALUES('2275','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_216705002');
-INSERT INTO valueset_to_concept VALUES('2276','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_216706001');
-INSERT INTO valueset_to_concept VALUES('2277','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_216708000');
-INSERT INTO valueset_to_concept VALUES('2278','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_216709008');
-INSERT INTO valueset_to_concept VALUES('2279','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_216712006');
-INSERT INTO valueset_to_concept VALUES('2280','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_216713001');
-INSERT INTO valueset_to_concept VALUES('2281','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_216714007');
-INSERT INTO valueset_to_concept VALUES('2282','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_216718005');
-INSERT INTO valueset_to_concept VALUES('2283','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_216720008');
-INSERT INTO valueset_to_concept VALUES('2284','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_216724004');
-INSERT INTO valueset_to_concept VALUES('2285','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_216726002');
-INSERT INTO valueset_to_concept VALUES('2286','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_216728001');
-INSERT INTO valueset_to_concept VALUES('2287','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_216730004');
-INSERT INTO valueset_to_concept VALUES('2288','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_216732007');
-INSERT INTO valueset_to_concept VALUES('2289','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_216736005');
-INSERT INTO valueset_to_concept VALUES('2290','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_216737001');
-INSERT INTO valueset_to_concept VALUES('2291','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_216739003');
-INSERT INTO valueset_to_concept VALUES('2292','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_216742009');
-INSERT INTO valueset_to_concept VALUES('2293','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_22706002');
-INSERT INTO valueset_to_concept VALUES('2294','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_241786005');
-INSERT INTO valueset_to_concept VALUES('2295','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_241787001');
-INSERT INTO valueset_to_concept VALUES('2296','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_241788006');
-INSERT INTO valueset_to_concept VALUES('2297','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_241789003');
-INSERT INTO valueset_to_concept VALUES('2298','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_241790007');
-INSERT INTO valueset_to_concept VALUES('2299','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_241791006');
-INSERT INTO valueset_to_concept VALUES('2300','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_241792004');
-INSERT INTO valueset_to_concept VALUES('2301','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_241793009');
-INSERT INTO valueset_to_concept VALUES('2302','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_241796001');
-INSERT INTO valueset_to_concept VALUES('2303','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_241797005');
-INSERT INTO valueset_to_concept VALUES('2304','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_241798000');
-INSERT INTO valueset_to_concept VALUES('2305','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_241799008');
-INSERT INTO valueset_to_concept VALUES('2306','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_241800007');
-INSERT INTO valueset_to_concept VALUES('2307','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_241801006');
-INSERT INTO valueset_to_concept VALUES('2308','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_241802004');
-INSERT INTO valueset_to_concept VALUES('2309','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_241862001');
-INSERT INTO valueset_to_concept VALUES('2310','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_241863006');
-INSERT INTO valueset_to_concept VALUES('2311','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_242837004');
-INSERT INTO valueset_to_concept VALUES('2312','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_24880004');
-INSERT INTO valueset_to_concept VALUES('2313','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_25166002');
-INSERT INTO valueset_to_concept VALUES('2314','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_27616008');
-INSERT INTO valueset_to_concept VALUES('2315','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_27992006');
-INSERT INTO valueset_to_concept VALUES('2316','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_2805007');
-INSERT INTO valueset_to_concept VALUES('2317','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_29069000');
-INSERT INTO valueset_to_concept VALUES('2318','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_291701002');
-INSERT INTO valueset_to_concept VALUES('2319','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_291703004');
-INSERT INTO valueset_to_concept VALUES('2320','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_293083001');
-INSERT INTO valueset_to_concept VALUES('2321','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_293084007');
-INSERT INTO valueset_to_concept VALUES('2322','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_293085008');
-INSERT INTO valueset_to_concept VALUES('2323','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_293086009');
-INSERT INTO valueset_to_concept VALUES('2324','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_293087000');
-INSERT INTO valueset_to_concept VALUES('2325','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_293088005');
-INSERT INTO valueset_to_concept VALUES('2326','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_293089002');
-INSERT INTO valueset_to_concept VALUES('2327','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_293090006');
-INSERT INTO valueset_to_concept VALUES('2328','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_293344008');
-INSERT INTO valueset_to_concept VALUES('2329','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_293467006');
-INSERT INTO valueset_to_concept VALUES('2330','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_29826009');
-INSERT INTO valueset_to_concept VALUES('2331','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_31141004');
-INSERT INTO valueset_to_concept VALUES('2332','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_31148005');
-INSERT INTO valueset_to_concept VALUES('2333','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_31861007');
-INSERT INTO valueset_to_concept VALUES('2334','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_33996002');
-INSERT INTO valueset_to_concept VALUES('2335','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_34668002');
-INSERT INTO valueset_to_concept VALUES('2336','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_35008005');
-INSERT INTO valueset_to_concept VALUES('2337','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_3611003');
-INSERT INTO valueset_to_concept VALUES('2338','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_37131007');
-INSERT INTO valueset_to_concept VALUES('2339','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_37392009');
-INSERT INTO valueset_to_concept VALUES('2340','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_39890003');
-INSERT INTO valueset_to_concept VALUES('2341','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_399286009');
-INSERT INTO valueset_to_concept VALUES('2342','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_407147006');
-INSERT INTO valueset_to_concept VALUES('2343','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_40989001');
-INSERT INTO valueset_to_concept VALUES('2344','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_43140008');
-INSERT INTO valueset_to_concept VALUES('2345','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_43384002');
-INSERT INTO valueset_to_concept VALUES('2346','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_43881003');
-INSERT INTO valueset_to_concept VALUES('2347','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_44336002');
-INSERT INTO valueset_to_concept VALUES('2348','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_44631003');
-INSERT INTO valueset_to_concept VALUES('2349','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_47546008');
-INSERT INTO valueset_to_concept VALUES('2350','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_47580006');
-INSERT INTO valueset_to_concept VALUES('2351','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_49424005');
-INSERT INTO valueset_to_concept VALUES('2352','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_5174000');
-INSERT INTO valueset_to_concept VALUES('2353','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_53271004');
-INSERT INTO valueset_to_concept VALUES('2354','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_53456000');
-INSERT INTO valueset_to_concept VALUES('2355','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_54067004');
-INSERT INTO valueset_to_concept VALUES('2356','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_55847002');
-INSERT INTO valueset_to_concept VALUES('2357','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_56055004');
-INSERT INTO valueset_to_concept VALUES('2358','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_56277006');
-INSERT INTO valueset_to_concept VALUES('2359','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_56686009');
-INSERT INTO valueset_to_concept VALUES('2360','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_60179005');
-INSERT INTO valueset_to_concept VALUES('2361','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_60950004');
-INSERT INTO valueset_to_concept VALUES('2362','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_61544007');
-INSERT INTO valueset_to_concept VALUES('2363','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_61780005');
-INSERT INTO valueset_to_concept VALUES('2364','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_62942003');
-INSERT INTO valueset_to_concept VALUES('2365','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_63163008');
-INSERT INTO valueset_to_concept VALUES('2366','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_67553007');
-INSERT INTO valueset_to_concept VALUES('2367','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_69460006');
-INSERT INTO valueset_to_concept VALUES('2368','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_69956002');
-INSERT INTO valueset_to_concept VALUES('2369','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_70136009');
-INSERT INTO valueset_to_concept VALUES('2370','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_70336002');
-INSERT INTO valueset_to_concept VALUES('2371','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_70857003');
-INSERT INTO valueset_to_concept VALUES('2372','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_715063000');
-INSERT INTO valueset_to_concept VALUES('2373','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_715064006');
-INSERT INTO valueset_to_concept VALUES('2374','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_715143005');
-INSERT INTO valueset_to_concept VALUES('2375','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_71597002');
-INSERT INTO valueset_to_concept VALUES('2376','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_72376001');
-INSERT INTO valueset_to_concept VALUES('2377','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_7287001');
-INSERT INTO valueset_to_concept VALUES('2378','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_73724005');
-INSERT INTO valueset_to_concept VALUES('2379','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_74132001');
-INSERT INTO valueset_to_concept VALUES('2380','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_75017004');
-INSERT INTO valueset_to_concept VALUES('2381','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_75529001');
-INSERT INTO valueset_to_concept VALUES('2382','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_75730008');
-INSERT INTO valueset_to_concept VALUES('2383','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_76547000');
-INSERT INTO valueset_to_concept VALUES('2384','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_8260003');
-INSERT INTO valueset_to_concept VALUES('2385','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_83833006');
-INSERT INTO valueset_to_concept VALUES('2386','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_84325005');
-INSERT INTO valueset_to_concept VALUES('2387','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_84997000');
-INSERT INTO valueset_to_concept VALUES('2388','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_86232000');
-INSERT INTO valueset_to_concept VALUES('2389','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_87197007');
-INSERT INTO valueset_to_concept VALUES('2390','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_87841007');
-INSERT INTO valueset_to_concept VALUES('2391','2.16.840.1.113762.1.4.1146.304_20230122','2.16.840.1.113762.1.4.1146.304_88031005');
-INSERT INTO valueset_to_concept VALUES('2392','2.16.840.1.113762.1.4.1146.667_20181031','2.16.840.1.113762.1.4.1146.667_G61.0');
-INSERT INTO valueset_to_concept VALUES('2393','2.16.840.1.113762.1.4.1146.667_20181031','2.16.840.1.113762.1.4.1146.667_G65.0');
-INSERT INTO valueset_to_concept VALUES('2394','2.16.840.1.113762.1.4.1146.410_20180620','2.16.840.1.113762.1.4.1146.410_111798006');
-INSERT INTO valueset_to_concept VALUES('2395','2.16.840.1.113762.1.4.1146.410_20180620','2.16.840.1.113762.1.4.1146.410_111800004');
-INSERT INTO valueset_to_concept VALUES('2396','2.16.840.1.113762.1.4.1146.410_20180620','2.16.840.1.113762.1.4.1146.410_11389007');
-INSERT INTO valueset_to_concept VALUES('2397','2.16.840.1.113762.1.4.1146.410_20180620','2.16.840.1.113762.1.4.1146.410_195902009');
-INSERT INTO valueset_to_concept VALUES('2398','2.16.840.1.113762.1.4.1146.410_20180620','2.16.840.1.113762.1.4.1146.410_409498004');
-INSERT INTO valueset_to_concept VALUES('2399','2.16.840.1.113762.1.4.1146.410_20180620','2.16.840.1.113762.1.4.1146.410_448482003');
-INSERT INTO valueset_to_concept VALUES('2400','2.16.840.1.113762.1.4.1146.410_20180620','2.16.840.1.113762.1.4.1146.410_84980006');
-INSERT INTO valueset_to_concept VALUES('2401','2.16.840.1.113762.1.4.1146.410_20180620','2.16.840.1.113762.1.4.1146.410_720990007');
-INSERT INTO valueset_to_concept VALUES('2402','2.16.840.1.113762.1.4.1146.411_20180620','2.16.840.1.113762.1.4.1146.411_A22');
-INSERT INTO valueset_to_concept VALUES('2403','2.16.840.1.113762.1.4.1146.411_20180620','2.16.840.1.113762.1.4.1146.411_A22.0');
-INSERT INTO valueset_to_concept VALUES('2404','2.16.840.1.113762.1.4.1146.411_20180620','2.16.840.1.113762.1.4.1146.411_A22.1');
-INSERT INTO valueset_to_concept VALUES('2405','2.16.840.1.113762.1.4.1146.411_20180620','2.16.840.1.113762.1.4.1146.411_A22.2');
-INSERT INTO valueset_to_concept VALUES('2406','2.16.840.1.113762.1.4.1146.411_20180620','2.16.840.1.113762.1.4.1146.411_A22.7');
-INSERT INTO valueset_to_concept VALUES('2407','2.16.840.1.113762.1.4.1146.411_20180620','2.16.840.1.113762.1.4.1146.411_A22.8');
-INSERT INTO valueset_to_concept VALUES('2408','2.16.840.1.113762.1.4.1146.411_20180620','2.16.840.1.113762.1.4.1146.411_A22.9');
-INSERT INTO valueset_to_concept VALUES('2409','2.16.840.1.113762.1.4.1146.411_20180620','2.16.840.1.113762.1.4.1146.411_Z20.810');
-INSERT INTO valueset_to_concept VALUES('2410','2.16.840.1.113762.1.4.1146.657_20220115','2.16.840.1.113762.1.4.1146.657_A87');
-INSERT INTO valueset_to_concept VALUES('2411','2.16.840.1.113762.1.4.1146.657_20220115','2.16.840.1.113762.1.4.1146.657_A87.1');
-INSERT INTO valueset_to_concept VALUES('2412','2.16.840.1.113762.1.4.1146.657_20220115','2.16.840.1.113762.1.4.1146.657_A87.8');
-INSERT INTO valueset_to_concept VALUES('2413','2.16.840.1.113762.1.4.1146.657_20220115','2.16.840.1.113762.1.4.1146.657_A87.9');
-INSERT INTO valueset_to_concept VALUES('2414','2.16.840.1.113762.1.4.1146.657_20220115','2.16.840.1.113762.1.4.1146.657_B00.3');
-INSERT INTO valueset_to_concept VALUES('2415','2.16.840.1.113762.1.4.1146.657_20220115','2.16.840.1.113762.1.4.1146.657_B02.1');
-INSERT INTO valueset_to_concept VALUES('2416','2.16.840.1.113762.1.4.1146.657_20220115','2.16.840.1.113762.1.4.1146.657_B27.02');
-INSERT INTO valueset_to_concept VALUES('2417','2.16.840.1.113762.1.4.1146.657_20220115','2.16.840.1.113762.1.4.1146.657_B27.92');
-INSERT INTO valueset_to_concept VALUES('2418','2.16.840.1.113762.1.4.1146.657_20220115','2.16.840.1.113762.1.4.1146.657_G03.0');
-INSERT INTO valueset_to_concept VALUES('2419','2.16.840.1.113762.1.4.1146.657_20220115','2.16.840.1.113762.1.4.1146.657_B05.1');
-INSERT INTO valueset_to_concept VALUES('2420','2.16.840.1.113762.1.4.1146.657_20220115','2.16.840.1.113762.1.4.1146.657_B06.02');
-INSERT INTO valueset_to_concept VALUES('2421','2.16.840.1.113762.1.4.1146.657_20220115','2.16.840.1.113762.1.4.1146.657_B27.12');
-INSERT INTO valueset_to_concept VALUES('2422','2.16.840.1.113762.1.4.1146.657_20220115','2.16.840.1.113762.1.4.1146.657_A87.0');
-INSERT INTO valueset_to_concept VALUES('2423','2.16.840.1.113762.1.4.1146.657_20220115','2.16.840.1.113762.1.4.1146.657_B01.0');
-INSERT INTO valueset_to_concept VALUES('2424','2.16.840.1.113762.1.4.1146.657_20220115','2.16.840.1.113762.1.4.1146.657_B26.1');
-INSERT INTO valueset_to_concept VALUES('2425','2.16.840.1.113762.1.4.1146.657_20220115','2.16.840.1.113762.1.4.1146.657_G00.1');
-INSERT INTO valueset_to_concept VALUES('2426','2.16.840.1.113762.1.4.1146.2319_20240619','2.16.840.1.113762.1.4.1146.2319_194997002');
-INSERT INTO valueset_to_concept VALUES('2427','2.16.840.1.113762.1.4.1146.2319_20240619','2.16.840.1.113762.1.4.1146.2319_195000004');
-INSERT INTO valueset_to_concept VALUES('2428','2.16.840.1.113762.1.4.1146.2319_20240619','2.16.840.1.113762.1.4.1146.2319_236530006');
-INSERT INTO valueset_to_concept VALUES('2429','2.16.840.1.113762.1.4.1146.2319_20240619','2.16.840.1.113762.1.4.1146.2319_251006007');
-INSERT INTO valueset_to_concept VALUES('2430','2.16.840.1.113762.1.4.1146.2319_20240619','2.16.840.1.113762.1.4.1146.2319_251007003');
-INSERT INTO valueset_to_concept VALUES('2431','2.16.840.1.113762.1.4.1146.2319_20240619','2.16.840.1.113762.1.4.1146.2319_56786000');
-INSERT INTO valueset_to_concept VALUES('2432','2.16.840.1.113762.1.4.1146.2319_20240619','2.16.840.1.113762.1.4.1146.2319_67278007');
-INSERT INTO valueset_to_concept VALUES('2433','2.16.840.1.113762.1.4.1146.2319_20240619','2.16.840.1.113762.1.4.1146.2319_703178004');
-INSERT INTO valueset_to_concept VALUES('2434','2.16.840.1.113762.1.4.1146.2319_20240619','2.16.840.1.113762.1.4.1146.2319_838538002');
-INSERT INTO valueset_to_concept VALUES('2435','2.16.840.1.113762.1.4.1146.2319_20240619','2.16.840.1.113762.1.4.1146.2319_838539005');
-INSERT INTO valueset_to_concept VALUES('2436','2.16.840.1.113762.1.4.1146.2319_20240619','2.16.840.1.113762.1.4.1146.2319_838540007');
-INSERT INTO valueset_to_concept VALUES('2437','2.16.840.1.113762.1.4.1146.2319_20240619','2.16.840.1.113762.1.4.1146.2319_92830003');
-INSERT INTO valueset_to_concept VALUES('2438','2.16.840.1.113762.1.4.1146.2319_20240619','2.16.840.1.113762.1.4.1146.2319_472845002');
-INSERT INTO valueset_to_concept VALUES('2439','2.16.840.1.113762.1.4.1146.2317_20240619','2.16.840.1.113762.1.4.1146.2317_204342004');
-INSERT INTO valueset_to_concept VALUES('2440','2.16.840.1.113762.1.4.1146.2317_20240619','2.16.840.1.113762.1.4.1146.2317_253303001');
-INSERT INTO valueset_to_concept VALUES('2441','2.16.840.1.113762.1.4.1146.2317_20240619','2.16.840.1.113762.1.4.1146.2317_253590009');
-INSERT INTO valueset_to_concept VALUES('2442','2.16.840.1.113762.1.4.1146.2317_20240619','2.16.840.1.113762.1.4.1146.2317_253592001');
-INSERT INTO valueset_to_concept VALUES('2443','2.16.840.1.113762.1.4.1146.2317_20240619','2.16.840.1.113762.1.4.1146.2317_253593006');
-INSERT INTO valueset_to_concept VALUES('2444','2.16.840.1.113762.1.4.1146.2317_20240619','2.16.840.1.113762.1.4.1146.2317_253594000');
-INSERT INTO valueset_to_concept VALUES('2445','2.16.840.1.113762.1.4.1146.2317_20240619','2.16.840.1.113762.1.4.1146.2317_253624000');
-INSERT INTO valueset_to_concept VALUES('2446','2.16.840.1.113762.1.4.1146.2317_20240619','2.16.840.1.113762.1.4.1146.2317_253625004');
-INSERT INTO valueset_to_concept VALUES('2447','2.16.840.1.113762.1.4.1146.2317_20240619','2.16.840.1.113762.1.4.1146.2317_719955006');
-INSERT INTO valueset_to_concept VALUES('2448','2.16.840.1.113762.1.4.1146.1347_20210526','2.16.840.1.113762.1.4.1146.1347_A84.81');
-INSERT INTO valueset_to_concept VALUES('2449','2.16.840.1.113762.1.4.1146.1589_20220118','2.16.840.1.113762.1.4.1146.1589_216800002');
-INSERT INTO valueset_to_concept VALUES('2450','2.16.840.1.113762.1.4.1146.1589_20220118','2.16.840.1.113762.1.4.1146.1589_236456002');
-INSERT INTO valueset_to_concept VALUES('2451','2.16.840.1.113762.1.4.1146.1589_20220118','2.16.840.1.113762.1.4.1146.1589_236517005');
-INSERT INTO valueset_to_concept VALUES('2452','2.16.840.1.113762.1.4.1146.1589_20220118','2.16.840.1.113762.1.4.1146.1589_3398004');
-INSERT INTO valueset_to_concept VALUES('2453','2.16.840.1.113762.1.4.1146.1589_20220118','2.16.840.1.113762.1.4.1146.1589_37711000');
-INSERT INTO valueset_to_concept VALUES('2454','2.16.840.1.113762.1.4.1146.2318_20240619','2.16.840.1.113762.1.4.1146.2318_Q22.0');
-INSERT INTO valueset_to_concept VALUES('2455','2.16.840.1.113762.1.4.1146.86_20230125','2.16.840.1.113762.1.4.1146.86_111407006');
-INSERT INTO valueset_to_concept VALUES('2456','2.16.840.1.113762.1.4.1146.86_20230125','2.16.840.1.113762.1.4.1146.86_1144979004');
-INSERT INTO valueset_to_concept VALUES('2457','2.16.840.1.113762.1.4.1146.86_20230125','2.16.840.1.113762.1.4.1146.86_36568005');
-INSERT INTO valueset_to_concept VALUES('2458','2.16.840.1.113762.1.4.1146.86_20230125','2.16.840.1.113762.1.4.1146.86_373422007');
-INSERT INTO valueset_to_concept VALUES('2459','2.16.840.1.113762.1.4.1146.86_20230125','2.16.840.1.113762.1.4.1146.86_444976001');
-INSERT INTO valueset_to_concept VALUES('2460','2.16.840.1.113762.1.4.1146.86_20230125','2.16.840.1.113762.1.4.1146.86_78209002');
-INSERT INTO valueset_to_concept VALUES('2461','2.16.840.1.113762.1.4.1146.86_20230125','2.16.840.1.113762.1.4.1146.86_789660001');
-INSERT INTO valueset_to_concept VALUES('2462','2.16.840.1.113762.1.4.1146.86_20230125','2.16.840.1.113762.1.4.1146.86_373421000');
-INSERT INTO valueset_to_concept VALUES('2463','2.16.840.1.113762.1.4.1146.2315_20240620','2.16.840.1.113762.1.4.1146.2315_17394001');
-INSERT INTO valueset_to_concept VALUES('2464','2.16.840.1.113762.1.4.1146.2315_20240620','2.16.840.1.113762.1.4.1146.2315_204357006');
-INSERT INTO valueset_to_concept VALUES('2465','2.16.840.1.113762.1.4.1146.2315_20240620','2.16.840.1.113762.1.4.1146.2315_447915002');
-INSERT INTO valueset_to_concept VALUES('2466','2.16.840.1.113762.1.4.1146.2315_20240620','2.16.840.1.113762.1.4.1146.2315_449158005');
-INSERT INTO valueset_to_concept VALUES('2467','2.16.840.1.113762.1.4.1146.2315_20240620','2.16.840.1.113762.1.4.1146.2315_448074008');
-INSERT INTO valueset_to_concept VALUES('2468','2.16.840.1.113762.1.4.1146.87_20240123','2.16.840.1.113762.1.4.1146.87_1144975005');
-INSERT INTO valueset_to_concept VALUES('2469','2.16.840.1.113762.1.4.1146.87_20240123','2.16.840.1.113762.1.4.1146.87_267535004');
-INSERT INTO valueset_to_concept VALUES('2470','2.16.840.1.113762.1.4.1146.87_20240123','2.16.840.1.113762.1.4.1146.87_302873008');
-INSERT INTO valueset_to_concept VALUES('2471','2.16.840.1.113762.1.4.1146.87_20240123','2.16.840.1.113762.1.4.1146.87_33183004');
-INSERT INTO valueset_to_concept VALUES('2472','2.16.840.1.113762.1.4.1146.87_20240123','2.16.840.1.113762.1.4.1146.87_402653004');
-INSERT INTO valueset_to_concept VALUES('2473','2.16.840.1.113762.1.4.1146.87_20240123','2.16.840.1.113762.1.4.1146.87_402654005');
-INSERT INTO valueset_to_concept VALUES('2474','2.16.840.1.113762.1.4.1146.87_20240123','2.16.840.1.113762.1.4.1146.87_417626001');
-INSERT INTO valueset_to_concept VALUES('2475','2.16.840.1.113762.1.4.1146.87_20240123','2.16.840.1.113762.1.4.1146.87_439007008');
-INSERT INTO valueset_to_concept VALUES('2476','2.16.840.1.113762.1.4.1146.87_20240123','2.16.840.1.113762.1.4.1146.87_78129009');
-INSERT INTO valueset_to_concept VALUES('2477','2.16.840.1.113762.1.4.1146.2316_20240620','2.16.840.1.113762.1.4.1146.2316_Q22.5');
-INSERT INTO valueset_to_concept VALUES('2478','2.16.840.1.113762.1.4.1146.88_20240620','2.16.840.1.113762.1.4.1146.88_D59.30');
-INSERT INTO valueset_to_concept VALUES('2479','2.16.840.1.113762.1.4.1146.88_20240620','2.16.840.1.113762.1.4.1146.88_D59.31');
-INSERT INTO valueset_to_concept VALUES('2480','2.16.840.1.113762.1.4.1146.80_20181031','2.16.840.1.113762.1.4.1146.80_A04.5');
-INSERT INTO valueset_to_concept VALUES('2481','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_10847261000119103');
-INSERT INTO valueset_to_concept VALUES('2482','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_10858961000119108');
-INSERT INTO valueset_to_concept VALUES('2483','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_10859161000119101');
-INSERT INTO valueset_to_concept VALUES('2484','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_10861771000119101');
-INSERT INTO valueset_to_concept VALUES('2485','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_10867471000119104');
-INSERT INTO valueset_to_concept VALUES('2486','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_10871751000119103');
-INSERT INTO valueset_to_concept VALUES('2487','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_10872191000119100');
-INSERT INTO valueset_to_concept VALUES('2488','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_10882791000119106');
-INSERT INTO valueset_to_concept VALUES('2489','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_10882831000119100');
-INSERT INTO valueset_to_concept VALUES('2490','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_10882991000119108');
-INSERT INTO valueset_to_concept VALUES('2491','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_10947291000119103');
-INSERT INTO valueset_to_concept VALUES('2492','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_10947331000119109');
-INSERT INTO valueset_to_concept VALUES('2493','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_10947371000119107');
-INSERT INTO valueset_to_concept VALUES('2494','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_10947411000119108');
-INSERT INTO valueset_to_concept VALUES('2495','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_10947451000119109');
-INSERT INTO valueset_to_concept VALUES('2496','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_10947491000119104');
-INSERT INTO valueset_to_concept VALUES('2497','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_10947531000119104');
-INSERT INTO valueset_to_concept VALUES('2498','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_10947571000119101');
-INSERT INTO valueset_to_concept VALUES('2499','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_10947611000119105');
-INSERT INTO valueset_to_concept VALUES('2500','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_10947651000119106');
-INSERT INTO valueset_to_concept VALUES('2501','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_10948191000119107');
-INSERT INTO valueset_to_concept VALUES('2502','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_10948231000119103');
-INSERT INTO valueset_to_concept VALUES('2503','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_10948471000119101');
-INSERT INTO valueset_to_concept VALUES('2504','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_10948511000119105');
-INSERT INTO valueset_to_concept VALUES('2505','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_10948851000119108');
-INSERT INTO valueset_to_concept VALUES('2506','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_10948891000119103');
-INSERT INTO valueset_to_concept VALUES('2507','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_10949171000119104');
-INSERT INTO valueset_to_concept VALUES('2508','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_10949211000119102');
-INSERT INTO valueset_to_concept VALUES('2509','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_10949531000119105');
-INSERT INTO valueset_to_concept VALUES('2510','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_10949571000119108');
-INSERT INTO valueset_to_concept VALUES('2511','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_10949671000119107');
-INSERT INTO valueset_to_concept VALUES('2512','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_10949711000119106');
-INSERT INTO valueset_to_concept VALUES('2513','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_10952691000119101');
-INSERT INTO valueset_to_concept VALUES('2514','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_10967121000119100');
-INSERT INTO valueset_to_concept VALUES('2515','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_10967161000119105');
-INSERT INTO valueset_to_concept VALUES('2516','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_10967601000119102');
-INSERT INTO valueset_to_concept VALUES('2517','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_10967641000119100');
-INSERT INTO valueset_to_concept VALUES('2518','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_10969411000119108');
-INSERT INTO valueset_to_concept VALUES('2519','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_10969451000119109');
-INSERT INTO valueset_to_concept VALUES('2520','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_10969771000119106');
-INSERT INTO valueset_to_concept VALUES('2521','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_10969811000119106');
-INSERT INTO valueset_to_concept VALUES('2522','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_10970131000119105');
-INSERT INTO valueset_to_concept VALUES('2523','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_10970371000119105');
-INSERT INTO valueset_to_concept VALUES('2524','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_10970411000119106');
-INSERT INTO valueset_to_concept VALUES('2525','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_10970731000119106');
-INSERT INTO valueset_to_concept VALUES('2526','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_10970771000119109');
-INSERT INTO valueset_to_concept VALUES('2527','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_262556008');
-INSERT INTO valueset_to_concept VALUES('2528','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_262571007');
-INSERT INTO valueset_to_concept VALUES('2529','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_283734005');
-INSERT INTO valueset_to_concept VALUES('2530','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_283745008');
-INSERT INTO valueset_to_concept VALUES('2531','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_283746009');
-INSERT INTO valueset_to_concept VALUES('2532','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_283747000');
-INSERT INTO valueset_to_concept VALUES('2533','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_283748005');
-INSERT INTO valueset_to_concept VALUES('2534','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_283749002');
-INSERT INTO valueset_to_concept VALUES('2535','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_283750002');
-INSERT INTO valueset_to_concept VALUES('2536','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_283751003');
-INSERT INTO valueset_to_concept VALUES('2537','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_283752005');
-INSERT INTO valueset_to_concept VALUES('2538','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_283753000');
-INSERT INTO valueset_to_concept VALUES('2539','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_283754006');
-INSERT INTO valueset_to_concept VALUES('2540','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_283755007');
-INSERT INTO valueset_to_concept VALUES('2541','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_283756008');
-INSERT INTO valueset_to_concept VALUES('2542','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_283757004');
-INSERT INTO valueset_to_concept VALUES('2543','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_283758009');
-INSERT INTO valueset_to_concept VALUES('2544','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_283759001');
-INSERT INTO valueset_to_concept VALUES('2545','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_283760006');
-INSERT INTO valueset_to_concept VALUES('2546','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_283761005');
-INSERT INTO valueset_to_concept VALUES('2547','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_283762003');
-INSERT INTO valueset_to_concept VALUES('2548','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_283763008');
-INSERT INTO valueset_to_concept VALUES('2549','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_283764002');
-INSERT INTO valueset_to_concept VALUES('2550','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_283765001');
-INSERT INTO valueset_to_concept VALUES('2551','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_283766000');
-INSERT INTO valueset_to_concept VALUES('2552','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_283767009');
-INSERT INTO valueset_to_concept VALUES('2553','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_283768004');
-INSERT INTO valueset_to_concept VALUES('2554','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_283769007');
-INSERT INTO valueset_to_concept VALUES('2555','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_283770008');
-INSERT INTO valueset_to_concept VALUES('2556','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_283771007');
-INSERT INTO valueset_to_concept VALUES('2557','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_283772000');
-INSERT INTO valueset_to_concept VALUES('2558','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_283773005');
-INSERT INTO valueset_to_concept VALUES('2559','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_283774004');
-INSERT INTO valueset_to_concept VALUES('2560','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_283775003');
-INSERT INTO valueset_to_concept VALUES('2561','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_283776002');
-INSERT INTO valueset_to_concept VALUES('2562','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_283777006');
-INSERT INTO valueset_to_concept VALUES('2563','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_283778001');
-INSERT INTO valueset_to_concept VALUES('2564','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_283779009');
-INSERT INTO valueset_to_concept VALUES('2565','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_283780007');
-INSERT INTO valueset_to_concept VALUES('2566','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_283781006');
-INSERT INTO valueset_to_concept VALUES('2567','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_716104002');
-INSERT INTO valueset_to_concept VALUES('2568','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_718510004');
-INSERT INTO valueset_to_concept VALUES('2569','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_10872731000119103');
-INSERT INTO valueset_to_concept VALUES('2570','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_10873411000119105');
-INSERT INTO valueset_to_concept VALUES('2571','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_10873451000119106');
-INSERT INTO valueset_to_concept VALUES('2572','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_10875551000119108');
-INSERT INTO valueset_to_concept VALUES('2573','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_10875631000119103');
-INSERT INTO valueset_to_concept VALUES('2574','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_10898251000119106');
-INSERT INTO valueset_to_concept VALUES('2575','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_10898291000119101');
-INSERT INTO valueset_to_concept VALUES('2576','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_10898371000119105');
-INSERT INTO valueset_to_concept VALUES('2577','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_10905711000119100');
-INSERT INTO valueset_to_concept VALUES('2578','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_10905751000119104');
-INSERT INTO valueset_to_concept VALUES('2579','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_10905791000119109');
-INSERT INTO valueset_to_concept VALUES('2580','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_10906311000119107');
-INSERT INTO valueset_to_concept VALUES('2581','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_283735006');
-INSERT INTO valueset_to_concept VALUES('2582','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_283736007');
-INSERT INTO valueset_to_concept VALUES('2583','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_283737003');
-INSERT INTO valueset_to_concept VALUES('2584','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_283738008');
-INSERT INTO valueset_to_concept VALUES('2585','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_283739000');
-INSERT INTO valueset_to_concept VALUES('2586','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_283740003');
-INSERT INTO valueset_to_concept VALUES('2587','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_283741004');
-INSERT INTO valueset_to_concept VALUES('2588','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_283742006');
-INSERT INTO valueset_to_concept VALUES('2589','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_283743001');
-INSERT INTO valueset_to_concept VALUES('2590','2.16.840.1.113762.1.4.1146.1580_20230122','2.16.840.1.113762.1.4.1146.1580_283744007');
-INSERT INTO valueset_to_concept VALUES('2591','2.16.840.1.113762.1.4.1146.1586_20230122','2.16.840.1.113762.1.4.1146.1586_W53.01XA');
-INSERT INTO valueset_to_concept VALUES('2592','2.16.840.1.113762.1.4.1146.1586_20230122','2.16.840.1.113762.1.4.1146.1586_W53.11XA');
-INSERT INTO valueset_to_concept VALUES('2593','2.16.840.1.113762.1.4.1146.1586_20230122','2.16.840.1.113762.1.4.1146.1586_W53.21XA');
-INSERT INTO valueset_to_concept VALUES('2594','2.16.840.1.113762.1.4.1146.1586_20230122','2.16.840.1.113762.1.4.1146.1586_W53.81XA');
-INSERT INTO valueset_to_concept VALUES('2595','2.16.840.1.113762.1.4.1146.1586_20230122','2.16.840.1.113762.1.4.1146.1586_W55.01XA');
-INSERT INTO valueset_to_concept VALUES('2596','2.16.840.1.113762.1.4.1146.1586_20230122','2.16.840.1.113762.1.4.1146.1586_W55.11XA');
-INSERT INTO valueset_to_concept VALUES('2597','2.16.840.1.113762.1.4.1146.1586_20230122','2.16.840.1.113762.1.4.1146.1586_W55.21XA');
-INSERT INTO valueset_to_concept VALUES('2598','2.16.840.1.113762.1.4.1146.1586_20230122','2.16.840.1.113762.1.4.1146.1586_W55.31XA');
-INSERT INTO valueset_to_concept VALUES('2599','2.16.840.1.113762.1.4.1146.1586_20230122','2.16.840.1.113762.1.4.1146.1586_W55.41XA');
-INSERT INTO valueset_to_concept VALUES('2600','2.16.840.1.113762.1.4.1146.1586_20230122','2.16.840.1.113762.1.4.1146.1586_W55.51XA');
-INSERT INTO valueset_to_concept VALUES('2601','2.16.840.1.113762.1.4.1146.1586_20230122','2.16.840.1.113762.1.4.1146.1586_W55.81XA');
-INSERT INTO valueset_to_concept VALUES('2602','2.16.840.1.113762.1.4.1146.1586_20230122','2.16.840.1.113762.1.4.1146.1586_W56.01XA');
-INSERT INTO valueset_to_concept VALUES('2603','2.16.840.1.113762.1.4.1146.1586_20230122','2.16.840.1.113762.1.4.1146.1586_W56.11XA');
-INSERT INTO valueset_to_concept VALUES('2604','2.16.840.1.113762.1.4.1146.1586_20230122','2.16.840.1.113762.1.4.1146.1586_W56.21XA');
-INSERT INTO valueset_to_concept VALUES('2605','2.16.840.1.113762.1.4.1146.1586_20230122','2.16.840.1.113762.1.4.1146.1586_W56.31XA');
-INSERT INTO valueset_to_concept VALUES('2606','2.16.840.1.113762.1.4.1146.2313_20240620','2.16.840.1.113762.1.4.1146.2313_13867009');
-INSERT INTO valueset_to_concept VALUES('2607','2.16.840.1.113762.1.4.1146.2313_20240620','2.16.840.1.113762.1.4.1146.2313_253672004');
-INSERT INTO valueset_to_concept VALUES('2608','2.16.840.1.113762.1.4.1146.2313_20240620','2.16.840.1.113762.1.4.1146.2313_253673009');
-INSERT INTO valueset_to_concept VALUES('2609','2.16.840.1.113762.1.4.1146.2313_20240620','2.16.840.1.113762.1.4.1146.2313_253674003');
-INSERT INTO valueset_to_concept VALUES('2610','2.16.840.1.113762.1.4.1146.2313_20240620','2.16.840.1.113762.1.4.1146.2313_253675002');
-INSERT INTO valueset_to_concept VALUES('2611','2.16.840.1.113762.1.4.1146.2313_20240620','2.16.840.1.113762.1.4.1146.2313_253676001');
-INSERT INTO valueset_to_concept VALUES('2612','2.16.840.1.113762.1.4.1146.2313_20240620','2.16.840.1.113762.1.4.1146.2313_253677005');
-INSERT INTO valueset_to_concept VALUES('2613','2.16.840.1.113762.1.4.1146.2313_20240620','2.16.840.1.113762.1.4.1146.2313_253678000');
-INSERT INTO valueset_to_concept VALUES('2614','2.16.840.1.113762.1.4.1146.2313_20240620','2.16.840.1.113762.1.4.1146.2313_253679008');
-INSERT INTO valueset_to_concept VALUES('2615','2.16.840.1.113762.1.4.1146.2313_20240620','2.16.840.1.113762.1.4.1146.2313_41371000119100');
-INSERT INTO valueset_to_concept VALUES('2616','2.16.840.1.113762.1.4.1146.2313_20240620','2.16.840.1.113762.1.4.1146.2313_450304006');
-INSERT INTO valueset_to_concept VALUES('2617','2.16.840.1.113762.1.4.1146.2313_20240620','2.16.840.1.113762.1.4.1146.2313_450305007');
-INSERT INTO valueset_to_concept VALUES('2618','2.16.840.1.113762.1.4.1146.2313_20240620','2.16.840.1.113762.1.4.1146.2313_450312003');
-INSERT INTO valueset_to_concept VALUES('2619','2.16.840.1.113762.1.4.1146.2313_20240620','2.16.840.1.113762.1.4.1146.2313_450313008');
-INSERT INTO valueset_to_concept VALUES('2620','2.16.840.1.113762.1.4.1146.2313_20240620','2.16.840.1.113762.1.4.1146.2313_72242008');
-INSERT INTO valueset_to_concept VALUES('2621','2.16.840.1.113762.1.4.1146.2313_20240620','2.16.840.1.113762.1.4.1146.2313_723867002');
-INSERT INTO valueset_to_concept VALUES('2622','2.16.840.1.113762.1.4.1146.2313_20240620','2.16.840.1.113762.1.4.1146.2313_7305005');
-INSERT INTO valueset_to_concept VALUES('2623','2.16.840.1.113762.1.4.1146.2313_20240620','2.16.840.1.113762.1.4.1146.2313_871650000');
-INSERT INTO valueset_to_concept VALUES('2624','2.16.840.1.113762.1.4.1146.1585_20230122','2.16.840.1.113762.1.4.1146.1585_W54.0XXA');
-INSERT INTO valueset_to_concept VALUES('2625','2.16.840.1.113762.1.4.1146.2314_20240620','2.16.840.1.113762.1.4.1146.2314_Q25.1');
-INSERT INTO valueset_to_concept VALUES('2626','2.16.840.1.113762.1.4.1146.1588_20230122','2.16.840.1.113762.1.4.1146.1588_T56.3X1A');
-INSERT INTO valueset_to_concept VALUES('2627','2.16.840.1.113762.1.4.1146.1588_20230122','2.16.840.1.113762.1.4.1146.1588_T56.3X2A');
-INSERT INTO valueset_to_concept VALUES('2628','2.16.840.1.113762.1.4.1146.1588_20230122','2.16.840.1.113762.1.4.1146.1588_T56.3X3A');
-INSERT INTO valueset_to_concept VALUES('2629','2.16.840.1.113762.1.4.1146.1588_20230122','2.16.840.1.113762.1.4.1146.1588_T56.3X4A');
-INSERT INTO valueset_to_concept VALUES('2630','2.16.840.1.113762.1.4.1146.2311_20240620','2.16.840.1.113762.1.4.1146.2311_218728005');
-INSERT INTO valueset_to_concept VALUES('2631','2.16.840.1.113762.1.4.1146.2311_20240620','2.16.840.1.113762.1.4.1146.2311_253681005');
-INSERT INTO valueset_to_concept VALUES('2632','2.16.840.1.113762.1.4.1146.2311_20240620','2.16.840.1.113762.1.4.1146.2311_253682003');
-INSERT INTO valueset_to_concept VALUES('2633','2.16.840.1.113762.1.4.1146.2311_20240620','2.16.840.1.113762.1.4.1146.2311_253683008');
-INSERT INTO valueset_to_concept VALUES('2634','2.16.840.1.113762.1.4.1146.2311_20240620','2.16.840.1.113762.1.4.1146.2311_472101004');
-INSERT INTO valueset_to_concept VALUES('2635','2.16.840.1.113762.1.4.1146.2311_20240620','2.16.840.1.113762.1.4.1146.2311_472102006');
-INSERT INTO valueset_to_concept VALUES('2636','2.16.840.1.113762.1.4.1146.2311_20240620','2.16.840.1.113762.1.4.1146.2311_472103001');
-INSERT INTO valueset_to_concept VALUES('2637','2.16.840.1.113762.1.4.1146.2311_20240620','2.16.840.1.113762.1.4.1146.2311_762253006');
-INSERT INTO valueset_to_concept VALUES('2638','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S00.06XA');
-INSERT INTO valueset_to_concept VALUES('2639','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S00.261A');
-INSERT INTO valueset_to_concept VALUES('2640','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S00.262A');
-INSERT INTO valueset_to_concept VALUES('2641','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S00.269A');
-INSERT INTO valueset_to_concept VALUES('2642','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S00.36XA');
-INSERT INTO valueset_to_concept VALUES('2643','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S00.461A');
-INSERT INTO valueset_to_concept VALUES('2644','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S00.462A');
-INSERT INTO valueset_to_concept VALUES('2645','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S00.469A');
-INSERT INTO valueset_to_concept VALUES('2646','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S00.561A');
-INSERT INTO valueset_to_concept VALUES('2647','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S00.562A');
-INSERT INTO valueset_to_concept VALUES('2648','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S00.86XA');
-INSERT INTO valueset_to_concept VALUES('2649','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S00.96XA');
-INSERT INTO valueset_to_concept VALUES('2650','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S10.16XA');
-INSERT INTO valueset_to_concept VALUES('2651','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S10.86XA');
-INSERT INTO valueset_to_concept VALUES('2652','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S10.96XA');
-INSERT INTO valueset_to_concept VALUES('2653','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S20.161A');
-INSERT INTO valueset_to_concept VALUES('2654','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S20.162A');
-INSERT INTO valueset_to_concept VALUES('2655','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S20.169A');
-INSERT INTO valueset_to_concept VALUES('2656','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S20.361A');
-INSERT INTO valueset_to_concept VALUES('2657','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S20.362A');
-INSERT INTO valueset_to_concept VALUES('2658','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S20.363A');
-INSERT INTO valueset_to_concept VALUES('2659','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S20.364A');
-INSERT INTO valueset_to_concept VALUES('2660','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S20.369A');
-INSERT INTO valueset_to_concept VALUES('2661','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S20.461A');
-INSERT INTO valueset_to_concept VALUES('2662','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S20.462A');
-INSERT INTO valueset_to_concept VALUES('2663','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S20.469A');
-INSERT INTO valueset_to_concept VALUES('2664','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S20.96XA');
-INSERT INTO valueset_to_concept VALUES('2665','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S30.860A');
-INSERT INTO valueset_to_concept VALUES('2666','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S30.861A');
-INSERT INTO valueset_to_concept VALUES('2667','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S30.862A');
-INSERT INTO valueset_to_concept VALUES('2668','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S30.863A');
-INSERT INTO valueset_to_concept VALUES('2669','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S30.864A');
-INSERT INTO valueset_to_concept VALUES('2670','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S30.865A');
-INSERT INTO valueset_to_concept VALUES('2671','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S30.866A');
-INSERT INTO valueset_to_concept VALUES('2672','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S30.867A');
-INSERT INTO valueset_to_concept VALUES('2673','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S40.261A');
-INSERT INTO valueset_to_concept VALUES('2674','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S40.262A');
-INSERT INTO valueset_to_concept VALUES('2675','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S40.269A');
-INSERT INTO valueset_to_concept VALUES('2676','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S40.861A');
-INSERT INTO valueset_to_concept VALUES('2677','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S40.862A');
-INSERT INTO valueset_to_concept VALUES('2678','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S40.869A');
-INSERT INTO valueset_to_concept VALUES('2679','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S50.361A');
-INSERT INTO valueset_to_concept VALUES('2680','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S50.362A');
-INSERT INTO valueset_to_concept VALUES('2681','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S50.369A');
-INSERT INTO valueset_to_concept VALUES('2682','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S50.861A');
-INSERT INTO valueset_to_concept VALUES('2683','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S50.862A');
-INSERT INTO valueset_to_concept VALUES('2684','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S50.869A');
-INSERT INTO valueset_to_concept VALUES('2685','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S60.361A');
-INSERT INTO valueset_to_concept VALUES('2686','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S60.362A');
-INSERT INTO valueset_to_concept VALUES('2687','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S60.369A');
-INSERT INTO valueset_to_concept VALUES('2688','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S60.460A');
-INSERT INTO valueset_to_concept VALUES('2689','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S60.461A');
-INSERT INTO valueset_to_concept VALUES('2690','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S60.462A');
-INSERT INTO valueset_to_concept VALUES('2691','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S60.463A');
-INSERT INTO valueset_to_concept VALUES('2692','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S60.464A');
-INSERT INTO valueset_to_concept VALUES('2693','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S60.465A');
-INSERT INTO valueset_to_concept VALUES('2694','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S60.466A');
-INSERT INTO valueset_to_concept VALUES('2695','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S60.467A');
-INSERT INTO valueset_to_concept VALUES('2696','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S60.468A');
-INSERT INTO valueset_to_concept VALUES('2697','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S60.469A');
-INSERT INTO valueset_to_concept VALUES('2698','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S60.561A');
-INSERT INTO valueset_to_concept VALUES('2699','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S60.562A');
-INSERT INTO valueset_to_concept VALUES('2700','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S60.569A');
-INSERT INTO valueset_to_concept VALUES('2701','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S60.861A');
-INSERT INTO valueset_to_concept VALUES('2702','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S60.862A');
-INSERT INTO valueset_to_concept VALUES('2703','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S60.869A');
-INSERT INTO valueset_to_concept VALUES('2704','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S70.261A');
-INSERT INTO valueset_to_concept VALUES('2705','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S70.262A');
-INSERT INTO valueset_to_concept VALUES('2706','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S70.269A');
-INSERT INTO valueset_to_concept VALUES('2707','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S70.361A');
-INSERT INTO valueset_to_concept VALUES('2708','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S70.362A');
-INSERT INTO valueset_to_concept VALUES('2709','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S70.369A');
-INSERT INTO valueset_to_concept VALUES('2710','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S80.261A');
-INSERT INTO valueset_to_concept VALUES('2711','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S80.262A');
-INSERT INTO valueset_to_concept VALUES('2712','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S80.269A');
-INSERT INTO valueset_to_concept VALUES('2713','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S80.861A');
-INSERT INTO valueset_to_concept VALUES('2714','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S80.862A');
-INSERT INTO valueset_to_concept VALUES('2715','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S80.869A');
-INSERT INTO valueset_to_concept VALUES('2716','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S90.461A');
-INSERT INTO valueset_to_concept VALUES('2717','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S90.462A');
-INSERT INTO valueset_to_concept VALUES('2718','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S90.463A');
-INSERT INTO valueset_to_concept VALUES('2719','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S90.464A');
-INSERT INTO valueset_to_concept VALUES('2720','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S90.465A');
-INSERT INTO valueset_to_concept VALUES('2721','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S90.466A');
-INSERT INTO valueset_to_concept VALUES('2722','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S90.561A');
-INSERT INTO valueset_to_concept VALUES('2723','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S90.562A');
-INSERT INTO valueset_to_concept VALUES('2724','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S90.569A');
-INSERT INTO valueset_to_concept VALUES('2725','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S90.861A');
-INSERT INTO valueset_to_concept VALUES('2726','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S90.862A');
-INSERT INTO valueset_to_concept VALUES('2727','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_S90.869A');
-INSERT INTO valueset_to_concept VALUES('2728','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_W56.41XA');
-INSERT INTO valueset_to_concept VALUES('2729','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_W56.51XA');
-INSERT INTO valueset_to_concept VALUES('2730','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_W56.81XA');
-INSERT INTO valueset_to_concept VALUES('2731','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_W57.XXXA');
-INSERT INTO valueset_to_concept VALUES('2732','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_W58.01XA');
-INSERT INTO valueset_to_concept VALUES('2733','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_W58.11XA');
-INSERT INTO valueset_to_concept VALUES('2734','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_W59.01XA');
-INSERT INTO valueset_to_concept VALUES('2735','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_W59.11XA');
-INSERT INTO valueset_to_concept VALUES('2736','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_W59.21XA');
-INSERT INTO valueset_to_concept VALUES('2737','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_W59.81XA');
-INSERT INTO valueset_to_concept VALUES('2738','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_W61.01XA');
-INSERT INTO valueset_to_concept VALUES('2739','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_W61.11XA');
-INSERT INTO valueset_to_concept VALUES('2740','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_W61.21XA');
-INSERT INTO valueset_to_concept VALUES('2741','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_W61.51XA');
-INSERT INTO valueset_to_concept VALUES('2742','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_W61.61XA');
-INSERT INTO valueset_to_concept VALUES('2743','2.16.840.1.113762.1.4.1146.1587_20230122','2.16.840.1.113762.1.4.1146.1587_W61.91XA');
-INSERT INTO valueset_to_concept VALUES('2744','2.16.840.1.113762.1.4.1146.2312_20240620','2.16.840.1.113762.1.4.1146.2312_Q25.21');
-INSERT INTO valueset_to_concept VALUES('2745','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_10461000');
-INSERT INTO valueset_to_concept VALUES('2746','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_10662001');
-INSERT INTO valueset_to_concept VALUES('2747','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_11773571000119109');
-INSERT INTO valueset_to_concept VALUES('2748','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_11773611000119100');
-INSERT INTO valueset_to_concept VALUES('2749','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_11773651000119104');
-INSERT INTO valueset_to_concept VALUES('2750','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_11773691000119109');
-INSERT INTO valueset_to_concept VALUES('2751','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_11779561000119100');
-INSERT INTO valueset_to_concept VALUES('2752','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_11779601000119100');
-INSERT INTO valueset_to_concept VALUES('2753','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_11779841000119102');
-INSERT INTO valueset_to_concept VALUES('2754','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_11779881000119107');
-INSERT INTO valueset_to_concept VALUES('2755','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_11783401000119109');
-INSERT INTO valueset_to_concept VALUES('2756','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_11783441000119106');
-INSERT INTO valueset_to_concept VALUES('2757','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_11783881000119104');
-INSERT INTO valueset_to_concept VALUES('2758','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_11783921000119106');
-INSERT INTO valueset_to_concept VALUES('2759','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_11783961000119101');
-INSERT INTO valueset_to_concept VALUES('2760','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_11784001000119100');
-INSERT INTO valueset_to_concept VALUES('2761','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_11784041000119103');
-INSERT INTO valueset_to_concept VALUES('2762','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_11784081000119108');
-INSERT INTO valueset_to_concept VALUES('2763','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_11785921000119107');
-INSERT INTO valueset_to_concept VALUES('2764','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_11785961000119102');
-INSERT INTO valueset_to_concept VALUES('2765','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_11786001000119105');
-INSERT INTO valueset_to_concept VALUES('2766','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_11786041000119107');
-INSERT INTO valueset_to_concept VALUES('2767','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_11789161000119101');
-INSERT INTO valueset_to_concept VALUES('2768','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_11789321000119108');
-INSERT INTO valueset_to_concept VALUES('2769','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_11789561000119109');
-INSERT INTO valueset_to_concept VALUES('2770','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_11789681000119101');
-INSERT INTO valueset_to_concept VALUES('2771','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_11793701000119104');
-INSERT INTO valueset_to_concept VALUES('2772','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_11793741000119102');
-INSERT INTO valueset_to_concept VALUES('2773','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_11808981000119103');
-INSERT INTO valueset_to_concept VALUES('2774','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_11809021000119109');
-INSERT INTO valueset_to_concept VALUES('2775','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_11809061000119104');
-INSERT INTO valueset_to_concept VALUES('2776','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_11809101000119101');
-INSERT INTO valueset_to_concept VALUES('2777','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_11809221000119101');
-INSERT INTO valueset_to_concept VALUES('2778','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_11809341000119101');
-INSERT INTO valueset_to_concept VALUES('2779','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_11809661000119109');
-INSERT INTO valueset_to_concept VALUES('2780','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_11809701000119102');
-INSERT INTO valueset_to_concept VALUES('2781','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_11809741000119100');
-INSERT INTO valueset_to_concept VALUES('2782','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_11809781000119105');
-INSERT INTO valueset_to_concept VALUES('2783','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_11809821000119100');
-INSERT INTO valueset_to_concept VALUES('2784','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_11809861000119105');
-INSERT INTO valueset_to_concept VALUES('2785','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_11822681000119102');
-INSERT INTO valueset_to_concept VALUES('2786','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_11822721000119108');
-INSERT INTO valueset_to_concept VALUES('2787','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_11823321000119101');
-INSERT INTO valueset_to_concept VALUES('2788','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_11823361000119106');
-INSERT INTO valueset_to_concept VALUES('2789','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_11823721000119102');
-INSERT INTO valueset_to_concept VALUES('2790','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_11823761000119107');
-INSERT INTO valueset_to_concept VALUES('2791','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_11823801000119104');
-INSERT INTO valueset_to_concept VALUES('2792','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_11823841000119102');
-INSERT INTO valueset_to_concept VALUES('2793','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_11837001000119102');
-INSERT INTO valueset_to_concept VALUES('2794','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_11837041000119100');
-INSERT INTO valueset_to_concept VALUES('2795','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_11843551000119104');
-INSERT INTO valueset_to_concept VALUES('2796','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_11843591000119109');
-INSERT INTO valueset_to_concept VALUES('2797','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_11847821000119101');
-INSERT INTO valueset_to_concept VALUES('2798','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_11848301000119100');
-INSERT INTO valueset_to_concept VALUES('2799','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_11848341000119103');
-INSERT INTO valueset_to_concept VALUES('2800','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_11848381000119108');
-INSERT INTO valueset_to_concept VALUES('2801','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_11848421000119104');
-INSERT INTO valueset_to_concept VALUES('2802','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_11849221000119106');
-INSERT INTO valueset_to_concept VALUES('2803','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_11849261000119101');
-INSERT INTO valueset_to_concept VALUES('2804','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_11849381000119101');
-INSERT INTO valueset_to_concept VALUES('2805','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_11849421000119105');
-INSERT INTO valueset_to_concept VALUES('2806','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_11849861000119102');
-INSERT INTO valueset_to_concept VALUES('2807','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_11862521000119106');
-INSERT INTO valueset_to_concept VALUES('2808','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_11862561000119101');
-INSERT INTO valueset_to_concept VALUES('2809','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_11862601000119101');
-INSERT INTO valueset_to_concept VALUES('2810','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_11862641000119104');
-INSERT INTO valueset_to_concept VALUES('2811','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_13751005');
-INSERT INTO valueset_to_concept VALUES('2812','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_13915009');
-INSERT INTO valueset_to_concept VALUES('2813','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_14096004');
-INSERT INTO valueset_to_concept VALUES('2814','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_14220008');
-INSERT INTO valueset_to_concept VALUES('2815','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_15034009');
-INSERT INTO valueset_to_concept VALUES('2816','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_17198008');
-INSERT INTO valueset_to_concept VALUES('2817','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_17384006');
-INSERT INTO valueset_to_concept VALUES('2818','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_19108007');
-INSERT INTO valueset_to_concept VALUES('2819','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_211008009');
-INSERT INTO valueset_to_concept VALUES('2820','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_211009001');
-INSERT INTO valueset_to_concept VALUES('2821','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_211010006');
-INSERT INTO valueset_to_concept VALUES('2822','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_211012003');
-INSERT INTO valueset_to_concept VALUES('2823','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_211103003');
-INSERT INTO valueset_to_concept VALUES('2824','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_211104009');
-INSERT INTO valueset_to_concept VALUES('2825','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_211105005');
-INSERT INTO valueset_to_concept VALUES('2826','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_211106006');
-INSERT INTO valueset_to_concept VALUES('2827','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_211107002');
-INSERT INTO valueset_to_concept VALUES('2828','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_211108007');
-INSERT INTO valueset_to_concept VALUES('2829','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_211109004');
-INSERT INTO valueset_to_concept VALUES('2830','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_211110009');
-INSERT INTO valueset_to_concept VALUES('2831','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_211111008');
-INSERT INTO valueset_to_concept VALUES('2832','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_211112001');
-INSERT INTO valueset_to_concept VALUES('2833','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_211113006');
-INSERT INTO valueset_to_concept VALUES('2834','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_211115004');
-INSERT INTO valueset_to_concept VALUES('2835','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_211116003');
-INSERT INTO valueset_to_concept VALUES('2836','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_211215005');
-INSERT INTO valueset_to_concept VALUES('2837','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_211217002');
-INSERT INTO valueset_to_concept VALUES('2838','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_211218007');
-INSERT INTO valueset_to_concept VALUES('2839','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_211220005');
-INSERT INTO valueset_to_concept VALUES('2840','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_211272000');
-INSERT INTO valueset_to_concept VALUES('2841','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_211273005');
-INSERT INTO valueset_to_concept VALUES('2842','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_211274004');
-INSERT INTO valueset_to_concept VALUES('2843','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_211358006');
-INSERT INTO valueset_to_concept VALUES('2844','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_211359003');
-INSERT INTO valueset_to_concept VALUES('2845','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_211360008');
-INSERT INTO valueset_to_concept VALUES('2846','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_211361007');
-INSERT INTO valueset_to_concept VALUES('2847','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_211362000');
-INSERT INTO valueset_to_concept VALUES('2848','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_211364004');
-INSERT INTO valueset_to_concept VALUES('2849','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_211365003');
-INSERT INTO valueset_to_concept VALUES('2850','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_211421007');
-INSERT INTO valueset_to_concept VALUES('2851','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_23455003');
-INSERT INTO valueset_to_concept VALUES('2852','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_238452008');
-INSERT INTO valueset_to_concept VALUES('2853','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_240100004');
-INSERT INTO valueset_to_concept VALUES('2854','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_241818005');
-INSERT INTO valueset_to_concept VALUES('2855','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_25726008');
-INSERT INTO valueset_to_concept VALUES('2856','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_262550002');
-INSERT INTO valueset_to_concept VALUES('2857','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_2683000');
-INSERT INTO valueset_to_concept VALUES('2858','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_269196004');
-INSERT INTO valueset_to_concept VALUES('2859','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_269197008');
-INSERT INTO valueset_to_concept VALUES('2860','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_269205004');
-INSERT INTO valueset_to_concept VALUES('2861','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_269206003');
-INSERT INTO valueset_to_concept VALUES('2862','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_269211001');
-INSERT INTO valueset_to_concept VALUES('2863','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_27447009');
-INSERT INTO valueset_to_concept VALUES('2864','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_276433004');
-INSERT INTO valueset_to_concept VALUES('2865','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_278487002');
-INSERT INTO valueset_to_concept VALUES('2866','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_283321007');
-INSERT INTO valueset_to_concept VALUES('2867','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_283322000');
-INSERT INTO valueset_to_concept VALUES('2868','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_283323005');
-INSERT INTO valueset_to_concept VALUES('2869','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_283324004');
-INSERT INTO valueset_to_concept VALUES('2870','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_283325003');
-INSERT INTO valueset_to_concept VALUES('2871','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_283326002');
-INSERT INTO valueset_to_concept VALUES('2872','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_283327006');
-INSERT INTO valueset_to_concept VALUES('2873','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_283328001');
-INSERT INTO valueset_to_concept VALUES('2874','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_283329009');
-INSERT INTO valueset_to_concept VALUES('2875','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_283330004');
-INSERT INTO valueset_to_concept VALUES('2876','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_283331000');
-INSERT INTO valueset_to_concept VALUES('2877','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_283332007');
-INSERT INTO valueset_to_concept VALUES('2878','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_283333002');
-INSERT INTO valueset_to_concept VALUES('2879','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_283334008');
-INSERT INTO valueset_to_concept VALUES('2880','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_283335009');
-INSERT INTO valueset_to_concept VALUES('2881','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_283336005');
-INSERT INTO valueset_to_concept VALUES('2882','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_283337001');
-INSERT INTO valueset_to_concept VALUES('2883','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_283338006');
-INSERT INTO valueset_to_concept VALUES('2884','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_283339003');
-INSERT INTO valueset_to_concept VALUES('2885','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_283340001');
-INSERT INTO valueset_to_concept VALUES('2886','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_283341002');
-INSERT INTO valueset_to_concept VALUES('2887','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_283342009');
-INSERT INTO valueset_to_concept VALUES('2888','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_283343004');
-INSERT INTO valueset_to_concept VALUES('2889','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_283344005');
-INSERT INTO valueset_to_concept VALUES('2890','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_283345006');
-INSERT INTO valueset_to_concept VALUES('2891','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_283346007');
-INSERT INTO valueset_to_concept VALUES('2892','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_283347003');
-INSERT INTO valueset_to_concept VALUES('2893','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_283348008');
-INSERT INTO valueset_to_concept VALUES('2894','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_283349000');
-INSERT INTO valueset_to_concept VALUES('2895','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_283350000');
-INSERT INTO valueset_to_concept VALUES('2896','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_283351001');
-INSERT INTO valueset_to_concept VALUES('2897','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_283352008');
-INSERT INTO valueset_to_concept VALUES('2898','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_283353003');
-INSERT INTO valueset_to_concept VALUES('2899','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_283354009');
-INSERT INTO valueset_to_concept VALUES('2900','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_283837005');
-INSERT INTO valueset_to_concept VALUES('2901','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_283838000');
-INSERT INTO valueset_to_concept VALUES('2902','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_283840005');
-INSERT INTO valueset_to_concept VALUES('2903','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_287109001');
-INSERT INTO valueset_to_concept VALUES('2904','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_287112003');
-INSERT INTO valueset_to_concept VALUES('2905','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_287115001');
-INSERT INTO valueset_to_concept VALUES('2906','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_287118004');
-INSERT INTO valueset_to_concept VALUES('2907','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_287126007');
-INSERT INTO valueset_to_concept VALUES('2908','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_29757004');
-INSERT INTO valueset_to_concept VALUES('2909','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_3032005');
-INSERT INTO valueset_to_concept VALUES('2910','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_30818003');
-INSERT INTO valueset_to_concept VALUES('2911','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_33155001');
-INSERT INTO valueset_to_concept VALUES('2912','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_35057008');
-INSERT INTO valueset_to_concept VALUES('2913','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_37887002');
-INSERT INTO valueset_to_concept VALUES('2914','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_38189003');
-INSERT INTO valueset_to_concept VALUES('2915','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_400023004');
-INSERT INTO valueset_to_concept VALUES('2916','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_40175007');
-INSERT INTO valueset_to_concept VALUES('2917','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_403148000');
-INSERT INTO valueset_to_concept VALUES('2918','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_403149008');
-INSERT INTO valueset_to_concept VALUES('2919','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_403162007');
-INSERT INTO valueset_to_concept VALUES('2920','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_409985002');
-INSERT INTO valueset_to_concept VALUES('2921','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_4124006');
-INSERT INTO valueset_to_concept VALUES('2922','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_41958008');
-INSERT INTO valueset_to_concept VALUES('2923','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_419884005');
-INSERT INTO valueset_to_concept VALUES('2924','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_42032008');
-INSERT INTO valueset_to_concept VALUES('2925','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_42089007');
-INSERT INTO valueset_to_concept VALUES('2926','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_428471001');
-INSERT INTO valueset_to_concept VALUES('2927','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_428509000');
-INSERT INTO valueset_to_concept VALUES('2928','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_428762009');
-INSERT INTO valueset_to_concept VALUES('2929','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_429305003');
-INSERT INTO valueset_to_concept VALUES('2930','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_44352004');
-INSERT INTO valueset_to_concept VALUES('2931','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_443874006');
-INSERT INTO valueset_to_concept VALUES('2932','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_446845005');
-INSERT INTO valueset_to_concept VALUES('2933','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_446917003');
-INSERT INTO valueset_to_concept VALUES('2934','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_44921007');
-INSERT INTO valueset_to_concept VALUES('2935','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_449643001');
-INSERT INTO valueset_to_concept VALUES('2936','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_449720001');
-INSERT INTO valueset_to_concept VALUES('2937','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_449915007');
-INSERT INTO valueset_to_concept VALUES('2938','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_45915002');
-INSERT INTO valueset_to_concept VALUES('2939','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_47027001');
-INSERT INTO valueset_to_concept VALUES('2940','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_49976003');
-INSERT INTO valueset_to_concept VALUES('2941','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_50124004');
-INSERT INTO valueset_to_concept VALUES('2942','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_51882009');
-INSERT INTO valueset_to_concept VALUES('2943','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_52705001');
-INSERT INTO valueset_to_concept VALUES('2944','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_53188002');
-INSERT INTO valueset_to_concept VALUES('2945','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_53706009');
-INSERT INTO valueset_to_concept VALUES('2946','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_56892000');
-INSERT INTO valueset_to_concept VALUES('2947','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_59443003');
-INSERT INTO valueset_to_concept VALUES('2948','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_60298004');
-INSERT INTO valueset_to_concept VALUES('2949','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_60807005');
-INSERT INTO valueset_to_concept VALUES('2950','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_62591002');
-INSERT INTO valueset_to_concept VALUES('2951','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_67862004');
-INSERT INTO valueset_to_concept VALUES('2952','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_67974004');
-INSERT INTO valueset_to_concept VALUES('2953','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_68765006');
-INSERT INTO valueset_to_concept VALUES('2954','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_69743002');
-INSERT INTO valueset_to_concept VALUES('2955','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_70294003');
-INSERT INTO valueset_to_concept VALUES('2956','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_71696000');
-INSERT INTO valueset_to_concept VALUES('2957','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_71804007');
-INSERT INTO valueset_to_concept VALUES('2958','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_72498006');
-INSERT INTO valueset_to_concept VALUES('2959','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_73405008');
-INSERT INTO valueset_to_concept VALUES('2960','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_76584003');
-INSERT INTO valueset_to_concept VALUES('2961','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_77874001');
-INSERT INTO valueset_to_concept VALUES('2962','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_789229008');
-INSERT INTO valueset_to_concept VALUES('2963','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_789230003');
-INSERT INTO valueset_to_concept VALUES('2964','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_801006');
-INSERT INTO valueset_to_concept VALUES('2965','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_80961000');
-INSERT INTO valueset_to_concept VALUES('2966','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_81769002');
-INSERT INTO valueset_to_concept VALUES('2967','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_82244004');
-INSERT INTO valueset_to_concept VALUES('2968','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_8297008');
-INSERT INTO valueset_to_concept VALUES('2969','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_83364002');
-INSERT INTO valueset_to_concept VALUES('2970','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_83587009');
-INSERT INTO valueset_to_concept VALUES('2971','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_838335003');
-INSERT INTO valueset_to_concept VALUES('2972','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_84070009');
-INSERT INTO valueset_to_concept VALUES('2973','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_871920005');
-INSERT INTO valueset_to_concept VALUES('2974','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_871926004');
-INSERT INTO valueset_to_concept VALUES('2975','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_871927008');
-INSERT INTO valueset_to_concept VALUES('2976','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_874914008');
-INSERT INTO valueset_to_concept VALUES('2977','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_874916005');
-INSERT INTO valueset_to_concept VALUES('2978','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_874930000');
-INSERT INTO valueset_to_concept VALUES('2979','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_89021008');
-INSERT INTO valueset_to_concept VALUES('2980','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_8975004');
-INSERT INTO valueset_to_concept VALUES('2981','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_91060006');
-INSERT INTO valueset_to_concept VALUES('2982','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_91178003');
-INSERT INTO valueset_to_concept VALUES('2983','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_9377008');
-INSERT INTO valueset_to_concept VALUES('2984','2.16.840.1.113762.1.4.1146.1582_20230122','2.16.840.1.113762.1.4.1146.1582_95898004');
-INSERT INTO valueset_to_concept VALUES('2985','2.16.840.1.113762.1.4.1146.1581_20230122','2.16.840.1.113762.1.4.1146.1581_10847381000119103');
-INSERT INTO valueset_to_concept VALUES('2986','2.16.840.1.113762.1.4.1146.1581_20230122','2.16.840.1.113762.1.4.1146.1581_10953201000119100');
-INSERT INTO valueset_to_concept VALUES('2987','2.16.840.1.113762.1.4.1146.1581_20230122','2.16.840.1.113762.1.4.1146.1581_10953241000119103');
-INSERT INTO valueset_to_concept VALUES('2988','2.16.840.1.113762.1.4.1146.1581_20230122','2.16.840.1.113762.1.4.1146.1581_10953281000119108');
-INSERT INTO valueset_to_concept VALUES('2989','2.16.840.1.113762.1.4.1146.1581_20230122','2.16.840.1.113762.1.4.1146.1581_10953321000119103');
-INSERT INTO valueset_to_concept VALUES('2990','2.16.840.1.113762.1.4.1146.1581_20230122','2.16.840.1.113762.1.4.1146.1581_10953361000119108');
-INSERT INTO valueset_to_concept VALUES('2991','2.16.840.1.113762.1.4.1146.1581_20230122','2.16.840.1.113762.1.4.1146.1581_10953401000119104');
-INSERT INTO valueset_to_concept VALUES('2992','2.16.840.1.113762.1.4.1146.1581_20230122','2.16.840.1.113762.1.4.1146.1581_10953441000119102');
-INSERT INTO valueset_to_concept VALUES('2993','2.16.840.1.113762.1.4.1146.1581_20230122','2.16.840.1.113762.1.4.1146.1581_10953481000119107');
-INSERT INTO valueset_to_concept VALUES('2994','2.16.840.1.113762.1.4.1146.1581_20230122','2.16.840.1.113762.1.4.1146.1581_10953521000119107');
-INSERT INTO valueset_to_concept VALUES('2995','2.16.840.1.113762.1.4.1146.1581_20230122','2.16.840.1.113762.1.4.1146.1581_10953561000119102');
-INSERT INTO valueset_to_concept VALUES('2996','2.16.840.1.113762.1.4.1146.1581_20230122','2.16.840.1.113762.1.4.1146.1581_10953641000119100');
-INSERT INTO valueset_to_concept VALUES('2997','2.16.840.1.113762.1.4.1146.1581_20230122','2.16.840.1.113762.1.4.1146.1581_10953681000119105');
-INSERT INTO valueset_to_concept VALUES('2998','2.16.840.1.113762.1.4.1146.1581_20230122','2.16.840.1.113762.1.4.1146.1581_10953761000119109');
-INSERT INTO valueset_to_concept VALUES('2999','2.16.840.1.113762.1.4.1146.1581_20230122','2.16.840.1.113762.1.4.1146.1581_10953801000119101');
-INSERT INTO valueset_to_concept VALUES('3000','2.16.840.1.113762.1.4.1146.1581_20230122','2.16.840.1.113762.1.4.1146.1581_10953881000119109');
-INSERT INTO valueset_to_concept VALUES('3001','2.16.840.1.113762.1.4.1146.1581_20230122','2.16.840.1.113762.1.4.1146.1581_10953921000119102');
-INSERT INTO valueset_to_concept VALUES('3002','2.16.840.1.113762.1.4.1146.1581_20230122','2.16.840.1.113762.1.4.1146.1581_10954001000119108');
-INSERT INTO valueset_to_concept VALUES('3003','2.16.840.1.113762.1.4.1146.1581_20230122','2.16.840.1.113762.1.4.1146.1581_10954041000119105');
-INSERT INTO valueset_to_concept VALUES('3004','2.16.840.1.113762.1.4.1146.1581_20230122','2.16.840.1.113762.1.4.1146.1581_10954121000119103');
-INSERT INTO valueset_to_concept VALUES('3005','2.16.840.1.113762.1.4.1146.1581_20230122','2.16.840.1.113762.1.4.1146.1581_10954161000119108');
-INSERT INTO valueset_to_concept VALUES('3006','2.16.840.1.113762.1.4.1146.1581_20230122','2.16.840.1.113762.1.4.1146.1581_10969651000119106');
-INSERT INTO valueset_to_concept VALUES('3007','2.16.840.1.113762.1.4.1146.1581_20230122','2.16.840.1.113762.1.4.1146.1581_10969691000119101');
-INSERT INTO valueset_to_concept VALUES('3008','2.16.840.1.113762.1.4.1146.1581_20230122','2.16.840.1.113762.1.4.1146.1581_10970291000119101');
-INSERT INTO valueset_to_concept VALUES('3009','2.16.840.1.113762.1.4.1146.1581_20230122','2.16.840.1.113762.1.4.1146.1581_10970611000119108');
-INSERT INTO valueset_to_concept VALUES('3010','2.16.840.1.113762.1.4.1146.1581_20230122','2.16.840.1.113762.1.4.1146.1581_10970651000119109');
-INSERT INTO valueset_to_concept VALUES('3011','2.16.840.1.113762.1.4.1146.1581_20230122','2.16.840.1.113762.1.4.1146.1581_186327003');
-INSERT INTO valueset_to_concept VALUES('3012','2.16.840.1.113762.1.4.1146.1581_20230122','2.16.840.1.113762.1.4.1146.1581_200153006');
-INSERT INTO valueset_to_concept VALUES('3013','2.16.840.1.113762.1.4.1146.1581_20230122','2.16.840.1.113762.1.4.1146.1581_262554006');
-INSERT INTO valueset_to_concept VALUES('3014','2.16.840.1.113762.1.4.1146.1581_20230122','2.16.840.1.113762.1.4.1146.1581_262569007');
-INSERT INTO valueset_to_concept VALUES('3015','2.16.840.1.113762.1.4.1146.1581_20230122','2.16.840.1.113762.1.4.1146.1581_283683002');
-INSERT INTO valueset_to_concept VALUES('3016','2.16.840.1.113762.1.4.1146.1581_20230122','2.16.840.1.113762.1.4.1146.1581_283782004');
-INSERT INTO valueset_to_concept VALUES('3017','2.16.840.1.113762.1.4.1146.1581_20230122','2.16.840.1.113762.1.4.1146.1581_283783009');
-INSERT INTO valueset_to_concept VALUES('3018','2.16.840.1.113762.1.4.1146.1581_20230122','2.16.840.1.113762.1.4.1146.1581_283784003');
-INSERT INTO valueset_to_concept VALUES('3019','2.16.840.1.113762.1.4.1146.1581_20230122','2.16.840.1.113762.1.4.1146.1581_283785002');
-INSERT INTO valueset_to_concept VALUES('3020','2.16.840.1.113762.1.4.1146.1581_20230122','2.16.840.1.113762.1.4.1146.1581_283786001');
-INSERT INTO valueset_to_concept VALUES('3021','2.16.840.1.113762.1.4.1146.1581_20230122','2.16.840.1.113762.1.4.1146.1581_283787005');
-INSERT INTO valueset_to_concept VALUES('3022','2.16.840.1.113762.1.4.1146.1581_20230122','2.16.840.1.113762.1.4.1146.1581_283788000');
-INSERT INTO valueset_to_concept VALUES('3023','2.16.840.1.113762.1.4.1146.1581_20230122','2.16.840.1.113762.1.4.1146.1581_716103008');
-INSERT INTO valueset_to_concept VALUES('3024','2.16.840.1.113762.1.4.1146.1581_20230122','2.16.840.1.113762.1.4.1146.1581_718509009');
-INSERT INTO valueset_to_concept VALUES('3025','2.16.840.1.113762.1.4.1146.1581_20230122','2.16.840.1.113762.1.4.1146.1581_10905991000119106');
-INSERT INTO valueset_to_concept VALUES('3026','2.16.840.1.113762.1.4.1146.2310_20240619','2.16.840.1.113762.1.4.1146.2310_Q20.3');
-INSERT INTO valueset_to_concept VALUES('3027','2.16.840.1.113762.1.4.1146.2310_20240619','2.16.840.1.113762.1.4.1146.2310_Q20.5');
-INSERT INTO valueset_to_concept VALUES('3028','2.16.840.1.113762.1.4.1146.1342_20210526','2.16.840.1.113762.1.4.1146.1342_409616009');
-INSERT INTO valueset_to_concept VALUES('3029','2.16.840.1.113762.1.4.1146.1342_20210526','2.16.840.1.113762.1.4.1146.1342_409617000');
-INSERT INTO valueset_to_concept VALUES('3030','2.16.840.1.113762.1.4.1146.1342_20210526','2.16.840.1.113762.1.4.1146.1342_409618005');
-INSERT INTO valueset_to_concept VALUES('3031','2.16.840.1.113762.1.4.1146.1342_20210526','2.16.840.1.113762.1.4.1146.1342_409620008');
-INSERT INTO valueset_to_concept VALUES('3032','2.16.840.1.113762.1.4.1146.1342_20210526','2.16.840.1.113762.1.4.1146.1342_409621007');
-INSERT INTO valueset_to_concept VALUES('3033','2.16.840.1.113762.1.4.1146.1463_20240123','2.16.840.1.113762.1.4.1146.1463_1149093006');
-INSERT INTO valueset_to_concept VALUES('3034','2.16.840.1.113762.1.4.1146.1463_20240123','2.16.840.1.113762.1.4.1146.1463_1153534006');
-INSERT INTO valueset_to_concept VALUES('3035','2.16.840.1.113762.1.4.1146.1463_20240123','2.16.840.1.113762.1.4.1146.1463_406575008');
-INSERT INTO valueset_to_concept VALUES('3036','2.16.840.1.113762.1.4.1146.1584_20230122','2.16.840.1.113762.1.4.1146.1584_10847341000119108');
-INSERT INTO valueset_to_concept VALUES('3037','2.16.840.1.113762.1.4.1146.1584_20230122','2.16.840.1.113762.1.4.1146.1584_10947731000119108');
-INSERT INTO valueset_to_concept VALUES('3038','2.16.840.1.113762.1.4.1146.1584_20230122','2.16.840.1.113762.1.4.1146.1584_10947771000119106');
-INSERT INTO valueset_to_concept VALUES('3039','2.16.840.1.113762.1.4.1146.1584_20230122','2.16.840.1.113762.1.4.1146.1584_10947851000119107');
-INSERT INTO valueset_to_concept VALUES('3040','2.16.840.1.113762.1.4.1146.1584_20230122','2.16.840.1.113762.1.4.1146.1584_10947891000119102');
-INSERT INTO valueset_to_concept VALUES('3041','2.16.840.1.113762.1.4.1146.1584_20230122','2.16.840.1.113762.1.4.1146.1584_10947931000119105');
-INSERT INTO valueset_to_concept VALUES('3042','2.16.840.1.113762.1.4.1146.1584_20230122','2.16.840.1.113762.1.4.1146.1584_10947971000119108');
-INSERT INTO valueset_to_concept VALUES('3043','2.16.840.1.113762.1.4.1146.1584_20230122','2.16.840.1.113762.1.4.1146.1584_10948051000119101');
-INSERT INTO valueset_to_concept VALUES('3044','2.16.840.1.113762.1.4.1146.1584_20230122','2.16.840.1.113762.1.4.1146.1584_10948091000119106');
-INSERT INTO valueset_to_concept VALUES('3045','2.16.840.1.113762.1.4.1146.1584_20230122','2.16.840.1.113762.1.4.1146.1584_10948311000119100');
-INSERT INTO valueset_to_concept VALUES('3046','2.16.840.1.113762.1.4.1146.1584_20230122','2.16.840.1.113762.1.4.1146.1584_10948351000119104');
-INSERT INTO valueset_to_concept VALUES('3047','2.16.840.1.113762.1.4.1146.1584_20230122','2.16.840.1.113762.1.4.1146.1584_10948671000119103');
-INSERT INTO valueset_to_concept VALUES('3048','2.16.840.1.113762.1.4.1146.1584_20230122','2.16.840.1.113762.1.4.1146.1584_10948711000119104');
-INSERT INTO valueset_to_concept VALUES('3049','2.16.840.1.113762.1.4.1146.1584_20230122','2.16.840.1.113762.1.4.1146.1584_10949871000119106');
-INSERT INTO valueset_to_concept VALUES('3050','2.16.840.1.113762.1.4.1146.1584_20230122','2.16.840.1.113762.1.4.1146.1584_10949911000119109');
-INSERT INTO valueset_to_concept VALUES('3051','2.16.840.1.113762.1.4.1146.1584_20230122','2.16.840.1.113762.1.4.1146.1584_10968811000119102');
-INSERT INTO valueset_to_concept VALUES('3052','2.16.840.1.113762.1.4.1146.1584_20230122','2.16.840.1.113762.1.4.1146.1584_10968851000119101');
-INSERT INTO valueset_to_concept VALUES('3053','2.16.840.1.113762.1.4.1146.1584_20230122','2.16.840.1.113762.1.4.1146.1584_10969891000119102');
-INSERT INTO valueset_to_concept VALUES('3054','2.16.840.1.113762.1.4.1146.1584_20230122','2.16.840.1.113762.1.4.1146.1584_10969931000119105');
-INSERT INTO valueset_to_concept VALUES('3055','2.16.840.1.113762.1.4.1146.1584_20230122','2.16.840.1.113762.1.4.1146.1584_10970171000119108');
-INSERT INTO valueset_to_concept VALUES('3056','2.16.840.1.113762.1.4.1146.1584_20230122','2.16.840.1.113762.1.4.1146.1584_10970491000119102');
-INSERT INTO valueset_to_concept VALUES('3057','2.16.840.1.113762.1.4.1146.1584_20230122','2.16.840.1.113762.1.4.1146.1584_10970531000119102');
-INSERT INTO valueset_to_concept VALUES('3058','2.16.840.1.113762.1.4.1146.1584_20230122','2.16.840.1.113762.1.4.1146.1584_10970851000119105');
-INSERT INTO valueset_to_concept VALUES('3059','2.16.840.1.113762.1.4.1146.1584_20230122','2.16.840.1.113762.1.4.1146.1584_10970891000119100');
-INSERT INTO valueset_to_concept VALUES('3060','2.16.840.1.113762.1.4.1146.1584_20230122','2.16.840.1.113762.1.4.1146.1584_10981471000119104');
-INSERT INTO valueset_to_concept VALUES('3061','2.16.840.1.113762.1.4.1146.1584_20230122','2.16.840.1.113762.1.4.1146.1584_283800004');
-INSERT INTO valueset_to_concept VALUES('3062','2.16.840.1.113762.1.4.1146.1584_20230122','2.16.840.1.113762.1.4.1146.1584_283801000');
-INSERT INTO valueset_to_concept VALUES('3063','2.16.840.1.113762.1.4.1146.1584_20230122','2.16.840.1.113762.1.4.1146.1584_283802007');
-INSERT INTO valueset_to_concept VALUES('3064','2.16.840.1.113762.1.4.1146.1584_20230122','2.16.840.1.113762.1.4.1146.1584_283803002');
-INSERT INTO valueset_to_concept VALUES('3065','2.16.840.1.113762.1.4.1146.1584_20230122','2.16.840.1.113762.1.4.1146.1584_283804008');
-INSERT INTO valueset_to_concept VALUES('3066','2.16.840.1.113762.1.4.1146.1584_20230122','2.16.840.1.113762.1.4.1146.1584_283805009');
-INSERT INTO valueset_to_concept VALUES('3067','2.16.840.1.113762.1.4.1146.1584_20230122','2.16.840.1.113762.1.4.1146.1584_283806005');
-INSERT INTO valueset_to_concept VALUES('3068','2.16.840.1.113762.1.4.1146.1584_20230122','2.16.840.1.113762.1.4.1146.1584_283807001');
-INSERT INTO valueset_to_concept VALUES('3069','2.16.840.1.113762.1.4.1146.1584_20230122','2.16.840.1.113762.1.4.1146.1584_283808006');
-INSERT INTO valueset_to_concept VALUES('3070','2.16.840.1.113762.1.4.1146.1584_20230122','2.16.840.1.113762.1.4.1146.1584_283809003');
-INSERT INTO valueset_to_concept VALUES('3071','2.16.840.1.113762.1.4.1146.1584_20230122','2.16.840.1.113762.1.4.1146.1584_283810008');
-INSERT INTO valueset_to_concept VALUES('3072','2.16.840.1.113762.1.4.1146.1584_20230122','2.16.840.1.113762.1.4.1146.1584_283811007');
-INSERT INTO valueset_to_concept VALUES('3073','2.16.840.1.113762.1.4.1146.1584_20230122','2.16.840.1.113762.1.4.1146.1584_283812000');
-INSERT INTO valueset_to_concept VALUES('3074','2.16.840.1.113762.1.4.1146.1584_20230122','2.16.840.1.113762.1.4.1146.1584_283813005');
-INSERT INTO valueset_to_concept VALUES('3075','2.16.840.1.113762.1.4.1146.1584_20230122','2.16.840.1.113762.1.4.1146.1584_283814004');
-INSERT INTO valueset_to_concept VALUES('3076','2.16.840.1.113762.1.4.1146.1584_20230122','2.16.840.1.113762.1.4.1146.1584_283815003');
-INSERT INTO valueset_to_concept VALUES('3077','2.16.840.1.113762.1.4.1146.1584_20230122','2.16.840.1.113762.1.4.1146.1584_283816002');
-INSERT INTO valueset_to_concept VALUES('3078','2.16.840.1.113762.1.4.1146.1584_20230122','2.16.840.1.113762.1.4.1146.1584_283817006');
-INSERT INTO valueset_to_concept VALUES('3079','2.16.840.1.113762.1.4.1146.1584_20230122','2.16.840.1.113762.1.4.1146.1584_283818001');
-INSERT INTO valueset_to_concept VALUES('3080','2.16.840.1.113762.1.4.1146.1584_20230122','2.16.840.1.113762.1.4.1146.1584_283819009');
-INSERT INTO valueset_to_concept VALUES('3081','2.16.840.1.113762.1.4.1146.1584_20230122','2.16.840.1.113762.1.4.1146.1584_283820003');
-INSERT INTO valueset_to_concept VALUES('3082','2.16.840.1.113762.1.4.1146.1584_20230122','2.16.840.1.113762.1.4.1146.1584_283821004');
-INSERT INTO valueset_to_concept VALUES('3083','2.16.840.1.113762.1.4.1146.1584_20230122','2.16.840.1.113762.1.4.1146.1584_283822006');
-INSERT INTO valueset_to_concept VALUES('3084','2.16.840.1.113762.1.4.1146.1584_20230122','2.16.840.1.113762.1.4.1146.1584_283823001');
-INSERT INTO valueset_to_concept VALUES('3085','2.16.840.1.113762.1.4.1146.1584_20230122','2.16.840.1.113762.1.4.1146.1584_283824007');
-INSERT INTO valueset_to_concept VALUES('3086','2.16.840.1.113762.1.4.1146.1584_20230122','2.16.840.1.113762.1.4.1146.1584_283825008');
-INSERT INTO valueset_to_concept VALUES('3087','2.16.840.1.113762.1.4.1146.1584_20230122','2.16.840.1.113762.1.4.1146.1584_283826009');
-INSERT INTO valueset_to_concept VALUES('3088','2.16.840.1.113762.1.4.1146.1584_20230122','2.16.840.1.113762.1.4.1146.1584_283827000');
-INSERT INTO valueset_to_concept VALUES('3089','2.16.840.1.113762.1.4.1146.1584_20230122','2.16.840.1.113762.1.4.1146.1584_283828005');
-INSERT INTO valueset_to_concept VALUES('3090','2.16.840.1.113762.1.4.1146.1584_20230122','2.16.840.1.113762.1.4.1146.1584_283829002');
-INSERT INTO valueset_to_concept VALUES('3091','2.16.840.1.113762.1.4.1146.1584_20230122','2.16.840.1.113762.1.4.1146.1584_283830007');
-INSERT INTO valueset_to_concept VALUES('3092','2.16.840.1.113762.1.4.1146.1584_20230122','2.16.840.1.113762.1.4.1146.1584_283831006');
-INSERT INTO valueset_to_concept VALUES('3093','2.16.840.1.113762.1.4.1146.1584_20230122','2.16.840.1.113762.1.4.1146.1584_283832004');
-INSERT INTO valueset_to_concept VALUES('3094','2.16.840.1.113762.1.4.1146.1584_20230122','2.16.840.1.113762.1.4.1146.1584_283833009');
-INSERT INTO valueset_to_concept VALUES('3095','2.16.840.1.113762.1.4.1146.1584_20230122','2.16.840.1.113762.1.4.1146.1584_283834003');
-INSERT INTO valueset_to_concept VALUES('3096','2.16.840.1.113762.1.4.1146.1584_20230122','2.16.840.1.113762.1.4.1146.1584_283835002');
-INSERT INTO valueset_to_concept VALUES('3097','2.16.840.1.113762.1.4.1146.1584_20230122','2.16.840.1.113762.1.4.1146.1584_283836001');
-INSERT INTO valueset_to_concept VALUES('3098','2.16.840.1.113762.1.4.1146.1584_20230122','2.16.840.1.113762.1.4.1146.1584_399907009');
-INSERT INTO valueset_to_concept VALUES('3099','2.16.840.1.113762.1.4.1146.1584_20230122','2.16.840.1.113762.1.4.1146.1584_406560000');
-INSERT INTO valueset_to_concept VALUES('3100','2.16.840.1.113762.1.4.1146.1584_20230122','2.16.840.1.113762.1.4.1146.1584_406561001');
-INSERT INTO valueset_to_concept VALUES('3101','2.16.840.1.113762.1.4.1146.1584_20230122','2.16.840.1.113762.1.4.1146.1584_10905871000119100');
-INSERT INTO valueset_to_concept VALUES('3102','2.16.840.1.113762.1.4.1146.1584_20230122','2.16.840.1.113762.1.4.1146.1584_283789008');
-INSERT INTO valueset_to_concept VALUES('3103','2.16.840.1.113762.1.4.1146.1584_20230122','2.16.840.1.113762.1.4.1146.1584_283790004');
-INSERT INTO valueset_to_concept VALUES('3104','2.16.840.1.113762.1.4.1146.1584_20230122','2.16.840.1.113762.1.4.1146.1584_283791000');
-INSERT INTO valueset_to_concept VALUES('3105','2.16.840.1.113762.1.4.1146.1584_20230122','2.16.840.1.113762.1.4.1146.1584_283792007');
-INSERT INTO valueset_to_concept VALUES('3106','2.16.840.1.113762.1.4.1146.1584_20230122','2.16.840.1.113762.1.4.1146.1584_283793002');
-INSERT INTO valueset_to_concept VALUES('3107','2.16.840.1.113762.1.4.1146.1584_20230122','2.16.840.1.113762.1.4.1146.1584_283794008');
-INSERT INTO valueset_to_concept VALUES('3108','2.16.840.1.113762.1.4.1146.1584_20230122','2.16.840.1.113762.1.4.1146.1584_283795009');
-INSERT INTO valueset_to_concept VALUES('3109','2.16.840.1.113762.1.4.1146.1584_20230122','2.16.840.1.113762.1.4.1146.1584_283796005');
-INSERT INTO valueset_to_concept VALUES('3110','2.16.840.1.113762.1.4.1146.1584_20230122','2.16.840.1.113762.1.4.1146.1584_283798006');
-INSERT INTO valueset_to_concept VALUES('3111','2.16.840.1.113762.1.4.1146.1584_20230122','2.16.840.1.113762.1.4.1146.1584_283799003');
-INSERT INTO valueset_to_concept VALUES('3112','2.16.840.1.113762.1.4.1146.78_20181031','2.16.840.1.113762.1.4.1146.78_373421000');
-INSERT INTO valueset_to_concept VALUES('3113','2.16.840.1.113762.1.4.1146.79_20230602','2.16.840.1.113762.1.4.1146.79_111835002');
-INSERT INTO valueset_to_concept VALUES('3114','2.16.840.1.113762.1.4.1146.79_20230602','2.16.840.1.113762.1.4.1146.79_1163143005');
-INSERT INTO valueset_to_concept VALUES('3115','2.16.840.1.113762.1.4.1146.79_20230602','2.16.840.1.113762.1.4.1146.79_1176987009');
-INSERT INTO valueset_to_concept VALUES('3116','2.16.840.1.113762.1.4.1146.79_20230602','2.16.840.1.113762.1.4.1146.79_18081009');
-INSERT INTO valueset_to_concept VALUES('3117','2.16.840.1.113762.1.4.1146.79_20230602','2.16.840.1.113762.1.4.1146.79_446122002');
-INSERT INTO valueset_to_concept VALUES('3118','2.16.840.1.113762.1.4.1146.79_20230602','2.16.840.1.113762.1.4.1146.79_447354007');
-INSERT INTO valueset_to_concept VALUES('3119','2.16.840.1.113762.1.4.1146.79_20230602','2.16.840.1.113762.1.4.1146.79_86500004');
-INSERT INTO valueset_to_concept VALUES('3120','2.16.840.1.113762.1.4.1146.2328_20240619','2.16.840.1.113762.1.4.1146.2328_204306007');
-INSERT INTO valueset_to_concept VALUES('3121','2.16.840.1.113762.1.4.1146.2328_20240619','2.16.840.1.113762.1.4.1146.2328_253512000');
-INSERT INTO valueset_to_concept VALUES('3122','2.16.840.1.113762.1.4.1146.2328_20240619','2.16.840.1.113762.1.4.1146.2328_253513005');
-INSERT INTO valueset_to_concept VALUES('3123','2.16.840.1.113762.1.4.1146.2328_20240619','2.16.840.1.113762.1.4.1146.2328_253514004');
-INSERT INTO valueset_to_concept VALUES('3124','2.16.840.1.113762.1.4.1146.2328_20240619','2.16.840.1.113762.1.4.1146.2328_253515003');
-INSERT INTO valueset_to_concept VALUES('3125','2.16.840.1.113762.1.4.1146.2328_20240619','2.16.840.1.113762.1.4.1146.2328_399228007');
-INSERT INTO valueset_to_concept VALUES('3126','2.16.840.1.113762.1.4.1146.2328_20240619','2.16.840.1.113762.1.4.1146.2328_448007000');
-INSERT INTO valueset_to_concept VALUES('3127','2.16.840.1.113762.1.4.1146.2328_20240619','2.16.840.1.113762.1.4.1146.2328_448155003');
-INSERT INTO valueset_to_concept VALUES('3128','2.16.840.1.113762.1.4.1146.2328_20240619','2.16.840.1.113762.1.4.1146.2328_723336008');
-INSERT INTO valueset_to_concept VALUES('3129','2.16.840.1.113762.1.4.1146.2328_20240619','2.16.840.1.113762.1.4.1146.2328_762433009');
-INSERT INTO valueset_to_concept VALUES('3130','2.16.840.1.113762.1.4.1146.2328_20240619','2.16.840.1.113762.1.4.1146.2328_766976003');
-INSERT INTO valueset_to_concept VALUES('3131','2.16.840.1.113762.1.4.1146.2329_20240619','2.16.840.1.113762.1.4.1146.2329_Q21.3');
-INSERT INTO valueset_to_concept VALUES('3132','2.16.840.1.113762.1.4.1146.2326_20240619','2.16.840.1.113762.1.4.1146.2326_253281003');
-INSERT INTO valueset_to_concept VALUES('3133','2.16.840.1.113762.1.4.1146.2326_20240619','2.16.840.1.113762.1.4.1146.2326_253282005');
-INSERT INTO valueset_to_concept VALUES('3134','2.16.840.1.113762.1.4.1146.2326_20240619','2.16.840.1.113762.1.4.1146.2326_253283000');
-INSERT INTO valueset_to_concept VALUES('3135','2.16.840.1.113762.1.4.1146.2326_20240619','2.16.840.1.113762.1.4.1146.2326_253284006');
-INSERT INTO valueset_to_concept VALUES('3136','2.16.840.1.113762.1.4.1146.2326_20240619','2.16.840.1.113762.1.4.1146.2326_253454000');
-INSERT INTO valueset_to_concept VALUES('3137','2.16.840.1.113762.1.4.1146.2326_20240619','2.16.840.1.113762.1.4.1146.2326_253483002');
-INSERT INTO valueset_to_concept VALUES('3138','2.16.840.1.113762.1.4.1146.2326_20240619','2.16.840.1.113762.1.4.1146.2326_253485009');
-INSERT INTO valueset_to_concept VALUES('3139','2.16.840.1.113762.1.4.1146.2326_20240619','2.16.840.1.113762.1.4.1146.2326_253486005');
-INSERT INTO valueset_to_concept VALUES('3140','2.16.840.1.113762.1.4.1146.2326_20240619','2.16.840.1.113762.1.4.1146.2326_253489003');
-INSERT INTO valueset_to_concept VALUES('3141','2.16.840.1.113762.1.4.1146.2326_20240619','2.16.840.1.113762.1.4.1146.2326_253492004');
-INSERT INTO valueset_to_concept VALUES('3142','2.16.840.1.113762.1.4.1146.2326_20240619','2.16.840.1.113762.1.4.1146.2326_253493009');
-INSERT INTO valueset_to_concept VALUES('3143','2.16.840.1.113762.1.4.1146.2326_20240619','2.16.840.1.113762.1.4.1146.2326_253494003');
-INSERT INTO valueset_to_concept VALUES('3144','2.16.840.1.113762.1.4.1146.2326_20240619','2.16.840.1.113762.1.4.1146.2326_253495002');
-INSERT INTO valueset_to_concept VALUES('3145','2.16.840.1.113762.1.4.1146.2326_20240619','2.16.840.1.113762.1.4.1146.2326_253497005');
-INSERT INTO valueset_to_concept VALUES('3146','2.16.840.1.113762.1.4.1146.2326_20240619','2.16.840.1.113762.1.4.1146.2326_253498000');
-INSERT INTO valueset_to_concept VALUES('3147','2.16.840.1.113762.1.4.1146.2326_20240619','2.16.840.1.113762.1.4.1146.2326_253499008');
-INSERT INTO valueset_to_concept VALUES('3148','2.16.840.1.113762.1.4.1146.2326_20240619','2.16.840.1.113762.1.4.1146.2326_253500004');
-INSERT INTO valueset_to_concept VALUES('3149','2.16.840.1.113762.1.4.1146.2326_20240619','2.16.840.1.113762.1.4.1146.2326_253501000');
-INSERT INTO valueset_to_concept VALUES('3150','2.16.840.1.113762.1.4.1146.2326_20240619','2.16.840.1.113762.1.4.1146.2326_253502007');
-INSERT INTO valueset_to_concept VALUES('3151','2.16.840.1.113762.1.4.1146.2326_20240619','2.16.840.1.113762.1.4.1146.2326_253503002');
-INSERT INTO valueset_to_concept VALUES('3152','2.16.840.1.113762.1.4.1146.2326_20240619','2.16.840.1.113762.1.4.1146.2326_253504008');
-INSERT INTO valueset_to_concept VALUES('3153','2.16.840.1.113762.1.4.1146.2326_20240619','2.16.840.1.113762.1.4.1146.2326_253505009');
-INSERT INTO valueset_to_concept VALUES('3154','2.16.840.1.113762.1.4.1146.2326_20240619','2.16.840.1.113762.1.4.1146.2326_445294008');
-INSERT INTO valueset_to_concept VALUES('3155','2.16.840.1.113762.1.4.1146.2326_20240619','2.16.840.1.113762.1.4.1146.2326_445330003');
-INSERT INTO valueset_to_concept VALUES('3156','2.16.840.1.113762.1.4.1146.2326_20240619','2.16.840.1.113762.1.4.1146.2326_446667008');
-INSERT INTO valueset_to_concept VALUES('3157','2.16.840.1.113762.1.4.1146.2326_20240619','2.16.840.1.113762.1.4.1146.2326_448947009');
-INSERT INTO valueset_to_concept VALUES('3158','2.16.840.1.113762.1.4.1146.2326_20240619','2.16.840.1.113762.1.4.1146.2326_449031001');
-INSERT INTO valueset_to_concept VALUES('3159','2.16.840.1.113762.1.4.1146.2326_20240619','2.16.840.1.113762.1.4.1146.2326_449032008');
-INSERT INTO valueset_to_concept VALUES('3160','2.16.840.1.113762.1.4.1146.2326_20240619','2.16.840.1.113762.1.4.1146.2326_449098005');
-INSERT INTO valueset_to_concept VALUES('3161','2.16.840.1.113762.1.4.1146.2326_20240619','2.16.840.1.113762.1.4.1146.2326_449099002');
-INSERT INTO valueset_to_concept VALUES('3162','2.16.840.1.113762.1.4.1146.2326_20240619','2.16.840.1.113762.1.4.1146.2326_449111002');
-INSERT INTO valueset_to_concept VALUES('3163','2.16.840.1.113762.1.4.1146.2326_20240619','2.16.840.1.113762.1.4.1146.2326_449315003');
-INSERT INTO valueset_to_concept VALUES('3164','2.16.840.1.113762.1.4.1146.2326_20240619','2.16.840.1.113762.1.4.1146.2326_449316002');
-INSERT INTO valueset_to_concept VALUES('3165','2.16.840.1.113762.1.4.1146.2326_20240619','2.16.840.1.113762.1.4.1146.2326_45503006');
-INSERT INTO valueset_to_concept VALUES('3166','2.16.840.1.113762.1.4.1146.2326_20240619','2.16.840.1.113762.1.4.1146.2326_460614005');
-INSERT INTO valueset_to_concept VALUES('3167','2.16.840.1.113762.1.4.1146.2326_20240619','2.16.840.1.113762.1.4.1146.2326_871583003');
-INSERT INTO valueset_to_concept VALUES('3168','2.16.840.1.113762.1.4.1146.2326_20240619','2.16.840.1.113762.1.4.1146.2326_871585005');
-INSERT INTO valueset_to_concept VALUES('3169','2.16.840.1.113762.1.4.1146.2326_20240619','2.16.840.1.113762.1.4.1146.2326_871659004');
-INSERT INTO valueset_to_concept VALUES('3170','2.16.840.1.113762.1.4.1146.2327_20240619','2.16.840.1.113762.1.4.1146.2327_Q20.4');
-INSERT INTO valueset_to_concept VALUES('3171','2.16.840.1.113762.1.4.1146.193_20181031','2.16.840.1.113762.1.4.1146.193_A20');
-INSERT INTO valueset_to_concept VALUES('3172','2.16.840.1.113762.1.4.1146.193_20181031','2.16.840.1.113762.1.4.1146.193_A20.0');
-INSERT INTO valueset_to_concept VALUES('3173','2.16.840.1.113762.1.4.1146.193_20181031','2.16.840.1.113762.1.4.1146.193_A20.1');
-INSERT INTO valueset_to_concept VALUES('3174','2.16.840.1.113762.1.4.1146.193_20181031','2.16.840.1.113762.1.4.1146.193_A20.2');
-INSERT INTO valueset_to_concept VALUES('3175','2.16.840.1.113762.1.4.1146.193_20181031','2.16.840.1.113762.1.4.1146.193_A20.7');
-INSERT INTO valueset_to_concept VALUES('3176','2.16.840.1.113762.1.4.1146.193_20181031','2.16.840.1.113762.1.4.1146.193_A20.8');
-INSERT INTO valueset_to_concept VALUES('3177','2.16.840.1.113762.1.4.1146.193_20181031','2.16.840.1.113762.1.4.1146.193_A20.9');
-INSERT INTO valueset_to_concept VALUES('3178','2.16.840.1.113762.1.4.1146.193_20181031','2.16.840.1.113762.1.4.1146.193_A20.3');
-INSERT INTO valueset_to_concept VALUES('3179','2.16.840.1.113762.1.4.1146.195_20200515','2.16.840.1.113762.1.4.1146.195_429586004');
-INSERT INTO valueset_to_concept VALUES('3180','2.16.840.1.113762.1.4.1146.195_20200515','2.16.840.1.113762.1.4.1146.195_56672005');
-INSERT INTO valueset_to_concept VALUES('3181','2.16.840.1.113762.1.4.1146.195_20200515','2.16.840.1.113762.1.4.1146.195_735958007');
-INSERT INTO valueset_to_concept VALUES('3182','2.16.840.1.113762.1.4.1146.195_20200515','2.16.840.1.113762.1.4.1146.195_75116005');
-INSERT INTO valueset_to_concept VALUES('3183','2.16.840.1.113762.1.4.1146.195_20200515','2.16.840.1.113762.1.4.1146.195_81164001');
-INSERT INTO valueset_to_concept VALUES('3184','2.16.840.1.113762.1.4.1146.196_20181031','2.16.840.1.113762.1.4.1146.196_A70');
-INSERT INTO valueset_to_concept VALUES('3185','2.16.840.1.113762.1.4.1146.198_20181031','2.16.840.1.113762.1.4.1146.198_A82');
-INSERT INTO valueset_to_concept VALUES('3186','2.16.840.1.113762.1.4.1146.198_20181031','2.16.840.1.113762.1.4.1146.198_A82.0');
-INSERT INTO valueset_to_concept VALUES('3187','2.16.840.1.113762.1.4.1146.198_20181031','2.16.840.1.113762.1.4.1146.198_A82.1');
-INSERT INTO valueset_to_concept VALUES('3188','2.16.840.1.113762.1.4.1146.198_20181031','2.16.840.1.113762.1.4.1146.198_A82.9');
-INSERT INTO valueset_to_concept VALUES('3189','2.16.840.1.113762.1.4.1146.2324_20240620','2.16.840.1.113762.1.4.1146.2324_62067003');
-INSERT INTO valueset_to_concept VALUES('3190','2.16.840.1.113762.1.4.1146.2325_20240620','2.16.840.1.113762.1.4.1146.2325_Q23.4');
-INSERT INTO valueset_to_concept VALUES('3191','2.16.840.1.113762.1.4.1146.1357_20210526','2.16.840.1.113762.1.4.1146.1357_B17.2');
-INSERT INTO valueset_to_concept VALUES('3192','2.16.840.1.113762.1.4.1146.2201_20230602','2.16.840.1.113762.1.4.1146.2201_T60.3X1A');
-INSERT INTO valueset_to_concept VALUES('3193','2.16.840.1.113762.1.4.1146.2322_20240620','2.16.840.1.113762.1.4.1146.2322_253298003');
-INSERT INTO valueset_to_concept VALUES('3194','2.16.840.1.113762.1.4.1146.2322_20240620','2.16.840.1.113762.1.4.1146.2322_253299006');
-INSERT INTO valueset_to_concept VALUES('3195','2.16.840.1.113762.1.4.1146.2322_20240620','2.16.840.1.113762.1.4.1146.2322_253300003');
-INSERT INTO valueset_to_concept VALUES('3196','2.16.840.1.113762.1.4.1146.2322_20240620','2.16.840.1.113762.1.4.1146.2322_447284002');
-INSERT INTO valueset_to_concept VALUES('3197','2.16.840.1.113762.1.4.1146.2322_20240620','2.16.840.1.113762.1.4.1146.2322_448516008');
-INSERT INTO valueset_to_concept VALUES('3198','2.16.840.1.113762.1.4.1146.2322_20240620','2.16.840.1.113762.1.4.1146.2322_448794008');
-INSERT INTO valueset_to_concept VALUES('3199','2.16.840.1.113762.1.4.1146.2322_20240620','2.16.840.1.113762.1.4.1146.2322_7484005');
-INSERT INTO valueset_to_concept VALUES('3200','2.16.840.1.113762.1.4.1146.2322_20240620','2.16.840.1.113762.1.4.1146.2322_762251008');
-INSERT INTO valueset_to_concept VALUES('3201','2.16.840.1.113762.1.4.1146.2322_20240620','2.16.840.1.113762.1.4.1146.2322_840507004');
-INSERT INTO valueset_to_concept VALUES('3202','2.16.840.1.113762.1.4.1146.2322_20240620','2.16.840.1.113762.1.4.1146.2322_871599009');
-INSERT INTO valueset_to_concept VALUES('3203','2.16.840.1.113762.1.4.1146.2322_20240620','2.16.840.1.113762.1.4.1146.2322_871601006');
-INSERT INTO valueset_to_concept VALUES('3204','2.16.840.1.113762.1.4.1146.1356_20220601','2.16.840.1.113762.1.4.1146.1356_235867002');
-INSERT INTO valueset_to_concept VALUES('3205','2.16.840.1.113762.1.4.1146.1356_20220601','2.16.840.1.113762.1.4.1146.1356_450880008');
-INSERT INTO valueset_to_concept VALUES('3206','2.16.840.1.113762.1.4.1146.1356_20220601','2.16.840.1.113762.1.4.1146.1356_7111000119109');
-INSERT INTO valueset_to_concept VALUES('3207','2.16.840.1.113762.1.4.1146.2323_20240620','2.16.840.1.113762.1.4.1146.2323_Q20.1');
-INSERT INTO valueset_to_concept VALUES('3208','2.16.840.1.113762.1.4.1146.2320_20240619','2.16.840.1.113762.1.4.1146.2320_Q22.1');
-INSERT INTO valueset_to_concept VALUES('3209','2.16.840.1.113762.1.4.1146.1471_20240123','2.16.840.1.113762.1.4.1146.1471_111912001');
-INSERT INTO valueset_to_concept VALUES('3210','2.16.840.1.113762.1.4.1146.1471_20240123','2.16.840.1.113762.1.4.1146.1471_1193802004');
-INSERT INTO valueset_to_concept VALUES('3211','2.16.840.1.113762.1.4.1146.1471_20240123','2.16.840.1.113762.1.4.1146.1471_1193803009');
-INSERT INTO valueset_to_concept VALUES('3212','2.16.840.1.113762.1.4.1146.1471_20240123','2.16.840.1.113762.1.4.1146.1471_186116005');
-INSERT INTO valueset_to_concept VALUES('3213','2.16.840.1.113762.1.4.1146.1471_20240123','2.16.840.1.113762.1.4.1146.1471_235747003');
-INSERT INTO valueset_to_concept VALUES('3214','2.16.840.1.113762.1.4.1146.1471_20240123','2.16.840.1.113762.1.4.1146.1471_235748008');
-INSERT INTO valueset_to_concept VALUES('3215','2.16.840.1.113762.1.4.1146.1471_20240123','2.16.840.1.113762.1.4.1146.1471_237105008');
-INSERT INTO valueset_to_concept VALUES('3216','2.16.840.1.113762.1.4.1146.1471_20240123','2.16.840.1.113762.1.4.1146.1471_238449000');
-INSERT INTO valueset_to_concept VALUES('3217','2.16.840.1.113762.1.4.1146.1471_20240123','2.16.840.1.113762.1.4.1146.1471_240363009');
-INSERT INTO valueset_to_concept VALUES('3218','2.16.840.1.113762.1.4.1146.1471_20240123','2.16.840.1.113762.1.4.1146.1471_240364003');
-INSERT INTO valueset_to_concept VALUES('3219','2.16.840.1.113762.1.4.1146.1471_20240123','2.16.840.1.113762.1.4.1146.1471_240663001');
-INSERT INTO valueset_to_concept VALUES('3220','2.16.840.1.113762.1.4.1146.1471_20240123','2.16.840.1.113762.1.4.1146.1471_240664007');
-INSERT INTO valueset_to_concept VALUES('3221','2.16.840.1.113762.1.4.1146.1471_20240123','2.16.840.1.113762.1.4.1146.1471_26826005');
-INSERT INTO valueset_to_concept VALUES('3222','2.16.840.1.113762.1.4.1146.1471_20240123','2.16.840.1.113762.1.4.1146.1471_27908001');
-INSERT INTO valueset_to_concept VALUES('3223','2.16.840.1.113762.1.4.1146.1471_20240123','2.16.840.1.113762.1.4.1146.1471_387754006');
-INSERT INTO valueset_to_concept VALUES('3224','2.16.840.1.113762.1.4.1146.1471_20240123','2.16.840.1.113762.1.4.1146.1471_388759003');
-INSERT INTO valueset_to_concept VALUES('3225','2.16.840.1.113762.1.4.1146.1471_20240123','2.16.840.1.113762.1.4.1146.1471_39224005');
-INSERT INTO valueset_to_concept VALUES('3226','2.16.840.1.113762.1.4.1146.1471_20240123','2.16.840.1.113762.1.4.1146.1471_399924003');
-INSERT INTO valueset_to_concept VALUES('3227','2.16.840.1.113762.1.4.1146.1471_20240123','2.16.840.1.113762.1.4.1146.1471_400086005');
-INSERT INTO valueset_to_concept VALUES('3228','2.16.840.1.113762.1.4.1146.1471_20240123','2.16.840.1.113762.1.4.1146.1471_50227004');
-INSERT INTO valueset_to_concept VALUES('3229','2.16.840.1.113762.1.4.1146.1471_20240123','2.16.840.1.113762.1.4.1146.1471_55023005');
-INSERT INTO valueset_to_concept VALUES('3230','2.16.840.1.113762.1.4.1146.1471_20240123','2.16.840.1.113762.1.4.1146.1471_65095005');
-INSERT INTO valueset_to_concept VALUES('3231','2.16.840.1.113762.1.4.1146.1471_20240123','2.16.840.1.113762.1.4.1146.1471_721807009');
-INSERT INTO valueset_to_concept VALUES('3232','2.16.840.1.113762.1.4.1146.1471_20240123','2.16.840.1.113762.1.4.1146.1471_721808004');
-INSERT INTO valueset_to_concept VALUES('3233','2.16.840.1.113762.1.4.1146.1471_20240123','2.16.840.1.113762.1.4.1146.1471_733153004');
-INSERT INTO valueset_to_concept VALUES('3234','2.16.840.1.113762.1.4.1146.1471_20240123','2.16.840.1.113762.1.4.1146.1471_733172004');
-INSERT INTO valueset_to_concept VALUES('3235','2.16.840.1.113762.1.4.1146.1471_20240123','2.16.840.1.113762.1.4.1146.1471_75119003');
-INSERT INTO valueset_to_concept VALUES('3236','2.16.840.1.113762.1.4.1146.1471_20240123','2.16.840.1.113762.1.4.1146.1471_866122003');
-INSERT INTO valueset_to_concept VALUES('3237','2.16.840.1.113762.1.4.1146.1471_20240123','2.16.840.1.113762.1.4.1146.1471_8776008');
-INSERT INTO valueset_to_concept VALUES('3238','2.16.840.1.113762.1.4.1146.1471_20240123','2.16.840.1.113762.1.4.1146.1471_95897009');
-INSERT INTO valueset_to_concept VALUES('3239','2.16.840.1.113762.1.4.1146.2321_20240619','2.16.840.1.113762.1.4.1146.2321_472845002');
-INSERT INTO valueset_to_concept VALUES('3240','2.16.840.1.113762.1.4.1146.1473_20230125','2.16.840.1.113762.1.4.1146.1473_A06.0');
-INSERT INTO valueset_to_concept VALUES('3241','2.16.840.1.113762.1.4.1146.1473_20230125','2.16.840.1.113762.1.4.1146.1473_A06.2');
-INSERT INTO valueset_to_concept VALUES('3242','2.16.840.1.113762.1.4.1146.1473_20230125','2.16.840.1.113762.1.4.1146.1473_A06.3');
-INSERT INTO valueset_to_concept VALUES('3243','2.16.840.1.113762.1.4.1146.1473_20230125','2.16.840.1.113762.1.4.1146.1473_A06.4');
-INSERT INTO valueset_to_concept VALUES('3244','2.16.840.1.113762.1.4.1146.1473_20230125','2.16.840.1.113762.1.4.1146.1473_A06.5');
-INSERT INTO valueset_to_concept VALUES('3245','2.16.840.1.113762.1.4.1146.1473_20230125','2.16.840.1.113762.1.4.1146.1473_A06.6');
-INSERT INTO valueset_to_concept VALUES('3246','2.16.840.1.113762.1.4.1146.1473_20230125','2.16.840.1.113762.1.4.1146.1473_A06.7');
-INSERT INTO valueset_to_concept VALUES('3247','2.16.840.1.113762.1.4.1146.1473_20230125','2.16.840.1.113762.1.4.1146.1473_A06.81');
-INSERT INTO valueset_to_concept VALUES('3248','2.16.840.1.113762.1.4.1146.1473_20230125','2.16.840.1.113762.1.4.1146.1473_A06.82');
-INSERT INTO valueset_to_concept VALUES('3249','2.16.840.1.113762.1.4.1146.1473_20230125','2.16.840.1.113762.1.4.1146.1473_A06.89');
-INSERT INTO valueset_to_concept VALUES('3250','2.16.840.1.113762.1.4.1146.1473_20230125','2.16.840.1.113762.1.4.1146.1473_A06.9');
-INSERT INTO valueset_to_concept VALUES('3251','2.16.840.1.113762.1.4.1146.2339_20240619','2.16.840.1.113762.1.4.1146.2339_Q22.4');
-INSERT INTO valueset_to_concept VALUES('3252','2.16.840.1.113762.1.4.1146.2337_20240619','2.16.840.1.113762.1.4.1146.2337_Q22.4');
-INSERT INTO valueset_to_concept VALUES('3253','2.16.840.1.113762.1.4.1146.1008_20191227','2.16.840.1.113762.1.4.1146.1008_T40.0X1A');
-INSERT INTO valueset_to_concept VALUES('3254','2.16.840.1.113762.1.4.1146.1008_20191227','2.16.840.1.113762.1.4.1146.1008_T40.0X2A');
-INSERT INTO valueset_to_concept VALUES('3255','2.16.840.1.113762.1.4.1146.1008_20191227','2.16.840.1.113762.1.4.1146.1008_T40.0X3A');
-INSERT INTO valueset_to_concept VALUES('3256','2.16.840.1.113762.1.4.1146.1008_20191227','2.16.840.1.113762.1.4.1146.1008_T40.0X4A');
-INSERT INTO valueset_to_concept VALUES('3257','2.16.840.1.113762.1.4.1146.1008_20191227','2.16.840.1.113762.1.4.1146.1008_T40.1X1A');
-INSERT INTO valueset_to_concept VALUES('3258','2.16.840.1.113762.1.4.1146.1008_20191227','2.16.840.1.113762.1.4.1146.1008_T40.1X2A');
-INSERT INTO valueset_to_concept VALUES('3259','2.16.840.1.113762.1.4.1146.1008_20191227','2.16.840.1.113762.1.4.1146.1008_T40.1X3A');
-INSERT INTO valueset_to_concept VALUES('3260','2.16.840.1.113762.1.4.1146.1008_20191227','2.16.840.1.113762.1.4.1146.1008_T40.1X4A');
-INSERT INTO valueset_to_concept VALUES('3261','2.16.840.1.113762.1.4.1146.1008_20191227','2.16.840.1.113762.1.4.1146.1008_T40.2X1A');
-INSERT INTO valueset_to_concept VALUES('3262','2.16.840.1.113762.1.4.1146.1008_20191227','2.16.840.1.113762.1.4.1146.1008_T40.2X2A');
-INSERT INTO valueset_to_concept VALUES('3263','2.16.840.1.113762.1.4.1146.1008_20191227','2.16.840.1.113762.1.4.1146.1008_T40.2X3A');
-INSERT INTO valueset_to_concept VALUES('3264','2.16.840.1.113762.1.4.1146.1008_20191227','2.16.840.1.113762.1.4.1146.1008_T40.2X4A');
-INSERT INTO valueset_to_concept VALUES('3265','2.16.840.1.113762.1.4.1146.1008_20191227','2.16.840.1.113762.1.4.1146.1008_T40.3X1A');
-INSERT INTO valueset_to_concept VALUES('3266','2.16.840.1.113762.1.4.1146.1008_20191227','2.16.840.1.113762.1.4.1146.1008_T40.3X2A');
-INSERT INTO valueset_to_concept VALUES('3267','2.16.840.1.113762.1.4.1146.1008_20191227','2.16.840.1.113762.1.4.1146.1008_T40.3X3A');
-INSERT INTO valueset_to_concept VALUES('3268','2.16.840.1.113762.1.4.1146.1008_20191227','2.16.840.1.113762.1.4.1146.1008_T40.3X4A');
-INSERT INTO valueset_to_concept VALUES('3269','2.16.840.1.113762.1.4.1146.1008_20191227','2.16.840.1.113762.1.4.1146.1008_T40.601A');
-INSERT INTO valueset_to_concept VALUES('3270','2.16.840.1.113762.1.4.1146.1008_20191227','2.16.840.1.113762.1.4.1146.1008_T40.602A');
-INSERT INTO valueset_to_concept VALUES('3271','2.16.840.1.113762.1.4.1146.1008_20191227','2.16.840.1.113762.1.4.1146.1008_T40.603A');
-INSERT INTO valueset_to_concept VALUES('3272','2.16.840.1.113762.1.4.1146.1008_20191227','2.16.840.1.113762.1.4.1146.1008_T40.604A');
-INSERT INTO valueset_to_concept VALUES('3273','2.16.840.1.113762.1.4.1146.1008_20191227','2.16.840.1.113762.1.4.1146.1008_T40.691A');
-INSERT INTO valueset_to_concept VALUES('3274','2.16.840.1.113762.1.4.1146.1008_20191227','2.16.840.1.113762.1.4.1146.1008_T40.692A');
-INSERT INTO valueset_to_concept VALUES('3275','2.16.840.1.113762.1.4.1146.1008_20191227','2.16.840.1.113762.1.4.1146.1008_T40.693A');
-INSERT INTO valueset_to_concept VALUES('3276','2.16.840.1.113762.1.4.1146.1008_20191227','2.16.840.1.113762.1.4.1146.1008_T40.694A');
-INSERT INTO valueset_to_concept VALUES('3277','2.16.840.1.113762.1.4.1146.2338_20240619','2.16.840.1.113762.1.4.1146.2338_36233006');
-INSERT INTO valueset_to_concept VALUES('3278','2.16.840.1.113762.1.4.1146.2338_20240619','2.16.840.1.113762.1.4.1146.2338_204354004');
-INSERT INTO valueset_to_concept VALUES('3279','2.16.840.1.113762.1.4.1146.2338_20240619','2.16.840.1.113762.1.4.1146.2338_448074008');
-INSERT INTO valueset_to_concept VALUES('3280','2.16.840.1.113762.1.4.1146.190_20200515','2.16.840.1.113762.1.4.1146.190_14168008');
-INSERT INTO valueset_to_concept VALUES('3281','2.16.840.1.113762.1.4.1146.190_20200515','2.16.840.1.113762.1.4.1146.190_240461007');
-INSERT INTO valueset_to_concept VALUES('3282','2.16.840.1.113762.1.4.1146.190_20200515','2.16.840.1.113762.1.4.1146.190_240462000');
-INSERT INTO valueset_to_concept VALUES('3283','2.16.840.1.113762.1.4.1146.190_20200515','2.16.840.1.113762.1.4.1146.190_240463005');
-INSERT INTO valueset_to_concept VALUES('3284','2.16.840.1.113762.1.4.1146.190_20200515','2.16.840.1.113762.1.4.1146.190_240464004');
-INSERT INTO valueset_to_concept VALUES('3285','2.16.840.1.113762.1.4.1146.190_20200515','2.16.840.1.113762.1.4.1146.190_240465003');
-INSERT INTO valueset_to_concept VALUES('3286','2.16.840.1.113762.1.4.1146.190_20200515','2.16.840.1.113762.1.4.1146.190_266196000');
-INSERT INTO valueset_to_concept VALUES('3287','2.16.840.1.113762.1.4.1146.190_20200515','2.16.840.1.113762.1.4.1146.190_398446008');
-INSERT INTO valueset_to_concept VALUES('3288','2.16.840.1.113762.1.4.1146.190_20200515','2.16.840.1.113762.1.4.1146.190_415035006');
-INSERT INTO valueset_to_concept VALUES('3289','2.16.840.1.113762.1.4.1146.190_20200515','2.16.840.1.113762.1.4.1146.190_59671002');
-INSERT INTO valueset_to_concept VALUES('3290','2.16.840.1.113762.1.4.1146.190_20200515','2.16.840.1.113762.1.4.1146.190_87330002');
-INSERT INTO valueset_to_concept VALUES('3291','2.16.840.1.113762.1.4.1146.192_20181031','2.16.840.1.113762.1.4.1146.192_186287003');
-INSERT INTO valueset_to_concept VALUES('3292','2.16.840.1.113762.1.4.1146.192_20181031','2.16.840.1.113762.1.4.1146.192_240384004');
-INSERT INTO valueset_to_concept VALUES('3293','2.16.840.1.113762.1.4.1146.192_20181031','2.16.840.1.113762.1.4.1146.192_35339003');
-INSERT INTO valueset_to_concept VALUES('3294','2.16.840.1.113762.1.4.1146.192_20181031','2.16.840.1.113762.1.4.1146.192_38976008');
-INSERT INTO valueset_to_concept VALUES('3295','2.16.840.1.113762.1.4.1146.192_20181031','2.16.840.1.113762.1.4.1146.192_43484003');
-INSERT INTO valueset_to_concept VALUES('3296','2.16.840.1.113762.1.4.1146.192_20181031','2.16.840.1.113762.1.4.1146.192_50797007');
-INSERT INTO valueset_to_concept VALUES('3297','2.16.840.1.113762.1.4.1146.192_20181031','2.16.840.1.113762.1.4.1146.192_58750007');
-INSERT INTO valueset_to_concept VALUES('3298','2.16.840.1.113762.1.4.1146.192_20181031','2.16.840.1.113762.1.4.1146.192_67525007');
-INSERT INTO valueset_to_concept VALUES('3299','2.16.840.1.113762.1.4.1146.192_20181031','2.16.840.1.113762.1.4.1146.192_9012003');
-INSERT INTO valueset_to_concept VALUES('3300','2.16.840.1.113762.1.4.1146.192_20181031','2.16.840.1.113762.1.4.1146.192_186284005');
-INSERT INTO valueset_to_concept VALUES('3301','2.16.840.1.113762.1.4.1146.182_20200515','2.16.840.1.113762.1.4.1146.182_B38');
-INSERT INTO valueset_to_concept VALUES('3302','2.16.840.1.113762.1.4.1146.182_20200515','2.16.840.1.113762.1.4.1146.182_B38.0');
-INSERT INTO valueset_to_concept VALUES('3303','2.16.840.1.113762.1.4.1146.182_20200515','2.16.840.1.113762.1.4.1146.182_B38.1');
-INSERT INTO valueset_to_concept VALUES('3304','2.16.840.1.113762.1.4.1146.182_20200515','2.16.840.1.113762.1.4.1146.182_B38.2');
-INSERT INTO valueset_to_concept VALUES('3305','2.16.840.1.113762.1.4.1146.182_20200515','2.16.840.1.113762.1.4.1146.182_B38.3');
-INSERT INTO valueset_to_concept VALUES('3306','2.16.840.1.113762.1.4.1146.182_20200515','2.16.840.1.113762.1.4.1146.182_B38.7');
-INSERT INTO valueset_to_concept VALUES('3307','2.16.840.1.113762.1.4.1146.182_20200515','2.16.840.1.113762.1.4.1146.182_B38.8');
-INSERT INTO valueset_to_concept VALUES('3308','2.16.840.1.113762.1.4.1146.182_20200515','2.16.840.1.113762.1.4.1146.182_B38.81');
-INSERT INTO valueset_to_concept VALUES('3309','2.16.840.1.113762.1.4.1146.182_20200515','2.16.840.1.113762.1.4.1146.182_B38.89');
-INSERT INTO valueset_to_concept VALUES('3310','2.16.840.1.113762.1.4.1146.182_20200515','2.16.840.1.113762.1.4.1146.182_B38.9');
-INSERT INTO valueset_to_concept VALUES('3311','2.16.840.1.113762.1.4.1146.182_20200515','2.16.840.1.113762.1.4.1146.182_B38.4');
-INSERT INTO valueset_to_concept VALUES('3312','2.16.840.1.113762.1.4.1146.1481_20220118','2.16.840.1.113762.1.4.1146.1481_A08.11');
-INSERT INTO valueset_to_concept VALUES('3313','2.16.840.1.113762.1.4.1146.184_20180620','2.16.840.1.113762.1.4.1146.184_A23');
-INSERT INTO valueset_to_concept VALUES('3314','2.16.840.1.113762.1.4.1146.184_20180620','2.16.840.1.113762.1.4.1146.184_A23.0');
-INSERT INTO valueset_to_concept VALUES('3315','2.16.840.1.113762.1.4.1146.184_20180620','2.16.840.1.113762.1.4.1146.184_A23.1');
-INSERT INTO valueset_to_concept VALUES('3316','2.16.840.1.113762.1.4.1146.184_20180620','2.16.840.1.113762.1.4.1146.184_A23.2');
-INSERT INTO valueset_to_concept VALUES('3317','2.16.840.1.113762.1.4.1146.184_20180620','2.16.840.1.113762.1.4.1146.184_A23.3');
-INSERT INTO valueset_to_concept VALUES('3318','2.16.840.1.113762.1.4.1146.184_20180620','2.16.840.1.113762.1.4.1146.184_A23.8');
-INSERT INTO valueset_to_concept VALUES('3319','2.16.840.1.113762.1.4.1146.184_20180620','2.16.840.1.113762.1.4.1146.184_A23.9');
-INSERT INTO valueset_to_concept VALUES('3320','2.16.840.1.113762.1.4.1146.1480_20220118','2.16.840.1.113762.1.4.1146.1480_24789006');
-INSERT INTO valueset_to_concept VALUES('3321','2.16.840.1.113762.1.4.1146.1480_20220118','2.16.840.1.113762.1.4.1146.1480_445152004');
-INSERT INTO valueset_to_concept VALUES('3322','2.16.840.1.113762.1.4.1146.1480_20220118','2.16.840.1.113762.1.4.1146.1480_721763002');
-INSERT INTO valueset_to_concept VALUES('3323','2.16.840.1.113762.1.4.1146.185_20240123','2.16.840.1.113762.1.4.1146.185_1177063000');
-INSERT INTO valueset_to_concept VALUES('3324','2.16.840.1.113762.1.4.1146.185_20240123','2.16.840.1.113762.1.4.1146.185_1177065007');
-INSERT INTO valueset_to_concept VALUES('3325','2.16.840.1.113762.1.4.1146.185_20240123','2.16.840.1.113762.1.4.1146.185_1177066008');
-INSERT INTO valueset_to_concept VALUES('3326','2.16.840.1.113762.1.4.1146.185_20240123','2.16.840.1.113762.1.4.1146.185_1177068009');
-INSERT INTO valueset_to_concept VALUES('3327','2.16.840.1.113762.1.4.1146.185_20240123','2.16.840.1.113762.1.4.1146.185_202698007');
-INSERT INTO valueset_to_concept VALUES('3328','2.16.840.1.113762.1.4.1146.185_20240123','2.16.840.1.113762.1.4.1146.185_402127008');
-INSERT INTO valueset_to_concept VALUES('3329','2.16.840.1.113762.1.4.1146.185_20240123','2.16.840.1.113762.1.4.1146.185_406564009');
-INSERT INTO valueset_to_concept VALUES('3330','2.16.840.1.113762.1.4.1146.185_20240123','2.16.840.1.113762.1.4.1146.185_413716003');
-INSERT INTO valueset_to_concept VALUES('3331','2.16.840.1.113762.1.4.1146.185_20240123','2.16.840.1.113762.1.4.1146.185_427795000');
-INSERT INTO valueset_to_concept VALUES('3332','2.16.840.1.113762.1.4.1146.185_20240123','2.16.840.1.113762.1.4.1146.185_427999003');
-INSERT INTO valueset_to_concept VALUES('3333','2.16.840.1.113762.1.4.1146.185_20240123','2.16.840.1.113762.1.4.1146.185_428174001');
-INSERT INTO valueset_to_concept VALUES('3334','2.16.840.1.113762.1.4.1146.185_20240123','2.16.840.1.113762.1.4.1146.185_428508008');
-INSERT INTO valueset_to_concept VALUES('3335','2.16.840.1.113762.1.4.1146.185_20240123','2.16.840.1.113762.1.4.1146.185_428592003');
-INSERT INTO valueset_to_concept VALUES('3336','2.16.840.1.113762.1.4.1146.185_20240123','2.16.840.1.113762.1.4.1146.185_429600003');
-INSERT INTO valueset_to_concept VALUES('3337','2.16.840.1.113762.1.4.1146.185_20240123','2.16.840.1.113762.1.4.1146.185_75702008');
-INSERT INTO valueset_to_concept VALUES('3338','2.16.840.1.113762.1.4.1146.187_20230125','2.16.840.1.113762.1.4.1146.187_20927009');
-INSERT INTO valueset_to_concept VALUES('3339','2.16.840.1.113762.1.4.1146.187_20230125','2.16.840.1.113762.1.4.1146.187_38362002');
-INSERT INTO valueset_to_concept VALUES('3340','2.16.840.1.113762.1.4.1146.187_20230125','2.16.840.1.113762.1.4.1146.187_409671005');
-INSERT INTO valueset_to_concept VALUES('3341','2.16.840.1.113762.1.4.1146.187_20230125','2.16.840.1.113762.1.4.1146.187_409676000');
-INSERT INTO valueset_to_concept VALUES('3342','2.16.840.1.113762.1.4.1146.187_20230125','2.16.840.1.113762.1.4.1146.187_409677009');
-INSERT INTO valueset_to_concept VALUES('3343','2.16.840.1.113762.1.4.1146.187_20230125','2.16.840.1.113762.1.4.1146.187_409678004');
-INSERT INTO valueset_to_concept VALUES('3344','2.16.840.1.113762.1.4.1146.187_20230125','2.16.840.1.113762.1.4.1146.187_409679007');
-INSERT INTO valueset_to_concept VALUES('3345','2.16.840.1.113762.1.4.1146.187_20230125','2.16.840.1.113762.1.4.1146.187_722862003');
-INSERT INTO valueset_to_concept VALUES('3346','2.16.840.1.113762.1.4.1146.187_20230125','2.16.840.1.113762.1.4.1146.187_722863008');
-INSERT INTO valueset_to_concept VALUES('3347','2.16.840.1.113762.1.4.1146.187_20230125','2.16.840.1.113762.1.4.1146.187_866057003');
-INSERT INTO valueset_to_concept VALUES('3348','2.16.840.1.113762.1.4.1146.187_20230125','2.16.840.1.113762.1.4.1146.187_1163101003');
-INSERT INTO valueset_to_concept VALUES('3349','2.16.840.1.113762.1.4.1146.188_20181031','2.16.840.1.113762.1.4.1146.188_A90');
-INSERT INTO valueset_to_concept VALUES('3350','2.16.840.1.113762.1.4.1146.188_20181031','2.16.840.1.113762.1.4.1146.188_A91');
-INSERT INTO valueset_to_concept VALUES('3351','2.16.840.1.113762.1.4.1146.1124_20240123','2.16.840.1.113762.1.4.1146.1124_1017214008');
-INSERT INTO valueset_to_concept VALUES('3352','2.16.840.1.113762.1.4.1146.1124_20240123','2.16.840.1.113762.1.4.1146.1124_1119302008');
-INSERT INTO valueset_to_concept VALUES('3353','2.16.840.1.113762.1.4.1146.1124_20240123','2.16.840.1.113762.1.4.1146.1124_119731000146105');
-INSERT INTO valueset_to_concept VALUES('3354','2.16.840.1.113762.1.4.1146.1124_20240123','2.16.840.1.113762.1.4.1146.1124_119741000146102');
-INSERT INTO valueset_to_concept VALUES('3355','2.16.840.1.113762.1.4.1146.1124_20240123','2.16.840.1.113762.1.4.1146.1124_119751000146104');
-INSERT INTO valueset_to_concept VALUES('3356','2.16.840.1.113762.1.4.1146.1124_20240123','2.16.840.1.113762.1.4.1146.1124_119981000146107');
-INSERT INTO valueset_to_concept VALUES('3357','2.16.840.1.113762.1.4.1146.1124_20240123','2.16.840.1.113762.1.4.1146.1124_1240521000000100');
-INSERT INTO valueset_to_concept VALUES('3358','2.16.840.1.113762.1.4.1146.1124_20240123','2.16.840.1.113762.1.4.1146.1124_1240531000000103');
-INSERT INTO valueset_to_concept VALUES('3359','2.16.840.1.113762.1.4.1146.1124_20240123','2.16.840.1.113762.1.4.1146.1124_1240541000000107');
-INSERT INTO valueset_to_concept VALUES('3360','2.16.840.1.113762.1.4.1146.1124_20240123','2.16.840.1.113762.1.4.1146.1124_1240561000000108');
-INSERT INTO valueset_to_concept VALUES('3361','2.16.840.1.113762.1.4.1146.1124_20240123','2.16.840.1.113762.1.4.1146.1124_138389411000119105');
-INSERT INTO valueset_to_concept VALUES('3362','2.16.840.1.113762.1.4.1146.1124_20240123','2.16.840.1.113762.1.4.1146.1124_189486241000119100');
-INSERT INTO valueset_to_concept VALUES('3363','2.16.840.1.113762.1.4.1146.1124_20240123','2.16.840.1.113762.1.4.1146.1124_840539006');
-INSERT INTO valueset_to_concept VALUES('3364','2.16.840.1.113762.1.4.1146.1124_20240123','2.16.840.1.113762.1.4.1146.1124_866151004');
-INSERT INTO valueset_to_concept VALUES('3365','2.16.840.1.113762.1.4.1146.1124_20240123','2.16.840.1.113762.1.4.1146.1124_866152006');
-INSERT INTO valueset_to_concept VALUES('3366','2.16.840.1.113762.1.4.1146.1124_20240123','2.16.840.1.113762.1.4.1146.1124_870588003');
-INSERT INTO valueset_to_concept VALUES('3367','2.16.840.1.113762.1.4.1146.1124_20240123','2.16.840.1.113762.1.4.1146.1124_870589006');
-INSERT INTO valueset_to_concept VALUES('3368','2.16.840.1.113762.1.4.1146.1124_20240123','2.16.840.1.113762.1.4.1146.1124_870590002');
-INSERT INTO valueset_to_concept VALUES('3369','2.16.840.1.113762.1.4.1146.1124_20240123','2.16.840.1.113762.1.4.1146.1124_870591003');
-INSERT INTO valueset_to_concept VALUES('3370','2.16.840.1.113762.1.4.1146.1124_20240123','2.16.840.1.113762.1.4.1146.1124_880529761000119102');
-INSERT INTO valueset_to_concept VALUES('3371','2.16.840.1.113762.1.4.1146.1124_20240123','2.16.840.1.113762.1.4.1146.1124_882784691000119100');
-INSERT INTO valueset_to_concept VALUES('3372','2.16.840.1.113762.1.4.1146.1124_20240123','2.16.840.1.113762.1.4.1146.1124_1217296006');
-INSERT INTO valueset_to_concept VALUES('3373','2.16.840.1.113762.1.4.1146.1124_20240123','2.16.840.1.113762.1.4.1146.1124_674814021000119106');
-INSERT INTO valueset_to_concept VALUES('3374','2.16.840.1.113762.1.4.1146.1245_20210121','2.16.840.1.113762.1.4.1146.1245_B40');
-INSERT INTO valueset_to_concept VALUES('3375','2.16.840.1.113762.1.4.1146.1245_20210121','2.16.840.1.113762.1.4.1146.1245_B40.0');
-INSERT INTO valueset_to_concept VALUES('3376','2.16.840.1.113762.1.4.1146.1245_20210121','2.16.840.1.113762.1.4.1146.1245_B40.1');
-INSERT INTO valueset_to_concept VALUES('3377','2.16.840.1.113762.1.4.1146.1245_20210121','2.16.840.1.113762.1.4.1146.1245_B40.2');
-INSERT INTO valueset_to_concept VALUES('3378','2.16.840.1.113762.1.4.1146.1245_20210121','2.16.840.1.113762.1.4.1146.1245_B40.3');
-INSERT INTO valueset_to_concept VALUES('3379','2.16.840.1.113762.1.4.1146.1245_20210121','2.16.840.1.113762.1.4.1146.1245_B40.7');
-INSERT INTO valueset_to_concept VALUES('3380','2.16.840.1.113762.1.4.1146.1245_20210121','2.16.840.1.113762.1.4.1146.1245_B40.8');
-INSERT INTO valueset_to_concept VALUES('3381','2.16.840.1.113762.1.4.1146.1245_20210121','2.16.840.1.113762.1.4.1146.1245_B40.89');
-INSERT INTO valueset_to_concept VALUES('3382','2.16.840.1.113762.1.4.1146.1245_20210121','2.16.840.1.113762.1.4.1146.1245_B40.9');
-INSERT INTO valueset_to_concept VALUES('3383','2.16.840.1.113762.1.4.1146.1245_20210121','2.16.840.1.113762.1.4.1146.1245_B40.81');
-INSERT INTO valueset_to_concept VALUES('3384','2.16.840.1.113762.1.4.1146.1487_20230125','2.16.840.1.113762.1.4.1146.1487_1163524004');
-INSERT INTO valueset_to_concept VALUES('3385','2.16.840.1.113762.1.4.1146.1487_20230125','2.16.840.1.113762.1.4.1146.1487_1172958005');
-INSERT INTO valueset_to_concept VALUES('3386','2.16.840.1.113762.1.4.1146.1487_20230125','2.16.840.1.113762.1.4.1146.1487_1172959002');
-INSERT INTO valueset_to_concept VALUES('3387','2.16.840.1.113762.1.4.1146.1487_20230125','2.16.840.1.113762.1.4.1146.1487_186431008');
-INSERT INTO valueset_to_concept VALUES('3388','2.16.840.1.113762.1.4.1146.1487_20230125','2.16.840.1.113762.1.4.1146.1487_404907009');
-INSERT INTO valueset_to_concept VALUES('3389','2.16.840.1.113762.1.4.1146.1487_20230125','2.16.840.1.113762.1.4.1146.1487_423590009');
-INSERT INTO valueset_to_concept VALUES('3390','2.16.840.1.113762.1.4.1146.1487_20230125','2.16.840.1.113762.1.4.1146.1487_5891000119102');
-INSERT INTO valueset_to_concept VALUES('3391','2.16.840.1.113762.1.4.1146.1487_20230125','2.16.840.1.113762.1.4.1146.1487_789685005');
-INSERT INTO valueset_to_concept VALUES('3392','2.16.840.1.113762.1.4.1146.2335_20240619','2.16.840.1.113762.1.4.1146.2335_Q26.2');
-INSERT INTO valueset_to_concept VALUES('3393','2.16.840.1.113762.1.4.1146.1123_20230125','2.16.840.1.113762.1.4.1146.1123_J12.82');
-INSERT INTO valueset_to_concept VALUES('3394','2.16.840.1.113762.1.4.1146.1123_20230125','2.16.840.1.113762.1.4.1146.1123_U07.1');
-INSERT INTO valueset_to_concept VALUES('3395','2.16.840.1.113762.1.4.1146.1123_20230125','2.16.840.1.113762.1.4.1146.1123_U07.2');
-INSERT INTO valueset_to_concept VALUES('3396','2.16.840.1.113762.1.4.1146.1244_20230122','2.16.840.1.113762.1.4.1146.1244_1193651003');
-INSERT INTO valueset_to_concept VALUES('3397','2.16.840.1.113762.1.4.1146.1244_20230122','2.16.840.1.113762.1.4.1146.1244_1193652005');
-INSERT INTO valueset_to_concept VALUES('3398','2.16.840.1.113762.1.4.1146.1244_20230122','2.16.840.1.113762.1.4.1146.1244_187065008');
-INSERT INTO valueset_to_concept VALUES('3399','2.16.840.1.113762.1.4.1146.1244_20230122','2.16.840.1.113762.1.4.1146.1244_187066009');
-INSERT INTO valueset_to_concept VALUES('3400','2.16.840.1.113762.1.4.1146.1244_20230122','2.16.840.1.113762.1.4.1146.1244_187067000');
-INSERT INTO valueset_to_concept VALUES('3401','2.16.840.1.113762.1.4.1146.1244_20230122','2.16.840.1.113762.1.4.1146.1244_187068005');
-INSERT INTO valueset_to_concept VALUES('3402','2.16.840.1.113762.1.4.1146.1244_20230122','2.16.840.1.113762.1.4.1146.1244_187069002');
-INSERT INTO valueset_to_concept VALUES('3403','2.16.840.1.113762.1.4.1146.1244_20230122','2.16.840.1.113762.1.4.1146.1244_191950004');
-INSERT INTO valueset_to_concept VALUES('3404','2.16.840.1.113762.1.4.1146.1244_20230122','2.16.840.1.113762.1.4.1146.1244_194931003');
-INSERT INTO valueset_to_concept VALUES('3405','2.16.840.1.113762.1.4.1146.1244_20230122','2.16.840.1.113762.1.4.1146.1244_197965008');
-INSERT INTO valueset_to_concept VALUES('3406','2.16.840.1.113762.1.4.1146.1244_20230122','2.16.840.1.113762.1.4.1146.1244_233616001');
-INSERT INTO valueset_to_concept VALUES('3407','2.16.840.1.113762.1.4.1146.1244_20230122','2.16.840.1.113762.1.4.1146.1244_238440001');
-INSERT INTO valueset_to_concept VALUES('3408','2.16.840.1.113762.1.4.1146.1244_20230122','2.16.840.1.113762.1.4.1146.1244_240747003');
-INSERT INTO valueset_to_concept VALUES('3409','2.16.840.1.113762.1.4.1146.1244_20230122','2.16.840.1.113762.1.4.1146.1244_240748008');
-INSERT INTO valueset_to_concept VALUES('3410','2.16.840.1.113762.1.4.1146.1244_20230122','2.16.840.1.113762.1.4.1146.1244_406562008');
-INSERT INTO valueset_to_concept VALUES('3411','2.16.840.1.113762.1.4.1146.1244_20230122','2.16.840.1.113762.1.4.1146.1244_418068003');
-INSERT INTO valueset_to_concept VALUES('3412','2.16.840.1.113762.1.4.1146.1244_20230122','2.16.840.1.113762.1.4.1146.1244_418675003');
-INSERT INTO valueset_to_concept VALUES('3413','2.16.840.1.113762.1.4.1146.1244_20230122','2.16.840.1.113762.1.4.1146.1244_69996000');
-INSERT INTO valueset_to_concept VALUES('3414','2.16.840.1.113762.1.4.1146.1244_20230122','2.16.840.1.113762.1.4.1146.1244_840445001');
-INSERT INTO valueset_to_concept VALUES('3415','2.16.840.1.113762.1.4.1146.1244_20230122','2.16.840.1.113762.1.4.1146.1244_1084741000119103');
-INSERT INTO valueset_to_concept VALUES('3416','2.16.840.1.113762.1.4.1146.2336_20240619','2.16.840.1.113762.1.4.1146.2336_253455004');
-INSERT INTO valueset_to_concept VALUES('3417','2.16.840.1.113762.1.4.1146.2336_20240619','2.16.840.1.113762.1.4.1146.2336_253456003');
-INSERT INTO valueset_to_concept VALUES('3418','2.16.840.1.113762.1.4.1146.2336_20240619','2.16.840.1.113762.1.4.1146.2336_63042009');
-INSERT INTO valueset_to_concept VALUES('3419','2.16.840.1.113762.1.4.1146.2336_20240619','2.16.840.1.113762.1.4.1146.2336_871655005');
-INSERT INTO valueset_to_concept VALUES('3420','2.16.840.1.113762.1.4.1146.2336_20240619','2.16.840.1.113762.1.4.1146.2336_204354004');
-INSERT INTO valueset_to_concept VALUES('3421','2.16.840.1.113762.1.4.1146.2333_20240620','2.16.840.1.113762.1.4.1146.2333_Q21.20');
-INSERT INTO valueset_to_concept VALUES('3422','2.16.840.1.113762.1.4.1146.2333_20240620','2.16.840.1.113762.1.4.1146.2333_Q21.21');
-INSERT INTO valueset_to_concept VALUES('3423','2.16.840.1.113762.1.4.1146.2333_20240620','2.16.840.1.113762.1.4.1146.2333_Q21.22');
-INSERT INTO valueset_to_concept VALUES('3424','2.16.840.1.113762.1.4.1146.2333_20240620','2.16.840.1.113762.1.4.1146.2333_Q21.23');
-INSERT INTO valueset_to_concept VALUES('3425','2.16.840.1.113762.1.4.1146.1488_20220118','2.16.840.1.113762.1.4.1146.1488_A04.7');
-INSERT INTO valueset_to_concept VALUES('3426','2.16.840.1.113762.1.4.1146.1488_20220118','2.16.840.1.113762.1.4.1146.1488_A04.71');
-INSERT INTO valueset_to_concept VALUES('3427','2.16.840.1.113762.1.4.1146.1488_20220118','2.16.840.1.113762.1.4.1146.1488_A04.72');
-INSERT INTO valueset_to_concept VALUES('3428','2.16.840.1.113762.1.4.1146.2334_20240619','2.16.840.1.113762.1.4.1146.2334_111323005');
-INSERT INTO valueset_to_concept VALUES('3429','2.16.840.1.113762.1.4.1146.2334_20240619','2.16.840.1.113762.1.4.1146.2334_204456001');
-INSERT INTO valueset_to_concept VALUES('3430','2.16.840.1.113762.1.4.1146.2334_20240619','2.16.840.1.113762.1.4.1146.2334_204457005');
-INSERT INTO valueset_to_concept VALUES('3431','2.16.840.1.113762.1.4.1146.2334_20240619','2.16.840.1.113762.1.4.1146.2334_286331000119109');
-INSERT INTO valueset_to_concept VALUES('3432','2.16.840.1.113762.1.4.1146.2334_20240619','2.16.840.1.113762.1.4.1146.2334_286341000119100');
-INSERT INTO valueset_to_concept VALUES('3433','2.16.840.1.113762.1.4.1146.2334_20240619','2.16.840.1.113762.1.4.1146.2334_286351000119103');
-INSERT INTO valueset_to_concept VALUES('3434','2.16.840.1.113762.1.4.1146.2334_20240619','2.16.840.1.113762.1.4.1146.2334_286361000119101');
-INSERT INTO valueset_to_concept VALUES('3435','2.16.840.1.113762.1.4.1146.2334_20240619','2.16.840.1.113762.1.4.1146.2334_447832002');
-INSERT INTO valueset_to_concept VALUES('3436','2.16.840.1.113762.1.4.1146.2334_20240619','2.16.840.1.113762.1.4.1146.2334_447914003');
-INSERT INTO valueset_to_concept VALUES('3437','2.16.840.1.113762.1.4.1146.2334_20240619','2.16.840.1.113762.1.4.1146.2334_448599000');
-INSERT INTO valueset_to_concept VALUES('3438','2.16.840.1.113762.1.4.1146.2334_20240619','2.16.840.1.113762.1.4.1146.2334_448727008');
-INSERT INTO valueset_to_concept VALUES('3439','2.16.840.1.113762.1.4.1146.2331_20240619','2.16.840.1.113762.1.4.1146.2331_Q20.0');
-INSERT INTO valueset_to_concept VALUES('3440','2.16.840.1.113762.1.4.1146.2332_20240620','2.16.840.1.113762.1.4.1146.2332_1237074000');
-INSERT INTO valueset_to_concept VALUES('3441','2.16.840.1.113762.1.4.1146.2332_20240620','2.16.840.1.113762.1.4.1146.2332_15459006');
-INSERT INTO valueset_to_concept VALUES('3442','2.16.840.1.113762.1.4.1146.2332_20240620','2.16.840.1.113762.1.4.1146.2332_204330009');
-INSERT INTO valueset_to_concept VALUES('3443','2.16.840.1.113762.1.4.1146.2332_20240620','2.16.840.1.113762.1.4.1146.2332_253373002');
-INSERT INTO valueset_to_concept VALUES('3444','2.16.840.1.113762.1.4.1146.2332_20240620','2.16.840.1.113762.1.4.1146.2332_253374008');
-INSERT INTO valueset_to_concept VALUES('3445','2.16.840.1.113762.1.4.1146.2332_20240620','2.16.840.1.113762.1.4.1146.2332_253414002');
-INSERT INTO valueset_to_concept VALUES('3446','2.16.840.1.113762.1.4.1146.2332_20240620','2.16.840.1.113762.1.4.1146.2332_253415001');
-INSERT INTO valueset_to_concept VALUES('3447','2.16.840.1.113762.1.4.1146.2332_20240620','2.16.840.1.113762.1.4.1146.2332_253416000');
-INSERT INTO valueset_to_concept VALUES('3448','2.16.840.1.113762.1.4.1146.2332_20240620','2.16.840.1.113762.1.4.1146.2332_253417009');
-INSERT INTO valueset_to_concept VALUES('3449','2.16.840.1.113762.1.4.1146.2332_20240620','2.16.840.1.113762.1.4.1146.2332_253418004');
-INSERT INTO valueset_to_concept VALUES('3450','2.16.840.1.113762.1.4.1146.2332_20240620','2.16.840.1.113762.1.4.1146.2332_253419007');
-INSERT INTO valueset_to_concept VALUES('3451','2.16.840.1.113762.1.4.1146.2332_20240620','2.16.840.1.113762.1.4.1146.2332_253420001');
-INSERT INTO valueset_to_concept VALUES('3452','2.16.840.1.113762.1.4.1146.2332_20240620','2.16.840.1.113762.1.4.1146.2332_253421002');
-INSERT INTO valueset_to_concept VALUES('3453','2.16.840.1.113762.1.4.1146.2332_20240620','2.16.840.1.113762.1.4.1146.2332_253422009');
-INSERT INTO valueset_to_concept VALUES('3454','2.16.840.1.113762.1.4.1146.2332_20240620','2.16.840.1.113762.1.4.1146.2332_253428008');
-INSERT INTO valueset_to_concept VALUES('3455','2.16.840.1.113762.1.4.1146.2332_20240620','2.16.840.1.113762.1.4.1146.2332_253429000');
-INSERT INTO valueset_to_concept VALUES('3456','2.16.840.1.113762.1.4.1146.2332_20240620','2.16.840.1.113762.1.4.1146.2332_253430005');
-INSERT INTO valueset_to_concept VALUES('3457','2.16.840.1.113762.1.4.1146.2332_20240620','2.16.840.1.113762.1.4.1146.2332_253431009');
-INSERT INTO valueset_to_concept VALUES('3458','2.16.840.1.113762.1.4.1146.2332_20240620','2.16.840.1.113762.1.4.1146.2332_253432002');
-INSERT INTO valueset_to_concept VALUES('3459','2.16.840.1.113762.1.4.1146.2332_20240620','2.16.840.1.113762.1.4.1146.2332_253434001');
-INSERT INTO valueset_to_concept VALUES('3460','2.16.840.1.113762.1.4.1146.2332_20240620','2.16.840.1.113762.1.4.1146.2332_253437008');
-INSERT INTO valueset_to_concept VALUES('3461','2.16.840.1.113762.1.4.1146.2332_20240620','2.16.840.1.113762.1.4.1146.2332_253438003');
-INSERT INTO valueset_to_concept VALUES('3462','2.16.840.1.113762.1.4.1146.2332_20240620','2.16.840.1.113762.1.4.1146.2332_253439006');
-INSERT INTO valueset_to_concept VALUES('3463','2.16.840.1.113762.1.4.1146.2332_20240620','2.16.840.1.113762.1.4.1146.2332_253440008');
-INSERT INTO valueset_to_concept VALUES('3464','2.16.840.1.113762.1.4.1146.2332_20240620','2.16.840.1.113762.1.4.1146.2332_253442000');
-INSERT INTO valueset_to_concept VALUES('3465','2.16.840.1.113762.1.4.1146.2332_20240620','2.16.840.1.113762.1.4.1146.2332_253443005');
-INSERT INTO valueset_to_concept VALUES('3466','2.16.840.1.113762.1.4.1146.2332_20240620','2.16.840.1.113762.1.4.1146.2332_253444004');
-INSERT INTO valueset_to_concept VALUES('3467','2.16.840.1.113762.1.4.1146.2332_20240620','2.16.840.1.113762.1.4.1146.2332_253445003');
-INSERT INTO valueset_to_concept VALUES('3468','2.16.840.1.113762.1.4.1146.2332_20240620','2.16.840.1.113762.1.4.1146.2332_253446002');
-INSERT INTO valueset_to_concept VALUES('3469','2.16.840.1.113762.1.4.1146.2332_20240620','2.16.840.1.113762.1.4.1146.2332_253447006');
-INSERT INTO valueset_to_concept VALUES('3470','2.16.840.1.113762.1.4.1146.2332_20240620','2.16.840.1.113762.1.4.1146.2332_253448001');
-INSERT INTO valueset_to_concept VALUES('3471','2.16.840.1.113762.1.4.1146.2332_20240620','2.16.840.1.113762.1.4.1146.2332_253449009');
-INSERT INTO valueset_to_concept VALUES('3472','2.16.840.1.113762.1.4.1146.2332_20240620','2.16.840.1.113762.1.4.1146.2332_253452001');
-INSERT INTO valueset_to_concept VALUES('3473','2.16.840.1.113762.1.4.1146.2332_20240620','2.16.840.1.113762.1.4.1146.2332_253453006');
-INSERT INTO valueset_to_concept VALUES('3474','2.16.840.1.113762.1.4.1146.2332_20240620','2.16.840.1.113762.1.4.1146.2332_360481003');
-INSERT INTO valueset_to_concept VALUES('3475','2.16.840.1.113762.1.4.1146.2332_20240620','2.16.840.1.113762.1.4.1146.2332_444961009');
-INSERT INTO valueset_to_concept VALUES('3476','2.16.840.1.113762.1.4.1146.2332_20240620','2.16.840.1.113762.1.4.1146.2332_445002005');
-INSERT INTO valueset_to_concept VALUES('3477','2.16.840.1.113762.1.4.1146.2332_20240620','2.16.840.1.113762.1.4.1146.2332_445264002');
-INSERT INTO valueset_to_concept VALUES('3478','2.16.840.1.113762.1.4.1146.2332_20240620','2.16.840.1.113762.1.4.1146.2332_445299003');
-INSERT INTO valueset_to_concept VALUES('3479','2.16.840.1.113762.1.4.1146.2332_20240620','2.16.840.1.113762.1.4.1146.2332_445334007');
-INSERT INTO valueset_to_concept VALUES('3480','2.16.840.1.113762.1.4.1146.2332_20240620','2.16.840.1.113762.1.4.1146.2332_447779007');
-INSERT INTO valueset_to_concept VALUES('3481','2.16.840.1.113762.1.4.1146.2332_20240620','2.16.840.1.113762.1.4.1146.2332_448026008');
-INSERT INTO valueset_to_concept VALUES('3482','2.16.840.1.113762.1.4.1146.2332_20240620','2.16.840.1.113762.1.4.1146.2332_448118003');
-INSERT INTO valueset_to_concept VALUES('3483','2.16.840.1.113762.1.4.1146.2332_20240620','2.16.840.1.113762.1.4.1146.2332_448119006');
-INSERT INTO valueset_to_concept VALUES('3484','2.16.840.1.113762.1.4.1146.2332_20240620','2.16.840.1.113762.1.4.1146.2332_448182006');
-INSERT INTO valueset_to_concept VALUES('3485','2.16.840.1.113762.1.4.1146.2332_20240620','2.16.840.1.113762.1.4.1146.2332_448183001');
-INSERT INTO valueset_to_concept VALUES('3486','2.16.840.1.113762.1.4.1146.2332_20240620','2.16.840.1.113762.1.4.1146.2332_448184007');
-INSERT INTO valueset_to_concept VALUES('3487','2.16.840.1.113762.1.4.1146.2332_20240620','2.16.840.1.113762.1.4.1146.2332_448331000');
-INSERT INTO valueset_to_concept VALUES('3488','2.16.840.1.113762.1.4.1146.2332_20240620','2.16.840.1.113762.1.4.1146.2332_448626007');
-INSERT INTO valueset_to_concept VALUES('3489','2.16.840.1.113762.1.4.1146.2332_20240620','2.16.840.1.113762.1.4.1146.2332_448777006');
-INSERT INTO valueset_to_concept VALUES('3490','2.16.840.1.113762.1.4.1146.2332_20240620','2.16.840.1.113762.1.4.1146.2332_448822006');
-INSERT INTO valueset_to_concept VALUES('3491','2.16.840.1.113762.1.4.1146.2332_20240620','2.16.840.1.113762.1.4.1146.2332_448836001');
-INSERT INTO valueset_to_concept VALUES('3492','2.16.840.1.113762.1.4.1146.2332_20240620','2.16.840.1.113762.1.4.1146.2332_448919005');
-INSERT INTO valueset_to_concept VALUES('3493','2.16.840.1.113762.1.4.1146.2332_20240620','2.16.840.1.113762.1.4.1146.2332_449008001');
-INSERT INTO valueset_to_concept VALUES('3494','2.16.840.1.113762.1.4.1146.2332_20240620','2.16.840.1.113762.1.4.1146.2332_449011000');
-INSERT INTO valueset_to_concept VALUES('3495','2.16.840.1.113762.1.4.1146.2332_20240620','2.16.840.1.113762.1.4.1146.2332_449189009');
-INSERT INTO valueset_to_concept VALUES('3496','2.16.840.1.113762.1.4.1146.2332_20240620','2.16.840.1.113762.1.4.1146.2332_449379004');
-INSERT INTO valueset_to_concept VALUES('3497','2.16.840.1.113762.1.4.1146.2332_20240620','2.16.840.1.113762.1.4.1146.2332_449382009');
-INSERT INTO valueset_to_concept VALUES('3498','2.16.840.1.113762.1.4.1146.2332_20240620','2.16.840.1.113762.1.4.1146.2332_449383004');
-INSERT INTO valueset_to_concept VALUES('3499','2.16.840.1.113762.1.4.1146.2332_20240620','2.16.840.1.113762.1.4.1146.2332_449388008');
-INSERT INTO valueset_to_concept VALUES('3500','2.16.840.1.113762.1.4.1146.2332_20240620','2.16.840.1.113762.1.4.1146.2332_449456004');
-INSERT INTO valueset_to_concept VALUES('3501','2.16.840.1.113762.1.4.1146.2332_20240620','2.16.840.1.113762.1.4.1146.2332_449457008');
-INSERT INTO valueset_to_concept VALUES('3502','2.16.840.1.113762.1.4.1146.2332_20240620','2.16.840.1.113762.1.4.1146.2332_449459006');
-INSERT INTO valueset_to_concept VALUES('3503','2.16.840.1.113762.1.4.1146.2332_20240620','2.16.840.1.113762.1.4.1146.2332_449490008');
-INSERT INTO valueset_to_concept VALUES('3504','2.16.840.1.113762.1.4.1146.2332_20240620','2.16.840.1.113762.1.4.1146.2332_449537006');
-INSERT INTO valueset_to_concept VALUES('3505','2.16.840.1.113762.1.4.1146.2332_20240620','2.16.840.1.113762.1.4.1146.2332_449538001');
-INSERT INTO valueset_to_concept VALUES('3506','2.16.840.1.113762.1.4.1146.2332_20240620','2.16.840.1.113762.1.4.1146.2332_449539009');
-INSERT INTO valueset_to_concept VALUES('3507','2.16.840.1.113762.1.4.1146.2332_20240620','2.16.840.1.113762.1.4.1146.2332_60732002');
-INSERT INTO valueset_to_concept VALUES('3508','2.16.840.1.113762.1.4.1146.2332_20240620','2.16.840.1.113762.1.4.1146.2332_718216009');
-INSERT INTO valueset_to_concept VALUES('3509','2.16.840.1.113762.1.4.1146.2332_20240620','2.16.840.1.113762.1.4.1146.2332_763066009');
-INSERT INTO valueset_to_concept VALUES('3510','2.16.840.1.113762.1.4.1146.2332_20240620','2.16.840.1.113762.1.4.1146.2332_840497008');
-INSERT INTO valueset_to_concept VALUES('3511','2.16.840.1.113762.1.4.1146.2332_20240620','2.16.840.1.113762.1.4.1146.2332_840517009');
-INSERT INTO valueset_to_concept VALUES('3512','2.16.840.1.113762.1.4.1146.2332_20240620','2.16.840.1.113762.1.4.1146.2332_871625003');
-INSERT INTO valueset_to_concept VALUES('3513','2.16.840.1.113762.1.4.1146.2332_20240620','2.16.840.1.113762.1.4.1146.2332_871630004');
-INSERT INTO valueset_to_concept VALUES('3514','2.16.840.1.113762.1.4.1146.2332_20240620','2.16.840.1.113762.1.4.1146.2332_871643004');
-INSERT INTO valueset_to_concept VALUES('3515','2.16.840.1.113762.1.4.1146.1243_20210120','2.16.840.1.113762.1.4.1146.1243_A04.6');
-INSERT INTO valueset_to_concept VALUES('3516','2.16.840.1.113762.1.4.1146.1243_20210120','2.16.840.1.113762.1.4.1146.1243_A28.2');
-INSERT INTO valueset_to_concept VALUES('3517','2.16.840.1.113762.1.4.1146.1242_20230122','2.16.840.1.113762.1.4.1146.1242_1163121002');
-INSERT INTO valueset_to_concept VALUES('3518','2.16.840.1.113762.1.4.1146.1242_20230122','2.16.840.1.113762.1.4.1146.1242_1177017006');
-INSERT INTO valueset_to_concept VALUES('3519','2.16.840.1.113762.1.4.1146.1242_20230122','2.16.840.1.113762.1.4.1146.1242_186329000');
-INSERT INTO valueset_to_concept VALUES('3520','2.16.840.1.113762.1.4.1146.1242_20230122','2.16.840.1.113762.1.4.1146.1242_240334006');
-INSERT INTO valueset_to_concept VALUES('3521','2.16.840.1.113762.1.4.1146.1242_20230122','2.16.840.1.113762.1.4.1146.1242_240360007');
-INSERT INTO valueset_to_concept VALUES('3522','2.16.840.1.113762.1.4.1146.1242_20230122','2.16.840.1.113762.1.4.1146.1242_402970009');
-INSERT INTO valueset_to_concept VALUES('3523','2.16.840.1.113762.1.4.1146.1242_20230122','2.16.840.1.113762.1.4.1146.1242_711167005');
-INSERT INTO valueset_to_concept VALUES('3524','2.16.840.1.113762.1.4.1146.1242_20230122','2.16.840.1.113762.1.4.1146.1242_80960004');
-INSERT INTO valueset_to_concept VALUES('3525','2.16.840.1.113762.1.4.1146.1242_20230122','2.16.840.1.113762.1.4.1146.1242_83436008');
-INSERT INTO valueset_to_concept VALUES('3526','2.16.840.1.113762.1.4.1146.2330_20240619','2.16.840.1.113762.1.4.1146.2330_111319002');
-INSERT INTO valueset_to_concept VALUES('3527','2.16.840.1.113762.1.4.1146.2330_20240619','2.16.840.1.113762.1.4.1146.2330_447988007');
-INSERT INTO valueset_to_concept VALUES('3528','2.16.840.1.113762.1.4.1146.2330_20240619','2.16.840.1.113762.1.4.1146.2330_448120000');
-INSERT INTO valueset_to_concept VALUES('3529','2.16.840.1.113762.1.4.1146.2330_20240619','2.16.840.1.113762.1.4.1146.2330_448747000');
-INSERT INTO valueset_to_concept VALUES('3530','2.16.840.1.113762.1.4.1146.2330_20240619','2.16.840.1.113762.1.4.1146.2330_448809003');
-INSERT INTO valueset_to_concept VALUES('3531','2.16.840.1.113762.1.4.1146.2330_20240619','2.16.840.1.113762.1.4.1146.2330_448887003');
-INSERT INTO valueset_to_concept VALUES('3532','2.16.840.1.113762.1.4.1146.2330_20240619','2.16.840.1.113762.1.4.1146.2330_460619000');
-INSERT INTO valueset_to_concept VALUES('3533','2.16.840.1.113762.1.4.1146.2330_20240619','2.16.840.1.113762.1.4.1146.2330_60106004');
-INSERT INTO valueset_to_concept VALUES('3534','2.16.840.1.113762.1.4.1146.2330_20240619','2.16.840.1.113762.1.4.1146.2330_61959006');
-INSERT INTO valueset_to_concept VALUES('3535','2.16.840.1.113762.1.4.1146.2330_20240619','2.16.840.1.113762.1.4.1146.2330_73699003');
-INSERT INTO valueset_to_concept VALUES('3536','2.16.840.1.113762.1.4.1146.2330_20240619','2.16.840.1.113762.1.4.1146.2330_762252001');
-INSERT INTO valueset_to_concept VALUES('3537','2.16.840.1.113762.1.4.1146.2330_20240619','2.16.840.1.113762.1.4.1146.2330_85081000');
-INSERT INTO valueset_to_concept VALUES('3538','2.16.840.1.113762.1.4.1146.2330_20240619','2.16.840.1.113762.1.4.1146.2330_871647003');
-INSERT INTO valueset_to_concept VALUES('3539','2.16.840.1.113762.1.4.1146.2330_20240619','2.16.840.1.113762.1.4.1146.2330_890209003');
-INSERT INTO valueset_to_concept VALUES('3540','2.16.840.1.113762.1.4.1146.2330_20240619','2.16.840.1.113762.1.4.1146.2330_762253006');
-INSERT INTO valueset_to_concept VALUES('3541','2.16.840.1.113762.1.4.1146.2330_20240619','2.16.840.1.113762.1.4.1146.2330_871650000');
-INSERT INTO valueset_to_concept VALUES('3542','2.16.840.1.113762.1.4.1146.2108_20230125','2.16.840.1.113762.1.4.1146.2108_D74.8');
-INSERT INTO valueset_to_concept VALUES('3543','2.16.840.1.113762.1.4.1146.2108_20230125','2.16.840.1.113762.1.4.1146.2108_D74.9');
-INSERT INTO valueset_to_concept VALUES('3544','2.16.840.1.113762.1.4.1146.1259_20210121','2.16.840.1.113762.1.4.1146.1259_127601000119103');
-INSERT INTO valueset_to_concept VALUES('3545','2.16.840.1.113762.1.4.1146.1259_20210121','2.16.840.1.113762.1.4.1146.1259_49649001');
-INSERT INTO valueset_to_concept VALUES('3546','2.16.840.1.113762.1.4.1146.1259_20210121','2.16.840.1.113762.1.4.1146.1259_51817006');
-INSERT INTO valueset_to_concept VALUES('3547','2.16.840.1.113762.1.4.1146.1259_20210121','2.16.840.1.113762.1.4.1146.1259_711644007');
-INSERT INTO valueset_to_concept VALUES('3548','2.16.840.1.113762.1.4.1146.1259_20210121','2.16.840.1.113762.1.4.1146.1259_1089811000119106');
-INSERT INTO valueset_to_concept VALUES('3549','2.16.840.1.113762.1.4.1146.2106_20230125','2.16.840.1.113762.1.4.1146.2106_127037003');
-INSERT INTO valueset_to_concept VALUES('3550','2.16.840.1.113762.1.4.1146.2106_20230125','2.16.840.1.113762.1.4.1146.2106_131171006');
-INSERT INTO valueset_to_concept VALUES('3551','2.16.840.1.113762.1.4.1146.2106_20230125','2.16.840.1.113762.1.4.1146.2106_191389000');
-INSERT INTO valueset_to_concept VALUES('3552','2.16.840.1.113762.1.4.1146.2106_20230125','2.16.840.1.113762.1.4.1146.2106_191390009');
-INSERT INTO valueset_to_concept VALUES('3553','2.16.840.1.113762.1.4.1146.2106_20230125','2.16.840.1.113762.1.4.1146.2106_295315008');
-INSERT INTO valueset_to_concept VALUES('3554','2.16.840.1.113762.1.4.1146.2106_20230125','2.16.840.1.113762.1.4.1146.2106_38959009');
-INSERT INTO valueset_to_concept VALUES('3555','2.16.840.1.113762.1.4.1146.2106_20230125','2.16.840.1.113762.1.4.1146.2106_406593009');
-INSERT INTO valueset_to_concept VALUES('3556','2.16.840.1.113762.1.4.1146.2106_20230125','2.16.840.1.113762.1.4.1146.2106_57020009');
-INSERT INTO valueset_to_concept VALUES('3557','2.16.840.1.113762.1.4.1146.98_20240123','2.16.840.1.113762.1.4.1146.98_111817006');
-INSERT INTO valueset_to_concept VALUES('3558','2.16.840.1.113762.1.4.1146.98_20240123','2.16.840.1.113762.1.4.1146.98_1163120001');
-INSERT INTO valueset_to_concept VALUES('3559','2.16.840.1.113762.1.4.1146.98_20240123','2.16.840.1.113762.1.4.1146.98_1163122009');
-INSERT INTO valueset_to_concept VALUES('3560','2.16.840.1.113762.1.4.1146.98_20240123','2.16.840.1.113762.1.4.1146.98_1163123004');
-INSERT INTO valueset_to_concept VALUES('3561','2.16.840.1.113762.1.4.1146.98_20240123','2.16.840.1.113762.1.4.1146.98_1163124005');
-INSERT INTO valueset_to_concept VALUES('3562','2.16.840.1.113762.1.4.1146.98_20240123','2.16.840.1.113762.1.4.1146.98_1163126007');
-INSERT INTO valueset_to_concept VALUES('3563','2.16.840.1.113762.1.4.1146.98_20240123','2.16.840.1.113762.1.4.1146.98_1177061003');
-INSERT INTO valueset_to_concept VALUES('3564','2.16.840.1.113762.1.4.1146.98_20240123','2.16.840.1.113762.1.4.1146.98_1193741007');
-INSERT INTO valueset_to_concept VALUES('3565','2.16.840.1.113762.1.4.1146.98_20240123','2.16.840.1.113762.1.4.1146.98_1193742000');
-INSERT INTO valueset_to_concept VALUES('3566','2.16.840.1.113762.1.4.1146.98_20240123','2.16.840.1.113762.1.4.1146.98_1193743005');
-INSERT INTO valueset_to_concept VALUES('3567','2.16.840.1.113762.1.4.1146.98_20240123','2.16.840.1.113762.1.4.1146.98_1193744004');
-INSERT INTO valueset_to_concept VALUES('3568','2.16.840.1.113762.1.4.1146.98_20240123','2.16.840.1.113762.1.4.1146.98_1193745003');
-INSERT INTO valueset_to_concept VALUES('3569','2.16.840.1.113762.1.4.1146.98_20240123','2.16.840.1.113762.1.4.1146.98_1193746002');
-INSERT INTO valueset_to_concept VALUES('3570','2.16.840.1.113762.1.4.1146.98_20240123','2.16.840.1.113762.1.4.1146.98_1193747006');
-INSERT INTO valueset_to_concept VALUES('3571','2.16.840.1.113762.1.4.1146.98_20240123','2.16.840.1.113762.1.4.1146.98_1193748001');
-INSERT INTO valueset_to_concept VALUES('3572','2.16.840.1.113762.1.4.1146.98_20240123','2.16.840.1.113762.1.4.1146.98_1231379009');
-INSERT INTO valueset_to_concept VALUES('3573','2.16.840.1.113762.1.4.1146.98_20240123','2.16.840.1.113762.1.4.1146.98_1231380007');
-INSERT INTO valueset_to_concept VALUES('3574','2.16.840.1.113762.1.4.1146.98_20240123','2.16.840.1.113762.1.4.1146.98_186105003');
-INSERT INTO valueset_to_concept VALUES('3575','2.16.840.1.113762.1.4.1146.98_20240123','2.16.840.1.113762.1.4.1146.98_34335000');
-INSERT INTO valueset_to_concept VALUES('3576','2.16.840.1.113762.1.4.1146.98_20240123','2.16.840.1.113762.1.4.1146.98_36188001');
-INSERT INTO valueset_to_concept VALUES('3577','2.16.840.1.113762.1.4.1146.98_20240123','2.16.840.1.113762.1.4.1146.98_55760004');
-INSERT INTO valueset_to_concept VALUES('3578','2.16.840.1.113762.1.4.1146.98_20240123','2.16.840.1.113762.1.4.1146.98_66301008');
-INSERT INTO valueset_to_concept VALUES('3579','2.16.840.1.113762.1.4.1146.98_20240123','2.16.840.1.113762.1.4.1146.98_69794009');
-INSERT INTO valueset_to_concept VALUES('3580','2.16.840.1.113762.1.4.1146.2107_20230125','2.16.840.1.113762.1.4.1146.2107_D74.0');
-INSERT INTO valueset_to_concept VALUES('3581','2.16.840.1.113762.1.4.1146.2107_20230125','2.16.840.1.113762.1.4.1146.2107_D74.8');
-INSERT INTO valueset_to_concept VALUES('3582','2.16.840.1.113762.1.4.1146.2107_20230125','2.16.840.1.113762.1.4.1146.2107_D74.9');
-INSERT INTO valueset_to_concept VALUES('3583','2.16.840.1.113762.1.4.1146.2349_20240619','2.16.840.1.113762.1.4.1146.2349_459581000124103');
-INSERT INTO valueset_to_concept VALUES('3584','2.16.840.1.113762.1.4.1146.99_20181031','2.16.840.1.113762.1.4.1146.99_A03');
-INSERT INTO valueset_to_concept VALUES('3585','2.16.840.1.113762.1.4.1146.99_20181031','2.16.840.1.113762.1.4.1146.99_A03.0');
-INSERT INTO valueset_to_concept VALUES('3586','2.16.840.1.113762.1.4.1146.99_20181031','2.16.840.1.113762.1.4.1146.99_A03.1');
-INSERT INTO valueset_to_concept VALUES('3587','2.16.840.1.113762.1.4.1146.99_20181031','2.16.840.1.113762.1.4.1146.99_A03.2');
-INSERT INTO valueset_to_concept VALUES('3588','2.16.840.1.113762.1.4.1146.99_20181031','2.16.840.1.113762.1.4.1146.99_A03.3');
-INSERT INTO valueset_to_concept VALUES('3589','2.16.840.1.113762.1.4.1146.99_20181031','2.16.840.1.113762.1.4.1146.99_A03.8');
-INSERT INTO valueset_to_concept VALUES('3590','2.16.840.1.113762.1.4.1146.99_20181031','2.16.840.1.113762.1.4.1146.99_A03.9');
-INSERT INTO valueset_to_concept VALUES('3591','2.16.840.1.113762.1.4.1146.99_20181031','2.16.840.1.113762.1.4.1146.99_A04.2');
-INSERT INTO valueset_to_concept VALUES('3592','2.16.840.1.113762.1.4.1146.92_20230125','2.16.840.1.113762.1.4.1146.92_M31.10');
-INSERT INTO valueset_to_concept VALUES('3593','2.16.840.1.113762.1.4.1146.92_20230125','2.16.840.1.113762.1.4.1146.92_M31.19');
-INSERT INTO valueset_to_concept VALUES('3594','2.16.840.1.113762.1.4.1146.94_20181031','2.16.840.1.113762.1.4.1146.94_B15');
-INSERT INTO valueset_to_concept VALUES('3595','2.16.840.1.113762.1.4.1146.94_20181031','2.16.840.1.113762.1.4.1146.94_B15.0');
-INSERT INTO valueset_to_concept VALUES('3596','2.16.840.1.113762.1.4.1146.94_20181031','2.16.840.1.113762.1.4.1146.94_B15.9');
-INSERT INTO valueset_to_concept VALUES('3597','2.16.840.1.113762.1.4.1146.95_20190605','2.16.840.1.113762.1.4.1146.95_111879004');
-INSERT INTO valueset_to_concept VALUES('3598','2.16.840.1.113762.1.4.1146.95_20190605','2.16.840.1.113762.1.4.1146.95_16060001');
-INSERT INTO valueset_to_concept VALUES('3599','2.16.840.1.113762.1.4.1146.95_20190605','2.16.840.1.113762.1.4.1146.95_18917003');
-INSERT INTO valueset_to_concept VALUES('3600','2.16.840.1.113762.1.4.1146.95_20190605','2.16.840.1.113762.1.4.1146.95_206373002');
-INSERT INTO valueset_to_concept VALUES('3601','2.16.840.1.113762.1.4.1146.95_20190605','2.16.840.1.113762.1.4.1146.95_25102003');
-INSERT INTO valueset_to_concept VALUES('3602','2.16.840.1.113762.1.4.1146.95_20190605','2.16.840.1.113762.1.4.1146.95_40468003');
-INSERT INTO valueset_to_concept VALUES('3603','2.16.840.1.113762.1.4.1146.95_20190605','2.16.840.1.113762.1.4.1146.95_424758008');
-INSERT INTO valueset_to_concept VALUES('3604','2.16.840.1.113762.1.4.1146.95_20190605','2.16.840.1.113762.1.4.1146.95_43634002');
-INSERT INTO valueset_to_concept VALUES('3605','2.16.840.1.113762.1.4.1146.95_20190605','2.16.840.1.113762.1.4.1146.95_79031007');
-INSERT INTO valueset_to_concept VALUES('3606','2.16.840.1.113762.1.4.1146.181_20240123','2.16.840.1.113762.1.4.1146.181_1090331000119100');
-INSERT INTO valueset_to_concept VALUES('3607','2.16.840.1.113762.1.4.1146.181_20240123','2.16.840.1.113762.1.4.1146.181_1163138003');
-INSERT INTO valueset_to_concept VALUES('3608','2.16.840.1.113762.1.4.1146.181_20240123','2.16.840.1.113762.1.4.1146.181_1163139006');
-INSERT INTO valueset_to_concept VALUES('3609','2.16.840.1.113762.1.4.1146.181_20240123','2.16.840.1.113762.1.4.1146.181_184431000119108');
-INSERT INTO valueset_to_concept VALUES('3610','2.16.840.1.113762.1.4.1146.181_20240123','2.16.840.1.113762.1.4.1146.181_187027001');
-INSERT INTO valueset_to_concept VALUES('3611','2.16.840.1.113762.1.4.1146.181_20240123','2.16.840.1.113762.1.4.1146.181_195904005');
-INSERT INTO valueset_to_concept VALUES('3612','2.16.840.1.113762.1.4.1146.181_20240123','2.16.840.1.113762.1.4.1146.181_23247008');
-INSERT INTO valueset_to_concept VALUES('3613','2.16.840.1.113762.1.4.1146.181_20240123','2.16.840.1.113762.1.4.1146.181_233615002');
-INSERT INTO valueset_to_concept VALUES('3614','2.16.840.1.113762.1.4.1146.181_20240123','2.16.840.1.113762.1.4.1146.181_240727006');
-INSERT INTO valueset_to_concept VALUES('3615','2.16.840.1.113762.1.4.1146.181_20240123','2.16.840.1.113762.1.4.1146.181_240728001');
-INSERT INTO valueset_to_concept VALUES('3616','2.16.840.1.113762.1.4.1146.181_20240123','2.16.840.1.113762.1.4.1146.181_240729009');
-INSERT INTO valueset_to_concept VALUES('3617','2.16.840.1.113762.1.4.1146.181_20240123','2.16.840.1.113762.1.4.1146.181_3071000119108');
-INSERT INTO valueset_to_concept VALUES('3618','2.16.840.1.113762.1.4.1146.181_20240123','2.16.840.1.113762.1.4.1146.181_403110005');
-INSERT INTO valueset_to_concept VALUES('3619','2.16.840.1.113762.1.4.1146.181_20240123','2.16.840.1.113762.1.4.1146.181_406567002');
-INSERT INTO valueset_to_concept VALUES('3620','2.16.840.1.113762.1.4.1146.181_20240123','2.16.840.1.113762.1.4.1146.181_41030002');
-INSERT INTO valueset_to_concept VALUES('3621','2.16.840.1.113762.1.4.1146.181_20240123','2.16.840.1.113762.1.4.1146.181_417018008');
-INSERT INTO valueset_to_concept VALUES('3622','2.16.840.1.113762.1.4.1146.181_20240123','2.16.840.1.113762.1.4.1146.181_417405005');
-INSERT INTO valueset_to_concept VALUES('3623','2.16.840.1.113762.1.4.1146.181_20240123','2.16.840.1.113762.1.4.1146.181_417688002');
-INSERT INTO valueset_to_concept VALUES('3624','2.16.840.1.113762.1.4.1146.181_20240123','2.16.840.1.113762.1.4.1146.181_442543009');
-INSERT INTO valueset_to_concept VALUES('3625','2.16.840.1.113762.1.4.1146.181_20240123','2.16.840.1.113762.1.4.1146.181_445880000');
-INSERT INTO valueset_to_concept VALUES('3626','2.16.840.1.113762.1.4.1146.181_20240123','2.16.840.1.113762.1.4.1146.181_60826002');
-INSERT INTO valueset_to_concept VALUES('3627','2.16.840.1.113762.1.4.1146.181_20240123','2.16.840.1.113762.1.4.1146.181_65696007');
-INSERT INTO valueset_to_concept VALUES('3628','2.16.840.1.113762.1.4.1146.181_20240123','2.16.840.1.113762.1.4.1146.181_707772007');
-INSERT INTO valueset_to_concept VALUES('3629','2.16.840.1.113762.1.4.1146.181_20240123','2.16.840.1.113762.1.4.1146.181_707836006');
-INSERT INTO valueset_to_concept VALUES('3630','2.16.840.1.113762.1.4.1146.181_20240123','2.16.840.1.113762.1.4.1146.181_708025003');
-INSERT INTO valueset_to_concept VALUES('3631','2.16.840.1.113762.1.4.1146.181_20240123','2.16.840.1.113762.1.4.1146.181_72463008');
-INSERT INTO valueset_to_concept VALUES('3632','2.16.840.1.113762.1.4.1146.181_20240123','2.16.840.1.113762.1.4.1146.181_78223000');
-INSERT INTO valueset_to_concept VALUES('3633','2.16.840.1.113762.1.4.1146.181_20240123','2.16.840.1.113762.1.4.1146.181_79949009');
-INSERT INTO valueset_to_concept VALUES('3634','2.16.840.1.113762.1.4.1146.181_20240123','2.16.840.1.113762.1.4.1146.181_85055004');
-INSERT INTO valueset_to_concept VALUES('3635','2.16.840.1.113762.1.4.1146.181_20240123','2.16.840.1.113762.1.4.1146.181_866061009');
-INSERT INTO valueset_to_concept VALUES('3636','2.16.840.1.113762.1.4.1146.181_20240123','2.16.840.1.113762.1.4.1146.181_88036000');
-INSERT INTO valueset_to_concept VALUES('3637','2.16.840.1.113762.1.4.1146.181_20240123','2.16.840.1.113762.1.4.1146.181_422337001');
-INSERT INTO valueset_to_concept VALUES('3638','2.16.840.1.113762.1.4.1146.181_20240123','2.16.840.1.113762.1.4.1146.181_46303000');
-INSERT INTO valueset_to_concept VALUES('3639','2.16.840.1.113762.1.4.1146.172_20181031','2.16.840.1.113762.1.4.1146.172_16541001');
-INSERT INTO valueset_to_concept VALUES('3640','2.16.840.1.113762.1.4.1146.172_20181031','2.16.840.1.113762.1.4.1146.172_197342009');
-INSERT INTO valueset_to_concept VALUES('3641','2.16.840.1.113762.1.4.1146.172_20181031','2.16.840.1.113762.1.4.1146.172_42100005');
-INSERT INTO valueset_to_concept VALUES('3642','2.16.840.1.113762.1.4.1146.172_20181031','2.16.840.1.113762.1.4.1146.172_74166005');
-INSERT INTO valueset_to_concept VALUES('3643','2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293_M10.10');
-INSERT INTO valueset_to_concept VALUES('3644','2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293_M10.111');
-INSERT INTO valueset_to_concept VALUES('3645','2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293_M10.112');
-INSERT INTO valueset_to_concept VALUES('3646','2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293_M10.119');
-INSERT INTO valueset_to_concept VALUES('3647','2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293_M10.121');
-INSERT INTO valueset_to_concept VALUES('3648','2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293_M10.122');
-INSERT INTO valueset_to_concept VALUES('3649','2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293_M10.129');
-INSERT INTO valueset_to_concept VALUES('3650','2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293_M10.131');
-INSERT INTO valueset_to_concept VALUES('3651','2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293_M10.132');
-INSERT INTO valueset_to_concept VALUES('3652','2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293_M10.139');
-INSERT INTO valueset_to_concept VALUES('3653','2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293_M10.141');
-INSERT INTO valueset_to_concept VALUES('3654','2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293_M10.142');
-INSERT INTO valueset_to_concept VALUES('3655','2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293_M10.149');
-INSERT INTO valueset_to_concept VALUES('3656','2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293_M10.151');
-INSERT INTO valueset_to_concept VALUES('3657','2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293_M10.152');
-INSERT INTO valueset_to_concept VALUES('3658','2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293_M10.159');
-INSERT INTO valueset_to_concept VALUES('3659','2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293_M10.161');
-INSERT INTO valueset_to_concept VALUES('3660','2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293_M10.162');
-INSERT INTO valueset_to_concept VALUES('3661','2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293_M10.169');
-INSERT INTO valueset_to_concept VALUES('3662','2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293_M10.171');
-INSERT INTO valueset_to_concept VALUES('3663','2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293_M10.172');
-INSERT INTO valueset_to_concept VALUES('3664','2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293_M10.179');
-INSERT INTO valueset_to_concept VALUES('3665','2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293_M10.18');
-INSERT INTO valueset_to_concept VALUES('3666','2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293_M10.19');
-INSERT INTO valueset_to_concept VALUES('3667','2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293_M1A.10X0');
-INSERT INTO valueset_to_concept VALUES('3668','2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293_M1A.10X1');
-INSERT INTO valueset_to_concept VALUES('3669','2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293_M1A.1110');
-INSERT INTO valueset_to_concept VALUES('3670','2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293_M1A.1111');
-INSERT INTO valueset_to_concept VALUES('3671','2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293_M1A.1120');
-INSERT INTO valueset_to_concept VALUES('3672','2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293_M1A.1121');
-INSERT INTO valueset_to_concept VALUES('3673','2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293_M1A.1190');
-INSERT INTO valueset_to_concept VALUES('3674','2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293_M1A.1191');
-INSERT INTO valueset_to_concept VALUES('3675','2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293_M1A.1210');
-INSERT INTO valueset_to_concept VALUES('3676','2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293_M1A.1211');
-INSERT INTO valueset_to_concept VALUES('3677','2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293_M1A.1220');
-INSERT INTO valueset_to_concept VALUES('3678','2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293_M1A.1221');
-INSERT INTO valueset_to_concept VALUES('3679','2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293_M1A.1290');
-INSERT INTO valueset_to_concept VALUES('3680','2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293_M1A.1291');
-INSERT INTO valueset_to_concept VALUES('3681','2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293_M1A.1310');
-INSERT INTO valueset_to_concept VALUES('3682','2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293_M1A.1311');
-INSERT INTO valueset_to_concept VALUES('3683','2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293_M1A.1320');
-INSERT INTO valueset_to_concept VALUES('3684','2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293_M1A.1321');
-INSERT INTO valueset_to_concept VALUES('3685','2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293_M1A.1390');
-INSERT INTO valueset_to_concept VALUES('3686','2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293_M1A.1391');
-INSERT INTO valueset_to_concept VALUES('3687','2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293_M1A.1410');
-INSERT INTO valueset_to_concept VALUES('3688','2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293_M1A.1411');
-INSERT INTO valueset_to_concept VALUES('3689','2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293_M1A.1420');
-INSERT INTO valueset_to_concept VALUES('3690','2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293_M1A.1421');
-INSERT INTO valueset_to_concept VALUES('3691','2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293_M1A.1490');
-INSERT INTO valueset_to_concept VALUES('3692','2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293_M1A.1491');
-INSERT INTO valueset_to_concept VALUES('3693','2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293_M1A.1510');
-INSERT INTO valueset_to_concept VALUES('3694','2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293_M1A.1511');
-INSERT INTO valueset_to_concept VALUES('3695','2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293_M1A.1520');
-INSERT INTO valueset_to_concept VALUES('3696','2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293_M1A.1521');
-INSERT INTO valueset_to_concept VALUES('3697','2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293_M1A.1590');
-INSERT INTO valueset_to_concept VALUES('3698','2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293_M1A.1591');
-INSERT INTO valueset_to_concept VALUES('3699','2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293_M1A.1610');
-INSERT INTO valueset_to_concept VALUES('3700','2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293_M1A.1611');
-INSERT INTO valueset_to_concept VALUES('3701','2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293_M1A.1620');
-INSERT INTO valueset_to_concept VALUES('3702','2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293_M1A.1621');
-INSERT INTO valueset_to_concept VALUES('3703','2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293_M1A.1690');
-INSERT INTO valueset_to_concept VALUES('3704','2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293_M1A.1691');
-INSERT INTO valueset_to_concept VALUES('3705','2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293_M1A.1710');
-INSERT INTO valueset_to_concept VALUES('3706','2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293_M1A.1711');
-INSERT INTO valueset_to_concept VALUES('3707','2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293_M1A.1720');
-INSERT INTO valueset_to_concept VALUES('3708','2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293_M1A.1721');
-INSERT INTO valueset_to_concept VALUES('3709','2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293_M1A.1790');
-INSERT INTO valueset_to_concept VALUES('3710','2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293_M1A.1791');
-INSERT INTO valueset_to_concept VALUES('3711','2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293_M1A.18X0');
-INSERT INTO valueset_to_concept VALUES('3712','2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293_M1A.18X1');
-INSERT INTO valueset_to_concept VALUES('3713','2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293_M1A.19X0');
-INSERT INTO valueset_to_concept VALUES('3714','2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293_M1A.19X1');
-INSERT INTO valueset_to_concept VALUES('3715','2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293_T56.0X1S');
-INSERT INTO valueset_to_concept VALUES('3716','2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293_T56.0X2A');
-INSERT INTO valueset_to_concept VALUES('3717','2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293_T56.0X2D');
-INSERT INTO valueset_to_concept VALUES('3718','2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293_T56.0X2S');
-INSERT INTO valueset_to_concept VALUES('3719','2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293_T56.0X3A');
-INSERT INTO valueset_to_concept VALUES('3720','2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293_T56.0X3D');
-INSERT INTO valueset_to_concept VALUES('3721','2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293_T56.0X3S');
-INSERT INTO valueset_to_concept VALUES('3722','2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293_T56.0X4S');
-INSERT INTO valueset_to_concept VALUES('3723','2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293_T56.0X1A');
-INSERT INTO valueset_to_concept VALUES('3724','2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293_T56.0X1D');
-INSERT INTO valueset_to_concept VALUES('3725','2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293_T56.0X4A');
-INSERT INTO valueset_to_concept VALUES('3726','2.16.840.1.113762.1.4.1146.293_20230122','2.16.840.1.113762.1.4.1146.293_T56.0X4D');
-INSERT INTO valueset_to_concept VALUES('3727','2.16.840.1.113762.1.4.1146.1371_20210526','2.16.840.1.113762.1.4.1146.1371_52947006');
-INSERT INTO valueset_to_concept VALUES('3728','2.16.840.1.113762.1.4.1146.173_20181031','2.16.840.1.113762.1.4.1146.173_A95');
-INSERT INTO valueset_to_concept VALUES('3729','2.16.840.1.113762.1.4.1146.173_20181031','2.16.840.1.113762.1.4.1146.173_A95.0');
-INSERT INTO valueset_to_concept VALUES('3730','2.16.840.1.113762.1.4.1146.173_20181031','2.16.840.1.113762.1.4.1146.173_A95.1');
-INSERT INTO valueset_to_concept VALUES('3731','2.16.840.1.113762.1.4.1146.173_20181031','2.16.840.1.113762.1.4.1146.173_A95.9');
-INSERT INTO valueset_to_concept VALUES('3732','2.16.840.1.113762.1.4.1146.1370_20210526','2.16.840.1.113762.1.4.1146.1370_A83.0');
-INSERT INTO valueset_to_concept VALUES('3733','2.16.840.1.113762.1.4.1146.175_20220601','2.16.840.1.113762.1.4.1146.175_397420007');
-INSERT INTO valueset_to_concept VALUES('3734','2.16.840.1.113762.1.4.1146.175_20220601','2.16.840.1.113762.1.4.1146.175_417093003');
-INSERT INTO valueset_to_concept VALUES('3735','2.16.840.1.113762.1.4.1146.175_20220601','2.16.840.1.113762.1.4.1146.175_430397002');
-INSERT INTO valueset_to_concept VALUES('3736','2.16.840.1.113762.1.4.1146.175_20220601','2.16.840.1.113762.1.4.1146.175_763018002');
-INSERT INTO valueset_to_concept VALUES('3737','2.16.840.1.113762.1.4.1146.175_20220601','2.16.840.1.113762.1.4.1146.175_87048000');
-INSERT INTO valueset_to_concept VALUES('3738','2.16.840.1.113762.1.4.1146.175_20220601','2.16.840.1.113762.1.4.1146.175_404233006');
-INSERT INTO valueset_to_concept VALUES('3739','2.16.840.1.113762.1.4.1146.175_20220601','2.16.840.1.113762.1.4.1146.175_1163553003');
-INSERT INTO valueset_to_concept VALUES('3740','2.16.840.1.113762.1.4.1146.175_20220601','2.16.840.1.113762.1.4.1146.175_392662004');
-INSERT INTO valueset_to_concept VALUES('3741','2.16.840.1.113762.1.4.1146.176_20230602','2.16.840.1.113762.1.4.1146.176_A92.30');
-INSERT INTO valueset_to_concept VALUES('3742','2.16.840.1.113762.1.4.1146.176_20230602','2.16.840.1.113762.1.4.1146.176_A92.32');
-INSERT INTO valueset_to_concept VALUES('3743','2.16.840.1.113762.1.4.1146.176_20230602','2.16.840.1.113762.1.4.1146.176_A92.39');
-INSERT INTO valueset_to_concept VALUES('3744','2.16.840.1.113762.1.4.1146.176_20230602','2.16.840.1.113762.1.4.1146.176_A92.31');
-INSERT INTO valueset_to_concept VALUES('3745','2.16.840.1.113762.1.4.1146.178_20181031','2.16.840.1.113762.1.4.1146.178_A83.3');
-INSERT INTO valueset_to_concept VALUES('3746','2.16.840.1.113762.1.4.1146.179_20200515','2.16.840.1.113762.1.4.1146.179_416129000');
-INSERT INTO valueset_to_concept VALUES('3747','2.16.840.1.113762.1.4.1146.179_20200515','2.16.840.1.113762.1.4.1146.179_417192005');
-INSERT INTO valueset_to_concept VALUES('3748','2.16.840.1.113762.1.4.1146.179_20200515','2.16.840.1.113762.1.4.1146.179_404234000');
-INSERT INTO valueset_to_concept VALUES('3749','2.16.840.1.113762.1.4.1146.179_20200515','2.16.840.1.113762.1.4.1146.179_417607009');
-INSERT INTO valueset_to_concept VALUES('3750','2.16.840.1.113762.1.4.1146.2105_20230125','2.16.840.1.113762.1.4.1146.2105_191388008');
-INSERT INTO valueset_to_concept VALUES('3751','2.16.840.1.113762.1.4.1146.2105_20230125','2.16.840.1.113762.1.4.1146.2105_234395000');
-INSERT INTO valueset_to_concept VALUES('3752','2.16.840.1.113762.1.4.1146.2105_20230125','2.16.840.1.113762.1.4.1146.2105_234396004');
-INSERT INTO valueset_to_concept VALUES('3753','2.16.840.1.113762.1.4.1146.2105_20230125','2.16.840.1.113762.1.4.1146.2105_267550008');
-INSERT INTO valueset_to_concept VALUES('3754','2.16.840.1.113762.1.4.1146.2105_20230125','2.16.840.1.113762.1.4.1146.2105_74912001');
-INSERT INTO valueset_to_concept VALUES('3755','2.16.840.1.113762.1.4.1146.2105_20230125','2.16.840.1.113762.1.4.1146.2105_767497003');
-INSERT INTO valueset_to_concept VALUES('3756','2.16.840.1.113762.1.4.1146.2105_20230125','2.16.840.1.113762.1.4.1146.2105_767498008');
-INSERT INTO valueset_to_concept VALUES('3757','2.16.840.1.113762.1.4.1146.2105_20230125','2.16.840.1.113762.1.4.1146.2105_767499000');
-INSERT INTO valueset_to_concept VALUES('3758','2.16.840.1.113762.1.4.1146.2105_20230125','2.16.840.1.113762.1.4.1146.2105_127037003');
-INSERT INTO valueset_to_concept VALUES('3759','2.16.840.1.113762.1.4.1146.2105_20230125','2.16.840.1.113762.1.4.1146.2105_131171006');
-INSERT INTO valueset_to_concept VALUES('3760','2.16.840.1.113762.1.4.1146.2105_20230125','2.16.840.1.113762.1.4.1146.2105_191389000');
-INSERT INTO valueset_to_concept VALUES('3761','2.16.840.1.113762.1.4.1146.2105_20230125','2.16.840.1.113762.1.4.1146.2105_191390009');
-INSERT INTO valueset_to_concept VALUES('3762','2.16.840.1.113762.1.4.1146.2105_20230125','2.16.840.1.113762.1.4.1146.2105_295315008');
-INSERT INTO valueset_to_concept VALUES('3763','2.16.840.1.113762.1.4.1146.2105_20230125','2.16.840.1.113762.1.4.1146.2105_38959009');
-INSERT INTO valueset_to_concept VALUES('3764','2.16.840.1.113762.1.4.1146.2105_20230125','2.16.840.1.113762.1.4.1146.2105_406593009');
-INSERT INTO valueset_to_concept VALUES('3765','2.16.840.1.113762.1.4.1146.2105_20230125','2.16.840.1.113762.1.4.1146.2105_57020009');
-INSERT INTO valueset_to_concept VALUES('3766','2.16.840.1.113762.1.4.1146.1016_20240619','2.16.840.1.113762.1.4.1146.1016_105628008');
-INSERT INTO valueset_to_concept VALUES('3767','2.16.840.1.113762.1.4.1146.1016_20240619','2.16.840.1.113762.1.4.1146.1016_1163125006');
-INSERT INTO valueset_to_concept VALUES('3768','2.16.840.1.113762.1.4.1146.1016_20240619','2.16.840.1.113762.1.4.1146.1016_1163127003');
-INSERT INTO valueset_to_concept VALUES('3769','2.16.840.1.113762.1.4.1146.1016_20240619','2.16.840.1.113762.1.4.1146.1016_1163128008');
-INSERT INTO valueset_to_concept VALUES('3770','2.16.840.1.113762.1.4.1146.1016_20240619','2.16.840.1.113762.1.4.1146.1016_1287471003');
-INSERT INTO valueset_to_concept VALUES('3771','2.16.840.1.113762.1.4.1146.1016_20240619','2.16.840.1.113762.1.4.1146.1016_1287511006');
-INSERT INTO valueset_to_concept VALUES('3772','2.16.840.1.113762.1.4.1146.1016_20240619','2.16.840.1.113762.1.4.1146.1016_1287512004');
-INSERT INTO valueset_to_concept VALUES('3773','2.16.840.1.113762.1.4.1146.1016_20240619','2.16.840.1.113762.1.4.1146.1016_1287513009');
-INSERT INTO valueset_to_concept VALUES('3774','2.16.840.1.113762.1.4.1146.1016_20240619','2.16.840.1.113762.1.4.1146.1016_402964003');
-INSERT INTO valueset_to_concept VALUES('3775','2.16.840.1.113762.1.4.1146.1016_20240619','2.16.840.1.113762.1.4.1146.1016_51254007');
-INSERT INTO valueset_to_concept VALUES('3776','2.16.840.1.113762.1.4.1146.1016_20240619','2.16.840.1.113762.1.4.1146.1016_71085009');
-INSERT INTO valueset_to_concept VALUES('3777','2.16.840.1.113762.1.4.1146.1016_20240619','2.16.840.1.113762.1.4.1146.1016_76623002');
-INSERT INTO valueset_to_concept VALUES('3778','2.16.840.1.113762.1.4.1146.1016_20240619','2.16.840.1.113762.1.4.1146.1016_85904008');
-INSERT INTO valueset_to_concept VALUES('3779','2.16.840.1.113762.1.4.1146.1016_20240619','2.16.840.1.113762.1.4.1146.1016_186090001');
-INSERT INTO valueset_to_concept VALUES('3780','2.16.840.1.113762.1.4.1146.1258_20210120','2.16.840.1.113762.1.4.1146.1258_Z22.7');
-INSERT INTO valueset_to_concept VALUES('3781','2.16.840.1.113762.1.4.1146.1379_20230602','2.16.840.1.113762.1.4.1146.1379_1186838001');
-INSERT INTO valueset_to_concept VALUES('3782','2.16.840.1.113762.1.4.1146.1379_20230602','2.16.840.1.113762.1.4.1146.1379_186597006');
-INSERT INTO valueset_to_concept VALUES('3783','2.16.840.1.113762.1.4.1146.1379_20230602','2.16.840.1.113762.1.4.1146.1379_241774007');
-INSERT INTO valueset_to_concept VALUES('3784','2.16.840.1.113762.1.4.1146.1379_20230602','2.16.840.1.113762.1.4.1146.1379_242296003');
-INSERT INTO valueset_to_concept VALUES('3785','2.16.840.1.113762.1.4.1146.1379_20230602','2.16.840.1.113762.1.4.1146.1379_242297007');
-INSERT INTO valueset_to_concept VALUES('3786','2.16.840.1.113762.1.4.1146.1379_20230602','2.16.840.1.113762.1.4.1146.1379_446438003');
-INSERT INTO valueset_to_concept VALUES('3787','2.16.840.1.113762.1.4.1146.1379_20230602','2.16.840.1.113762.1.4.1146.1379_446439006');
-INSERT INTO valueset_to_concept VALUES('3788','2.16.840.1.113762.1.4.1146.1379_20230602','2.16.840.1.113762.1.4.1146.1379_446443005');
-INSERT INTO valueset_to_concept VALUES('3789','2.16.840.1.113762.1.4.1146.1379_20230602','2.16.840.1.113762.1.4.1146.1379_67987005');
-INSERT INTO valueset_to_concept VALUES('3790','2.16.840.1.113762.1.4.1146.1379_20230602','2.16.840.1.113762.1.4.1146.1379_83227006');
-INSERT INTO valueset_to_concept VALUES('3791','2.16.840.1.113762.1.4.1146.1015_20190606','2.16.840.1.113762.1.4.1146.1015_A01.1');
-INSERT INTO valueset_to_concept VALUES('3792','2.16.840.1.113762.1.4.1146.1015_20190606','2.16.840.1.113762.1.4.1146.1015_A01.2');
-INSERT INTO valueset_to_concept VALUES('3793','2.16.840.1.113762.1.4.1146.1015_20190606','2.16.840.1.113762.1.4.1146.1015_A01.3');
-INSERT INTO valueset_to_concept VALUES('3794','2.16.840.1.113762.1.4.1146.1015_20190606','2.16.840.1.113762.1.4.1146.1015_A01.4');
-INSERT INTO valueset_to_concept VALUES('3795','2.16.840.1.113762.1.4.1146.1015_20190606','2.16.840.1.113762.1.4.1146.1015_A01');
-INSERT INTO valueset_to_concept VALUES('3796','2.16.840.1.113762.1.4.1146.1136_20200515','2.16.840.1.113762.1.4.1146.1136_406603008');
-INSERT INTO valueset_to_concept VALUES('3797','2.16.840.1.113762.1.4.1146.1136_20200515','2.16.840.1.113762.1.4.1146.1136_406604002');
-INSERT INTO valueset_to_concept VALUES('3798','2.16.840.1.113762.1.4.1146.1136_20200515','2.16.840.1.113762.1.4.1146.1136_406577000');
-INSERT INTO valueset_to_concept VALUES('3799','2.16.840.1.113762.1.4.1146.1136_20200515','2.16.840.1.113762.1.4.1146.1136_406607009');
-INSERT INTO valueset_to_concept VALUES('3800','2.16.840.1.113762.1.4.1146.2342_20240619','2.16.840.1.113762.1.4.1146.2342_1237016007');
-INSERT INTO valueset_to_concept VALUES('3801','2.16.840.1.113762.1.4.1146.1012_20240619','2.16.840.1.113762.1.4.1146.1012_105628008');
-INSERT INTO valueset_to_concept VALUES('3802','2.16.840.1.113762.1.4.1146.1012_20240619','2.16.840.1.113762.1.4.1146.1012_1084791000119106');
-INSERT INTO valueset_to_concept VALUES('3803','2.16.840.1.113762.1.4.1146.1012_20240619','2.16.840.1.113762.1.4.1146.1012_1179378005');
-INSERT INTO valueset_to_concept VALUES('3804','2.16.840.1.113762.1.4.1146.1012_20240619','2.16.840.1.113762.1.4.1146.1012_1179405006');
-INSERT INTO valueset_to_concept VALUES('3805','2.16.840.1.113762.1.4.1146.1012_20240619','2.16.840.1.113762.1.4.1146.1012_1179407003');
-INSERT INTO valueset_to_concept VALUES('3806','2.16.840.1.113762.1.4.1146.1012_20240619','2.16.840.1.113762.1.4.1146.1012_1217295005');
-INSERT INTO valueset_to_concept VALUES('3807','2.16.840.1.113762.1.4.1146.1012_20240619','2.16.840.1.113762.1.4.1146.1012_1287189007');
-INSERT INTO valueset_to_concept VALUES('3808','2.16.840.1.113762.1.4.1146.1012_20240619','2.16.840.1.113762.1.4.1146.1012_194929007');
-INSERT INTO valueset_to_concept VALUES('3809','2.16.840.1.113762.1.4.1146.1012_20240619','2.16.840.1.113762.1.4.1146.1012_402963009');
-INSERT INTO valueset_to_concept VALUES('3810','2.16.840.1.113762.1.4.1146.1012_20240619','2.16.840.1.113762.1.4.1146.1012_45312009');
-INSERT INTO valueset_to_concept VALUES('3811','2.16.840.1.113762.1.4.1146.1012_20240619','2.16.840.1.113762.1.4.1146.1012_4834000');
-INSERT INTO valueset_to_concept VALUES('3812','2.16.840.1.113762.1.4.1146.1012_20240619','2.16.840.1.113762.1.4.1146.1012_789006005');
-INSERT INTO valueset_to_concept VALUES('3813','2.16.840.1.113762.1.4.1146.1012_20240619','2.16.840.1.113762.1.4.1146.1012_192648008');
-INSERT INTO valueset_to_concept VALUES('3814','2.16.840.1.113762.1.4.1146.1012_20240619','2.16.840.1.113762.1.4.1146.1012_186090001');
-INSERT INTO valueset_to_concept VALUES('3815','2.16.840.1.113762.1.4.1146.2340_20240619','2.16.840.1.113762.1.4.1146.2340_472841006');
-INSERT INTO valueset_to_concept VALUES('3816','2.16.840.1.113762.1.4.1146.1011_20190606','2.16.840.1.113762.1.4.1146.1011_A01.0');
-INSERT INTO valueset_to_concept VALUES('3817','2.16.840.1.113762.1.4.1146.1011_20190606','2.16.840.1.113762.1.4.1146.1011_A01.00');
-INSERT INTO valueset_to_concept VALUES('3818','2.16.840.1.113762.1.4.1146.1011_20190606','2.16.840.1.113762.1.4.1146.1011_A01.02');
-INSERT INTO valueset_to_concept VALUES('3819','2.16.840.1.113762.1.4.1146.1011_20190606','2.16.840.1.113762.1.4.1146.1011_A01.03');
-INSERT INTO valueset_to_concept VALUES('3820','2.16.840.1.113762.1.4.1146.1011_20190606','2.16.840.1.113762.1.4.1146.1011_A01.04');
-INSERT INTO valueset_to_concept VALUES('3821','2.16.840.1.113762.1.4.1146.1011_20190606','2.16.840.1.113762.1.4.1146.1011_A01.05');
-INSERT INTO valueset_to_concept VALUES('3822','2.16.840.1.113762.1.4.1146.1011_20190606','2.16.840.1.113762.1.4.1146.1011_A01.09');
-INSERT INTO valueset_to_concept VALUES('3823','2.16.840.1.113762.1.4.1146.1011_20190606','2.16.840.1.113762.1.4.1146.1011_A01');
-INSERT INTO valueset_to_concept VALUES('3824','2.16.840.1.113762.1.4.1146.1011_20190606','2.16.840.1.113762.1.4.1146.1011_A01.01');
-INSERT INTO valueset_to_concept VALUES('3825','2.16.840.1.113762.1.4.1146.2341_20240619','2.16.840.1.113762.1.4.1146.2341_444435003');
-INSERT INTO valueset_to_concept VALUES('3826','2.16.840.1.113762.1.4.1146.47_20220603','2.16.840.1.113762.1.4.1146.47_A02.0');
-INSERT INTO valueset_to_concept VALUES('3827','2.16.840.1.113762.1.4.1146.47_20220603','2.16.840.1.113762.1.4.1146.47_A02.1');
-INSERT INTO valueset_to_concept VALUES('3828','2.16.840.1.113762.1.4.1146.47_20220603','2.16.840.1.113762.1.4.1146.47_A02.20');
-INSERT INTO valueset_to_concept VALUES('3829','2.16.840.1.113762.1.4.1146.47_20220603','2.16.840.1.113762.1.4.1146.47_A02.22');
-INSERT INTO valueset_to_concept VALUES('3830','2.16.840.1.113762.1.4.1146.47_20220603','2.16.840.1.113762.1.4.1146.47_A02.23');
-INSERT INTO valueset_to_concept VALUES('3831','2.16.840.1.113762.1.4.1146.47_20220603','2.16.840.1.113762.1.4.1146.47_A02.24');
-INSERT INTO valueset_to_concept VALUES('3832','2.16.840.1.113762.1.4.1146.47_20220603','2.16.840.1.113762.1.4.1146.47_A02.25');
-INSERT INTO valueset_to_concept VALUES('3833','2.16.840.1.113762.1.4.1146.47_20220603','2.16.840.1.113762.1.4.1146.47_A02.29');
-INSERT INTO valueset_to_concept VALUES('3834','2.16.840.1.113762.1.4.1146.47_20220603','2.16.840.1.113762.1.4.1146.47_A02.8');
-INSERT INTO valueset_to_concept VALUES('3835','2.16.840.1.113762.1.4.1146.47_20220603','2.16.840.1.113762.1.4.1146.47_A02.9');
-INSERT INTO valueset_to_concept VALUES('3836','2.16.840.1.113762.1.4.1146.47_20220603','2.16.840.1.113762.1.4.1146.47_A02.21');
-INSERT INTO valueset_to_concept VALUES('3837','2.16.840.1.113762.1.4.1146.48_20240619','2.16.840.1.113762.1.4.1146.48_1092371000119103');
-INSERT INTO valueset_to_concept VALUES('3838','2.16.840.1.113762.1.4.1146.48_20240619','2.16.840.1.113762.1.4.1146.48_1142226000');
-INSERT INTO valueset_to_concept VALUES('3839','2.16.840.1.113762.1.4.1146.48_20240619','2.16.840.1.113762.1.4.1146.48_1179031004');
-INSERT INTO valueset_to_concept VALUES('3840','2.16.840.1.113762.1.4.1146.48_20240619','2.16.840.1.113762.1.4.1146.48_1179034007');
-INSERT INTO valueset_to_concept VALUES('3841','2.16.840.1.113762.1.4.1146.48_20240619','2.16.840.1.113762.1.4.1146.48_1179071009');
-INSERT INTO valueset_to_concept VALUES('3842','2.16.840.1.113762.1.4.1146.48_20240619','2.16.840.1.113762.1.4.1146.48_1179073007');
-INSERT INTO valueset_to_concept VALUES('3843','2.16.840.1.113762.1.4.1146.48_20240619','2.16.840.1.113762.1.4.1146.48_127361000119109');
-INSERT INTO valueset_to_concept VALUES('3844','2.16.840.1.113762.1.4.1146.48_20240619','2.16.840.1.113762.1.4.1146.48_1287188004');
-INSERT INTO valueset_to_concept VALUES('3845','2.16.840.1.113762.1.4.1146.48_20240619','2.16.840.1.113762.1.4.1146.48_186134009');
-INSERT INTO valueset_to_concept VALUES('3846','2.16.840.1.113762.1.4.1146.48_20240619','2.16.840.1.113762.1.4.1146.48_2523007');
-INSERT INTO valueset_to_concept VALUES('3847','2.16.840.1.113762.1.4.1146.48_20240619','2.16.840.1.113762.1.4.1146.48_276288002');
-INSERT INTO valueset_to_concept VALUES('3848','2.16.840.1.113762.1.4.1146.48_20240619','2.16.840.1.113762.1.4.1146.48_302229004');
-INSERT INTO valueset_to_concept VALUES('3849','2.16.840.1.113762.1.4.1146.48_20240619','2.16.840.1.113762.1.4.1146.48_302231008');
-INSERT INTO valueset_to_concept VALUES('3850','2.16.840.1.113762.1.4.1146.48_20240619','2.16.840.1.113762.1.4.1146.48_397503006');
-INSERT INTO valueset_to_concept VALUES('3851','2.16.840.1.113762.1.4.1146.48_20240619','2.16.840.1.113762.1.4.1146.48_402962004');
-INSERT INTO valueset_to_concept VALUES('3852','2.16.840.1.113762.1.4.1146.48_20240619','2.16.840.1.113762.1.4.1146.48_42338000');
-INSERT INTO valueset_to_concept VALUES('3853','2.16.840.1.113762.1.4.1146.48_20240619','2.16.840.1.113762.1.4.1146.48_449083008');
-INSERT INTO valueset_to_concept VALUES('3854','2.16.840.1.113762.1.4.1146.48_20240619','2.16.840.1.113762.1.4.1146.48_47375003');
-INSERT INTO valueset_to_concept VALUES('3855','2.16.840.1.113762.1.4.1146.48_20240619','2.16.840.1.113762.1.4.1146.48_6803002');
-INSERT INTO valueset_to_concept VALUES('3856','2.16.840.1.113762.1.4.1146.48_20240619','2.16.840.1.113762.1.4.1146.48_71299003');
-INSERT INTO valueset_to_concept VALUES('3857','2.16.840.1.113762.1.4.1146.48_20240619','2.16.840.1.113762.1.4.1146.48_721682003');
-INSERT INTO valueset_to_concept VALUES('3858','2.16.840.1.113762.1.4.1146.48_20240619','2.16.840.1.113762.1.4.1146.48_763772002');
-INSERT INTO valueset_to_concept VALUES('3859','2.16.840.1.113762.1.4.1146.48_20240619','2.16.840.1.113762.1.4.1146.48_90974009');
-INSERT INTO valueset_to_concept VALUES('3860','2.16.840.1.113762.1.4.1146.48_20240619','2.16.840.1.113762.1.4.1146.48_420764009');
-INSERT INTO valueset_to_concept VALUES('3861','2.16.840.1.113762.1.4.1146.48_20240619','2.16.840.1.113762.1.4.1146.48_713342008');
-INSERT INTO valueset_to_concept VALUES('3862','2.16.840.1.113762.1.4.1146.48_20240619','2.16.840.1.113762.1.4.1146.48_714083007');
-INSERT INTO valueset_to_concept VALUES('3863','2.16.840.1.113762.1.4.1146.48_20240619','2.16.840.1.113762.1.4.1146.48_77645007');
-INSERT INTO valueset_to_concept VALUES('3864','2.16.840.1.113762.1.4.1146.2119_20230122','2.16.840.1.113762.1.4.1146.2119_1085291000119101');
-INSERT INTO valueset_to_concept VALUES('3865','2.16.840.1.113762.1.4.1146.2119_20230122','2.16.840.1.113762.1.4.1146.2119_1085301000119100');
-INSERT INTO valueset_to_concept VALUES('3866','2.16.840.1.113762.1.4.1146.2119_20230122','2.16.840.1.113762.1.4.1146.2119_1085331000119107');
-INSERT INTO valueset_to_concept VALUES('3867','2.16.840.1.113762.1.4.1146.2119_20230122','2.16.840.1.113762.1.4.1146.2119_1085341000119103');
-INSERT INTO valueset_to_concept VALUES('3868','2.16.840.1.113762.1.4.1146.2119_20230122','2.16.840.1.113762.1.4.1146.2119_1085351000119101');
-INSERT INTO valueset_to_concept VALUES('3869','2.16.840.1.113762.1.4.1146.2119_20230122','2.16.840.1.113762.1.4.1146.2119_1148541006');
-INSERT INTO valueset_to_concept VALUES('3870','2.16.840.1.113762.1.4.1146.2119_20230122','2.16.840.1.113762.1.4.1146.2119_204614006');
-INSERT INTO valueset_to_concept VALUES('3871','2.16.840.1.113762.1.4.1146.2119_20230122','2.16.840.1.113762.1.4.1146.2119_204616008');
-INSERT INTO valueset_to_concept VALUES('3872','2.16.840.1.113762.1.4.1146.2119_20230122','2.16.840.1.113762.1.4.1146.2119_204617004');
-INSERT INTO valueset_to_concept VALUES('3873','2.16.840.1.113762.1.4.1146.2119_20230122','2.16.840.1.113762.1.4.1146.2119_204620007');
-INSERT INTO valueset_to_concept VALUES('3874','2.16.840.1.113762.1.4.1146.2119_20230122','2.16.840.1.113762.1.4.1146.2119_337471007');
-INSERT INTO valueset_to_concept VALUES('3875','2.16.840.1.113762.1.4.1146.2119_20230122','2.16.840.1.113762.1.4.1146.2119_338486003');
-INSERT INTO valueset_to_concept VALUES('3876','2.16.840.1.113762.1.4.1146.2119_20230122','2.16.840.1.113762.1.4.1146.2119_66948001');
-INSERT INTO valueset_to_concept VALUES('3877','2.16.840.1.113762.1.4.1146.2119_20230122','2.16.840.1.113762.1.4.1146.2119_716248001');
-INSERT INTO valueset_to_concept VALUES('3878','2.16.840.1.113762.1.4.1146.2119_20230122','2.16.840.1.113762.1.4.1146.2119_719042007');
-INSERT INTO valueset_to_concept VALUES('3879','2.16.840.1.113762.1.4.1146.2119_20230122','2.16.840.1.113762.1.4.1146.2119_719456001');
-INSERT INTO valueset_to_concept VALUES('3880','2.16.840.1.113762.1.4.1146.2119_20230122','2.16.840.1.113762.1.4.1146.2119_762403002');
-INSERT INTO valueset_to_concept VALUES('3881','2.16.840.1.113762.1.4.1146.2119_20230122','2.16.840.1.113762.1.4.1146.2119_762404008');
-INSERT INTO valueset_to_concept VALUES('3882','2.16.840.1.113762.1.4.1146.2119_20230122','2.16.840.1.113762.1.4.1146.2119_762405009');
-INSERT INTO valueset_to_concept VALUES('3883','2.16.840.1.113762.1.4.1146.2119_20230122','2.16.840.1.113762.1.4.1146.2119_762406005');
-INSERT INTO valueset_to_concept VALUES('3884','2.16.840.1.113762.1.4.1146.2119_20230122','2.16.840.1.113762.1.4.1146.2119_762407001');
-INSERT INTO valueset_to_concept VALUES('3885','2.16.840.1.113762.1.4.1146.2119_20230122','2.16.840.1.113762.1.4.1146.2119_762408006');
-INSERT INTO valueset_to_concept VALUES('3886','2.16.840.1.113762.1.4.1146.2119_20230122','2.16.840.1.113762.1.4.1146.2119_762409003');
-INSERT INTO valueset_to_concept VALUES('3887','2.16.840.1.113762.1.4.1146.2119_20230122','2.16.840.1.113762.1.4.1146.2119_762410008');
-INSERT INTO valueset_to_concept VALUES('3888','2.16.840.1.113762.1.4.1146.2119_20230122','2.16.840.1.113762.1.4.1146.2119_762580003');
-INSERT INTO valueset_to_concept VALUES('3889','2.16.840.1.113762.1.4.1146.2119_20230122','2.16.840.1.113762.1.4.1146.2119_762581004');
-INSERT INTO valueset_to_concept VALUES('3890','2.16.840.1.113762.1.4.1146.2119_20230122','2.16.840.1.113762.1.4.1146.2119_762582006');
-INSERT INTO valueset_to_concept VALUES('3891','2.16.840.1.113762.1.4.1146.2119_20230122','2.16.840.1.113762.1.4.1146.2119_762583001');
-INSERT INTO valueset_to_concept VALUES('3892','2.16.840.1.113762.1.4.1146.2119_20230122','2.16.840.1.113762.1.4.1146.2119_762584007');
-INSERT INTO valueset_to_concept VALUES('3893','2.16.840.1.113762.1.4.1146.2119_20230122','2.16.840.1.113762.1.4.1146.2119_762585008');
-INSERT INTO valueset_to_concept VALUES('3894','2.16.840.1.113762.1.4.1146.2119_20230122','2.16.840.1.113762.1.4.1146.2119_762586009');
-INSERT INTO valueset_to_concept VALUES('3895','2.16.840.1.113762.1.4.1146.2119_20230122','2.16.840.1.113762.1.4.1146.2119_762587000');
-INSERT INTO valueset_to_concept VALUES('3896','2.16.840.1.113762.1.4.1146.2119_20230122','2.16.840.1.113762.1.4.1146.2119_762588005');
-INSERT INTO valueset_to_concept VALUES('3897','2.16.840.1.113762.1.4.1146.2119_20230122','2.16.840.1.113762.1.4.1146.2119_762660007');
-INSERT INTO valueset_to_concept VALUES('3898','2.16.840.1.113762.1.4.1146.2119_20230122','2.16.840.1.113762.1.4.1146.2119_764697003');
-INSERT INTO valueset_to_concept VALUES('3899','2.16.840.1.113762.1.4.1146.2119_20230122','2.16.840.1.113762.1.4.1146.2119_771013004');
-INSERT INTO valueset_to_concept VALUES('3900','2.16.840.1.113762.1.4.1146.2119_20230122','2.16.840.1.113762.1.4.1146.2119_783159001');
-INSERT INTO valueset_to_concept VALUES('3901','2.16.840.1.113762.1.4.1146.2119_20230122','2.16.840.1.113762.1.4.1146.2119_1187039001');
-INSERT INTO valueset_to_concept VALUES('3902','2.16.840.1.113762.1.4.1146.2119_20230122','2.16.840.1.113762.1.4.1146.2119_1208338004');
-INSERT INTO valueset_to_concept VALUES('3903','2.16.840.1.113762.1.4.1146.2119_20230122','2.16.840.1.113762.1.4.1146.2119_716007007');
-INSERT INTO valueset_to_concept VALUES('3904','2.16.840.1.113762.1.4.1146.2117_20230122','2.16.840.1.113762.1.4.1146.2117_109546001');
-INSERT INTO valueset_to_concept VALUES('3905','2.16.840.1.113762.1.4.1146.2117_20230122','2.16.840.1.113762.1.4.1146.2117_109548000');
-INSERT INTO valueset_to_concept VALUES('3906','2.16.840.1.113762.1.4.1146.2117_20230122','2.16.840.1.113762.1.4.1146.2117_1119390005');
-INSERT INTO valueset_to_concept VALUES('3907','2.16.840.1.113762.1.4.1146.2117_20230122','2.16.840.1.113762.1.4.1146.2117_1119391009');
-INSERT INTO valueset_to_concept VALUES('3908','2.16.840.1.113762.1.4.1146.2117_20230122','2.16.840.1.113762.1.4.1146.2117_1119392002');
-INSERT INTO valueset_to_concept VALUES('3909','2.16.840.1.113762.1.4.1146.2117_20230122','2.16.840.1.113762.1.4.1146.2117_1119393007');
-INSERT INTO valueset_to_concept VALUES('3910','2.16.840.1.113762.1.4.1146.2117_20230122','2.16.840.1.113762.1.4.1146.2117_18910001');
-INSERT INTO valueset_to_concept VALUES('3911','2.16.840.1.113762.1.4.1146.2117_20230122','2.16.840.1.113762.1.4.1146.2117_24194000');
-INSERT INTO valueset_to_concept VALUES('3912','2.16.840.1.113762.1.4.1146.2117_20230122','2.16.840.1.113762.1.4.1146.2117_253993003');
-INSERT INTO valueset_to_concept VALUES('3913','2.16.840.1.113762.1.4.1146.2117_20230122','2.16.840.1.113762.1.4.1146.2117_253994009');
-INSERT INTO valueset_to_concept VALUES('3914','2.16.840.1.113762.1.4.1146.2117_20230122','2.16.840.1.113762.1.4.1146.2117_253995005');
-INSERT INTO valueset_to_concept VALUES('3915','2.16.840.1.113762.1.4.1146.2117_20230122','2.16.840.1.113762.1.4.1146.2117_253996006');
-INSERT INTO valueset_to_concept VALUES('3916','2.16.840.1.113762.1.4.1146.2117_20230122','2.16.840.1.113762.1.4.1146.2117_253997002');
-INSERT INTO valueset_to_concept VALUES('3917','2.16.840.1.113762.1.4.1146.2117_20230122','2.16.840.1.113762.1.4.1146.2117_254000002');
-INSERT INTO valueset_to_concept VALUES('3918','2.16.840.1.113762.1.4.1146.2117_20230122','2.16.840.1.113762.1.4.1146.2117_254001003');
-INSERT INTO valueset_to_concept VALUES('3919','2.16.840.1.113762.1.4.1146.2117_20230122','2.16.840.1.113762.1.4.1146.2117_254002005');
-INSERT INTO valueset_to_concept VALUES('3920','2.16.840.1.113762.1.4.1146.2117_20230122','2.16.840.1.113762.1.4.1146.2117_254003000');
-INSERT INTO valueset_to_concept VALUES('3921','2.16.840.1.113762.1.4.1146.2117_20230122','2.16.840.1.113762.1.4.1146.2117_268197001');
-INSERT INTO valueset_to_concept VALUES('3922','2.16.840.1.113762.1.4.1146.2117_20230122','2.16.840.1.113762.1.4.1146.2117_270513005');
-INSERT INTO valueset_to_concept VALUES('3923','2.16.840.1.113762.1.4.1146.2117_20230122','2.16.840.1.113762.1.4.1146.2117_403772000');
-INSERT INTO valueset_to_concept VALUES('3924','2.16.840.1.113762.1.4.1146.2117_20230122','2.16.840.1.113762.1.4.1146.2117_431040002');
-INSERT INTO valueset_to_concept VALUES('3925','2.16.840.1.113762.1.4.1146.2117_20230122','2.16.840.1.113762.1.4.1146.2117_43437003');
-INSERT INTO valueset_to_concept VALUES('3926','2.16.840.1.113762.1.4.1146.2117_20230122','2.16.840.1.113762.1.4.1146.2117_448915004');
-INSERT INTO valueset_to_concept VALUES('3927','2.16.840.1.113762.1.4.1146.2117_20230122','2.16.840.1.113762.1.4.1146.2117_47686007');
-INSERT INTO valueset_to_concept VALUES('3928','2.16.840.1.113762.1.4.1146.2117_20230122','2.16.840.1.113762.1.4.1146.2117_63567004');
-INSERT INTO valueset_to_concept VALUES('3929','2.16.840.1.113762.1.4.1146.2117_20230122','2.16.840.1.113762.1.4.1146.2117_715471007');
-INSERT INTO valueset_to_concept VALUES('3930','2.16.840.1.113762.1.4.1146.2117_20230122','2.16.840.1.113762.1.4.1146.2117_718576001');
-INSERT INTO valueset_to_concept VALUES('3931','2.16.840.1.113762.1.4.1146.2117_20230122','2.16.840.1.113762.1.4.1146.2117_718766002');
-INSERT INTO valueset_to_concept VALUES('3932','2.16.840.1.113762.1.4.1146.2117_20230122','2.16.840.1.113762.1.4.1146.2117_719394002');
-INSERT INTO valueset_to_concept VALUES('3933','2.16.840.1.113762.1.4.1146.2117_20230122','2.16.840.1.113762.1.4.1146.2117_719408007');
-INSERT INTO valueset_to_concept VALUES('3934','2.16.840.1.113762.1.4.1146.2117_20230122','2.16.840.1.113762.1.4.1146.2117_719466009');
-INSERT INTO valueset_to_concept VALUES('3935','2.16.840.1.113762.1.4.1146.2117_20230122','2.16.840.1.113762.1.4.1146.2117_719468005');
-INSERT INTO valueset_to_concept VALUES('3936','2.16.840.1.113762.1.4.1146.2117_20230122','2.16.840.1.113762.1.4.1146.2117_720636001');
-INSERT INTO valueset_to_concept VALUES('3937','2.16.840.1.113762.1.4.1146.2117_20230122','2.16.840.1.113762.1.4.1146.2117_722463001');
-INSERT INTO valueset_to_concept VALUES('3938','2.16.840.1.113762.1.4.1146.2117_20230122','2.16.840.1.113762.1.4.1146.2117_726670008');
-INSERT INTO valueset_to_concept VALUES('3939','2.16.840.1.113762.1.4.1146.2117_20230122','2.16.840.1.113762.1.4.1146.2117_763108005');
-INSERT INTO valueset_to_concept VALUES('3940','2.16.840.1.113762.1.4.1146.2117_20230122','2.16.840.1.113762.1.4.1146.2117_763109002');
-INSERT INTO valueset_to_concept VALUES('3941','2.16.840.1.113762.1.4.1146.2117_20230122','2.16.840.1.113762.1.4.1146.2117_763130006');
-INSERT INTO valueset_to_concept VALUES('3942','2.16.840.1.113762.1.4.1146.2117_20230122','2.16.840.1.113762.1.4.1146.2117_763278004');
-INSERT INTO valueset_to_concept VALUES('3943','2.16.840.1.113762.1.4.1146.2117_20230122','2.16.840.1.113762.1.4.1146.2117_766761000');
-INSERT INTO valueset_to_concept VALUES('3944','2.16.840.1.113762.1.4.1146.2117_20230122','2.16.840.1.113762.1.4.1146.2117_771186004');
-INSERT INTO valueset_to_concept VALUES('3945','2.16.840.1.113762.1.4.1146.2117_20230122','2.16.840.1.113762.1.4.1146.2117_773282001');
-INSERT INTO valueset_to_concept VALUES('3946','2.16.840.1.113762.1.4.1146.2117_20230122','2.16.840.1.113762.1.4.1146.2117_773749003');
-INSERT INTO valueset_to_concept VALUES('3947','2.16.840.1.113762.1.4.1146.2117_20230122','2.16.840.1.113762.1.4.1146.2117_783204009');
-INSERT INTO valueset_to_concept VALUES('3948','2.16.840.1.113762.1.4.1146.2117_20230122','2.16.840.1.113762.1.4.1146.2117_783400002');
-INSERT INTO valueset_to_concept VALUES('3949','2.16.840.1.113762.1.4.1146.2117_20230122','2.16.840.1.113762.1.4.1146.2117_783407004');
-INSERT INTO valueset_to_concept VALUES('3950','2.16.840.1.113762.1.4.1146.2117_20230122','2.16.840.1.113762.1.4.1146.2117_87979003');
-INSERT INTO valueset_to_concept VALUES('3951','2.16.840.1.113762.1.4.1146.2117_20230122','2.16.840.1.113762.1.4.1146.2117_897570002');
-INSERT INTO valueset_to_concept VALUES('3952','2.16.840.1.113762.1.4.1146.2117_20230122','2.16.840.1.113762.1.4.1146.2117_717909004');
-INSERT INTO valueset_to_concept VALUES('3953','2.16.840.1.113762.1.4.1146.2117_20230122','2.16.840.1.113762.1.4.1146.2117_718574003');
-INSERT INTO valueset_to_concept VALUES('3954','2.16.840.1.113762.1.4.1146.2117_20230122','2.16.840.1.113762.1.4.1146.2117_722375007');
-INSERT INTO valueset_to_concept VALUES('3955','2.16.840.1.113762.1.4.1146.43_20240620','2.16.840.1.113762.1.4.1146.43_20943002');
-INSERT INTO valueset_to_concept VALUES('3956','2.16.840.1.113762.1.4.1146.43_20240620','2.16.840.1.113762.1.4.1146.43_236682002');
-INSERT INTO valueset_to_concept VALUES('3957','2.16.840.1.113762.1.4.1146.43_20240620','2.16.840.1.113762.1.4.1146.43_237083000');
-INSERT INTO valueset_to_concept VALUES('3958','2.16.840.1.113762.1.4.1146.43_20240620','2.16.840.1.113762.1.4.1146.43_29864006');
-INSERT INTO valueset_to_concept VALUES('3959','2.16.840.1.113762.1.4.1146.43_20240620','2.16.840.1.113762.1.4.1146.43_44412000');
-INSERT INTO valueset_to_concept VALUES('3960','2.16.840.1.113762.1.4.1146.43_20240620','2.16.840.1.113762.1.4.1146.43_788961008');
-INSERT INTO valueset_to_concept VALUES('3961','2.16.840.1.113762.1.4.1146.43_20240620','2.16.840.1.113762.1.4.1146.43_1087021000119101');
-INSERT INTO valueset_to_concept VALUES('3962','2.16.840.1.113762.1.4.1146.43_20240620','2.16.840.1.113762.1.4.1146.43_16217981000119107');
-INSERT INTO valueset_to_concept VALUES('3963','2.16.840.1.113762.1.4.1146.43_20240620','2.16.840.1.113762.1.4.1146.43_444834005');
-INSERT INTO valueset_to_concept VALUES('3964','2.16.840.1.113762.1.4.1146.43_20240620','2.16.840.1.113762.1.4.1146.43_50970007');
-INSERT INTO valueset_to_concept VALUES('3965','2.16.840.1.113762.1.4.1146.43_20240620','2.16.840.1.113762.1.4.1146.43_54825009');
-INSERT INTO valueset_to_concept VALUES('3966','2.16.840.1.113762.1.4.1146.43_20240620','2.16.840.1.113762.1.4.1146.43_76802005');
-INSERT INTO valueset_to_concept VALUES('3967','2.16.840.1.113762.1.4.1146.2118_20230122','2.16.840.1.113762.1.4.1146.2118_Q35.1');
-INSERT INTO valueset_to_concept VALUES('3968','2.16.840.1.113762.1.4.1146.2118_20230122','2.16.840.1.113762.1.4.1146.2118_Q35.3');
-INSERT INTO valueset_to_concept VALUES('3969','2.16.840.1.113762.1.4.1146.2118_20230122','2.16.840.1.113762.1.4.1146.2118_Q35.5');
-INSERT INTO valueset_to_concept VALUES('3970','2.16.840.1.113762.1.4.1146.2118_20230122','2.16.840.1.113762.1.4.1146.2118_Q35.7');
-INSERT INTO valueset_to_concept VALUES('3971','2.16.840.1.113762.1.4.1146.2118_20230122','2.16.840.1.113762.1.4.1146.2118_Q35.9');
-INSERT INTO valueset_to_concept VALUES('3972','2.16.840.1.113762.1.4.1146.44_20240620','2.16.840.1.113762.1.4.1146.44_A54.01');
-INSERT INTO valueset_to_concept VALUES('3973','2.16.840.1.113762.1.4.1146.44_20240620','2.16.840.1.113762.1.4.1146.44_A54.03');
-INSERT INTO valueset_to_concept VALUES('3974','2.16.840.1.113762.1.4.1146.44_20240620','2.16.840.1.113762.1.4.1146.44_A54.00');
-INSERT INTO valueset_to_concept VALUES('3975','2.16.840.1.113762.1.4.1146.44_20240620','2.16.840.1.113762.1.4.1146.44_A54.02');
-INSERT INTO valueset_to_concept VALUES('3976','2.16.840.1.113762.1.4.1146.44_20240620','2.16.840.1.113762.1.4.1146.44_A54.1');
-INSERT INTO valueset_to_concept VALUES('3977','2.16.840.1.113762.1.4.1146.40_20230602','2.16.840.1.113762.1.4.1146.40_1163114002');
-INSERT INTO valueset_to_concept VALUES('3978','2.16.840.1.113762.1.4.1146.40_20230602','2.16.840.1.113762.1.4.1146.40_1193658009');
-INSERT INTO valueset_to_concept VALUES('3979','2.16.840.1.113762.1.4.1146.40_20230602','2.16.840.1.113762.1.4.1146.40_1193660006');
-INSERT INTO valueset_to_concept VALUES('3980','2.16.840.1.113762.1.4.1146.40_20230602','2.16.840.1.113762.1.4.1146.40_127531000119106');
-INSERT INTO valueset_to_concept VALUES('3981','2.16.840.1.113762.1.4.1146.40_20230602','2.16.840.1.113762.1.4.1146.40_240337004');
-INSERT INTO valueset_to_concept VALUES('3982','2.16.840.1.113762.1.4.1146.40_20230602','2.16.840.1.113762.1.4.1146.40_240354007');
-INSERT INTO valueset_to_concept VALUES('3983','2.16.840.1.113762.1.4.1146.40_20230602','2.16.840.1.113762.1.4.1146.40_328291000119103');
-INSERT INTO valueset_to_concept VALUES('3984','2.16.840.1.113762.1.4.1146.40_20230602','2.16.840.1.113762.1.4.1146.40_446328009');
-INSERT INTO valueset_to_concept VALUES('3985','2.16.840.1.113762.1.4.1146.40_20230602','2.16.840.1.113762.1.4.1146.40_69810009');
-INSERT INTO valueset_to_concept VALUES('3986','2.16.840.1.113762.1.4.1146.291_20220603','2.16.840.1.113762.1.4.1146.291_1153332006');
-INSERT INTO valueset_to_concept VALUES('3987','2.16.840.1.113762.1.4.1146.291_20220603','2.16.840.1.113762.1.4.1146.291_1153334007');
-INSERT INTO valueset_to_concept VALUES('3988','2.16.840.1.113762.1.4.1146.291_20220603','2.16.840.1.113762.1.4.1146.291_1153363005');
-INSERT INTO valueset_to_concept VALUES('3989','2.16.840.1.113762.1.4.1146.291_20220603','2.16.840.1.113762.1.4.1146.291_1153376004');
-INSERT INTO valueset_to_concept VALUES('3990','2.16.840.1.113762.1.4.1146.291_20220603','2.16.840.1.113762.1.4.1146.291_1153378003');
-INSERT INTO valueset_to_concept VALUES('3991','2.16.840.1.113762.1.4.1146.291_20220603','2.16.840.1.113762.1.4.1146.291_1153420008');
-INSERT INTO valueset_to_concept VALUES('3992','2.16.840.1.113762.1.4.1146.291_20220603','2.16.840.1.113762.1.4.1146.291_216777009');
-INSERT INTO valueset_to_concept VALUES('3993','2.16.840.1.113762.1.4.1146.291_20220603','2.16.840.1.113762.1.4.1146.291_216779007');
-INSERT INTO valueset_to_concept VALUES('3994','2.16.840.1.113762.1.4.1146.291_20220603','2.16.840.1.113762.1.4.1146.291_236454004');
-INSERT INTO valueset_to_concept VALUES('3995','2.16.840.1.113762.1.4.1146.291_20220603','2.16.840.1.113762.1.4.1146.291_239846006');
-INSERT INTO valueset_to_concept VALUES('3996','2.16.840.1.113762.1.4.1146.291_20220603','2.16.840.1.113762.1.4.1146.291_26617005');
-INSERT INTO valueset_to_concept VALUES('3997','2.16.840.1.113762.1.4.1146.291_20220603','2.16.840.1.113762.1.4.1146.291_38342005');
-INSERT INTO valueset_to_concept VALUES('3998','2.16.840.1.113762.1.4.1146.291_20220603','2.16.840.1.113762.1.4.1146.291_405811009');
-INSERT INTO valueset_to_concept VALUES('3999','2.16.840.1.113762.1.4.1146.291_20220603','2.16.840.1.113762.1.4.1146.291_59992000');
-INSERT INTO valueset_to_concept VALUES('4000','2.16.840.1.113762.1.4.1146.291_20220603','2.16.840.1.113762.1.4.1146.291_72338007');
-INSERT INTO valueset_to_concept VALUES('4001','2.16.840.1.113762.1.4.1146.291_20220603','2.16.840.1.113762.1.4.1146.291_1145155005');
-INSERT INTO valueset_to_concept VALUES('4002','2.16.840.1.113762.1.4.1146.291_20220603','2.16.840.1.113762.1.4.1146.291_1145156006');
-INSERT INTO valueset_to_concept VALUES('4003','2.16.840.1.113762.1.4.1146.291_20220603','2.16.840.1.113762.1.4.1146.291_216662006');
-INSERT INTO valueset_to_concept VALUES('4004','2.16.840.1.113762.1.4.1146.291_20220603','2.16.840.1.113762.1.4.1146.291_216780005');
-INSERT INTO valueset_to_concept VALUES('4005','2.16.840.1.113762.1.4.1146.291_20220603','2.16.840.1.113762.1.4.1146.291_230610006');
-INSERT INTO valueset_to_concept VALUES('4006','2.16.840.1.113762.1.4.1146.291_20220603','2.16.840.1.113762.1.4.1146.291_236516001');
-INSERT INTO valueset_to_concept VALUES('4007','2.16.840.1.113762.1.4.1146.291_20220603','2.16.840.1.113762.1.4.1146.291_36919001');
-INSERT INTO valueset_to_concept VALUES('4008','2.16.840.1.113762.1.4.1146.291_20220603','2.16.840.1.113762.1.4.1146.291_48152004');
-INSERT INTO valueset_to_concept VALUES('4009','2.16.840.1.113762.1.4.1146.291_20220603','2.16.840.1.113762.1.4.1146.291_51399001');
-INSERT INTO valueset_to_concept VALUES('4010','2.16.840.1.113762.1.4.1146.291_20220603','2.16.840.1.113762.1.4.1146.291_67121008');
-INSERT INTO valueset_to_concept VALUES('4011','2.16.840.1.113762.1.4.1146.291_20220603','2.16.840.1.113762.1.4.1146.291_704204003');
-INSERT INTO valueset_to_concept VALUES('4012','2.16.840.1.113762.1.4.1146.291_20220603','2.16.840.1.113762.1.4.1146.291_70842005');
-INSERT INTO valueset_to_concept VALUES('4013','2.16.840.1.113762.1.4.1146.291_20220603','2.16.840.1.113762.1.4.1146.291_72446009');
-INSERT INTO valueset_to_concept VALUES('4014','2.16.840.1.113762.1.4.1146.291_20220603','2.16.840.1.113762.1.4.1146.291_78405005');
-INSERT INTO valueset_to_concept VALUES('4015','2.16.840.1.113762.1.4.1146.291_20220603','2.16.840.1.113762.1.4.1146.291_870676005');
-INSERT INTO valueset_to_concept VALUES('4016','2.16.840.1.113762.1.4.1146.1380_20210526','2.16.840.1.113762.1.4.1146.1380_177569000');
-INSERT INTO valueset_to_concept VALUES('4017','2.16.840.1.113762.1.4.1146.1380_20210526','2.16.840.1.113762.1.4.1146.1380_216763006');
-INSERT INTO valueset_to_concept VALUES('4018','2.16.840.1.113762.1.4.1146.1380_20210526','2.16.840.1.113762.1.4.1146.1380_242298002');
-INSERT INTO valueset_to_concept VALUES('4019','2.16.840.1.113762.1.4.1146.1380_20210526','2.16.840.1.113762.1.4.1146.1380_426487006');
-INSERT INTO valueset_to_concept VALUES('4020','2.16.840.1.113762.1.4.1146.1380_20210526','2.16.840.1.113762.1.4.1146.1380_427639003');
-INSERT INTO valueset_to_concept VALUES('4021','2.16.840.1.113762.1.4.1146.1380_20210526','2.16.840.1.113762.1.4.1146.1380_45133009');
-INSERT INTO valueset_to_concept VALUES('4022','2.16.840.1.113762.1.4.1146.1380_20210526','2.16.840.1.113762.1.4.1146.1380_715149009');
-INSERT INTO valueset_to_concept VALUES('4023','2.16.840.1.113762.1.4.1146.1380_20210526','2.16.840.1.113762.1.4.1146.1380_77889005');
-INSERT INTO valueset_to_concept VALUES('4024','2.16.840.1.113762.1.4.1146.1380_20210526','2.16.840.1.113762.1.4.1146.1380_90359003');
-INSERT INTO valueset_to_concept VALUES('4025','2.16.840.1.113762.1.4.1146.1380_20210526','2.16.840.1.113762.1.4.1146.1380_95878009');
-INSERT INTO valueset_to_concept VALUES('4026','2.16.840.1.113762.1.4.1146.1380_20210526','2.16.840.1.113762.1.4.1146.1380_95879001');
-INSERT INTO valueset_to_concept VALUES('4027','2.16.840.1.113762.1.4.1146.161_20230122','2.16.840.1.113762.1.4.1146.161_1148585008');
-INSERT INTO valueset_to_concept VALUES('4028','2.16.840.1.113762.1.4.1146.161_20230122','2.16.840.1.113762.1.4.1146.161_398557001');
-INSERT INTO valueset_to_concept VALUES('4029','2.16.840.1.113762.1.4.1146.161_20230122','2.16.840.1.113762.1.4.1146.161_402965002');
-INSERT INTO valueset_to_concept VALUES('4030','2.16.840.1.113762.1.4.1146.161_20230122','2.16.840.1.113762.1.4.1146.161_406621006');
-INSERT INTO valueset_to_concept VALUES('4031','2.16.840.1.113762.1.4.1146.161_20230122','2.16.840.1.113762.1.4.1146.161_406622004');
-INSERT INTO valueset_to_concept VALUES('4032','2.16.840.1.113762.1.4.1146.161_20230122','2.16.840.1.113762.1.4.1146.161_406623009');
-INSERT INTO valueset_to_concept VALUES('4033','2.16.840.1.113762.1.4.1146.161_20230122','2.16.840.1.113762.1.4.1146.161_406625002');
-INSERT INTO valueset_to_concept VALUES('4034','2.16.840.1.113762.1.4.1146.161_20230122','2.16.840.1.113762.1.4.1146.161_406626001');
-INSERT INTO valueset_to_concept VALUES('4035','2.16.840.1.113762.1.4.1146.161_20230122','2.16.840.1.113762.1.4.1146.161_414286000');
-INSERT INTO valueset_to_concept VALUES('4036','2.16.840.1.113762.1.4.1146.161_20230122','2.16.840.1.113762.1.4.1146.161_446672004');
-INSERT INTO valueset_to_concept VALUES('4037','2.16.840.1.113762.1.4.1146.161_20230122','2.16.840.1.113762.1.4.1146.161_450861006');
-INSERT INTO valueset_to_concept VALUES('4038','2.16.840.1.113762.1.4.1146.161_20230122','2.16.840.1.113762.1.4.1146.161_707525005');
-INSERT INTO valueset_to_concept VALUES('4039','2.16.840.1.113762.1.4.1146.161_20230122','2.16.840.1.113762.1.4.1146.161_735514001');
-INSERT INTO valueset_to_concept VALUES('4040','2.16.840.1.113762.1.4.1146.161_20230122','2.16.840.1.113762.1.4.1146.161_81159000');
-INSERT INTO valueset_to_concept VALUES('4041','2.16.840.1.113762.1.4.1146.161_20230122','2.16.840.1.113762.1.4.1146.161_240350003');
-INSERT INTO valueset_to_concept VALUES('4042','2.16.840.1.113762.1.4.1146.1140_20200515','2.16.840.1.113762.1.4.1146.1140_404678001');
-INSERT INTO valueset_to_concept VALUES('4043','2.16.840.1.113762.1.4.1146.1140_20200515','2.16.840.1.113762.1.4.1146.1140_404681006');
-INSERT INTO valueset_to_concept VALUES('4044','2.16.840.1.113762.1.4.1146.1140_20200515','2.16.840.1.113762.1.4.1146.1140_406615007');
-INSERT INTO valueset_to_concept VALUES('4045','2.16.840.1.113762.1.4.1146.1140_20200515','2.16.840.1.113762.1.4.1146.1140_406577000');
-INSERT INTO valueset_to_concept VALUES('4046','2.16.840.1.113762.1.4.1146.1140_20200515','2.16.840.1.113762.1.4.1146.1140_406607009');
-INSERT INTO valueset_to_concept VALUES('4047','2.16.840.1.113762.1.4.1146.1382_20210526','2.16.840.1.113762.1.4.1146.1382_T61.78');
-INSERT INTO valueset_to_concept VALUES('4048','2.16.840.1.113762.1.4.1146.1382_20210526','2.16.840.1.113762.1.4.1146.1382_T61.781');
-INSERT INTO valueset_to_concept VALUES('4049','2.16.840.1.113762.1.4.1146.1382_20210526','2.16.840.1.113762.1.4.1146.1382_T61.781A');
-INSERT INTO valueset_to_concept VALUES('4050','2.16.840.1.113762.1.4.1146.1382_20210526','2.16.840.1.113762.1.4.1146.1382_T61.781D');
-INSERT INTO valueset_to_concept VALUES('4051','2.16.840.1.113762.1.4.1146.1382_20210526','2.16.840.1.113762.1.4.1146.1382_T61.781S');
-INSERT INTO valueset_to_concept VALUES('4052','2.16.840.1.113762.1.4.1146.1382_20210526','2.16.840.1.113762.1.4.1146.1382_T61.784');
-INSERT INTO valueset_to_concept VALUES('4053','2.16.840.1.113762.1.4.1146.1382_20210526','2.16.840.1.113762.1.4.1146.1382_T61.784A');
-INSERT INTO valueset_to_concept VALUES('4054','2.16.840.1.113762.1.4.1146.1382_20210526','2.16.840.1.113762.1.4.1146.1382_T61.784D');
-INSERT INTO valueset_to_concept VALUES('4055','2.16.840.1.113762.1.4.1146.1382_20210526','2.16.840.1.113762.1.4.1146.1382_T61.784S');
-INSERT INTO valueset_to_concept VALUES('4056','2.16.840.1.113762.1.4.1146.1260_20210121','2.16.840.1.113762.1.4.1146.1260_B60.11');
-INSERT INTO valueset_to_concept VALUES('4057','2.16.840.1.113762.1.4.1146.1381_20210526','2.16.840.1.113762.1.4.1146.1381_T61.0');
-INSERT INTO valueset_to_concept VALUES('4058','2.16.840.1.113762.1.4.1146.1381_20210526','2.16.840.1.113762.1.4.1146.1381_T61.01');
-INSERT INTO valueset_to_concept VALUES('4059','2.16.840.1.113762.1.4.1146.1381_20210526','2.16.840.1.113762.1.4.1146.1381_T61.01XA');
-INSERT INTO valueset_to_concept VALUES('4060','2.16.840.1.113762.1.4.1146.1381_20210526','2.16.840.1.113762.1.4.1146.1381_T61.01XD');
-INSERT INTO valueset_to_concept VALUES('4061','2.16.840.1.113762.1.4.1146.1381_20210526','2.16.840.1.113762.1.4.1146.1381_T61.01XS');
-INSERT INTO valueset_to_concept VALUES('4062','2.16.840.1.113762.1.4.1146.1381_20210526','2.16.840.1.113762.1.4.1146.1381_T61.04');
-INSERT INTO valueset_to_concept VALUES('4063','2.16.840.1.113762.1.4.1146.1381_20210526','2.16.840.1.113762.1.4.1146.1381_T61.04XA');
-INSERT INTO valueset_to_concept VALUES('4064','2.16.840.1.113762.1.4.1146.1381_20210526','2.16.840.1.113762.1.4.1146.1381_T61.04XD');
-INSERT INTO valueset_to_concept VALUES('4065','2.16.840.1.113762.1.4.1146.1381_20210526','2.16.840.1.113762.1.4.1146.1381_T61.04XS');
-INSERT INTO valueset_to_concept VALUES('4066','2.16.840.1.113762.1.4.1146.1381_20210526','2.16.840.1.113762.1.4.1146.1381_T61.1');
-INSERT INTO valueset_to_concept VALUES('4067','2.16.840.1.113762.1.4.1146.1381_20210526','2.16.840.1.113762.1.4.1146.1381_T61.11');
-INSERT INTO valueset_to_concept VALUES('4068','2.16.840.1.113762.1.4.1146.1381_20210526','2.16.840.1.113762.1.4.1146.1381_T61.11XA');
-INSERT INTO valueset_to_concept VALUES('4069','2.16.840.1.113762.1.4.1146.1381_20210526','2.16.840.1.113762.1.4.1146.1381_T61.11XD');
-INSERT INTO valueset_to_concept VALUES('4070','2.16.840.1.113762.1.4.1146.1381_20210526','2.16.840.1.113762.1.4.1146.1381_T61.11XS');
-INSERT INTO valueset_to_concept VALUES('4071','2.16.840.1.113762.1.4.1146.1381_20210526','2.16.840.1.113762.1.4.1146.1381_T61.14');
-INSERT INTO valueset_to_concept VALUES('4072','2.16.840.1.113762.1.4.1146.1381_20210526','2.16.840.1.113762.1.4.1146.1381_T61.14XA');
-INSERT INTO valueset_to_concept VALUES('4073','2.16.840.1.113762.1.4.1146.1381_20210526','2.16.840.1.113762.1.4.1146.1381_T61.14XD');
-INSERT INTO valueset_to_concept VALUES('4074','2.16.840.1.113762.1.4.1146.1381_20210526','2.16.840.1.113762.1.4.1146.1381_T61.14XS');
-INSERT INTO valueset_to_concept VALUES('4075','2.16.840.1.113762.1.4.1146.1381_20210526','2.16.840.1.113762.1.4.1146.1381_T61.77');
-INSERT INTO valueset_to_concept VALUES('4076','2.16.840.1.113762.1.4.1146.1381_20210526','2.16.840.1.113762.1.4.1146.1381_T61.771');
-INSERT INTO valueset_to_concept VALUES('4077','2.16.840.1.113762.1.4.1146.1381_20210526','2.16.840.1.113762.1.4.1146.1381_T61.771A');
-INSERT INTO valueset_to_concept VALUES('4078','2.16.840.1.113762.1.4.1146.1381_20210526','2.16.840.1.113762.1.4.1146.1381_T61.771D');
-INSERT INTO valueset_to_concept VALUES('4079','2.16.840.1.113762.1.4.1146.1381_20210526','2.16.840.1.113762.1.4.1146.1381_T61.771S');
-INSERT INTO valueset_to_concept VALUES('4080','2.16.840.1.113762.1.4.1146.1381_20210526','2.16.840.1.113762.1.4.1146.1381_T61.774');
-INSERT INTO valueset_to_concept VALUES('4081','2.16.840.1.113762.1.4.1146.1381_20210526','2.16.840.1.113762.1.4.1146.1381_T61.774A');
-INSERT INTO valueset_to_concept VALUES('4082','2.16.840.1.113762.1.4.1146.1381_20210526','2.16.840.1.113762.1.4.1146.1381_T61.774D');
-INSERT INTO valueset_to_concept VALUES('4083','2.16.840.1.113762.1.4.1146.1381_20210526','2.16.840.1.113762.1.4.1146.1381_T61.774S');
-INSERT INTO valueset_to_concept VALUES('4084','2.16.840.1.113762.1.4.1146.163_20220603','2.16.840.1.113762.1.4.1146.163_1193749009');
-INSERT INTO valueset_to_concept VALUES('4085','2.16.840.1.113762.1.4.1146.163_20220603','2.16.840.1.113762.1.4.1146.163_1193750009');
-INSERT INTO valueset_to_concept VALUES('4086','2.16.840.1.113762.1.4.1146.163_20220603','2.16.840.1.113762.1.4.1146.163_240349003');
-INSERT INTO valueset_to_concept VALUES('4087','2.16.840.1.113762.1.4.1146.163_20220603','2.16.840.1.113762.1.4.1146.163_240351004');
-INSERT INTO valueset_to_concept VALUES('4088','2.16.840.1.113762.1.4.1146.163_20220603','2.16.840.1.113762.1.4.1146.163_447282003');
-INSERT INTO valueset_to_concept VALUES('4089','2.16.840.1.113762.1.4.1146.163_20220603','2.16.840.1.113762.1.4.1146.163_63650001');
-INSERT INTO valueset_to_concept VALUES('4090','2.16.840.1.113762.1.4.1146.163_20220603','2.16.840.1.113762.1.4.1146.163_81020007');
-INSERT INTO valueset_to_concept VALUES('4091','2.16.840.1.113762.1.4.1146.163_20220603','2.16.840.1.113762.1.4.1146.163_240350003');
-INSERT INTO valueset_to_concept VALUES('4092','2.16.840.1.113762.1.4.1146.164_20220603','2.16.840.1.113762.1.4.1146.164_A00.0');
-INSERT INTO valueset_to_concept VALUES('4093','2.16.840.1.113762.1.4.1146.164_20220603','2.16.840.1.113762.1.4.1146.164_A00.1');
-INSERT INTO valueset_to_concept VALUES('4094','2.16.840.1.113762.1.4.1146.164_20220603','2.16.840.1.113762.1.4.1146.164_A00.9');
-INSERT INTO valueset_to_concept VALUES('4095','2.16.840.1.113762.1.4.1146.285_20230122','2.16.840.1.113762.1.4.1146.285_G04.00');
-INSERT INTO valueset_to_concept VALUES('4096','2.16.840.1.113762.1.4.1146.285_20230122','2.16.840.1.113762.1.4.1146.285_G04.01');
-INSERT INTO valueset_to_concept VALUES('4097','2.16.840.1.113762.1.4.1146.285_20230122','2.16.840.1.113762.1.4.1146.285_G04.02');
-INSERT INTO valueset_to_concept VALUES('4098','2.16.840.1.113762.1.4.1146.285_20230122','2.16.840.1.113762.1.4.1146.285_G04.81');
-INSERT INTO valueset_to_concept VALUES('4099','2.16.840.1.113762.1.4.1146.285_20230122','2.16.840.1.113762.1.4.1146.285_G04.90');
-INSERT INTO valueset_to_concept VALUES('4100','2.16.840.1.113762.1.4.1146.285_20230122','2.16.840.1.113762.1.4.1146.285_G05.3');
-INSERT INTO valueset_to_concept VALUES('4101','2.16.840.1.113762.1.4.1146.285_20230122','2.16.840.1.113762.1.4.1146.285_G36.1');
-INSERT INTO valueset_to_concept VALUES('4102','2.16.840.1.113762.1.4.1146.285_20230122','2.16.840.1.113762.1.4.1146.285_A42.82');
-INSERT INTO valueset_to_concept VALUES('4103','2.16.840.1.113762.1.4.1146.285_20230122','2.16.840.1.113762.1.4.1146.285_G04.2');
-INSERT INTO valueset_to_concept VALUES('4104','2.16.840.1.113762.1.4.1146.285_20230122','2.16.840.1.113762.1.4.1146.285_A81.1');
-INSERT INTO valueset_to_concept VALUES('4105','2.16.840.1.113762.1.4.1146.285_20230122','2.16.840.1.113762.1.4.1146.285_A83.4');
-INSERT INTO valueset_to_concept VALUES('4106','2.16.840.1.113762.1.4.1146.285_20230122','2.16.840.1.113762.1.4.1146.285_A85.1');
-INSERT INTO valueset_to_concept VALUES('4107','2.16.840.1.113762.1.4.1146.285_20230122','2.16.840.1.113762.1.4.1146.285_A85.8');
-INSERT INTO valueset_to_concept VALUES('4108','2.16.840.1.113762.1.4.1146.285_20230122','2.16.840.1.113762.1.4.1146.285_A86');
-INSERT INTO valueset_to_concept VALUES('4109','2.16.840.1.113762.1.4.1146.285_20230122','2.16.840.1.113762.1.4.1146.285_B00.4');
-INSERT INTO valueset_to_concept VALUES('4110','2.16.840.1.113762.1.4.1146.285_20230122','2.16.840.1.113762.1.4.1146.285_B02.0');
-INSERT INTO valueset_to_concept VALUES('4111','2.16.840.1.113762.1.4.1146.285_20230122','2.16.840.1.113762.1.4.1146.285_B10.01');
-INSERT INTO valueset_to_concept VALUES('4112','2.16.840.1.113762.1.4.1146.285_20230122','2.16.840.1.113762.1.4.1146.285_B10.09');
-INSERT INTO valueset_to_concept VALUES('4113','2.16.840.1.113762.1.4.1146.285_20230122','2.16.840.1.113762.1.4.1146.285_A17.82');
-INSERT INTO valueset_to_concept VALUES('4114','2.16.840.1.113762.1.4.1146.285_20230122','2.16.840.1.113762.1.4.1146.285_A32.12');
-INSERT INTO valueset_to_concept VALUES('4115','2.16.840.1.113762.1.4.1146.285_20230122','2.16.840.1.113762.1.4.1146.285_A39.81');
-INSERT INTO valueset_to_concept VALUES('4116','2.16.840.1.113762.1.4.1146.285_20230122','2.16.840.1.113762.1.4.1146.285_A83.1');
-INSERT INTO valueset_to_concept VALUES('4117','2.16.840.1.113762.1.4.1146.285_20230122','2.16.840.1.113762.1.4.1146.285_A83.8');
-INSERT INTO valueset_to_concept VALUES('4118','2.16.840.1.113762.1.4.1146.285_20230122','2.16.840.1.113762.1.4.1146.285_A83.9');
-INSERT INTO valueset_to_concept VALUES('4119','2.16.840.1.113762.1.4.1146.285_20230122','2.16.840.1.113762.1.4.1146.285_A84.0');
-INSERT INTO valueset_to_concept VALUES('4120','2.16.840.1.113762.1.4.1146.285_20230122','2.16.840.1.113762.1.4.1146.285_A84.1');
-INSERT INTO valueset_to_concept VALUES('4121','2.16.840.1.113762.1.4.1146.285_20230122','2.16.840.1.113762.1.4.1146.285_A84.89');
-INSERT INTO valueset_to_concept VALUES('4122','2.16.840.1.113762.1.4.1146.285_20230122','2.16.840.1.113762.1.4.1146.285_A84.9');
-INSERT INTO valueset_to_concept VALUES('4123','2.16.840.1.113762.1.4.1146.285_20230122','2.16.840.1.113762.1.4.1146.285_A85.2');
-INSERT INTO valueset_to_concept VALUES('4124','2.16.840.1.113762.1.4.1146.285_20230122','2.16.840.1.113762.1.4.1146.285_A92.31');
-INSERT INTO valueset_to_concept VALUES('4125','2.16.840.1.113762.1.4.1146.285_20230122','2.16.840.1.113762.1.4.1146.285_B05.0');
-INSERT INTO valueset_to_concept VALUES('4126','2.16.840.1.113762.1.4.1146.285_20230122','2.16.840.1.113762.1.4.1146.285_B40.81');
-INSERT INTO valueset_to_concept VALUES('4127','2.16.840.1.113762.1.4.1146.285_20230122','2.16.840.1.113762.1.4.1146.285_B57.42');
-INSERT INTO valueset_to_concept VALUES('4128','2.16.840.1.113762.1.4.1146.285_20230122','2.16.840.1.113762.1.4.1146.285_B60.11');
-INSERT INTO valueset_to_concept VALUES('4129','2.16.840.1.113762.1.4.1146.285_20230122','2.16.840.1.113762.1.4.1146.285_A52.14');
-INSERT INTO valueset_to_concept VALUES('4130','2.16.840.1.113762.1.4.1146.285_20230122','2.16.840.1.113762.1.4.1146.285_A83.0');
-INSERT INTO valueset_to_concept VALUES('4131','2.16.840.1.113762.1.4.1146.285_20230122','2.16.840.1.113762.1.4.1146.285_A83.2');
-INSERT INTO valueset_to_concept VALUES('4132','2.16.840.1.113762.1.4.1146.285_20230122','2.16.840.1.113762.1.4.1146.285_A83.3');
-INSERT INTO valueset_to_concept VALUES('4133','2.16.840.1.113762.1.4.1146.285_20230122','2.16.840.1.113762.1.4.1146.285_A85.0');
-INSERT INTO valueset_to_concept VALUES('4134','2.16.840.1.113762.1.4.1146.285_20230122','2.16.840.1.113762.1.4.1146.285_B01.11');
-INSERT INTO valueset_to_concept VALUES('4135','2.16.840.1.113762.1.4.1146.285_20230122','2.16.840.1.113762.1.4.1146.285_B26.2');
-INSERT INTO valueset_to_concept VALUES('4136','2.16.840.1.113762.1.4.1146.285_20230122','2.16.840.1.113762.1.4.1146.285_A83.5');
-INSERT INTO valueset_to_concept VALUES('4137','2.16.840.1.113762.1.4.1146.285_20230122','2.16.840.1.113762.1.4.1146.285_B58.2');
-INSERT INTO valueset_to_concept VALUES('4138','2.16.840.1.113762.1.4.1146.285_20230122','2.16.840.1.113762.1.4.1146.285_B06.01');
-INSERT INTO valueset_to_concept VALUES('4139','2.16.840.1.113762.1.4.1146.285_20230122','2.16.840.1.113762.1.4.1146.285_A50.42');
-INSERT INTO valueset_to_concept VALUES('4140','2.16.840.1.113762.1.4.1146.288_20200515','2.16.840.1.113762.1.4.1146.288_123775005');
-INSERT INTO valueset_to_concept VALUES('4141','2.16.840.1.113762.1.4.1146.288_20200515','2.16.840.1.113762.1.4.1146.288_17383000');
-INSERT INTO valueset_to_concept VALUES('4142','2.16.840.1.113762.1.4.1146.288_20200515','2.16.840.1.113762.1.4.1146.288_214959008');
-INSERT INTO valueset_to_concept VALUES('4143','2.16.840.1.113762.1.4.1146.288_20200515','2.16.840.1.113762.1.4.1146.288_214960003');
-INSERT INTO valueset_to_concept VALUES('4144','2.16.840.1.113762.1.4.1146.288_20200515','2.16.840.1.113762.1.4.1146.288_214961004');
-INSERT INTO valueset_to_concept VALUES('4145','2.16.840.1.113762.1.4.1146.288_20200515','2.16.840.1.113762.1.4.1146.288_214962006');
-INSERT INTO valueset_to_concept VALUES('4146','2.16.840.1.113762.1.4.1146.288_20200515','2.16.840.1.113762.1.4.1146.288_214963001');
-INSERT INTO valueset_to_concept VALUES('4147','2.16.840.1.113762.1.4.1146.288_20200515','2.16.840.1.113762.1.4.1146.288_214964007');
-INSERT INTO valueset_to_concept VALUES('4148','2.16.840.1.113762.1.4.1146.288_20200515','2.16.840.1.113762.1.4.1146.288_214965008');
-INSERT INTO valueset_to_concept VALUES('4149','2.16.840.1.113762.1.4.1146.288_20200515','2.16.840.1.113762.1.4.1146.288_214966009');
-INSERT INTO valueset_to_concept VALUES('4150','2.16.840.1.113762.1.4.1146.288_20200515','2.16.840.1.113762.1.4.1146.288_214967000');
-INSERT INTO valueset_to_concept VALUES('4151','2.16.840.1.113762.1.4.1146.288_20200515','2.16.840.1.113762.1.4.1146.288_216233003');
-INSERT INTO valueset_to_concept VALUES('4152','2.16.840.1.113762.1.4.1146.288_20200515','2.16.840.1.113762.1.4.1146.288_216234009');
-INSERT INTO valueset_to_concept VALUES('4153','2.16.840.1.113762.1.4.1146.288_20200515','2.16.840.1.113762.1.4.1146.288_216236006');
-INSERT INTO valueset_to_concept VALUES('4154','2.16.840.1.113762.1.4.1146.288_20200515','2.16.840.1.113762.1.4.1146.288_216237002');
-INSERT INTO valueset_to_concept VALUES('4155','2.16.840.1.113762.1.4.1146.288_20200515','2.16.840.1.113762.1.4.1146.288_216239004');
-INSERT INTO valueset_to_concept VALUES('4156','2.16.840.1.113762.1.4.1146.288_20200515','2.16.840.1.113762.1.4.1146.288_216241003');
-INSERT INTO valueset_to_concept VALUES('4157','2.16.840.1.113762.1.4.1146.288_20200515','2.16.840.1.113762.1.4.1146.288_216242005');
-INSERT INTO valueset_to_concept VALUES('4158','2.16.840.1.113762.1.4.1146.288_20200515','2.16.840.1.113762.1.4.1146.288_216243000');
-INSERT INTO valueset_to_concept VALUES('4159','2.16.840.1.113762.1.4.1146.288_20200515','2.16.840.1.113762.1.4.1146.288_216819007');
-INSERT INTO valueset_to_concept VALUES('4160','2.16.840.1.113762.1.4.1146.288_20200515','2.16.840.1.113762.1.4.1146.288_216836004');
-INSERT INTO valueset_to_concept VALUES('4161','2.16.840.1.113762.1.4.1146.288_20200515','2.16.840.1.113762.1.4.1146.288_216843005');
-INSERT INTO valueset_to_concept VALUES('4162','2.16.840.1.113762.1.4.1146.288_20200515','2.16.840.1.113762.1.4.1146.288_216845003');
-INSERT INTO valueset_to_concept VALUES('4163','2.16.840.1.113762.1.4.1146.288_20200515','2.16.840.1.113762.1.4.1146.288_216846002');
-INSERT INTO valueset_to_concept VALUES('4164','2.16.840.1.113762.1.4.1146.288_20200515','2.16.840.1.113762.1.4.1146.288_216847006');
-INSERT INTO valueset_to_concept VALUES('4165','2.16.840.1.113762.1.4.1146.288_20200515','2.16.840.1.113762.1.4.1146.288_216850009');
-INSERT INTO valueset_to_concept VALUES('4166','2.16.840.1.113762.1.4.1146.288_20200515','2.16.840.1.113762.1.4.1146.288_216851008');
-INSERT INTO valueset_to_concept VALUES('4167','2.16.840.1.113762.1.4.1146.288_20200515','2.16.840.1.113762.1.4.1146.288_216852001');
-INSERT INTO valueset_to_concept VALUES('4168','2.16.840.1.113762.1.4.1146.288_20200515','2.16.840.1.113762.1.4.1146.288_219131005');
-INSERT INTO valueset_to_concept VALUES('4169','2.16.840.1.113762.1.4.1146.288_20200515','2.16.840.1.113762.1.4.1146.288_219324001');
-INSERT INTO valueset_to_concept VALUES('4170','2.16.840.1.113762.1.4.1146.288_20200515','2.16.840.1.113762.1.4.1146.288_242840004');
-INSERT INTO valueset_to_concept VALUES('4171','2.16.840.1.113762.1.4.1146.288_20200515','2.16.840.1.113762.1.4.1146.288_420057003');
-INSERT INTO valueset_to_concept VALUES('4172','2.16.840.1.113762.1.4.1146.288_20200515','2.16.840.1.113762.1.4.1146.288_95872005');
-INSERT INTO valueset_to_concept VALUES('4173','2.16.840.1.113762.1.4.1146.288_20200515','2.16.840.1.113762.1.4.1146.288_95873000');
-INSERT INTO valueset_to_concept VALUES('4174','2.16.840.1.113762.1.4.1146.288_20200515','2.16.840.1.113762.1.4.1146.288_95874006');
-INSERT INTO valueset_to_concept VALUES('4175','2.16.840.1.113762.1.4.1146.1388_20230602','2.16.840.1.113762.1.4.1146.1388_11641008');
-INSERT INTO valueset_to_concept VALUES('4176','2.16.840.1.113762.1.4.1146.1388_20230602','2.16.840.1.113762.1.4.1146.1388_18041002');
-INSERT INTO valueset_to_concept VALUES('4177','2.16.840.1.113762.1.4.1146.1388_20230602','2.16.840.1.113762.1.4.1146.1388_19849005');
-INSERT INTO valueset_to_concept VALUES('4178','2.16.840.1.113762.1.4.1146.1388_20230602','2.16.840.1.113762.1.4.1146.1388_233687002');
-INSERT INTO valueset_to_concept VALUES('4179','2.16.840.1.113762.1.4.1146.1388_20230602','2.16.840.1.113762.1.4.1146.1388_34015007');
-INSERT INTO valueset_to_concept VALUES('4180','2.16.840.1.113762.1.4.1146.1388_20230602','2.16.840.1.113762.1.4.1146.1388_404804003');
-INSERT INTO valueset_to_concept VALUES('4181','2.16.840.1.113762.1.4.1146.1388_20230602','2.16.840.1.113762.1.4.1146.1388_404806001');
-INSERT INTO valueset_to_concept VALUES('4182','2.16.840.1.113762.1.4.1146.1388_20230602','2.16.840.1.113762.1.4.1146.1388_404808000');
-INSERT INTO valueset_to_concept VALUES('4183','2.16.840.1.113762.1.4.1146.1388_20230602','2.16.840.1.113762.1.4.1146.1388_41553006');
-INSERT INTO valueset_to_concept VALUES('4184','2.16.840.1.113762.1.4.1146.1388_20230602','2.16.840.1.113762.1.4.1146.1388_418395004');
-INSERT INTO valueset_to_concept VALUES('4185','2.16.840.1.113762.1.4.1146.1388_20230602','2.16.840.1.113762.1.4.1146.1388_56968009');
-INSERT INTO valueset_to_concept VALUES('4186','2.16.840.1.113762.1.4.1146.1388_20230602','2.16.840.1.113762.1.4.1146.1388_57607007');
-INSERT INTO valueset_to_concept VALUES('4187','2.16.840.1.113762.1.4.1146.1388_20230602','2.16.840.1.113762.1.4.1146.1388_59786004');
-INSERT INTO valueset_to_concept VALUES('4188','2.16.840.1.113762.1.4.1146.2115_20230122','2.16.840.1.113762.1.4.1146.2115_Q36.0');
-INSERT INTO valueset_to_concept VALUES('4189','2.16.840.1.113762.1.4.1146.2115_20230122','2.16.840.1.113762.1.4.1146.2115_Q36.1');
-INSERT INTO valueset_to_concept VALUES('4190','2.16.840.1.113762.1.4.1146.2115_20230122','2.16.840.1.113762.1.4.1146.2115_Q36.9');
-INSERT INTO valueset_to_concept VALUES('4191','2.16.840.1.113762.1.4.1146.289_20230122','2.16.840.1.113762.1.4.1146.289_T58.01XA');
-INSERT INTO valueset_to_concept VALUES('4192','2.16.840.1.113762.1.4.1146.289_20230122','2.16.840.1.113762.1.4.1146.289_T58.02XA');
-INSERT INTO valueset_to_concept VALUES('4193','2.16.840.1.113762.1.4.1146.289_20230122','2.16.840.1.113762.1.4.1146.289_T58.03XA');
-INSERT INTO valueset_to_concept VALUES('4194','2.16.840.1.113762.1.4.1146.289_20230122','2.16.840.1.113762.1.4.1146.289_T58.04XA');
-INSERT INTO valueset_to_concept VALUES('4195','2.16.840.1.113762.1.4.1146.289_20230122','2.16.840.1.113762.1.4.1146.289_T58.11XA');
-INSERT INTO valueset_to_concept VALUES('4196','2.16.840.1.113762.1.4.1146.289_20230122','2.16.840.1.113762.1.4.1146.289_T58.12XA');
-INSERT INTO valueset_to_concept VALUES('4197','2.16.840.1.113762.1.4.1146.289_20230122','2.16.840.1.113762.1.4.1146.289_T58.13XA');
-INSERT INTO valueset_to_concept VALUES('4198','2.16.840.1.113762.1.4.1146.289_20230122','2.16.840.1.113762.1.4.1146.289_T58.14XA');
-INSERT INTO valueset_to_concept VALUES('4199','2.16.840.1.113762.1.4.1146.289_20230122','2.16.840.1.113762.1.4.1146.289_T58.2X1A');
-INSERT INTO valueset_to_concept VALUES('4200','2.16.840.1.113762.1.4.1146.289_20230122','2.16.840.1.113762.1.4.1146.289_T58.2X2A');
-INSERT INTO valueset_to_concept VALUES('4201','2.16.840.1.113762.1.4.1146.289_20230122','2.16.840.1.113762.1.4.1146.289_T58.2X3A');
-INSERT INTO valueset_to_concept VALUES('4202','2.16.840.1.113762.1.4.1146.289_20230122','2.16.840.1.113762.1.4.1146.289_T58.2X4A');
-INSERT INTO valueset_to_concept VALUES('4203','2.16.840.1.113762.1.4.1146.289_20230122','2.16.840.1.113762.1.4.1146.289_T58.8X1A');
-INSERT INTO valueset_to_concept VALUES('4204','2.16.840.1.113762.1.4.1146.289_20230122','2.16.840.1.113762.1.4.1146.289_T58.8X2A');
-INSERT INTO valueset_to_concept VALUES('4205','2.16.840.1.113762.1.4.1146.289_20230122','2.16.840.1.113762.1.4.1146.289_T58.8X3A');
-INSERT INTO valueset_to_concept VALUES('4206','2.16.840.1.113762.1.4.1146.289_20230122','2.16.840.1.113762.1.4.1146.289_T58.8X4A');
-INSERT INTO valueset_to_concept VALUES('4207','2.16.840.1.113762.1.4.1146.289_20230122','2.16.840.1.113762.1.4.1146.289_T58.91XA');
-INSERT INTO valueset_to_concept VALUES('4208','2.16.840.1.113762.1.4.1146.289_20230122','2.16.840.1.113762.1.4.1146.289_T58.92XA');
-INSERT INTO valueset_to_concept VALUES('4209','2.16.840.1.113762.1.4.1146.289_20230122','2.16.840.1.113762.1.4.1146.289_T58.93XA');
-INSERT INTO valueset_to_concept VALUES('4210','2.16.840.1.113762.1.4.1146.289_20230122','2.16.840.1.113762.1.4.1146.289_T58.94XA');
-INSERT INTO valueset_to_concept VALUES('4211','2.16.840.1.113762.1.4.1146.1387_20210522','2.16.840.1.113762.1.4.1146.1387_897031002');
-INSERT INTO valueset_to_concept VALUES('4212','2.16.840.1.113762.1.4.1146.2116_20230122','2.16.840.1.113762.1.4.1146.2116_63061000119104');
-INSERT INTO valueset_to_concept VALUES('4213','2.16.840.1.113762.1.4.1146.1269_20240123','2.16.840.1.113762.1.4.1146.1269_11999007');
-INSERT INTO valueset_to_concept VALUES('4214','2.16.840.1.113762.1.4.1146.1269_20240123','2.16.840.1.113762.1.4.1146.1269_428697002');
-INSERT INTO valueset_to_concept VALUES('4215','2.16.840.1.113762.1.4.1146.2113_20230125','2.16.840.1.113762.1.4.1146.2113_O35.0');
-INSERT INTO valueset_to_concept VALUES('4216','2.16.840.1.113762.1.4.1146.2113_20230125','2.16.840.1.113762.1.4.1146.2113_O35.02X0');
-INSERT INTO valueset_to_concept VALUES('4217','2.16.840.1.113762.1.4.1146.2113_20230125','2.16.840.1.113762.1.4.1146.2113_O35.02X1');
-INSERT INTO valueset_to_concept VALUES('4218','2.16.840.1.113762.1.4.1146.2113_20230125','2.16.840.1.113762.1.4.1146.2113_O35.02X2');
-INSERT INTO valueset_to_concept VALUES('4219','2.16.840.1.113762.1.4.1146.2113_20230125','2.16.840.1.113762.1.4.1146.2113_O35.02X3');
-INSERT INTO valueset_to_concept VALUES('4220','2.16.840.1.113762.1.4.1146.2113_20230125','2.16.840.1.113762.1.4.1146.2113_O35.02X4');
-INSERT INTO valueset_to_concept VALUES('4221','2.16.840.1.113762.1.4.1146.2113_20230125','2.16.840.1.113762.1.4.1146.2113_O35.02X5');
-INSERT INTO valueset_to_concept VALUES('4222','2.16.840.1.113762.1.4.1146.2113_20230125','2.16.840.1.113762.1.4.1146.2113_O35.02X9');
-INSERT INTO valueset_to_concept VALUES('4223','2.16.840.1.113762.1.4.1146.2234_20240123','2.16.840.1.113762.1.4.1146.2234_B25.0');
-INSERT INTO valueset_to_concept VALUES('4224','2.16.840.1.113762.1.4.1146.2234_20240123','2.16.840.1.113762.1.4.1146.2234_B25.1');
-INSERT INTO valueset_to_concept VALUES('4225','2.16.840.1.113762.1.4.1146.2234_20240123','2.16.840.1.113762.1.4.1146.2234_B25.2');
-INSERT INTO valueset_to_concept VALUES('4226','2.16.840.1.113762.1.4.1146.2234_20240123','2.16.840.1.113762.1.4.1146.2234_B25.8');
-INSERT INTO valueset_to_concept VALUES('4227','2.16.840.1.113762.1.4.1146.2234_20240123','2.16.840.1.113762.1.4.1146.2234_B25.9');
-INSERT INTO valueset_to_concept VALUES('4228','2.16.840.1.113762.1.4.1146.2234_20240123','2.16.840.1.113762.1.4.1146.2234_B27.10');
-INSERT INTO valueset_to_concept VALUES('4229','2.16.840.1.113762.1.4.1146.2234_20240123','2.16.840.1.113762.1.4.1146.2234_B27.11');
-INSERT INTO valueset_to_concept VALUES('4230','2.16.840.1.113762.1.4.1146.2234_20240123','2.16.840.1.113762.1.4.1146.2234_B27.19');
-INSERT INTO valueset_to_concept VALUES('4231','2.16.840.1.113762.1.4.1146.2234_20240123','2.16.840.1.113762.1.4.1146.2234_B27.12');
-INSERT INTO valueset_to_concept VALUES('4232','2.16.840.1.113762.1.4.1146.2234_20240123','2.16.840.1.113762.1.4.1146.2234_P35.1');
-INSERT INTO valueset_to_concept VALUES('4233','2.16.840.1.113762.1.4.1146.2114_20240123','2.16.840.1.113762.1.4.1146.2114_1145543005');
-INSERT INTO valueset_to_concept VALUES('4234','2.16.840.1.113762.1.4.1146.2114_20240123','2.16.840.1.113762.1.4.1146.2114_1145544004');
-INSERT INTO valueset_to_concept VALUES('4235','2.16.840.1.113762.1.4.1146.2114_20240123','2.16.840.1.113762.1.4.1146.2114_1231525004');
-INSERT INTO valueset_to_concept VALUES('4236','2.16.840.1.113762.1.4.1146.2114_20240123','2.16.840.1.113762.1.4.1146.2114_204608004');
-INSERT INTO valueset_to_concept VALUES('4237','2.16.840.1.113762.1.4.1146.2114_20240123','2.16.840.1.113762.1.4.1146.2114_253989009');
-INSERT INTO valueset_to_concept VALUES('4238','2.16.840.1.113762.1.4.1146.2114_20240123','2.16.840.1.113762.1.4.1146.2114_304068004');
-INSERT INTO valueset_to_concept VALUES('4239','2.16.840.1.113762.1.4.1146.2114_20240123','2.16.840.1.113762.1.4.1146.2114_373643003');
-INSERT INTO valueset_to_concept VALUES('4240','2.16.840.1.113762.1.4.1146.2114_20240123','2.16.840.1.113762.1.4.1146.2114_62815003');
-INSERT INTO valueset_to_concept VALUES('4241','2.16.840.1.113762.1.4.1146.2114_20240123','2.16.840.1.113762.1.4.1146.2114_6936002');
-INSERT INTO valueset_to_concept VALUES('4242','2.16.840.1.113762.1.4.1146.2114_20240123','2.16.840.1.113762.1.4.1146.2114_699700006');
-INSERT INTO valueset_to_concept VALUES('4243','2.16.840.1.113762.1.4.1146.2114_20240123','2.16.840.1.113762.1.4.1146.2114_718552009');
-INSERT INTO valueset_to_concept VALUES('4244','2.16.840.1.113762.1.4.1146.2114_20240123','2.16.840.1.113762.1.4.1146.2114_722201004');
-INSERT INTO valueset_to_concept VALUES('4245','2.16.840.1.113762.1.4.1146.2114_20240123','2.16.840.1.113762.1.4.1146.2114_723383005');
-INSERT INTO valueset_to_concept VALUES('4246','2.16.840.1.113762.1.4.1146.2114_20240123','2.16.840.1.113762.1.4.1146.2114_723403008');
-INSERT INTO valueset_to_concept VALUES('4247','2.16.840.1.113762.1.4.1146.2114_20240123','2.16.840.1.113762.1.4.1146.2114_725149008');
-INSERT INTO valueset_to_concept VALUES('4248','2.16.840.1.113762.1.4.1146.2114_20240123','2.16.840.1.113762.1.4.1146.2114_732247000');
-INSERT INTO valueset_to_concept VALUES('4249','2.16.840.1.113762.1.4.1146.2114_20240123','2.16.840.1.113762.1.4.1146.2114_763498007');
-INSERT INTO valueset_to_concept VALUES('4250','2.16.840.1.113762.1.4.1146.2114_20240123','2.16.840.1.113762.1.4.1146.2114_763499004');
-INSERT INTO valueset_to_concept VALUES('4251','2.16.840.1.113762.1.4.1146.2114_20240123','2.16.840.1.113762.1.4.1146.2114_763727005');
-INSERT INTO valueset_to_concept VALUES('4252','2.16.840.1.113762.1.4.1146.2114_20240123','2.16.840.1.113762.1.4.1146.2114_763728000');
-INSERT INTO valueset_to_concept VALUES('4253','2.16.840.1.113762.1.4.1146.2114_20240123','2.16.840.1.113762.1.4.1146.2114_763733001');
-INSERT INTO valueset_to_concept VALUES('4254','2.16.840.1.113762.1.4.1146.2114_20240123','2.16.840.1.113762.1.4.1146.2114_763734007');
-INSERT INTO valueset_to_concept VALUES('4255','2.16.840.1.113762.1.4.1146.2114_20240123','2.16.840.1.113762.1.4.1146.2114_763735008');
-INSERT INTO valueset_to_concept VALUES('4256','2.16.840.1.113762.1.4.1146.2114_20240123','2.16.840.1.113762.1.4.1146.2114_763753002');
-INSERT INTO valueset_to_concept VALUES('4257','2.16.840.1.113762.1.4.1146.2114_20240123','2.16.840.1.113762.1.4.1146.2114_763754008');
-INSERT INTO valueset_to_concept VALUES('4258','2.16.840.1.113762.1.4.1146.2114_20240123','2.16.840.1.113762.1.4.1146.2114_764091001');
-INSERT INTO valueset_to_concept VALUES('4259','2.16.840.1.113762.1.4.1146.2114_20240123','2.16.840.1.113762.1.4.1146.2114_764092008');
-INSERT INTO valueset_to_concept VALUES('4260','2.16.840.1.113762.1.4.1146.2114_20240123','2.16.840.1.113762.1.4.1146.2114_77414002');
-INSERT INTO valueset_to_concept VALUES('4261','2.16.840.1.113762.1.4.1146.2114_20240123','2.16.840.1.113762.1.4.1146.2114_788875002');
-INSERT INTO valueset_to_concept VALUES('4262','2.16.840.1.113762.1.4.1146.2114_20240123','2.16.840.1.113762.1.4.1146.2114_80281008');
-INSERT INTO valueset_to_concept VALUES('4263','2.16.840.1.113762.1.4.1146.2114_20240123','2.16.840.1.113762.1.4.1146.2114_80446009');
-INSERT INTO valueset_to_concept VALUES('4264','2.16.840.1.113762.1.4.1146.2114_20240123','2.16.840.1.113762.1.4.1146.2114_88659005');
-INSERT INTO valueset_to_concept VALUES('4265','2.16.840.1.113762.1.4.1146.1384_20221022','2.16.840.1.113762.1.4.1146.1384_1290801000000102');
-INSERT INTO valueset_to_concept VALUES('4266','2.16.840.1.113762.1.4.1146.1384_20221022','2.16.840.1.113762.1.4.1146.1384_1290821000000106');
-INSERT INTO valueset_to_concept VALUES('4267','2.16.840.1.113762.1.4.1146.1384_20221022','2.16.840.1.113762.1.4.1146.1384_1290841000000104');
-INSERT INTO valueset_to_concept VALUES('4268','2.16.840.1.113762.1.4.1146.1384_20221022','2.16.840.1.113762.1.4.1146.1384_359811007');
-INSERT INTO valueset_to_concept VALUES('4269','2.16.840.1.113762.1.4.1146.1384_20221022','2.16.840.1.113762.1.4.1146.1384_359814004');
-INSERT INTO valueset_to_concept VALUES('4270','2.16.840.1.113762.1.4.1146.2111_20230125','2.16.840.1.113762.1.4.1146.2111_Q00.0');
-INSERT INTO valueset_to_concept VALUES('4271','2.16.840.1.113762.1.4.1146.2111_20230125','2.16.840.1.113762.1.4.1146.2111_Q00.1');
-INSERT INTO valueset_to_concept VALUES('4272','2.16.840.1.113762.1.4.1146.2232_20240123','2.16.840.1.113762.1.4.1146.2232_P35.1');
-INSERT INTO valueset_to_concept VALUES('4273','2.16.840.1.113762.1.4.1146.2112_20230125','2.16.840.1.113762.1.4.1146.2112_609416008');
-INSERT INTO valueset_to_concept VALUES('4274','2.16.840.1.113762.1.4.1146.2112_20230125','2.16.840.1.113762.1.4.1146.2112_609417004');
-INSERT INTO valueset_to_concept VALUES('4275','2.16.840.1.113762.1.4.1146.2233_20240123','2.16.840.1.113762.1.4.1146.2233_1085371000119105');
-INSERT INTO valueset_to_concept VALUES('4276','2.16.840.1.113762.1.4.1146.2233_20240123','2.16.840.1.113762.1.4.1146.2233_1085381000119108');
-INSERT INTO valueset_to_concept VALUES('4277','2.16.840.1.113762.1.4.1146.2233_20240123','2.16.840.1.113762.1.4.1146.2233_1163079004');
-INSERT INTO valueset_to_concept VALUES('4278','2.16.840.1.113762.1.4.1146.2233_20240123','2.16.840.1.113762.1.4.1146.2233_1163082009');
-INSERT INTO valueset_to_concept VALUES('4279','2.16.840.1.113762.1.4.1146.2233_20240123','2.16.840.1.113762.1.4.1146.2233_15685561000119102');
-INSERT INTO valueset_to_concept VALUES('4280','2.16.840.1.113762.1.4.1146.2233_20240123','2.16.840.1.113762.1.4.1146.2233_15685601000119102');
-INSERT INTO valueset_to_concept VALUES('4281','2.16.840.1.113762.1.4.1146.2233_20240123','2.16.840.1.113762.1.4.1146.2233_15685641000119100');
-INSERT INTO valueset_to_concept VALUES('4282','2.16.840.1.113762.1.4.1146.2233_20240123','2.16.840.1.113762.1.4.1146.2233_15969461000119103');
-INSERT INTO valueset_to_concept VALUES('4283','2.16.840.1.113762.1.4.1146.2233_20240123','2.16.840.1.113762.1.4.1146.2233_16196000');
-INSERT INTO valueset_to_concept VALUES('4284','2.16.840.1.113762.1.4.1146.2233_20240123','2.16.840.1.113762.1.4.1146.2233_186698009');
-INSERT INTO valueset_to_concept VALUES('4285','2.16.840.1.113762.1.4.1146.2233_20240123','2.16.840.1.113762.1.4.1146.2233_22455005');
-INSERT INTO valueset_to_concept VALUES('4286','2.16.840.1.113762.1.4.1146.2233_20240123','2.16.840.1.113762.1.4.1146.2233_232311007');
-INSERT INTO valueset_to_concept VALUES('4287','2.16.840.1.113762.1.4.1146.2233_20240123','2.16.840.1.113762.1.4.1146.2233_235749000');
-INSERT INTO valueset_to_concept VALUES('4288','2.16.840.1.113762.1.4.1146.2233_20240123','2.16.840.1.113762.1.4.1146.2233_235947007');
-INSERT INTO valueset_to_concept VALUES('4289','2.16.840.1.113762.1.4.1146.2233_20240123','2.16.840.1.113762.1.4.1146.2233_236590008');
-INSERT INTO valueset_to_concept VALUES('4290','2.16.840.1.113762.1.4.1146.2233_20240123','2.16.840.1.113762.1.4.1146.2233_28944009');
-INSERT INTO valueset_to_concept VALUES('4291','2.16.840.1.113762.1.4.1146.2233_20240123','2.16.840.1.113762.1.4.1146.2233_402122002');
-INSERT INTO valueset_to_concept VALUES('4292','2.16.840.1.113762.1.4.1146.2233_20240123','2.16.840.1.113762.1.4.1146.2233_406570003');
-INSERT INTO valueset_to_concept VALUES('4293','2.16.840.1.113762.1.4.1146.2233_20240123','2.16.840.1.113762.1.4.1146.2233_426137009');
-INSERT INTO valueset_to_concept VALUES('4294','2.16.840.1.113762.1.4.1146.2233_20240123','2.16.840.1.113762.1.4.1146.2233_428217009');
-INSERT INTO valueset_to_concept VALUES('4295','2.16.840.1.113762.1.4.1146.2233_20240123','2.16.840.1.113762.1.4.1146.2233_429300008');
-INSERT INTO valueset_to_concept VALUES('4296','2.16.840.1.113762.1.4.1146.2233_20240123','2.16.840.1.113762.1.4.1146.2233_689981000119103');
-INSERT INTO valueset_to_concept VALUES('4297','2.16.840.1.113762.1.4.1146.2233_20240123','2.16.840.1.113762.1.4.1146.2233_689991000119100');
-INSERT INTO valueset_to_concept VALUES('4298','2.16.840.1.113762.1.4.1146.2233_20240123','2.16.840.1.113762.1.4.1146.2233_711616006');
-INSERT INTO valueset_to_concept VALUES('4299','2.16.840.1.113762.1.4.1146.2233_20240123','2.16.840.1.113762.1.4.1146.2233_713045003');
-INSERT INTO valueset_to_concept VALUES('4300','2.16.840.1.113762.1.4.1146.2233_20240123','2.16.840.1.113762.1.4.1146.2233_7678002');
-INSERT INTO valueset_to_concept VALUES('4301','2.16.840.1.113762.1.4.1146.2233_20240123','2.16.840.1.113762.1.4.1146.2233_840504006');
-INSERT INTO valueset_to_concept VALUES('4302','2.16.840.1.113762.1.4.1146.2233_20240123','2.16.840.1.113762.1.4.1146.2233_866060005');
-INSERT INTO valueset_to_concept VALUES('4303','2.16.840.1.113762.1.4.1146.2233_20240123','2.16.840.1.113762.1.4.1146.2233_93891000119100');
-INSERT INTO valueset_to_concept VALUES('4304','2.16.840.1.113762.1.4.1146.2233_20240123','2.16.840.1.113762.1.4.1146.2233_1085361000119104');
-INSERT INTO valueset_to_concept VALUES('4305','2.16.840.1.113762.1.4.1146.2233_20240123','2.16.840.1.113762.1.4.1146.2233_276701009');
-INSERT INTO valueset_to_concept VALUES('4306','2.16.840.1.113762.1.4.1146.2233_20240123','2.16.840.1.113762.1.4.1146.2233_59527008');
-INSERT INTO valueset_to_concept VALUES('4307','2.16.840.1.113762.1.4.1146.2233_20240123','2.16.840.1.113762.1.4.1146.2233_713722001');
-INSERT INTO valueset_to_concept VALUES('4308','2.16.840.1.113762.1.4.1146.2233_20240123','2.16.840.1.113762.1.4.1146.2233_721770002');
-INSERT INTO valueset_to_concept VALUES('4309','2.16.840.1.113762.1.4.1146.2233_20240123','2.16.840.1.113762.1.4.1146.2233_83159006');
-INSERT INTO valueset_to_concept VALUES('4310','2.16.840.1.113762.1.4.1146.1264_20210121','2.16.840.1.113762.1.4.1146.1264_230187000');
-INSERT INTO valueset_to_concept VALUES('4311','2.16.840.1.113762.1.4.1146.1385_20210526','2.16.840.1.113762.1.4.1146.1385_B04');
-INSERT INTO valueset_to_concept VALUES('4312','2.16.840.1.113762.1.4.1146.2110_20240620','2.16.840.1.113762.1.4.1146.2110_1169358003');
-INSERT INTO valueset_to_concept VALUES('4313','2.16.840.1.113762.1.4.1146.2110_20240620','2.16.840.1.113762.1.4.1146.2110_1172705006');
-INSERT INTO valueset_to_concept VALUES('4314','2.16.840.1.113762.1.4.1146.2110_20240620','2.16.840.1.113762.1.4.1146.2110_203923004');
-INSERT INTO valueset_to_concept VALUES('4315','2.16.840.1.113762.1.4.1146.2110_20240620','2.16.840.1.113762.1.4.1146.2110_26595007');
-INSERT INTO valueset_to_concept VALUES('4316','2.16.840.1.113762.1.4.1146.2110_20240620','2.16.840.1.113762.1.4.1146.2110_32219008');
-INSERT INTO valueset_to_concept VALUES('4317','2.16.840.1.113762.1.4.1146.2110_20240620','2.16.840.1.113762.1.4.1146.2110_359824007');
-INSERT INTO valueset_to_concept VALUES('4318','2.16.840.1.113762.1.4.1146.2110_20240620','2.16.840.1.113762.1.4.1146.2110_417658006');
-INSERT INTO valueset_to_concept VALUES('4319','2.16.840.1.113762.1.4.1146.2110_20240620','2.16.840.1.113762.1.4.1146.2110_717939009');
-INSERT INTO valueset_to_concept VALUES('4320','2.16.840.1.113762.1.4.1146.2110_20240620','2.16.840.1.113762.1.4.1146.2110_84461004');
-INSERT INTO valueset_to_concept VALUES('4321','2.16.840.1.113762.1.4.1146.2110_20240620','2.16.840.1.113762.1.4.1146.2110_85641006');
-INSERT INTO valueset_to_concept VALUES('4322','2.16.840.1.113762.1.4.1146.2110_20240620','2.16.840.1.113762.1.4.1146.2110_89369001');
-INSERT INTO valueset_to_concept VALUES('4323','2.16.840.1.113762.1.4.1146.2110_20240620','2.16.840.1.113762.1.4.1146.2110_91885001');
-INSERT INTO valueset_to_concept VALUES('4324','2.16.840.1.113762.1.4.1146.2110_20240620','2.16.840.1.113762.1.4.1146.2110_91889007');
-INSERT INTO valueset_to_concept VALUES('4325','2.16.840.1.113762.1.4.1146.2110_20240620','2.16.840.1.113762.1.4.1146.2110_91902004');
-INSERT INTO valueset_to_concept VALUES('4326','2.16.840.1.113762.1.4.1146.2231_20240123','2.16.840.1.113762.1.4.1146.2231_276701009');
-INSERT INTO valueset_to_concept VALUES('4327','2.16.840.1.113762.1.4.1146.2231_20240123','2.16.840.1.113762.1.4.1146.2231_59527008');
-INSERT INTO valueset_to_concept VALUES('4328','2.16.840.1.113762.1.4.1146.35_20190608','2.16.840.1.113762.1.4.1146.35_27836007');
-INSERT INTO valueset_to_concept VALUES('4329','2.16.840.1.113762.1.4.1146.35_20190608','2.16.840.1.113762.1.4.1146.35_408682005');
-INSERT INTO valueset_to_concept VALUES('4330','2.16.840.1.113762.1.4.1146.35_20190608','2.16.840.1.113762.1.4.1146.35_59475000');
-INSERT INTO valueset_to_concept VALUES('4331','2.16.840.1.113762.1.4.1146.35_20190608','2.16.840.1.113762.1.4.1146.35_93417001');
-INSERT INTO valueset_to_concept VALUES('4332','2.16.840.1.113762.1.4.1146.35_20190608','2.16.840.1.113762.1.4.1146.35_192650000');
-INSERT INTO valueset_to_concept VALUES('4333','2.16.840.1.113762.1.4.1146.36_20190608','2.16.840.1.113762.1.4.1146.36_A37.0');
-INSERT INTO valueset_to_concept VALUES('4334','2.16.840.1.113762.1.4.1146.36_20190608','2.16.840.1.113762.1.4.1146.36_A37.00');
-INSERT INTO valueset_to_concept VALUES('4335','2.16.840.1.113762.1.4.1146.36_20190608','2.16.840.1.113762.1.4.1146.36_A37.01');
-INSERT INTO valueset_to_concept VALUES('4336','2.16.840.1.113762.1.4.1146.280_20181031','2.16.840.1.113762.1.4.1146.280_A48.1');
-INSERT INTO valueset_to_concept VALUES('4337','2.16.840.1.113762.1.4.1146.280_20181031','2.16.840.1.113762.1.4.1146.280_A48.2');
-INSERT INTO valueset_to_concept VALUES('4338','2.16.840.1.113762.1.4.1146.150_20181031','2.16.840.1.113762.1.4.1146.150_B03');
-INSERT INTO valueset_to_concept VALUES('4339','2.16.840.1.113762.1.4.1146.271_20220119','2.16.840.1.113762.1.4.1146.271_186957004');
-INSERT INTO valueset_to_concept VALUES('4340','2.16.840.1.113762.1.4.1146.271_20220119','2.16.840.1.113762.1.4.1146.271_22312005');
-INSERT INTO valueset_to_concept VALUES('4341','2.16.840.1.113762.1.4.1146.271_20220119','2.16.840.1.113762.1.4.1146.271_240673004');
-INSERT INTO valueset_to_concept VALUES('4342','2.16.840.1.113762.1.4.1146.271_20220119','2.16.840.1.113762.1.4.1146.271_240674005');
-INSERT INTO valueset_to_concept VALUES('4343','2.16.840.1.113762.1.4.1146.271_20220119','2.16.840.1.113762.1.4.1146.271_26275000');
-INSERT INTO valueset_to_concept VALUES('4344','2.16.840.1.113762.1.4.1146.271_20220119','2.16.840.1.113762.1.4.1146.271_32266007');
-INSERT INTO valueset_to_concept VALUES('4345','2.16.840.1.113762.1.4.1146.271_20220119','2.16.840.1.113762.1.4.1146.271_398067003');
-INSERT INTO valueset_to_concept VALUES('4346','2.16.840.1.113762.1.4.1146.271_20220119','2.16.840.1.113762.1.4.1146.271_398222003');
-INSERT INTO valueset_to_concept VALUES('4347','2.16.840.1.113762.1.4.1146.271_20220119','2.16.840.1.113762.1.4.1146.271_402959002');
-INSERT INTO valueset_to_concept VALUES('4348','2.16.840.1.113762.1.4.1146.271_20220119','2.16.840.1.113762.1.4.1146.271_406589003');
-INSERT INTO valueset_to_concept VALUES('4349','2.16.840.1.113762.1.4.1146.271_20220119','2.16.840.1.113762.1.4.1146.271_410476009');
-INSERT INTO valueset_to_concept VALUES('4350','2.16.840.1.113762.1.4.1146.271_20220119','2.16.840.1.113762.1.4.1146.271_65267003');
-INSERT INTO valueset_to_concept VALUES('4351','2.16.840.1.113762.1.4.1146.271_20220119','2.16.840.1.113762.1.4.1146.271_68013003');
-INSERT INTO valueset_to_concept VALUES('4352','2.16.840.1.113762.1.4.1146.271_20220119','2.16.840.1.113762.1.4.1146.271_70543009');
-INSERT INTO valueset_to_concept VALUES('4353','2.16.840.1.113762.1.4.1146.271_20220119','2.16.840.1.113762.1.4.1146.271_77377001');
-INSERT INTO valueset_to_concept VALUES('4354','2.16.840.1.113762.1.4.1146.271_20220119','2.16.840.1.113762.1.4.1146.271_79309005');
-INSERT INTO valueset_to_concept VALUES('4355','2.16.840.1.113762.1.4.1146.271_20220119','2.16.840.1.113762.1.4.1146.271_80194003');
-INSERT INTO valueset_to_concept VALUES('4356','2.16.840.1.113762.1.4.1146.271_20220119','2.16.840.1.113762.1.4.1146.271_871841000');
-INSERT INTO valueset_to_concept VALUES('4357','2.16.840.1.113762.1.4.1146.271_20220119','2.16.840.1.113762.1.4.1146.271_871842007');
-INSERT INTO valueset_to_concept VALUES('4358','2.16.840.1.113762.1.4.1146.271_20220119','2.16.840.1.113762.1.4.1146.271_93465000');
-INSERT INTO valueset_to_concept VALUES('4359','2.16.840.1.113762.1.4.1146.271_20220119','2.16.840.1.113762.1.4.1146.271_186956008');
-INSERT INTO valueset_to_concept VALUES('4360','2.16.840.1.113762.1.4.1146.271_20220119','2.16.840.1.113762.1.4.1146.271_25957002');
-INSERT INTO valueset_to_concept VALUES('4361','2.16.840.1.113762.1.4.1146.271_20220119','2.16.840.1.113762.1.4.1146.271_284184004');
-INSERT INTO valueset_to_concept VALUES('4362','2.16.840.1.113762.1.4.1146.271_20220119','2.16.840.1.113762.1.4.1146.271_840440006');
-INSERT INTO valueset_to_concept VALUES('4363','2.16.840.1.113762.1.4.1146.392_20191227','2.16.840.1.113762.1.4.1146.392_240585002');
-INSERT INTO valueset_to_concept VALUES('4364','2.16.840.1.113762.1.4.1146.392_20191227','2.16.840.1.113762.1.4.1146.392_240586001');
-INSERT INTO valueset_to_concept VALUES('4365','2.16.840.1.113762.1.4.1146.392_20191227','2.16.840.1.113762.1.4.1146.392_240587005');
-INSERT INTO valueset_to_concept VALUES('4366','2.16.840.1.113762.1.4.1146.392_20191227','2.16.840.1.113762.1.4.1146.392_266143009');
-INSERT INTO valueset_to_concept VALUES('4367','2.16.840.1.113762.1.4.1146.392_20191227','2.16.840.1.113762.1.4.1146.392_402954007');
-INSERT INTO valueset_to_concept VALUES('4368','2.16.840.1.113762.1.4.1146.392_20191227','2.16.840.1.113762.1.4.1146.392_402955008');
-INSERT INTO valueset_to_concept VALUES('4369','2.16.840.1.113762.1.4.1146.1393_20230602','2.16.840.1.113762.1.4.1146.1393_102422007');
-INSERT INTO valueset_to_concept VALUES('4370','2.16.840.1.113762.1.4.1146.1393_20230602','2.16.840.1.113762.1.4.1146.1393_102425009');
-INSERT INTO valueset_to_concept VALUES('4371','2.16.840.1.113762.1.4.1146.1393_20230602','2.16.840.1.113762.1.4.1146.1393_102428006');
-INSERT INTO valueset_to_concept VALUES('4372','2.16.840.1.113762.1.4.1146.1393_20230602','2.16.840.1.113762.1.4.1146.1393_102433005');
-INSERT INTO valueset_to_concept VALUES('4373','2.16.840.1.113762.1.4.1146.1393_20230602','2.16.840.1.113762.1.4.1146.1393_102436002');
-INSERT INTO valueset_to_concept VALUES('4374','2.16.840.1.113762.1.4.1146.1393_20230602','2.16.840.1.113762.1.4.1146.1393_102439009');
-INSERT INTO valueset_to_concept VALUES('4375','2.16.840.1.113762.1.4.1146.1393_20230602','2.16.840.1.113762.1.4.1146.1393_102442003');
-INSERT INTO valueset_to_concept VALUES('4376','2.16.840.1.113762.1.4.1146.1393_20230602','2.16.840.1.113762.1.4.1146.1393_102445001');
-INSERT INTO valueset_to_concept VALUES('4377','2.16.840.1.113762.1.4.1146.1393_20230602','2.16.840.1.113762.1.4.1146.1393_16090571000119109');
-INSERT INTO valueset_to_concept VALUES('4378','2.16.840.1.113762.1.4.1146.1393_20230602','2.16.840.1.113762.1.4.1146.1393_16090691000119109');
-INSERT INTO valueset_to_concept VALUES('4379','2.16.840.1.113762.1.4.1146.1393_20230602','2.16.840.1.113762.1.4.1146.1393_16090731000119102');
-INSERT INTO valueset_to_concept VALUES('4380','2.16.840.1.113762.1.4.1146.1393_20230602','2.16.840.1.113762.1.4.1146.1393_16090771000119104');
-INSERT INTO valueset_to_concept VALUES('4381','2.16.840.1.113762.1.4.1146.151_20181031','2.16.840.1.113762.1.4.1146.151_409641002');
-INSERT INTO valueset_to_concept VALUES('4382','2.16.840.1.113762.1.4.1146.151_20181031','2.16.840.1.113762.1.4.1146.151_47452006');
-INSERT INTO valueset_to_concept VALUES('4383','2.16.840.1.113762.1.4.1146.151_20181031','2.16.840.1.113762.1.4.1146.151_51423006');
-INSERT INTO valueset_to_concept VALUES('4384','2.16.840.1.113762.1.4.1146.151_20181031','2.16.840.1.113762.1.4.1146.151_67924001');
-INSERT INTO valueset_to_concept VALUES('4385','2.16.840.1.113762.1.4.1146.151_20181031','2.16.840.1.113762.1.4.1146.151_72294005');
-INSERT INTO valueset_to_concept VALUES('4386','2.16.840.1.113762.1.4.1146.151_20181031','2.16.840.1.113762.1.4.1146.151_74724001');
-INSERT INTO valueset_to_concept VALUES('4387','2.16.840.1.113762.1.4.1146.151_20181031','2.16.840.1.113762.1.4.1146.151_86497005');
-INSERT INTO valueset_to_concept VALUES('4388','2.16.840.1.113762.1.4.1146.393_20181031','2.16.840.1.113762.1.4.1146.393_A57');
-INSERT INTO valueset_to_concept VALUES('4389','2.16.840.1.113762.1.4.1146.273_20181031','2.16.840.1.113762.1.4.1146.273_A27');
-INSERT INTO valueset_to_concept VALUES('4390','2.16.840.1.113762.1.4.1146.273_20181031','2.16.840.1.113762.1.4.1146.273_A27.0');
-INSERT INTO valueset_to_concept VALUES('4391','2.16.840.1.113762.1.4.1146.273_20181031','2.16.840.1.113762.1.4.1146.273_A27.8');
-INSERT INTO valueset_to_concept VALUES('4392','2.16.840.1.113762.1.4.1146.273_20181031','2.16.840.1.113762.1.4.1146.273_A27.89');
-INSERT INTO valueset_to_concept VALUES('4393','2.16.840.1.113762.1.4.1146.273_20181031','2.16.840.1.113762.1.4.1146.273_A27.9');
-INSERT INTO valueset_to_concept VALUES('4394','2.16.840.1.113762.1.4.1146.273_20181031','2.16.840.1.113762.1.4.1146.273_A27.81');
-INSERT INTO valueset_to_concept VALUES('4395','2.16.840.1.113762.1.4.1146.153_20181031','2.16.840.1.113762.1.4.1146.153_B17.1');
-INSERT INTO valueset_to_concept VALUES('4396','2.16.840.1.113762.1.4.1146.153_20181031','2.16.840.1.113762.1.4.1146.153_B17.10');
-INSERT INTO valueset_to_concept VALUES('4397','2.16.840.1.113762.1.4.1146.153_20181031','2.16.840.1.113762.1.4.1146.153_B17.11');
-INSERT INTO valueset_to_concept VALUES('4398','2.16.840.1.113762.1.4.1146.153_20181031','2.16.840.1.113762.1.4.1146.153_B18.2');
-INSERT INTO valueset_to_concept VALUES('4399','2.16.840.1.113762.1.4.1146.153_20181031','2.16.840.1.113762.1.4.1146.153_B19.2');
-INSERT INTO valueset_to_concept VALUES('4400','2.16.840.1.113762.1.4.1146.153_20181031','2.16.840.1.113762.1.4.1146.153_B19.20');
-INSERT INTO valueset_to_concept VALUES('4401','2.16.840.1.113762.1.4.1146.153_20181031','2.16.840.1.113762.1.4.1146.153_B19.21');
-INSERT INTO valueset_to_concept VALUES('4402','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_1010615002');
-INSERT INTO valueset_to_concept VALUES('4403','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_10345003');
-INSERT INTO valueset_to_concept VALUES('4404','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_104471000119105');
-INSERT INTO valueset_to_concept VALUES('4405','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_1052296002');
-INSERT INTO valueset_to_concept VALUES('4406','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_1052300001');
-INSERT INTO valueset_to_concept VALUES('4407','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_1052319006');
-INSERT INTO valueset_to_concept VALUES('4408','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_1052321001');
-INSERT INTO valueset_to_concept VALUES('4409','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_1052322008');
-INSERT INTO valueset_to_concept VALUES('4410','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_1052323003');
-INSERT INTO valueset_to_concept VALUES('4411','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_10759921000119107');
-INSERT INTO valueset_to_concept VALUES('4412','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_1107004');
-INSERT INTO valueset_to_concept VALUES('4413','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_11338007');
-INSERT INTO valueset_to_concept VALUES('4414','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_1142043006');
-INSERT INTO valueset_to_concept VALUES('4415','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_1142099009');
-INSERT INTO valueset_to_concept VALUES('4416','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_1163466000');
-INSERT INTO valueset_to_concept VALUES('4417','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_1177029002');
-INSERT INTO valueset_to_concept VALUES('4418','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_1177060002');
-INSERT INTO valueset_to_concept VALUES('4419','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_1177076006');
-INSERT INTO valueset_to_concept VALUES('4420','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_12232008');
-INSERT INTO valueset_to_concept VALUES('4421','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_127058009');
-INSERT INTO valueset_to_concept VALUES('4422','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_13095005');
-INSERT INTO valueset_to_concept VALUES('4423','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_13310005');
-INSERT INTO valueset_to_concept VALUES('4424','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_13731006');
-INSERT INTO valueset_to_concept VALUES('4425','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_15677801000119103');
-INSERT INTO valueset_to_concept VALUES('4426','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_15677841000119101');
-INSERT INTO valueset_to_concept VALUES('4427','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_15677881000119106');
-INSERT INTO valueset_to_concept VALUES('4428','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_15679481000119104');
-INSERT INTO valueset_to_concept VALUES('4429','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_15679561000119109');
-INSERT INTO valueset_to_concept VALUES('4430','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_15679681000119101');
-INSERT INTO valueset_to_concept VALUES('4431','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_15685441000119102');
-INSERT INTO valueset_to_concept VALUES('4432','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_15685481000119107');
-INSERT INTO valueset_to_concept VALUES('4433','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_15685521000119107');
-INSERT INTO valueset_to_concept VALUES('4434','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_15993311000119106');
-INSERT INTO valueset_to_concept VALUES('4435','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_15993351000119107');
-INSERT INTO valueset_to_concept VALUES('4436','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_15993391000119102');
-INSERT INTO valueset_to_concept VALUES('4437','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_15993471000119105');
-INSERT INTO valueset_to_concept VALUES('4438','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_16070004');
-INSERT INTO valueset_to_concept VALUES('4439','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_186846005');
-INSERT INTO valueset_to_concept VALUES('4440','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_186847001');
-INSERT INTO valueset_to_concept VALUES('4441','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_186850003');
-INSERT INTO valueset_to_concept VALUES('4442','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_186854007');
-INSERT INTO valueset_to_concept VALUES('4443','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_186861006');
-INSERT INTO valueset_to_concept VALUES('4444','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_186863009');
-INSERT INTO valueset_to_concept VALUES('4445','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_186867005');
-INSERT INTO valueset_to_concept VALUES('4446','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_186868000');
-INSERT INTO valueset_to_concept VALUES('4447','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_186875004');
-INSERT INTO valueset_to_concept VALUES('4448','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_186877007');
-INSERT INTO valueset_to_concept VALUES('4449','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_186878002');
-INSERT INTO valueset_to_concept VALUES('4450','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_186893003');
-INSERT INTO valueset_to_concept VALUES('4451','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_186899004');
-INSERT INTO valueset_to_concept VALUES('4452','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_186903006');
-INSERT INTO valueset_to_concept VALUES('4453','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_19206003');
-INSERT INTO valueset_to_concept VALUES('4454','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_192647003');
-INSERT INTO valueset_to_concept VALUES('4455','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_193786000');
-INSERT INTO valueset_to_concept VALUES('4456','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_194907008');
-INSERT INTO valueset_to_concept VALUES('4457','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_194947001');
-INSERT INTO valueset_to_concept VALUES('4458','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_197305002');
-INSERT INTO valueset_to_concept VALUES('4459','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_197347003');
-INSERT INTO valueset_to_concept VALUES('4460','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_197348008');
-INSERT INTO valueset_to_concept VALUES('4461','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_197757004');
-INSERT INTO valueset_to_concept VALUES('4462','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_197966009');
-INSERT INTO valueset_to_concept VALUES('4463','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_199154009');
-INSERT INTO valueset_to_concept VALUES('4464','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_199156006');
-INSERT INTO valueset_to_concept VALUES('4465','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_199157002');
-INSERT INTO valueset_to_concept VALUES('4466','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_199158007');
-INSERT INTO valueset_to_concept VALUES('4467','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_199159004');
-INSERT INTO valueset_to_concept VALUES('4468','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_201738001');
-INSERT INTO valueset_to_concept VALUES('4469','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_202933002');
-INSERT INTO valueset_to_concept VALUES('4470','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_20735004');
-INSERT INTO valueset_to_concept VALUES('4471','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_21523006');
-INSERT INTO valueset_to_concept VALUES('4472','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_22386003');
-INSERT INTO valueset_to_concept VALUES('4473','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_230735006');
-INSERT INTO valueset_to_concept VALUES('4474','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_232313005');
-INSERT INTO valueset_to_concept VALUES('4475','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_232367004');
-INSERT INTO valueset_to_concept VALUES('4476','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_233849007');
-INSERT INTO valueset_to_concept VALUES('4477','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_234017002');
-INSERT INTO valueset_to_concept VALUES('4478','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_235032001');
-INSERT INTO valueset_to_concept VALUES('4479','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_235062007');
-INSERT INTO valueset_to_concept VALUES('4480','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_235064008');
-INSERT INTO valueset_to_concept VALUES('4481','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_235065009');
-INSERT INTO valueset_to_concept VALUES('4482','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_23550005');
-INSERT INTO valueset_to_concept VALUES('4483','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_237446005');
-INSERT INTO valueset_to_concept VALUES('4484','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_237447001');
-INSERT INTO valueset_to_concept VALUES('4485','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_239825002');
-INSERT INTO valueset_to_concept VALUES('4486','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_240552005');
-INSERT INTO valueset_to_concept VALUES('4487','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_240553000');
-INSERT INTO valueset_to_concept VALUES('4488','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_240555007');
-INSERT INTO valueset_to_concept VALUES('4489','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_240556008');
-INSERT INTO valueset_to_concept VALUES('4490','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_240557004');
-INSERT INTO valueset_to_concept VALUES('4491','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_240558009');
-INSERT INTO valueset_to_concept VALUES('4492','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_240560006');
-INSERT INTO valueset_to_concept VALUES('4493','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_240561005');
-INSERT INTO valueset_to_concept VALUES('4494','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_240562003');
-INSERT INTO valueset_to_concept VALUES('4495','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_240563008');
-INSERT INTO valueset_to_concept VALUES('4496','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_240564002');
-INSERT INTO valueset_to_concept VALUES('4497','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_240565001');
-INSERT INTO valueset_to_concept VALUES('4498','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_240566000');
-INSERT INTO valueset_to_concept VALUES('4499','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_240567009');
-INSERT INTO valueset_to_concept VALUES('4500','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_240568004');
-INSERT INTO valueset_to_concept VALUES('4501','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_240569007');
-INSERT INTO valueset_to_concept VALUES('4502','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_26039008');
-INSERT INTO valueset_to_concept VALUES('4503','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_266127002');
-INSERT INTO valueset_to_concept VALUES('4504','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_266128007');
-INSERT INTO valueset_to_concept VALUES('4505','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_266130009');
-INSERT INTO valueset_to_concept VALUES('4506','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_266133006');
-INSERT INTO valueset_to_concept VALUES('4507','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_266136003');
-INSERT INTO valueset_to_concept VALUES('4508','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_271426000');
-INSERT INTO valueset_to_concept VALUES('4509','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_27460003');
-INSERT INTO valueset_to_concept VALUES('4510','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_278480000');
-INSERT INTO valueset_to_concept VALUES('4511','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_278481001');
-INSERT INTO valueset_to_concept VALUES('4512','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_28198007');
-INSERT INTO valueset_to_concept VALUES('4513','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_29500006');
-INSERT INTO valueset_to_concept VALUES('4514','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_30080002');
-INSERT INTO valueset_to_concept VALUES('4515','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_302813001');
-INSERT INTO valueset_to_concept VALUES('4516','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_31015008');
-INSERT INTO valueset_to_concept VALUES('4517','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_31137003');
-INSERT INTO valueset_to_concept VALUES('4518','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_312934004');
-INSERT INTO valueset_to_concept VALUES('4519','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_312955002');
-INSERT INTO valueset_to_concept VALUES('4520','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_314840009');
-INSERT INTO valueset_to_concept VALUES('4521','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_315826004');
-INSERT INTO valueset_to_concept VALUES('4522','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_316841006');
-INSERT INTO valueset_to_concept VALUES('4523','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_331151000119109');
-INSERT INTO valueset_to_concept VALUES('4524','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_34242002');
-INSERT INTO valueset_to_concept VALUES('4525','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_34964002');
-INSERT INTO valueset_to_concept VALUES('4526','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_3589003');
-INSERT INTO valueset_to_concept VALUES('4527','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_36276008');
-INSERT INTO valueset_to_concept VALUES('4528','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_37028008');
-INSERT INTO valueset_to_concept VALUES('4529','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_371237000');
-INSERT INTO valueset_to_concept VALUES('4530','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_37430004');
-INSERT INTO valueset_to_concept VALUES('4531','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_37754005');
-INSERT INTO valueset_to_concept VALUES('4532','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_39085002');
-INSERT INTO valueset_to_concept VALUES('4533','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_402940004');
-INSERT INTO valueset_to_concept VALUES('4534','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_402941000');
-INSERT INTO valueset_to_concept VALUES('4535','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_402942007');
-INSERT INTO valueset_to_concept VALUES('4536','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_402943002');
-INSERT INTO valueset_to_concept VALUES('4537','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_402944008');
-INSERT INTO valueset_to_concept VALUES('4538','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_402945009');
-INSERT INTO valueset_to_concept VALUES('4539','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_402946005');
-INSERT INTO valueset_to_concept VALUES('4540','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_402947001');
-INSERT INTO valueset_to_concept VALUES('4541','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_402948006');
-INSERT INTO valueset_to_concept VALUES('4542','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_402949003');
-INSERT INTO valueset_to_concept VALUES('4543','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_402950003');
-INSERT INTO valueset_to_concept VALUES('4544','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_402951004');
-INSERT INTO valueset_to_concept VALUES('4545','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_402952006');
-INSERT INTO valueset_to_concept VALUES('4546','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_405635002');
-INSERT INTO valueset_to_concept VALUES('4547','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_4082005');
-INSERT INTO valueset_to_concept VALUES('4548','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_410468007');
-INSERT INTO valueset_to_concept VALUES('4549','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_410469004');
-INSERT INTO valueset_to_concept VALUES('4550','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_410470003');
-INSERT INTO valueset_to_concept VALUES('4551','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_410478005');
-INSERT INTO valueset_to_concept VALUES('4552','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_42770003');
-INSERT INTO valueset_to_concept VALUES('4553','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_444150000');
-INSERT INTO valueset_to_concept VALUES('4554','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_44568006');
-INSERT INTO valueset_to_concept VALUES('4555','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_4483005');
-INSERT INTO valueset_to_concept VALUES('4556','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_449773001');
-INSERT INTO valueset_to_concept VALUES('4557','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_449776009');
-INSERT INTO valueset_to_concept VALUES('4558','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_45058001');
-INSERT INTO valueset_to_concept VALUES('4559','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_49923008');
-INSERT INTO valueset_to_concept VALUES('4560','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_50528008');
-INSERT INTO valueset_to_concept VALUES('4561','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_51928006');
-INSERT INTO valueset_to_concept VALUES('4562','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_51960003');
-INSERT INTO valueset_to_concept VALUES('4563','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_52414005');
-INSERT INTO valueset_to_concept VALUES('4564','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_54274001');
-INSERT INTO valueset_to_concept VALUES('4565','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_55768006');
-INSERT INTO valueset_to_concept VALUES('4566','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_58056005');
-INSERT INTO valueset_to_concept VALUES('4567','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_58227000');
-INSERT INTO valueset_to_concept VALUES('4568','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_59233003');
-INSERT INTO valueset_to_concept VALUES('4569','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_59307008');
-INSERT INTO valueset_to_concept VALUES('4570','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_59530001');
-INSERT INTO valueset_to_concept VALUES('4571','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_59934002');
-INSERT INTO valueset_to_concept VALUES('4572','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_60528006');
-INSERT INTO valueset_to_concept VALUES('4573','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_61612001');
-INSERT INTO valueset_to_concept VALUES('4574','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_62207008');
-INSERT INTO valueset_to_concept VALUES('4575','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_62861003');
-INSERT INTO valueset_to_concept VALUES('4576','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_63751007');
-INSERT INTO valueset_to_concept VALUES('4577','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_64102008');
-INSERT INTO valueset_to_concept VALUES('4578','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_66281009');
-INSERT INTO valueset_to_concept VALUES('4579','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_66887000');
-INSERT INTO valueset_to_concept VALUES('4580','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_67125004');
-INSERT INTO valueset_to_concept VALUES('4581','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_67391006');
-INSERT INTO valueset_to_concept VALUES('4582','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_69595007');
-INSERT INTO valueset_to_concept VALUES('4583','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_698725008');
-INSERT INTO valueset_to_concept VALUES('4584','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_711617002');
-INSERT INTO valueset_to_concept VALUES('4585','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_713251003');
-INSERT INTO valueset_to_concept VALUES('4586','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_72083004');
-INSERT INTO valueset_to_concept VALUES('4587','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_736686006');
-INSERT INTO valueset_to_concept VALUES('4588','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_75299005');
-INSERT INTO valueset_to_concept VALUES('4589','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_76272004');
-INSERT INTO valueset_to_concept VALUES('4590','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_77028001');
-INSERT INTO valueset_to_concept VALUES('4591','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_77782006');
-INSERT INTO valueset_to_concept VALUES('4592','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_77939001');
-INSERT INTO valueset_to_concept VALUES('4593','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_788975001');
-INSERT INTO valueset_to_concept VALUES('4594','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_788998009');
-INSERT INTO valueset_to_concept VALUES('4595','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_789121002');
-INSERT INTO valueset_to_concept VALUES('4596','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_80770009');
-INSERT INTO valueset_to_concept VALUES('4597','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_81339006');
-INSERT INTO valueset_to_concept VALUES('4598','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_82355002');
-INSERT INTO valueset_to_concept VALUES('4599','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_838317007');
-INSERT INTO valueset_to_concept VALUES('4600','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_83883001');
-INSERT INTO valueset_to_concept VALUES('4601','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_8555001');
-INSERT INTO valueset_to_concept VALUES('4602','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_85857008');
-INSERT INTO valueset_to_concept VALUES('4603','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_86028001');
-INSERT INTO valueset_to_concept VALUES('4604','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_860894002');
-INSERT INTO valueset_to_concept VALUES('4605','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_866090003');
-INSERT INTO valueset_to_concept VALUES('4606','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_866115006');
-INSERT INTO valueset_to_concept VALUES('4607','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_870273007');
-INSERT INTO valueset_to_concept VALUES('4608','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_870293004');
-INSERT INTO valueset_to_concept VALUES('4609','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_870319003');
-INSERT INTO valueset_to_concept VALUES('4610','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_870331001');
-INSERT INTO valueset_to_concept VALUES('4611','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_870347004');
-INSERT INTO valueset_to_concept VALUES('4612','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_88943008');
-INSERT INTO valueset_to_concept VALUES('4613','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_890114008');
-INSERT INTO valueset_to_concept VALUES('4614','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_890115009');
-INSERT INTO valueset_to_concept VALUES('4615','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_91554004');
-INSERT INTO valueset_to_concept VALUES('4616','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_94851000119107');
-INSERT INTO valueset_to_concept VALUES('4617','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_109436001');
-INSERT INTO valueset_to_concept VALUES('4618','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_1142031005');
-INSERT INTO valueset_to_concept VALUES('4619','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_1142092000');
-INSERT INTO valueset_to_concept VALUES('4620','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_1142095003');
-INSERT INTO valueset_to_concept VALUES('4621','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_1142112002');
-INSERT INTO valueset_to_concept VALUES('4622','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_1177081002');
-INSERT INTO valueset_to_concept VALUES('4623','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_186833000');
-INSERT INTO valueset_to_concept VALUES('4624','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_186842007');
-INSERT INTO valueset_to_concept VALUES('4625','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_192008');
-INSERT INTO valueset_to_concept VALUES('4626','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_19290004');
-INSERT INTO valueset_to_concept VALUES('4627','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_230152000');
-INSERT INTO valueset_to_concept VALUES('4628','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_230563005');
-INSERT INTO valueset_to_concept VALUES('4629','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_235898000');
-INSERT INTO valueset_to_concept VALUES('4630','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_240554006');
-INSERT INTO valueset_to_concept VALUES('4631','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_266125005');
-INSERT INTO valueset_to_concept VALUES('4632','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_266126006');
-INSERT INTO valueset_to_concept VALUES('4633','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_275376007');
-INSERT INTO valueset_to_concept VALUES('4634','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_27648007');
-INSERT INTO valueset_to_concept VALUES('4635','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_276700005');
-INSERT INTO valueset_to_concept VALUES('4636','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_301086002');
-INSERT INTO valueset_to_concept VALUES('4637','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_35742006');
-INSERT INTO valueset_to_concept VALUES('4638','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_4359001');
-INSERT INTO valueset_to_concept VALUES('4639','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_46235002');
-INSERT INTO valueset_to_concept VALUES('4640','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_54069001');
-INSERT INTO valueset_to_concept VALUES('4641','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_56118002');
-INSERT INTO valueset_to_concept VALUES('4642','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_58392004');
-INSERT INTO valueset_to_concept VALUES('4643','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_59721007');
-INSERT INTO valueset_to_concept VALUES('4644','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_6267005');
-INSERT INTO valueset_to_concept VALUES('4645','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_68764005');
-INSERT INTO valueset_to_concept VALUES('4646','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_68863007');
-INSERT INTO valueset_to_concept VALUES('4647','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_703134008');
-INSERT INTO valueset_to_concept VALUES('4648','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_721583004');
-INSERT INTO valueset_to_concept VALUES('4649','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_735515000');
-INSERT INTO valueset_to_concept VALUES('4650','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_82323002');
-INSERT INTO valueset_to_concept VALUES('4651','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_827006');
-INSERT INTO valueset_to_concept VALUES('4652','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_82959004');
-INSERT INTO valueset_to_concept VALUES('4653','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_86443005');
-INSERT INTO valueset_to_concept VALUES('4654','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_866106004');
-INSERT INTO valueset_to_concept VALUES('4655','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_87318008');
-INSERT INTO valueset_to_concept VALUES('4656','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_9941009');
-INSERT INTO valueset_to_concept VALUES('4657','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_198175009');
-INSERT INTO valueset_to_concept VALUES('4658','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_230182006');
-INSERT INTO valueset_to_concept VALUES('4659','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_26135000');
-INSERT INTO valueset_to_concept VALUES('4660','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_38523005');
-INSERT INTO valueset_to_concept VALUES('4661','2.16.840.1.113762.1.4.1146.395_20240123','2.16.840.1.113762.1.4.1146.395_32735002');
-INSERT INTO valueset_to_concept VALUES('4662','2.16.840.1.113762.1.4.1146.154_20230602','2.16.840.1.113762.1.4.1146.154_120241000119100');
-INSERT INTO valueset_to_concept VALUES('4663','2.16.840.1.113762.1.4.1146.154_20230602','2.16.840.1.113762.1.4.1146.154_125921000119106');
-INSERT INTO valueset_to_concept VALUES('4664','2.16.840.1.113762.1.4.1146.154_20230602','2.16.840.1.113762.1.4.1146.154_128302006');
-INSERT INTO valueset_to_concept VALUES('4665','2.16.840.1.113762.1.4.1146.154_20230602','2.16.840.1.113762.1.4.1146.154_128971000119101');
-INSERT INTO valueset_to_concept VALUES('4666','2.16.840.1.113762.1.4.1146.154_20230602','2.16.840.1.113762.1.4.1146.154_146371000119104');
-INSERT INTO valueset_to_concept VALUES('4667','2.16.840.1.113762.1.4.1146.154_20230602','2.16.840.1.113762.1.4.1146.154_186628001');
-INSERT INTO valueset_to_concept VALUES('4668','2.16.840.1.113762.1.4.1146.154_20230602','2.16.840.1.113762.1.4.1146.154_235866006');
-INSERT INTO valueset_to_concept VALUES('4669','2.16.840.1.113762.1.4.1146.154_20230602','2.16.840.1.113762.1.4.1146.154_347891000119103');
-INSERT INTO valueset_to_concept VALUES('4670','2.16.840.1.113762.1.4.1146.154_20230602','2.16.840.1.113762.1.4.1146.154_435101000124104');
-INSERT INTO valueset_to_concept VALUES('4671','2.16.840.1.113762.1.4.1146.154_20230602','2.16.840.1.113762.1.4.1146.154_50711007');
-INSERT INTO valueset_to_concept VALUES('4672','2.16.840.1.113762.1.4.1146.154_20230602','2.16.840.1.113762.1.4.1146.154_702969000');
-INSERT INTO valueset_to_concept VALUES('4673','2.16.840.1.113762.1.4.1146.154_20230602','2.16.840.1.113762.1.4.1146.154_703866000');
-INSERT INTO valueset_to_concept VALUES('4674','2.16.840.1.113762.1.4.1146.154_20230602','2.16.840.1.113762.1.4.1146.154_708198006');
-INSERT INTO valueset_to_concept VALUES('4675','2.16.840.1.113762.1.4.1146.154_20230602','2.16.840.1.113762.1.4.1146.154_767809001');
-INSERT INTO valueset_to_concept VALUES('4676','2.16.840.1.113762.1.4.1146.154_20230602','2.16.840.1.113762.1.4.1146.154_767810006');
-INSERT INTO valueset_to_concept VALUES('4677','2.16.840.1.113762.1.4.1146.154_20230602','2.16.840.1.113762.1.4.1146.154_768006009');
-INSERT INTO valueset_to_concept VALUES('4678','2.16.840.1.113762.1.4.1146.154_20230602','2.16.840.1.113762.1.4.1146.154_768125005');
-INSERT INTO valueset_to_concept VALUES('4679','2.16.840.1.113762.1.4.1146.154_20230602','2.16.840.1.113762.1.4.1146.154_768126006');
-INSERT INTO valueset_to_concept VALUES('4680','2.16.840.1.113762.1.4.1146.154_20230602','2.16.840.1.113762.1.4.1146.154_768127002');
-INSERT INTO valueset_to_concept VALUES('4681','2.16.840.1.113762.1.4.1146.154_20230602','2.16.840.1.113762.1.4.1146.154_768288001');
-INSERT INTO valueset_to_concept VALUES('4682','2.16.840.1.113762.1.4.1146.154_20230602','2.16.840.1.113762.1.4.1146.154_768289009');
-INSERT INTO valueset_to_concept VALUES('4683','2.16.840.1.113762.1.4.1146.154_20230602','2.16.840.1.113762.1.4.1146.154_831000119103');
-INSERT INTO valueset_to_concept VALUES('4684','2.16.840.1.113762.1.4.1146.154_20230602','2.16.840.1.113762.1.4.1146.154_442374005');
-INSERT INTO valueset_to_concept VALUES('4685','2.16.840.1.113762.1.4.1146.154_20230602','2.16.840.1.113762.1.4.1146.154_278929008');
-INSERT INTO valueset_to_concept VALUES('4686','2.16.840.1.113762.1.4.1146.154_20230602','2.16.840.1.113762.1.4.1146.154_838377003');
-INSERT INTO valueset_to_concept VALUES('4687','2.16.840.1.113762.1.4.1146.154_20230602','2.16.840.1.113762.1.4.1146.154_838380002');
-INSERT INTO valueset_to_concept VALUES('4688','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_A51.0');
-INSERT INTO valueset_to_concept VALUES('4689','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_A51.1');
-INSERT INTO valueset_to_concept VALUES('4690','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_A51.2');
-INSERT INTO valueset_to_concept VALUES('4691','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_A51.31');
-INSERT INTO valueset_to_concept VALUES('4692','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_A51.32');
-INSERT INTO valueset_to_concept VALUES('4693','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_A51.39');
-INSERT INTO valueset_to_concept VALUES('4694','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_A51.41');
-INSERT INTO valueset_to_concept VALUES('4695','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_A51.42');
-INSERT INTO valueset_to_concept VALUES('4696','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_A51.43');
-INSERT INTO valueset_to_concept VALUES('4697','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_A51.44');
-INSERT INTO valueset_to_concept VALUES('4698','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_A51.45');
-INSERT INTO valueset_to_concept VALUES('4699','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_A51.46');
-INSERT INTO valueset_to_concept VALUES('4700','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_A51.49');
-INSERT INTO valueset_to_concept VALUES('4701','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_A51.5');
-INSERT INTO valueset_to_concept VALUES('4702','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_A51.9');
-INSERT INTO valueset_to_concept VALUES('4703','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_A52.00');
-INSERT INTO valueset_to_concept VALUES('4704','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_A52.01');
-INSERT INTO valueset_to_concept VALUES('4705','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_A52.02');
-INSERT INTO valueset_to_concept VALUES('4706','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_A52.03');
-INSERT INTO valueset_to_concept VALUES('4707','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_A52.04');
-INSERT INTO valueset_to_concept VALUES('4708','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_A52.05');
-INSERT INTO valueset_to_concept VALUES('4709','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_A52.06');
-INSERT INTO valueset_to_concept VALUES('4710','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_A52.09');
-INSERT INTO valueset_to_concept VALUES('4711','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_A52.10');
-INSERT INTO valueset_to_concept VALUES('4712','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_A52.11');
-INSERT INTO valueset_to_concept VALUES('4713','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_A52.12');
-INSERT INTO valueset_to_concept VALUES('4714','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_A52.13');
-INSERT INTO valueset_to_concept VALUES('4715','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_A52.15');
-INSERT INTO valueset_to_concept VALUES('4716','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_A52.16');
-INSERT INTO valueset_to_concept VALUES('4717','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_A52.17');
-INSERT INTO valueset_to_concept VALUES('4718','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_A52.2');
-INSERT INTO valueset_to_concept VALUES('4719','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_A52.3');
-INSERT INTO valueset_to_concept VALUES('4720','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_A52.71');
-INSERT INTO valueset_to_concept VALUES('4721','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_A52.72');
-INSERT INTO valueset_to_concept VALUES('4722','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_A52.73');
-INSERT INTO valueset_to_concept VALUES('4723','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_A52.74');
-INSERT INTO valueset_to_concept VALUES('4724','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_A52.75');
-INSERT INTO valueset_to_concept VALUES('4725','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_A52.77');
-INSERT INTO valueset_to_concept VALUES('4726','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_A52.78');
-INSERT INTO valueset_to_concept VALUES('4727','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_A52.79');
-INSERT INTO valueset_to_concept VALUES('4728','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_A52.8');
-INSERT INTO valueset_to_concept VALUES('4729','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_A52.9');
-INSERT INTO valueset_to_concept VALUES('4730','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_A53.0');
-INSERT INTO valueset_to_concept VALUES('4731','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_A53.9');
-INSERT INTO valueset_to_concept VALUES('4732','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_A65');
-INSERT INTO valueset_to_concept VALUES('4733','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_O98.111');
-INSERT INTO valueset_to_concept VALUES('4734','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_O98.112');
-INSERT INTO valueset_to_concept VALUES('4735','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_O98.113');
-INSERT INTO valueset_to_concept VALUES('4736','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_O98.119');
-INSERT INTO valueset_to_concept VALUES('4737','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_O98.12');
-INSERT INTO valueset_to_concept VALUES('4738','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_O98.13');
-INSERT INTO valueset_to_concept VALUES('4739','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_A50.01');
-INSERT INTO valueset_to_concept VALUES('4740','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_A50.02');
-INSERT INTO valueset_to_concept VALUES('4741','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_A50.03');
-INSERT INTO valueset_to_concept VALUES('4742','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_A50.04');
-INSERT INTO valueset_to_concept VALUES('4743','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_A50.05');
-INSERT INTO valueset_to_concept VALUES('4744','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_A50.06');
-INSERT INTO valueset_to_concept VALUES('4745','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_A50.07');
-INSERT INTO valueset_to_concept VALUES('4746','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_A50.08');
-INSERT INTO valueset_to_concept VALUES('4747','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_A50.09');
-INSERT INTO valueset_to_concept VALUES('4748','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_A50.1');
-INSERT INTO valueset_to_concept VALUES('4749','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_A50.2');
-INSERT INTO valueset_to_concept VALUES('4750','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_A50.30');
-INSERT INTO valueset_to_concept VALUES('4751','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_A50.31');
-INSERT INTO valueset_to_concept VALUES('4752','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_A50.32');
-INSERT INTO valueset_to_concept VALUES('4753','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_A50.39');
-INSERT INTO valueset_to_concept VALUES('4754','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_A50.40');
-INSERT INTO valueset_to_concept VALUES('4755','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_A50.41');
-INSERT INTO valueset_to_concept VALUES('4756','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_A50.43');
-INSERT INTO valueset_to_concept VALUES('4757','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_A50.44');
-INSERT INTO valueset_to_concept VALUES('4758','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_A50.45');
-INSERT INTO valueset_to_concept VALUES('4759','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_A50.49');
-INSERT INTO valueset_to_concept VALUES('4760','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_A50.51');
-INSERT INTO valueset_to_concept VALUES('4761','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_A50.52');
-INSERT INTO valueset_to_concept VALUES('4762','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_A50.53');
-INSERT INTO valueset_to_concept VALUES('4763','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_A50.54');
-INSERT INTO valueset_to_concept VALUES('4764','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_A50.55');
-INSERT INTO valueset_to_concept VALUES('4765','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_A50.56');
-INSERT INTO valueset_to_concept VALUES('4766','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_A50.57');
-INSERT INTO valueset_to_concept VALUES('4767','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_A50.59');
-INSERT INTO valueset_to_concept VALUES('4768','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_A50.6');
-INSERT INTO valueset_to_concept VALUES('4769','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_A50.7');
-INSERT INTO valueset_to_concept VALUES('4770','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_A50.9');
-INSERT INTO valueset_to_concept VALUES('4771','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_A52.19');
-INSERT INTO valueset_to_concept VALUES('4772','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_A52.14');
-INSERT INTO valueset_to_concept VALUES('4773','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_A52.76');
-INSERT INTO valueset_to_concept VALUES('4774','2.16.840.1.113762.1.4.1146.396_20230122','2.16.840.1.113762.1.4.1146.396_A50.42');
-INSERT INTO valueset_to_concept VALUES('4775','2.16.840.1.113762.1.4.1146.156_20181031','2.16.840.1.113762.1.4.1146.156_A05.3');
-INSERT INTO valueset_to_concept VALUES('4776','2.16.840.1.113762.1.4.1146.156_20181031','2.16.840.1.113762.1.4.1146.156_A05.5');
-INSERT INTO valueset_to_concept VALUES('4777','2.16.840.1.113762.1.4.1146.156_20181031','2.16.840.1.113762.1.4.1146.156_B96.82');
-INSERT INTO valueset_to_concept VALUES('4778','2.16.840.1.113762.1.4.1146.2126_20230122','2.16.840.1.113762.1.4.1146.2126_125501000119105');
-INSERT INTO valueset_to_concept VALUES('4779','2.16.840.1.113762.1.4.1146.2368_20240620','2.16.840.1.113762.1.4.1146.2368_1237570003');
-INSERT INTO valueset_to_concept VALUES('4780','2.16.840.1.113762.1.4.1146.2006_20230125','2.16.840.1.113762.1.4.1146.2006_B81.3');
-INSERT INTO valueset_to_concept VALUES('4781','2.16.840.1.113762.1.4.1146.2006_20230125','2.16.840.1.113762.1.4.1146.2006_B83.2');
-INSERT INTO valueset_to_concept VALUES('4782','2.16.840.1.113762.1.4.1146.2127_20230122','2.16.840.1.113762.1.4.1146.2127_O35.13');
-INSERT INTO valueset_to_concept VALUES('4783','2.16.840.1.113762.1.4.1146.279_20181031','2.16.840.1.113762.1.4.1146.279_195889001');
-INSERT INTO valueset_to_concept VALUES('4784','2.16.840.1.113762.1.4.1146.279_20181031','2.16.840.1.113762.1.4.1146.279_240445005');
-INSERT INTO valueset_to_concept VALUES('4785','2.16.840.1.113762.1.4.1146.279_20181031','2.16.840.1.113762.1.4.1146.279_240446006');
-INSERT INTO valueset_to_concept VALUES('4786','2.16.840.1.113762.1.4.1146.279_20181031','2.16.840.1.113762.1.4.1146.279_240447002');
-INSERT INTO valueset_to_concept VALUES('4787','2.16.840.1.113762.1.4.1146.279_20181031','2.16.840.1.113762.1.4.1146.279_240448007');
-INSERT INTO valueset_to_concept VALUES('4788','2.16.840.1.113762.1.4.1146.279_20181031','2.16.840.1.113762.1.4.1146.279_240449004');
-INSERT INTO valueset_to_concept VALUES('4789','2.16.840.1.113762.1.4.1146.279_20181031','2.16.840.1.113762.1.4.1146.279_26726000');
-INSERT INTO valueset_to_concept VALUES('4790','2.16.840.1.113762.1.4.1146.279_20181031','2.16.840.1.113762.1.4.1146.279_269574000');
-INSERT INTO valueset_to_concept VALUES('4791','2.16.840.1.113762.1.4.1146.279_20181031','2.16.840.1.113762.1.4.1146.279_408681003');
-INSERT INTO valueset_to_concept VALUES('4792','2.16.840.1.113762.1.4.1146.279_20181031','2.16.840.1.113762.1.4.1146.279_76090006');
-INSERT INTO valueset_to_concept VALUES('4793','2.16.840.1.113762.1.4.1146.1159_20200515','2.16.840.1.113762.1.4.1146.1159_A83.1');
-INSERT INTO valueset_to_concept VALUES('4794','2.16.840.1.113762.1.4.1146.2124_20230122','2.16.840.1.113762.1.4.1146.2124_205615000');
-INSERT INTO valueset_to_concept VALUES('4795','2.16.840.1.113762.1.4.1146.2124_20230122','2.16.840.1.113762.1.4.1146.2124_205616004');
-INSERT INTO valueset_to_concept VALUES('4796','2.16.840.1.113762.1.4.1146.2124_20230122','2.16.840.1.113762.1.4.1146.2124_254264002');
-INSERT INTO valueset_to_concept VALUES('4797','2.16.840.1.113762.1.4.1146.2124_20230122','2.16.840.1.113762.1.4.1146.2124_371045000');
-INSERT INTO valueset_to_concept VALUES('4798','2.16.840.1.113762.1.4.1146.2124_20230122','2.16.840.1.113762.1.4.1146.2124_41040004');
-INSERT INTO valueset_to_concept VALUES('4799','2.16.840.1.113762.1.4.1146.2125_20230122','2.16.840.1.113762.1.4.1146.2125_Q90.0');
-INSERT INTO valueset_to_concept VALUES('4800','2.16.840.1.113762.1.4.1146.2125_20230122','2.16.840.1.113762.1.4.1146.2125_Q90.1');
-INSERT INTO valueset_to_concept VALUES('4801','2.16.840.1.113762.1.4.1146.2125_20230122','2.16.840.1.113762.1.4.1146.2125_Q90.2');
-INSERT INTO valueset_to_concept VALUES('4802','2.16.840.1.113762.1.4.1146.2125_20230122','2.16.840.1.113762.1.4.1146.2125_Q90.9');
-INSERT INTO valueset_to_concept VALUES('4803','2.16.840.1.113762.1.4.1146.1274_20230125','2.16.840.1.113762.1.4.1146.1274_1163462003');
-INSERT INTO valueset_to_concept VALUES('4804','2.16.840.1.113762.1.4.1146.1274_20230125','2.16.840.1.113762.1.4.1146.1274_1163481006');
-INSERT INTO valueset_to_concept VALUES('4805','2.16.840.1.113762.1.4.1146.1274_20230125','2.16.840.1.113762.1.4.1146.1274_12962009');
-INSERT INTO valueset_to_concept VALUES('4806','2.16.840.1.113762.1.4.1146.1274_20230125','2.16.840.1.113762.1.4.1146.1274_187039009');
-INSERT INTO valueset_to_concept VALUES('4807','2.16.840.1.113762.1.4.1146.1274_20230125','2.16.840.1.113762.1.4.1146.1274_187040006');
-INSERT INTO valueset_to_concept VALUES('4808','2.16.840.1.113762.1.4.1146.1274_20230125','2.16.840.1.113762.1.4.1146.1274_187041005');
-INSERT INTO valueset_to_concept VALUES('4809','2.16.840.1.113762.1.4.1146.1274_20230125','2.16.840.1.113762.1.4.1146.1274_187054003');
-INSERT INTO valueset_to_concept VALUES('4810','2.16.840.1.113762.1.4.1146.1274_20230125','2.16.840.1.113762.1.4.1146.1274_187058000');
-INSERT INTO valueset_to_concept VALUES('4811','2.16.840.1.113762.1.4.1146.1274_20230125','2.16.840.1.113762.1.4.1146.1274_187059008');
-INSERT INTO valueset_to_concept VALUES('4812','2.16.840.1.113762.1.4.1146.1274_20230125','2.16.840.1.113762.1.4.1146.1274_187062006');
-INSERT INTO valueset_to_concept VALUES('4813','2.16.840.1.113762.1.4.1146.1274_20230125','2.16.840.1.113762.1.4.1146.1274_240730004');
-INSERT INTO valueset_to_concept VALUES('4814','2.16.840.1.113762.1.4.1146.1274_20230125','2.16.840.1.113762.1.4.1146.1274_240731000');
-INSERT INTO valueset_to_concept VALUES('4815','2.16.840.1.113762.1.4.1146.1274_20230125','2.16.840.1.113762.1.4.1146.1274_240733002');
-INSERT INTO valueset_to_concept VALUES('4816','2.16.840.1.113762.1.4.1146.1274_20230125','2.16.840.1.113762.1.4.1146.1274_240734008');
-INSERT INTO valueset_to_concept VALUES('4817','2.16.840.1.113762.1.4.1146.1274_20230125','2.16.840.1.113762.1.4.1146.1274_240735009');
-INSERT INTO valueset_to_concept VALUES('4818','2.16.840.1.113762.1.4.1146.1274_20230125','2.16.840.1.113762.1.4.1146.1274_240736005');
-INSERT INTO valueset_to_concept VALUES('4819','2.16.840.1.113762.1.4.1146.1274_20230125','2.16.840.1.113762.1.4.1146.1274_240737001');
-INSERT INTO valueset_to_concept VALUES('4820','2.16.840.1.113762.1.4.1146.1274_20230125','2.16.840.1.113762.1.4.1146.1274_240738006');
-INSERT INTO valueset_to_concept VALUES('4821','2.16.840.1.113762.1.4.1146.1274_20230125','2.16.840.1.113762.1.4.1146.1274_240739003');
-INSERT INTO valueset_to_concept VALUES('4822','2.16.840.1.113762.1.4.1146.1274_20230125','2.16.840.1.113762.1.4.1146.1274_240744005');
-INSERT INTO valueset_to_concept VALUES('4823','2.16.840.1.113762.1.4.1146.1274_20230125','2.16.840.1.113762.1.4.1146.1274_240745006');
-INSERT INTO valueset_to_concept VALUES('4824','2.16.840.1.113762.1.4.1146.1274_20230125','2.16.840.1.113762.1.4.1146.1274_240746007');
-INSERT INTO valueset_to_concept VALUES('4825','2.16.840.1.113762.1.4.1146.1274_20230125','2.16.840.1.113762.1.4.1146.1274_38699009');
-INSERT INTO valueset_to_concept VALUES('4826','2.16.840.1.113762.1.4.1146.1274_20230125','2.16.840.1.113762.1.4.1146.1274_406587001');
-INSERT INTO valueset_to_concept VALUES('4827','2.16.840.1.113762.1.4.1146.1274_20230125','2.16.840.1.113762.1.4.1146.1274_416770009');
-INSERT INTO valueset_to_concept VALUES('4828','2.16.840.1.113762.1.4.1146.1274_20230125','2.16.840.1.113762.1.4.1146.1274_425418002');
-INSERT INTO valueset_to_concept VALUES('4829','2.16.840.1.113762.1.4.1146.1274_20230125','2.16.840.1.113762.1.4.1146.1274_430399004');
-INSERT INTO valueset_to_concept VALUES('4830','2.16.840.1.113762.1.4.1146.1274_20230125','2.16.840.1.113762.1.4.1146.1274_430404002');
-INSERT INTO valueset_to_concept VALUES('4831','2.16.840.1.113762.1.4.1146.1274_20230125','2.16.840.1.113762.1.4.1146.1274_442094008');
-INSERT INTO valueset_to_concept VALUES('4832','2.16.840.1.113762.1.4.1146.1274_20230125','2.16.840.1.113762.1.4.1146.1274_58524006');
-INSERT INTO valueset_to_concept VALUES('4833','2.16.840.1.113762.1.4.1146.1274_20230125','2.16.840.1.113762.1.4.1146.1274_677201000119104');
-INSERT INTO valueset_to_concept VALUES('4834','2.16.840.1.113762.1.4.1146.1274_20230125','2.16.840.1.113762.1.4.1146.1274_677211000119101');
-INSERT INTO valueset_to_concept VALUES('4835','2.16.840.1.113762.1.4.1146.1274_20230125','2.16.840.1.113762.1.4.1146.1274_677221000119108');
-INSERT INTO valueset_to_concept VALUES('4836','2.16.840.1.113762.1.4.1146.1274_20230125','2.16.840.1.113762.1.4.1146.1274_702577006');
-INSERT INTO valueset_to_concept VALUES('4837','2.16.840.1.113762.1.4.1146.1274_20230125','2.16.840.1.113762.1.4.1146.1274_76255006');
-INSERT INTO valueset_to_concept VALUES('4838','2.16.840.1.113762.1.4.1146.1274_20230125','2.16.840.1.113762.1.4.1146.1274_713624009');
-INSERT INTO valueset_to_concept VALUES('4839','2.16.840.1.113762.1.4.1146.1274_20230125','2.16.840.1.113762.1.4.1146.1274_713626006');
-INSERT INTO valueset_to_concept VALUES('4840','2.16.840.1.113762.1.4.1146.2122_20230125','2.16.840.1.113762.1.4.1146.2122_1003445004');
-INSERT INTO valueset_to_concept VALUES('4841','2.16.840.1.113762.1.4.1146.2122_20230125','2.16.840.1.113762.1.4.1146.2122_1003448002');
-INSERT INTO valueset_to_concept VALUES('4842','2.16.840.1.113762.1.4.1146.2122_20230125','2.16.840.1.113762.1.4.1146.2122_1010643006');
-INSERT INTO valueset_to_concept VALUES('4843','2.16.840.1.113762.1.4.1146.2122_20230125','2.16.840.1.113762.1.4.1146.2122_1010644000');
-INSERT INTO valueset_to_concept VALUES('4844','2.16.840.1.113762.1.4.1146.2122_20230125','2.16.840.1.113762.1.4.1146.2122_1052326006');
-INSERT INTO valueset_to_concept VALUES('4845','2.16.840.1.113762.1.4.1146.2122_20230125','2.16.840.1.113762.1.4.1146.2122_1162826002');
-INSERT INTO valueset_to_concept VALUES('4846','2.16.840.1.113762.1.4.1146.2122_20230125','2.16.840.1.113762.1.4.1146.2122_1197212001');
-INSERT INTO valueset_to_concept VALUES('4847','2.16.840.1.113762.1.4.1146.2122_20230125','2.16.840.1.113762.1.4.1146.2122_17761000119109');
-INSERT INTO valueset_to_concept VALUES('4848','2.16.840.1.113762.1.4.1146.2122_20230125','2.16.840.1.113762.1.4.1146.2122_17771000119103');
-INSERT INTO valueset_to_concept VALUES('4849','2.16.840.1.113762.1.4.1146.2122_20230125','2.16.840.1.113762.1.4.1146.2122_203934001');
-INSERT INTO valueset_to_concept VALUES('4850','2.16.840.1.113762.1.4.1146.2122_20230125','2.16.840.1.113762.1.4.1146.2122_203935000');
-INSERT INTO valueset_to_concept VALUES('4851','2.16.840.1.113762.1.4.1146.2122_20230125','2.16.840.1.113762.1.4.1146.2122_203936004');
-INSERT INTO valueset_to_concept VALUES('4852','2.16.840.1.113762.1.4.1146.2122_20230125','2.16.840.1.113762.1.4.1146.2122_203941007');
-INSERT INTO valueset_to_concept VALUES('4853','2.16.840.1.113762.1.4.1146.2122_20230125','2.16.840.1.113762.1.4.1146.2122_203942000');
-INSERT INTO valueset_to_concept VALUES('4854','2.16.840.1.113762.1.4.1146.2122_20230125','2.16.840.1.113762.1.4.1146.2122_203943005');
-INSERT INTO valueset_to_concept VALUES('4855','2.16.840.1.113762.1.4.1146.2122_20230125','2.16.840.1.113762.1.4.1146.2122_203944004');
-INSERT INTO valueset_to_concept VALUES('4856','2.16.840.1.113762.1.4.1146.2122_20230125','2.16.840.1.113762.1.4.1146.2122_203946002');
-INSERT INTO valueset_to_concept VALUES('4857','2.16.840.1.113762.1.4.1146.2122_20230125','2.16.840.1.113762.1.4.1146.2122_203948001');
-INSERT INTO valueset_to_concept VALUES('4858','2.16.840.1.113762.1.4.1146.2122_20230125','2.16.840.1.113762.1.4.1146.2122_203949009');
-INSERT INTO valueset_to_concept VALUES('4859','2.16.840.1.113762.1.4.1146.2122_20230125','2.16.840.1.113762.1.4.1146.2122_203950009');
-INSERT INTO valueset_to_concept VALUES('4860','2.16.840.1.113762.1.4.1146.2122_20230125','2.16.840.1.113762.1.4.1146.2122_203951008');
-INSERT INTO valueset_to_concept VALUES('4861','2.16.840.1.113762.1.4.1146.2122_20230125','2.16.840.1.113762.1.4.1146.2122_203954000');
-INSERT INTO valueset_to_concept VALUES('4862','2.16.840.1.113762.1.4.1146.2122_20230125','2.16.840.1.113762.1.4.1146.2122_203955004');
-INSERT INTO valueset_to_concept VALUES('4863','2.16.840.1.113762.1.4.1146.2122_20230125','2.16.840.1.113762.1.4.1146.2122_203957007');
-INSERT INTO valueset_to_concept VALUES('4864','2.16.840.1.113762.1.4.1146.2122_20230125','2.16.840.1.113762.1.4.1146.2122_203985009');
-INSERT INTO valueset_to_concept VALUES('4865','2.16.840.1.113762.1.4.1146.2122_20230125','2.16.840.1.113762.1.4.1146.2122_203986005');
-INSERT INTO valueset_to_concept VALUES('4866','2.16.840.1.113762.1.4.1146.2122_20230125','2.16.840.1.113762.1.4.1146.2122_203987001');
-INSERT INTO valueset_to_concept VALUES('4867','2.16.840.1.113762.1.4.1146.2122_20230125','2.16.840.1.113762.1.4.1146.2122_203990007');
-INSERT INTO valueset_to_concept VALUES('4868','2.16.840.1.113762.1.4.1146.2122_20230125','2.16.840.1.113762.1.4.1146.2122_203991006');
-INSERT INTO valueset_to_concept VALUES('4869','2.16.840.1.113762.1.4.1146.2122_20230125','2.16.840.1.113762.1.4.1146.2122_203992004');
-INSERT INTO valueset_to_concept VALUES('4870','2.16.840.1.113762.1.4.1146.2122_20230125','2.16.840.1.113762.1.4.1146.2122_203994003');
-INSERT INTO valueset_to_concept VALUES('4871','2.16.840.1.113762.1.4.1146.2122_20230125','2.16.840.1.113762.1.4.1146.2122_203996001');
-INSERT INTO valueset_to_concept VALUES('4872','2.16.840.1.113762.1.4.1146.2122_20230125','2.16.840.1.113762.1.4.1146.2122_203997005');
-INSERT INTO valueset_to_concept VALUES('4873','2.16.840.1.113762.1.4.1146.2122_20230125','2.16.840.1.113762.1.4.1146.2122_203998000');
-INSERT INTO valueset_to_concept VALUES('4874','2.16.840.1.113762.1.4.1146.2122_20230125','2.16.840.1.113762.1.4.1146.2122_204003007');
-INSERT INTO valueset_to_concept VALUES('4875','2.16.840.1.113762.1.4.1146.2122_20230125','2.16.840.1.113762.1.4.1146.2122_204004001');
-INSERT INTO valueset_to_concept VALUES('4876','2.16.840.1.113762.1.4.1146.2122_20230125','2.16.840.1.113762.1.4.1146.2122_204005000');
-INSERT INTO valueset_to_concept VALUES('4877','2.16.840.1.113762.1.4.1146.2122_20230125','2.16.840.1.113762.1.4.1146.2122_204006004');
-INSERT INTO valueset_to_concept VALUES('4878','2.16.840.1.113762.1.4.1146.2122_20230125','2.16.840.1.113762.1.4.1146.2122_204008003');
-INSERT INTO valueset_to_concept VALUES('4879','2.16.840.1.113762.1.4.1146.2122_20230125','2.16.840.1.113762.1.4.1146.2122_204010001');
-INSERT INTO valueset_to_concept VALUES('4880','2.16.840.1.113762.1.4.1146.2122_20230125','2.16.840.1.113762.1.4.1146.2122_204011002');
-INSERT INTO valueset_to_concept VALUES('4881','2.16.840.1.113762.1.4.1146.2122_20230125','2.16.840.1.113762.1.4.1146.2122_204012009');
-INSERT INTO valueset_to_concept VALUES('4882','2.16.840.1.113762.1.4.1146.2122_20230125','2.16.840.1.113762.1.4.1146.2122_204013004');
-INSERT INTO valueset_to_concept VALUES('4883','2.16.840.1.113762.1.4.1146.2122_20230125','2.16.840.1.113762.1.4.1146.2122_253111001');
-INSERT INTO valueset_to_concept VALUES('4884','2.16.840.1.113762.1.4.1146.2122_20230125','2.16.840.1.113762.1.4.1146.2122_253113003');
-INSERT INTO valueset_to_concept VALUES('4885','2.16.840.1.113762.1.4.1146.2122_20230125','2.16.840.1.113762.1.4.1146.2122_253114009');
-INSERT INTO valueset_to_concept VALUES('4886','2.16.840.1.113762.1.4.1146.2122_20230125','2.16.840.1.113762.1.4.1146.2122_253117002');
-INSERT INTO valueset_to_concept VALUES('4887','2.16.840.1.113762.1.4.1146.2122_20230125','2.16.840.1.113762.1.4.1146.2122_253118007');
-INSERT INTO valueset_to_concept VALUES('4888','2.16.840.1.113762.1.4.1146.2122_20230125','2.16.840.1.113762.1.4.1146.2122_253119004');
-INSERT INTO valueset_to_concept VALUES('4889','2.16.840.1.113762.1.4.1146.2122_20230125','2.16.840.1.113762.1.4.1146.2122_253120005');
-INSERT INTO valueset_to_concept VALUES('4890','2.16.840.1.113762.1.4.1146.2122_20230125','2.16.840.1.113762.1.4.1146.2122_26568002');
-INSERT INTO valueset_to_concept VALUES('4891','2.16.840.1.113762.1.4.1146.2122_20230125','2.16.840.1.113762.1.4.1146.2122_268143001');
-INSERT INTO valueset_to_concept VALUES('4892','2.16.840.1.113762.1.4.1146.2122_20230125','2.16.840.1.113762.1.4.1146.2122_268146009');
-INSERT INTO valueset_to_concept VALUES('4893','2.16.840.1.113762.1.4.1146.2122_20230125','2.16.840.1.113762.1.4.1146.2122_30620003');
-INSERT INTO valueset_to_concept VALUES('4894','2.16.840.1.113762.1.4.1146.2122_20230125','2.16.840.1.113762.1.4.1146.2122_32232003');
-INSERT INTO valueset_to_concept VALUES('4895','2.16.840.1.113762.1.4.1146.2122_20230125','2.16.840.1.113762.1.4.1146.2122_40130009');
-INSERT INTO valueset_to_concept VALUES('4896','2.16.840.1.113762.1.4.1146.2122_20230125','2.16.840.1.113762.1.4.1146.2122_403561007');
-INSERT INTO valueset_to_concept VALUES('4897','2.16.840.1.113762.1.4.1146.2122_20230125','2.16.840.1.113762.1.4.1146.2122_4061000119104');
-INSERT INTO valueset_to_concept VALUES('4898','2.16.840.1.113762.1.4.1146.2122_20230125','2.16.840.1.113762.1.4.1146.2122_414667000');
-INSERT INTO valueset_to_concept VALUES('4899','2.16.840.1.113762.1.4.1146.2122_20230125','2.16.840.1.113762.1.4.1146.2122_425687007');
-INSERT INTO valueset_to_concept VALUES('4900','2.16.840.1.113762.1.4.1146.2122_20230125','2.16.840.1.113762.1.4.1146.2122_427216002');
-INSERT INTO valueset_to_concept VALUES('4901','2.16.840.1.113762.1.4.1146.2122_20230125','2.16.840.1.113762.1.4.1146.2122_428190001');
-INSERT INTO valueset_to_concept VALUES('4902','2.16.840.1.113762.1.4.1146.2122_20230125','2.16.840.1.113762.1.4.1146.2122_429466000');
-INSERT INTO valueset_to_concept VALUES('4903','2.16.840.1.113762.1.4.1146.2122_20230125','2.16.840.1.113762.1.4.1146.2122_444860006');
-INSERT INTO valueset_to_concept VALUES('4904','2.16.840.1.113762.1.4.1146.2122_20230125','2.16.840.1.113762.1.4.1146.2122_445307009');
-INSERT INTO valueset_to_concept VALUES('4905','2.16.840.1.113762.1.4.1146.2122_20230125','2.16.840.1.113762.1.4.1146.2122_445308004');
-INSERT INTO valueset_to_concept VALUES('4906','2.16.840.1.113762.1.4.1146.2122_20230125','2.16.840.1.113762.1.4.1146.2122_53318002');
-INSERT INTO valueset_to_concept VALUES('4907','2.16.840.1.113762.1.4.1146.2122_20230125','2.16.840.1.113762.1.4.1146.2122_58557008');
-INSERT INTO valueset_to_concept VALUES('4908','2.16.840.1.113762.1.4.1146.2122_20230125','2.16.840.1.113762.1.4.1146.2122_61819007');
-INSERT INTO valueset_to_concept VALUES('4909','2.16.840.1.113762.1.4.1146.2122_20230125','2.16.840.1.113762.1.4.1146.2122_67531005');
-INSERT INTO valueset_to_concept VALUES('4910','2.16.840.1.113762.1.4.1146.2122_20230125','2.16.840.1.113762.1.4.1146.2122_70534000');
-INSERT INTO valueset_to_concept VALUES('4911','2.16.840.1.113762.1.4.1146.2122_20230125','2.16.840.1.113762.1.4.1146.2122_735749005');
-INSERT INTO valueset_to_concept VALUES('4912','2.16.840.1.113762.1.4.1146.2122_20230125','2.16.840.1.113762.1.4.1146.2122_763889002');
-INSERT INTO valueset_to_concept VALUES('4913','2.16.840.1.113762.1.4.1146.2122_20230125','2.16.840.1.113762.1.4.1146.2122_76481000119102');
-INSERT INTO valueset_to_concept VALUES('4914','2.16.840.1.113762.1.4.1146.2122_20230125','2.16.840.1.113762.1.4.1146.2122_768939009');
-INSERT INTO valueset_to_concept VALUES('4915','2.16.840.1.113762.1.4.1146.2122_20230125','2.16.840.1.113762.1.4.1146.2122_76916001');
-INSERT INTO valueset_to_concept VALUES('4916','2.16.840.1.113762.1.4.1146.2122_20230125','2.16.840.1.113762.1.4.1146.2122_77224008');
-INSERT INTO valueset_to_concept VALUES('4917','2.16.840.1.113762.1.4.1146.2122_20230125','2.16.840.1.113762.1.4.1146.2122_82058009');
-INSERT INTO valueset_to_concept VALUES('4918','2.16.840.1.113762.1.4.1146.2122_20230125','2.16.840.1.113762.1.4.1146.2122_890422008');
-INSERT INTO valueset_to_concept VALUES('4919','2.16.840.1.113762.1.4.1146.2122_20230125','2.16.840.1.113762.1.4.1146.2122_894125007');
-INSERT INTO valueset_to_concept VALUES('4920','2.16.840.1.113762.1.4.1146.2122_20230125','2.16.840.1.113762.1.4.1146.2122_93557001');
-INSERT INTO valueset_to_concept VALUES('4921','2.16.840.1.113762.1.4.1146.2122_20230125','2.16.840.1.113762.1.4.1146.2122_732927000');
-INSERT INTO valueset_to_concept VALUES('4922','2.16.840.1.113762.1.4.1146.2122_20230125','2.16.840.1.113762.1.4.1146.2122_103771000119101');
-INSERT INTO valueset_to_concept VALUES('4923','2.16.840.1.113762.1.4.1146.1394_20220603','2.16.840.1.113762.1.4.1146.1394_Z57.2');
-INSERT INTO valueset_to_concept VALUES('4924','2.16.840.1.113762.1.4.1146.1394_20220603','2.16.840.1.113762.1.4.1146.1394_Z57.31');
-INSERT INTO valueset_to_concept VALUES('4925','2.16.840.1.113762.1.4.1146.1394_20220603','2.16.840.1.113762.1.4.1146.1394_Z57.39');
-INSERT INTO valueset_to_concept VALUES('4926','2.16.840.1.113762.1.4.1146.1394_20220603','2.16.840.1.113762.1.4.1146.1394_Z57.4');
-INSERT INTO valueset_to_concept VALUES('4927','2.16.840.1.113762.1.4.1146.1394_20220603','2.16.840.1.113762.1.4.1146.1394_Z57.5');
-INSERT INTO valueset_to_concept VALUES('4928','2.16.840.1.113762.1.4.1146.1394_20220603','2.16.840.1.113762.1.4.1146.1394_Z57.8');
-INSERT INTO valueset_to_concept VALUES('4929','2.16.840.1.113762.1.4.1146.1394_20220603','2.16.840.1.113762.1.4.1146.1394_Z57.9');
-INSERT INTO valueset_to_concept VALUES('4930','2.16.840.1.113762.1.4.1146.2123_20230122','2.16.840.1.113762.1.4.1146.2123_Q05.0');
-INSERT INTO valueset_to_concept VALUES('4931','2.16.840.1.113762.1.4.1146.2123_20230122','2.16.840.1.113762.1.4.1146.2123_Q05.1');
-INSERT INTO valueset_to_concept VALUES('4932','2.16.840.1.113762.1.4.1146.2123_20230122','2.16.840.1.113762.1.4.1146.2123_Q05.2');
-INSERT INTO valueset_to_concept VALUES('4933','2.16.840.1.113762.1.4.1146.2123_20230122','2.16.840.1.113762.1.4.1146.2123_Q05.3');
-INSERT INTO valueset_to_concept VALUES('4934','2.16.840.1.113762.1.4.1146.2123_20230122','2.16.840.1.113762.1.4.1146.2123_Q05.4');
-INSERT INTO valueset_to_concept VALUES('4935','2.16.840.1.113762.1.4.1146.2123_20230122','2.16.840.1.113762.1.4.1146.2123_Q05.5');
-INSERT INTO valueset_to_concept VALUES('4936','2.16.840.1.113762.1.4.1146.2123_20230122','2.16.840.1.113762.1.4.1146.2123_Q05.6');
-INSERT INTO valueset_to_concept VALUES('4937','2.16.840.1.113762.1.4.1146.2123_20230122','2.16.840.1.113762.1.4.1146.2123_Q05.7');
-INSERT INTO valueset_to_concept VALUES('4938','2.16.840.1.113762.1.4.1146.2123_20230122','2.16.840.1.113762.1.4.1146.2123_Q05.8');
-INSERT INTO valueset_to_concept VALUES('4939','2.16.840.1.113762.1.4.1146.2123_20230122','2.16.840.1.113762.1.4.1146.2123_Q05.9');
-INSERT INTO valueset_to_concept VALUES('4940','2.16.840.1.113762.1.4.1146.2123_20230122','2.16.840.1.113762.1.4.1146.2123_Q07.01');
-INSERT INTO valueset_to_concept VALUES('4941','2.16.840.1.113762.1.4.1146.2123_20230122','2.16.840.1.113762.1.4.1146.2123_Q07.03');
-INSERT INTO valueset_to_concept VALUES('4942','2.16.840.1.113762.1.4.1146.39_20181031','2.16.840.1.113762.1.4.1146.39_A04.3');
-INSERT INTO valueset_to_concept VALUES('4943','2.16.840.1.113762.1.4.1146.39_20181031','2.16.840.1.113762.1.4.1146.39_B96.21');
-INSERT INTO valueset_to_concept VALUES('4944','2.16.840.1.113762.1.4.1146.39_20181031','2.16.840.1.113762.1.4.1146.39_B96.22');
-INSERT INTO valueset_to_concept VALUES('4945','2.16.840.1.113762.1.4.1146.39_20181031','2.16.840.1.113762.1.4.1146.39_B96.23');
-INSERT INTO valueset_to_concept VALUES('4946','2.16.840.1.113762.1.4.1146.1397_20210526','2.16.840.1.113762.1.4.1146.1397_6452009');
-INSERT INTO valueset_to_concept VALUES('4947','2.16.840.1.113762.1.4.1146.2120_20230122','2.16.840.1.113762.1.4.1146.2120_Q37.0');
-INSERT INTO valueset_to_concept VALUES('4948','2.16.840.1.113762.1.4.1146.2120_20230122','2.16.840.1.113762.1.4.1146.2120_Q37.1');
-INSERT INTO valueset_to_concept VALUES('4949','2.16.840.1.113762.1.4.1146.2120_20230122','2.16.840.1.113762.1.4.1146.2120_Q37.2');
-INSERT INTO valueset_to_concept VALUES('4950','2.16.840.1.113762.1.4.1146.2120_20230122','2.16.840.1.113762.1.4.1146.2120_Q37.3');
-INSERT INTO valueset_to_concept VALUES('4951','2.16.840.1.113762.1.4.1146.2120_20230122','2.16.840.1.113762.1.4.1146.2120_Q37.4');
-INSERT INTO valueset_to_concept VALUES('4952','2.16.840.1.113762.1.4.1146.2120_20230122','2.16.840.1.113762.1.4.1146.2120_Q37.5');
-INSERT INTO valueset_to_concept VALUES('4953','2.16.840.1.113762.1.4.1146.2120_20230122','2.16.840.1.113762.1.4.1146.2120_Q37.8');
-INSERT INTO valueset_to_concept VALUES('4954','2.16.840.1.113762.1.4.1146.2120_20230122','2.16.840.1.113762.1.4.1146.2120_Q37.9');
-INSERT INTO valueset_to_concept VALUES('4955','2.16.840.1.113762.1.4.1146.1275_20230125','2.16.840.1.113762.1.4.1146.1275_B39.0');
-INSERT INTO valueset_to_concept VALUES('4956','2.16.840.1.113762.1.4.1146.1275_20230125','2.16.840.1.113762.1.4.1146.1275_B39.2');
-INSERT INTO valueset_to_concept VALUES('4957','2.16.840.1.113762.1.4.1146.1275_20230125','2.16.840.1.113762.1.4.1146.1275_B39.3');
-INSERT INTO valueset_to_concept VALUES('4958','2.16.840.1.113762.1.4.1146.1275_20230125','2.16.840.1.113762.1.4.1146.1275_B39.4');
-INSERT INTO valueset_to_concept VALUES('4959','2.16.840.1.113762.1.4.1146.1275_20230125','2.16.840.1.113762.1.4.1146.1275_B39.9');
-INSERT INTO valueset_to_concept VALUES('4960','2.16.840.1.113762.1.4.1146.1396_20210526','2.16.840.1.113762.1.4.1146.1396_A93.2');
-INSERT INTO valueset_to_concept VALUES('4961','2.16.840.1.113762.1.4.1146.2000_20230125','2.16.840.1.113762.1.4.1146.2000_A87.2');
-INSERT INTO valueset_to_concept VALUES('4962','2.16.840.1.113762.1.4.1146.2121_20230125','2.16.840.1.113762.1.4.1146.2121_783724009');
-INSERT INTO valueset_to_concept VALUES('4963','2.16.840.1.113762.1.4.1146.1160_20200516','2.16.840.1.113762.1.4.1146.1160_A83.2');
-INSERT INTO valueset_to_concept VALUES('4964','2.16.840.1.113762.1.4.1146.260_20181031','2.16.840.1.113762.1.4.1146.260_A78');
-INSERT INTO valueset_to_concept VALUES('4965','2.16.840.1.113762.1.4.1146.1162_20200515','2.16.840.1.113762.1.4.1146.1162_A83.5');
-INSERT INTO valueset_to_concept VALUES('4966','2.16.840.1.113762.1.4.1146.1283_20210120','2.16.840.1.113762.1.4.1146.1283_406596001');
-INSERT INTO valueset_to_concept VALUES('4967','2.16.840.1.113762.1.4.1146.1283_20210120','2.16.840.1.113762.1.4.1146.1283_721816008');
-INSERT INTO valueset_to_concept VALUES('4968','2.16.840.1.113762.1.4.1146.1283_20210120','2.16.840.1.113762.1.4.1146.1283_428175000');
-INSERT INTO valueset_to_concept VALUES('4969','2.16.840.1.113762.1.4.1146.1283_20210120','2.16.840.1.113762.1.4.1146.1283_52281009');
-INSERT INTO valueset_to_concept VALUES('4970','2.16.840.1.113762.1.4.1146.140_20191227','2.16.840.1.113762.1.4.1146.140_A41.3');
-INSERT INTO valueset_to_concept VALUES('4971','2.16.840.1.113762.1.4.1146.140_20191227','2.16.840.1.113762.1.4.1146.140_A49.2');
-INSERT INTO valueset_to_concept VALUES('4972','2.16.840.1.113762.1.4.1146.140_20191227','2.16.840.1.113762.1.4.1146.140_B96.3');
-INSERT INTO valueset_to_concept VALUES('4973','2.16.840.1.113762.1.4.1146.140_20191227','2.16.840.1.113762.1.4.1146.140_J14');
-INSERT INTO valueset_to_concept VALUES('4974','2.16.840.1.113762.1.4.1146.140_20191227','2.16.840.1.113762.1.4.1146.140_G00.0');
-INSERT INTO valueset_to_concept VALUES('4975','2.16.840.1.113762.1.4.1146.1161_20200515','2.16.840.1.113762.1.4.1146.1161_A92.0');
-INSERT INTO valueset_to_concept VALUES('4976','2.16.840.1.113762.1.4.1146.141_20181031','2.16.840.1.113762.1.4.1146.141_B18.1');
-INSERT INTO valueset_to_concept VALUES('4977','2.16.840.1.113762.1.4.1146.141_20181031','2.16.840.1.113762.1.4.1146.141_B17.0');
-INSERT INTO valueset_to_concept VALUES('4978','2.16.840.1.113762.1.4.1146.141_20181031','2.16.840.1.113762.1.4.1146.141_B18.0');
-INSERT INTO valueset_to_concept VALUES('4979','2.16.840.1.113762.1.4.1146.264_20240123','2.16.840.1.113762.1.4.1146.264_19065005');
-INSERT INTO valueset_to_concept VALUES('4980','2.16.840.1.113762.1.4.1146.264_20240123','2.16.840.1.113762.1.4.1146.264_240523007');
-INSERT INTO valueset_to_concept VALUES('4981','2.16.840.1.113762.1.4.1146.264_20240123','2.16.840.1.113762.1.4.1146.264_240524001');
-INSERT INTO valueset_to_concept VALUES('4982','2.16.840.1.113762.1.4.1146.264_20240123','2.16.840.1.113762.1.4.1146.264_240525000');
-INSERT INTO valueset_to_concept VALUES('4983','2.16.840.1.113762.1.4.1146.264_20240123','2.16.840.1.113762.1.4.1146.264_37109004');
-INSERT INTO valueset_to_concept VALUES('4984','2.16.840.1.113762.1.4.1146.264_20240123','2.16.840.1.113762.1.4.1146.264_402919000');
-INSERT INTO valueset_to_concept VALUES('4985','2.16.840.1.113762.1.4.1146.264_20240123','2.16.840.1.113762.1.4.1146.264_43489008');
-INSERT INTO valueset_to_concept VALUES('4986','2.16.840.1.113762.1.4.1146.264_20240123','2.16.840.1.113762.1.4.1146.264_45901000087102');
-INSERT INTO valueset_to_concept VALUES('4987','2.16.840.1.113762.1.4.1146.264_20240123','2.16.840.1.113762.1.4.1146.264_58868000');
-INSERT INTO valueset_to_concept VALUES('4988','2.16.840.1.113762.1.4.1146.264_20240123','2.16.840.1.113762.1.4.1146.264_67247008');
-INSERT INTO valueset_to_concept VALUES('4989','2.16.840.1.113762.1.4.1146.264_20240123','2.16.840.1.113762.1.4.1146.264_716584007');
-INSERT INTO valueset_to_concept VALUES('4990','2.16.840.1.113762.1.4.1146.264_20240123','2.16.840.1.113762.1.4.1146.264_716585008');
-INSERT INTO valueset_to_concept VALUES('4991','2.16.840.1.113762.1.4.1146.264_20240123','2.16.840.1.113762.1.4.1146.264_721777004');
-INSERT INTO valueset_to_concept VALUES('4992','2.16.840.1.113762.1.4.1146.264_20240123','2.16.840.1.113762.1.4.1146.264_721778009');
-INSERT INTO valueset_to_concept VALUES('4993','2.16.840.1.113762.1.4.1146.264_20240123','2.16.840.1.113762.1.4.1146.264_721779001');
-INSERT INTO valueset_to_concept VALUES('4994','2.16.840.1.113762.1.4.1146.264_20240123','2.16.840.1.113762.1.4.1146.264_721780003');
-INSERT INTO valueset_to_concept VALUES('4995','2.16.840.1.113762.1.4.1146.264_20240123','2.16.840.1.113762.1.4.1146.264_721782006');
-INSERT INTO valueset_to_concept VALUES('4996','2.16.840.1.113762.1.4.1146.264_20240123','2.16.840.1.113762.1.4.1146.264_721784007');
-INSERT INTO valueset_to_concept VALUES('4997','2.16.840.1.113762.1.4.1146.264_20240123','2.16.840.1.113762.1.4.1146.264_73730005');
-INSERT INTO valueset_to_concept VALUES('4998','2.16.840.1.113762.1.4.1146.264_20240123','2.16.840.1.113762.1.4.1146.264_77503002');
-INSERT INTO valueset_to_concept VALUES('4999','2.16.840.1.113762.1.4.1146.264_20240123','2.16.840.1.113762.1.4.1146.264_788870007');
-INSERT INTO valueset_to_concept VALUES('5000','2.16.840.1.113762.1.4.1146.264_20240123','2.16.840.1.113762.1.4.1146.264_788872004');
-INSERT INTO valueset_to_concept VALUES('5001','2.16.840.1.113762.1.4.1146.264_20240123','2.16.840.1.113762.1.4.1146.264_788902004');
-INSERT INTO valueset_to_concept VALUES('5002','2.16.840.1.113762.1.4.1146.264_20240123','2.16.840.1.113762.1.4.1146.264_788903009');
-INSERT INTO valueset_to_concept VALUES('5003','2.16.840.1.113762.1.4.1146.264_20240123','2.16.840.1.113762.1.4.1146.264_1163468004');
-INSERT INTO valueset_to_concept VALUES('5004','2.16.840.1.113762.1.4.1146.264_20240123','2.16.840.1.113762.1.4.1146.264_1163469007');
-INSERT INTO valueset_to_concept VALUES('5005','2.16.840.1.113762.1.4.1146.264_20240123','2.16.840.1.113762.1.4.1146.264_1163471007');
-INSERT INTO valueset_to_concept VALUES('5006','2.16.840.1.113762.1.4.1146.264_20240123','2.16.840.1.113762.1.4.1146.264_359673001');
-INSERT INTO valueset_to_concept VALUES('5007','2.16.840.1.113762.1.4.1146.264_20240123','2.16.840.1.113762.1.4.1146.264_716864001');
-INSERT INTO valueset_to_concept VALUES('5008','2.16.840.1.113762.1.4.1146.264_20240123','2.16.840.1.113762.1.4.1146.264_1163055001');
-INSERT INTO valueset_to_concept VALUES('5009','2.16.840.1.113762.1.4.1146.264_20240123','2.16.840.1.113762.1.4.1146.264_1163057009');
-INSERT INTO valueset_to_concept VALUES('5010','2.16.840.1.113762.1.4.1146.264_20240123','2.16.840.1.113762.1.4.1146.264_1163059007');
-INSERT INTO valueset_to_concept VALUES('5011','2.16.840.1.113762.1.4.1146.265_20240123','2.16.840.1.113762.1.4.1146.265_A90-A99');
-INSERT INTO valueset_to_concept VALUES('5012','2.16.840.1.113762.1.4.1146.265_20240123','2.16.840.1.113762.1.4.1146.265_A96');
-INSERT INTO valueset_to_concept VALUES('5013','2.16.840.1.113762.1.4.1146.265_20240123','2.16.840.1.113762.1.4.1146.265_A96.0');
-INSERT INTO valueset_to_concept VALUES('5014','2.16.840.1.113762.1.4.1146.265_20240123','2.16.840.1.113762.1.4.1146.265_A96.1');
-INSERT INTO valueset_to_concept VALUES('5015','2.16.840.1.113762.1.4.1146.265_20240123','2.16.840.1.113762.1.4.1146.265_A96.2');
-INSERT INTO valueset_to_concept VALUES('5016','2.16.840.1.113762.1.4.1146.265_20240123','2.16.840.1.113762.1.4.1146.265_A96.8');
-INSERT INTO valueset_to_concept VALUES('5017','2.16.840.1.113762.1.4.1146.265_20240123','2.16.840.1.113762.1.4.1146.265_A96.9');
-INSERT INTO valueset_to_concept VALUES('5018','2.16.840.1.113762.1.4.1146.265_20240123','2.16.840.1.113762.1.4.1146.265_A98');
-INSERT INTO valueset_to_concept VALUES('5019','2.16.840.1.113762.1.4.1146.265_20240123','2.16.840.1.113762.1.4.1146.265_A98.0');
-INSERT INTO valueset_to_concept VALUES('5020','2.16.840.1.113762.1.4.1146.265_20240123','2.16.840.1.113762.1.4.1146.265_A98.3');
-INSERT INTO valueset_to_concept VALUES('5021','2.16.840.1.113762.1.4.1146.265_20240123','2.16.840.1.113762.1.4.1146.265_A98.4');
-INSERT INTO valueset_to_concept VALUES('5022','2.16.840.1.113762.1.4.1146.265_20240123','2.16.840.1.113762.1.4.1146.265_A98.5');
-INSERT INTO valueset_to_concept VALUES('5023','2.16.840.1.113762.1.4.1146.265_20240123','2.16.840.1.113762.1.4.1146.265_A98.8');
-INSERT INTO valueset_to_concept VALUES('5024','2.16.840.1.113762.1.4.1146.265_20240123','2.16.840.1.113762.1.4.1146.265_A99');
-INSERT INTO valueset_to_concept VALUES('5025','2.16.840.1.113762.1.4.1146.145_20240123','2.16.840.1.113762.1.4.1146.145_1142085005');
-INSERT INTO valueset_to_concept VALUES('5026','2.16.840.1.113762.1.4.1146.145_20240123','2.16.840.1.113762.1.4.1146.145_1179456002');
-INSERT INTO valueset_to_concept VALUES('5027','2.16.840.1.113762.1.4.1146.145_20240123','2.16.840.1.113762.1.4.1146.145_15678841000119100');
-INSERT INTO valueset_to_concept VALUES('5028','2.16.840.1.113762.1.4.1146.145_20240123','2.16.840.1.113762.1.4.1146.145_15680281000119103');
-INSERT INTO valueset_to_concept VALUES('5029','2.16.840.1.113762.1.4.1146.145_20240123','2.16.840.1.113762.1.4.1146.145_15936581000119108');
-INSERT INTO valueset_to_concept VALUES('5030','2.16.840.1.113762.1.4.1146.145_20240123','2.16.840.1.113762.1.4.1146.145_15936621000119108');
-INSERT INTO valueset_to_concept VALUES('5031','2.16.840.1.113762.1.4.1146.145_20240123','2.16.840.1.113762.1.4.1146.145_15991751000119109');
-INSERT INTO valueset_to_concept VALUES('5032','2.16.840.1.113762.1.4.1146.145_20240123','2.16.840.1.113762.1.4.1146.145_15992351000119104');
-INSERT INTO valueset_to_concept VALUES('5033','2.16.840.1.113762.1.4.1146.145_20240123','2.16.840.1.113762.1.4.1146.145_195911009');
-INSERT INTO valueset_to_concept VALUES('5034','2.16.840.1.113762.1.4.1146.145_20240123','2.16.840.1.113762.1.4.1146.145_230198004');
-INSERT INTO valueset_to_concept VALUES('5035','2.16.840.1.113762.1.4.1146.145_20240123','2.16.840.1.113762.1.4.1146.145_23737006');
-INSERT INTO valueset_to_concept VALUES('5036','2.16.840.1.113762.1.4.1146.145_20240123','2.16.840.1.113762.1.4.1146.145_240468001');
-INSERT INTO valueset_to_concept VALUES('5037','2.16.840.1.113762.1.4.1146.145_20240123','2.16.840.1.113762.1.4.1146.145_240469009');
-INSERT INTO valueset_to_concept VALUES('5038','2.16.840.1.113762.1.4.1146.145_20240123','2.16.840.1.113762.1.4.1146.145_24059009');
-INSERT INTO valueset_to_concept VALUES('5039','2.16.840.1.113762.1.4.1146.145_20240123','2.16.840.1.113762.1.4.1146.145_277644009');
-INSERT INTO valueset_to_concept VALUES('5040','2.16.840.1.113762.1.4.1146.145_20240123','2.16.840.1.113762.1.4.1146.145_28721000119108');
-INSERT INTO valueset_to_concept VALUES('5041','2.16.840.1.113762.1.4.1146.145_20240123','2.16.840.1.113762.1.4.1146.145_309465005');
-INSERT INTO valueset_to_concept VALUES('5042','2.16.840.1.113762.1.4.1146.145_20240123','2.16.840.1.113762.1.4.1146.145_31920006');
-INSERT INTO valueset_to_concept VALUES('5043','2.16.840.1.113762.1.4.1146.145_20240123','2.16.840.1.113762.1.4.1146.145_38907003');
-INSERT INTO valueset_to_concept VALUES('5044','2.16.840.1.113762.1.4.1146.145_20240123','2.16.840.1.113762.1.4.1146.145_402899000');
-INSERT INTO valueset_to_concept VALUES('5045','2.16.840.1.113762.1.4.1146.145_20240123','2.16.840.1.113762.1.4.1146.145_423333008');
-INSERT INTO valueset_to_concept VALUES('5046','2.16.840.1.113762.1.4.1146.145_20240123','2.16.840.1.113762.1.4.1146.145_713250002');
-INSERT INTO valueset_to_concept VALUES('5047','2.16.840.1.113762.1.4.1146.145_20240123','2.16.840.1.113762.1.4.1146.145_715223009');
-INSERT INTO valueset_to_concept VALUES('5048','2.16.840.1.113762.1.4.1146.145_20240123','2.16.840.1.113762.1.4.1146.145_733167008');
-INSERT INTO valueset_to_concept VALUES('5049','2.16.840.1.113762.1.4.1146.145_20240123','2.16.840.1.113762.1.4.1146.145_870310004');
-INSERT INTO valueset_to_concept VALUES('5050','2.16.840.1.113762.1.4.1146.145_20240123','2.16.840.1.113762.1.4.1146.145_90433002');
-INSERT INTO valueset_to_concept VALUES('5051','2.16.840.1.113762.1.4.1146.145_20240123','2.16.840.1.113762.1.4.1146.145_186509002');
-INSERT INTO valueset_to_concept VALUES('5052','2.16.840.1.113762.1.4.1146.1047_20240123','2.16.840.1.113762.1.4.1146.1047_G20');
-INSERT INTO valueset_to_concept VALUES('5053','2.16.840.1.113762.1.4.1146.1047_20240123','2.16.840.1.113762.1.4.1146.1047_G20.A1');
-INSERT INTO valueset_to_concept VALUES('5054','2.16.840.1.113762.1.4.1146.1047_20240123','2.16.840.1.113762.1.4.1146.1047_G20.A2');
-INSERT INTO valueset_to_concept VALUES('5055','2.16.840.1.113762.1.4.1146.1047_20240123','2.16.840.1.113762.1.4.1146.1047_G20.B1');
-INSERT INTO valueset_to_concept VALUES('5056','2.16.840.1.113762.1.4.1146.1047_20240123','2.16.840.1.113762.1.4.1146.1047_G20.B2');
-INSERT INTO valueset_to_concept VALUES('5057','2.16.840.1.113762.1.4.1146.146_20181031','2.16.840.1.113762.1.4.1146.146_B01');
-INSERT INTO valueset_to_concept VALUES('5058','2.16.840.1.113762.1.4.1146.146_20181031','2.16.840.1.113762.1.4.1146.146_B01.12');
-INSERT INTO valueset_to_concept VALUES('5059','2.16.840.1.113762.1.4.1146.146_20181031','2.16.840.1.113762.1.4.1146.146_B01.2');
-INSERT INTO valueset_to_concept VALUES('5060','2.16.840.1.113762.1.4.1146.146_20181031','2.16.840.1.113762.1.4.1146.146_B01.8');
-INSERT INTO valueset_to_concept VALUES('5061','2.16.840.1.113762.1.4.1146.146_20181031','2.16.840.1.113762.1.4.1146.146_B01.81');
-INSERT INTO valueset_to_concept VALUES('5062','2.16.840.1.113762.1.4.1146.146_20181031','2.16.840.1.113762.1.4.1146.146_B01.89');
-INSERT INTO valueset_to_concept VALUES('5063','2.16.840.1.113762.1.4.1146.146_20181031','2.16.840.1.113762.1.4.1146.146_B01.9');
-INSERT INTO valueset_to_concept VALUES('5064','2.16.840.1.113762.1.4.1146.146_20181031','2.16.840.1.113762.1.4.1146.146_B01.0');
-INSERT INTO valueset_to_concept VALUES('5065','2.16.840.1.113762.1.4.1146.146_20181031','2.16.840.1.113762.1.4.1146.146_B01.1');
-INSERT INTO valueset_to_concept VALUES('5066','2.16.840.1.113762.1.4.1146.146_20181031','2.16.840.1.113762.1.4.1146.146_B01.11');
-INSERT INTO valueset_to_concept VALUES('5067','2.16.840.1.113762.1.4.1146.2016_20221022','2.16.840.1.113762.1.4.1146.2016_1290741000000106');
-INSERT INTO valueset_to_concept VALUES('5068','2.16.840.1.113762.1.4.1146.2137_20240123','2.16.840.1.113762.1.4.1146.2137_1177002007');
-INSERT INTO valueset_to_concept VALUES('5069','2.16.840.1.113762.1.4.1146.2137_20240123','2.16.840.1.113762.1.4.1146.2137_1259081008');
-INSERT INTO valueset_to_concept VALUES('5070','2.16.840.1.113762.1.4.1146.2137_20240123','2.16.840.1.113762.1.4.1146.2137_1259501004');
-INSERT INTO valueset_to_concept VALUES('5071','2.16.840.1.113762.1.4.1146.2137_20240123','2.16.840.1.113762.1.4.1146.2137_1259640001');
-INSERT INTO valueset_to_concept VALUES('5072','2.16.840.1.113762.1.4.1146.2137_20240123','2.16.840.1.113762.1.4.1146.2137_20484008');
-INSERT INTO valueset_to_concept VALUES('5073','2.16.840.1.113762.1.4.1146.2137_20240123','2.16.840.1.113762.1.4.1146.2137_721165001');
-INSERT INTO valueset_to_concept VALUES('5074','2.16.840.1.113762.1.4.1146.2137_20240123','2.16.840.1.113762.1.4.1146.2137_721219005');
-INSERT INTO valueset_to_concept VALUES('5075','2.16.840.1.113762.1.4.1146.2137_20240123','2.16.840.1.113762.1.4.1146.2137_721255002');
-INSERT INTO valueset_to_concept VALUES('5076','2.16.840.1.113762.1.4.1146.2137_20240123','2.16.840.1.113762.1.4.1146.2137_733422008');
-INSERT INTO valueset_to_concept VALUES('5077','2.16.840.1.113762.1.4.1146.2137_20240123','2.16.840.1.113762.1.4.1146.2137_762350007');
-INSERT INTO valueset_to_concept VALUES('5078','2.16.840.1.113762.1.4.1146.2137_20240123','2.16.840.1.113762.1.4.1146.2137_86188000');
-INSERT INTO valueset_to_concept VALUES('5079','2.16.840.1.113762.1.4.1146.2137_20240123','2.16.840.1.113762.1.4.1146.2137_1176989007');
-INSERT INTO valueset_to_concept VALUES('5080','2.16.840.1.113762.1.4.1146.2137_20240123','2.16.840.1.113762.1.4.1146.2137_1163119007');
-INSERT INTO valueset_to_concept VALUES('5081','2.16.840.1.113762.1.4.1146.2137_20240123','2.16.840.1.113762.1.4.1146.2137_1259478009');
-INSERT INTO valueset_to_concept VALUES('5082','2.16.840.1.113762.1.4.1146.2137_20240123','2.16.840.1.113762.1.4.1146.2137_1259480003');
-INSERT INTO valueset_to_concept VALUES('5083','2.16.840.1.113762.1.4.1146.2137_20240123','2.16.840.1.113762.1.4.1146.2137_1259503001');
-INSERT INTO valueset_to_concept VALUES('5084','2.16.840.1.113762.1.4.1146.2137_20240123','2.16.840.1.113762.1.4.1146.2137_1259522005');
-INSERT INTO valueset_to_concept VALUES('5085','2.16.840.1.113762.1.4.1146.2137_20240123','2.16.840.1.113762.1.4.1146.2137_1259529001');
-INSERT INTO valueset_to_concept VALUES('5086','2.16.840.1.113762.1.4.1146.2137_20240123','2.16.840.1.113762.1.4.1146.2137_192818008');
-INSERT INTO valueset_to_concept VALUES('5087','2.16.840.1.113762.1.4.1146.2137_20240123','2.16.840.1.113762.1.4.1146.2137_304603007');
-INSERT INTO valueset_to_concept VALUES('5088','2.16.840.1.113762.1.4.1146.2137_20240123','2.16.840.1.113762.1.4.1146.2137_429458009');
-INSERT INTO valueset_to_concept VALUES('5089','2.16.840.1.113762.1.4.1146.2137_20240123','2.16.840.1.113762.1.4.1146.2137_67155006');
-INSERT INTO valueset_to_concept VALUES('5090','2.16.840.1.113762.1.4.1146.2137_20240123','2.16.840.1.113762.1.4.1146.2137_713060000');
-INSERT INTO valueset_to_concept VALUES('5091','2.16.840.1.113762.1.4.1146.2137_20240123','2.16.840.1.113762.1.4.1146.2137_715662009');
-INSERT INTO valueset_to_concept VALUES('5092','2.16.840.1.113762.1.4.1146.2137_20240123','2.16.840.1.113762.1.4.1146.2137_715807002');
-INSERT INTO valueset_to_concept VALUES('5093','2.16.840.1.113762.1.4.1146.2137_20240123','2.16.840.1.113762.1.4.1146.2137_792004');
-INSERT INTO valueset_to_concept VALUES('5094','2.16.840.1.113762.1.4.1146.2137_20240123','2.16.840.1.113762.1.4.1146.2137_83157008');
-INSERT INTO valueset_to_concept VALUES('5095','2.16.840.1.113762.1.4.1146.2137_20240123','2.16.840.1.113762.1.4.1146.2137_840452004');
-INSERT INTO valueset_to_concept VALUES('5096','2.16.840.1.113762.1.4.1146.2137_20240123','2.16.840.1.113762.1.4.1146.2137_860826006');
-INSERT INTO valueset_to_concept VALUES('5097','2.16.840.1.113762.1.4.1146.1167_20200515','2.16.840.1.113762.1.4.1146.1167_423592001');
-INSERT INTO valueset_to_concept VALUES('5098','2.16.840.1.113762.1.4.1146.1167_20200515','2.16.840.1.113762.1.4.1146.1167_47523006');
-INSERT INTO valueset_to_concept VALUES('5099','2.16.840.1.113762.1.4.1146.1167_20200515','2.16.840.1.113762.1.4.1146.1167_422498005');
-INSERT INTO valueset_to_concept VALUES('5100','2.16.840.1.113762.1.4.1146.2138_20230122','2.16.840.1.113762.1.4.1146.2138_A81.81');
-INSERT INTO valueset_to_concept VALUES('5101','2.16.840.1.113762.1.4.1146.2138_20230122','2.16.840.1.113762.1.4.1146.2138_A81.00');
-INSERT INTO valueset_to_concept VALUES('5102','2.16.840.1.113762.1.4.1146.2138_20230122','2.16.840.1.113762.1.4.1146.2138_A81.01');
-INSERT INTO valueset_to_concept VALUES('5103','2.16.840.1.113762.1.4.1146.2138_20230122','2.16.840.1.113762.1.4.1146.2138_A81.09');
-INSERT INTO valueset_to_concept VALUES('5104','2.16.840.1.113762.1.4.1146.2138_20230122','2.16.840.1.113762.1.4.1146.2138_A81.82');
-INSERT INTO valueset_to_concept VALUES('5105','2.16.840.1.113762.1.4.1146.2138_20230122','2.16.840.1.113762.1.4.1146.2138_A81.83');
-INSERT INTO valueset_to_concept VALUES('5106','2.16.840.1.113762.1.4.1146.2259_20240123','2.16.840.1.113762.1.4.1146.2259_414819007');
-INSERT INTO valueset_to_concept VALUES('5107','2.16.840.1.113762.1.4.1146.1049_20240123','2.16.840.1.113762.1.4.1146.1049_G20.C');
-INSERT INTO valueset_to_concept VALUES('5108','2.16.840.1.113762.1.4.1146.1049_20240123','2.16.840.1.113762.1.4.1146.1049_G21.11');
-INSERT INTO valueset_to_concept VALUES('5109','2.16.840.1.113762.1.4.1146.1049_20240123','2.16.840.1.113762.1.4.1146.1049_G21.19');
-INSERT INTO valueset_to_concept VALUES('5110','2.16.840.1.113762.1.4.1146.1049_20240123','2.16.840.1.113762.1.4.1146.1049_G21.2');
-INSERT INTO valueset_to_concept VALUES('5111','2.16.840.1.113762.1.4.1146.1049_20240123','2.16.840.1.113762.1.4.1146.1049_G21.3');
-INSERT INTO valueset_to_concept VALUES('5112','2.16.840.1.113762.1.4.1146.1049_20240123','2.16.840.1.113762.1.4.1146.1049_G21.4');
-INSERT INTO valueset_to_concept VALUES('5113','2.16.840.1.113762.1.4.1146.1049_20240123','2.16.840.1.113762.1.4.1146.1049_G21.8');
-INSERT INTO valueset_to_concept VALUES('5114','2.16.840.1.113762.1.4.1146.1049_20240123','2.16.840.1.113762.1.4.1146.1049_G21.9');
-INSERT INTO valueset_to_concept VALUES('5115','2.16.840.1.113762.1.4.1146.1049_20240123','2.16.840.1.113762.1.4.1146.1049_A52.19');
-INSERT INTO valueset_to_concept VALUES('5116','2.16.840.1.113762.1.4.1146.2135_20230122','2.16.840.1.113762.1.4.1146.2135_67155006');
-INSERT INTO valueset_to_concept VALUES('5117','2.16.840.1.113762.1.4.1146.2256_20240123','2.16.840.1.113762.1.4.1146.2256_34521000087103');
-INSERT INTO valueset_to_concept VALUES('5118','2.16.840.1.113762.1.4.1146.1048_20240123','2.16.840.1.113762.1.4.1146.1048_101421000119107');
-INSERT INTO valueset_to_concept VALUES('5119','2.16.840.1.113762.1.4.1146.1048_20240123','2.16.840.1.113762.1.4.1146.1048_103871000119109');
-INSERT INTO valueset_to_concept VALUES('5120','2.16.840.1.113762.1.4.1146.1048_20240123','2.16.840.1.113762.1.4.1146.1048_1156822001');
-INSERT INTO valueset_to_concept VALUES('5121','2.16.840.1.113762.1.4.1146.1048_20240123','2.16.840.1.113762.1.4.1146.1048_1259080009');
-INSERT INTO valueset_to_concept VALUES('5122','2.16.840.1.113762.1.4.1146.1048_20240123','2.16.840.1.113762.1.4.1146.1048_15755701000119105');
-INSERT INTO valueset_to_concept VALUES('5123','2.16.840.1.113762.1.4.1146.1048_20240123','2.16.840.1.113762.1.4.1146.1048_230291001');
-INSERT INTO valueset_to_concept VALUES('5124','2.16.840.1.113762.1.4.1146.1048_20240123','2.16.840.1.113762.1.4.1146.1048_425390006');
-INSERT INTO valueset_to_concept VALUES('5125','2.16.840.1.113762.1.4.1146.1048_20240123','2.16.840.1.113762.1.4.1146.1048_438513002');
-INSERT INTO valueset_to_concept VALUES('5126','2.16.840.1.113762.1.4.1146.1048_20240123','2.16.840.1.113762.1.4.1146.1048_49049000');
-INSERT INTO valueset_to_concept VALUES('5127','2.16.840.1.113762.1.4.1146.1048_20240123','2.16.840.1.113762.1.4.1146.1048_715345007');
-INSERT INTO valueset_to_concept VALUES('5128','2.16.840.1.113762.1.4.1146.1048_20240123','2.16.840.1.113762.1.4.1146.1048_716107009');
-INSERT INTO valueset_to_concept VALUES('5129','2.16.840.1.113762.1.4.1146.1048_20240123','2.16.840.1.113762.1.4.1146.1048_716662004');
-INSERT INTO valueset_to_concept VALUES('5130','2.16.840.1.113762.1.4.1146.1048_20240123','2.16.840.1.113762.1.4.1146.1048_718685006');
-INSERT INTO valueset_to_concept VALUES('5131','2.16.840.1.113762.1.4.1146.1048_20240123','2.16.840.1.113762.1.4.1146.1048_719717006');
-INSERT INTO valueset_to_concept VALUES('5132','2.16.840.1.113762.1.4.1146.1048_20240123','2.16.840.1.113762.1.4.1146.1048_724761004');
-INSERT INTO valueset_to_concept VALUES('5133','2.16.840.1.113762.1.4.1146.1048_20240123','2.16.840.1.113762.1.4.1146.1048_725146001');
-INSERT INTO valueset_to_concept VALUES('5134','2.16.840.1.113762.1.4.1146.2015_20221022','2.16.840.1.113762.1.4.1146.2015_1290521000000109');
-INSERT INTO valueset_to_concept VALUES('5135','2.16.840.1.113762.1.4.1146.2015_20221022','2.16.840.1.113762.1.4.1146.2015_1290711000000105');
-INSERT INTO valueset_to_concept VALUES('5136','2.16.840.1.113762.1.4.1146.2136_20230122','2.16.840.1.113762.1.4.1146.2136_A81.82');
-INSERT INTO valueset_to_concept VALUES('5137','2.16.840.1.113762.1.4.1146.1164_20200515','2.16.840.1.113762.1.4.1146.1164_111864006');
-INSERT INTO valueset_to_concept VALUES('5138','2.16.840.1.113762.1.4.1146.2133_20240123','2.16.840.1.113762.1.4.1146.2133_1259480003');
-INSERT INTO valueset_to_concept VALUES('5139','2.16.840.1.113762.1.4.1146.2133_20240123','2.16.840.1.113762.1.4.1146.2133_83157008');
-INSERT INTO valueset_to_concept VALUES('5140','2.16.840.1.113762.1.4.1146.1163_20200515','2.16.840.1.113762.1.4.1146.1163_240507007');
-INSERT INTO valueset_to_concept VALUES('5141','2.16.840.1.113762.1.4.1146.1163_20200515','2.16.840.1.113762.1.4.1146.1163_404236003');
-INSERT INTO valueset_to_concept VALUES('5142','2.16.840.1.113762.1.4.1146.1163_20200515','2.16.840.1.113762.1.4.1146.1163_41723001');
-INSERT INTO valueset_to_concept VALUES('5143','2.16.840.1.113762.1.4.1146.1163_20200515','2.16.840.1.113762.1.4.1146.1163_404237007');
-INSERT INTO valueset_to_concept VALUES('5144','2.16.840.1.113762.1.4.1146.1163_20200515','2.16.840.1.113762.1.4.1146.1163_416442006');
-INSERT INTO valueset_to_concept VALUES('5145','2.16.840.1.113762.1.4.1146.1163_20200515','2.16.840.1.113762.1.4.1146.1163_418182000');
-INSERT INTO valueset_to_concept VALUES('5146','2.16.840.1.113762.1.4.1146.1163_20200515','2.16.840.1.113762.1.4.1146.1163_419226000');
-INSERT INTO valueset_to_concept VALUES('5147','2.16.840.1.113762.1.4.1146.1163_20200515','2.16.840.1.113762.1.4.1146.1163_61094002');
-INSERT INTO valueset_to_concept VALUES('5148','2.16.840.1.113762.1.4.1146.1163_20200515','2.16.840.1.113762.1.4.1146.1163_404238002');
-INSERT INTO valueset_to_concept VALUES('5149','2.16.840.1.113762.1.4.1146.1163_20200515','2.16.840.1.113762.1.4.1146.1163_404241006');
-INSERT INTO valueset_to_concept VALUES('5150','2.16.840.1.113762.1.4.1146.1163_20200515','2.16.840.1.113762.1.4.1146.1163_404239005');
-INSERT INTO valueset_to_concept VALUES('5151','2.16.840.1.113762.1.4.1146.1163_20200515','2.16.840.1.113762.1.4.1146.1163_404240007');
-INSERT INTO valueset_to_concept VALUES('5152','2.16.840.1.113762.1.4.1146.1163_20200515','2.16.840.1.113762.1.4.1146.1163_404243009');
-INSERT INTO valueset_to_concept VALUES('5153','2.16.840.1.113762.1.4.1146.1163_20200515','2.16.840.1.113762.1.4.1146.1163_404235004');
-INSERT INTO valueset_to_concept VALUES('5154','2.16.840.1.113762.1.4.1146.1163_20200515','2.16.840.1.113762.1.4.1146.1163_417075004');
-INSERT INTO valueset_to_concept VALUES('5155','2.16.840.1.113762.1.4.1146.1163_20200515','2.16.840.1.113762.1.4.1146.1163_418531007');
-INSERT INTO valueset_to_concept VALUES('5156','2.16.840.1.113762.1.4.1146.1284_20210120','2.16.840.1.113762.1.4.1146.1284_B60.2');
-INSERT INTO valueset_to_concept VALUES('5157','2.16.840.1.113762.1.4.1146.2134_20230122','2.16.840.1.113762.1.4.1146.2134_A81.83');
-INSERT INTO valueset_to_concept VALUES('5158','2.16.840.1.113762.1.4.1146.2255_20240123','2.16.840.1.113762.1.4.1146.2255_34521000087103');
-INSERT INTO valueset_to_concept VALUES('5159','2.16.840.1.113762.1.4.1146.1166_20200515','2.16.840.1.113762.1.4.1146.1166_416707008');
-INSERT INTO valueset_to_concept VALUES('5160','2.16.840.1.113762.1.4.1146.1166_20200515','2.16.840.1.113762.1.4.1146.1166_417160009');
-INSERT INTO valueset_to_concept VALUES('5161','2.16.840.1.113762.1.4.1146.1166_20200515','2.16.840.1.113762.1.4.1146.1166_416543004');
-INSERT INTO valueset_to_concept VALUES('5162','2.16.840.1.113762.1.4.1146.1287_20210120','2.16.840.1.113762.1.4.1146.1287_186311005');
-INSERT INTO valueset_to_concept VALUES('5163','2.16.840.1.113762.1.4.1146.1287_20210120','2.16.840.1.113762.1.4.1146.1287_240389009');
-INSERT INTO valueset_to_concept VALUES('5164','2.16.840.1.113762.1.4.1146.1287_20210120','2.16.840.1.113762.1.4.1146.1287_240390000');
-INSERT INTO valueset_to_concept VALUES('5165','2.16.840.1.113762.1.4.1146.1287_20210120','2.16.840.1.113762.1.4.1146.1287_240391001');
-INSERT INTO valueset_to_concept VALUES('5166','2.16.840.1.113762.1.4.1146.1287_20210120','2.16.840.1.113762.1.4.1146.1287_428111003');
-INSERT INTO valueset_to_concept VALUES('5167','2.16.840.1.113762.1.4.1146.2131_20230122','2.16.840.1.113762.1.4.1146.2131_72951007');
-INSERT INTO valueset_to_concept VALUES('5168','2.16.840.1.113762.1.4.1146.2131_20230122','2.16.840.1.113762.1.4.1146.2131_93556005');
-INSERT INTO valueset_to_concept VALUES('5169','2.16.840.1.113762.1.4.1146.1165_20200516','2.16.840.1.113762.1.4.1146.1165_416925005');
-INSERT INTO valueset_to_concept VALUES('5170','2.16.840.1.113762.1.4.1146.1165_20200516','2.16.840.1.113762.1.4.1146.1165_417573001');
-INSERT INTO valueset_to_concept VALUES('5171','2.16.840.1.113762.1.4.1146.1165_20200516','2.16.840.1.113762.1.4.1146.1165_417496004');
-INSERT INTO valueset_to_concept VALUES('5172','2.16.840.1.113762.1.4.1146.2132_20230122','2.16.840.1.113762.1.4.1146.2132_Q79.3');
-INSERT INTO valueset_to_concept VALUES('5173','2.16.840.1.113762.1.4.1146.52_20220602','2.16.840.1.113762.1.4.1146.52_186946009');
-INSERT INTO valueset_to_concept VALUES('5174','2.16.840.1.113762.1.4.1146.52_20220602','2.16.840.1.113762.1.4.1146.52_237084006');
-INSERT INTO valueset_to_concept VALUES('5175','2.16.840.1.113762.1.4.1146.52_20220602','2.16.840.1.113762.1.4.1146.52_240602008');
-INSERT INTO valueset_to_concept VALUES('5176','2.16.840.1.113762.1.4.1146.52_20220602','2.16.840.1.113762.1.4.1146.52_240603003');
-INSERT INTO valueset_to_concept VALUES('5177','2.16.840.1.113762.1.4.1146.52_20220602','2.16.840.1.113762.1.4.1146.52_240604009');
-INSERT INTO valueset_to_concept VALUES('5178','2.16.840.1.113762.1.4.1146.52_20220602','2.16.840.1.113762.1.4.1146.52_447353001');
-INSERT INTO valueset_to_concept VALUES('5179','2.16.840.1.113762.1.4.1146.52_20220602','2.16.840.1.113762.1.4.1146.52_179101003');
-INSERT INTO valueset_to_concept VALUES('5180','2.16.840.1.113762.1.4.1146.52_20220602','2.16.840.1.113762.1.4.1146.52_236683007');
-INSERT INTO valueset_to_concept VALUES('5181','2.16.840.1.113762.1.4.1146.53_20220602','2.16.840.1.113762.1.4.1146.53_A55');
-INSERT INTO valueset_to_concept VALUES('5182','2.16.840.1.113762.1.4.1146.53_20220602','2.16.840.1.113762.1.4.1146.53_A56.01');
-INSERT INTO valueset_to_concept VALUES('5183','2.16.840.1.113762.1.4.1146.51_20181031','2.16.840.1.113762.1.4.1146.51_14166007');
-INSERT INTO valueset_to_concept VALUES('5184','2.16.840.1.113762.1.4.1146.51_20181031','2.16.840.1.113762.1.4.1146.51_268939001');
-INSERT INTO valueset_to_concept VALUES('5185','2.16.840.1.113762.1.4.1146.51_20181031','2.16.840.1.113762.1.4.1146.51_271667004');
-INSERT INTO valueset_to_concept VALUES('5186','2.16.840.1.113762.1.4.1146.1050_20240123','2.16.840.1.113762.1.4.1146.1050_1156764005');
-INSERT INTO valueset_to_concept VALUES('5187','2.16.840.1.113762.1.4.1146.1050_20240123','2.16.840.1.113762.1.4.1146.1050_1176991004');
-INSERT INTO valueset_to_concept VALUES('5188','2.16.840.1.113762.1.4.1146.1050_20240123','2.16.840.1.113762.1.4.1146.1050_1186798007');
-INSERT INTO valueset_to_concept VALUES('5189','2.16.840.1.113762.1.4.1146.1050_20240123','2.16.840.1.113762.1.4.1146.1050_1186836002');
-INSERT INTO valueset_to_concept VALUES('5190','2.16.840.1.113762.1.4.1146.1050_20240123','2.16.840.1.113762.1.4.1146.1050_1260379008');
-INSERT INTO valueset_to_concept VALUES('5191','2.16.840.1.113762.1.4.1146.1050_20240123','2.16.840.1.113762.1.4.1146.1050_1260381005');
-INSERT INTO valueset_to_concept VALUES('5192','2.16.840.1.113762.1.4.1146.1050_20240123','2.16.840.1.113762.1.4.1146.1050_15782007');
-INSERT INTO valueset_to_concept VALUES('5193','2.16.840.1.113762.1.4.1146.1050_20240123','2.16.840.1.113762.1.4.1146.1050_19972008');
-INSERT INTO valueset_to_concept VALUES('5194','2.16.840.1.113762.1.4.1146.1050_20240123','2.16.840.1.113762.1.4.1146.1050_230292008');
-INSERT INTO valueset_to_concept VALUES('5195','2.16.840.1.113762.1.4.1146.1050_20240123','2.16.840.1.113762.1.4.1146.1050_230293003');
-INSERT INTO valueset_to_concept VALUES('5196','2.16.840.1.113762.1.4.1146.1050_20240123','2.16.840.1.113762.1.4.1146.1050_230294009');
-INSERT INTO valueset_to_concept VALUES('5197','2.16.840.1.113762.1.4.1146.1050_20240123','2.16.840.1.113762.1.4.1146.1050_230295005');
-INSERT INTO valueset_to_concept VALUES('5198','2.16.840.1.113762.1.4.1146.1050_20240123','2.16.840.1.113762.1.4.1146.1050_230296006');
-INSERT INTO valueset_to_concept VALUES('5199','2.16.840.1.113762.1.4.1146.1050_20240123','2.16.840.1.113762.1.4.1146.1050_265377002');
-INSERT INTO valueset_to_concept VALUES('5200','2.16.840.1.113762.1.4.1146.1050_20240123','2.16.840.1.113762.1.4.1146.1050_32798002');
-INSERT INTO valueset_to_concept VALUES('5201','2.16.840.1.113762.1.4.1146.1050_20240123','2.16.840.1.113762.1.4.1146.1050_4223005');
-INSERT INTO valueset_to_concept VALUES('5202','2.16.840.1.113762.1.4.1146.1050_20240123','2.16.840.1.113762.1.4.1146.1050_698279003');
-INSERT INTO valueset_to_concept VALUES('5203','2.16.840.1.113762.1.4.1146.1050_20240123','2.16.840.1.113762.1.4.1146.1050_702323008');
-INSERT INTO valueset_to_concept VALUES('5204','2.16.840.1.113762.1.4.1146.1050_20240123','2.16.840.1.113762.1.4.1146.1050_715737004');
-INSERT INTO valueset_to_concept VALUES('5205','2.16.840.1.113762.1.4.1146.1050_20240123','2.16.840.1.113762.1.4.1146.1050_720466001');
-INSERT INTO valueset_to_concept VALUES('5206','2.16.840.1.113762.1.4.1146.1050_20240123','2.16.840.1.113762.1.4.1146.1050_722556003');
-INSERT INTO valueset_to_concept VALUES('5207','2.16.840.1.113762.1.4.1146.1050_20240123','2.16.840.1.113762.1.4.1146.1050_722558002');
-INSERT INTO valueset_to_concept VALUES('5208','2.16.840.1.113762.1.4.1146.1050_20240123','2.16.840.1.113762.1.4.1146.1050_722599008');
-INSERT INTO valueset_to_concept VALUES('5209','2.16.840.1.113762.1.4.1146.1050_20240123','2.16.840.1.113762.1.4.1146.1050_722763000');
-INSERT INTO valueset_to_concept VALUES('5210','2.16.840.1.113762.1.4.1146.1050_20240123','2.16.840.1.113762.1.4.1146.1050_722964001');
-INSERT INTO valueset_to_concept VALUES('5211','2.16.840.1.113762.1.4.1146.1050_20240123','2.16.840.1.113762.1.4.1146.1050_722965000');
-INSERT INTO valueset_to_concept VALUES('5212','2.16.840.1.113762.1.4.1146.1050_20240123','2.16.840.1.113762.1.4.1146.1050_724546003');
-INSERT INTO valueset_to_concept VALUES('5213','2.16.840.1.113762.1.4.1146.1050_20240123','2.16.840.1.113762.1.4.1146.1050_724762006');
-INSERT INTO valueset_to_concept VALUES('5214','2.16.840.1.113762.1.4.1146.1050_20240123','2.16.840.1.113762.1.4.1146.1050_724763001');
-INSERT INTO valueset_to_concept VALUES('5215','2.16.840.1.113762.1.4.1146.1050_20240123','2.16.840.1.113762.1.4.1146.1050_724823008');
-INSERT INTO valueset_to_concept VALUES('5216','2.16.840.1.113762.1.4.1146.1050_20240123','2.16.840.1.113762.1.4.1146.1050_72585000');
-INSERT INTO valueset_to_concept VALUES('5217','2.16.840.1.113762.1.4.1146.1050_20240123','2.16.840.1.113762.1.4.1146.1050_72820004');
-INSERT INTO valueset_to_concept VALUES('5218','2.16.840.1.113762.1.4.1146.1050_20240123','2.16.840.1.113762.1.4.1146.1050_737582007');
-INSERT INTO valueset_to_concept VALUES('5219','2.16.840.1.113762.1.4.1146.1050_20240123','2.16.840.1.113762.1.4.1146.1050_766872002');
-INSERT INTO valueset_to_concept VALUES('5220','2.16.840.1.113762.1.4.1146.1050_20240123','2.16.840.1.113762.1.4.1146.1050_770757004');
-INSERT INTO valueset_to_concept VALUES('5221','2.16.840.1.113762.1.4.1146.1050_20240123','2.16.840.1.113762.1.4.1146.1050_783012006');
-INSERT INTO valueset_to_concept VALUES('5222','2.16.840.1.113762.1.4.1146.1050_20240123','2.16.840.1.113762.1.4.1146.1050_788911004');
-INSERT INTO valueset_to_concept VALUES('5223','2.16.840.1.113762.1.4.1146.1050_20240123','2.16.840.1.113762.1.4.1146.1050_870288002');
-INSERT INTO valueset_to_concept VALUES('5224','2.16.840.1.113762.1.4.1146.1050_20240123','2.16.840.1.113762.1.4.1146.1050_870295006');
-INSERT INTO valueset_to_concept VALUES('5225','2.16.840.1.113762.1.4.1146.1050_20240123','2.16.840.1.113762.1.4.1146.1050_1176989007');
-INSERT INTO valueset_to_concept VALUES('5226','2.16.840.1.113762.1.4.1146.1050_20240123','2.16.840.1.113762.1.4.1146.1050_722557007');
-INSERT INTO valueset_to_concept VALUES('5227','2.16.840.1.113762.1.4.1146.1050_20240123','2.16.840.1.113762.1.4.1146.1050_38523005');
-INSERT INTO valueset_to_concept VALUES('5228','2.16.840.1.113762.1.4.1146.2140_20230122','2.16.840.1.113762.1.4.1146.2140_1003938005');
-INSERT INTO valueset_to_concept VALUES('5229','2.16.840.1.113762.1.4.1146.2140_20230122','2.16.840.1.113762.1.4.1146.2140_190687004');
-INSERT INTO valueset_to_concept VALUES('5230','2.16.840.1.113762.1.4.1146.2140_20230122','2.16.840.1.113762.1.4.1146.2140_297225000');
-INSERT INTO valueset_to_concept VALUES('5231','2.16.840.1.113762.1.4.1146.2140_20230122','2.16.840.1.113762.1.4.1146.2140_40751003');
-INSERT INTO valueset_to_concept VALUES('5232','2.16.840.1.113762.1.4.1146.2140_20230122','2.16.840.1.113762.1.4.1146.2140_440009');
-INSERT INTO valueset_to_concept VALUES('5233','2.16.840.1.113762.1.4.1146.2140_20230122','2.16.840.1.113762.1.4.1146.2140_60590005');
-INSERT INTO valueset_to_concept VALUES('5234','2.16.840.1.113762.1.4.1146.2140_20230122','2.16.840.1.113762.1.4.1146.2140_7573000');
-INSERT INTO valueset_to_concept VALUES('5235','2.16.840.1.113762.1.4.1146.2140_20230122','2.16.840.1.113762.1.4.1146.2140_890435004');
-INSERT INTO valueset_to_concept VALUES('5236','2.16.840.1.113762.1.4.1146.2140_20230122','2.16.840.1.113762.1.4.1146.2140_890436003');
-INSERT INTO valueset_to_concept VALUES('5237','2.16.840.1.113762.1.4.1146.1291_20210120','2.16.840.1.113762.1.4.1146.1291_A24.1');
-INSERT INTO valueset_to_concept VALUES('5238','2.16.840.1.113762.1.4.1146.1291_20210120','2.16.840.1.113762.1.4.1146.1291_A24.3');
-INSERT INTO valueset_to_concept VALUES('5239','2.16.840.1.113762.1.4.1146.1291_20210120','2.16.840.1.113762.1.4.1146.1291_A24.9');
-INSERT INTO valueset_to_concept VALUES('5240','2.16.840.1.113762.1.4.1146.2141_20230122','2.16.840.1.113762.1.4.1146.2141_E70.0');
-INSERT INTO valueset_to_concept VALUES('5241','2.16.840.1.113762.1.4.1146.1051_20190608','2.16.840.1.113762.1.4.1146.1051_G90.3');
-INSERT INTO valueset_to_concept VALUES('5242','2.16.840.1.113762.1.4.1146.130_20240123','2.16.840.1.113762.1.4.1146.130_10624911000119107');
-INSERT INTO valueset_to_concept VALUES('5243','2.16.840.1.113762.1.4.1146.130_20240123','2.16.840.1.113762.1.4.1146.130_10624951000119108');
-INSERT INTO valueset_to_concept VALUES('5244','2.16.840.1.113762.1.4.1146.130_20240123','2.16.840.1.113762.1.4.1146.130_10628871000119101');
-INSERT INTO valueset_to_concept VALUES('5245','2.16.840.1.113762.1.4.1146.130_20240123','2.16.840.1.113762.1.4.1146.130_10628911000119103');
-INSERT INTO valueset_to_concept VALUES('5246','2.16.840.1.113762.1.4.1146.130_20240123','2.16.840.1.113762.1.4.1146.130_10629191000119100');
-INSERT INTO valueset_to_concept VALUES('5247','2.16.840.1.113762.1.4.1146.130_20240123','2.16.840.1.113762.1.4.1146.130_10629351000119108');
-INSERT INTO valueset_to_concept VALUES('5248','2.16.840.1.113762.1.4.1146.130_20240123','2.16.840.1.113762.1.4.1146.130_10674911000119108');
-INSERT INTO valueset_to_concept VALUES('5249','2.16.840.1.113762.1.4.1146.130_20240123','2.16.840.1.113762.1.4.1146.130_10677711000119101');
-INSERT INTO valueset_to_concept VALUES('5250','2.16.840.1.113762.1.4.1146.130_20240123','2.16.840.1.113762.1.4.1146.130_10685111000119102');
-INSERT INTO valueset_to_concept VALUES('5251','2.16.840.1.113762.1.4.1146.130_20240123','2.16.840.1.113762.1.4.1146.130_142921000119103');
-INSERT INTO valueset_to_concept VALUES('5252','2.16.840.1.113762.1.4.1146.130_20240123','2.16.840.1.113762.1.4.1146.130_142931000119100');
-INSERT INTO valueset_to_concept VALUES('5253','2.16.840.1.113762.1.4.1146.130_20240123','2.16.840.1.113762.1.4.1146.130_142941000119109');
-INSERT INTO valueset_to_concept VALUES('5254','2.16.840.1.113762.1.4.1146.130_20240123','2.16.840.1.113762.1.4.1146.130_142951000119106');
-INSERT INTO valueset_to_concept VALUES('5255','2.16.840.1.113762.1.4.1146.130_20240123','2.16.840.1.113762.1.4.1146.130_142961000119108');
-INSERT INTO valueset_to_concept VALUES('5256','2.16.840.1.113762.1.4.1146.130_20240123','2.16.840.1.113762.1.4.1146.130_142971000119102');
-INSERT INTO valueset_to_concept VALUES('5257','2.16.840.1.113762.1.4.1146.130_20240123','2.16.840.1.113762.1.4.1146.130_142981000119104');
-INSERT INTO valueset_to_concept VALUES('5258','2.16.840.1.113762.1.4.1146.130_20240123','2.16.840.1.113762.1.4.1146.130_142991000119101');
-INSERT INTO valueset_to_concept VALUES('5259','2.16.840.1.113762.1.4.1146.130_20240123','2.16.840.1.113762.1.4.1146.130_143001000119100');
-INSERT INTO valueset_to_concept VALUES('5260','2.16.840.1.113762.1.4.1146.130_20240123','2.16.840.1.113762.1.4.1146.130_143111000119103');
-INSERT INTO valueset_to_concept VALUES('5261','2.16.840.1.113762.1.4.1146.130_20240123','2.16.840.1.113762.1.4.1146.130_16311000119108');
-INSERT INTO valueset_to_concept VALUES('5262','2.16.840.1.113762.1.4.1146.130_20240123','2.16.840.1.113762.1.4.1146.130_194946005');
-INSERT INTO valueset_to_concept VALUES('5263','2.16.840.1.113762.1.4.1146.130_20240123','2.16.840.1.113762.1.4.1146.130_195878008');
-INSERT INTO valueset_to_concept VALUES('5264','2.16.840.1.113762.1.4.1146.130_20240123','2.16.840.1.113762.1.4.1146.130_195923003');
-INSERT INTO valueset_to_concept VALUES('5265','2.16.840.1.113762.1.4.1146.130_20240123','2.16.840.1.113762.1.4.1146.130_195924009');
-INSERT INTO valueset_to_concept VALUES('5266','2.16.840.1.113762.1.4.1146.130_20240123','2.16.840.1.113762.1.4.1146.130_195929004');
-INSERT INTO valueset_to_concept VALUES('5267','2.16.840.1.113762.1.4.1146.130_20240123','2.16.840.1.113762.1.4.1146.130_24662006');
-INSERT INTO valueset_to_concept VALUES('5268','2.16.840.1.113762.1.4.1146.130_20240123','2.16.840.1.113762.1.4.1146.130_328531000119104');
-INSERT INTO valueset_to_concept VALUES('5269','2.16.840.1.113762.1.4.1146.130_20240123','2.16.840.1.113762.1.4.1146.130_408687004');
-INSERT INTO valueset_to_concept VALUES('5270','2.16.840.1.113762.1.4.1146.130_20240123','2.16.840.1.113762.1.4.1146.130_41269000');
-INSERT INTO valueset_to_concept VALUES('5271','2.16.840.1.113762.1.4.1146.130_20240123','2.16.840.1.113762.1.4.1146.130_421539000');
-INSERT INTO valueset_to_concept VALUES('5272','2.16.840.1.113762.1.4.1146.130_20240123','2.16.840.1.113762.1.4.1146.130_434921000124108');
-INSERT INTO valueset_to_concept VALUES('5273','2.16.840.1.113762.1.4.1146.130_20240123','2.16.840.1.113762.1.4.1146.130_434931000124106');
-INSERT INTO valueset_to_concept VALUES('5274','2.16.840.1.113762.1.4.1146.130_20240123','2.16.840.1.113762.1.4.1146.130_435051000124104');
-INSERT INTO valueset_to_concept VALUES('5275','2.16.840.1.113762.1.4.1146.130_20240123','2.16.840.1.113762.1.4.1146.130_43692000');
-INSERT INTO valueset_to_concept VALUES('5276','2.16.840.1.113762.1.4.1146.130_20240123','2.16.840.1.113762.1.4.1146.130_442438000');
-INSERT INTO valueset_to_concept VALUES('5277','2.16.840.1.113762.1.4.1146.130_20240123','2.16.840.1.113762.1.4.1146.130_442696006');
-INSERT INTO valueset_to_concept VALUES('5278','2.16.840.1.113762.1.4.1146.130_20240123','2.16.840.1.113762.1.4.1146.130_55604004');
-INSERT INTO valueset_to_concept VALUES('5279','2.16.840.1.113762.1.4.1146.130_20240123','2.16.840.1.113762.1.4.1146.130_6142004');
-INSERT INTO valueset_to_concept VALUES('5280','2.16.840.1.113762.1.4.1146.130_20240123','2.16.840.1.113762.1.4.1146.130_61700007');
-INSERT INTO valueset_to_concept VALUES('5281','2.16.840.1.113762.1.4.1146.130_20240123','2.16.840.1.113762.1.4.1146.130_661761000124109');
-INSERT INTO valueset_to_concept VALUES('5282','2.16.840.1.113762.1.4.1146.130_20240123','2.16.840.1.113762.1.4.1146.130_711128004');
-INSERT INTO valueset_to_concept VALUES('5283','2.16.840.1.113762.1.4.1146.130_20240123','2.16.840.1.113762.1.4.1146.130_719590007');
-INSERT INTO valueset_to_concept VALUES('5284','2.16.840.1.113762.1.4.1146.130_20240123','2.16.840.1.113762.1.4.1146.130_719865001');
-INSERT INTO valueset_to_concept VALUES('5285','2.16.840.1.113762.1.4.1146.130_20240123','2.16.840.1.113762.1.4.1146.130_738276008');
-INSERT INTO valueset_to_concept VALUES('5286','2.16.840.1.113762.1.4.1146.130_20240123','2.16.840.1.113762.1.4.1146.130_74644004');
-INSERT INTO valueset_to_concept VALUES('5287','2.16.840.1.113762.1.4.1146.130_20240123','2.16.840.1.113762.1.4.1146.130_772810003');
-INSERT INTO valueset_to_concept VALUES('5288','2.16.840.1.113762.1.4.1146.130_20240123','2.16.840.1.113762.1.4.1146.130_772839003');
-INSERT INTO valueset_to_concept VALUES('5289','2.16.840.1.113762.1.4.1146.130_20240123','2.16.840.1.113762.1.4.1146.130_78046005');
-INSERT INTO valueset_to_concept VALUES('5290','2.16.840.1.113762.1.4.1146.130_20240123','2.16.840.1.113762.1.4.1146.130_81524006');
-INSERT INTO valueset_to_concept VALUES('5291','2.16.840.1.113762.1.4.1146.130_20240123','2.16.840.1.113762.1.4.1146.130_866126000');
-INSERT INTO valueset_to_concept VALUES('5292','2.16.840.1.113762.1.4.1146.130_20240123','2.16.840.1.113762.1.4.1146.130_1149091008');
-INSERT INTO valueset_to_concept VALUES('5293','2.16.840.1.113762.1.4.1146.130_20240123','2.16.840.1.113762.1.4.1146.130_427873006');
-INSERT INTO valueset_to_concept VALUES('5294','2.16.840.1.113762.1.4.1146.130_20240123','2.16.840.1.113762.1.4.1146.130_450715004');
-INSERT INTO valueset_to_concept VALUES('5295','2.16.840.1.113762.1.4.1146.130_20240123','2.16.840.1.113762.1.4.1146.130_450716003');
-INSERT INTO valueset_to_concept VALUES('5296','2.16.840.1.113762.1.4.1146.130_20240123','2.16.840.1.113762.1.4.1146.130_541131000124102');
-INSERT INTO valueset_to_concept VALUES('5297','2.16.840.1.113762.1.4.1146.130_20240123','2.16.840.1.113762.1.4.1146.130_707448003');
-INSERT INTO valueset_to_concept VALUES('5298','2.16.840.1.113762.1.4.1146.130_20240123','2.16.840.1.113762.1.4.1146.130_713083002');
-INSERT INTO valueset_to_concept VALUES('5299','2.16.840.1.113762.1.4.1146.130_20240123','2.16.840.1.113762.1.4.1146.130_772828001');
-INSERT INTO valueset_to_concept VALUES('5300','2.16.840.1.113762.1.4.1146.130_20240123','2.16.840.1.113762.1.4.1146.130_309789002');
-INSERT INTO valueset_to_concept VALUES('5301','2.16.840.1.113762.1.4.1146.2260_20240123','2.16.840.1.113762.1.4.1146.2260_P96.1');
-INSERT INTO valueset_to_concept VALUES('5302','2.16.840.1.113762.1.4.1146.251_20181031','2.16.840.1.113762.1.4.1146.251_19265001');
-INSERT INTO valueset_to_concept VALUES('5303','2.16.840.1.113762.1.4.1146.251_20181031','2.16.840.1.113762.1.4.1146.251_21857006');
-INSERT INTO valueset_to_concept VALUES('5304','2.16.840.1.113762.1.4.1146.251_20181031','2.16.840.1.113762.1.4.1146.251_37722001');
-INSERT INTO valueset_to_concept VALUES('5305','2.16.840.1.113762.1.4.1146.251_20181031','2.16.840.1.113762.1.4.1146.251_398554008');
-INSERT INTO valueset_to_concept VALUES('5306','2.16.840.1.113762.1.4.1146.251_20181031','2.16.840.1.113762.1.4.1146.251_398575000');
-INSERT INTO valueset_to_concept VALUES('5307','2.16.840.1.113762.1.4.1146.251_20181031','2.16.840.1.113762.1.4.1146.251_45556008');
-INSERT INTO valueset_to_concept VALUES('5308','2.16.840.1.113762.1.4.1146.251_20181031','2.16.840.1.113762.1.4.1146.251_73363000');
-INSERT INTO valueset_to_concept VALUES('5309','2.16.840.1.113762.1.4.1146.131_20181031','2.16.840.1.113762.1.4.1146.131_B16');
-INSERT INTO valueset_to_concept VALUES('5310','2.16.840.1.113762.1.4.1146.131_20181031','2.16.840.1.113762.1.4.1146.131_B16.2');
-INSERT INTO valueset_to_concept VALUES('5311','2.16.840.1.113762.1.4.1146.131_20181031','2.16.840.1.113762.1.4.1146.131_B16.9');
-INSERT INTO valueset_to_concept VALUES('5312','2.16.840.1.113762.1.4.1146.131_20181031','2.16.840.1.113762.1.4.1146.131_B16.0');
-INSERT INTO valueset_to_concept VALUES('5313','2.16.840.1.113762.1.4.1146.131_20181031','2.16.840.1.113762.1.4.1146.131_B16.1');
-INSERT INTO valueset_to_concept VALUES('5314','2.16.840.1.113762.1.4.1146.252_20220603','2.16.840.1.113762.1.4.1146.252_A21.0');
-INSERT INTO valueset_to_concept VALUES('5315','2.16.840.1.113762.1.4.1146.252_20220603','2.16.840.1.113762.1.4.1146.252_A21.1');
-INSERT INTO valueset_to_concept VALUES('5316','2.16.840.1.113762.1.4.1146.252_20220603','2.16.840.1.113762.1.4.1146.252_A21.2');
-INSERT INTO valueset_to_concept VALUES('5317','2.16.840.1.113762.1.4.1146.252_20220603','2.16.840.1.113762.1.4.1146.252_A21.3');
-INSERT INTO valueset_to_concept VALUES('5318','2.16.840.1.113762.1.4.1146.252_20220603','2.16.840.1.113762.1.4.1146.252_A21.7');
-INSERT INTO valueset_to_concept VALUES('5319','2.16.840.1.113762.1.4.1146.252_20220603','2.16.840.1.113762.1.4.1146.252_A21.8');
-INSERT INTO valueset_to_concept VALUES('5320','2.16.840.1.113762.1.4.1146.252_20220603','2.16.840.1.113762.1.4.1146.252_A21.9');
-INSERT INTO valueset_to_concept VALUES('5321','2.16.840.1.113762.1.4.1146.133_20220603','2.16.840.1.113762.1.4.1146.133_J10.00');
-INSERT INTO valueset_to_concept VALUES('5322','2.16.840.1.113762.1.4.1146.133_20220603','2.16.840.1.113762.1.4.1146.133_J10.01');
-INSERT INTO valueset_to_concept VALUES('5323','2.16.840.1.113762.1.4.1146.133_20220603','2.16.840.1.113762.1.4.1146.133_J10.08');
-INSERT INTO valueset_to_concept VALUES('5324','2.16.840.1.113762.1.4.1146.133_20220603','2.16.840.1.113762.1.4.1146.133_J10.1');
-INSERT INTO valueset_to_concept VALUES('5325','2.16.840.1.113762.1.4.1146.133_20220603','2.16.840.1.113762.1.4.1146.133_J10.2');
-INSERT INTO valueset_to_concept VALUES('5326','2.16.840.1.113762.1.4.1146.133_20220603','2.16.840.1.113762.1.4.1146.133_J10.81');
-INSERT INTO valueset_to_concept VALUES('5327','2.16.840.1.113762.1.4.1146.133_20220603','2.16.840.1.113762.1.4.1146.133_J10.82');
-INSERT INTO valueset_to_concept VALUES('5328','2.16.840.1.113762.1.4.1146.133_20220603','2.16.840.1.113762.1.4.1146.133_J10.83');
-INSERT INTO valueset_to_concept VALUES('5329','2.16.840.1.113762.1.4.1146.133_20220603','2.16.840.1.113762.1.4.1146.133_J10.89');
-INSERT INTO valueset_to_concept VALUES('5330','2.16.840.1.113762.1.4.1146.133_20220603','2.16.840.1.113762.1.4.1146.133_J11.00');
-INSERT INTO valueset_to_concept VALUES('5331','2.16.840.1.113762.1.4.1146.133_20220603','2.16.840.1.113762.1.4.1146.133_J11.08');
-INSERT INTO valueset_to_concept VALUES('5332','2.16.840.1.113762.1.4.1146.133_20220603','2.16.840.1.113762.1.4.1146.133_J11.1');
-INSERT INTO valueset_to_concept VALUES('5333','2.16.840.1.113762.1.4.1146.133_20220603','2.16.840.1.113762.1.4.1146.133_J11.2');
-INSERT INTO valueset_to_concept VALUES('5334','2.16.840.1.113762.1.4.1146.133_20220603','2.16.840.1.113762.1.4.1146.133_J11.81');
-INSERT INTO valueset_to_concept VALUES('5335','2.16.840.1.113762.1.4.1146.133_20220603','2.16.840.1.113762.1.4.1146.133_J11.82');
-INSERT INTO valueset_to_concept VALUES('5336','2.16.840.1.113762.1.4.1146.133_20220603','2.16.840.1.113762.1.4.1146.133_J11.83');
-INSERT INTO valueset_to_concept VALUES('5337','2.16.840.1.113762.1.4.1146.133_20220603','2.16.840.1.113762.1.4.1146.133_J11.89');
-INSERT INTO valueset_to_concept VALUES('5338','2.16.840.1.113762.1.4.1146.133_20220603','2.16.840.1.113762.1.4.1146.133_J09.X1');
-INSERT INTO valueset_to_concept VALUES('5339','2.16.840.1.113762.1.4.1146.133_20220603','2.16.840.1.113762.1.4.1146.133_J09.X2');
-INSERT INTO valueset_to_concept VALUES('5340','2.16.840.1.113762.1.4.1146.133_20220603','2.16.840.1.113762.1.4.1146.133_J09.X3');
-INSERT INTO valueset_to_concept VALUES('5341','2.16.840.1.113762.1.4.1146.133_20220603','2.16.840.1.113762.1.4.1146.133_J09.X9');
-INSERT INTO valueset_to_concept VALUES('5342','2.16.840.1.113762.1.4.1146.135_20240620','2.16.840.1.113762.1.4.1146.135_103611000119102');
-INSERT INTO valueset_to_concept VALUES('5343','2.16.840.1.113762.1.4.1146.135_20240620','2.16.840.1.113762.1.4.1146.135_1116000');
-INSERT INTO valueset_to_concept VALUES('5344','2.16.840.1.113762.1.4.1146.135_20240620','2.16.840.1.113762.1.4.1146.135_16859701000119109');
-INSERT INTO valueset_to_concept VALUES('5345','2.16.840.1.113762.1.4.1146.135_20240620','2.16.840.1.113762.1.4.1146.135_186639003');
-INSERT INTO valueset_to_concept VALUES('5346','2.16.840.1.113762.1.4.1146.135_20240620','2.16.840.1.113762.1.4.1146.135_235871004');
-INSERT INTO valueset_to_concept VALUES('5347','2.16.840.1.113762.1.4.1146.135_20240620','2.16.840.1.113762.1.4.1146.135_38662009');
-INSERT INTO valueset_to_concept VALUES('5348','2.16.840.1.113762.1.4.1146.135_20240620','2.16.840.1.113762.1.4.1146.135_424340000');
-INSERT INTO valueset_to_concept VALUES('5349','2.16.840.1.113762.1.4.1146.135_20240620','2.16.840.1.113762.1.4.1146.135_446698005');
-INSERT INTO valueset_to_concept VALUES('5350','2.16.840.1.113762.1.4.1146.135_20240620','2.16.840.1.113762.1.4.1146.135_50167007');
-INSERT INTO valueset_to_concept VALUES('5351','2.16.840.1.113762.1.4.1146.135_20240620','2.16.840.1.113762.1.4.1146.135_61977001');
-INSERT INTO valueset_to_concept VALUES('5352','2.16.840.1.113762.1.4.1146.135_20240620','2.16.840.1.113762.1.4.1146.135_713966008');
-INSERT INTO valueset_to_concept VALUES('5353','2.16.840.1.113762.1.4.1146.135_20240620','2.16.840.1.113762.1.4.1146.135_153091000119109');
-INSERT INTO valueset_to_concept VALUES('5354','2.16.840.1.113762.1.4.1146.135_20240620','2.16.840.1.113762.1.4.1146.135_235865005');
-INSERT INTO valueset_to_concept VALUES('5355','2.16.840.1.113762.1.4.1146.135_20240620','2.16.840.1.113762.1.4.1146.135_235869004');
-INSERT INTO valueset_to_concept VALUES('5356','2.16.840.1.113762.1.4.1146.135_20240620','2.16.840.1.113762.1.4.1146.135_838380002');
-INSERT INTO valueset_to_concept VALUES('5357','2.16.840.1.113762.1.4.1146.2027_20230125','2.16.840.1.113762.1.4.1146.2027_186825001');
-INSERT INTO valueset_to_concept VALUES('5358','2.16.840.1.113762.1.4.1146.2027_20230125','2.16.840.1.113762.1.4.1146.2027_186826000');
-INSERT INTO valueset_to_concept VALUES('5359','2.16.840.1.113762.1.4.1146.2027_20230125','2.16.840.1.113762.1.4.1146.2027_240452007');
-INSERT INTO valueset_to_concept VALUES('5360','2.16.840.1.113762.1.4.1146.2027_20230125','2.16.840.1.113762.1.4.1146.2027_240456005');
-INSERT INTO valueset_to_concept VALUES('5361','2.16.840.1.113762.1.4.1146.2027_20230125','2.16.840.1.113762.1.4.1146.2027_240457001');
-INSERT INTO valueset_to_concept VALUES('5362','2.16.840.1.113762.1.4.1146.2027_20230125','2.16.840.1.113762.1.4.1146.2027_240458006');
-INSERT INTO valueset_to_concept VALUES('5363','2.16.840.1.113762.1.4.1146.2027_20230125','2.16.840.1.113762.1.4.1146.2027_240624008');
-INSERT INTO valueset_to_concept VALUES('5364','2.16.840.1.113762.1.4.1146.2027_20230125','2.16.840.1.113762.1.4.1146.2027_266123003');
-INSERT INTO valueset_to_concept VALUES('5365','2.16.840.1.113762.1.4.1146.2027_20230125','2.16.840.1.113762.1.4.1146.2027_416205001');
-INSERT INTO valueset_to_concept VALUES('5366','2.16.840.1.113762.1.4.1146.2027_20230125','2.16.840.1.113762.1.4.1146.2027_715065007');
-INSERT INTO valueset_to_concept VALUES('5367','2.16.840.1.113762.1.4.1146.2027_20230125','2.16.840.1.113762.1.4.1146.2027_76366001');
-INSERT INTO valueset_to_concept VALUES('5368','2.16.840.1.113762.1.4.1146.2027_20230125','2.16.840.1.113762.1.4.1146.2027_1141788003');
-INSERT INTO valueset_to_concept VALUES('5369','2.16.840.1.113762.1.4.1146.2027_20230125','2.16.840.1.113762.1.4.1146.2027_240453002');
-INSERT INTO valueset_to_concept VALUES('5370','2.16.840.1.113762.1.4.1146.2027_20230125','2.16.840.1.113762.1.4.1146.2027_240455009');
-INSERT INTO valueset_to_concept VALUES('5371','2.16.840.1.113762.1.4.1146.2027_20230125','2.16.840.1.113762.1.4.1146.2027_262461007');
-INSERT INTO valueset_to_concept VALUES('5372','2.16.840.1.113762.1.4.1146.2027_20230125','2.16.840.1.113762.1.4.1146.2027_82214002');
-INSERT INTO valueset_to_concept VALUES('5373','2.16.840.1.113762.1.4.1146.2027_20230125','2.16.840.1.113762.1.4.1146.2027_1141789006');
-INSERT INTO valueset_to_concept VALUES('5374','2.16.840.1.113762.1.4.1146.2027_20230125','2.16.840.1.113762.1.4.1146.2027_410472006');
-INSERT INTO valueset_to_concept VALUES('5375','2.16.840.1.113762.1.4.1146.2027_20230125','2.16.840.1.113762.1.4.1146.2027_79974007');
-INSERT INTO valueset_to_concept VALUES('5376','2.16.840.1.113762.1.4.1146.2148_20230122','2.16.840.1.113762.1.4.1146.2148_Q71.00');
-INSERT INTO valueset_to_concept VALUES('5377','2.16.840.1.113762.1.4.1146.2148_20230122','2.16.840.1.113762.1.4.1146.2148_Q71.01');
-INSERT INTO valueset_to_concept VALUES('5378','2.16.840.1.113762.1.4.1146.2148_20230122','2.16.840.1.113762.1.4.1146.2148_Q71.02');
-INSERT INTO valueset_to_concept VALUES('5379','2.16.840.1.113762.1.4.1146.2148_20230122','2.16.840.1.113762.1.4.1146.2148_Q71.03');
-INSERT INTO valueset_to_concept VALUES('5380','2.16.840.1.113762.1.4.1146.2148_20230122','2.16.840.1.113762.1.4.1146.2148_Q71.10');
-INSERT INTO valueset_to_concept VALUES('5381','2.16.840.1.113762.1.4.1146.2148_20230122','2.16.840.1.113762.1.4.1146.2148_Q71.11');
-INSERT INTO valueset_to_concept VALUES('5382','2.16.840.1.113762.1.4.1146.2148_20230122','2.16.840.1.113762.1.4.1146.2148_Q71.12');
-INSERT INTO valueset_to_concept VALUES('5383','2.16.840.1.113762.1.4.1146.2148_20230122','2.16.840.1.113762.1.4.1146.2148_Q71.13');
-INSERT INTO valueset_to_concept VALUES('5384','2.16.840.1.113762.1.4.1146.2148_20230122','2.16.840.1.113762.1.4.1146.2148_Q71.20');
-INSERT INTO valueset_to_concept VALUES('5385','2.16.840.1.113762.1.4.1146.2148_20230122','2.16.840.1.113762.1.4.1146.2148_Q71.21');
-INSERT INTO valueset_to_concept VALUES('5386','2.16.840.1.113762.1.4.1146.2148_20230122','2.16.840.1.113762.1.4.1146.2148_Q71.22');
-INSERT INTO valueset_to_concept VALUES('5387','2.16.840.1.113762.1.4.1146.2148_20230122','2.16.840.1.113762.1.4.1146.2148_Q71.23');
-INSERT INTO valueset_to_concept VALUES('5388','2.16.840.1.113762.1.4.1146.2148_20230122','2.16.840.1.113762.1.4.1146.2148_Q71.30');
-INSERT INTO valueset_to_concept VALUES('5389','2.16.840.1.113762.1.4.1146.2148_20230122','2.16.840.1.113762.1.4.1146.2148_Q71.31');
-INSERT INTO valueset_to_concept VALUES('5390','2.16.840.1.113762.1.4.1146.2148_20230122','2.16.840.1.113762.1.4.1146.2148_Q71.32');
-INSERT INTO valueset_to_concept VALUES('5391','2.16.840.1.113762.1.4.1146.2148_20230122','2.16.840.1.113762.1.4.1146.2148_Q71.33');
-INSERT INTO valueset_to_concept VALUES('5392','2.16.840.1.113762.1.4.1146.2148_20230122','2.16.840.1.113762.1.4.1146.2148_Q71.40');
-INSERT INTO valueset_to_concept VALUES('5393','2.16.840.1.113762.1.4.1146.2148_20230122','2.16.840.1.113762.1.4.1146.2148_Q71.41');
-INSERT INTO valueset_to_concept VALUES('5394','2.16.840.1.113762.1.4.1146.2148_20230122','2.16.840.1.113762.1.4.1146.2148_Q71.42');
-INSERT INTO valueset_to_concept VALUES('5395','2.16.840.1.113762.1.4.1146.2148_20230122','2.16.840.1.113762.1.4.1146.2148_Q71.43');
-INSERT INTO valueset_to_concept VALUES('5396','2.16.840.1.113762.1.4.1146.2148_20230122','2.16.840.1.113762.1.4.1146.2148_Q71.50');
-INSERT INTO valueset_to_concept VALUES('5397','2.16.840.1.113762.1.4.1146.2148_20230122','2.16.840.1.113762.1.4.1146.2148_Q71.51');
-INSERT INTO valueset_to_concept VALUES('5398','2.16.840.1.113762.1.4.1146.2148_20230122','2.16.840.1.113762.1.4.1146.2148_Q71.52');
-INSERT INTO valueset_to_concept VALUES('5399','2.16.840.1.113762.1.4.1146.2148_20230122','2.16.840.1.113762.1.4.1146.2148_Q71.53');
-INSERT INTO valueset_to_concept VALUES('5400','2.16.840.1.113762.1.4.1146.2148_20230122','2.16.840.1.113762.1.4.1146.2148_Q71.60');
-INSERT INTO valueset_to_concept VALUES('5401','2.16.840.1.113762.1.4.1146.2148_20230122','2.16.840.1.113762.1.4.1146.2148_Q71.61');
-INSERT INTO valueset_to_concept VALUES('5402','2.16.840.1.113762.1.4.1146.2148_20230122','2.16.840.1.113762.1.4.1146.2148_Q71.62');
-INSERT INTO valueset_to_concept VALUES('5403','2.16.840.1.113762.1.4.1146.2148_20230122','2.16.840.1.113762.1.4.1146.2148_Q71.63');
-INSERT INTO valueset_to_concept VALUES('5404','2.16.840.1.113762.1.4.1146.2148_20230122','2.16.840.1.113762.1.4.1146.2148_Q71.891');
-INSERT INTO valueset_to_concept VALUES('5405','2.16.840.1.113762.1.4.1146.2148_20230122','2.16.840.1.113762.1.4.1146.2148_Q71.892');
-INSERT INTO valueset_to_concept VALUES('5406','2.16.840.1.113762.1.4.1146.2148_20230122','2.16.840.1.113762.1.4.1146.2148_Q71.893');
-INSERT INTO valueset_to_concept VALUES('5407','2.16.840.1.113762.1.4.1146.2148_20230122','2.16.840.1.113762.1.4.1146.2148_Q71.899');
-INSERT INTO valueset_to_concept VALUES('5408','2.16.840.1.113762.1.4.1146.2148_20230122','2.16.840.1.113762.1.4.1146.2148_Q71.90');
-INSERT INTO valueset_to_concept VALUES('5409','2.16.840.1.113762.1.4.1146.2148_20230122','2.16.840.1.113762.1.4.1146.2148_Q71.91');
-INSERT INTO valueset_to_concept VALUES('5410','2.16.840.1.113762.1.4.1146.2148_20230122','2.16.840.1.113762.1.4.1146.2148_Q71.92');
-INSERT INTO valueset_to_concept VALUES('5411','2.16.840.1.113762.1.4.1146.2148_20230122','2.16.840.1.113762.1.4.1146.2148_Q71.93');
-INSERT INTO valueset_to_concept VALUES('5412','2.16.840.1.113762.1.4.1146.2148_20230122','2.16.840.1.113762.1.4.1146.2148_Q72.00');
-INSERT INTO valueset_to_concept VALUES('5413','2.16.840.1.113762.1.4.1146.2148_20230122','2.16.840.1.113762.1.4.1146.2148_Q72.01');
-INSERT INTO valueset_to_concept VALUES('5414','2.16.840.1.113762.1.4.1146.2148_20230122','2.16.840.1.113762.1.4.1146.2148_Q72.02');
-INSERT INTO valueset_to_concept VALUES('5415','2.16.840.1.113762.1.4.1146.2148_20230122','2.16.840.1.113762.1.4.1146.2148_Q72.03');
-INSERT INTO valueset_to_concept VALUES('5416','2.16.840.1.113762.1.4.1146.2148_20230122','2.16.840.1.113762.1.4.1146.2148_Q72.10');
-INSERT INTO valueset_to_concept VALUES('5417','2.16.840.1.113762.1.4.1146.2148_20230122','2.16.840.1.113762.1.4.1146.2148_Q72.11');
-INSERT INTO valueset_to_concept VALUES('5418','2.16.840.1.113762.1.4.1146.2148_20230122','2.16.840.1.113762.1.4.1146.2148_Q72.12');
-INSERT INTO valueset_to_concept VALUES('5419','2.16.840.1.113762.1.4.1146.2148_20230122','2.16.840.1.113762.1.4.1146.2148_Q72.13');
-INSERT INTO valueset_to_concept VALUES('5420','2.16.840.1.113762.1.4.1146.2148_20230122','2.16.840.1.113762.1.4.1146.2148_Q72.20');
-INSERT INTO valueset_to_concept VALUES('5421','2.16.840.1.113762.1.4.1146.2148_20230122','2.16.840.1.113762.1.4.1146.2148_Q72.21');
-INSERT INTO valueset_to_concept VALUES('5422','2.16.840.1.113762.1.4.1146.2148_20230122','2.16.840.1.113762.1.4.1146.2148_Q72.22');
-INSERT INTO valueset_to_concept VALUES('5423','2.16.840.1.113762.1.4.1146.2148_20230122','2.16.840.1.113762.1.4.1146.2148_Q72.23');
-INSERT INTO valueset_to_concept VALUES('5424','2.16.840.1.113762.1.4.1146.2148_20230122','2.16.840.1.113762.1.4.1146.2148_Q72.30');
-INSERT INTO valueset_to_concept VALUES('5425','2.16.840.1.113762.1.4.1146.2148_20230122','2.16.840.1.113762.1.4.1146.2148_Q72.31');
-INSERT INTO valueset_to_concept VALUES('5426','2.16.840.1.113762.1.4.1146.2148_20230122','2.16.840.1.113762.1.4.1146.2148_Q72.32');
-INSERT INTO valueset_to_concept VALUES('5427','2.16.840.1.113762.1.4.1146.2148_20230122','2.16.840.1.113762.1.4.1146.2148_Q72.33');
-INSERT INTO valueset_to_concept VALUES('5428','2.16.840.1.113762.1.4.1146.2148_20230122','2.16.840.1.113762.1.4.1146.2148_Q72.40');
-INSERT INTO valueset_to_concept VALUES('5429','2.16.840.1.113762.1.4.1146.2148_20230122','2.16.840.1.113762.1.4.1146.2148_Q72.41');
-INSERT INTO valueset_to_concept VALUES('5430','2.16.840.1.113762.1.4.1146.2148_20230122','2.16.840.1.113762.1.4.1146.2148_Q72.42');
-INSERT INTO valueset_to_concept VALUES('5431','2.16.840.1.113762.1.4.1146.2148_20230122','2.16.840.1.113762.1.4.1146.2148_Q72.43');
-INSERT INTO valueset_to_concept VALUES('5432','2.16.840.1.113762.1.4.1146.2148_20230122','2.16.840.1.113762.1.4.1146.2148_Q72.50');
-INSERT INTO valueset_to_concept VALUES('5433','2.16.840.1.113762.1.4.1146.2148_20230122','2.16.840.1.113762.1.4.1146.2148_Q72.51');
-INSERT INTO valueset_to_concept VALUES('5434','2.16.840.1.113762.1.4.1146.2148_20230122','2.16.840.1.113762.1.4.1146.2148_Q72.52');
-INSERT INTO valueset_to_concept VALUES('5435','2.16.840.1.113762.1.4.1146.2148_20230122','2.16.840.1.113762.1.4.1146.2148_Q72.53');
-INSERT INTO valueset_to_concept VALUES('5436','2.16.840.1.113762.1.4.1146.2148_20230122','2.16.840.1.113762.1.4.1146.2148_Q72.60');
-INSERT INTO valueset_to_concept VALUES('5437','2.16.840.1.113762.1.4.1146.2148_20230122','2.16.840.1.113762.1.4.1146.2148_Q72.61');
-INSERT INTO valueset_to_concept VALUES('5438','2.16.840.1.113762.1.4.1146.2148_20230122','2.16.840.1.113762.1.4.1146.2148_Q72.62');
-INSERT INTO valueset_to_concept VALUES('5439','2.16.840.1.113762.1.4.1146.2148_20230122','2.16.840.1.113762.1.4.1146.2148_Q72.63');
-INSERT INTO valueset_to_concept VALUES('5440','2.16.840.1.113762.1.4.1146.2148_20230122','2.16.840.1.113762.1.4.1146.2148_Q72.70');
-INSERT INTO valueset_to_concept VALUES('5441','2.16.840.1.113762.1.4.1146.2148_20230122','2.16.840.1.113762.1.4.1146.2148_Q72.71');
-INSERT INTO valueset_to_concept VALUES('5442','2.16.840.1.113762.1.4.1146.2148_20230122','2.16.840.1.113762.1.4.1146.2148_Q72.72');
-INSERT INTO valueset_to_concept VALUES('5443','2.16.840.1.113762.1.4.1146.2148_20230122','2.16.840.1.113762.1.4.1146.2148_Q72.73');
-INSERT INTO valueset_to_concept VALUES('5444','2.16.840.1.113762.1.4.1146.2148_20230122','2.16.840.1.113762.1.4.1146.2148_Q72.891');
-INSERT INTO valueset_to_concept VALUES('5445','2.16.840.1.113762.1.4.1146.2148_20230122','2.16.840.1.113762.1.4.1146.2148_Q72.892');
-INSERT INTO valueset_to_concept VALUES('5446','2.16.840.1.113762.1.4.1146.2148_20230122','2.16.840.1.113762.1.4.1146.2148_Q72.893');
-INSERT INTO valueset_to_concept VALUES('5447','2.16.840.1.113762.1.4.1146.2148_20230122','2.16.840.1.113762.1.4.1146.2148_Q72.899');
-INSERT INTO valueset_to_concept VALUES('5448','2.16.840.1.113762.1.4.1146.2148_20230122','2.16.840.1.113762.1.4.1146.2148_Q72.90');
-INSERT INTO valueset_to_concept VALUES('5449','2.16.840.1.113762.1.4.1146.2148_20230122','2.16.840.1.113762.1.4.1146.2148_Q72.91');
-INSERT INTO valueset_to_concept VALUES('5450','2.16.840.1.113762.1.4.1146.2148_20230122','2.16.840.1.113762.1.4.1146.2148_Q72.92');
-INSERT INTO valueset_to_concept VALUES('5451','2.16.840.1.113762.1.4.1146.2148_20230122','2.16.840.1.113762.1.4.1146.2148_Q72.93');
-INSERT INTO valueset_to_concept VALUES('5452','2.16.840.1.113762.1.4.1146.2148_20230122','2.16.840.1.113762.1.4.1146.2148_Q73.0');
-INSERT INTO valueset_to_concept VALUES('5453','2.16.840.1.113762.1.4.1146.2148_20230122','2.16.840.1.113762.1.4.1146.2148_Q73.1');
-INSERT INTO valueset_to_concept VALUES('5454','2.16.840.1.113762.1.4.1146.2148_20230122','2.16.840.1.113762.1.4.1146.2148_Q73.8');
-INSERT INTO valueset_to_concept VALUES('5455','2.16.840.1.113762.1.4.1146.256_20180620','2.16.840.1.113762.1.4.1146.256_1102005');
-INSERT INTO valueset_to_concept VALUES('5456','2.16.840.1.113762.1.4.1146.256_20180620','2.16.840.1.113762.1.4.1146.256_21061004');
-INSERT INTO valueset_to_concept VALUES('5457','2.16.840.1.113762.1.4.1146.256_20180620','2.16.840.1.113762.1.4.1146.256_24620004');
-INSERT INTO valueset_to_concept VALUES('5458','2.16.840.1.113762.1.4.1146.256_20180620','2.16.840.1.113762.1.4.1146.256_51613008');
-INSERT INTO valueset_to_concept VALUES('5459','2.16.840.1.113762.1.4.1146.256_20180620','2.16.840.1.113762.1.4.1146.256_73908004');
-INSERT INTO valueset_to_concept VALUES('5460','2.16.840.1.113762.1.4.1146.256_20180620','2.16.840.1.113762.1.4.1146.256_83937008');
-INSERT INTO valueset_to_concept VALUES('5461','2.16.840.1.113762.1.4.1146.136_20240619','2.16.840.1.113762.1.4.1146.136_127121000119101');
-INSERT INTO valueset_to_concept VALUES('5462','2.16.840.1.113762.1.4.1146.136_20240619','2.16.840.1.113762.1.4.1146.136_127261000119100');
-INSERT INTO valueset_to_concept VALUES('5463','2.16.840.1.113762.1.4.1146.136_20240619','2.16.840.1.113762.1.4.1146.136_1288002001');
-INSERT INTO valueset_to_concept VALUES('5464','2.16.840.1.113762.1.4.1146.136_20240619','2.16.840.1.113762.1.4.1146.136_15689241000119101');
-INSERT INTO valueset_to_concept VALUES('5465','2.16.840.1.113762.1.4.1146.136_20240619','2.16.840.1.113762.1.4.1146.136_194916007');
-INSERT INTO valueset_to_concept VALUES('5466','2.16.840.1.113762.1.4.1146.136_20240619','2.16.840.1.113762.1.4.1146.136_194956009');
-INSERT INTO valueset_to_concept VALUES('5467','2.16.840.1.113762.1.4.1146.136_20240619','2.16.840.1.113762.1.4.1146.136_201467001');
-INSERT INTO valueset_to_concept VALUES('5468','2.16.840.1.113762.1.4.1146.136_20240619','2.16.840.1.113762.1.4.1146.136_24302002');
-INSERT INTO valueset_to_concept VALUES('5469','2.16.840.1.113762.1.4.1146.136_20240619','2.16.840.1.113762.1.4.1146.136_2585002');
-INSERT INTO valueset_to_concept VALUES('5470','2.16.840.1.113762.1.4.1146.136_20240619','2.16.840.1.113762.1.4.1146.136_317781000119102');
-INSERT INTO valueset_to_concept VALUES('5471','2.16.840.1.113762.1.4.1146.136_20240619','2.16.840.1.113762.1.4.1146.136_317811000119100');
-INSERT INTO valueset_to_concept VALUES('5472','2.16.840.1.113762.1.4.1146.136_20240619','2.16.840.1.113762.1.4.1146.136_317821000119107');
-INSERT INTO valueset_to_concept VALUES('5473','2.16.840.1.113762.1.4.1146.136_20240619','2.16.840.1.113762.1.4.1146.136_317831000119105');
-INSERT INTO valueset_to_concept VALUES('5474','2.16.840.1.113762.1.4.1146.136_20240619','2.16.840.1.113762.1.4.1146.136_317851000119104');
-INSERT INTO valueset_to_concept VALUES('5475','2.16.840.1.113762.1.4.1146.136_20240619','2.16.840.1.113762.1.4.1146.136_317881000119106');
-INSERT INTO valueset_to_concept VALUES('5476','2.16.840.1.113762.1.4.1146.136_20240619','2.16.840.1.113762.1.4.1146.136_317891000119109');
-INSERT INTO valueset_to_concept VALUES('5477','2.16.840.1.113762.1.4.1146.136_20240619','2.16.840.1.113762.1.4.1146.136_317901000119108');
-INSERT INTO valueset_to_concept VALUES('5478','2.16.840.1.113762.1.4.1146.136_20240619','2.16.840.1.113762.1.4.1146.136_36309003');
-INSERT INTO valueset_to_concept VALUES('5479','2.16.840.1.113762.1.4.1146.136_20240619','2.16.840.1.113762.1.4.1146.136_406617004');
-INSERT INTO valueset_to_concept VALUES('5480','2.16.840.1.113762.1.4.1146.136_20240619','2.16.840.1.113762.1.4.1146.136_406618009');
-INSERT INTO valueset_to_concept VALUES('5481','2.16.840.1.113762.1.4.1146.136_20240619','2.16.840.1.113762.1.4.1146.136_448421008');
-INSERT INTO valueset_to_concept VALUES('5482','2.16.840.1.113762.1.4.1146.136_20240619','2.16.840.1.113762.1.4.1146.136_58710009');
-INSERT INTO valueset_to_concept VALUES('5483','2.16.840.1.113762.1.4.1146.136_20240619','2.16.840.1.113762.1.4.1146.136_713614001');
-INSERT INTO valueset_to_concept VALUES('5484','2.16.840.1.113762.1.4.1146.136_20240619','2.16.840.1.113762.1.4.1146.136_51169003');
-INSERT INTO valueset_to_concept VALUES('5485','2.16.840.1.113762.1.4.1146.2028_20230125','2.16.840.1.113762.1.4.1146.2028_A44.0');
-INSERT INTO valueset_to_concept VALUES('5486','2.16.840.1.113762.1.4.1146.2028_20230125','2.16.840.1.113762.1.4.1146.2028_A44.1');
-INSERT INTO valueset_to_concept VALUES('5487','2.16.840.1.113762.1.4.1146.2028_20230125','2.16.840.1.113762.1.4.1146.2028_A44.8');
-INSERT INTO valueset_to_concept VALUES('5488','2.16.840.1.113762.1.4.1146.2028_20230125','2.16.840.1.113762.1.4.1146.2028_A44.9');
-INSERT INTO valueset_to_concept VALUES('5489','2.16.840.1.113762.1.4.1146.2028_20230125','2.16.840.1.113762.1.4.1146.2028_A28.1');
-INSERT INTO valueset_to_concept VALUES('5490','2.16.840.1.113762.1.4.1146.2028_20230125','2.16.840.1.113762.1.4.1146.2028_A79.0');
-INSERT INTO valueset_to_concept VALUES('5491','2.16.840.1.113762.1.4.1146.257_20210526','2.16.840.1.113762.1.4.1146.257_B60.0');
-INSERT INTO valueset_to_concept VALUES('5492','2.16.840.1.113762.1.4.1146.257_20210526','2.16.840.1.113762.1.4.1146.257_B60.00');
-INSERT INTO valueset_to_concept VALUES('5493','2.16.840.1.113762.1.4.1146.257_20210526','2.16.840.1.113762.1.4.1146.257_B60.01');
-INSERT INTO valueset_to_concept VALUES('5494','2.16.840.1.113762.1.4.1146.257_20210526','2.16.840.1.113762.1.4.1146.257_B60.02');
-INSERT INTO valueset_to_concept VALUES('5495','2.16.840.1.113762.1.4.1146.257_20210526','2.16.840.1.113762.1.4.1146.257_B60.03');
-INSERT INTO valueset_to_concept VALUES('5496','2.16.840.1.113762.1.4.1146.257_20210526','2.16.840.1.113762.1.4.1146.257_B60.09');
-INSERT INTO valueset_to_concept VALUES('5497','2.16.840.1.113762.1.4.1146.137_20191227','2.16.840.1.113762.1.4.1146.137_A40.3');
-INSERT INTO valueset_to_concept VALUES('5498','2.16.840.1.113762.1.4.1146.137_20191227','2.16.840.1.113762.1.4.1146.137_B95.3');
-INSERT INTO valueset_to_concept VALUES('5499','2.16.840.1.113762.1.4.1146.137_20191227','2.16.840.1.113762.1.4.1146.137_M00.1');
-INSERT INTO valueset_to_concept VALUES('5500','2.16.840.1.113762.1.4.1146.137_20191227','2.16.840.1.113762.1.4.1146.137_M00.10');
-INSERT INTO valueset_to_concept VALUES('5501','2.16.840.1.113762.1.4.1146.137_20191227','2.16.840.1.113762.1.4.1146.137_M00.11');
-INSERT INTO valueset_to_concept VALUES('5502','2.16.840.1.113762.1.4.1146.137_20191227','2.16.840.1.113762.1.4.1146.137_M00.111');
-INSERT INTO valueset_to_concept VALUES('5503','2.16.840.1.113762.1.4.1146.137_20191227','2.16.840.1.113762.1.4.1146.137_M00.112');
-INSERT INTO valueset_to_concept VALUES('5504','2.16.840.1.113762.1.4.1146.137_20191227','2.16.840.1.113762.1.4.1146.137_M00.119');
-INSERT INTO valueset_to_concept VALUES('5505','2.16.840.1.113762.1.4.1146.137_20191227','2.16.840.1.113762.1.4.1146.137_M00.12');
-INSERT INTO valueset_to_concept VALUES('5506','2.16.840.1.113762.1.4.1146.137_20191227','2.16.840.1.113762.1.4.1146.137_M00.121');
-INSERT INTO valueset_to_concept VALUES('5507','2.16.840.1.113762.1.4.1146.137_20191227','2.16.840.1.113762.1.4.1146.137_M00.122');
-INSERT INTO valueset_to_concept VALUES('5508','2.16.840.1.113762.1.4.1146.137_20191227','2.16.840.1.113762.1.4.1146.137_M00.129');
-INSERT INTO valueset_to_concept VALUES('5509','2.16.840.1.113762.1.4.1146.137_20191227','2.16.840.1.113762.1.4.1146.137_M00.13');
-INSERT INTO valueset_to_concept VALUES('5510','2.16.840.1.113762.1.4.1146.137_20191227','2.16.840.1.113762.1.4.1146.137_M00.131');
-INSERT INTO valueset_to_concept VALUES('5511','2.16.840.1.113762.1.4.1146.137_20191227','2.16.840.1.113762.1.4.1146.137_M00.132');
-INSERT INTO valueset_to_concept VALUES('5512','2.16.840.1.113762.1.4.1146.137_20191227','2.16.840.1.113762.1.4.1146.137_M00.139');
-INSERT INTO valueset_to_concept VALUES('5513','2.16.840.1.113762.1.4.1146.137_20191227','2.16.840.1.113762.1.4.1146.137_M00.14');
-INSERT INTO valueset_to_concept VALUES('5514','2.16.840.1.113762.1.4.1146.137_20191227','2.16.840.1.113762.1.4.1146.137_M00.141');
-INSERT INTO valueset_to_concept VALUES('5515','2.16.840.1.113762.1.4.1146.137_20191227','2.16.840.1.113762.1.4.1146.137_M00.142');
-INSERT INTO valueset_to_concept VALUES('5516','2.16.840.1.113762.1.4.1146.137_20191227','2.16.840.1.113762.1.4.1146.137_M00.149');
-INSERT INTO valueset_to_concept VALUES('5517','2.16.840.1.113762.1.4.1146.137_20191227','2.16.840.1.113762.1.4.1146.137_M00.15');
-INSERT INTO valueset_to_concept VALUES('5518','2.16.840.1.113762.1.4.1146.137_20191227','2.16.840.1.113762.1.4.1146.137_M00.151');
-INSERT INTO valueset_to_concept VALUES('5519','2.16.840.1.113762.1.4.1146.137_20191227','2.16.840.1.113762.1.4.1146.137_M00.152');
-INSERT INTO valueset_to_concept VALUES('5520','2.16.840.1.113762.1.4.1146.137_20191227','2.16.840.1.113762.1.4.1146.137_M00.159');
-INSERT INTO valueset_to_concept VALUES('5521','2.16.840.1.113762.1.4.1146.137_20191227','2.16.840.1.113762.1.4.1146.137_M00.16');
-INSERT INTO valueset_to_concept VALUES('5522','2.16.840.1.113762.1.4.1146.137_20191227','2.16.840.1.113762.1.4.1146.137_M00.161');
-INSERT INTO valueset_to_concept VALUES('5523','2.16.840.1.113762.1.4.1146.137_20191227','2.16.840.1.113762.1.4.1146.137_M00.162');
-INSERT INTO valueset_to_concept VALUES('5524','2.16.840.1.113762.1.4.1146.137_20191227','2.16.840.1.113762.1.4.1146.137_M00.169');
-INSERT INTO valueset_to_concept VALUES('5525','2.16.840.1.113762.1.4.1146.137_20191227','2.16.840.1.113762.1.4.1146.137_M00.17');
-INSERT INTO valueset_to_concept VALUES('5526','2.16.840.1.113762.1.4.1146.137_20191227','2.16.840.1.113762.1.4.1146.137_M00.171');
-INSERT INTO valueset_to_concept VALUES('5527','2.16.840.1.113762.1.4.1146.137_20191227','2.16.840.1.113762.1.4.1146.137_M00.172');
-INSERT INTO valueset_to_concept VALUES('5528','2.16.840.1.113762.1.4.1146.137_20191227','2.16.840.1.113762.1.4.1146.137_M00.179');
-INSERT INTO valueset_to_concept VALUES('5529','2.16.840.1.113762.1.4.1146.137_20191227','2.16.840.1.113762.1.4.1146.137_M00.18');
-INSERT INTO valueset_to_concept VALUES('5530','2.16.840.1.113762.1.4.1146.137_20191227','2.16.840.1.113762.1.4.1146.137_M00.19');
-INSERT INTO valueset_to_concept VALUES('5531','2.16.840.1.113762.1.4.1146.137_20191227','2.16.840.1.113762.1.4.1146.137_G00.1');
-INSERT INTO valueset_to_concept VALUES('5532','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_1003337005');
-INSERT INTO valueset_to_concept VALUES('5533','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_1003339008');
-INSERT INTO valueset_to_concept VALUES('5534','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_1003509004');
-INSERT INTO valueset_to_concept VALUES('5535','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_1003510009');
-INSERT INTO valueset_to_concept VALUES('5536','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_1003513006');
-INSERT INTO valueset_to_concept VALUES('5537','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_1003515004');
-INSERT INTO valueset_to_concept VALUES('5538','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_1003519005');
-INSERT INTO valueset_to_concept VALUES('5539','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_1003546000');
-INSERT INTO valueset_to_concept VALUES('5540','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_1003549007');
-INSERT INTO valueset_to_concept VALUES('5541','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_1003554003');
-INSERT INTO valueset_to_concept VALUES('5542','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_1003571002');
-INSERT INTO valueset_to_concept VALUES('5543','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_1003574005');
-INSERT INTO valueset_to_concept VALUES('5544','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_1003579000');
-INSERT INTO valueset_to_concept VALUES('5545','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_1003581003');
-INSERT INTO valueset_to_concept VALUES('5546','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_1003582005');
-INSERT INTO valueset_to_concept VALUES('5547','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_1003644007');
-INSERT INTO valueset_to_concept VALUES('5548','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_1003704006');
-INSERT INTO valueset_to_concept VALUES('5549','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_1010709006');
-INSERT INTO valueset_to_concept VALUES('5550','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_1078251000119105');
-INSERT INTO valueset_to_concept VALUES('5551','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_1078261000119107');
-INSERT INTO valueset_to_concept VALUES('5552','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_1078271000119101');
-INSERT INTO valueset_to_concept VALUES('5553','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_1078291000119100');
-INSERT INTO valueset_to_concept VALUES('5554','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_1078301000119104');
-INSERT INTO valueset_to_concept VALUES('5555','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_1078311000119101');
-INSERT INTO valueset_to_concept VALUES('5556','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_1078321000119108');
-INSERT INTO valueset_to_concept VALUES('5557','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_1078331000119106');
-INSERT INTO valueset_to_concept VALUES('5558','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_111315008');
-INSERT INTO valueset_to_concept VALUES('5559','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_1163579007');
-INSERT INTO valueset_to_concept VALUES('5560','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_128061008');
-INSERT INTO valueset_to_concept VALUES('5561','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_13624003');
-INSERT INTO valueset_to_concept VALUES('5562','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_15669121000119101');
-INSERT INTO valueset_to_concept VALUES('5563','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_15669161000119106');
-INSERT INTO valueset_to_concept VALUES('5564','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_15669241000119104');
-INSERT INTO valueset_to_concept VALUES('5565','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_15669321000119104');
-INSERT INTO valueset_to_concept VALUES('5566','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_15669441000119103');
-INSERT INTO valueset_to_concept VALUES('5567','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_15669521000119108');
-INSERT INTO valueset_to_concept VALUES('5568','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_15669561000119103');
-INSERT INTO valueset_to_concept VALUES('5569','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_16004631000119101');
-INSERT INTO valueset_to_concept VALUES('5570','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_16004751000119103');
-INSERT INTO valueset_to_concept VALUES('5571','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_16004831000119102');
-INSERT INTO valueset_to_concept VALUES('5572','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_16009191000119108');
-INSERT INTO valueset_to_concept VALUES('5573','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_16090091000119100');
-INSERT INTO valueset_to_concept VALUES('5574','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_16856000');
-INSERT INTO valueset_to_concept VALUES('5575','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_16904009');
-INSERT INTO valueset_to_concept VALUES('5576','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_177504007');
-INSERT INTO valueset_to_concept VALUES('5577','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_1967001');
-INSERT INTO valueset_to_concept VALUES('5578','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_205161004');
-INSERT INTO valueset_to_concept VALUES('5579','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_205163001');
-INSERT INTO valueset_to_concept VALUES('5580','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_205164007');
-INSERT INTO valueset_to_concept VALUES('5581','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_205170001');
-INSERT INTO valueset_to_concept VALUES('5582','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_205171002');
-INSERT INTO valueset_to_concept VALUES('5583','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_205174005');
-INSERT INTO valueset_to_concept VALUES('5584','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_205175006');
-INSERT INTO valueset_to_concept VALUES('5585','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_205176007');
-INSERT INTO valueset_to_concept VALUES('5586','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_205177003');
-INSERT INTO valueset_to_concept VALUES('5587','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_205178008');
-INSERT INTO valueset_to_concept VALUES('5588','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_205179000');
-INSERT INTO valueset_to_concept VALUES('5589','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_205180002');
-INSERT INTO valueset_to_concept VALUES('5590','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_205203006');
-INSERT INTO valueset_to_concept VALUES('5591','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_205204000');
-INSERT INTO valueset_to_concept VALUES('5592','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_205206003');
-INSERT INTO valueset_to_concept VALUES('5593','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_205207007');
-INSERT INTO valueset_to_concept VALUES('5594','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_205211001');
-INSERT INTO valueset_to_concept VALUES('5595','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_205212008');
-INSERT INTO valueset_to_concept VALUES('5596','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_205213003');
-INSERT INTO valueset_to_concept VALUES('5597','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_205215005');
-INSERT INTO valueset_to_concept VALUES('5598','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_205216006');
-INSERT INTO valueset_to_concept VALUES('5599','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_205217002');
-INSERT INTO valueset_to_concept VALUES('5600','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_205218007');
-INSERT INTO valueset_to_concept VALUES('5601','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_205221009');
-INSERT INTO valueset_to_concept VALUES('5602','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_205222002');
-INSERT INTO valueset_to_concept VALUES('5603','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_205223007');
-INSERT INTO valueset_to_concept VALUES('5604','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_205225000');
-INSERT INTO valueset_to_concept VALUES('5605','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_205227008');
-INSERT INTO valueset_to_concept VALUES('5606','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_205228003');
-INSERT INTO valueset_to_concept VALUES('5607','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_205230001');
-INSERT INTO valueset_to_concept VALUES('5608','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_205264002');
-INSERT INTO valueset_to_concept VALUES('5609','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_205265001');
-INSERT INTO valueset_to_concept VALUES('5610','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_205266000');
-INSERT INTO valueset_to_concept VALUES('5611','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_205267009');
-INSERT INTO valueset_to_concept VALUES('5612','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_205269007');
-INSERT INTO valueset_to_concept VALUES('5613','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_205281006');
-INSERT INTO valueset_to_concept VALUES('5614','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_205306000');
-INSERT INTO valueset_to_concept VALUES('5615','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_205308004');
-INSERT INTO valueset_to_concept VALUES('5616','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_205311003');
-INSERT INTO valueset_to_concept VALUES('5617','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_205312005');
-INSERT INTO valueset_to_concept VALUES('5618','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_205317004');
-INSERT INTO valueset_to_concept VALUES('5619','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_205358006');
-INSERT INTO valueset_to_concept VALUES('5620','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_205386003');
-INSERT INTO valueset_to_concept VALUES('5621','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_205835001');
-INSERT INTO valueset_to_concept VALUES('5622','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_22841008');
-INSERT INTO valueset_to_concept VALUES('5623','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_22868008');
-INSERT INTO valueset_to_concept VALUES('5624','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_232373003');
-INSERT INTO valueset_to_concept VALUES('5625','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_253926000');
-INSERT INTO valueset_to_concept VALUES('5626','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_253929007');
-INSERT INTO valueset_to_concept VALUES('5627','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_253932005');
-INSERT INTO valueset_to_concept VALUES('5628','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_253936008');
-INSERT INTO valueset_to_concept VALUES('5629','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_253959002');
-INSERT INTO valueset_to_concept VALUES('5630','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_253963009');
-INSERT INTO valueset_to_concept VALUES('5631','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_253965002');
-INSERT INTO valueset_to_concept VALUES('5632','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_253972001');
-INSERT INTO valueset_to_concept VALUES('5633','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_253975004');
-INSERT INTO valueset_to_concept VALUES('5634','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_265798000');
-INSERT INTO valueset_to_concept VALUES('5635','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_270963009');
-INSERT INTO valueset_to_concept VALUES('5636','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_271086008');
-INSERT INTO valueset_to_concept VALUES('5637','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_271087004');
-INSERT INTO valueset_to_concept VALUES('5638','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_271088009');
-INSERT INTO valueset_to_concept VALUES('5639','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_271089001');
-INSERT INTO valueset_to_concept VALUES('5640','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_271090005');
-INSERT INTO valueset_to_concept VALUES('5641','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_271095000');
-INSERT INTO valueset_to_concept VALUES('5642','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_275348004');
-INSERT INTO valueset_to_concept VALUES('5643','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_278532000');
-INSERT INTO valueset_to_concept VALUES('5644','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_29155003');
-INSERT INTO valueset_to_concept VALUES('5645','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_29581008');
-INSERT INTO valueset_to_concept VALUES('5646','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_29632002');
-INSERT INTO valueset_to_concept VALUES('5647','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_299034005');
-INSERT INTO valueset_to_concept VALUES('5648','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_302958006');
-INSERT INTO valueset_to_concept VALUES('5649','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_304931000119109');
-INSERT INTO valueset_to_concept VALUES('5650','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_305031000119109');
-INSERT INTO valueset_to_concept VALUES('5651','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_310798000');
-INSERT INTO valueset_to_concept VALUES('5652','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_313261000119109');
-INSERT INTO valueset_to_concept VALUES('5653','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_313271000119103');
-INSERT INTO valueset_to_concept VALUES('5654','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_32339005');
-INSERT INTO valueset_to_concept VALUES('5655','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_360526007');
-INSERT INTO valueset_to_concept VALUES('5656','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_361213004');
-INSERT INTO valueset_to_concept VALUES('5657','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_36574005');
-INSERT INTO valueset_to_concept VALUES('5658','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_367468008');
-INSERT INTO valueset_to_concept VALUES('5659','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_3699000');
-INSERT INTO valueset_to_concept VALUES('5660','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_371080001');
-INSERT INTO valueset_to_concept VALUES('5661','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_371189003');
-INSERT INTO valueset_to_concept VALUES('5662','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_371191006');
-INSERT INTO valueset_to_concept VALUES('5663','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_371197005');
-INSERT INTO valueset_to_concept VALUES('5664','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_371199008');
-INSERT INTO valueset_to_concept VALUES('5665','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_37221009');
-INSERT INTO valueset_to_concept VALUES('5666','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_389168002');
-INSERT INTO valueset_to_concept VALUES('5667','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_403562000');
-INSERT INTO valueset_to_concept VALUES('5668','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_41878001');
-INSERT INTO valueset_to_concept VALUES('5669','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_41895009');
-INSERT INTO valueset_to_concept VALUES('5670','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_42808000');
-INSERT INTO valueset_to_concept VALUES('5671','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_43036001');
-INSERT INTO valueset_to_concept VALUES('5672','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_44444001');
-INSERT INTO valueset_to_concept VALUES('5673','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_449670008');
-INSERT INTO valueset_to_concept VALUES('5674','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_449682004');
-INSERT INTO valueset_to_concept VALUES('5675','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_449683009');
-INSERT INTO valueset_to_concept VALUES('5676','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_45482001');
-INSERT INTO valueset_to_concept VALUES('5677','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_45806008');
-INSERT INTO valueset_to_concept VALUES('5678','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_45939007');
-INSERT INTO valueset_to_concept VALUES('5679','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_47276000');
-INSERT INTO valueset_to_concept VALUES('5680','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_47713000');
-INSERT INTO valueset_to_concept VALUES('5681','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_48301005');
-INSERT INTO valueset_to_concept VALUES('5682','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_51635000');
-INSERT INTO valueset_to_concept VALUES('5683','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_52022007');
-INSERT INTO valueset_to_concept VALUES('5684','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_52474000');
-INSERT INTO valueset_to_concept VALUES('5685','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_52837007');
-INSERT INTO valueset_to_concept VALUES('5686','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_55852007');
-INSERT INTO valueset_to_concept VALUES('5687','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_56923001');
-INSERT INTO valueset_to_concept VALUES('5688','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_58010002');
-INSERT INTO valueset_to_concept VALUES('5689','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_59070002');
-INSERT INTO valueset_to_concept VALUES('5690','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_59352006');
-INSERT INTO valueset_to_concept VALUES('5691','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_59423009');
-INSERT INTO valueset_to_concept VALUES('5692','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_60220000');
-INSERT INTO valueset_to_concept VALUES('5693','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_61900003');
-INSERT INTO valueset_to_concept VALUES('5694','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_62588002');
-INSERT INTO valueset_to_concept VALUES('5695','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_63340009');
-INSERT INTO valueset_to_concept VALUES('5696','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_66078008');
-INSERT INTO valueset_to_concept VALUES('5697','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_66345008');
-INSERT INTO valueset_to_concept VALUES('5698','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_67341007');
-INSERT INTO valueset_to_concept VALUES('5699','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_68551007');
-INSERT INTO valueset_to_concept VALUES('5700','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_702313004');
-INSERT INTO valueset_to_concept VALUES('5701','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_702339001');
-INSERT INTO valueset_to_concept VALUES('5702','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_70902004');
-INSERT INTO valueset_to_concept VALUES('5703','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_71084008');
-INSERT INTO valueset_to_concept VALUES('5704','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_715472000');
-INSERT INTO valueset_to_concept VALUES('5705','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_715474004');
-INSERT INTO valueset_to_concept VALUES('5706','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_715522000');
-INSERT INTO valueset_to_concept VALUES('5707','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_715531000');
-INSERT INTO valueset_to_concept VALUES('5708','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_716006003');
-INSERT INTO valueset_to_concept VALUES('5709','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_716092007');
-INSERT INTO valueset_to_concept VALUES('5710','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_716094008');
-INSERT INTO valueset_to_concept VALUES('5711','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_716099003');
-INSERT INTO valueset_to_concept VALUES('5712','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_716249009');
-INSERT INTO valueset_to_concept VALUES('5713','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_716636008');
-INSERT INTO valueset_to_concept VALUES('5714','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_716638009');
-INSERT INTO valueset_to_concept VALUES('5715','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_716741008');
-INSERT INTO valueset_to_concept VALUES('5716','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_717785002');
-INSERT INTO valueset_to_concept VALUES('5717','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_717850006');
-INSERT INTO valueset_to_concept VALUES('5718','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_719021005');
-INSERT INTO valueset_to_concept VALUES('5719','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_719685004');
-INSERT INTO valueset_to_concept VALUES('5720','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_719842006');
-INSERT INTO valueset_to_concept VALUES('5721','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_719910004');
-INSERT INTO valueset_to_concept VALUES('5722','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_720498007');
-INSERT INTO valueset_to_concept VALUES('5723','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_720569006');
-INSERT INTO valueset_to_concept VALUES('5724','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_720572004');
-INSERT INTO valueset_to_concept VALUES('5725','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_721880009');
-INSERT INTO valueset_to_concept VALUES('5726','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_721972001');
-INSERT INTO valueset_to_concept VALUES('5727','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_722429003');
-INSERT INTO valueset_to_concept VALUES('5728','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_723405001');
-INSERT INTO valueset_to_concept VALUES('5729','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_723611008');
-INSERT INTO valueset_to_concept VALUES('5730','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_723676007');
-INSERT INTO valueset_to_concept VALUES('5731','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_724170007');
-INSERT INTO valueset_to_concept VALUES('5732','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_725098001');
-INSERT INTO valueset_to_concept VALUES('5733','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_726735000');
-INSERT INTO valueset_to_concept VALUES('5734','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_732250002');
-INSERT INTO valueset_to_concept VALUES('5735','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_732956000');
-INSERT INTO valueset_to_concept VALUES('5736','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_733030003');
-INSERT INTO valueset_to_concept VALUES('5737','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_733068001');
-INSERT INTO valueset_to_concept VALUES('5738','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_733095006');
-INSERT INTO valueset_to_concept VALUES('5739','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_733117001');
-INSERT INTO valueset_to_concept VALUES('5740','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_733118006');
-INSERT INTO valueset_to_concept VALUES('5741','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_733416004');
-INSERT INTO valueset_to_concept VALUES('5742','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_737217005');
-INSERT INTO valueset_to_concept VALUES('5743','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_737266007');
-INSERT INTO valueset_to_concept VALUES('5744','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_74245009');
-INSERT INTO valueset_to_concept VALUES('5745','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_74370006');
-INSERT INTO valueset_to_concept VALUES('5746','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_75950002');
-INSERT INTO valueset_to_concept VALUES('5747','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_764106001');
-INSERT INTO valueset_to_concept VALUES('5748','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_764437006');
-INSERT INTO valueset_to_concept VALUES('5749','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_764857004');
-INSERT INTO valueset_to_concept VALUES('5750','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_765761009');
-INSERT INTO valueset_to_concept VALUES('5751','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_766032007');
-INSERT INTO valueset_to_concept VALUES('5752','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_766765009');
-INSERT INTO valueset_to_concept VALUES('5753','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_766874001');
-INSERT INTO valueset_to_concept VALUES('5754','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_766999004');
-INSERT INTO valueset_to_concept VALUES('5755','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_767000001');
-INSERT INTO valueset_to_concept VALUES('5756','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_767001002');
-INSERT INTO valueset_to_concept VALUES('5757','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_76744005');
-INSERT INTO valueset_to_concept VALUES('5758','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_76842000');
-INSERT INTO valueset_to_concept VALUES('5759','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_770543003');
-INSERT INTO valueset_to_concept VALUES('5760','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_770544009');
-INSERT INTO valueset_to_concept VALUES('5761','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_770681000');
-INSERT INTO valueset_to_concept VALUES('5762','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_770945001');
-INSERT INTO valueset_to_concept VALUES('5763','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_770946000');
-INSERT INTO valueset_to_concept VALUES('5764','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_771177009');
-INSERT INTO valueset_to_concept VALUES('5765','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_771264005');
-INSERT INTO valueset_to_concept VALUES('5766','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_773773006');
-INSERT INTO valueset_to_concept VALUES('5767','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_77595004');
-INSERT INTO valueset_to_concept VALUES('5768','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_78018008');
-INSERT INTO valueset_to_concept VALUES('5769','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_782332007');
-INSERT INTO valueset_to_concept VALUES('5770','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_783137003');
-INSERT INTO valueset_to_concept VALUES('5771','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_783156008');
-INSERT INTO valueset_to_concept VALUES('5772','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_79177001');
-INSERT INTO valueset_to_concept VALUES('5773','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_81208006');
-INSERT INTO valueset_to_concept VALUES('5774','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_840512003');
-INSERT INTO valueset_to_concept VALUES('5775','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_84918006');
-INSERT INTO valueset_to_concept VALUES('5776','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_876847002');
-INSERT INTO valueset_to_concept VALUES('5777','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_876853002');
-INSERT INTO valueset_to_concept VALUES('5778','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_890221004');
-INSERT INTO valueset_to_concept VALUES('5779','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_890222006');
-INSERT INTO valueset_to_concept VALUES('5780','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_890223001');
-INSERT INTO valueset_to_concept VALUES('5781','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_890401002');
-INSERT INTO valueset_to_concept VALUES('5782','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_890403004');
-INSERT INTO valueset_to_concept VALUES('5783','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_890404005');
-INSERT INTO valueset_to_concept VALUES('5784','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_890405006');
-INSERT INTO valueset_to_concept VALUES('5785','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_89434002');
-INSERT INTO valueset_to_concept VALUES('5786','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_897531008');
-INSERT INTO valueset_to_concept VALUES('5787','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_897532001');
-INSERT INTO valueset_to_concept VALUES('5788','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_897533006');
-INSERT INTO valueset_to_concept VALUES('5789','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_91872004');
-INSERT INTO valueset_to_concept VALUES('5790','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_91873009');
-INSERT INTO valueset_to_concept VALUES('5791','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_91898005');
-INSERT INTO valueset_to_concept VALUES('5792','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_91899002');
-INSERT INTO valueset_to_concept VALUES('5793','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_91913001');
-INSERT INTO valueset_to_concept VALUES('5794','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_91914007');
-INSERT INTO valueset_to_concept VALUES('5795','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_92898008');
-INSERT INTO valueset_to_concept VALUES('5796','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_92910001');
-INSERT INTO valueset_to_concept VALUES('5797','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_92915006');
-INSERT INTO valueset_to_concept VALUES('5798','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_92928004');
-INSERT INTO valueset_to_concept VALUES('5799','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_92942007');
-INSERT INTO valueset_to_concept VALUES('5800','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_92951004');
-INSERT INTO valueset_to_concept VALUES('5801','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_92954007');
-INSERT INTO valueset_to_concept VALUES('5802','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_92956009');
-INSERT INTO valueset_to_concept VALUES('5803','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_93248006');
-INSERT INTO valueset_to_concept VALUES('5804','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_93255008');
-INSERT INTO valueset_to_concept VALUES('5805','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_93256009');
-INSERT INTO valueset_to_concept VALUES('5806','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_93264003');
-INSERT INTO valueset_to_concept VALUES('5807','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_93272001');
-INSERT INTO valueset_to_concept VALUES('5808','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_93288001');
-INSERT INTO valueset_to_concept VALUES('5809','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_93298007');
-INSERT INTO valueset_to_concept VALUES('5810','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_93300007');
-INSERT INTO valueset_to_concept VALUES('5811','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_732927000');
-INSERT INTO valueset_to_concept VALUES('5812','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_1172635005');
-INSERT INTO valueset_to_concept VALUES('5813','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_1208338004');
-INSERT INTO valueset_to_concept VALUES('5814','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_715506001');
-INSERT INTO valueset_to_concept VALUES('5815','2.16.840.1.113762.1.4.1146.2147_20230122','2.16.840.1.113762.1.4.1146.2147_777998000');
-INSERT INTO valueset_to_concept VALUES('5816','2.16.840.1.113762.1.4.1146.259_20210527','2.16.840.1.113762.1.4.1146.259_186788009');
-INSERT INTO valueset_to_concept VALUES('5817','2.16.840.1.113762.1.4.1146.259_20210527','2.16.840.1.113762.1.4.1146.259_233867000');
-INSERT INTO valueset_to_concept VALUES('5818','2.16.840.1.113762.1.4.1146.259_20210527','2.16.840.1.113762.1.4.1146.259_233884006');
-INSERT INTO valueset_to_concept VALUES('5819','2.16.840.1.113762.1.4.1146.259_20210527','2.16.840.1.113762.1.4.1146.259_32286006');
-INSERT INTO valueset_to_concept VALUES('5820','2.16.840.1.113762.1.4.1146.259_20210527','2.16.840.1.113762.1.4.1146.259_409552002');
-INSERT INTO valueset_to_concept VALUES('5821','2.16.840.1.113762.1.4.1146.259_20210527','2.16.840.1.113762.1.4.1146.259_409553007');
-INSERT INTO valueset_to_concept VALUES('5822','2.16.840.1.113762.1.4.1146.259_20210527','2.16.840.1.113762.1.4.1146.259_409554001');
-INSERT INTO valueset_to_concept VALUES('5823','2.16.840.1.113762.1.4.1146.259_20210527','2.16.840.1.113762.1.4.1146.259_409557008');
-INSERT INTO valueset_to_concept VALUES('5824','2.16.840.1.113762.1.4.1146.259_20210527','2.16.840.1.113762.1.4.1146.259_95890006');
-INSERT INTO valueset_to_concept VALUES('5825','2.16.840.1.113762.1.4.1146.259_20210527','2.16.840.1.113762.1.4.1146.259_409555000');
-INSERT INTO valueset_to_concept VALUES('5826','2.16.840.1.113762.1.4.1146.259_20210527','2.16.840.1.113762.1.4.1146.259_409556004');
-INSERT INTO valueset_to_concept VALUES('5827','2.16.840.1.113762.1.4.1146.259_20210527','2.16.840.1.113762.1.4.1146.259_860842004');
-INSERT INTO valueset_to_concept VALUES('5828','2.16.840.1.113762.1.4.1146.1054_20190608','2.16.840.1.113762.1.4.1146.1054_230297002');
-INSERT INTO valueset_to_concept VALUES('5829','2.16.840.1.113762.1.4.1146.1054_20190608','2.16.840.1.113762.1.4.1146.1054_444024002');
-INSERT INTO valueset_to_concept VALUES('5830','2.16.840.1.113762.1.4.1146.1054_20190608','2.16.840.1.113762.1.4.1146.1054_444197004');
-INSERT INTO valueset_to_concept VALUES('5831','2.16.840.1.113762.1.4.1146.139_20210527','2.16.840.1.113762.1.4.1146.139_10625231000119106');
-INSERT INTO valueset_to_concept VALUES('5832','2.16.840.1.113762.1.4.1146.139_20210527','2.16.840.1.113762.1.4.1146.139_127171000119100');
-INSERT INTO valueset_to_concept VALUES('5833','2.16.840.1.113762.1.4.1146.139_20210527','2.16.840.1.113762.1.4.1146.139_127301000119108');
-INSERT INTO valueset_to_concept VALUES('5834','2.16.840.1.113762.1.4.1146.139_20210527','2.16.840.1.113762.1.4.1146.139_402928004');
-INSERT INTO valueset_to_concept VALUES('5835','2.16.840.1.113762.1.4.1146.139_20210527','2.16.840.1.113762.1.4.1146.139_406582007');
-INSERT INTO valueset_to_concept VALUES('5836','2.16.840.1.113762.1.4.1146.139_20210527','2.16.840.1.113762.1.4.1146.139_406583002');
-INSERT INTO valueset_to_concept VALUES('5837','2.16.840.1.113762.1.4.1146.139_20210527','2.16.840.1.113762.1.4.1146.139_447685007');
-INSERT INTO valueset_to_concept VALUES('5838','2.16.840.1.113762.1.4.1146.139_20210527','2.16.840.1.113762.1.4.1146.139_449546000');
-INSERT INTO valueset_to_concept VALUES('5839','2.16.840.1.113762.1.4.1146.139_20210527','2.16.840.1.113762.1.4.1146.139_460439008');
-INSERT INTO valueset_to_concept VALUES('5840','2.16.840.1.113762.1.4.1146.139_20210527','2.16.840.1.113762.1.4.1146.139_46527004');
-INSERT INTO valueset_to_concept VALUES('5841','2.16.840.1.113762.1.4.1146.139_20210527','2.16.840.1.113762.1.4.1146.139_58576005');
-INSERT INTO valueset_to_concept VALUES('5842','2.16.840.1.113762.1.4.1146.139_20210527','2.16.840.1.113762.1.4.1146.139_70036007');
-INSERT INTO valueset_to_concept VALUES('5843','2.16.840.1.113762.1.4.1146.139_20210527','2.16.840.1.113762.1.4.1146.139_712521003');
-INSERT INTO valueset_to_concept VALUES('5844','2.16.840.1.113762.1.4.1146.139_20210527','2.16.840.1.113762.1.4.1146.139_722722006');
-INSERT INTO valueset_to_concept VALUES('5845','2.16.840.1.113762.1.4.1146.139_20210527','2.16.840.1.113762.1.4.1146.139_445198003');
-INSERT INTO valueset_to_concept VALUES('5846','2.16.840.1.113762.1.4.1146.139_20210527','2.16.840.1.113762.1.4.1146.139_5900006');
-INSERT INTO valueset_to_concept VALUES('5847','2.16.840.1.113762.1.4.1146.2023_20230125','2.16.840.1.113762.1.4.1146.2023_74225001');
-INSERT INTO valueset_to_concept VALUES('5848','2.16.840.1.113762.1.4.1146.2024_20230125','2.16.840.1.113762.1.4.1146.2024_58213005');
-INSERT INTO valueset_to_concept VALUES('5849','2.16.840.1.113762.1.4.1146.1506_20220118','2.16.840.1.113762.1.4.1146.1506_B60.12');
-INSERT INTO valueset_to_concept VALUES('5850','2.16.840.1.113762.1.4.1146.1506_20220118','2.16.840.1.113762.1.4.1146.1506_B60.13');
-INSERT INTO valueset_to_concept VALUES('5851','2.16.840.1.113762.1.4.1146.1748_20230602','2.16.840.1.113762.1.4.1146.1748_10625831000119107');
-INSERT INTO valueset_to_concept VALUES('5852','2.16.840.1.113762.1.4.1146.1748_20230602','2.16.840.1.113762.1.4.1146.1748_196019004');
-INSERT INTO valueset_to_concept VALUES('5853','2.16.840.1.113762.1.4.1146.1748_20230602','2.16.840.1.113762.1.4.1146.1748_196021009');
-INSERT INTO valueset_to_concept VALUES('5854','2.16.840.1.113762.1.4.1146.1748_20230602','2.16.840.1.113762.1.4.1146.1748_233733000');
-INSERT INTO valueset_to_concept VALUES('5855','2.16.840.1.113762.1.4.1146.1748_20230602','2.16.840.1.113762.1.4.1146.1748_415126001');
-INSERT INTO valueset_to_concept VALUES('5856','2.16.840.1.113762.1.4.1146.1748_20230602','2.16.840.1.113762.1.4.1146.1748_840728005');
-INSERT INTO valueset_to_concept VALUES('5857','2.16.840.1.113762.1.4.1146.1748_20230602','2.16.840.1.113762.1.4.1146.1748_846629004');
-INSERT INTO valueset_to_concept VALUES('5858','2.16.840.1.113762.1.4.1146.1748_20230602','2.16.840.1.113762.1.4.1146.1748_846630009');
-INSERT INTO valueset_to_concept VALUES('5859','2.16.840.1.113762.1.4.1146.1748_20230602','2.16.840.1.113762.1.4.1146.1748_86294001');
-INSERT INTO valueset_to_concept VALUES('5860','2.16.840.1.113762.1.4.1146.1748_20230602','2.16.840.1.113762.1.4.1146.1748_88687001');
-INSERT INTO valueset_to_concept VALUES('5861','2.16.840.1.113762.1.4.1146.1748_20230602','2.16.840.1.113762.1.4.1146.1748_37711000');
-INSERT INTO valueset_to_concept VALUES('5862','2.16.840.1.113762.1.4.1146.1505_20240123','2.16.840.1.113762.1.4.1146.1505_127631000119105');
-INSERT INTO valueset_to_concept VALUES('5863','2.16.840.1.113762.1.4.1146.1505_20240123','2.16.840.1.113762.1.4.1146.1505_15693201000119102');
-INSERT INTO valueset_to_concept VALUES('5864','2.16.840.1.113762.1.4.1146.1505_20240123','2.16.840.1.113762.1.4.1146.1505_15693241000119100');
-INSERT INTO valueset_to_concept VALUES('5865','2.16.840.1.113762.1.4.1146.1505_20240123','2.16.840.1.113762.1.4.1146.1505_15693281000119105');
-INSERT INTO valueset_to_concept VALUES('5866','2.16.840.1.113762.1.4.1146.1505_20240123','2.16.840.1.113762.1.4.1146.1505_15698841000119105');
-INSERT INTO valueset_to_concept VALUES('5867','2.16.840.1.113762.1.4.1146.1505_20240123','2.16.840.1.113762.1.4.1146.1505_15698881000119100');
-INSERT INTO valueset_to_concept VALUES('5868','2.16.840.1.113762.1.4.1146.1505_20240123','2.16.840.1.113762.1.4.1146.1505_231896005');
-INSERT INTO valueset_to_concept VALUES('5869','2.16.840.1.113762.1.4.1146.1505_20240123','2.16.840.1.113762.1.4.1146.1505_711645008');
-INSERT INTO valueset_to_concept VALUES('5870','2.16.840.1.113762.1.4.1146.1505_20240123','2.16.840.1.113762.1.4.1146.1505_840444002');
-INSERT INTO valueset_to_concept VALUES('5871','2.16.840.1.113762.1.4.1146.1505_20240123','2.16.840.1.113762.1.4.1146.1505_840484006');
-INSERT INTO valueset_to_concept VALUES('5872','2.16.840.1.113762.1.4.1146.1508_20220118','2.16.840.1.113762.1.4.1146.1508_T57.0X');
-INSERT INTO valueset_to_concept VALUES('5873','2.16.840.1.113762.1.4.1146.1508_20220118','2.16.840.1.113762.1.4.1146.1508_T57.0X1');
-INSERT INTO valueset_to_concept VALUES('5874','2.16.840.1.113762.1.4.1146.1508_20220118','2.16.840.1.113762.1.4.1146.1508_T57.0X1A');
-INSERT INTO valueset_to_concept VALUES('5875','2.16.840.1.113762.1.4.1146.1508_20220118','2.16.840.1.113762.1.4.1146.1508_T57.0X1D');
-INSERT INTO valueset_to_concept VALUES('5876','2.16.840.1.113762.1.4.1146.1508_20220118','2.16.840.1.113762.1.4.1146.1508_T57.0X1S');
-INSERT INTO valueset_to_concept VALUES('5877','2.16.840.1.113762.1.4.1146.1508_20220118','2.16.840.1.113762.1.4.1146.1508_T57.0X4');
-INSERT INTO valueset_to_concept VALUES('5878','2.16.840.1.113762.1.4.1146.1508_20220118','2.16.840.1.113762.1.4.1146.1508_T57.0X4A');
-INSERT INTO valueset_to_concept VALUES('5879','2.16.840.1.113762.1.4.1146.1508_20220118','2.16.840.1.113762.1.4.1146.1508_T57.0X4D');
-INSERT INTO valueset_to_concept VALUES('5880','2.16.840.1.113762.1.4.1146.1508_20220118','2.16.840.1.113762.1.4.1146.1508_T57.0X4S');
-INSERT INTO valueset_to_concept VALUES('5881','2.16.840.1.113762.1.4.1146.1507_20230125','2.16.840.1.113762.1.4.1146.1507_1186872009');
-INSERT INTO valueset_to_concept VALUES('5882','2.16.840.1.113762.1.4.1146.1507_20230125','2.16.840.1.113762.1.4.1146.1507_212516009');
-INSERT INTO valueset_to_concept VALUES('5883','2.16.840.1.113762.1.4.1146.1507_20230125','2.16.840.1.113762.1.4.1146.1507_216792005');
-INSERT INTO valueset_to_concept VALUES('5884','2.16.840.1.113762.1.4.1146.1507_20230125','2.16.840.1.113762.1.4.1146.1507_216794006');
-INSERT INTO valueset_to_concept VALUES('5885','2.16.840.1.113762.1.4.1146.1507_20230125','2.16.840.1.113762.1.4.1146.1507_216795007');
-INSERT INTO valueset_to_concept VALUES('5886','2.16.840.1.113762.1.4.1146.1507_20230125','2.16.840.1.113762.1.4.1146.1507_241770003');
-INSERT INTO valueset_to_concept VALUES('5887','2.16.840.1.113762.1.4.1146.1507_20230125','2.16.840.1.113762.1.4.1146.1507_241771004');
-INSERT INTO valueset_to_concept VALUES('5888','2.16.840.1.113762.1.4.1146.1507_20230125','2.16.840.1.113762.1.4.1146.1507_360406006');
-INSERT INTO valueset_to_concept VALUES('5889','2.16.840.1.113762.1.4.1146.1507_20230125','2.16.840.1.113762.1.4.1146.1507_36730005');
-INSERT INTO valueset_to_concept VALUES('5890','2.16.840.1.113762.1.4.1146.1507_20230125','2.16.840.1.113762.1.4.1146.1507_403740003');
-INSERT INTO valueset_to_concept VALUES('5891','2.16.840.1.113762.1.4.1146.1507_20230125','2.16.840.1.113762.1.4.1146.1507_403741004');
-INSERT INTO valueset_to_concept VALUES('5892','2.16.840.1.113762.1.4.1146.1507_20230125','2.16.840.1.113762.1.4.1146.1507_403743001');
-INSERT INTO valueset_to_concept VALUES('5893','2.16.840.1.113762.1.4.1146.1507_20230125','2.16.840.1.113762.1.4.1146.1507_403744007');
-INSERT INTO valueset_to_concept VALUES('5894','2.16.840.1.113762.1.4.1146.1507_20230125','2.16.840.1.113762.1.4.1146.1507_403745008');
-INSERT INTO valueset_to_concept VALUES('5895','2.16.840.1.113762.1.4.1146.1507_20230125','2.16.840.1.113762.1.4.1146.1507_418685002');
-INSERT INTO valueset_to_concept VALUES('5896','2.16.840.1.113762.1.4.1146.1507_20230125','2.16.840.1.113762.1.4.1146.1507_62210001');
-INSERT INTO valueset_to_concept VALUES('5897','2.16.840.1.113762.1.4.1146.1507_20230125','2.16.840.1.113762.1.4.1146.1507_72501006');
-INSERT INTO valueset_to_concept VALUES('5898','2.16.840.1.113762.1.4.1146.1507_20230125','2.16.840.1.113762.1.4.1146.1507_767146004');
-INSERT INTO valueset_to_concept VALUES('5899','2.16.840.1.113762.1.4.1146.1507_20230125','2.16.840.1.113762.1.4.1146.1507_871783000');
-INSERT INTO valueset_to_concept VALUES('5900','2.16.840.1.113762.1.4.1146.1507_20230125','2.16.840.1.113762.1.4.1146.1507_89738003');
-INSERT INTO valueset_to_concept VALUES('5901','2.16.840.1.113762.1.4.1146.1507_20230125','2.16.840.1.113762.1.4.1146.1507_403742006');
-INSERT INTO valueset_to_concept VALUES('5902','2.16.840.1.113762.1.4.1146.1749_20230125','2.16.840.1.113762.1.4.1146.1749_J68.0');
-INSERT INTO valueset_to_concept VALUES('5903','2.16.840.1.113762.1.4.1146.1749_20230125','2.16.840.1.113762.1.4.1146.1749_J69.1');
-INSERT INTO valueset_to_concept VALUES('5904','2.16.840.1.113762.1.4.1146.1749_20230125','2.16.840.1.113762.1.4.1146.1749_J95.4');
-INSERT INTO valueset_to_concept VALUES('5905','2.16.840.1.113762.1.4.1146.1743_20220602','2.16.840.1.113762.1.4.1146.1743_186150001');
-INSERT INTO valueset_to_concept VALUES('5906','2.16.840.1.113762.1.4.1146.1743_20220602','2.16.840.1.113762.1.4.1146.1743_18624000');
-INSERT INTO valueset_to_concept VALUES('5907','2.16.840.1.113762.1.4.1146.1743_20220602','2.16.840.1.113762.1.4.1146.1743_415353009');
-INSERT INTO valueset_to_concept VALUES('5908','2.16.840.1.113762.1.4.1146.1743_20220602','2.16.840.1.113762.1.4.1146.1743_415822001');
-INSERT INTO valueset_to_concept VALUES('5909','2.16.840.1.113762.1.4.1146.1864_20230602','2.16.840.1.113762.1.4.1146.1864_266160004');
-INSERT INTO valueset_to_concept VALUES('5910','2.16.840.1.113762.1.4.1146.1864_20230602','2.16.840.1.113762.1.4.1146.1864_69163003');
-INSERT INTO valueset_to_concept VALUES('5911','2.16.840.1.113762.1.4.1146.1864_20230602','2.16.840.1.113762.1.4.1146.1864_76172008');
-INSERT INTO valueset_to_concept VALUES('5912','2.16.840.1.113762.1.4.1146.1864_20230602','2.16.840.1.113762.1.4.1146.1864_870298008');
-INSERT INTO valueset_to_concept VALUES('5913','2.16.840.1.113762.1.4.1146.1864_20230602','2.16.840.1.113762.1.4.1146.1864_1163537001');
-INSERT INTO valueset_to_concept VALUES('5914','2.16.840.1.113762.1.4.1146.1864_20230602','2.16.840.1.113762.1.4.1146.1864_240818004');
-INSERT INTO valueset_to_concept VALUES('5915','2.16.840.1.113762.1.4.1146.1864_20230602','2.16.840.1.113762.1.4.1146.1864_870302000');
-INSERT INTO valueset_to_concept VALUES('5916','2.16.840.1.113762.1.4.1146.1864_20230602','2.16.840.1.113762.1.4.1146.1864_721824003');
-INSERT INTO valueset_to_concept VALUES('5917','2.16.840.1.113762.1.4.1146.1864_20230602','2.16.840.1.113762.1.4.1146.1864_721825002');
-INSERT INTO valueset_to_concept VALUES('5918','2.16.840.1.113762.1.4.1146.1865_20220603','2.16.840.1.113762.1.4.1146.1865_B68');
-INSERT INTO valueset_to_concept VALUES('5919','2.16.840.1.113762.1.4.1146.1865_20220603','2.16.840.1.113762.1.4.1146.1865_B68.0');
-INSERT INTO valueset_to_concept VALUES('5920','2.16.840.1.113762.1.4.1146.1865_20220603','2.16.840.1.113762.1.4.1146.1865_B68.1');
-INSERT INTO valueset_to_concept VALUES('5921','2.16.840.1.113762.1.4.1146.1865_20220603','2.16.840.1.113762.1.4.1146.1865_B68.9');
-INSERT INTO valueset_to_concept VALUES('5922','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S00.00XA');
-INSERT INTO valueset_to_concept VALUES('5923','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S00.01XA');
-INSERT INTO valueset_to_concept VALUES('5924','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S00.03XA');
-INSERT INTO valueset_to_concept VALUES('5925','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S00.07XA');
-INSERT INTO valueset_to_concept VALUES('5926','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S00.10XA');
-INSERT INTO valueset_to_concept VALUES('5927','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S00.11XA');
-INSERT INTO valueset_to_concept VALUES('5928','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S00.12XA');
-INSERT INTO valueset_to_concept VALUES('5929','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S00.201A');
-INSERT INTO valueset_to_concept VALUES('5930','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S00.202A');
-INSERT INTO valueset_to_concept VALUES('5931','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S00.209A');
-INSERT INTO valueset_to_concept VALUES('5932','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S00.211A');
-INSERT INTO valueset_to_concept VALUES('5933','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S00.212A');
-INSERT INTO valueset_to_concept VALUES('5934','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S00.219A');
-INSERT INTO valueset_to_concept VALUES('5935','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S00.271A');
-INSERT INTO valueset_to_concept VALUES('5936','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S00.272A');
-INSERT INTO valueset_to_concept VALUES('5937','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S00.279A');
-INSERT INTO valueset_to_concept VALUES('5938','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S00.30XA');
-INSERT INTO valueset_to_concept VALUES('5939','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S00.31XA');
-INSERT INTO valueset_to_concept VALUES('5940','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S00.33XA');
-INSERT INTO valueset_to_concept VALUES('5941','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S00.37XA');
-INSERT INTO valueset_to_concept VALUES('5942','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S00.401A');
-INSERT INTO valueset_to_concept VALUES('5943','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S00.402A');
-INSERT INTO valueset_to_concept VALUES('5944','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S00.409A');
-INSERT INTO valueset_to_concept VALUES('5945','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S00.411A');
-INSERT INTO valueset_to_concept VALUES('5946','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S00.412A');
-INSERT INTO valueset_to_concept VALUES('5947','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S00.419A');
-INSERT INTO valueset_to_concept VALUES('5948','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S00.431A');
-INSERT INTO valueset_to_concept VALUES('5949','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S00.432A');
-INSERT INTO valueset_to_concept VALUES('5950','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S00.439A');
-INSERT INTO valueset_to_concept VALUES('5951','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S00.471A');
-INSERT INTO valueset_to_concept VALUES('5952','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S00.472A');
-INSERT INTO valueset_to_concept VALUES('5953','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S00.479A');
-INSERT INTO valueset_to_concept VALUES('5954','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S00.501A');
-INSERT INTO valueset_to_concept VALUES('5955','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S00.502A');
-INSERT INTO valueset_to_concept VALUES('5956','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S00.511A');
-INSERT INTO valueset_to_concept VALUES('5957','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S00.512A');
-INSERT INTO valueset_to_concept VALUES('5958','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S00.531A');
-INSERT INTO valueset_to_concept VALUES('5959','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S00.532A');
-INSERT INTO valueset_to_concept VALUES('5960','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S00.571A');
-INSERT INTO valueset_to_concept VALUES('5961','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S00.572A');
-INSERT INTO valueset_to_concept VALUES('5962','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S00.80XA');
-INSERT INTO valueset_to_concept VALUES('5963','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S00.81XA');
-INSERT INTO valueset_to_concept VALUES('5964','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S00.83XA');
-INSERT INTO valueset_to_concept VALUES('5965','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S00.87XA');
-INSERT INTO valueset_to_concept VALUES('5966','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S00.90XA');
-INSERT INTO valueset_to_concept VALUES('5967','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S00.91XA');
-INSERT INTO valueset_to_concept VALUES('5968','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S00.93XA');
-INSERT INTO valueset_to_concept VALUES('5969','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S00.97XA');
-INSERT INTO valueset_to_concept VALUES('5970','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.00XA');
-INSERT INTO valueset_to_concept VALUES('5971','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.01XA');
-INSERT INTO valueset_to_concept VALUES('5972','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.02XA');
-INSERT INTO valueset_to_concept VALUES('5973','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.03XA');
-INSERT INTO valueset_to_concept VALUES('5974','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.04XA');
-INSERT INTO valueset_to_concept VALUES('5975','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.05XA');
-INSERT INTO valueset_to_concept VALUES('5976','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.101A');
-INSERT INTO valueset_to_concept VALUES('5977','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.102A');
-INSERT INTO valueset_to_concept VALUES('5978','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.109A');
-INSERT INTO valueset_to_concept VALUES('5979','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.111A');
-INSERT INTO valueset_to_concept VALUES('5980','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.112A');
-INSERT INTO valueset_to_concept VALUES('5981','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.119A');
-INSERT INTO valueset_to_concept VALUES('5982','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.121A');
-INSERT INTO valueset_to_concept VALUES('5983','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.122A');
-INSERT INTO valueset_to_concept VALUES('5984','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.129A');
-INSERT INTO valueset_to_concept VALUES('5985','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.131A');
-INSERT INTO valueset_to_concept VALUES('5986','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.132A');
-INSERT INTO valueset_to_concept VALUES('5987','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.139A');
-INSERT INTO valueset_to_concept VALUES('5988','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.141A');
-INSERT INTO valueset_to_concept VALUES('5989','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.142A');
-INSERT INTO valueset_to_concept VALUES('5990','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.149A');
-INSERT INTO valueset_to_concept VALUES('5991','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.151A');
-INSERT INTO valueset_to_concept VALUES('5992','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.152A');
-INSERT INTO valueset_to_concept VALUES('5993','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.159A');
-INSERT INTO valueset_to_concept VALUES('5994','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.20XA');
-INSERT INTO valueset_to_concept VALUES('5995','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.21XA');
-INSERT INTO valueset_to_concept VALUES('5996','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.22XA');
-INSERT INTO valueset_to_concept VALUES('5997','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.23XA');
-INSERT INTO valueset_to_concept VALUES('5998','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.24XA');
-INSERT INTO valueset_to_concept VALUES('5999','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.25XA');
-INSERT INTO valueset_to_concept VALUES('6000','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.301A');
-INSERT INTO valueset_to_concept VALUES('6001','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.302A');
-INSERT INTO valueset_to_concept VALUES('6002','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.309A');
-INSERT INTO valueset_to_concept VALUES('6003','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.311A');
-INSERT INTO valueset_to_concept VALUES('6004','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.312A');
-INSERT INTO valueset_to_concept VALUES('6005','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.319A');
-INSERT INTO valueset_to_concept VALUES('6006','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.321A');
-INSERT INTO valueset_to_concept VALUES('6007','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.322A');
-INSERT INTO valueset_to_concept VALUES('6008','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.329A');
-INSERT INTO valueset_to_concept VALUES('6009','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.331A');
-INSERT INTO valueset_to_concept VALUES('6010','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.332A');
-INSERT INTO valueset_to_concept VALUES('6011','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.339A');
-INSERT INTO valueset_to_concept VALUES('6012','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.341A');
-INSERT INTO valueset_to_concept VALUES('6013','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.342A');
-INSERT INTO valueset_to_concept VALUES('6014','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.349A');
-INSERT INTO valueset_to_concept VALUES('6015','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.351A');
-INSERT INTO valueset_to_concept VALUES('6016','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.352A');
-INSERT INTO valueset_to_concept VALUES('6017','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.359A');
-INSERT INTO valueset_to_concept VALUES('6018','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.401A');
-INSERT INTO valueset_to_concept VALUES('6019','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.402A');
-INSERT INTO valueset_to_concept VALUES('6020','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.409A');
-INSERT INTO valueset_to_concept VALUES('6021','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.411A');
-INSERT INTO valueset_to_concept VALUES('6022','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.412A');
-INSERT INTO valueset_to_concept VALUES('6023','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.419A');
-INSERT INTO valueset_to_concept VALUES('6024','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.421A');
-INSERT INTO valueset_to_concept VALUES('6025','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.422A');
-INSERT INTO valueset_to_concept VALUES('6026','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.429A');
-INSERT INTO valueset_to_concept VALUES('6027','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.431A');
-INSERT INTO valueset_to_concept VALUES('6028','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.432A');
-INSERT INTO valueset_to_concept VALUES('6029','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.439A');
-INSERT INTO valueset_to_concept VALUES('6030','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.441A');
-INSERT INTO valueset_to_concept VALUES('6031','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.442A');
-INSERT INTO valueset_to_concept VALUES('6032','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.449A');
-INSERT INTO valueset_to_concept VALUES('6033','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.451A');
-INSERT INTO valueset_to_concept VALUES('6034','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.452A');
-INSERT INTO valueset_to_concept VALUES('6035','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.459A');
-INSERT INTO valueset_to_concept VALUES('6036','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.501A');
-INSERT INTO valueset_to_concept VALUES('6037','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.502A');
-INSERT INTO valueset_to_concept VALUES('6038','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.511A');
-INSERT INTO valueset_to_concept VALUES('6039','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.512A');
-INSERT INTO valueset_to_concept VALUES('6040','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.521A');
-INSERT INTO valueset_to_concept VALUES('6041','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.522A');
-INSERT INTO valueset_to_concept VALUES('6042','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.531A');
-INSERT INTO valueset_to_concept VALUES('6043','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.532A');
-INSERT INTO valueset_to_concept VALUES('6044','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.541A');
-INSERT INTO valueset_to_concept VALUES('6045','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.542A');
-INSERT INTO valueset_to_concept VALUES('6046','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.551A');
-INSERT INTO valueset_to_concept VALUES('6047','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.552A');
-INSERT INTO valueset_to_concept VALUES('6048','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.80XA');
-INSERT INTO valueset_to_concept VALUES('6049','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.81XA');
-INSERT INTO valueset_to_concept VALUES('6050','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.82XA');
-INSERT INTO valueset_to_concept VALUES('6051','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.83XA');
-INSERT INTO valueset_to_concept VALUES('6052','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.84XA');
-INSERT INTO valueset_to_concept VALUES('6053','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.85XA');
-INSERT INTO valueset_to_concept VALUES('6054','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.90XA');
-INSERT INTO valueset_to_concept VALUES('6055','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.91XA');
-INSERT INTO valueset_to_concept VALUES('6056','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.92XA');
-INSERT INTO valueset_to_concept VALUES('6057','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.93XA');
-INSERT INTO valueset_to_concept VALUES('6058','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.94XA');
-INSERT INTO valueset_to_concept VALUES('6059','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S01.95XA');
-INSERT INTO valueset_to_concept VALUES('6060','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.2XXA');
-INSERT INTO valueset_to_concept VALUES('6061','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.2XXB');
-INSERT INTO valueset_to_concept VALUES('6062','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.30XA');
-INSERT INTO valueset_to_concept VALUES('6063','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.30XB');
-INSERT INTO valueset_to_concept VALUES('6064','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.31XA');
-INSERT INTO valueset_to_concept VALUES('6065','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.31XB');
-INSERT INTO valueset_to_concept VALUES('6066','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.32XA');
-INSERT INTO valueset_to_concept VALUES('6067','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.32XB');
-INSERT INTO valueset_to_concept VALUES('6068','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.400A');
-INSERT INTO valueset_to_concept VALUES('6069','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.400B');
-INSERT INTO valueset_to_concept VALUES('6070','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.401A');
-INSERT INTO valueset_to_concept VALUES('6071','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.401B');
-INSERT INTO valueset_to_concept VALUES('6072','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.402A');
-INSERT INTO valueset_to_concept VALUES('6073','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.402B');
-INSERT INTO valueset_to_concept VALUES('6074','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.40AA');
-INSERT INTO valueset_to_concept VALUES('6075','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.40AB');
-INSERT INTO valueset_to_concept VALUES('6076','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.40BA');
-INSERT INTO valueset_to_concept VALUES('6077','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.40BB');
-INSERT INTO valueset_to_concept VALUES('6078','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.40CA');
-INSERT INTO valueset_to_concept VALUES('6079','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.40CB');
-INSERT INTO valueset_to_concept VALUES('6080','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.40DA');
-INSERT INTO valueset_to_concept VALUES('6081','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.40DB');
-INSERT INTO valueset_to_concept VALUES('6082','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.40EA');
-INSERT INTO valueset_to_concept VALUES('6083','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.40EB');
-INSERT INTO valueset_to_concept VALUES('6084','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.40FA');
-INSERT INTO valueset_to_concept VALUES('6085','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.40FB');
-INSERT INTO valueset_to_concept VALUES('6086','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.411A');
-INSERT INTO valueset_to_concept VALUES('6087','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.411B');
-INSERT INTO valueset_to_concept VALUES('6088','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.412A');
-INSERT INTO valueset_to_concept VALUES('6089','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.412B');
-INSERT INTO valueset_to_concept VALUES('6090','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.413A');
-INSERT INTO valueset_to_concept VALUES('6091','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.413B');
-INSERT INTO valueset_to_concept VALUES('6092','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.42XA');
-INSERT INTO valueset_to_concept VALUES('6093','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.42XB');
-INSERT INTO valueset_to_concept VALUES('6094','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.5XXA');
-INSERT INTO valueset_to_concept VALUES('6095','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.5XXB');
-INSERT INTO valueset_to_concept VALUES('6096','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.600A');
-INSERT INTO valueset_to_concept VALUES('6097','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.600B');
-INSERT INTO valueset_to_concept VALUES('6098','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.601A');
-INSERT INTO valueset_to_concept VALUES('6099','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.601B');
-INSERT INTO valueset_to_concept VALUES('6100','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.602A');
-INSERT INTO valueset_to_concept VALUES('6101','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.602B');
-INSERT INTO valueset_to_concept VALUES('6102','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.609A');
-INSERT INTO valueset_to_concept VALUES('6103','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.609B');
-INSERT INTO valueset_to_concept VALUES('6104','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.610A');
-INSERT INTO valueset_to_concept VALUES('6105','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.610B');
-INSERT INTO valueset_to_concept VALUES('6106','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.611A');
-INSERT INTO valueset_to_concept VALUES('6107','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.611B');
-INSERT INTO valueset_to_concept VALUES('6108','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.612A');
-INSERT INTO valueset_to_concept VALUES('6109','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.612B');
-INSERT INTO valueset_to_concept VALUES('6110','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.620A');
-INSERT INTO valueset_to_concept VALUES('6111','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.620B');
-INSERT INTO valueset_to_concept VALUES('6112','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.621A');
-INSERT INTO valueset_to_concept VALUES('6113','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.621B');
-INSERT INTO valueset_to_concept VALUES('6114','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.622A');
-INSERT INTO valueset_to_concept VALUES('6115','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.622B');
-INSERT INTO valueset_to_concept VALUES('6116','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.630A');
-INSERT INTO valueset_to_concept VALUES('6117','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.630B');
-INSERT INTO valueset_to_concept VALUES('6118','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.631A');
-INSERT INTO valueset_to_concept VALUES('6119','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.631B');
-INSERT INTO valueset_to_concept VALUES('6120','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.632A');
-INSERT INTO valueset_to_concept VALUES('6121','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.632B');
-INSERT INTO valueset_to_concept VALUES('6122','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.640A');
-INSERT INTO valueset_to_concept VALUES('6123','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.640B');
-INSERT INTO valueset_to_concept VALUES('6124','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.641A');
-INSERT INTO valueset_to_concept VALUES('6125','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.641B');
-INSERT INTO valueset_to_concept VALUES('6126','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.642A');
-INSERT INTO valueset_to_concept VALUES('6127','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.642B');
-INSERT INTO valueset_to_concept VALUES('6128','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.650A');
-INSERT INTO valueset_to_concept VALUES('6129','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.650B');
-INSERT INTO valueset_to_concept VALUES('6130','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.651A');
-INSERT INTO valueset_to_concept VALUES('6131','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.651B');
-INSERT INTO valueset_to_concept VALUES('6132','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.652A');
-INSERT INTO valueset_to_concept VALUES('6133','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.652B');
-INSERT INTO valueset_to_concept VALUES('6134','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.66XA');
-INSERT INTO valueset_to_concept VALUES('6135','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.66XB');
-INSERT INTO valueset_to_concept VALUES('6136','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.670A');
-INSERT INTO valueset_to_concept VALUES('6137','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.670B');
-INSERT INTO valueset_to_concept VALUES('6138','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.671A');
-INSERT INTO valueset_to_concept VALUES('6139','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.671B');
-INSERT INTO valueset_to_concept VALUES('6140','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.672A');
-INSERT INTO valueset_to_concept VALUES('6141','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.672B');
-INSERT INTO valueset_to_concept VALUES('6142','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.69XA');
-INSERT INTO valueset_to_concept VALUES('6143','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.69XB');
-INSERT INTO valueset_to_concept VALUES('6144','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.831A');
-INSERT INTO valueset_to_concept VALUES('6145','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.831B');
-INSERT INTO valueset_to_concept VALUES('6146','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.832A');
-INSERT INTO valueset_to_concept VALUES('6147','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.832B');
-INSERT INTO valueset_to_concept VALUES('6148','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.839A');
-INSERT INTO valueset_to_concept VALUES('6149','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.839B');
-INSERT INTO valueset_to_concept VALUES('6150','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.841A');
-INSERT INTO valueset_to_concept VALUES('6151','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.841B');
-INSERT INTO valueset_to_concept VALUES('6152','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.842A');
-INSERT INTO valueset_to_concept VALUES('6153','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.842B');
-INSERT INTO valueset_to_concept VALUES('6154','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.849A');
-INSERT INTO valueset_to_concept VALUES('6155','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.849B');
-INSERT INTO valueset_to_concept VALUES('6156','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.85XA');
-INSERT INTO valueset_to_concept VALUES('6157','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.85XB');
-INSERT INTO valueset_to_concept VALUES('6158','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.92XA');
-INSERT INTO valueset_to_concept VALUES('6159','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.92XB');
-INSERT INTO valueset_to_concept VALUES('6160','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S03.00XA');
-INSERT INTO valueset_to_concept VALUES('6161','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S03.01XA');
-INSERT INTO valueset_to_concept VALUES('6162','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S03.02XA');
-INSERT INTO valueset_to_concept VALUES('6163','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S03.03XA');
-INSERT INTO valueset_to_concept VALUES('6164','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S03.1XXA');
-INSERT INTO valueset_to_concept VALUES('6165','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S03.2XXA');
-INSERT INTO valueset_to_concept VALUES('6166','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S04.011A');
-INSERT INTO valueset_to_concept VALUES('6167','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S04.012A');
-INSERT INTO valueset_to_concept VALUES('6168','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S04.019A');
-INSERT INTO valueset_to_concept VALUES('6169','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S04.10XA');
-INSERT INTO valueset_to_concept VALUES('6170','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S04.11XA');
-INSERT INTO valueset_to_concept VALUES('6171','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S04.12XA');
-INSERT INTO valueset_to_concept VALUES('6172','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S04.20XA');
-INSERT INTO valueset_to_concept VALUES('6173','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S04.21XA');
-INSERT INTO valueset_to_concept VALUES('6174','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S04.22XA');
-INSERT INTO valueset_to_concept VALUES('6175','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S04.30XA');
-INSERT INTO valueset_to_concept VALUES('6176','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S04.31XA');
-INSERT INTO valueset_to_concept VALUES('6177','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S04.32XA');
-INSERT INTO valueset_to_concept VALUES('6178','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S04.40XA');
-INSERT INTO valueset_to_concept VALUES('6179','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S04.41XA');
-INSERT INTO valueset_to_concept VALUES('6180','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S04.42XA');
-INSERT INTO valueset_to_concept VALUES('6181','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S04.50XA');
-INSERT INTO valueset_to_concept VALUES('6182','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S04.51XA');
-INSERT INTO valueset_to_concept VALUES('6183','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S04.52XA');
-INSERT INTO valueset_to_concept VALUES('6184','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S04.60XA');
-INSERT INTO valueset_to_concept VALUES('6185','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S04.61XA');
-INSERT INTO valueset_to_concept VALUES('6186','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S04.62XA');
-INSERT INTO valueset_to_concept VALUES('6187','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S04.70XA');
-INSERT INTO valueset_to_concept VALUES('6188','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S04.71XA');
-INSERT INTO valueset_to_concept VALUES('6189','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S04.72XA');
-INSERT INTO valueset_to_concept VALUES('6190','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S04.811A');
-INSERT INTO valueset_to_concept VALUES('6191','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S04.812A');
-INSERT INTO valueset_to_concept VALUES('6192','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S04.819A');
-INSERT INTO valueset_to_concept VALUES('6193','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S04.891A');
-INSERT INTO valueset_to_concept VALUES('6194','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S04.892A');
-INSERT INTO valueset_to_concept VALUES('6195','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S04.899A');
-INSERT INTO valueset_to_concept VALUES('6196','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S04.9XXA');
-INSERT INTO valueset_to_concept VALUES('6197','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S05.00XA');
-INSERT INTO valueset_to_concept VALUES('6198','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S05.01XA');
-INSERT INTO valueset_to_concept VALUES('6199','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S05.02XA');
-INSERT INTO valueset_to_concept VALUES('6200','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S05.10XA');
-INSERT INTO valueset_to_concept VALUES('6201','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S05.11XA');
-INSERT INTO valueset_to_concept VALUES('6202','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S05.12XA');
-INSERT INTO valueset_to_concept VALUES('6203','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S05.20XA');
-INSERT INTO valueset_to_concept VALUES('6204','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S05.21XA');
-INSERT INTO valueset_to_concept VALUES('6205','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S05.22XA');
-INSERT INTO valueset_to_concept VALUES('6206','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S05.30XA');
-INSERT INTO valueset_to_concept VALUES('6207','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S05.31XA');
-INSERT INTO valueset_to_concept VALUES('6208','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S05.32XA');
-INSERT INTO valueset_to_concept VALUES('6209','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S05.40XA');
-INSERT INTO valueset_to_concept VALUES('6210','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S05.41XA');
-INSERT INTO valueset_to_concept VALUES('6211','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S05.42XA');
-INSERT INTO valueset_to_concept VALUES('6212','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S05.50XA');
-INSERT INTO valueset_to_concept VALUES('6213','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S05.51XA');
-INSERT INTO valueset_to_concept VALUES('6214','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S05.52XA');
-INSERT INTO valueset_to_concept VALUES('6215','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S05.60XA');
-INSERT INTO valueset_to_concept VALUES('6216','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S05.61XA');
-INSERT INTO valueset_to_concept VALUES('6217','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S05.62XA');
-INSERT INTO valueset_to_concept VALUES('6218','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S05.70XA');
-INSERT INTO valueset_to_concept VALUES('6219','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S05.71XA');
-INSERT INTO valueset_to_concept VALUES('6220','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S05.72XA');
-INSERT INTO valueset_to_concept VALUES('6221','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S05.8X1A');
-INSERT INTO valueset_to_concept VALUES('6222','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S05.8X2A');
-INSERT INTO valueset_to_concept VALUES('6223','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S05.8X9A');
-INSERT INTO valueset_to_concept VALUES('6224','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S05.90XA');
-INSERT INTO valueset_to_concept VALUES('6225','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S05.91XA');
-INSERT INTO valueset_to_concept VALUES('6226','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S05.92XA');
-INSERT INTO valueset_to_concept VALUES('6227','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S07.0XXA');
-INSERT INTO valueset_to_concept VALUES('6228','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S07.8XXA');
-INSERT INTO valueset_to_concept VALUES('6229','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S07.9XXA');
-INSERT INTO valueset_to_concept VALUES('6230','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S08.0XXA');
-INSERT INTO valueset_to_concept VALUES('6231','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S08.111A');
-INSERT INTO valueset_to_concept VALUES('6232','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S08.112A');
-INSERT INTO valueset_to_concept VALUES('6233','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S08.119A');
-INSERT INTO valueset_to_concept VALUES('6234','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S08.121A');
-INSERT INTO valueset_to_concept VALUES('6235','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S08.122A');
-INSERT INTO valueset_to_concept VALUES('6236','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S08.129A');
-INSERT INTO valueset_to_concept VALUES('6237','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S08.811A');
-INSERT INTO valueset_to_concept VALUES('6238','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S08.812A');
-INSERT INTO valueset_to_concept VALUES('6239','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S08.89XA');
-INSERT INTO valueset_to_concept VALUES('6240','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S09.0XXA');
-INSERT INTO valueset_to_concept VALUES('6241','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S09.10XA');
-INSERT INTO valueset_to_concept VALUES('6242','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S09.12XA');
-INSERT INTO valueset_to_concept VALUES('6243','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S09.19XA');
-INSERT INTO valueset_to_concept VALUES('6244','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S09.20XA');
-INSERT INTO valueset_to_concept VALUES('6245','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S09.21XA');
-INSERT INTO valueset_to_concept VALUES('6246','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S09.22XA');
-INSERT INTO valueset_to_concept VALUES('6247','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S09.301A');
-INSERT INTO valueset_to_concept VALUES('6248','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S09.302A');
-INSERT INTO valueset_to_concept VALUES('6249','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S09.309A');
-INSERT INTO valueset_to_concept VALUES('6250','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S09.311A');
-INSERT INTO valueset_to_concept VALUES('6251','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S09.312A');
-INSERT INTO valueset_to_concept VALUES('6252','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S09.313A');
-INSERT INTO valueset_to_concept VALUES('6253','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S09.319A');
-INSERT INTO valueset_to_concept VALUES('6254','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S09.391A');
-INSERT INTO valueset_to_concept VALUES('6255','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S09.392A');
-INSERT INTO valueset_to_concept VALUES('6256','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S09.399A');
-INSERT INTO valueset_to_concept VALUES('6257','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S09.8XXA');
-INSERT INTO valueset_to_concept VALUES('6258','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S09.90XA');
-INSERT INTO valueset_to_concept VALUES('6259','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S09.91XA');
-INSERT INTO valueset_to_concept VALUES('6260','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S09.92XA');
-INSERT INTO valueset_to_concept VALUES('6261','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S09.93XA');
-INSERT INTO valueset_to_concept VALUES('6262','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.0XXA');
-INSERT INTO valueset_to_concept VALUES('6263','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.0XXB');
-INSERT INTO valueset_to_concept VALUES('6264','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.101A');
-INSERT INTO valueset_to_concept VALUES('6265','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.101B');
-INSERT INTO valueset_to_concept VALUES('6266','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.102A');
-INSERT INTO valueset_to_concept VALUES('6267','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.102B');
-INSERT INTO valueset_to_concept VALUES('6268','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.109A');
-INSERT INTO valueset_to_concept VALUES('6269','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.109B');
-INSERT INTO valueset_to_concept VALUES('6270','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.110A');
-INSERT INTO valueset_to_concept VALUES('6271','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.110B');
-INSERT INTO valueset_to_concept VALUES('6272','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.111A');
-INSERT INTO valueset_to_concept VALUES('6273','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.111B');
-INSERT INTO valueset_to_concept VALUES('6274','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.112A');
-INSERT INTO valueset_to_concept VALUES('6275','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.112B');
-INSERT INTO valueset_to_concept VALUES('6276','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.113A');
-INSERT INTO valueset_to_concept VALUES('6277','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.113B');
-INSERT INTO valueset_to_concept VALUES('6278','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.118A');
-INSERT INTO valueset_to_concept VALUES('6279','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.118B');
-INSERT INTO valueset_to_concept VALUES('6280','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.119A');
-INSERT INTO valueset_to_concept VALUES('6281','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.119B');
-INSERT INTO valueset_to_concept VALUES('6282','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.11AA');
-INSERT INTO valueset_to_concept VALUES('6283','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.11AB');
-INSERT INTO valueset_to_concept VALUES('6284','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.11BA');
-INSERT INTO valueset_to_concept VALUES('6285','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.11BB');
-INSERT INTO valueset_to_concept VALUES('6286','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.11CA');
-INSERT INTO valueset_to_concept VALUES('6287','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.11CB');
-INSERT INTO valueset_to_concept VALUES('6288','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.11DA');
-INSERT INTO valueset_to_concept VALUES('6289','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.11DB');
-INSERT INTO valueset_to_concept VALUES('6290','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.11EA');
-INSERT INTO valueset_to_concept VALUES('6291','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.11EB');
-INSERT INTO valueset_to_concept VALUES('6292','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.11FA');
-INSERT INTO valueset_to_concept VALUES('6293','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.11FB');
-INSERT INTO valueset_to_concept VALUES('6294','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.11GA');
-INSERT INTO valueset_to_concept VALUES('6295','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.11GB');
-INSERT INTO valueset_to_concept VALUES('6296','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.11HA');
-INSERT INTO valueset_to_concept VALUES('6297','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.11HB');
-INSERT INTO valueset_to_concept VALUES('6298','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.121A');
-INSERT INTO valueset_to_concept VALUES('6299','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.121B');
-INSERT INTO valueset_to_concept VALUES('6300','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.122A');
-INSERT INTO valueset_to_concept VALUES('6301','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.122B');
-INSERT INTO valueset_to_concept VALUES('6302','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.129A');
-INSERT INTO valueset_to_concept VALUES('6303','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.129B');
-INSERT INTO valueset_to_concept VALUES('6304','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.19XA');
-INSERT INTO valueset_to_concept VALUES('6305','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.19XB');
-INSERT INTO valueset_to_concept VALUES('6306','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.80XA');
-INSERT INTO valueset_to_concept VALUES('6307','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.80XB');
-INSERT INTO valueset_to_concept VALUES('6308','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.81XA');
-INSERT INTO valueset_to_concept VALUES('6309','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.81XB');
-INSERT INTO valueset_to_concept VALUES('6310','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.82XA');
-INSERT INTO valueset_to_concept VALUES('6311','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.82XB');
-INSERT INTO valueset_to_concept VALUES('6312','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.91XA');
-INSERT INTO valueset_to_concept VALUES('6313','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S02.91XB');
-INSERT INTO valueset_to_concept VALUES('6314','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S04.02XA');
-INSERT INTO valueset_to_concept VALUES('6315','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S04.031A');
-INSERT INTO valueset_to_concept VALUES('6316','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S04.032A');
-INSERT INTO valueset_to_concept VALUES('6317','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S04.039A');
-INSERT INTO valueset_to_concept VALUES('6318','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S04.041A');
-INSERT INTO valueset_to_concept VALUES('6319','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S04.042A');
-INSERT INTO valueset_to_concept VALUES('6320','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S04.049A');
-INSERT INTO valueset_to_concept VALUES('6321','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.0X0A');
-INSERT INTO valueset_to_concept VALUES('6322','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.0X1A');
-INSERT INTO valueset_to_concept VALUES('6323','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.0X9A');
-INSERT INTO valueset_to_concept VALUES('6324','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.1X0A');
-INSERT INTO valueset_to_concept VALUES('6325','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.1X1A');
-INSERT INTO valueset_to_concept VALUES('6326','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.1X2A');
-INSERT INTO valueset_to_concept VALUES('6327','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.1X3A');
-INSERT INTO valueset_to_concept VALUES('6328','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.1X4A');
-INSERT INTO valueset_to_concept VALUES('6329','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.1X5A');
-INSERT INTO valueset_to_concept VALUES('6330','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.1X6A');
-INSERT INTO valueset_to_concept VALUES('6331','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.1X7A');
-INSERT INTO valueset_to_concept VALUES('6332','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.1X8A');
-INSERT INTO valueset_to_concept VALUES('6333','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.1X9A');
-INSERT INTO valueset_to_concept VALUES('6334','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.2X0A');
-INSERT INTO valueset_to_concept VALUES('6335','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.2X1A');
-INSERT INTO valueset_to_concept VALUES('6336','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.2X2A');
-INSERT INTO valueset_to_concept VALUES('6337','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.2X3A');
-INSERT INTO valueset_to_concept VALUES('6338','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.2X4A');
-INSERT INTO valueset_to_concept VALUES('6339','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.2X5A');
-INSERT INTO valueset_to_concept VALUES('6340','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.2X6A');
-INSERT INTO valueset_to_concept VALUES('6341','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.2X7A');
-INSERT INTO valueset_to_concept VALUES('6342','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.2X8A');
-INSERT INTO valueset_to_concept VALUES('6343','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.2X9A');
-INSERT INTO valueset_to_concept VALUES('6344','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.300A');
-INSERT INTO valueset_to_concept VALUES('6345','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.301A');
-INSERT INTO valueset_to_concept VALUES('6346','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.302A');
-INSERT INTO valueset_to_concept VALUES('6347','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.303A');
-INSERT INTO valueset_to_concept VALUES('6348','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.304A');
-INSERT INTO valueset_to_concept VALUES('6349','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.305A');
-INSERT INTO valueset_to_concept VALUES('6350','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.306A');
-INSERT INTO valueset_to_concept VALUES('6351','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.307A');
-INSERT INTO valueset_to_concept VALUES('6352','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.308A');
-INSERT INTO valueset_to_concept VALUES('6353','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.309A');
-INSERT INTO valueset_to_concept VALUES('6354','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.310A');
-INSERT INTO valueset_to_concept VALUES('6355','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.311A');
-INSERT INTO valueset_to_concept VALUES('6356','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.312A');
-INSERT INTO valueset_to_concept VALUES('6357','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.313A');
-INSERT INTO valueset_to_concept VALUES('6358','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.314A');
-INSERT INTO valueset_to_concept VALUES('6359','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.315A');
-INSERT INTO valueset_to_concept VALUES('6360','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.316A');
-INSERT INTO valueset_to_concept VALUES('6361','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.317A');
-INSERT INTO valueset_to_concept VALUES('6362','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.318A');
-INSERT INTO valueset_to_concept VALUES('6363','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.319A');
-INSERT INTO valueset_to_concept VALUES('6364','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.320A');
-INSERT INTO valueset_to_concept VALUES('6365','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.321A');
-INSERT INTO valueset_to_concept VALUES('6366','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.322A');
-INSERT INTO valueset_to_concept VALUES('6367','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.323A');
-INSERT INTO valueset_to_concept VALUES('6368','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.324A');
-INSERT INTO valueset_to_concept VALUES('6369','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.325A');
-INSERT INTO valueset_to_concept VALUES('6370','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.326A');
-INSERT INTO valueset_to_concept VALUES('6371','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.327A');
-INSERT INTO valueset_to_concept VALUES('6372','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.328A');
-INSERT INTO valueset_to_concept VALUES('6373','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.329A');
-INSERT INTO valueset_to_concept VALUES('6374','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.330A');
-INSERT INTO valueset_to_concept VALUES('6375','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.331A');
-INSERT INTO valueset_to_concept VALUES('6376','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.332A');
-INSERT INTO valueset_to_concept VALUES('6377','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.333A');
-INSERT INTO valueset_to_concept VALUES('6378','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.334A');
-INSERT INTO valueset_to_concept VALUES('6379','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.335A');
-INSERT INTO valueset_to_concept VALUES('6380','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.336A');
-INSERT INTO valueset_to_concept VALUES('6381','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.337A');
-INSERT INTO valueset_to_concept VALUES('6382','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.338A');
-INSERT INTO valueset_to_concept VALUES('6383','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.339A');
-INSERT INTO valueset_to_concept VALUES('6384','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.340A');
-INSERT INTO valueset_to_concept VALUES('6385','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.341A');
-INSERT INTO valueset_to_concept VALUES('6386','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.342A');
-INSERT INTO valueset_to_concept VALUES('6387','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.343A');
-INSERT INTO valueset_to_concept VALUES('6388','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.344A');
-INSERT INTO valueset_to_concept VALUES('6389','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.345A');
-INSERT INTO valueset_to_concept VALUES('6390','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.346A');
-INSERT INTO valueset_to_concept VALUES('6391','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.347A');
-INSERT INTO valueset_to_concept VALUES('6392','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.348A');
-INSERT INTO valueset_to_concept VALUES('6393','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.349A');
-INSERT INTO valueset_to_concept VALUES('6394','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.350A');
-INSERT INTO valueset_to_concept VALUES('6395','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.351A');
-INSERT INTO valueset_to_concept VALUES('6396','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.352A');
-INSERT INTO valueset_to_concept VALUES('6397','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.353A');
-INSERT INTO valueset_to_concept VALUES('6398','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.354A');
-INSERT INTO valueset_to_concept VALUES('6399','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.355A');
-INSERT INTO valueset_to_concept VALUES('6400','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.356A');
-INSERT INTO valueset_to_concept VALUES('6401','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.357A');
-INSERT INTO valueset_to_concept VALUES('6402','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.358A');
-INSERT INTO valueset_to_concept VALUES('6403','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.359A');
-INSERT INTO valueset_to_concept VALUES('6404','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.360A');
-INSERT INTO valueset_to_concept VALUES('6405','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.361A');
-INSERT INTO valueset_to_concept VALUES('6406','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.362A');
-INSERT INTO valueset_to_concept VALUES('6407','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.363A');
-INSERT INTO valueset_to_concept VALUES('6408','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.364A');
-INSERT INTO valueset_to_concept VALUES('6409','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.365A');
-INSERT INTO valueset_to_concept VALUES('6410','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.366A');
-INSERT INTO valueset_to_concept VALUES('6411','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.367A');
-INSERT INTO valueset_to_concept VALUES('6412','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.368A');
-INSERT INTO valueset_to_concept VALUES('6413','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.369A');
-INSERT INTO valueset_to_concept VALUES('6414','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.370A');
-INSERT INTO valueset_to_concept VALUES('6415','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.371A');
-INSERT INTO valueset_to_concept VALUES('6416','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.372A');
-INSERT INTO valueset_to_concept VALUES('6417','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.373A');
-INSERT INTO valueset_to_concept VALUES('6418','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.374A');
-INSERT INTO valueset_to_concept VALUES('6419','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.375A');
-INSERT INTO valueset_to_concept VALUES('6420','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.376A');
-INSERT INTO valueset_to_concept VALUES('6421','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.377A');
-INSERT INTO valueset_to_concept VALUES('6422','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.378A');
-INSERT INTO valueset_to_concept VALUES('6423','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.379A');
-INSERT INTO valueset_to_concept VALUES('6424','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.380A');
-INSERT INTO valueset_to_concept VALUES('6425','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.381A');
-INSERT INTO valueset_to_concept VALUES('6426','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.382A');
-INSERT INTO valueset_to_concept VALUES('6427','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.383A');
-INSERT INTO valueset_to_concept VALUES('6428','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.384A');
-INSERT INTO valueset_to_concept VALUES('6429','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.385A');
-INSERT INTO valueset_to_concept VALUES('6430','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.386A');
-INSERT INTO valueset_to_concept VALUES('6431','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.387A');
-INSERT INTO valueset_to_concept VALUES('6432','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.388A');
-INSERT INTO valueset_to_concept VALUES('6433','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.389A');
-INSERT INTO valueset_to_concept VALUES('6434','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.4X0A');
-INSERT INTO valueset_to_concept VALUES('6435','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.4X1A');
-INSERT INTO valueset_to_concept VALUES('6436','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.4X2A');
-INSERT INTO valueset_to_concept VALUES('6437','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.4X3A');
-INSERT INTO valueset_to_concept VALUES('6438','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.4X4A');
-INSERT INTO valueset_to_concept VALUES('6439','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.4X5A');
-INSERT INTO valueset_to_concept VALUES('6440','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.4X6A');
-INSERT INTO valueset_to_concept VALUES('6441','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.4X7A');
-INSERT INTO valueset_to_concept VALUES('6442','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.4X8A');
-INSERT INTO valueset_to_concept VALUES('6443','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.4X9A');
-INSERT INTO valueset_to_concept VALUES('6444','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.5X0A');
-INSERT INTO valueset_to_concept VALUES('6445','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.5X1A');
-INSERT INTO valueset_to_concept VALUES('6446','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.5X2A');
-INSERT INTO valueset_to_concept VALUES('6447','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.5X3A');
-INSERT INTO valueset_to_concept VALUES('6448','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.5X4A');
-INSERT INTO valueset_to_concept VALUES('6449','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.5X5A');
-INSERT INTO valueset_to_concept VALUES('6450','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.5X6A');
-INSERT INTO valueset_to_concept VALUES('6451','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.5X7A');
-INSERT INTO valueset_to_concept VALUES('6452','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.5X8A');
-INSERT INTO valueset_to_concept VALUES('6453','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.5X9A');
-INSERT INTO valueset_to_concept VALUES('6454','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.6X0A');
-INSERT INTO valueset_to_concept VALUES('6455','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.6X1A');
-INSERT INTO valueset_to_concept VALUES('6456','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.6X2A');
-INSERT INTO valueset_to_concept VALUES('6457','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.6X3A');
-INSERT INTO valueset_to_concept VALUES('6458','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.6X4A');
-INSERT INTO valueset_to_concept VALUES('6459','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.6X5A');
-INSERT INTO valueset_to_concept VALUES('6460','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.6X6A');
-INSERT INTO valueset_to_concept VALUES('6461','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.6X7A');
-INSERT INTO valueset_to_concept VALUES('6462','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.6X8A');
-INSERT INTO valueset_to_concept VALUES('6463','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.6X9A');
-INSERT INTO valueset_to_concept VALUES('6464','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.810A');
-INSERT INTO valueset_to_concept VALUES('6465','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.811A');
-INSERT INTO valueset_to_concept VALUES('6466','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.812A');
-INSERT INTO valueset_to_concept VALUES('6467','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.813A');
-INSERT INTO valueset_to_concept VALUES('6468','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.814A');
-INSERT INTO valueset_to_concept VALUES('6469','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.815A');
-INSERT INTO valueset_to_concept VALUES('6470','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.816A');
-INSERT INTO valueset_to_concept VALUES('6471','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.817A');
-INSERT INTO valueset_to_concept VALUES('6472','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.818A');
-INSERT INTO valueset_to_concept VALUES('6473','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.819A');
-INSERT INTO valueset_to_concept VALUES('6474','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.820A');
-INSERT INTO valueset_to_concept VALUES('6475','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.821A');
-INSERT INTO valueset_to_concept VALUES('6476','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.822A');
-INSERT INTO valueset_to_concept VALUES('6477','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.823A');
-INSERT INTO valueset_to_concept VALUES('6478','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.824A');
-INSERT INTO valueset_to_concept VALUES('6479','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.825A');
-INSERT INTO valueset_to_concept VALUES('6480','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.826A');
-INSERT INTO valueset_to_concept VALUES('6481','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.827A');
-INSERT INTO valueset_to_concept VALUES('6482','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.828A');
-INSERT INTO valueset_to_concept VALUES('6483','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.829A');
-INSERT INTO valueset_to_concept VALUES('6484','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.890A');
-INSERT INTO valueset_to_concept VALUES('6485','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.891A');
-INSERT INTO valueset_to_concept VALUES('6486','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.892A');
-INSERT INTO valueset_to_concept VALUES('6487','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.893A');
-INSERT INTO valueset_to_concept VALUES('6488','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.894A');
-INSERT INTO valueset_to_concept VALUES('6489','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.895A');
-INSERT INTO valueset_to_concept VALUES('6490','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.896A');
-INSERT INTO valueset_to_concept VALUES('6491','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.897A');
-INSERT INTO valueset_to_concept VALUES('6492','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.898A');
-INSERT INTO valueset_to_concept VALUES('6493','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.899A');
-INSERT INTO valueset_to_concept VALUES('6494','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.9X0A');
-INSERT INTO valueset_to_concept VALUES('6495','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.9X1A');
-INSERT INTO valueset_to_concept VALUES('6496','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.9X2A');
-INSERT INTO valueset_to_concept VALUES('6497','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.9X3A');
-INSERT INTO valueset_to_concept VALUES('6498','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.9X4A');
-INSERT INTO valueset_to_concept VALUES('6499','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.9X5A');
-INSERT INTO valueset_to_concept VALUES('6500','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.9X6A');
-INSERT INTO valueset_to_concept VALUES('6501','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.9X7A');
-INSERT INTO valueset_to_concept VALUES('6502','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.9X8A');
-INSERT INTO valueset_to_concept VALUES('6503','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.9X9A');
-INSERT INTO valueset_to_concept VALUES('6504','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.A0XA');
-INSERT INTO valueset_to_concept VALUES('6505','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S06.A1XA');
-INSERT INTO valueset_to_concept VALUES('6506','2.16.840.1.113762.1.4.1146.1740_20230122','2.16.840.1.113762.1.4.1146.1740_S07.1XXA');
-INSERT INTO valueset_to_concept VALUES('6507','2.16.840.1.113762.1.4.1146.1862_20220603','2.16.840.1.113762.1.4.1146.1862_371061003');
-INSERT INTO valueset_to_concept VALUES('6508','2.16.840.1.113762.1.4.1146.1862_20220603','2.16.840.1.113762.1.4.1146.1862_473051003');
-INSERT INTO valueset_to_concept VALUES('6509','2.16.840.1.113762.1.4.1146.1862_20220603','2.16.840.1.113762.1.4.1146.1862_473092007');
-INSERT INTO valueset_to_concept VALUES('6510','2.16.840.1.113762.1.4.1146.1862_20220603','2.16.840.1.113762.1.4.1146.1862_700372006');
-INSERT INTO valueset_to_concept VALUES('6511','2.16.840.1.113762.1.4.1146.1863_20220603','2.16.840.1.113762.1.4.1146.1863_T83.510A');
-INSERT INTO valueset_to_concept VALUES('6512','2.16.840.1.113762.1.4.1146.1863_20220603','2.16.840.1.113762.1.4.1146.1863_T83.511A');
-INSERT INTO valueset_to_concept VALUES('6513','2.16.840.1.113762.1.4.1146.1863_20220603','2.16.840.1.113762.1.4.1146.1863_T83.512A');
-INSERT INTO valueset_to_concept VALUES('6514','2.16.840.1.113762.1.4.1146.1863_20220603','2.16.840.1.113762.1.4.1146.1863_T83.518A');
-INSERT INTO valueset_to_concept VALUES('6515','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S02.0XXA');
-INSERT INTO valueset_to_concept VALUES('6516','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S02.0XXB');
-INSERT INTO valueset_to_concept VALUES('6517','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S02.101A');
-INSERT INTO valueset_to_concept VALUES('6518','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S02.101B');
-INSERT INTO valueset_to_concept VALUES('6519','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S02.102A');
-INSERT INTO valueset_to_concept VALUES('6520','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S02.102B');
-INSERT INTO valueset_to_concept VALUES('6521','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S02.109A');
-INSERT INTO valueset_to_concept VALUES('6522','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S02.109B');
-INSERT INTO valueset_to_concept VALUES('6523','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S02.110A');
-INSERT INTO valueset_to_concept VALUES('6524','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S02.110B');
-INSERT INTO valueset_to_concept VALUES('6525','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S02.111A');
-INSERT INTO valueset_to_concept VALUES('6526','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S02.111B');
-INSERT INTO valueset_to_concept VALUES('6527','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S02.112A');
-INSERT INTO valueset_to_concept VALUES('6528','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S02.112B');
-INSERT INTO valueset_to_concept VALUES('6529','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S02.113A');
-INSERT INTO valueset_to_concept VALUES('6530','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S02.113B');
-INSERT INTO valueset_to_concept VALUES('6531','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S02.118A');
-INSERT INTO valueset_to_concept VALUES('6532','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S02.118B');
-INSERT INTO valueset_to_concept VALUES('6533','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S02.119A');
-INSERT INTO valueset_to_concept VALUES('6534','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S02.119B');
-INSERT INTO valueset_to_concept VALUES('6535','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S02.11AA');
-INSERT INTO valueset_to_concept VALUES('6536','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S02.11AB');
-INSERT INTO valueset_to_concept VALUES('6537','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S02.11BA');
-INSERT INTO valueset_to_concept VALUES('6538','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S02.11BB');
-INSERT INTO valueset_to_concept VALUES('6539','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S02.11CA');
-INSERT INTO valueset_to_concept VALUES('6540','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S02.11CB');
-INSERT INTO valueset_to_concept VALUES('6541','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S02.11DA');
-INSERT INTO valueset_to_concept VALUES('6542','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S02.11DB');
-INSERT INTO valueset_to_concept VALUES('6543','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S02.11EA');
-INSERT INTO valueset_to_concept VALUES('6544','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S02.11EB');
-INSERT INTO valueset_to_concept VALUES('6545','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S02.11FA');
-INSERT INTO valueset_to_concept VALUES('6546','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S02.11FB');
-INSERT INTO valueset_to_concept VALUES('6547','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S02.11GA');
-INSERT INTO valueset_to_concept VALUES('6548','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S02.11GB');
-INSERT INTO valueset_to_concept VALUES('6549','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S02.11HA');
-INSERT INTO valueset_to_concept VALUES('6550','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S02.11HB');
-INSERT INTO valueset_to_concept VALUES('6551','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S02.121A');
-INSERT INTO valueset_to_concept VALUES('6552','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S02.121B');
-INSERT INTO valueset_to_concept VALUES('6553','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S02.122A');
-INSERT INTO valueset_to_concept VALUES('6554','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S02.122B');
-INSERT INTO valueset_to_concept VALUES('6555','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S02.129A');
-INSERT INTO valueset_to_concept VALUES('6556','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S02.129B');
-INSERT INTO valueset_to_concept VALUES('6557','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S02.19XA');
-INSERT INTO valueset_to_concept VALUES('6558','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S02.19XB');
-INSERT INTO valueset_to_concept VALUES('6559','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S02.80XA');
-INSERT INTO valueset_to_concept VALUES('6560','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S02.80XB');
-INSERT INTO valueset_to_concept VALUES('6561','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S02.81XA');
-INSERT INTO valueset_to_concept VALUES('6562','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S02.81XB');
-INSERT INTO valueset_to_concept VALUES('6563','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S02.82XA');
-INSERT INTO valueset_to_concept VALUES('6564','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S02.82XB');
-INSERT INTO valueset_to_concept VALUES('6565','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S02.91XA');
-INSERT INTO valueset_to_concept VALUES('6566','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S02.91XB');
-INSERT INTO valueset_to_concept VALUES('6567','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S04.02XA');
-INSERT INTO valueset_to_concept VALUES('6568','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S04.031A');
-INSERT INTO valueset_to_concept VALUES('6569','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S04.032A');
-INSERT INTO valueset_to_concept VALUES('6570','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S04.039A');
-INSERT INTO valueset_to_concept VALUES('6571','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S04.041A');
-INSERT INTO valueset_to_concept VALUES('6572','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S04.042A');
-INSERT INTO valueset_to_concept VALUES('6573','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S04.049A');
-INSERT INTO valueset_to_concept VALUES('6574','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.0X0A');
-INSERT INTO valueset_to_concept VALUES('6575','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.0X1A');
-INSERT INTO valueset_to_concept VALUES('6576','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.0X9A');
-INSERT INTO valueset_to_concept VALUES('6577','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.1X0A');
-INSERT INTO valueset_to_concept VALUES('6578','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.1X1A');
-INSERT INTO valueset_to_concept VALUES('6579','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.1X2A');
-INSERT INTO valueset_to_concept VALUES('6580','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.1X3A');
-INSERT INTO valueset_to_concept VALUES('6581','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.1X4A');
-INSERT INTO valueset_to_concept VALUES('6582','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.1X5A');
-INSERT INTO valueset_to_concept VALUES('6583','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.1X6A');
-INSERT INTO valueset_to_concept VALUES('6584','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.1X7A');
-INSERT INTO valueset_to_concept VALUES('6585','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.1X8A');
-INSERT INTO valueset_to_concept VALUES('6586','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.1X9A');
-INSERT INTO valueset_to_concept VALUES('6587','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.2X0A');
-INSERT INTO valueset_to_concept VALUES('6588','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.2X1A');
-INSERT INTO valueset_to_concept VALUES('6589','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.2X2A');
-INSERT INTO valueset_to_concept VALUES('6590','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.2X3A');
-INSERT INTO valueset_to_concept VALUES('6591','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.2X4A');
-INSERT INTO valueset_to_concept VALUES('6592','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.2X5A');
-INSERT INTO valueset_to_concept VALUES('6593','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.2X6A');
-INSERT INTO valueset_to_concept VALUES('6594','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.2X7A');
-INSERT INTO valueset_to_concept VALUES('6595','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.2X8A');
-INSERT INTO valueset_to_concept VALUES('6596','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.2X9A');
-INSERT INTO valueset_to_concept VALUES('6597','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.300A');
-INSERT INTO valueset_to_concept VALUES('6598','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.301A');
-INSERT INTO valueset_to_concept VALUES('6599','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.302A');
-INSERT INTO valueset_to_concept VALUES('6600','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.303A');
-INSERT INTO valueset_to_concept VALUES('6601','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.304A');
-INSERT INTO valueset_to_concept VALUES('6602','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.305A');
-INSERT INTO valueset_to_concept VALUES('6603','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.306A');
-INSERT INTO valueset_to_concept VALUES('6604','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.307A');
-INSERT INTO valueset_to_concept VALUES('6605','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.308A');
-INSERT INTO valueset_to_concept VALUES('6606','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.309A');
-INSERT INTO valueset_to_concept VALUES('6607','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.310A');
-INSERT INTO valueset_to_concept VALUES('6608','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.311A');
-INSERT INTO valueset_to_concept VALUES('6609','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.312A');
-INSERT INTO valueset_to_concept VALUES('6610','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.313A');
-INSERT INTO valueset_to_concept VALUES('6611','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.314A');
-INSERT INTO valueset_to_concept VALUES('6612','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.315A');
-INSERT INTO valueset_to_concept VALUES('6613','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.316A');
-INSERT INTO valueset_to_concept VALUES('6614','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.317A');
-INSERT INTO valueset_to_concept VALUES('6615','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.318A');
-INSERT INTO valueset_to_concept VALUES('6616','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.319A');
-INSERT INTO valueset_to_concept VALUES('6617','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.320A');
-INSERT INTO valueset_to_concept VALUES('6618','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.321A');
-INSERT INTO valueset_to_concept VALUES('6619','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.322A');
-INSERT INTO valueset_to_concept VALUES('6620','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.323A');
-INSERT INTO valueset_to_concept VALUES('6621','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.324A');
-INSERT INTO valueset_to_concept VALUES('6622','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.325A');
-INSERT INTO valueset_to_concept VALUES('6623','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.326A');
-INSERT INTO valueset_to_concept VALUES('6624','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.327A');
-INSERT INTO valueset_to_concept VALUES('6625','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.328A');
-INSERT INTO valueset_to_concept VALUES('6626','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.329A');
-INSERT INTO valueset_to_concept VALUES('6627','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.330A');
-INSERT INTO valueset_to_concept VALUES('6628','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.331A');
-INSERT INTO valueset_to_concept VALUES('6629','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.332A');
-INSERT INTO valueset_to_concept VALUES('6630','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.333A');
-INSERT INTO valueset_to_concept VALUES('6631','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.334A');
-INSERT INTO valueset_to_concept VALUES('6632','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.335A');
-INSERT INTO valueset_to_concept VALUES('6633','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.336A');
-INSERT INTO valueset_to_concept VALUES('6634','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.337A');
-INSERT INTO valueset_to_concept VALUES('6635','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.338A');
-INSERT INTO valueset_to_concept VALUES('6636','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.339A');
-INSERT INTO valueset_to_concept VALUES('6637','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.340A');
-INSERT INTO valueset_to_concept VALUES('6638','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.341A');
-INSERT INTO valueset_to_concept VALUES('6639','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.342A');
-INSERT INTO valueset_to_concept VALUES('6640','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.343A');
-INSERT INTO valueset_to_concept VALUES('6641','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.344A');
-INSERT INTO valueset_to_concept VALUES('6642','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.345A');
-INSERT INTO valueset_to_concept VALUES('6643','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.346A');
-INSERT INTO valueset_to_concept VALUES('6644','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.347A');
-INSERT INTO valueset_to_concept VALUES('6645','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.348A');
-INSERT INTO valueset_to_concept VALUES('6646','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.349A');
-INSERT INTO valueset_to_concept VALUES('6647','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.350A');
-INSERT INTO valueset_to_concept VALUES('6648','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.351A');
-INSERT INTO valueset_to_concept VALUES('6649','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.352A');
-INSERT INTO valueset_to_concept VALUES('6650','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.353A');
-INSERT INTO valueset_to_concept VALUES('6651','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.354A');
-INSERT INTO valueset_to_concept VALUES('6652','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.355A');
-INSERT INTO valueset_to_concept VALUES('6653','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.356A');
-INSERT INTO valueset_to_concept VALUES('6654','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.357A');
-INSERT INTO valueset_to_concept VALUES('6655','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.358A');
-INSERT INTO valueset_to_concept VALUES('6656','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.359A');
-INSERT INTO valueset_to_concept VALUES('6657','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.360A');
-INSERT INTO valueset_to_concept VALUES('6658','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.361A');
-INSERT INTO valueset_to_concept VALUES('6659','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.362A');
-INSERT INTO valueset_to_concept VALUES('6660','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.363A');
-INSERT INTO valueset_to_concept VALUES('6661','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.364A');
-INSERT INTO valueset_to_concept VALUES('6662','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.365A');
-INSERT INTO valueset_to_concept VALUES('6663','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.366A');
-INSERT INTO valueset_to_concept VALUES('6664','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.367A');
-INSERT INTO valueset_to_concept VALUES('6665','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.368A');
-INSERT INTO valueset_to_concept VALUES('6666','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.369A');
-INSERT INTO valueset_to_concept VALUES('6667','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.370A');
-INSERT INTO valueset_to_concept VALUES('6668','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.371A');
-INSERT INTO valueset_to_concept VALUES('6669','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.372A');
-INSERT INTO valueset_to_concept VALUES('6670','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.373A');
-INSERT INTO valueset_to_concept VALUES('6671','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.374A');
-INSERT INTO valueset_to_concept VALUES('6672','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.375A');
-INSERT INTO valueset_to_concept VALUES('6673','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.376A');
-INSERT INTO valueset_to_concept VALUES('6674','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.377A');
-INSERT INTO valueset_to_concept VALUES('6675','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.378A');
-INSERT INTO valueset_to_concept VALUES('6676','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.379A');
-INSERT INTO valueset_to_concept VALUES('6677','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.380A');
-INSERT INTO valueset_to_concept VALUES('6678','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.381A');
-INSERT INTO valueset_to_concept VALUES('6679','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.382A');
-INSERT INTO valueset_to_concept VALUES('6680','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.383A');
-INSERT INTO valueset_to_concept VALUES('6681','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.384A');
-INSERT INTO valueset_to_concept VALUES('6682','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.385A');
-INSERT INTO valueset_to_concept VALUES('6683','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.386A');
-INSERT INTO valueset_to_concept VALUES('6684','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.387A');
-INSERT INTO valueset_to_concept VALUES('6685','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.388A');
-INSERT INTO valueset_to_concept VALUES('6686','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.389A');
-INSERT INTO valueset_to_concept VALUES('6687','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.4X0A');
-INSERT INTO valueset_to_concept VALUES('6688','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.4X1A');
-INSERT INTO valueset_to_concept VALUES('6689','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.4X2A');
-INSERT INTO valueset_to_concept VALUES('6690','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.4X3A');
-INSERT INTO valueset_to_concept VALUES('6691','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.4X4A');
-INSERT INTO valueset_to_concept VALUES('6692','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.4X5A');
-INSERT INTO valueset_to_concept VALUES('6693','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.4X6A');
-INSERT INTO valueset_to_concept VALUES('6694','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.4X7A');
-INSERT INTO valueset_to_concept VALUES('6695','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.4X8A');
-INSERT INTO valueset_to_concept VALUES('6696','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.4X9A');
-INSERT INTO valueset_to_concept VALUES('6697','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.5X0A');
-INSERT INTO valueset_to_concept VALUES('6698','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.5X1A');
-INSERT INTO valueset_to_concept VALUES('6699','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.5X2A');
-INSERT INTO valueset_to_concept VALUES('6700','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.5X3A');
-INSERT INTO valueset_to_concept VALUES('6701','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.5X4A');
-INSERT INTO valueset_to_concept VALUES('6702','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.5X5A');
-INSERT INTO valueset_to_concept VALUES('6703','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.5X6A');
-INSERT INTO valueset_to_concept VALUES('6704','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.5X7A');
-INSERT INTO valueset_to_concept VALUES('6705','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.5X8A');
-INSERT INTO valueset_to_concept VALUES('6706','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.5X9A');
-INSERT INTO valueset_to_concept VALUES('6707','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.6X0A');
-INSERT INTO valueset_to_concept VALUES('6708','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.6X1A');
-INSERT INTO valueset_to_concept VALUES('6709','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.6X2A');
-INSERT INTO valueset_to_concept VALUES('6710','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.6X3A');
-INSERT INTO valueset_to_concept VALUES('6711','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.6X4A');
-INSERT INTO valueset_to_concept VALUES('6712','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.6X5A');
-INSERT INTO valueset_to_concept VALUES('6713','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.6X6A');
-INSERT INTO valueset_to_concept VALUES('6714','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.6X7A');
-INSERT INTO valueset_to_concept VALUES('6715','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.6X8A');
-INSERT INTO valueset_to_concept VALUES('6716','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.6X9A');
-INSERT INTO valueset_to_concept VALUES('6717','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.810A');
-INSERT INTO valueset_to_concept VALUES('6718','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.811A');
-INSERT INTO valueset_to_concept VALUES('6719','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.812A');
-INSERT INTO valueset_to_concept VALUES('6720','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.813A');
-INSERT INTO valueset_to_concept VALUES('6721','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.814A');
-INSERT INTO valueset_to_concept VALUES('6722','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.815A');
-INSERT INTO valueset_to_concept VALUES('6723','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.816A');
-INSERT INTO valueset_to_concept VALUES('6724','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.817A');
-INSERT INTO valueset_to_concept VALUES('6725','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.818A');
-INSERT INTO valueset_to_concept VALUES('6726','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.819A');
-INSERT INTO valueset_to_concept VALUES('6727','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.820A');
-INSERT INTO valueset_to_concept VALUES('6728','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.821A');
-INSERT INTO valueset_to_concept VALUES('6729','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.822A');
-INSERT INTO valueset_to_concept VALUES('6730','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.823A');
-INSERT INTO valueset_to_concept VALUES('6731','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.824A');
-INSERT INTO valueset_to_concept VALUES('6732','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.825A');
-INSERT INTO valueset_to_concept VALUES('6733','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.826A');
-INSERT INTO valueset_to_concept VALUES('6734','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.827A');
-INSERT INTO valueset_to_concept VALUES('6735','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.828A');
-INSERT INTO valueset_to_concept VALUES('6736','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.829A');
-INSERT INTO valueset_to_concept VALUES('6737','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.890A');
-INSERT INTO valueset_to_concept VALUES('6738','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.891A');
-INSERT INTO valueset_to_concept VALUES('6739','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.892A');
-INSERT INTO valueset_to_concept VALUES('6740','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.893A');
-INSERT INTO valueset_to_concept VALUES('6741','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.894A');
-INSERT INTO valueset_to_concept VALUES('6742','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.895A');
-INSERT INTO valueset_to_concept VALUES('6743','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.896A');
-INSERT INTO valueset_to_concept VALUES('6744','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.897A');
-INSERT INTO valueset_to_concept VALUES('6745','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.898A');
-INSERT INTO valueset_to_concept VALUES('6746','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.899A');
-INSERT INTO valueset_to_concept VALUES('6747','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.9X0A');
-INSERT INTO valueset_to_concept VALUES('6748','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.9X1A');
-INSERT INTO valueset_to_concept VALUES('6749','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.9X2A');
-INSERT INTO valueset_to_concept VALUES('6750','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.9X3A');
-INSERT INTO valueset_to_concept VALUES('6751','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.9X4A');
-INSERT INTO valueset_to_concept VALUES('6752','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.9X5A');
-INSERT INTO valueset_to_concept VALUES('6753','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.9X6A');
-INSERT INTO valueset_to_concept VALUES('6754','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.9X7A');
-INSERT INTO valueset_to_concept VALUES('6755','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.9X8A');
-INSERT INTO valueset_to_concept VALUES('6756','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.9X9A');
-INSERT INTO valueset_to_concept VALUES('6757','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.A0XA');
-INSERT INTO valueset_to_concept VALUES('6758','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S06.A1XA');
-INSERT INTO valueset_to_concept VALUES('6759','2.16.840.1.113762.1.4.1146.1742_20230122','2.16.840.1.113762.1.4.1146.1742_S07.1XXA');
-INSERT INTO valueset_to_concept VALUES('6760','2.16.840.1.113762.1.4.1146.1981_20230125','2.16.840.1.113762.1.4.1146.1981_A83.5');
-INSERT INTO valueset_to_concept VALUES('6761','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_1003584006');
-INSERT INTO valueset_to_concept VALUES('6762','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_230282000');
-INSERT INTO valueset_to_concept VALUES('6763','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_40425004');
-INSERT INTO valueset_to_concept VALUES('6764','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_432461000124101');
-INSERT INTO valueset_to_concept VALUES('6765','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_432471000124108');
-INSERT INTO valueset_to_concept VALUES('6766','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_698687007');
-INSERT INTO valueset_to_concept VALUES('6767','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_75023009');
-INSERT INTO valueset_to_concept VALUES('6768','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_10943311000119108');
-INSERT INTO valueset_to_concept VALUES('6769','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_10943471000119107');
-INSERT INTO valueset_to_concept VALUES('6770','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_110030002');
-INSERT INTO valueset_to_concept VALUES('6771','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_12589008');
-INSERT INTO valueset_to_concept VALUES('6772','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_127295002');
-INSERT INTO valueset_to_concept VALUES('6773','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_127298000');
-INSERT INTO valueset_to_concept VALUES('6774','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_127299008');
-INSERT INTO valueset_to_concept VALUES('6775','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_127300000');
-INSERT INTO valueset_to_concept VALUES('6776','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_127301001');
-INSERT INTO valueset_to_concept VALUES('6777','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_127302008');
-INSERT INTO valueset_to_concept VALUES('6778','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_127303003');
-INSERT INTO valueset_to_concept VALUES('6779','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_127304009');
-INSERT INTO valueset_to_concept VALUES('6780','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_127305005');
-INSERT INTO valueset_to_concept VALUES('6781','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_127306006');
-INSERT INTO valueset_to_concept VALUES('6782','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_127307002');
-INSERT INTO valueset_to_concept VALUES('6783','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_127309004');
-INSERT INTO valueset_to_concept VALUES('6784','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_127310009');
-INSERT INTO valueset_to_concept VALUES('6785','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_13752003');
-INSERT INTO valueset_to_concept VALUES('6786','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_14434006');
-INSERT INTO valueset_to_concept VALUES('6787','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_16319002');
-INSERT INTO valueset_to_concept VALUES('6788','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_17169009');
-INSERT INTO valueset_to_concept VALUES('6789','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_17498002');
-INSERT INTO valueset_to_concept VALUES('6790','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_19210000');
-INSERT INTO valueset_to_concept VALUES('6791','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_19233004');
-INSERT INTO valueset_to_concept VALUES('6792','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_20899000');
-INSERT INTO valueset_to_concept VALUES('6793','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_209827006');
-INSERT INTO valueset_to_concept VALUES('6794','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_209845006');
-INSERT INTO valueset_to_concept VALUES('6795','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_209864000');
-INSERT INTO valueset_to_concept VALUES('6796','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_209900006');
-INSERT INTO valueset_to_concept VALUES('6797','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_209902003');
-INSERT INTO valueset_to_concept VALUES('6798','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_210038008');
-INSERT INTO valueset_to_concept VALUES('6799','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_212142000');
-INSERT INTO valueset_to_concept VALUES('6800','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_213383004');
-INSERT INTO valueset_to_concept VALUES('6801','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_22819008');
-INSERT INTO valueset_to_concept VALUES('6802','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_230763008');
-INSERT INTO valueset_to_concept VALUES('6803','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_23713006');
-INSERT INTO valueset_to_concept VALUES('6804','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_241993004');
-INSERT INTO valueset_to_concept VALUES('6805','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_262687004');
-INSERT INTO valueset_to_concept VALUES('6806','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_262688009');
-INSERT INTO valueset_to_concept VALUES('6807','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_262689001');
-INSERT INTO valueset_to_concept VALUES('6808','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_262691009');
-INSERT INTO valueset_to_concept VALUES('6809','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_262692002');
-INSERT INTO valueset_to_concept VALUES('6810','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_262693007');
-INSERT INTO valueset_to_concept VALUES('6811','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_262694001');
-INSERT INTO valueset_to_concept VALUES('6812','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_262695000');
-INSERT INTO valueset_to_concept VALUES('6813','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_264534009');
-INSERT INTO valueset_to_concept VALUES('6814','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_269144002');
-INSERT INTO valueset_to_concept VALUES('6815','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_275362006');
-INSERT INTO valueset_to_concept VALUES('6816','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_275382005');
-INSERT INTO valueset_to_concept VALUES('6817','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_28155008');
-INSERT INTO valueset_to_concept VALUES('6818','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_28188001');
-INSERT INTO valueset_to_concept VALUES('6819','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_29807001');
-INSERT INTO valueset_to_concept VALUES('6820','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_30031007');
-INSERT INTO valueset_to_concept VALUES('6821','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_30371007');
-INSERT INTO valueset_to_concept VALUES('6822','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_30858001');
-INSERT INTO valueset_to_concept VALUES('6823','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_311826007');
-INSERT INTO valueset_to_concept VALUES('6824','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_3119002');
-INSERT INTO valueset_to_concept VALUES('6825','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_32106001');
-INSERT INTO valueset_to_concept VALUES('6826','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_32415004');
-INSERT INTO valueset_to_concept VALUES('6827','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_329671000119106');
-INSERT INTO valueset_to_concept VALUES('6828','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_33332005');
-INSERT INTO valueset_to_concept VALUES('6829','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_34663006');
-INSERT INTO valueset_to_concept VALUES('6830','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_371050006');
-INSERT INTO valueset_to_concept VALUES('6831','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_41222005');
-INSERT INTO valueset_to_concept VALUES('6832','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_41870008');
-INSERT INTO valueset_to_concept VALUES('6833','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_43262000');
-INSERT INTO valueset_to_concept VALUES('6834','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_447396006');
-INSERT INTO valueset_to_concept VALUES('6835','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_450418003');
-INSERT INTO valueset_to_concept VALUES('6836','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_46966000');
-INSERT INTO valueset_to_concept VALUES('6837','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_48518008');
-INSERT INTO valueset_to_concept VALUES('6838','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_5202009');
-INSERT INTO valueset_to_concept VALUES('6839','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_52888005');
-INSERT INTO valueset_to_concept VALUES('6840','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_53267002');
-INSERT INTO valueset_to_concept VALUES('6841','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_55702009');
-INSERT INTO valueset_to_concept VALUES('6842','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_57739006');
-INSERT INTO valueset_to_concept VALUES('6843','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_59748008');
-INSERT INTO valueset_to_concept VALUES('6844','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_59918000');
-INSERT INTO valueset_to_concept VALUES('6845','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_62106007');
-INSERT INTO valueset_to_concept VALUES('6846','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_62564004');
-INSERT INTO valueset_to_concept VALUES('6847','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_66393002');
-INSERT INTO valueset_to_concept VALUES('6848','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_698618009');
-INSERT INTO valueset_to_concept VALUES('6849','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_698619001');
-INSERT INTO valueset_to_concept VALUES('6850','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_69875006');
-INSERT INTO valueset_to_concept VALUES('6851','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_708728007');
-INSERT INTO valueset_to_concept VALUES('6852','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_721330006');
-INSERT INTO valueset_to_concept VALUES('6853','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_721331005');
-INSERT INTO valueset_to_concept VALUES('6854','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_721332003');
-INSERT INTO valueset_to_concept VALUES('6855','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_721333008');
-INSERT INTO valueset_to_concept VALUES('6856','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_722614006');
-INSERT INTO valueset_to_concept VALUES('6857','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_722615007');
-INSERT INTO valueset_to_concept VALUES('6858','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_722616008');
-INSERT INTO valueset_to_concept VALUES('6859','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_722617004');
-INSERT INTO valueset_to_concept VALUES('6860','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_722618009');
-INSERT INTO valueset_to_concept VALUES('6861','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_722619001');
-INSERT INTO valueset_to_concept VALUES('6862','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_722620007');
-INSERT INTO valueset_to_concept VALUES('6863','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_722622004');
-INSERT INTO valueset_to_concept VALUES('6864','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_722623009');
-INSERT INTO valueset_to_concept VALUES('6865','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_722624003');
-INSERT INTO valueset_to_concept VALUES('6866','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_722625002');
-INSERT INTO valueset_to_concept VALUES('6867','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_722626001');
-INSERT INTO valueset_to_concept VALUES('6868','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_722627005');
-INSERT INTO valueset_to_concept VALUES('6869','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_722630003');
-INSERT INTO valueset_to_concept VALUES('6870','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_722631004');
-INSERT INTO valueset_to_concept VALUES('6871','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_722632006');
-INSERT INTO valueset_to_concept VALUES('6872','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_722633001');
-INSERT INTO valueset_to_concept VALUES('6873','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_722702007');
-INSERT INTO valueset_to_concept VALUES('6874','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_722703002');
-INSERT INTO valueset_to_concept VALUES('6875','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_723138000');
-INSERT INTO valueset_to_concept VALUES('6876','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_723139008');
-INSERT INTO valueset_to_concept VALUES('6877','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_73413009');
-INSERT INTO valueset_to_concept VALUES('6878','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_736321008');
-INSERT INTO valueset_to_concept VALUES('6879','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_737231005');
-INSERT INTO valueset_to_concept VALUES('6880','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_737232003');
-INSERT INTO valueset_to_concept VALUES('6881','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_762353009');
-INSERT INTO valueset_to_concept VALUES('6882','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_762436001');
-INSERT INTO valueset_to_concept VALUES('6883','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_762617003');
-INSERT INTO valueset_to_concept VALUES('6884','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_76418009');
-INSERT INTO valueset_to_concept VALUES('6885','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_78028004');
-INSERT INTO valueset_to_concept VALUES('6886','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_78879009');
-INSERT INTO valueset_to_concept VALUES('6887','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_788930004');
-INSERT INTO valueset_to_concept VALUES('6888','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_788931000');
-INSERT INTO valueset_to_concept VALUES('6889','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_788932007');
-INSERT INTO valueset_to_concept VALUES('6890','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_788933002');
-INSERT INTO valueset_to_concept VALUES('6891','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_788934008');
-INSERT INTO valueset_to_concept VALUES('6892','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_78914008');
-INSERT INTO valueset_to_concept VALUES('6893','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_78968003');
-INSERT INTO valueset_to_concept VALUES('6894','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_79220008');
-INSERT INTO valueset_to_concept VALUES('6895','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_81412002');
-INSERT INTO valueset_to_concept VALUES('6896','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_82344002');
-INSERT INTO valueset_to_concept VALUES('6897','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_84170006');
-INSERT INTO valueset_to_concept VALUES('6898','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_84900008');
-INSERT INTO valueset_to_concept VALUES('6899','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_86125000');
-INSERT INTO valueset_to_concept VALUES('6900','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_870540001');
-INSERT INTO valueset_to_concept VALUES('6901','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_870553003');
-INSERT INTO valueset_to_concept VALUES('6902','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_870554009');
-INSERT INTO valueset_to_concept VALUES('6903','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_870555005');
-INSERT INTO valueset_to_concept VALUES('6904','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_870556006');
-INSERT INTO valueset_to_concept VALUES('6905','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_870563006');
-INSERT INTO valueset_to_concept VALUES('6906','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_870565004');
-INSERT INTO valueset_to_concept VALUES('6907','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_874937002');
-INSERT INTO valueset_to_concept VALUES('6908','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_874939004');
-INSERT INTO valueset_to_concept VALUES('6909','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_874940002');
-INSERT INTO valueset_to_concept VALUES('6910','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_874943000');
-INSERT INTO valueset_to_concept VALUES('6911','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_87888006');
-INSERT INTO valueset_to_concept VALUES('6912','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_9015001');
-INSERT INTO valueset_to_concept VALUES('6913','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_90429009');
-INSERT INTO valueset_to_concept VALUES('6914','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_90768003');
-INSERT INTO valueset_to_concept VALUES('6915','2.16.840.1.113762.1.4.1146.1741_20220602','2.16.840.1.113762.1.4.1146.1741_91012008');
-INSERT INTO valueset_to_concept VALUES('6916','2.16.840.1.113762.1.4.1146.1980_20230125','2.16.840.1.113762.1.4.1146.1980_416442006');
-INSERT INTO valueset_to_concept VALUES('6917','2.16.840.1.113762.1.4.1146.1980_20230125','2.16.840.1.113762.1.4.1146.1980_418182000');
-INSERT INTO valueset_to_concept VALUES('6918','2.16.840.1.113762.1.4.1146.1980_20230125','2.16.840.1.113762.1.4.1146.1980_419226000');
-INSERT INTO valueset_to_concept VALUES('6919','2.16.840.1.113762.1.4.1146.1980_20230125','2.16.840.1.113762.1.4.1146.1980_404239005');
-INSERT INTO valueset_to_concept VALUES('6920','2.16.840.1.113762.1.4.1146.1980_20230125','2.16.840.1.113762.1.4.1146.1980_417075004');
-INSERT INTO valueset_to_concept VALUES('6921','2.16.840.1.113762.1.4.1146.1980_20230125','2.16.840.1.113762.1.4.1146.1980_418531007');
-INSERT INTO valueset_to_concept VALUES('6922','2.16.840.1.113762.1.4.1146.1759_20220602','2.16.840.1.113762.1.4.1146.1759_233636000');
-INSERT INTO valueset_to_concept VALUES('6923','2.16.840.1.113762.1.4.1146.1759_20220602','2.16.840.1.113762.1.4.1146.1759_233639007');
-INSERT INTO valueset_to_concept VALUES('6924','2.16.840.1.113762.1.4.1146.1759_20220602','2.16.840.1.113762.1.4.1146.1759_233653007');
-INSERT INTO valueset_to_concept VALUES('6925','2.16.840.1.113762.1.4.1146.1759_20220602','2.16.840.1.113762.1.4.1146.1759_233655000');
-INSERT INTO valueset_to_concept VALUES('6926','2.16.840.1.113762.1.4.1146.1759_20220602','2.16.840.1.113762.1.4.1146.1759_233659006');
-INSERT INTO valueset_to_concept VALUES('6927','2.16.840.1.113762.1.4.1146.1516_20230122','2.16.840.1.113762.1.4.1146.1516_1163151008');
-INSERT INTO valueset_to_concept VALUES('6928','2.16.840.1.113762.1.4.1146.1516_20230122','2.16.840.1.113762.1.4.1146.1516_17273001');
-INSERT INTO valueset_to_concept VALUES('6929','2.16.840.1.113762.1.4.1146.1516_20230122','2.16.840.1.113762.1.4.1146.1516_187091009');
-INSERT INTO valueset_to_concept VALUES('6930','2.16.840.1.113762.1.4.1146.1516_20230122','2.16.840.1.113762.1.4.1146.1516_187093007');
-INSERT INTO valueset_to_concept VALUES('6931','2.16.840.1.113762.1.4.1146.1516_20230122','2.16.840.1.113762.1.4.1146.1516_20953001');
-INSERT INTO valueset_to_concept VALUES('6932','2.16.840.1.113762.1.4.1146.1516_20230122','2.16.840.1.113762.1.4.1146.1516_240724004');
-INSERT INTO valueset_to_concept VALUES('6933','2.16.840.1.113762.1.4.1146.1516_20230122','2.16.840.1.113762.1.4.1146.1516_283688006');
-INSERT INTO valueset_to_concept VALUES('6934','2.16.840.1.113762.1.4.1146.1516_20230122','2.16.840.1.113762.1.4.1146.1516_35974005');
-INSERT INTO valueset_to_concept VALUES('6935','2.16.840.1.113762.1.4.1146.1516_20230122','2.16.840.1.113762.1.4.1146.1516_406569004');
-INSERT INTO valueset_to_concept VALUES('6936','2.16.840.1.113762.1.4.1146.1516_20230122','2.16.840.1.113762.1.4.1146.1516_416296007');
-INSERT INTO valueset_to_concept VALUES('6937','2.16.840.1.113762.1.4.1146.1516_20230122','2.16.840.1.113762.1.4.1146.1516_416877003');
-INSERT INTO valueset_to_concept VALUES('6938','2.16.840.1.113762.1.4.1146.1516_20230122','2.16.840.1.113762.1.4.1146.1516_417254001');
-INSERT INTO valueset_to_concept VALUES('6939','2.16.840.1.113762.1.4.1146.1516_20230122','2.16.840.1.113762.1.4.1146.1516_417344003');
-INSERT INTO valueset_to_concept VALUES('6940','2.16.840.1.113762.1.4.1146.1516_20230122','2.16.840.1.113762.1.4.1146.1516_417547006');
-INSERT INTO valueset_to_concept VALUES('6941','2.16.840.1.113762.1.4.1146.1516_20230122','2.16.840.1.113762.1.4.1146.1516_421278000');
-INSERT INTO valueset_to_concept VALUES('6942','2.16.840.1.113762.1.4.1146.1516_20230122','2.16.840.1.113762.1.4.1146.1516_42386007');
-INSERT INTO valueset_to_concept VALUES('6943','2.16.840.1.113762.1.4.1146.1516_20230122','2.16.840.1.113762.1.4.1146.1516_715849007');
-INSERT INTO valueset_to_concept VALUES('6944','2.16.840.1.113762.1.4.1146.1516_20230122','2.16.840.1.113762.1.4.1146.1516_14232007');
-INSERT INTO valueset_to_concept VALUES('6945','2.16.840.1.113762.1.4.1146.1516_20230122','2.16.840.1.113762.1.4.1146.1516_187094001');
-INSERT INTO valueset_to_concept VALUES('6946','2.16.840.1.113762.1.4.1146.1516_20230122','2.16.840.1.113762.1.4.1146.1516_421403008');
-INSERT INTO valueset_to_concept VALUES('6947','2.16.840.1.113762.1.4.1146.1637_20220118','2.16.840.1.113762.1.4.1146.1637_240613006');
-INSERT INTO valueset_to_concept VALUES('6948','2.16.840.1.113762.1.4.1146.1637_20220118','2.16.840.1.113762.1.4.1146.1637_25668000');
-INSERT INTO valueset_to_concept VALUES('6949','2.16.840.1.113762.1.4.1146.1637_20220118','2.16.840.1.113762.1.4.1146.1637_39111003');
-INSERT INTO valueset_to_concept VALUES('6950','2.16.840.1.113762.1.4.1146.1637_20220118','2.16.840.1.113762.1.4.1146.1637_47761007');
-INSERT INTO valueset_to_concept VALUES('6951','2.16.840.1.113762.1.4.1146.1758_20230602','2.16.840.1.113762.1.4.1146.1758_22607003');
-INSERT INTO valueset_to_concept VALUES('6952','2.16.840.1.113762.1.4.1146.1758_20230602','2.16.840.1.113762.1.4.1146.1758_446354001');
-INSERT INTO valueset_to_concept VALUES('6953','2.16.840.1.113762.1.4.1146.1879_20220603','2.16.840.1.113762.1.4.1146.1879_O86.00');
-INSERT INTO valueset_to_concept VALUES('6954','2.16.840.1.113762.1.4.1146.1879_20220603','2.16.840.1.113762.1.4.1146.1879_O86.01');
-INSERT INTO valueset_to_concept VALUES('6955','2.16.840.1.113762.1.4.1146.1879_20220603','2.16.840.1.113762.1.4.1146.1879_O86.02');
-INSERT INTO valueset_to_concept VALUES('6956','2.16.840.1.113762.1.4.1146.1879_20220603','2.16.840.1.113762.1.4.1146.1879_O86.03');
-INSERT INTO valueset_to_concept VALUES('6957','2.16.840.1.113762.1.4.1146.1879_20220603','2.16.840.1.113762.1.4.1146.1879_O86.09');
-INSERT INTO valueset_to_concept VALUES('6958','2.16.840.1.113762.1.4.1146.1879_202206